/* ════════════════════════════════
   VARIABLES & RESET
════════════════════════════════ */
:root {
  --black: #0a0a0a;
  --white: #f5f0e8;
  --silver: #c8c0b0;
  --gold: #c9a84c;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Courier Prime', monospace;
  overflow-x: hidden;
}

/* ════════════════════════════════
   PAGES SYSTEM
════════════════════════════════ */
.page {
  display: block;
}

/* ════════════════════════════════
   INTRO LAYER
════════════════════════════════ */
#intro-layer {
  position: fixed; inset: 0; z-index: 500;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  cursor: pointer;
  background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 100%);
}
.camera-icon {
  width: 80px; height: 60px;
  border: 3px solid var(--silver); border-radius: 8px;
  position: relative; margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}
.camera-icon::before {
  content: ''; width: 30px; height: 30px;
  border: 3px solid var(--silver); border-radius: 50%;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.camera-icon::after {
  content: ''; width: 18px; height: 10px;
  background: var(--silver); border-radius: 3px 3px 0 0;
  position: absolute; top: -13px; left: 12px;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,192,176,0.4); }
  50%      { box-shadow: 0 0 0 16px rgba(200,192,176,0); }
}
#intro-layer p {
  letter-spacing: 0.3em; font-size: 0.75rem;
  color: var(--silver); text-transform: uppercase;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

#iris-canvas { position: fixed; inset: 0; z-index: 400; pointer-events: none; }
#flash { position: fixed; inset: 0; background: white; z-index: 600; opacity: 0; pointer-events: none; }

/* ════════════════════════════════
   SHARED NAV
════════════════════════════════ */
.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
  backdrop-filter: blur(3px);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; letter-spacing: 0.15em; font-style: italic;
  cursor: pointer;
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 2.5rem;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--silver);
}
.nav-links a {
  color: inherit; text-decoration: none; cursor: pointer;
  transition: color 0.3s; padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-color: var(--gold); }

/* ════════════════════════════════
   HOME PAGE
════════════════════════════════ */
#page-home { opacity: 0; transition: opacity 0.5s; }
#page-home.visible { opacity: 1; }

#hero {
    height: 100vh;
      background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.75) 100%
      ),
      url('../images/nyork2019.JPG') center/cover no-repeat;
}
.hero-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 3rem;
}
.hero-eyebrow {
  font-size: 0.6rem; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.hero-body h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400; line-height: 1.05; margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}
.hero-body h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
  max-width: 460px; font-size: 0.8rem; line-height: 1.8;
  color: rgba(245,240,232,0.75); margin-bottom: 2.5rem;
}
.cta-row { display: flex; gap: 1.5rem; align-items: center; }
.btn-primary {
  padding: 0.75rem 2rem; border: 1px solid var(--gold);
  background: transparent; color: var(--gold);
  font-family: 'Courier Prime', monospace;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.btn-primary:hover { background: var(--gold); color: var(--black); }
.btn-ghost {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--silver); background: none; border: none; cursor: pointer; transition: color 0.3s;
}
.btn-ghost:hover { color: var(--white); }

.stats-strip {
  display: flex; border-top: 1px solid rgba(200,192,176,0.15);
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
}
.stat { flex: 1; padding: 1.2rem 2rem; border-right: 1px solid rgba(200,192,176,0.1); }
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--gold); font-style: italic; display: block;
}
.stat-label { font-size: 0.52rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--silver); }

/* ── GALLERY SECTION ── */
#gallery { padding: 6rem 3rem; background: #0d0d0d; }
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; border-bottom: 1px solid rgba(200,192,176,0.1); padding-bottom: 1.5rem;
}
.section-eyebrow { font-size: 0.55rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; font-style: italic; }
.filter-tabs { display: flex; gap: 1rem; flex-wrap: wrap; }
.filter-tab {
  font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 0.4rem 1rem; border: 1px solid rgba(200,192,176,0.2);
  background: none; color: var(--silver); cursor: pointer; transition: all 0.3s;
}
.filter-tab.active, .filter-tab:hover { border-color: var(--gold); color: var(--gold); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; background: #1a1a1a; }
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:nth-child(2) { aspect-ratio: 3/4; }
.gallery-item:nth-child(3) { aspect-ratio: 3/4; }
.gallery-item:nth-child(4) { aspect-ratio: 3/4; }
.gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:nth-child(6) { aspect-ratio: 1/1; }
.gallery-item:nth-child(7) { aspect-ratio: 1/1; }
.gallery-item:nth-child(8) { aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.4s ease; filter: saturate(0.9) brightness(0.95); display: block; }
.gallery-item:hover img { transform: scale(1.04); filter: saturate(1.1) brightness(1.05); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.gallery-item:hover .overlay { opacity: 1; }
.overlay-location { font-size: 0.55rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.overlay-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--white); margin-bottom: 0.5rem; }
.overlay-meta { font-size: 0.5rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--silver); }

/* ── CONTINENTS SECTION ── */
#continents { padding: 6rem 3rem; background: #0a0a0a; }
.continents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; }
.continent-card {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
}
.continent-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; filter: brightness(0.65) saturate(0.8); }
.continent-card:hover img { transform: scale(1.06); filter: brightness(0.5) saturate(0.7); }
.continent-card .card-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  transition: background 0.4s;
}
.continent-card:hover .card-body { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 100%); }
.card-tag { font-size: 0.5rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.card-name { font-family: 'Playfair Display', serif; font-size: 2rem; font-style: italic; color: var(--white); margin-bottom: 0.4rem; }
.card-count { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--silver); margin-bottom: 1rem; }
.card-arrow {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.continent-card:hover .card-arrow { opacity: 1; transform: translateY(0); }
.continent-card.coming-soon { cursor: default; }
.continent-card.coming-soon img { filter: brightness(0.3) saturate(0); }
.coming-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-size: 0.5rem; letter-spacing: 0.3em; text-transform: uppercase;
  border: 1px solid rgba(200,192,176,0.25); padding: 0.3rem 0.7rem;
  color: rgba(200,192,176,0.4);
}

/* ── FOOTER ── */
footer {
  padding: 3rem; border-top: 1px solid rgba(200,192,176,0.08);
  display: flex; justify-content: space-between; align-items: center;
  background: #080808;
}
footer p { font-size: 0.52rem; letter-spacing: 0.25em; color: rgba(200,192,176,0.3); text-transform: uppercase; }
.gallery-block{
  margin-bottom:5rem;
}
/* ══════════════════════════════
   ROMA (DINÁMICA JS)
═════════════════════════════ */

.roma-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
}

.roma-photo{
  position:relative;
  overflow:hidden;
  aspect-ratio:4/5;
  cursor:pointer;
  background:#111;
}

.roma-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

.roma-photo:hover img{
  transform:scale(1.05);
}

/* ════════════════════════════════
   ASIA PAGE
════════════════════════════════ */
#page-asia { background: var(--black); }

.continent-hero {
  height: 75vh; position: relative;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.85) 100%),
    url('..images/roma/1roma.jpg') center/cover no-repeat;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 0 3rem 4rem;
}
.breadcrumb {
  position: absolute; top: 7rem; left: 3rem;
  font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(200,192,176,0.5); display: flex; gap: 0.8rem; align-items: center;
}
.breadcrumb span { color: var(--gold); }
.breadcrumb a { color: inherit; text-decoration: none; cursor: pointer; }
.breadcrumb a:hover { color: var(--silver); }
.continent-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 400; font-style: italic; line-height: 1;
  color: var(--white); text-shadow: 0 4px 60px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}
.continent-hero .sub {
  font-size: 0.65rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--silver);
}
.continent-hero .sub span { color: var(--gold); }

.continent-stats {
  display: flex; background: #111;
  border-bottom: 1px solid rgba(200,192,176,0.08);
}
.continent-stat { flex: 1; padding: 1.5rem 2.5rem; border-right: 1px solid rgba(200,192,176,0.08); }
.continent-stat:last-child { border-right: none; }
.continent-stat .n { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-style: italic; display: block; }
.continent-stat .l { font-size: 0.52rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--silver); }

.continent-intro { padding: 5rem 3rem; max-width: 800px; }
.continent-intro p { font-size: 1rem; line-height: 2; color: rgba(245,240,232,0.75); text-align: justify;}
.continent-intro p + p { margin-top: 1.5rem; }
.continent-intro em { font-style: italic; color: var(--gold); }

.countries-section { padding: 0 3rem 6rem; }
.countries-section h3 {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-style: italic;
  margin-bottom: 0.5rem; color: var(--white);
}
.countries-section .sub-eyebrow { font-size: 0.55rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }

.countries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; }
.country-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; }
.country-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s, filter 0.4s; filter: brightness(0.7) saturate(0.85); }
.country-card:hover img { transform: scale(1.07); filter: brightness(0.55) saturate(1.1); }
.country-card .cbody {
  position: absolute; inset: 0; padding: 1.2rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
}
.country-flag { font-size: 1.4rem; margin-bottom: 0.4rem; }
.country-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-style: italic; color: var(--white); }
.country-photos { font-size: 0.5rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--silver); margin-top: 0.2rem; }

.asia-gallery { padding: 0 3rem 6rem; }
.asia-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.asia-photo { overflow: hidden; cursor: pointer; }
.asia-photo:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
.asia-photo:not(:nth-child(1)) { aspect-ratio: 1/1; }
.asia-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s, filter 0.4s; filter: brightness(0.85); display: block; }
.asia-photo:hover img { transform: scale(1.05); filter: brightness(1); }

.africa-gallery-grid,
.america-gallery-grid,
.europa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.africa-photo,
.america-photo,
.europa-photo {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
}

.africa-photo img,
.america-photo img,
.europa-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.4s;
  filter: brightness(0.85);
  display: block;
}

.africa-photo:hover img,
.america-photo:hover img,
.europa-photo:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.africa-photo:nth-child(1),
.america-photo:nth-child(1),
.europa-photo:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.africa-gallery,
.america-gallery,
.europa-gallery {
  padding: 0 3rem 6rem;
}

#page-africa .continent-hero{
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.4) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.85) 100%
    ),
    url('../images/nilo3.jpg') center/cover no-repeat;
}

#page-asia .continent-hero{
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.4) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.85) 100%
    ),
    url('../images/asia/instaaabul2015.jpg') center/cover no-repeat;
}

#page-america .continent-hero{
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.4) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.85) 100%
    ),
    url('../images/america/newyork2019.jpg') center/cover no-repeat;
}

#page-europa .continent-hero{
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.4) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.85) 100%
    ),
    url('../images/europa/24.jpg') center/cover no-repeat;
}
.europa-gallery{
  padding: 0 3rem 6rem;
}
.europa-magazine{
  margin-bottom:7rem;
}

.top-layout{
  display:grid;
  grid-template-columns:1fr 1.45fr;
  gap:1rem;
  margin-bottom:1rem;
  align-items:stretch;
}

.europa-magazine.reverse .top-layout{
  grid-template-columns:1.45fr 1fr;
}

.europa-magazine.reverse .featured-photo{
  order:-1;
}

.small-grid-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}

.bottom-layout{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
}

.europa-photo,
.featured-photo{
  position:relative;
  overflow:hidden;
  background:#111;
  cursor:pointer;
}
.europa-photo{
  aspect-ratio:auto;
  min-height:180px;
}
.europa-photo{
  aspect-ratio:1/1;
}

.featured-photo{
  aspect-ratio: 3/4;
  min-height: 720px;
}
.bottom-layout{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  margin-top:1rem;
}

.europa-photo img,
.featured-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .7s ease;
}

.europa-photo:hover img,
.featured-photo:hover img{
  transform:scale(1.03);
}
.europa-magazine{
  display:flex;
  flex-direction:column;
}
.europa-magazine.reverse .top-layout {
  direction: rtl;
}

.europa-magazine.reverse .small-grid-top,
.europa-magazine.reverse .featured-photo {
  direction: ltr;
}

.featured-overlay{
  position:absolute;
  left:2rem;
  bottom:2rem;
  z-index:2;
  max-width:70%;
}

.featured-overlay span{
  display:block;
  font-size:.72rem;
  letter-spacing:.22rem;
  text-transform:uppercase;
  color:#d8d1c5;
  margin-bottom:.8rem;
  font-family:'Courier Prime', monospace;
}

.featured-overlay h2{
  font-family:'Playfair Display', serif;
  font-size:clamp(1.6rem,2vw,2.4rem);
  font-weight:400;
  line-height:1.1;
  color:white;
}
.featured-photo{
  min-height: 700px;
  aspect-ratio: auto;
}
.small-grid-top .europa-photo{
  aspect-ratio: 3/4;
}
.bottom-layout{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
}
@media(max-width:1100px){

  .featured-photo{
    min-height:580px;
  }

}

@media(max-width:900px){

  .top-layout,
  .europa-magazine.reverse .top-layout{
    grid-template-columns:1fr;
  }

  .bottom-layout{
    grid-template-columns:1fr 1fr;
  }

  .featured-photo{
    min-height:420px;
  }

}
/* ════════════════════════════════
   CITIES SECTION
════════════════════════════════ */
#page-roma .continent-hero{
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.4) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.85) 100%
    ),
    url('../images/roma/1roma.jpg') center/cover no-repeat;
}
#page-venezia .continent-hero{
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.4) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.85) 100%
    ),
    url('../images/venezia/01venezia.jpg') center/cover no-repeat;
}
#page-estambul .continent-hero{
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.4) 0%,
      rgba(0,0,0,0.15) 40%,
      rgba(0,0,0,0.85) 100%
    ),
    url('../images/estambul/01instambul.jpg') center/cover no-repeat;
}
#cities {
  padding: 6rem 3rem;
  background: #0d0d0d;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.city-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  text-decoration: none;
}
.city-card .card-body{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:2rem;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.15) 55%,
      transparent 100%
    );

  z-index:2;
}
.city-card img{
  position:absolute;
  inset:0;
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.65) saturate(0.8);
}

.city-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.5) saturate(0.7);
}

.city-card:hover .card-body {
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.2) 100%
    );
}

.city-card:hover .card-arrow {
  opacity: 1;
  transform: translateY(0);
}



/* ════════════════════════════════
   LIGHTBOX
════════════════════════════════ */
#lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.96);
  display: none; align-items: center; justify-content: center; flex-direction: column;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 88vw; max-height: 78vh; object-fit: contain; border: 1px solid rgba(200,192,176,0.1); }
.lightbox-info { margin-top: 1.5rem; text-align: center; }
.lightbox-info .loc { font-size: 0.55rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.lightbox-info .ttl { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-style: italic; color: var(--white); }
.lightbox-close {
  position: absolute; top: 2rem; right: 2rem;
  background: none; border: 1px solid rgba(200,192,176,0.2);
  color: var(--silver); font-size: 1.2rem;
  width: 40px; height: 40px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid rgba(200,192,176,0.15);
  color: var(--silver); font-size: 1.4rem; width: 48px; height: 48px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
/* ══════════════════════════════
   SOCIAL FOOTER
══════════════════════════════ */

.social-footer{
  margin-top:2rem;
  display:flex;
  justify-content:center;
  gap:2rem;
}

.social-footer a{
  color:#c8c0b0;
  text-decoration:none;
  font-family:'Courier Prime', monospace;
  font-size:.9rem;
  letter-spacing:2px;
  text-transform:uppercase;
  opacity:.7;
  transition:all .3s ease;
  position:relative;
}

.social-footer a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:1px;
  background:#c8c0b0;
  transition:width .3s ease;
}

.social-footer a:hover{
  opacity:1;
  transform:translateY(-2px);
}

.social-footer a:hover::after{
  width:100%;
}
/* INTRO CON FOTO LATERAL asia africa america europa */

.intro-with-photo{
  display:grid;
  grid-template-columns:1.45fr 1.1fr;
  gap:4rem;
  align-items:center;

  width:min(1400px,94%);
  max-width:none;

  margin:auto;
}

.intro-with-photo .intro-text{
  max-width:none;
}

.intro-with-photo .intro-image img{
  width:100%;
  height:700px;

  object-fit:cover;

  border-radius:6px;

  display:block;
}

/* MÓVIL */

@media(max-width:900px){

  .intro-with-photo{
    grid-template-columns:1fr;
  }

  .intro-with-photo .intro-image img{
    height:420px;
  }

}
/* ══════════════════════
   PAGE TRANSITION
══════════════════════ */

.page-transition{
  position:fixed;
  inset:0;

  background:#0a0a0a;

  z-index:99999;

  opacity:0;
  pointer-events:none;

  transition:
    opacity .7s ease,
    transform 1.2s ease;

  transform:scale(1.08);
}

.page-transition.active{
  opacity:1;
  transform:scale(1);
}