/* ==============================================================
   INFLUENCIA DE MALDAD — styles.css v4
   ============================================================== */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;700;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:  #060606;
  --red:    #8f1116;
  --red-hi: #e8303a;
  --gold:   #c5a66a;
  --text:   #f0ebe0;
  --muted:  rgba(240,235,224,.72);
  --line:   rgba(255,255,255,.12);
  --ts:     0 1px 8px rgba(0,0,0,1), 0 2px 20px rgba(0,0,0,.9);
  --ts2:    0 2px 6px rgba(0,0,0,1), 0 4px 28px rgba(0,0,0,.95);
  --radius: 2px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; }
ul { list-style: none; }

/* ==============================================================
   HEADER
   ============================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 72px;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  background: linear-gradient(to bottom, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 60%, transparent 100%);
  transition: background .3s;
}
.site-header.scrolled {
  background: rgba(6,6,6,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo {
  display: grid; place-items: center;
  width: 58px; height: 46px;
  font-family: 'Anton', sans-serif; font-size: 24px; letter-spacing: .02em;
  color: #e8e5dc;
  background: linear-gradient(90deg, var(--red) 0 18%, transparent 18%);
  text-shadow: var(--ts);
  flex-shrink: 0;
}
.brand__name {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.86); text-shadow: var(--ts);
}

.main-nav {
  display: flex; align-items: center; gap: 28px;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
}
.main-nav a { color: rgba(255,255,255,.84); text-shadow: var(--ts); transition: color .2s; }
.main-nav a:hover { color: var(--gold); }

.header-end { display: flex; align-items: center; gap: 14px; }

.pitch-btn {
  border: 1px solid var(--gold); padding: 9px 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold); text-shadow: var(--ts); background: rgba(0,0,0,.3);
  transition: background .2s, transform .15s;
}
.pitch-btn:hover { background: rgba(197,166,106,.1); transform: translateY(-1px); }

.ham-btn {
  display: none; /* hidden desktop */
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 6px;
  background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.18);
  cursor: pointer; border-radius: var(--radius); flex-shrink: 0;
}
.ham-btn span { display: block; width: 100%; height: 2px; background: rgba(255,255,255,.9); border-radius: 1px; }

/* ==============================================================
   MOBILE MENU OVERLAY
   ============================================================== */
.mob-menu {
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(4,4,4,.97);
  border-top: 2px solid var(--red);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.mob-menu.is-open { opacity: 1; visibility: visible; pointer-events: all; }

.mob-menu__close {
  position: absolute; top: 18px; right: 18px;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  color: rgba(255,255,255,.9); cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.mob-menu__close:hover { background: rgba(197,166,106,.14); border-color: var(--gold); color: var(--gold); }
.mob-menu__close:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.mob-menu__link {
  display: block; width: 84vw; max-width: 340px;
  padding: 13px 0;
  font-family: 'Anton', sans-serif; font-size: clamp(26px, 7vw, 44px);
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.86); text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mob-menu__link:hover { color: var(--gold); }

.mob-menu__cta {
  margin-top: 28px; padding: 13px 42px;
  border: 1px solid var(--gold);
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--gold);
  transition: background .2s;
}
.mob-menu__cta:hover { background: rgba(197,166,106,.1); }

/* ==============================================================
   POSTER SECTIONS — base
   ============================================================== */
.ps {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}

.ps__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}

/* Gradient overlays */
.ps__grad {
  position: absolute; z-index: 1; pointer-events: none;
}
.ps__grad--hero-left {
  inset: 0;
  background: linear-gradient(to right,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.72) 38%,
    rgba(0,0,0,.4)  58%,
    rgba(0,0,0,0)  72%
  );
}
.ps__grad--left {
  inset: 0;
  background: linear-gradient(to right,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.65) 35%,
    rgba(0,0,0,.32) 55%,
    rgba(0,0,0,0)   70%
  );
}
.ps__grad--bottom {
  inset: auto 0 0;
  height: 200px;
  background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,0));
}
.ps__grad--center-overlay {
  inset: 0;
  background: rgba(0,0,0,.58);
}
.ps__grad--personajes-top {
  inset: 0 0 auto;
  height: 110px;
  background: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,0));
}

/* ==============================================================
   SHARED SECTION CONTENT
   ============================================================== */
.sect-content {
  position: relative; z-index: 2;
  min-height: 100dvh; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 5vw 60px;
}
.sect-content--left { max-width: 56%; }
.sect-content--wide { max-width: 62%; }

.sect-num {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .2em; color: var(--gold); text-shadow: var(--ts);
  margin-bottom: 14px;
}
.sect-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(38px, 5.5vw, 80px);
  line-height: .94; text-transform: uppercase; letter-spacing: .03em;
  color: #fff; text-shadow: var(--ts2);
  margin-bottom: 18px;
}
.sect-title--lg { font-size: clamp(44px, 6.5vw, 92px); }
.sect-title--inline { font-size: clamp(36px, 5vw, 70px); }

.sect-punch {
  font-size: clamp(13px, 1.7vw, 18px); font-weight: 900;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--red-hi); text-shadow: var(--ts);
  margin-bottom: 22px; line-height: 1.4;
}
.sect-body p {
  font-size: clamp(13px, 1.25vw, 15.5px); color: var(--muted);
  text-shadow: var(--ts); line-height: 1.7;
  margin-bottom: 14px; max-width: 52ch;
}
.sect-body--sm p { font-size: clamp(12px, 1.1vw, 14px); }

.sect-callout {
  margin-top: 24px;
  font-size: clamp(12px, 1.4vw, 16px); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gold); text-shadow: var(--ts);
  border-left: 2px solid var(--red-hi); padding-left: 16px;
  line-height: 1.5;
}
.sect-warning {
  margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
}
.sect-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  color: var(--red-hi); border: 1px solid var(--red-hi);
  padding: 4px 10px; opacity: .7;
}

/* ==============================================================
   BUTTONS
   ============================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 24px;
  font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em;
  transition: transform .15s, background .2s, color .2s;
  cursor: pointer; border: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--red { background: var(--red); color: #fff; border: 1px solid var(--red-hi); }
.btn--red:hover { background: var(--red-hi); }
.btn--ghost { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn--ghost:hover { background: rgba(197,166,106,.1); }
.btn__icon { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* ==============================================================
   RED / GOLD TEXT HELPER
   ============================================================== */
.red-text { color: var(--red-hi); text-shadow: var(--ts); }
.gold-text { color: var(--gold); text-shadow: var(--ts); }

/* ==============================================================
   HERO SECTION
   ============================================================== */
.hero-content {
  position: relative; z-index: 2;
  min-height: 100dvh; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 96px 5vw 32px;
  max-width: 60%;
}
.hero-content__main { display: flex; flex-direction: column; gap: 0; }

.genre-badges {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px;
  margin-bottom: 18px;
}
.gbadge {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: rgba(255,255,255,.7); text-shadow: var(--ts);
}
.gbadge--dot { color: var(--red-hi); }

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 7vw, 100px);
  line-height: .9; text-transform: uppercase; letter-spacing: .03em;
  color: #fff; text-shadow: var(--ts2);
  margin-bottom: 16px;
}
.hero-slogan {
  font-size: clamp(16px, 2vw, 22px); font-weight: 900; line-height: 1.3;
  color: var(--red-hi); text-shadow: var(--ts2);
  margin-bottom: 20px; letter-spacing: .02em;
}
.hero-slogan span { display: block; }
.hero-body p {
  font-size: clamp(12.5px, 1.2vw, 14.5px); color: var(--muted);
  text-shadow: var(--ts); max-width: 50ch; line-height: 1.7;
  margin-bottom: 10px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }

.hero-stats {
  display: flex; align-items: center; gap: 16px;
  margin-top: 10px;
}
.hstat { display: flex; align-items: center; gap: 10px; }
.hstat__num {
  font-family: 'Anton', sans-serif; font-size: 22px;
  color: var(--gold); text-shadow: var(--ts);
}
.hstat__icon { width: 28px; height: 28px; color: var(--gold); }
.hstat__icon svg { width: 100%; height: 100%; }
.hstat__label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.72); text-shadow: var(--ts);
  line-height: 1.35;
}
.hstat__div { width: 1px; height: 32px; background: var(--line); flex-shrink: 0; }

.hero-tagline {
  display: flex; flex-direction: column; gap: 3px;
  font-size: clamp(11px, 1.1vw, 13px); font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(255,255,255,.65); text-shadow: var(--ts);
}

/* ==============================================================
   CONCEPTO — inherits .sect-content--left
   ============================================================== */
.s-concepto .ps__bg { object-position: 65% center; }

/* ==============================================================
   INFLUENCIA
   ============================================================== */
.sect-declaration {
  font-size: clamp(14px, 1.9vw, 20px); font-weight: 900;
  text-transform: uppercase; letter-spacing: .08em;
  color: #fff; text-shadow: var(--ts2);
  margin-bottom: 8px; line-height: 1.35;
}
.sect-sub-italic {
  font-size: clamp(12px, 1.2vw, 14px); color: var(--gold);
  font-style: italic; text-shadow: var(--ts);
  margin-bottom: 18px;
}
.pillars {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  margin: 20px 0 14px;
}
.pillar {
  font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em;
  color: rgba(255,255,255,.8); text-shadow: var(--ts);
}
.pillar__sep { color: var(--red-hi); font-weight: 900; }
.sect-eje {
  font-family: 'Anton', sans-serif;
  font-size: clamp(18px, 2.5vw, 30px);
  text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.9); text-shadow: var(--ts2);
  margin-bottom: 22px; line-height: 1.1;
}
.sect-eje span { color: var(--red-hi); }

.effects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.effect-card {
  padding: 10px 12px;
  background: rgba(0,0,0,.55); border: 1px solid rgba(197,166,106,.22);
  display: flex; flex-direction: column; gap: 4px;
}
.effect-card__name {
  font-size: 11px; font-weight: 900; text-transform: uppercase;
  letter-spacing: .14em; color: var(--gold); text-shadow: var(--ts);
}
.effect-card__desc {
  font-size: 11px; color: var(--muted); text-shadow: var(--ts);
  line-height: 1.4;
}

/* ==============================================================
   UNIVERSO
   ============================================================== */
.locations {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 18px 0;
}
.loc {
  padding: 8px 14px;
  background: rgba(0,0,0,.6); border: 1px solid rgba(197,31,37,.35);
  display: flex; flex-direction: column; gap: 2px;
}
.loc--center { border-color: var(--red-hi); }
.loc__name {
  font-family: 'Anton', sans-serif; font-size: clamp(13px, 1.5vw, 18px);
  text-transform: uppercase; letter-spacing: .06em;
  color: #fff; text-shadow: var(--ts);
}
.loc--center .loc__name { color: var(--red-hi); }
.loc__role {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.6); text-shadow: var(--ts);
}

/* ==============================================================
   PERSONAJES
   ============================================================== */
.s-personajes .ps__bg { object-position: center center; }

.personajes-wrap {
  position: relative; z-index: 2;
  min-height: 100dvh; min-height: 100vh;
  display: flex; flex-direction: column;
  padding: 90px 0 0;
}
.personajes-hdr {
  padding: 0 5vw 14px;
  border-bottom: 1px solid rgba(197,166,106,.18);
  display: flex; align-items: baseline; gap: 20px;
}
.personajes-hdr .sect-num { margin-bottom: 0; }

.chars-grid {
  flex: 1;
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.char-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  min-height: 200px;
}
.char-card__info {
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.75) 50%, rgba(0,0,0,0) 100%);
}
.char-card__name {
  font-family: 'Anton', sans-serif; font-size: clamp(14px, 1.6vw, 20px);
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--gold); text-shadow: var(--ts2);
  margin-bottom: 4px;
}
.char-card__desc {
  font-size: clamp(11px, 1vw, 13px); color: rgba(240,235,224,.82);
  text-shadow: var(--ts); line-height: 1.4;
}

/* ==============================================================
   PROYECTO
   ============================================================== */
.s-proyecto .ps__bg { object-position: center center; }

.proyecto-wrap {
  position: relative; z-index: 2;
  min-height: 100dvh; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center;
  padding: 100px 5vw 60px;
  max-width: 860px; margin: 0 auto;
}
.proyecto-desc {
  font-size: clamp(12px, 1.2vw, 14.5px); color: var(--muted);
  text-shadow: var(--ts); max-width: 58ch; line-height: 1.7;
  margin-bottom: 28px;
}

.kpi-bar {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  padding: 14px 24px; border-top: 1px solid rgba(197,31,37,.4); border-bottom: 1px solid rgba(197,31,37,.4);
  margin-bottom: 24px; width: 100%;
}
.kpi-stars { font-size: 12px; color: var(--gold); }
.kpi-count {
  font-family: 'Anton', sans-serif; font-size: clamp(26px, 4vw, 42px);
  color: #fff; text-shadow: var(--ts2); letter-spacing: .04em;
}
.kpi-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold); text-shadow: var(--ts);
}

.entregables { width: 100%; }
.entregables__box {
  background: rgba(0,0,0,.6); border: 1px solid rgba(197,31,37,.3);
  padding: 22px 24px 18px;
}
.entregables__title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--gold); text-shadow: var(--ts);
  margin-bottom: 16px; text-align: center;
}
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.checklist__col li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: clamp(11px, 1.1vw, 13px); color: var(--muted); text-shadow: var(--ts);
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  line-height: 1.4;
}
.ck { color: var(--red-hi); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

.proyecto-status {
  margin-top: 20px; text-align: center;
  padding: 16px 20px; background: rgba(0,0,0,.5);
  border: 1px solid var(--line); width: 100%;
}
.proyecto-status .sect-num { margin-bottom: 8px; text-align: center; }
.proyecto-status__text {
  font-size: clamp(11px, 1.1vw, 13px); color: var(--muted);
  text-shadow: var(--ts); letter-spacing: .05em; line-height: 1.6;
}
.proyecto-cierre {
  margin-top: 22px;
  font-size: clamp(13px, 1.5vw, 17px); font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: rgba(255,255,255,.88); text-shadow: var(--ts2);
  line-height: 1.45; text-align: center;
}

/* ==============================================================
   CONTACTO
   ============================================================== */
.s-contacto .ps__bg { object-position: 70% center; }

.contacto-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 7vw, 88px);
  text-transform: uppercase; letter-spacing: .04em;
  color: #fff; text-shadow: var(--ts2); line-height: .94;
  margin-bottom: 12px;
}
.contacto-sub {
  font-size: clamp(12px, 1.3vw, 15px); font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--gold); text-shadow: var(--ts);
  line-height: 1.5; margin-bottom: 22px;
}
.contacto-sub span { color: rgba(240,235,224,.65); font-weight: 400; }
.contacto-body p {
  font-size: clamp(12px, 1.2vw, 14px); color: var(--muted);
  text-shadow: var(--ts); max-width: 44ch; line-height: 1.7;
  margin-bottom: 10px;
}

.producer { display: flex; align-items: center; gap: 14px; margin: 20px 0; }
.producer__logo { flex-shrink: 0; }
.producer__info { display: flex; flex-direction: column; gap: 3px; }
.producer__name {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold); text-shadow: var(--ts);
}
.producer__detail {
  font-size: 11px; color: rgba(240,235,224,.65); text-shadow: var(--ts);
}

.channels { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.channel {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px;
  background: rgba(0,0,0,.5); border: 1px solid rgba(197,31,37,.28);
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.channel:hover { border-color: var(--red-hi); background: rgba(143,17,22,.1); }
.channel__icon {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%; flex-shrink: 0;
}
.channel__icon--wa   { background: rgba(37,211,102,.15); color: #25d366; }
.channel__icon--mail { background: rgba(197,31,37,.15);  color: var(--red-hi); }
.channel__icon--web  { background: rgba(197,166,106,.1); color: var(--gold); }
.channel__icon svg   { width: 18px; height: 18px; }
.channel__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.channel__label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.55); text-shadow: var(--ts);
}
.channel__value {
  font-size: clamp(11.5px, 1.3vw, 14px); color: var(--text);
  text-shadow: var(--ts); word-break: break-all;
}
.contacto-cierre {
  font-size: clamp(12px, 1.3vw, 15px); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.8); text-shadow: var(--ts2);
  line-height: 1.55;
  padding-top: 16px; border-top: 1px solid var(--line);
}

/* ==============================================================
   RESPONSIVE TABLET 768–979px
   ============================================================== */
@media (max-width: 979px) and (min-width: 768px) {
  .brand__name { display: none; }
  .main-nav { gap: 18px; font-size: 10.5px; }
  .pitch-btn { padding: 8px 14px; font-size: 10px; }

  .sect-content--left,
  .sect-content--wide { max-width: 68%; }
  .hero-content { max-width: 70%; }
  .effects-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================================================
   RESPONSIVE MOBILE ≤ 767px
   ============================================================== */
@media (max-width: 767px) {
  /* Header */
  .site-header { height: 60px; padding: 0 16px; }
  .brand__name  { display: none !important; }
  .main-nav     { display: none !important; }
  .pitch-btn    { display: none !important; }
  .ham-btn      { display: flex !important; }
  .brand__logo  { width: 50px; height: 40px; font-size: 20px; }

  /* Portrait mobile image — top aligned for best composition */
  .ps__bg { object-position: center top; }

  /* Hero */
  .hero-content {
    max-width: 100%;
    padding: 80px 5vw 28px;
    justify-content: flex-end;
    background: linear-gradient(to top,
      rgba(0,0,0,.9) 0%,
      rgba(0,0,0,.7) 40%,
      rgba(0,0,0,.2) 70%,
      rgba(0,0,0,0) 100%
    );
  }
  .ps__grad--hero-left { display: none; }
  .hero-body { display: none; } /* hide verbose on mobile */
  .hero-stats { display: none; }
  .hero-tagline { display: none; }
  .hero-actions { gap: 10px; }
  .btn { height: 42px; padding: 0 18px; font-size: 11px; }

  /* Sections */
  .sect-content {
    max-width: 100% !important;
    min-height: auto;
    padding: 80px 5vw 40px;
    justify-content: flex-end;
    background: linear-gradient(to top,
      rgba(0,0,0,.95) 0%,
      rgba(0,0,0,.8) 40%,
      rgba(0,0,0,.35) 70%,
      rgba(0,0,0,0) 100%
    );
  }
  /* Remove left gradient on mobile, use bottom one from content */
  .ps__grad--left { display: none; }
  .ps__grad--center-overlay { background: rgba(0,0,0,.5); }

  /* Effects grid 2 cols on mobile */
  .effects-grid { grid-template-columns: repeat(2, 1fr); }

  /* Locations */
  .locations { gap: 6px; }
  .loc { padding: 6px 10px; }

  /* Personajes — grid absoluto alineado con los marcos de la imagen */
  .personajes-wrap {
    position: absolute;
    inset: 0;
    padding: 0;
    min-height: 0;
    height: auto;
  }
  .personajes-hdr {
    position: absolute;
    top: 60px; left: 0; right: 0;
    z-index: 5;
    padding: 10px 4vw 18px;
    border-bottom: none;
    background: linear-gradient(to bottom, rgba(0,0,0,.88) 55%, transparent 100%);
  }
  .chars-grid {
    position: absolute;
    inset: 0;
    flex: none;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1px;
  }
  .char-card { min-height: 0; }
  .char-card__info { padding: 10px 10px 14px; }

  /* Proyecto */
  .proyecto-wrap {
    align-items: flex-start; text-align: left;
    padding: 80px 5vw 40px; max-width: 100%;
  }
  .checklist { grid-template-columns: 1fr; }
  .kpi-bar { justify-content: flex-start; }

  /* Contacto */
  .s-contacto .ps__bg { object-position: center top; }
  .channels { width: 100%; }
  .channel { padding: 8px 12px; }
  .channel__value { font-size: 12px; }
}

/* ==============================================================
   RESPONSIVE MOBILE SMALL ≤ 479px
   ============================================================== */
@media (max-width: 479px) {
  .site-header { height: 56px; padding: 0 12px; }
  .brand__logo  { width: 44px; height: 36px; font-size: 18px; }
  .effects-grid { grid-template-columns: 1fr; }
  .chars-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
  .char-card { min-height: 0; }
}
