/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
  --k:   #0A0A09;
  --w:   #F0EDE8;
  --r:   #E8220A;
  --dk:  #141412;
  --g:   #6B6860;
  --g2:  #2E2C28;

  --display: 'Bebas Neue', 'Arial Black', sans-serif;
  --mono:    'Space Mono', 'Courier New', monospace;
  --serif:   'Cormorant Garamond', Georgia, serif;

  --cut: cubic-bezier(0.25, 0, 0.5, 1);
}

/* ══════════════════════════════════════
   BASE
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--k);
  color: var(--w);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  cursor: crosshair;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--mono); cursor: crosshair; }
img { display: block; max-width: 100%; }

.film-img {
  filter: grayscale(1) contrast(1.25) brightness(0.8);
  transition: filter 0.2s var(--cut);
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  border-bottom: 1px solid var(--g2);
  padding: 0 0 0 4rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--k);
  transition: background .15s;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-items {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-items a {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--w);
  padding: 0 2.25rem;
  height: 64px;
  line-height: 64px;
  border-left: 1px solid var(--g2);
  transition: color .12s, background .12s;
}
.nav-items a:hover {
  color: var(--r);
  background: var(--g2);
}
.nav-items li:last-child a {
  border-right: none;
}

/* Nav social dropdown */
.nav-right {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-social {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 100%;
  color: var(--g);
  border-left: 1px solid var(--g2);
  border-right: 1px solid var(--g2);
  cursor: pointer;
  transition: color .15s, background .15s;
}
.nav-social:hover .nav-social-btn {
  color: var(--w);
  background: var(--g2);
}
.nav-social-drop {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--k);
  border: 1px solid var(--g2);
  border-top: 2px solid var(--r);
  padding: .4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s var(--cut), transform .2s var(--cut);
  z-index: 10;
}
.nav-social:hover .nav-social-drop {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.nav-social-drop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--g);
  transition: color .15s;
}
.nav-social-drop a:hover { color: var(--r); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  margin-top: 64px;
  position: relative;
  height: calc(100vh - 64px);
  min-height: 580px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 5rem;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: url('../../img/hero-mirador-historias-sin-fronteras.webp') center/cover no-repeat;
  filter: brightness(1);
  animation: heroImgZoom 10s ease-out forwards;
}
@keyframes heroImgZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-eye {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeup .6s var(--cut) .1s forwards;
}
.hero-eye::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--r);
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: .88;
  letter-spacing: .01em;
  color: var(--w);
  margin-bottom: .75rem;
  opacity: 0;
  animation: heroTitle 1s cubic-bezier(0.16, 1, 0.3, 1) .2s forwards;
}
@keyframes heroTitle {
  from { opacity: 0; transform: translateY(90px) skewY(3deg); }
  to   { opacity: 1; transform: none; }
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeup .6s var(--cut) .3s forwards;
}
.hero-desc {
  font-family: var(--serif);
  font-size: clamp(.9rem, 1.2vw, 1rem);
  line-height: 1.8;
  color: #fff;
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeup .6s var(--cut) .4s forwards;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeup .6s var(--cut) .5s forwards;
}
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.6rem;
  background: var(--r);
  color: var(--w);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s;
}
.btn-p:hover { background: #c0180a; }
.btn-g {
  display: inline-flex;
  align-items: center;
  padding: .72rem 1.6rem;
  border: 1px solid rgba(240,237,232,.3);
  color: rgba(240,237,232,.75);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .18s, color .18s;
}
.btn-g:hover { border-color: var(--w); color: var(--w); }
.hero-stats {
  position: absolute;
  bottom: 5rem;
  right: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
  opacity: 0;
  animation: fadeup .6s var(--cut) .6s forwards;
}
.stat-n {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
  color: var(--w);
  text-align: right;
}
.stat-l {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  text-align: right;
}

@keyframes fadeup {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════ */
.bg-k { background: var(--k); color: var(--w); }
.bg-w { background: var(--w); color: var(--k); }
.bg-dk { background: var(--dk); color: var(--w); }
.bg-r { background: var(--r); color: var(--w); }

.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.sec-label {
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--r);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .35;
}
.sec-head-big {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: .9;
  letter-spacing: .01em;
}

/* ── REVEAL ANIMATIONS ── */
/* Base: fade + slide up */
.rx {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .75s cubic-bezier(0.16,1,0.3,1), transform .75s cubic-bezier(0.16,1,0.3,1);
}
.rx.in { opacity: 1; transform: none; }

/* Clip: dramatic heading reveal with skew */
.rx-clip {
  opacity: 0;
  transform: translateY(60px) skewY(2.5deg);
  transition: opacity .9s cubic-bezier(0.16,1,0.3,1), transform .9s cubic-bezier(0.16,1,0.3,1);
}
.rx-clip.in { opacity: 1; transform: none; }

/* Scale: card/image entrance */
.rx-scale {
  opacity: 0;
  transform: scale(0.93) translateY(20px);
  transition: opacity .7s cubic-bezier(0.16,1,0.3,1), transform .7s cubic-bezier(0.16,1,0.3,1);
}
.rx-scale.in { opacity: 1; transform: none; }

/* Left: slide from left (labels, tags) */
.rx-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .65s cubic-bezier(0.16,1,0.3,1), transform .65s cubic-bezier(0.16,1,0.3,1);
}
.rx-left.in { opacity: 1; transform: none; }

/* Line: bar/separator reveal */
.rx-line {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .9s cubic-bezier(0.16,1,0.3,1);
}
.rx-line.in { transform: scaleY(1); }

/* Shared stagger delays — work on all rx variants */
[class*="rx"].d1 { transition-delay: .10s; }
[class*="rx"].d2 { transition-delay: .20s; }
[class*="rx"].d3 { transition-delay: .30s; }
[class*="rx"].d4 { transition-delay: .40s; }
[class*="rx"].d5 { transition-delay: .50s; }

/* ══════════════════════════════════════
   VIDEO REEL
══════════════════════════════════════ */
#video-reel { width: 100%; background: #000; line-height: 0; }
.vid-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
}
.vid-wrap iframe,
.vid-wrap #yt-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.vid-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(0,0,0,.38);
  transition: opacity .4s var(--cut), background .4s var(--cut);
}
.vid-cover.playing {
  opacity: 0;
  pointer-events: none;
}
.vid-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w);
  transition: background .25s, border-color .25s, transform .25s;
}
.vid-wrap:hover .vid-play-btn {
  background: var(--r);
  border-color: var(--r);
  transform: scale(1.1);
}
.vid-hint {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--w);
}

/* ══════════════════════════════════════
   QUOTE SECTION
══════════════════════════════════════ */
#quote {
  padding: 7rem 2rem 7rem 1.5rem;
  border-top: 3px solid var(--k);
}
.quote-inner {
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: auto 3px 1fr;
  gap: 0 3.5rem;
  align-items: center;
}
.quote-heading {
  display: flex;
  flex-direction: column;
  line-height: .88;
}
.qh-line1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--k);
  white-space: nowrap;
}
.qh-line2 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--r);
  white-space: nowrap;
}
.qh-black { color: var(--k); }
.quote-bar {
  background: var(--r);
  align-self: stretch;
}
.quote-right {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.3;
  color: var(--k);
  margin-bottom: 0;
}
.quote-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.quote-col {
  font-size: .9rem;
  line-height: 1.8;
  color: #3a3830;
}
.quote-col p + p { margin-top: 1.2rem; }

/* ══════════════════════════════════════
   FILMS INDEX
══════════════════════════════════════ */
#documentales {
  border-top: 1px solid var(--g2);
}
.films-header {
  padding: 3rem 2rem 2rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--g2);
}
.films-header-left { display: flex; flex-direction: column; gap: .75rem; }
.films-header-right {
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--g);
  text-align: right;
}

/* Film grid */
.film-hero-wrap {
  position: relative;
  overflow: hidden;
  height: 68vh;
  min-height: 500px;
  margin-bottom: 1px;
}
.films-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--g2);
  margin-top: 1px;
}
.film-cell {
  position: relative;
  overflow: hidden;
  cursor: crosshair;
  aspect-ratio: 16 / 10;
}
.film-cell.hero-cell {
  aspect-ratio: unset;
  height: 100%;
}
.film-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(1);
  transition: transform .9s var(--cut), filter .9s var(--cut);
}
.film-cell:hover .film-bg {
  transform: scale(1.05);
  filter: brightness(0.4);
}
.film-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,9,.97) 0%, rgba(10,10,9,.55) 38%, rgba(10,10,9,.12) 68%, transparent 100%);
  transition: background .55s;
}
.film-cell:hover .film-veil {
  background: linear-gradient(to top, rgba(10,10,9,1) 0%, rgba(10,10,9,.72) 48%, rgba(10,10,9,.3) 72%, rgba(10,10,9,.08) 100%);
}
.film-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.25rem;
}
.film-num {
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: .5rem;
}
.film-name {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  line-height: .95;
  color: var(--w);
  margin-bottom: .4rem;
}
.film-hero-wrap .film-name {
  font-size: clamp(2.5rem, 5vw, 5rem);
}
.film-dir {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 1rem;
}
.film-sinop {
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(240,237,232,.7);
  max-width: 500px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--cut), opacity .4s;
  opacity: 0;
}
.film-cell:hover .film-sinop { max-height: 220px; opacity: 1; }
.film-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s .08s, transform .35s .08s var(--cut);
}
.film-cell:hover .film-actions { opacity: 1; transform: none; }
.film-ver {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--w);
  border-bottom: 1px solid var(--r);
  padding-bottom: .2rem;
}
.film-play {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--k);
  background: var(--r);
  padding: .35rem .75rem;
  cursor: pointer;
}
.film-bg-noimg {
  background: radial-gradient(ellipse 80% 90% at 50% 25%, #281608 0%, #160C06 50%, #080806 100%) !important;
  filter: none !important;
}

/* ══════════════════════════════════════
   CONTEXT / ¿POR QUÉ?
══════════════════════════════════════ */
#context {
  padding: 7rem 2rem;
}
.context-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.context-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--g2);
}
.context-head-title {
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: .92;
  color: var(--k);
}
.context-head-title em {
  color: var(--r);
  font-style: normal;
}
.context-head-intro {
  font-size: .88rem;
  line-height: 1.85;
  color: #3a3830;
}
.context-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.context-col-label {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(232,34,10,.25);
}
.context-col-text {
  font-size: .85rem;
  line-height: 1.85;
  color: #3a3830;
}
.context-col-text p + p { margin-top: 1rem; }
.context-stat {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  color: var(--k);
  border-top: 3px solid var(--k);
  padding-top: .75rem;
  margin-top: 2rem;
}
.context-stat-label {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g);
}

/* ══════════════════════════════════════
   AUDIOVISUAL
══════════════════════════════════════ */
#ver-y-escuchar {
  padding: 6rem 2rem;
  border-top: 1px solid var(--g2);
}
.av-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.tab-strip {
  display: flex;
  border: 1px solid var(--g2);
}
.t-btn {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g);
  background: none;
  border: none;
  border-right: 1px solid var(--g2);
  padding: .65rem 1.25rem;
  cursor: crosshair;
  transition: background .12s, color .12s;
}
.t-btn:last-child { border-right: none; }
.t-btn.on {
  background: var(--r);
  color: var(--w);
}
.t-btn:not(.on):hover { background: var(--g2); color: var(--w); }
.t-panel { display: none; }
.t-panel.on { display: block; }

.av-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--g2);
}
.av-card {
  background: var(--dk);
  cursor: crosshair;
}
.av-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.av-thumb-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.2) brightness(.7);
  transition: transform .25s var(--cut), filter .25s;
}
.av-card:hover .av-thumb-img {
  transform: scale(1.04);
  filter: grayscale(.6) contrast(1.1) brightness(.75);
}
.av-veil {
  position: absolute;
  inset: 0;
  background: rgba(10,10,9,.42);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.av-card:hover .av-veil { background: rgba(10,10,9,.28); }
.play-sq {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(240,237,232,.7);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.play-sq::after {
  content: '';
  width: 0; height: 0;
  border: 6px solid transparent;
  border-left: 11px solid rgba(240,237,232,.85);
  margin-left: 3px;
}
.av-card:hover .play-sq { border-color: var(--r); background: rgba(232,34,10,.15); }
.av-dur {
  position: absolute; bottom: .6rem; right: .6rem;
  font-size: .6rem; letter-spacing: .08em;
  background: rgba(10,10,9,.75); color: var(--w);
  padding: .15rem .4rem;
}
.av-info {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--g2);
}
.av-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--w);
  margin-bottom: .2rem;
}
.av-meta {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g);
}

/* ══════════════════════════════════════
   OBJETIVOS
══════════════════════════════════════ */
#objetivos {
  padding: 6rem 2rem;
  border-top: 1px solid rgba(10,10,9,.15);
}
.obj-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.obj-list {
  counter-reset: obj;
  list-style: none;
}
.obj-list li {
  counter-increment: obj;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(10,10,9,.15);
  transition: background .12s;
}
.obj-list li:last-child { border-bottom: 1px solid rgba(10,10,9,.15); }
.obj-list li::before {
  content: counter(obj, decimal-leading-zero);
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--r);
  line-height: 1;
}
.obj-list li p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--k);
}

/* ══════════════════════════════════════
   EDITORIAL / ENSAYOS
══════════════════════════════════════ */
#conoce-mas { border-top: 1px solid rgba(10,10,9,.15); }
.ed-header {
  padding: 3rem 4rem 2.5rem;
  border-bottom: 1px solid rgba(10,10,9,.15);
}
.ed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10,10,9,.12);
}
.ec {
  background: var(--w);
  padding: 2.5rem;
  cursor: crosshair;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.ec::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--r);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--cut);
}
.ec:hover { background: rgba(10,10,9,.04); }
.ec:hover::before { transform: scaleX(1); }
.ec-feat {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.ec-tag {
  display: inline-flex;
  font-size: .55rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--r);
  border: 1px solid rgba(232,34,10,.35);
  padding: .22rem .65rem;
  margin-bottom: .9rem;
}
.ec-title {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.05;
  color: var(--k);
  margin-bottom: .75rem;
  transition: color .2s;
}
.ec-feat .ec-title { font-size: clamp(1.8rem, 2.8vw, 2.5rem); }
.ec:hover .ec-title { color: var(--r); }
.ec-excerpt {
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(10,10,9,.6);
  margin-bottom: 1.1rem;
}
.ec-byline {
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(10,10,9,.45);
}
.ec-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--r);
  border-bottom: 1px solid var(--r);
  padding-bottom: .2rem;
  margin-top: 1.75rem;
  text-decoration: none;
  transition: opacity .15s;
}
.ec-cta:hover { color: var(--k); border-bottom-color: rgba(10,10,9,.4); }
.ec-feat-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  filter: brightness(.55) grayscale(.3);
  transition: filter .4s;
}
.ec-feat:hover .ec-feat-img { filter: brightness(.75) grayscale(0); }

/* ══════════════════════════════════════
   GIRA — STATS
══════════════════════════════════════ */
#gira {
  padding: 0;
  border-top: 1px solid var(--g2);
}
.gira-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gira-text {
  padding: 6rem 2rem;
  border-right: 1px solid var(--g2);
}
.gira-title {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .9;
  color: var(--w);
  margin-bottom: 2rem;
}
.gira-p {
  font-size: .85rem;
  line-height: 1.8;
  color: var(--g);
  max-width: 480px;
}
.gira-p + .gira-p { margin-top: 1rem; }
.gira-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.gira-num {
  padding: 3rem 2.5rem;
  border-bottom: 1px solid var(--g2);
  border-right: 1px solid var(--g2);
}
.gira-num:nth-child(2n) { border-right: none; }
.gira-num:nth-child(3), .gira-num:nth-child(4) { border-bottom: none; }
.gira-n {
  font-family: var(--display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--w);
}
.gira-l {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--g);
  margin-top: .35rem;
}

/* ══════════════════════════════════════
   PRESS KIT DRAWER
══════════════════════════════════════ */
#pk-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%; height: 100%;
  background: var(--k);
  color: var(--w);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
#pk-drawer.open { transform: translateX(0); }
.pk-drawer-bar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 60px;
  background: var(--k);
  border-bottom: 1px solid var(--g2);
  z-index: 10;
}
.pk-drawer-label {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--w);
}
#pk-drawer-close {
  width: 38px; height: 38px;
  border: 1px solid var(--g2); background: none;
  color: var(--w); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .12s, background .12s;
}
#pk-drawer-close:hover { border-color: var(--r); background: rgba(232,34,10,.15); }
.pk-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: end;
  padding: 3rem 4rem;
  border-bottom: 1px solid var(--g2);
}
.pk-intro {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(240,237,232,.55);
  max-width: 480px;
}
.pk-mail {
  color: var(--r);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,34,10,.4);
}
.pk-mail:hover { border-bottom-color: var(--r); }
.pk-tabs-wrap {
  padding: 0 4rem;
  border-bottom: 1px solid var(--g2);
}
.pk-tabs {
  display: flex;
  gap: 0;
}
.pk-tab {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--g); background: none; border: none;
  padding: .75rem 1.5rem;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .12s, border-color .12s;
}
.pk-tab.on { color: var(--r); border-bottom-color: var(--r); }
.pk-tab:hover:not(.on) { color: var(--w); }
.pk-panel { display: none; padding: 3rem 4rem 4rem; }
.pk-panel.on { display: block; }
.pk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pk-grid--wide {
  grid-template-columns: repeat(3, 1fr);
}
.pk-card {
  background: rgba(240,237,232,.04);
  border: 1px solid var(--g2);
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}
.pk-card:hover { border-color: rgba(240,237,232,.25); }
.pk-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  aspect-ratio: 4/3;
}
.pk-prev--dark { background: var(--k); }
.pk-prev--light { background: var(--w); }
.pk-prev img { max-width: 100%; max-height: 90px; object-fit: contain; }
.pk-prev--film {
  background-size: cover;
  background-position: center;
  padding: 0;
  aspect-ratio: 16/9;
  position: relative;
}
.pk-prev--film::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,10,9,.35);
  transition: background .2s;
}
.pk-card:hover .pk-prev--film::after { background: rgba(10,10,9,.1); }
.pk-prev--doc {
  background: rgba(240,237,232,.04);
  aspect-ratio: 3/2;
}
.pk-prev--doc img { max-width: 100%; max-height: 110px; object-fit: contain; }
.pk-prev--placeholder {
  flex-direction: column;
  border-bottom: 1px solid var(--g2);
}
.pk-info {
  padding: 1rem 1.25rem .75rem;
  flex: 1;
}
.pk-name {
  font-family: var(--serif);
  font-size: .9rem;
  color: var(--w);
  margin-bottom: .35rem;
  line-height: 1.35;
}
.pk-type {
  font-size: .52rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g);
}
.pk-dl {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--r);
  text-decoration: none;
  padding: .85rem 1.25rem;
  border-top: 1px solid var(--g2);
  transition: background .15s, color .15s;
}
.pk-dl:hover { background: var(--r); color: var(--w); }
.pk-dl--disabled {
  color: rgba(240,237,232,.2);
  cursor: default;
}
.pk-dl--disabled:hover { background: none; color: rgba(240,237,232,.2); }

/* ══════════════════════════════════════
   DOCSMX
══════════════════════════════════════ */
#docsmx {
  border-top: 3px solid var(--k);
  padding: 5rem 2rem;
}
.docsmx-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: start;
}
.docsmx-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 1.25rem;
}
.docsmx-tagline {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g);
}
.docsmx-text {
  font-size: .88rem;
  line-height: 1.85;
  color: #3a3830;
  max-width: 720px;
}
.docsmx-text p + p { margin-top: 1.1rem; }
.link-ext {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--k);
  border-bottom: 1px solid var(--k);
  padding-bottom: .2rem;
  margin-top: 1.5rem;
  transition: color .15s, border-color .15s;
}
.link-ext:hover { color: var(--r); border-color: var(--r); }
.link-ext::after { content: '↗'; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--k);
  border-top: 1px solid var(--g2);
  padding: 3.5rem 4rem 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.ft-logo img { height: 36px; width: auto; margin-bottom: 1.25rem; display: block; }
.ft-desc {
  font-family: var(--serif);
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(240,237,232,.72);
}
.ft-head {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: 1rem;
}
.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.ft-links a {
  font-size: .72rem;
  color: var(--w);
  transition: color .15s;
}
.ft-links a:hover { color: var(--r); }
.ft-bottom {
  grid-column: 1 / -1;
  margin-top: 2.5rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--g2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.ft-copy {
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--w);
}
.ft-powered-link {
  color: var(--w);
  border-bottom: 1px solid rgba(240,237,232,.3);
  transition: color .12s, border-color .12s;
}
.ft-powered-link:hover { color: var(--r); border-color: var(--r); }
.ft-social {
  display: flex;
  gap: 0;
  border: 1px solid var(--g2);
  flex-shrink: 0;
}
.ft-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--w);
  border-right: 1px solid var(--g2);
  transition: background .12s, color .12s;
}
.ft-social a:last-child { border-right: none; }
.ft-social a:hover { background: var(--g2); color: var(--r); }

/* Mobile menu social */
.nav-mobile-social {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--g2);
  padding: 1.25rem 0;
  margin-top: .5rem;
}
.nav-mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(240,237,232,.5);
  transition: color .15s;
}
.nav-mobile-social a:hover { color: var(--r); }

/* ══════════════════════════════════════
   GUÍA DESCARGA
══════════════════════════════════════ */
#guia { border-top: 1px solid var(--g2); }
.guia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.guia-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--g2);
}
.guia-title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  color: var(--k);
  line-height: 1;
  margin: .75rem 0 1.5rem;
  letter-spacing: .02em;
}
.guia-desc {
  color: var(--g);
  max-width: 380px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-size: .95rem;
}
.guia-img {
  overflow: hidden;
}
.guia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s var(--cut);
}
.guia-img:hover img { transform: scale(1.03); }

/* ══════════════════════════════════════
   SEDES
══════════════════════════════════════ */
#sedes {
  padding: 5rem 4rem;
}
.sedes-inner {}
.sedes-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(240,237,232,.25);
  gap: 2rem;
}
.sedes-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(240,237,232,.85);
  text-align: right;
  max-width: 320px;
}
.sedes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,.2);
}
.sede-card {
  background: rgba(0,0,0,.18);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  border-left: 3px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s var(--cut), background .2s;
}
.sede-card:hover {
  border-left-color: var(--w);
  background: rgba(0,0,0,.32);
}
.sede-num {
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--w);
  opacity: .35;
}
.sede-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--w);
  line-height: 1.4;
}
.sede-loc {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(240,237,232,.65);
}
.sede-tag {
  margin-top: auto;
  align-self: flex-start;
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240,237,232,.7);
  border: 1px solid rgba(240,237,232,.35);
  padding: .25rem .6rem;
  transition: color .2s, border-color .2s, background .2s;
}
.sede-card:hover .sede-tag {
  color: var(--w);
  border-color: var(--w);
  background: rgba(255,255,255,.08);
}
.sede-links {
  margin-top: auto;
  display: flex;
  gap: .45rem;
  align-items: center;
}
.sede-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: rgba(240,237,232,.55);
  border: 1px solid rgba(240,237,232,.28);
  text-decoration: none;
  transition: color .2s var(--cut), border-color .2s var(--cut), background .2s var(--cut);
}
.sede-icon:hover {
  color: var(--w);
  border-color: var(--w);
  background: rgba(255,255,255,.08);
}
.sede-icon svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.sedes-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(240,237,232,.5);
  border: 1px solid rgba(240,237,232,.22);
  padding: .38rem .8rem;
  background: transparent;
  cursor: pointer;
  transition: color .18s var(--cut), border-color .18s var(--cut), background .18s var(--cut);
}
.filter-btn:hover {
  color: var(--w);
  border-color: rgba(240,237,232,.6);
}
.filter-btn.active {
  color: var(--w);
  border-color: var(--w);
  background: rgba(255,255,255,.08);
}
.sede-card.sede-hidden {
  display: none;
}

/* ══════════════════════════════════════
   MODAL
══════════════════════════════════════ */
#modal {
  position: fixed; inset: 0;
  background: rgba(10,10,9,.97);
  z-index: 2000;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--cut);
}
#modal.open { opacity: 1; pointer-events: all; }
.modal-wrap { max-width: 1200px; margin: 0 auto; }
.modal-head {
  position: relative;
  height: 50vh; min-height: 340px;
  overflow: hidden;
}
.modal-head-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(1) contrast(1.3) brightness(.5);
}
.modal-head-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,9,.1) 0%, rgba(10,10,9,.95) 100%);
}
.modal-head-content {
  position: absolute; bottom: 2.5rem; left: 2.5rem; right: 5rem;
}
#modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 10;
  width: 38px; height: 38px;
  border: 1px solid var(--g2); background: none;
  color: var(--w); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .12s, background .12s;
}
#modal-close:hover { border-color: var(--r); background: rgba(232,34,10,.15); }
.modal-body { padding: 2.5rem; }
.modal-tabs {
  display: flex;
  border-bottom: 1px solid var(--g2);
  margin-bottom: 2.5rem;
}
.m-tab {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--g); background: none; border: none;
  padding: .65rem 1.25rem;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .12s, border-color .12s;
}
.m-tab.on { color: var(--r); border-bottom-color: var(--r); }
.m-tab:hover:not(.on) { color: var(--w); }
.m-panel { display: none; }
.m-panel.on { display: block; }
.modal-sinop {
  max-width: 700px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(240,237,232,.75);
}
.ficha-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--g2);
}
.ficha-item-l {
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--g);
  margin-bottom: .35rem;
}
.ficha-item-v {
  font-family: var(--display); font-size: 1.2rem; color: var(--w);
}

/* ══════════════════════════════════════
   ESSAY MODAL
══════════════════════════════════════ */
#essay-modal {
  position: fixed; inset: 0;
  background: var(--k);
  z-index: 2000;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--cut);
}
#essay-modal .modal-body {
  background: var(--w);
}
#essay-modal.open { opacity: 1; pointer-events: all; }
#essay-modal .modal-head-overlay {
  background: linear-gradient(to bottom, rgba(10,10,9,.1) 0%, rgba(10,10,9,.82) 100%);
}
#essay-modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 10;
  width: 38px; height: 38px;
  border: 1px solid rgba(240,237,232,.5); background: none;
  color: var(--w); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .12s, background .12s;
}
#essay-modal-close:hover { border-color: var(--r); background: rgba(232,34,10,.15); }
.essay-full-body {
  max-width: 680px;
  padding: 2.5rem 0 1rem;
  margin: 0 auto;
}
.essay-full-body p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(10,10,9,.75);
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
}
.essay-full-body p:last-child { margin-bottom: 0; }
.essay-full-body em {
  font-style: italic;
  color: var(--k);
}

/* ══════════════════════════════════════
   HAMBURGER & MOBILE MENU
══════════════════════════════════════ */
#nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--g2);
  padding: 9px;
  cursor: crosshair;
  flex-shrink: 0;
  transition: border-color .12s;
}
#nav-toggle:hover { border-color: var(--r); }
#nav-toggle span {
  display: block;
  height: 2px;
  background: var(--w);
  transform-origin: center;
  transition: transform .22s var(--cut), opacity .18s, width .18s;
}
#nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
#nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#nav-mobile {
  position: fixed;
  top: 56px; left: 0; right: 0;
  z-index: 898;
  background: var(--k);
  border-bottom: 3px solid var(--r);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s var(--cut), opacity .22s;
}
#nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
#nav-mobile ul { list-style: none; }
#nav-mobile ul li a {
  display: block;
  padding: 1.1rem 1.75rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--r);
  border-bottom: 1px solid var(--g2);
  transition: background .12s, color .12s;
}
#nav-mobile ul li:last-child a { border-bottom: none; }
#nav-mobile ul li a:hover { background: var(--g2); color: var(--w); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* ── TABLET ≤1024px ── */
@media (max-width: 1024px) {
  .pk-grid { grid-template-columns: 1fr 1fr; }
  .pk-grid--wide { grid-template-columns: 1fr 1fr; }
  .pk-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .quote-body { grid-template-columns: 1fr; gap: 2rem; }
  .context-cols { grid-template-columns: 1fr 1fr; }
  .context-head { grid-template-columns: 1fr; gap: 2rem; }
  .essay-featured { grid-template-columns: 1fr; gap: 3rem; }
  .essays-grid { grid-template-columns: 1fr 1fr; }
  .essays-grid .essay-card:nth-child(2) { border-right: none; }
  .essays-grid .essay-card:nth-child(3) { border-top: 1px solid #c8c4bc; border-right: 1px solid #c8c4bc; }
  .ed-grid { grid-template-columns: 1fr 1fr; }
  .ec-feat { grid-column: 1/-1; }
  .gira-inner { grid-template-columns: 1fr; }
  .gira-text { border-right: none; border-bottom: 1px solid var(--g2); }
  .docsmx-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .obj-header { grid-template-columns: 1fr; gap: 2rem; }
  .av-grid { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE ≤768px ── */
@media (max-width: 768px) {
  .pk-grid, .pk-grid--wide { grid-template-columns: 1fr; }
  .pk-drawer-bar { padding: 0 1.25rem; }
  .pk-header, .pk-tabs-wrap, .pk-panel { padding-left: 1.25rem; padding-right: 1.25rem; }
  /* Nav */
  #nav { padding: 0 1.25rem; height: 56px; }
  .nav-right { display: none; }
  #nav-toggle { display: flex; }

  /* Hero */
  #hero { margin-top: 56px; height: calc(100vh - 56px); padding: 0 1.25rem 3.5rem; }
  .hero-title { font-size: clamp(4rem, 17vw, 8rem); }
  .hero-stats { display: none; }
  .hero-desc { font-size: .9rem; }

  /* Section padding */
  #quote { padding: 4rem 1.25rem; }
  #context { padding: 4rem 1.25rem; }
  #objetivos { padding: 4rem 1.25rem; }
  #ver-y-escuchar { padding: 4rem 1.25rem; }
  .ed-header { padding: 2rem 1.25rem; }
  .gira-text { padding: 3rem 1.25rem; }
  #docsmx { padding: 3rem 1.25rem; }

  /* Quote */
  .quote-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .quote-bar { display: none; }
  .quote-body { grid-template-columns: 1fr; gap: 2rem; }

  /* Films */
  .films-header { padding: 2rem 1.25rem 1.5rem; flex-direction: column; gap: 1rem; }
  .film-hero-wrap { height: 52vh; min-height: 360px; }
  .films-pair { grid-template-columns: 1fr; }
  .film-info { padding: 1.5rem; }
  .film-sinop, .film-ver { display: none; }

  /* Context */
  .context-cols { grid-template-columns: 1fr; }
  .context-head { margin-bottom: 2.5rem; padding-bottom: 2rem; }

  /* AV */
  .av-grid { grid-template-columns: 1fr; }
  .av-top { flex-direction: column; align-items: flex-start; gap: 1.5rem; }

  /* Essays */
  .essays-grid { grid-template-columns: 1fr; }
  .essay-card { border-right: none !important; border-top: 1px solid #c8c4bc; }
  .essay-featured { gap: 2rem; padding-bottom: 3rem; margin-bottom: 3rem; }
  .ed-grid { grid-template-columns: 1fr; }
  .ec-feat { grid-template-columns: 1fr; }
  .ec-feat-img { height: 220px; aspect-ratio: auto; }

  /* Gira */
  .gira-nums { grid-template-columns: 1fr 1fr; }
  .gira-num { padding: 2rem 1.5rem; }
  .gira-num:nth-child(3), .gira-num:nth-child(4) { border-bottom: none; }

  /* Sedes */
  .guia-inner { grid-template-columns: 1fr; min-height: auto; }
  .guia-text { padding: 3rem 1.25rem; border-right: none; border-bottom: 1px solid var(--g2); }
  .guia-img { height: 260px; }
  #sedes { padding: 4rem 1.25rem; }
  .sedes-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .sedes-note { text-align: left; max-width: 100%; }
  .sedes-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  footer { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.25rem 0; }
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Modal */
  .modal-body { padding: 1.25rem; }
  .ficha-row { grid-template-columns: 1fr 1fr; }
  .modal-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .modal-head { height: 40vh; min-height: 260px; }
}

/* ── SMALL MOBILE ≤480px ── */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(3.5rem, 15vw, 6rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .film-name { font-size: 1.4rem; }
  .sec-head-big { font-size: clamp(2.5rem, 10vw, 5rem); }
  .gira-nums { grid-template-columns: 1fr 1fr; }
  .gira-n { font-size: 3rem; }
  .sedes-grid { grid-template-columns: 1fr 1fr; }
  .sede-card { padding: 1rem; }
  .ficha-row { grid-template-columns: 1fr; }
  footer { padding: 2rem 1.25rem 0; gap: 1.5rem; }
  .ft-social { flex-wrap: wrap; }
  .ft-social a { flex: 1 0 40%; text-align: center; }
  .modal-body { padding: 1rem; }
  .m-tab { padding: .5rem .75rem; font-size: .55rem; }
}

/* ══════════════════════════════════════
   PRELOADER
══════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--k);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--cut), visibility .7s;
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pre-inner { text-align: center; }
.pre-label {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--r);
  margin-bottom: .75rem;
}
.pre-title {
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: .88;
  color: var(--w);
  margin-bottom: 2rem;
}
.pre-bar {
  width: 180px;
  height: 2px;
  background: var(--g2);
  margin: 0 auto;
  overflow: hidden;
}
.pre-bar-fill {
  height: 100%;
  width: 0;
  background: var(--r);
  animation: preload 1.4s var(--cut) forwards;
}
@keyframes preload {
  0%   { width: 0; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* ══════════════════════════════════════
   SCROLL TOP
══════════════════════════════════════ */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: var(--r);
  color: var(--w);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s var(--cut), transform .25s var(--cut), background .15s;
}
#scroll-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: all;
}
#scroll-top:hover { background: #c0180a; }

/* ─── YT LIGHTBOX ─── */
#yt-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#yt-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
#yt-lb-inner {
  position: relative;
  width: min(90vw, 1100px);
  aspect-ratio: 16/9;
}
#yt-lb-frame {
  width: 100%;
  height: 100%;
}
#yt-lb-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10,10,9,.7);
  border: none;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
}
#yt-lb-close:hover { background: var(--r); }
.av-card[data-yt] { cursor: pointer; }
