:root{
  --bg:#050708;
  --bg2:#0b1114;
  --panel:#0e1518;
  --line:rgba(218,194,144,.35);
  --gold:#c9a45c;
  --text:#f3ead8;
  --muted:#b8ad9a;
  --red:#5b1716;
  --blue:#071d28;
  --green:#102416;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.65;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.section-pad{padding:96px 6vw}

.site-header{
  min-height:100vh;
  position:relative;
  overflow:hidden;
  background:radial-gradient(circle at 70% 20%,rgba(201,164,92,.12),transparent 30%),linear-gradient(180deg,#050708,#0b1114);
}

.nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 6vw;
  background:rgba(5,7,8,.76);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(201,164,92,.15);
}

.brand{
  letter-spacing:.28em;
  text-transform:uppercase;
  display:flex;
  gap:10px;
  align-items:baseline;
}

.brand span{font-size:12px;color:var(--muted)}
.brand strong{font-size:18px;color:var(--gold)}

.nav-links{
  display:flex;
  gap:28px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--muted);
}

.nav-links a:hover{color:var(--gold)}

.menu-toggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
  padding:6px 10px;
}

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  align-items:end;
  gap:48px;
  padding-top:160px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(5,7,8,.96) 0%,rgba(5,7,8,.78) 40%,rgba(5,7,8,.52)),url('assets/img/mapa/mapa-localizaciones.jpg') center/cover no-repeat;
  opacity:.42;
  filter:saturate(.7) contrast(1.15);
}

.hero-content,
.hero-dossier{
  position:relative;
  z-index:1;
}

.eyebrow{
  text-transform:uppercase;
  color:var(--gold);
  letter-spacing:.28em;
  font-size:12px;
  margin:0 0 16px;
}

.hero h1{
  font-size:clamp(52px,8vw,122px);
  line-height:.92;
  margin:0 0 26px;
  text-transform:uppercase;
  letter-spacing:.06em;
  max-width:1000px;
}

.hero-text{
  font-size:clamp(18px,2vw,24px);
  max-width:720px;
  color:#ddd0ba;
}

.hero-actions{
  display:flex;
  gap:16px;
  margin-top:34px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--gold);
  padding:14px 22px;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  min-width:170px;
}

.btn.primary{
  background:var(--gold);
  color:#080808;
}

.btn.ghost{
  background:rgba(0,0,0,.25);
  color:var(--text);
}

.hero-dossier{
  border:1px solid var(--line);
  background:rgba(10,14,16,.72);
  padding:26px;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.hero-dossier span{
  display:block;
  color:var(--muted);
  letter-spacing:.22em;
  font-size:12px;
}

.hero-dossier strong{
  display:block;
  font-size:42px;
  color:var(--gold);
  letter-spacing:.08em;
  margin:6px 0 14px;
}

.section{position:relative}

.section-title{
  max-width:900px;
  margin-bottom:42px;
}

.section-title h2{
  font-size:clamp(38px,5vw,72px);
  line-height:.95;
  margin:0;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  font-size:18px;
  color:#d7cbb8;
}

.dark-block{
  background:linear-gradient(135deg,#06090a,#0d1518);
  border-top:1px solid rgba(201,164,92,.18);
  border-bottom:1px solid rgba(201,164,92,.18);
}

.context-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.context-card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
  padding:32px;
  min-height:300px;
}

.context-card h2{
  font-size:32px;
  line-height:1.05;
  margin:0 0 18px;
  text-transform:uppercase;
}

.context-card p:last-child{color:var(--muted)}

.cards-grid{
  display:grid;
  gap:26px;
}

/* PERSONAJES */

.character-list{
  display:flex;
  flex-direction:column;
  gap:54px;
}

.person-card{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(201,164,92,.22);
  min-height:720px;
  background:#000;
  box-shadow:0 30px 90px rgba(0,0,0,.5);
}

.person-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  filter:saturate(.88) contrast(1.04) brightness(.86);
}

.person-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 58%,
    rgba(0,0,0,.55) 82%,
    rgba(0,0,0,.94) 100%
  );
}

.person-info{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:0 72px 46px 72px;
  max-width:980px;
}

.person-info .eyebrow{margin-bottom:10px}

.person-card h3{
  font-size:clamp(38px,6vw,92px);
  line-height:.9;
  margin:0 0 16px;
  text-transform:uppercase;
  letter-spacing:.05em;
  max-width:760px;
}

.person-card p:not(.eyebrow){
  font-size:18px;
  line-height:1.55;
  color:#d8ccba;
  margin:0;
  max-width:860px;
}

/* LOCALIZACIONES */

.locations{background:#070909}

.location-grid{
  grid-template-columns:repeat(4,1fr);
}

.location-card{
  border:1px solid rgba(201,164,92,.22);
  background:linear-gradient(180deg,#10181b,#090d0e);
  overflow:hidden;
}

.location-card img{
  height:190px;
  width:100%;
  object-fit:cover;
  filter:saturate(.65) contrast(1.1);
}

.location-card h3,
.location-card p{
  padding-left:20px;
  padding-right:20px;
}

.location-card h3{
  padding-top:20px;
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:20px;
}

.location-card p{
  padding-bottom:24px;
  margin:0;
  color:var(--muted);
}

/* MAPA */

.map-section{
  background:linear-gradient(180deg,#050708,#0d1112);
}

.map-frame{
  margin:0;
  border:1px solid var(--line);
  padding:10px;
  background:#050708;
  box-shadow:0 30px 80px rgba(0,0,0,.5);
}

.map-frame img{
  width:100%;
  border:1px solid rgba(255,255,255,.08);
}

/* TRAILER */

.trailer-section{
  background:linear-gradient(180deg,#070909,#030404);
}

.video-wrapper{
  position:relative;
  width:100%;
  max-width:1400px;
  margin:0 auto;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:24px;
  background:#000;
  border:1px solid rgba(201,164,92,.28);
  box-shadow:0 35px 90px rgba(0,0,0,.65);
}

.video-wrapper iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.final-cta{
  text-align:center;
  background:#030404;
}

.final-cta h2{
  font-size:clamp(38px,6vw,88px);
  line-height:1;
  text-transform:uppercase;
  margin:0 0 32px;
}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease,transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

/* TABLET */

@media(max-width:980px){
  .nav-links{
    position:absolute;
    top:65px;
    left:6vw;
    right:6vw;
    display:none;
    flex-direction:column;
    padding:20px;
    background:#071013;
    border:1px solid var(--line);
  }

  .nav-links.open{display:flex}

  .menu-toggle{display:block}

  .hero{
    grid-template-columns:1fr;
    align-items:end;
  }

  .hero-dossier{max-width:360px}

  .two-col,
  .context-grid{
    grid-template-columns:1fr;
  }

  .location-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .person-card{min-height:560px}

  .person-info{
    padding:0 38px 34px 38px;
  }

  .person-card h3{font-size:48px}

  .person-card p:not(.eyebrow){
    font-size:16px;
    line-height:1.55;
  }
}

/* MÓVIL */

@media(max-width:640px){
  .section-pad{
    padding:72px 22px;
  }

  .hero{
    padding-top:120px;
  }

  .hero h1{
    font-size:48px;
  }

  .hero-text{
    font-size:17px;
  }

  .location-grid{
    grid-template-columns:1fr;
  }

  .brand{
    letter-spacing:.18em;
  }

  .nav{
    padding:14px 22px;
  }

  .btn{
    width:100%;
  }

  .hero-dossier strong{
    font-size:32px;
  }

  .person-card{
    min-height:500px;
  }

  .person-info{
    padding:0 24px 24px 24px;
  }

  .person-card h3{
    font-size:34px;
  }

  .person-card p:not(.eyebrow){
    font-size:14px;
    line-height:1.5;
  }

  .video-wrapper{
    border-radius:16px;
  }
.back-home{
  font-size:.85rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  opacity:.8;
  transition:.3s ease;
}

.back-home:hover{
  color:var(--gold);
  opacity:1;
}
}