/*
  UN TOQUE DE ALMENDRAS — regreso 2026
  Diseño editorial teatral / fachada corporativa.
  Sin librerías externas y preparado para /las-almendras/.
*/

:root {
  --ink: #171311;
  --ink-soft: #332b27;
  --paper: #f3ddd1;
  --white: #fffaf5;
  --yellow: #f2c84b;
  --yellow-soft: #fff0b2;
  --cyan: #9ed5cc;
  --purple: #5e2c54;
  --red: #8f1015;
  --green: #0b5640;
  --pink: #e5aaa6;
  --orange: #d47b19;
  --blue: #253a57;
  --board: #0e1b16;
  --cream: #f8eee7;
  --display: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --mono: "Courier New", Courier, monospace;
  --shell: min(1240px, calc(100vw - 48px));
  --header: 76px;
  --line: rgba(23, 19, 17, .22);
  --soft-shadow: 0 24px 70px rgba(23, 19, 17, .16);
  --hard-shadow: 9px 9px 0 rgba(23, 19, 17, .18);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 22px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--yellow); color: var(--ink); }
body.operation-breached { --red: #b20f16; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p, dl, dd, figure { margin-top: 0; }
main { overflow: clip; }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.preview-badge {
  position: fixed;
  z-index: 1000;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--white);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .25);
  font: 800 10px/1 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.cursor-glow {
  position: fixed;
  z-index: 3;
  left: -260px;
  top: -260px;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  opacity: .08;
  background: radial-gradient(circle, var(--yellow) 0, transparent 68%);
  mix-blend-mode: screen;
}

/* Barra y navegación */
.topline {
  position: relative;
  z-index: 95;
  color: var(--white);
  background: var(--red);
  font: 800 10px/1 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.topline__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.topline__season { display: inline-flex; align-items: center; gap: 8px; opacity: .8; }
.topline__season i { color: var(--yellow); font-style: normal; }
.topline__location { opacity: .7; }

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  height: var(--header);
  color: var(--white);
  background: rgba(14, 27, 22, .96);
  border-bottom: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(14px);
  transition: height .25s var(--ease), box-shadow .25s;
}
.site-header.is-scrolled { height: 66px; box-shadow: 0 14px 35px rgba(0,0,0,.22); }
.site-header__inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.wordmark { min-width: 228px; display: grid; line-height: 1; }
.wordmark strong { font: 700 17px/1 var(--display); letter-spacing: -.01em; }
.wordmark span { margin-top: 6px; opacity: .62; font: 800 9px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 24px; margin-left: auto; }
.site-nav a { position: relative; padding: 10px 0; font-size: 12px; font-weight: 800; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: 4px; left: 0; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .22s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.header-cta { flex: none; padding: 11px 16px; color: var(--ink); background: var(--yellow); border: 1px solid var(--yellow); font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; transition: transform .18s, box-shadow .18s; }
.header-cta:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--red); }
.menu-toggle { display: none; }

/* Botones */
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .065em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: transform .18s var(--ease), box-shadow .18s, background .18s, color .18s;
}
.button span { font-size: 18px; line-height: 0; }
.button:hover { transform: translate(-3px,-3px); }
.button--red { color: var(--white); background: var(--red); border-color: var(--red); }
.button--red:hover { box-shadow: 7px 7px 0 var(--yellow); }
.button--yellow { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }
.button--yellow:hover { box-shadow: 7px 7px 0 var(--red); }
.button--green { color: var(--white); background: var(--green); border-color: var(--green); }
.button--green:hover { box-shadow: 7px 7px 0 var(--yellow); }
.button--cream { color: var(--ink); background: var(--cream); border-color: var(--cream); }
.button--cream:hover { box-shadow: 7px 7px 0 var(--red); }
.button--outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.button--outline:hover { color: var(--white); background: var(--ink); box-shadow: 7px 7px 0 var(--yellow); }
.button--ghost { color: var(--white); background: transparent; border-color: rgba(255,255,255,.42); }
.button--ghost:hover { color: var(--ink); background: var(--white); box-shadow: 7px 7px 0 rgba(0,0,0,.25); }

/* Hero */
.hero { position: relative; color: var(--ink); background: var(--paper); }
.hero::before { content: ""; position: absolute; z-index: 0; right: -9vw; top: -60px; width: 42vw; aspect-ratio: 1; border: 1px solid rgba(143,16,21,.15); border-radius: 50%; }
.hero__grid { position: relative; z-index: 1; min-height: 735px; display: grid; grid-template-columns: minmax(0,.93fr) minmax(470px,1.07fr); align-items: center; gap: clamp(40px,6vw,88px); padding-block: clamp(70px,9vw,120px) 78px; }
.hero__copy { max-width: 610px; }
.hero__season { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; color: var(--green); font: 900 10px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.hero__season i { width: 54px; height: 1px; background: var(--red); }
.hero__presenter { margin-bottom: 14px; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero h1 { margin: 0; font: 700 clamp(70px,8.2vw,126px)/.79 var(--display); letter-spacing: -.065em; text-transform: lowercase; }
.hero h1 span { display: block; margin-bottom: .18em; color: var(--red); font: 900 clamp(18px,2vw,28px)/1 var(--sans); letter-spacing: .01em; text-transform: uppercase; }
.hero__tagline { max-width: 570px; margin: 30px 0 13px; color: var(--green); font: 700 clamp(22px,2.2vw,32px)/1.18 var(--display); }
.hero__intro { max-width: 575px; margin-bottom: 28px; color: var(--ink-soft); font-size: clamp(16px,1.25vw,19px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__facts { display: grid; grid-template-columns: 1.1fr .7fr .8fr; gap: 0; margin: 34px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero__facts div { min-height: 74px; padding: 15px 16px 13px 0; }
.hero__facts div + div { padding-left: 17px; border-left: 1px solid var(--line); }
.hero__facts dt { margin-bottom: 5px; color: var(--red); font: 900 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.hero__facts dd { margin: 0; font-size: 13px; font-weight: 800; line-height: 1.25; }
.hero__visual { position: relative; min-height: 620px; align-self: center; }
.hero-photo { position: absolute; top: 0; right: 42px; left: 0; aspect-ratio: 4/3; padding: 0; overflow: hidden; border: 0; background: var(--board); cursor: zoom-in; box-shadow: 17px 17px 0 var(--green); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-photo > span { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr auto; gap: 3px 18px; align-items: end; padding: 40px 22px 20px; color: var(--white); text-align: left; background: linear-gradient(transparent, rgba(14,27,22,.92)); }
.hero-photo small { grid-column: 1; font: 900 9px/1 var(--mono); letter-spacing: .12em; }
.hero-photo strong { grid-column: 1; font: 700 18px/1.2 var(--display); }
.hero-photo i { grid-column: 2; grid-row: 1/3; align-self: center; font-size: 24px; font-style: normal; }
.hero-date { position: absolute; z-index: 3; right: 0; bottom: 0; width: 260px; min-height: 285px; padding: 22px; color: var(--white); background: var(--red); box-shadow: 9px 9px 0 var(--yellow); transform: rotate(-1deg); }
.hero-date > small { font: 900 9px/1 var(--mono); letter-spacing: .13em; }
.hero-date__number { display: flex; align-items: flex-end; gap: 9px; margin-top: 12px; }
.hero-date__number strong { font: 700 88px/.76 var(--display); letter-spacing: -.08em; }
.hero-date__number span { margin-bottom: 8px; writing-mode: vertical-rl; transform: rotate(180deg); font: 900 10px/1 var(--mono); letter-spacing: .07em; }
.hero-date > b { display: block; margin: 4px 0 17px; font-size: 21px; letter-spacing: .18em; }
.hero-date p { margin-bottom: 11px; font-size: 13px; font-weight: 900; line-height: 1.25; text-transform: uppercase; }
.hero-date em { display: block; padding-top: 11px; border-top: 1px solid rgba(255,255,255,.35); font-size: 11px; font-style: normal; line-height: 1.35; }
.hero-poster { position: absolute; z-index: 2; top: -31px; right: -20px; width: 118px; margin: 0; padding: 7px; background: var(--white); box-shadow: var(--hard-shadow); transform: rotate(3deg); }
.hero-poster img { width: 100%; height: auto; }
.hero-poster figcaption { padding-top: 6px; font: 800 8px/1.2 var(--mono); text-align: center; text-transform: uppercase; }
.hero__footer { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 30px; min-height: 84px; padding-block: 18px; border-top: 1px solid var(--line); }
.hero__footer p { max-width: 760px; margin: 0; font-size: 14px; }
.hero__footer p span { margin-right: 10px; color: var(--red); font: 900 9px/1 var(--mono); letter-spacing: .1em; }
.hero__footer-actions { display: flex; flex: none; gap: 18px; }
.hero__footer-actions a, .hero__footer-actions button { padding: 4px 0; border: 0; background: transparent; cursor: pointer; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.hero__footer-actions span { color: var(--red); }

.ticker { overflow: hidden; color: var(--white); background: var(--green); border-block: 1px solid rgba(255,255,255,.16); }
.ticker__track { width: max-content; display: flex; animation: ticker-run 30s linear infinite; }
.ticker span { min-height: 48px; display: inline-flex; align-items: center; gap: 24px; padding-inline: 24px; font: 900 10px/1 var(--mono); letter-spacing: .11em; }
.ticker i { color: var(--yellow); font-style: normal; }
@keyframes ticker-run { to { transform: translateX(-50%); } }

/* Secciones generales */
.section { position: relative; padding-block: clamp(82px,10vw,132px); }
.kicker { margin-bottom: 15px; color: var(--red); font: 900 10px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.kicker--light { color: var(--yellow); }
.section-heading { max-width: 860px; margin-bottom: 56px; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.55fr); gap: 70px; align-items: end; }
.section-heading h2, .return h2, .operation h2, .schedule h2, .team h2, .program h2, .poster-section h2, .tour h2, .faq h2, .finale h2, .booking h2 { margin: 0; font: 700 clamp(48px,5.6vw,83px)/.94 var(--display); letter-spacing: -.045em; }
.section-heading > p:last-child, .section-heading--split > p { margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.48; }
.section-heading--light { color: var(--white); }
.section-heading--light > p:last-child { color: rgba(255,250,245,.72); }

/* La obra */
.story { background: var(--white); }
.story::before { content: "95 / 5"; position: absolute; right: -30px; top: 22px; color: rgba(143,16,21,.045); font: 900 190px/1 var(--sans); letter-spacing: -.08em; }
.story__grid { display: grid; grid-template-columns: minmax(0,.86fr) minmax(360px,.66fr); gap: clamp(50px,8vw,110px); align-items: start; }
.story__copy .lead { margin-bottom: 22px; color: var(--green); font: 700 clamp(24px,2.4vw,35px)/1.25 var(--display); }
.story__copy > p:not(.lead) { color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.story__note { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); }
.story__note span { color: var(--red); font: 900 13px/1 var(--mono); }
.story__note p { margin: 0; font-size: 13px; font-weight: 800; }
.company-logo { margin: 0; border: 1px solid var(--line); background: #fff; box-shadow: var(--hard-shadow); }
.company-logo__head { display: flex; justify-content: space-between; gap: 12px; padding: 13px 16px; color: var(--white); background: var(--green); font: 900 9px/1 var(--mono); letter-spacing: .1em; }
.company-logo__image { padding: clamp(26px,4vw,54px); background: #fff; }
.company-logo__image img { width: 100%; height: auto; object-fit: contain; filter: none; mix-blend-mode: normal; }
.company-logo figcaption { padding: 12px 16px; border-top: 1px solid var(--line); color: #6a5e58; font-size: 10px; line-height: 1.35; }
.theme-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 78px; }
.theme-card { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: 25px; border: 1px solid var(--ink); box-shadow: 6px 6px 0 rgba(23,19,17,.18); }
.theme-card > span { font: 900 51px/.85 var(--sans); letter-spacing: -.07em; }
.theme-card h3 { margin-bottom: 8px; font: 700 30px/1 var(--display); }
.theme-card p { margin: 0; font-size: 14px; line-height: 1.45; }
.theme-card--green { color: var(--white); background: var(--green); }
.theme-card--yellow { background: var(--yellow); }
.theme-card--red { color: var(--white); background: var(--red); }
.theme-card--purple { color: var(--white); background: var(--purple); }
.theme-card--pink { background: var(--pink); }
.theme-card--cyan { background: var(--cyan); }
.theme-card--orange { background: var(--orange); }
.theme-card--blue { color: var(--white); background: var(--blue); }

/* Regreso */
.return { position: relative; padding-block: clamp(82px,10vw,132px); background: var(--paper); }
.return__grid { display: grid; grid-template-columns: minmax(420px,1.05fr) minmax(0,.95fr); gap: clamp(48px,7vw,96px); align-items: center; }
.return__photo { margin: 0; }
.return__photo button { width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; box-shadow: 14px 14px 0 var(--red); }
.return__photo img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.return__photo figcaption { margin-top: 18px; color: var(--ink-soft); font: 800 9px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.return__copy > p:not(.kicker) { color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.return__timeline { margin-top: 34px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: center; }
.return__timeline article { min-height: 188px; padding: 20px; border: 1px solid var(--ink); background: var(--white); }
.return__timeline article > span { display: block; margin-bottom: 17px; color: var(--red); font: 900 30px/1 var(--mono); }
.return__timeline strong { display: block; margin-bottom: 8px; font: 700 21px/1.15 var(--display); }
.return__timeline p { margin: 0; font-size: 13px; line-height: 1.45; }
.return__timeline > i { color: var(--red); font-size: 28px; font-style: normal; }

/* Acta */
.operation { position: relative; padding-block: clamp(86px,10vw,140px); color: var(--white); background: var(--board); isolation: isolate; }
.operation__noise, .finale__grain { position: absolute; z-index: -1; inset: 0; opacity: .12; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); mix-blend-mode: overlay; }
.operation__grid { display: grid; grid-template-columns: minmax(0,.78fr) minmax(480px,1fr); gap: clamp(55px,8vw,110px); align-items: center; }
.operation__copy > p:not(.kicker) { max-width: 560px; color: rgba(255,250,245,.74); font-size: 18px; line-height: 1.72; }
.operation__copy .button { margin-top: 17px; }
.minutes { position: relative; color: var(--ink); background: var(--cream); border: 1px solid rgba(255,255,255,.25); box-shadow: 14px 14px 0 var(--red); transform: rotate(.6deg); }
.minutes::before { content: "COPIA"; position: absolute; right: 22px; top: 64px; color: rgba(143,16,21,.12); border: 4px solid rgba(143,16,21,.12); padding: 8px 13px; font: 900 29px/1 var(--mono); transform: rotate(-12deg); }
.minutes__head { display: flex; justify-content: space-between; gap: 18px; padding: 17px 20px; color: var(--white); background: var(--green); font: 900 9px/1 var(--mono); letter-spacing: .08em; }
.minutes__head b { color: var(--yellow); }
.minutes ol { list-style: none; margin: 0; padding: 10px 20px 0; }
.minutes li { display: grid; grid-template-columns: 34px 1fr auto; gap: 14px; align-items: center; min-height: 74px; border-bottom: 1px dashed rgba(23,19,17,.35); }
.minutes li > span { color: var(--red); font: 900 11px/1 var(--mono); }
.minutes li p { margin: 0; font-size: 14px; font-weight: 800; }
.minutes li strong { font: 900 11px/1 var(--mono); letter-spacing: .04em; }
.redacted { padding: 3px 7px; color: transparent; background: var(--ink); }
.minutes__secret { display: flex; align-items: center; gap: 10px; margin: 18px 20px 20px; padding: 14px; color: var(--red); border: 1px solid var(--red); background: rgba(143,16,21,.04); font: 900 10px/1.3 var(--mono); letter-spacing: .06em; }
.minutes__secret span { font-size: 16px; animation: status-pulse 1.7s infinite; }
.operation-breached .minutes { animation: paper-shift .55s var(--ease) both; }
.operation-breached .minutes__secret { color: var(--white); background: var(--red); }
@keyframes paper-shift { 50% { transform: rotate(-1.2deg) translateY(-5px); } }
@keyframes status-pulse { 50% { opacity: .35; } }

/* Personajes */
.characters { background: var(--paper); }
.character-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.character-card { overflow: hidden; border: 1px solid var(--ink); background: var(--white); box-shadow: 5px 5px 0 rgba(23,19,17,.13); }
.character-card:last-child:nth-child(odd) { grid-column: 1/-1; }
.character-card summary { min-height: 165px; display: grid; grid-template-columns: 48px 1fr 42px; gap: 18px; align-items: center; padding: 24px; cursor: pointer; list-style: none; }
.character-card summary::-webkit-details-marker { display: none; }
.character-card__index { align-self: start; color: var(--red); font: 900 11px/1 var(--mono); }
.character-card summary small { display: block; margin-bottom: 7px; font: 900 9px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.character-card h3 { margin: 0 0 6px; font: 700 48px/.9 var(--display); letter-spacing: -.04em; }
.character-card summary p { margin: 0; font-size: 13px; font-weight: 800; }
.character-card__toggle { width: 38px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 20px; transition: transform .25s; }
.character-card[open] .character-card__toggle { transform: rotate(45deg); }
.character-card__body { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: end; padding: 0 24px 25px 90px; }
.character-card__body p { margin: 0; max-width: 650px; color: var(--ink-soft); }
.character-card__body > span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid currentColor; font: 900 9px/1 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.character-card__body > span i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.character-card--green { border-top: 8px solid var(--green); }
.character-card--yellow { border-top: 8px solid var(--yellow); }
.character-card--red { border-top: 8px solid var(--red); }
.character-card--purple { border-top: 8px solid var(--purple); }
.character-card--pink { border-top: 8px solid var(--pink); }
.character-card--blue { border-top: 8px solid var(--blue); }

/* Funciones */
.schedule { padding-block: clamp(86px,10vw,140px); color: var(--white); background: var(--green); }
.schedule__head { display: grid; grid-template-columns: 1.1fr .7fr; gap: 70px; align-items: end; margin-bottom: 55px; }
.schedule__head > p { margin: 0; color: rgba(255,250,245,.74); font-size: 18px; line-height: 1.55; }
.function-list { display: grid; gap: 14px; }
.function-card { display: grid; grid-template-columns: 150px 1fr 220px; color: var(--ink); background: var(--white); border: 1px solid rgba(0,0,0,.28); box-shadow: 9px 9px 0 rgba(0,0,0,.16); }
.function-card__date { min-height: 240px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 18px; color: var(--white); background: var(--red); }
.function-card__date span { font: 900 10px/1 var(--mono); letter-spacing: .13em; }
.function-card__date strong { margin: 10px 0 0; font: 700 80px/.78 var(--display); letter-spacing: -.06em; }
.function-card__date small { margin-top: 8px; font: 900 10px/1 var(--mono); }
.function-card__date b { margin-top: 8px; font-size: 15px; letter-spacing: .13em; }
.function-card__body { padding: 25px 30px; }
.function-card__status { display: flex; justify-content: space-between; gap: 20px; color: var(--red); font: 900 9px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.function-card__body h3 { margin: 20px 0 21px; font: 700 clamp(30px,3.1vw,46px)/.95 var(--display); }
.function-card__body dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin: 0; border-top: 1px solid var(--line); }
.function-card__body dl div { padding: 14px 14px 0 0; }
.function-card__body dl div + div { padding-left: 14px; border-left: 1px solid var(--line); }
.function-card__body dt { color: var(--red); font: 900 8px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.function-card__body dd { margin: 5px 0 0; font-size: 13px; font-weight: 800; }
.function-card__note { margin: 16px 0 0; font-size: 12px; }
.function-card__actions { display: flex; flex-direction: column; justify-content: center; gap: 11px; padding: 22px; background: var(--paper); border-left: 1px solid var(--line); }
.function-card__actions .button { width: 100%; }
.function-card__closed { padding: 14px; color: var(--white); background: var(--red); font: 900 10px/1.2 var(--mono); text-align: center; }
.function-card--announced .function-card__date { background: var(--red); }
.function-card--sold_out { opacity: .83; }
.function-card--cancelled { opacity: .65; filter: grayscale(.5); }
.no-functions { padding: 28px; color: var(--ink); background: var(--white); }
.date-brief { display: grid; grid-template-columns: 1fr 1fr auto; gap: 1px; margin-top: 26px; color: var(--ink); background: rgba(255,255,255,.28); border: 1px solid rgba(255,255,255,.28); }
.date-brief > div, .date-brief > time, .date-brief__tag { min-height: 125px; display: flex; flex-direction: column; justify-content: center; padding: 20px 24px; background: var(--yellow); }
.date-brief > div:nth-child(2) { background: var(--paper); }
.date-brief span, .date-brief time { font: 900 9px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.date-brief strong { margin: 7px 0 5px; font: 700 25px/1.05 var(--display); }
.date-brief p { margin: 0; font-size: 12px; }
.date-brief__tag { min-width: 235px; align-items: center; color: var(--white); background: var(--red); text-align: center; }
.schedule__note { margin: 23px 0 0; color: rgba(255,250,245,.64); font-size: 11px; }

/* Entradas opcional */
.booking { background: var(--white); }
.booking__grid { display: grid; grid-template-columns: .8fr 1fr; gap: 80px; align-items: start; }
.booking__copy > p:not(.kicker) { color: var(--ink-soft); font-size: 18px; }
.booking__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.booking__facts { padding: 28px; border: 1px solid var(--ink); background: var(--paper); box-shadow: var(--hard-shadow); }
.booking__facts > p { font-weight: 900; }
.booking__facts ul { list-style: none; padding: 0; }
.booking__facts li { display: flex; gap: 10px; margin: 10px 0; }
.booking__facts li span { color: var(--green); font-weight: 900; }
.booking__facts ol { list-style: none; padding: 18px 0 0; border-top: 1px solid var(--line); }
.booking__facts ol li { display: grid; grid-template-columns: 32px 1fr; }
.booking__facts ol p { margin: 3px 0 0; font-size: 13px; }
.booking__facts small { display: block; margin-top: 15px; color: var(--red); }

/* Galería */
.gallery-section { padding-block: clamp(86px,10vw,140px); color: var(--white); background: var(--board); }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 115px; gap: 14px; }
.gallery-card { position: relative; overflow: hidden; padding: 0; border: 1px solid rgba(255,255,255,.2); background: #161616; cursor: zoom-in; text-align: left; }
.gallery-card img { width: 100%; height: 100%; transition: transform .5s var(--ease); }
.gallery-card--cover img { object-fit: cover; }
.gallery-card--contain img { object-fit: contain; padding: 15px; background: #f7f3ef; }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-card > span { position: absolute; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr auto; gap: 4px 14px; align-items: end; padding: 50px 18px 16px; color: var(--white); background: linear-gradient(transparent, rgba(0,0,0,.86)); }
.gallery-card--contain > span { background: linear-gradient(transparent, rgba(14,27,22,.9)); }
.gallery-card small { grid-column: 1; color: var(--yellow); font: 900 9px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.gallery-card strong { grid-column: 1; font: 700 17px/1.2 var(--display); }
.gallery-card i { grid-column: 2; grid-row: 1/3; align-self: center; font-size: 22px; font-style: normal; }
.gallery-card--rehearsal { grid-column: span 7; grid-row: span 4; }
.gallery-card--backstage { grid-column: span 5; grid-row: span 4; }
.gallery-card--poster, .gallery-card--press, .gallery-card--program { grid-column: span 4; grid-row: span 6; }
.gallery-card--rehearsal img, .gallery-card--backstage img { object-fit: contain; background: #080d0a; }

/* Equipo */
.team { background: var(--white); }
.team__lead { display: grid; grid-template-columns: minmax(0,.82fr) minmax(430px,1fr); gap: clamp(48px,7vw,96px); align-items: center; }
.team__copy > p:not(.kicker) { color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.author-card { margin-top: 30px; padding: 20px; color: var(--white); background: var(--green); box-shadow: 7px 7px 0 var(--yellow); }
.author-card span { display: block; margin-bottom: 7px; color: var(--yellow); font: 900 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.author-card strong { font: 700 30px/1 var(--display); }
.team__image { margin: 0; }
.team__image img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; box-shadow: 13px 13px 0 var(--red); }
.team__image figcaption { margin-top: 17px; font: 800 9px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.credits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 75px; }
.credits-grid--single { grid-template-columns: 1fr; }
.credit-block { padding: 28px; border: 1px solid var(--ink); background: var(--paper); }
.credit-block > p { margin-bottom: 20px; color: var(--red); font: 900 10px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.credit-block > div { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 13px 0; border-top: 1px solid var(--line); }
.credit-block strong { font: 700 21px/1.1 var(--display); }
.credit-block span { text-align: right; font-size: 13px; font-weight: 800; }
.credit-block--archive { background: var(--yellow-soft); }

/* Programa */
.program { padding-block: clamp(86px,10vw,140px); background: var(--cyan); }
.program__grid { display: grid; grid-template-columns: minmax(310px,.55fr) minmax(0,1fr); gap: clamp(55px,8vw,110px); align-items: center; }
.program__poster { max-width: 440px; margin: 0; justify-self: center; }
.program__poster button { padding: 0; border: 0; background: transparent; cursor: zoom-in; box-shadow: 13px 13px 0 var(--green); }
.program__poster img { width: 100%; height: auto; object-fit: contain; }
.program__poster figcaption { margin-top: 16px; font: 800 9px/1 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.program__copy > p:not(.kicker) { max-width: 680px; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.program__date { width: min(540px,100%); margin: 30px 0; padding: 20px 23px; color: var(--white); background: var(--green); box-shadow: 8px 8px 0 var(--yellow); }
.program__date span { display: block; color: var(--yellow); font: 900 9px/1 var(--mono); letter-spacing: .1em; }
.program__date strong { display: block; margin: 8px 0 5px; font: 700 44px/.95 var(--display); }
.program__date small { font-weight: 800; }
.program__copy ul { max-width: 620px; margin: 0 0 28px; padding-left: 20px; }
.program__copy li { margin: 7px 0; }

/* Afiche */
.poster-section { background: var(--paper); }
.poster-section__grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(360px,.65fr); gap: clamp(55px,8vw,110px); align-items: center; }
.poster-section__copy > p:not(.kicker) { color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.poster-section__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.poster-frame { max-width: 480px; margin: 0; padding: 12px; background: var(--white); border: 1px solid var(--line); box-shadow: 14px 14px 0 var(--red); justify-self: center; }
.poster-frame img { width: 100%; height: auto; object-fit: contain; }
.poster-frame figcaption { padding-top: 10px; font: 800 9px/1 var(--mono); text-align: center; letter-spacing: .08em; text-transform: uppercase; }

/* Gira */
.tour { padding-block: clamp(86px,10vw,140px); color: var(--white); background: var(--purple); }
.tour__grid { display: grid; grid-template-columns: 1fr minmax(380px,.68fr); gap: clamp(55px,8vw,110px); align-items: center; }
.tour__copy > p:not(.kicker) { max-width: 690px; color: rgba(255,250,245,.76); font-size: 18px; line-height: 1.65; }
.tour__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.tour-card { position: relative; padding: 30px; color: var(--ink); background: var(--cream); border: 1px solid var(--ink); box-shadow: 12px 12px 0 var(--yellow); transform: rotate(1deg); }
.tour-card__stamp { position: absolute; right: -18px; top: -20px; padding: 10px 15px; color: var(--white); background: var(--red); border: 3px solid var(--white); font: 900 15px/1 var(--mono); letter-spacing: .1em; transform: rotate(7deg); }
.tour-card > p { color: var(--red); font: 900 10px/1 var(--mono); letter-spacing: .11em; }
.tour-card dl { margin: 0; }
.tour-card dl div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; padding: 13px 0; border-top: 1px solid var(--line); }
.tour-card dt { font-size: 12px; font-weight: 900; }
.tour-card dd { margin: 0; text-align: right; font-size: 13px; }
.tour-card > span { display: block; margin-top: 20px; padding: 12px; color: var(--white); background: var(--green); text-align: center; font: 900 10px/1 var(--mono); letter-spacing: .08em; }

/* Prensa */
.press { background: var(--white); }
.press-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.press-card { min-height: 260px; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--ink); background: var(--paper); transition: transform .2s, box-shadow .2s; }
.press-card:hover { transform: translate(-4px,-4px); box-shadow: 8px 8px 0 var(--red); }
.press-card > span { color: var(--red); font: 900 10px/1 var(--mono); }
.press-card small { margin: 10px 0 25px; font-weight: 900; text-transform: uppercase; }
.press-card h3 { margin-bottom: 25px; font: 700 27px/1.13 var(--display); }
.press-card b { margin-top: auto; font-size: 11px; text-transform: uppercase; }
.press-card b i { color: var(--red); font-style: normal; }

/* FAQ */
.faq { padding-block: clamp(86px,10vw,140px); background: var(--yellow-soft); }
.faq__grid { display: grid; grid-template-columns: minmax(290px,.55fr) 1fr; gap: clamp(55px,8vw,110px); align-items: start; }
.faq__head { position: sticky; top: calc(var(--header) + 28px); }
.faq__head > p:not(.kicker) { color: var(--ink-soft); font-size: 17px; }
.text-link { display: inline-block; margin-top: 18px; padding-bottom: 3px; border-bottom: 2px solid var(--red); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.faq__list { border-top: 1px solid var(--ink); }
.faq__list details { border-bottom: 1px solid var(--ink); }
.faq__list summary { min-height: 86px; display: grid; grid-template-columns: 45px 1fr 38px; gap: 14px; align-items: center; cursor: pointer; list-style: none; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary > span { color: var(--red); font: 900 10px/1 var(--mono); }
.faq__list summary strong { font: 700 22px/1.15 var(--display); }
.faq__list summary i { font-size: 21px; font-style: normal; transition: transform .25s; }
.faq__list details[open] summary i { transform: rotate(45deg); }
.faq__list details > p { margin: 0; padding: 0 45px 28px 59px; color: var(--ink-soft); }

/* Cierre */
.finale { position: relative; min-height: 690px; display: grid; place-items: center; color: var(--white); background: var(--board); isolation: isolate; overflow: hidden; }
.finale::before { content: ""; position: absolute; z-index: -1; width: min(72vw,900px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.finale__inner { padding-block: 95px; text-align: center; }
.finale__inner > p:first-of-type { color: var(--yellow); font: 900 10px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.finale h2 { max-width: 930px; margin-inline: auto; font-size: clamp(65px,8.5vw,128px); line-height: .82; }
.blood-mark { position: relative; width: min(620px,70vw); height: 70px; margin: 25px auto 0; }
.blood-mark span { position: absolute; left: 0; top: 15px; width: 100%; height: 5px; background: var(--red); transform: rotate(-1deg); box-shadow: 0 5px 16px rgba(143,16,21,.25); }
.blood-mark span::before, .blood-mark span::after { content: ""; position: absolute; top: 0; width: 8px; background: var(--red); border-radius: 0 0 50% 50%; }
.blood-mark span::before { left: 26%; height: 34px; }
.blood-mark span::after { right: 18%; height: 20px; }
.blood-mark i { position: absolute; left: calc(26% - 5px); top: 44px; width: 18px; height: 24px; background: var(--red); border-radius: 55% 45% 60% 40%; transform: rotate(45deg); }
.finale__line { margin: -2px 0 30px; color: var(--yellow); font: italic 700 clamp(23px,2.4vw,31px)/1.25 var(--display); }
.finale__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.contact-line { min-height: 24px; display: flex; justify-content: center; gap: 22px; margin-top: 30px; color: rgba(255,250,245,.6); font-size: 12px; }

/* Footer */
.site-footer { padding: 70px 0 24px; color: var(--white); background: #080d0a; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 55px; }
.site-footer__grid > div { display: flex; flex-direction: column; gap: 8px; font-size: 12px; }
.site-footer__grid strong { margin-bottom: 5px; color: var(--yellow); font: 900 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.footer-brand { font: 700 22px/1 var(--display); }
.site-footer__grid p { max-width: 280px; color: rgba(255,255,255,.55); }
.site-footer__grid a:hover { color: var(--yellow); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5); font: 800 9px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }

/* Visor, toast y WhatsApp */
.lightbox { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; color: var(--white); background: rgba(5,8,6,.94); }
.lightbox::backdrop { background: rgba(5,8,6,.94); }
.lightbox__stage { width: 100%; height: 100%; display: grid; place-items: center; padding: 60px 40px 40px; }
.lightbox__stage img { max-width: min(1200px,92vw); max-height: calc(100vh - 120px); width: auto; height: auto; object-fit: contain; box-shadow: 0 18px 80px rgba(0,0,0,.4); }
.lightbox__stage p { position: fixed; left: 24px; right: 24px; bottom: 14px; margin: 0; font-size: 12px; text-align: center; }
.lightbox__close { position: fixed; z-index: 2; right: 26px; top: 22px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; color: var(--white); background: transparent; cursor: pointer; font-size: 28px; }
.toast { position: fixed; z-index: 9998; left: 50%; bottom: 25px; max-width: calc(100vw - 30px); padding: 11px 16px; color: var(--white); background: var(--green); box-shadow: 6px 6px 0 var(--yellow); font-size: 12px; font-weight: 800; opacity: 0; transform: translate(-50%,20px); pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.is-visible { opacity: 1; transform: translate(-50%,0); }
.whatsapp-float { position: fixed; z-index: 80; right: 20px; bottom: 20px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #1da851; box-shadow: 0 12px 35px rgba(0,0,0,.25); }
.whatsapp-float svg { width: 30px; fill: currentColor; }

/* Aparición */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease) var(--delay,0ms), transform .65s var(--ease) var(--delay,0ms); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.motion-off [data-reveal], .motion-off .js [data-reveal] { opacity: 1; transform: none; transition: none; }
.document-scrap { position: fixed; z-index: 9996; left: var(--scrap-x); top: var(--scrap-y); width: 42px; height: 25px; pointer-events: none; border: 1px solid rgba(23,19,17,.5); background: linear-gradient(100deg,var(--cream) 0 67%,var(--red) 67% 72%,var(--cream) 72%); box-shadow: 2px 3px 0 rgba(0,0,0,.23); animation: scrap-flight .92s var(--ease) var(--scrap-delay) both; }
@keyframes scrap-flight { 0% { opacity: 0; transform: translate3d(-50%,-50%,0) scale(.35); } 18% { opacity: 1; } 100% { opacity: 0; transform: translate3d(var(--scrap-dx),var(--scrap-dy),0) scale(.95) rotate(var(--scrap-rot)); } }

/* Responsive */
@media (max-width: 1100px) {
  .site-nav { gap: 17px; }
  .hero__grid { grid-template-columns: minmax(0,.92fr) minmax(430px,1.08fr); gap: 42px; }
  .hero h1 { font-size: clamp(68px,9vw,102px); }
  .hero-date { width: 230px; }
  .gallery-grid { grid-auto-rows: 95px; }
}

@media (max-width: 920px) {
  :root { --header: 68px; }
  .topline__inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .topline__location { display: none; }
  .site-header__inner { gap: 12px; }
  .wordmark { margin-right: auto; }
  .header-cta { display: none; }
  .menu-toggle { width: 48px; height: 42px; display: grid; place-content: center; gap: 5px; padding: 0; border: 1px solid rgba(255,255,255,.45); background: transparent; color: var(--white); cursor: pointer; }
  .menu-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .menu-toggle i { width: 22px; height: 2px; background: currentColor; transition: transform .22s; }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: grid; gap: 0; margin: 0; padding: 10px 20px 22px; background: var(--board); border-bottom: 1px solid rgba(255,255,255,.2); box-shadow: 0 20px 35px rgba(0,0,0,.25); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .22s, visibility .22s, transform .22s; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; padding-top: 85px; }
  .hero__copy { max-width: 760px; }
  .hero__visual { width: min(760px,96%); min-height: 650px; justify-self: end; }
  .hero__footer { align-items: flex-start; flex-direction: column; }
  .section-heading--split, .story__grid, .return__grid, .operation__grid, .schedule__head, .booking__grid, .team__lead, .program__grid, .poster-section__grid, .tour__grid, .faq__grid { grid-template-columns: 1fr; }
  .story__grid, .return__grid, .operation__grid, .team__lead, .program__grid, .poster-section__grid, .tour__grid { gap: 58px; }
  .company-logo { width: min(560px,88%); justify-self: end; }
  .theme-grid { grid-template-columns: 1fr; }
  .theme-card { min-height: 210px; }
  .return__photo { width: min(760px,94%); }
  .return__copy { max-width: 760px; }
  .operation__copy { max-width: 760px; }
  .minutes { width: min(720px,94%); justify-self: end; }
  .function-card { grid-template-columns: 130px 1fr; }
  .function-card__actions { grid-column: 1/-1; flex-direction: row; border-left: 0; border-top: 1px solid var(--line); }
  .function-card__actions .button { width: auto; flex: 1; }
  .date-brief { grid-template-columns: 1fr 1fr; }
  .date-brief__tag, .date-brief > time { grid-column: 1/-1; }
  .gallery-grid { grid-auto-rows: 100px; }
  .gallery-card--rehearsal { grid-column: span 12; grid-row: span 5; }
  .gallery-card--backstage { grid-column: span 12; grid-row: span 3; }
  .gallery-card--poster, .gallery-card--press, .gallery-card--program { grid-column: span 4; grid-row: span 6; }
  .team__image { width: min(720px,92%); justify-self: end; }
  .program__poster { justify-self: start; }
  .poster-frame { justify-self: center; }
  .tour-card { width: min(650px,92%); justify-self: end; }
  .faq__head { position: static; }
  .press-grid { grid-template-columns: 1fr; }
  .press-card { min-height: 210px; }
  .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .site-footer__grid > div:last-child { grid-column: 2/-1; }
  .cursor-glow { display: none; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); --hard-shadow: 7px 7px 0 rgba(23,19,17,.17); }
  html { scroll-padding-top: 82px; }
  body { font-size: 15px; }
  .topline { font-size: 8px; }
  .topline__inner { min-height: 31px; gap: 9px; }
  .wordmark strong { font-size: 15px; }
  .hero__grid { padding-block: 67px 56px; gap: 55px; }
  .hero__season { flex-wrap: wrap; }
  .hero__season i { width: 28px; }
  .hero h1 { font-size: clamp(62px,22vw,88px); }
  .hero h1 span { font-size: 17px; }
  .hero__tagline { font-size: 22px; }
  .hero__actions, .booking__actions, .poster-section__actions, .tour__actions, .finale__actions { display: grid; }
  .button { width: 100%; }
  .hero__facts { grid-template-columns: 1fr; }
  .hero__facts div { min-height: 60px; padding: 13px 0; }
  .hero__facts div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .hero__visual { width: 100%; min-height: 520px; }
  .hero-photo { top: 0; right: 0; left: 0; aspect-ratio: 4/3; box-shadow: 10px 10px 0 var(--green); }
  .hero-date { right: 0; width: 210px; min-height: 235px; padding: 17px; }
  .hero-date__number strong { font-size: 68px; }
  .hero-date p { font-size: 11px; }
  .hero-poster { top: -24px; right: -7px; width: 90px; }
  .hero__footer-actions { flex-wrap: wrap; }
  .ticker span { min-height: 44px; gap: 17px; padding-inline: 17px; font-size: 9px; }
  .section, .return, .operation, .schedule, .gallery-section, .program, .tour, .faq { padding-block: 76px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading--split { gap: 22px; }
  .section-heading h2, .return h2, .operation h2, .schedule h2, .team h2, .program h2, .poster-section h2, .tour h2, .faq h2, .booking h2 { font-size: clamp(42px,14vw,60px); }
  .story::before { display: none; }
  .story__copy .lead { font-size: 24px; }
  .company-logo { width: calc(100% - 8px); justify-self: center; }
  .theme-grid { margin-top: 52px; }
  .theme-card { min-height: 190px; padding: 22px; }
  .theme-card > span { font-size: 44px; }
  .return__photo { width: calc(100% - 8px); }
  .return__timeline { grid-template-columns: 1fr; }
  .return__timeline > i { transform: rotate(90deg); justify-self: center; }
  .minutes { width: calc(100% - 8px); }
  .minutes__head { align-items: flex-start; flex-direction: column; }
  .minutes li { grid-template-columns: 28px 1fr; padding-block: 11px; }
  .minutes li strong { grid-column: 2; }
  .minutes::before { font-size: 20px; }
  .character-grid { grid-template-columns: 1fr; }
  .character-card:last-child:nth-child(odd) { grid-column: auto; }
  .character-card summary { min-height: 140px; grid-template-columns: 34px 1fr 34px; gap: 10px; padding: 18px; }
  .character-card h3 { font-size: 39px; }
  .character-card__toggle { width: 32px; }
  .character-card__body { grid-template-columns: 1fr; padding: 0 18px 20px 62px; gap: 14px; }
  .character-card__body > span { width: fit-content; }
  .function-card { grid-template-columns: 88px 1fr; }
  .function-card__date { min-height: 210px; padding: 10px; }
  .function-card__date strong { font-size: 52px; }
  .function-card__body { padding: 19px; }
  .function-card__body h3 { font-size: 31px; }
  .function-card__body dl { grid-template-columns: 1fr; }
  .function-card__body dl div, .function-card__body dl div + div { padding: 10px 0; border-left: 0; border-top: 1px solid var(--line); }
  .function-card__actions { flex-direction: column; }
  .function-card__actions .button { width: 100%; }
  .date-brief { grid-template-columns: 1fr; }
  .date-brief__tag, .date-brief > time { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-card--rehearsal, .gallery-card--backstage, .gallery-card--poster, .gallery-card--press, .gallery-card--program { grid-column: auto; grid-row: auto; min-height: 0; }
  .gallery-card--rehearsal, .gallery-card--backstage { aspect-ratio: 4/3; }
  .gallery-card--poster, .gallery-card--press, .gallery-card--program { aspect-ratio: 3/4; }
  .gallery-card > span { padding-top: 42px; }
  .team__image { width: calc(100% - 8px); }
  .credits-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .credit-block { padding: 20px 17px; }
  .credit-block > div { grid-template-columns: 1fr; gap: 3px; }
  .credit-block span { text-align: left; }
  .program__poster { max-width: calc(100% - 20px); justify-self: center; }
  .program__date strong { font-size: 36px; }
  .poster-frame { width: calc(100% - 20px); }
  .tour-card { width: calc(100% - 8px); justify-self: center; padding: 24px 18px; }
  .tour-card dl div { grid-template-columns: 1fr; gap: 4px; }
  .tour-card dd { text-align: left; }
  .faq__list summary { min-height: 78px; grid-template-columns: 32px 1fr 28px; gap: 8px; }
  .faq__list summary strong { font-size: 18px; }
  .faq__list details > p { padding: 0 0 24px 40px; }
  .finale { min-height: 620px; }
  .finale h2 { font-size: clamp(52px,16vw,76px); }
  .blood-mark { width: 82vw; }
  .site-footer { padding-top: 52px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .site-footer__grid > div:first-child { grid-column: 1/-1; }
  .site-footer__grid > div:last-child { grid-column: auto; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .lightbox__stage { padding: 58px 10px 42px; }
  .lightbox__close { right: 15px; top: 14px; }
  .whatsapp-float { width: 50px; height: 50px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .cursor-glow, .document-scrap { display: none; }
}

/* Acceso visible al dossier */
.header-dossier{min-height:42px;display:inline-flex;align-items:center;gap:7px;padding:9px 13px;color:var(--green);background:var(--paper);border:1px solid color-mix(in srgb,var(--green) 35%,transparent);border-radius:999px;font-size:.72rem;font-weight:950;letter-spacing:.04em;text-decoration:none;white-space:nowrap;transition:transform .18s ease,background .18s ease}.header-dossier:hover{transform:translateY(-2px);background:#fff}.header-dossier span{color:var(--red)}
@media(max-width:1120px){.header-dossier{display:none}}
