/* ============================================================
   PLAZA PARAÍSO TORREMOLINOS — Global stylesheet
   Pure HTML + CSS. No frameworks, no JS behaviour.
   ------------------------------------------------------------
   ▸ EDIT THE :root BLOCK BELOW to rebrand the whole site.
     Everything downstream reads from these variables:
     colours · fonts · spacing · radius · shadows.
   ============================================================ */

/* ---- Web fonts (festival voice). Esther is bundled locally. ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Anton&display=swap');

@font-face {
  font-family: 'Esther';
  src: url('assets/fonts/Esther.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   1 · DESIGN TOKENS  —  ✦ SWAP THESE VALUES TO REBRAND ✦
   ============================================================ */
:root {
  /* ---------- COLOURS ---------- */
  --navy:        #1b2240;   /* primary ink, headers, footers      */
  --navy-900:    #11162c;   /* deepest navy — footer, overlays    */
  --navy-700:    #2a3358;   /* raised / hover navy                */
  --navy-500:    #4a5680;   /* muted secondary ink on cream       */

  --red:         #d62828;   /* gastro accent, date stamp          */
  --red-700:     #b01f1f;   /* red pressed                        */
  --orange:      #ef7f11;   /* PRIMARY ACTION colour / CTA        */
  --orange-600:  #d96a06;   /* orange pressed                     */
  --amber:       #fabd49;   /* música bar, warm fill, highlight   */
  --amber-200:   #fcd584;   /* light amber wash                   */

  --cream:       #f7ead5;   /* default canvas + floating capsules */
  --cream-50:    #fdf7ec;   /* lightest paper                     */
  --cream-200:   #efdcc0;   /* palm silhouettes / shaded cream    */
  --cream-line:  #e3d2b6;   /* hairline on cream                  */

  --wave-foam:   #8fc4ec;
  --wave-bright: #3d8fd6;
  --wave-mid:    #2f5fb0;
  --wave-deep:   #1f3a7a;

  /* ---------- SEMANTIC ALIASES ---------- */
  --bg:          var(--cream);
  --bg-alt:      var(--cream-50);
  --surface:     #ffffff;
  --ink:         var(--navy);
  --ink-soft:    var(--navy-500);
  --ink-invert:  var(--cream);
  --accent:      var(--orange);
  --line:        var(--cream-line);
  --focus:       var(--orange);

  /* ---------- CATEGORY COLOUR-CODING ---------- */
  --cat-musica:  var(--amber);
  --cat-teatro:  var(--navy);
  --cat-gastro:  var(--red);
  --cat-ocio:    var(--orange);

  /* ---------- FONTS ---------- */
  --font-display:   'Esther', 'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Montserrat', system-ui, -apple-system, sans-serif;
  --font-condensed: 'Anton', 'Montserrat', sans-serif;

  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-extra:    800;
  --fw-black:    900;

  /* ---------- TYPE SCALE (fluid) ---------- */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.375rem;
  --text-xl:    1.75rem;
  --text-2xl:   2.25rem;
  --text-3xl:   clamp(2.4rem, 5vw, 3.5rem);
  --text-4xl:   clamp(3rem, 8vw, 6rem);
  --text-5xl:   clamp(3.6rem, 11vw, 8.5rem);

  /* ---------- SPACING (8-pt) ---------- */
  --space-1: 0.25rem;  --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.5rem;  --space-6: 2rem;
  --space-7: 3rem;     --space-8: 4rem;    --space-9: 6rem;  --space-10: 8rem;

  --container: 1200px;
  --gutter:    clamp(1rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 7vw, 6.5rem);
  --tap-min:   44px;

  /* ---------- RADIUS ---------- */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-pill: 999px;

  /* ---------- SHADOWS ---------- */
  --shadow-sm:   0 1px 3px rgba(27,34,64,.10);
  --shadow-md:   0 6px 18px rgba(27,34,64,.14);
  --shadow-lg:   0 14px 40px rgba(27,34,64,.20);
  --shadow-pill: 0 8px 22px rgba(27,34,64,.18);

  /* ---------- MOTION ---------- */
  --ease-out:    cubic-bezier(.22,1,.36,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --dur:         220ms;
}

/* ============================================================
   2 · RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: var(--fw-black);
  line-height: 1.04;
  text-wrap: balance;
}
p  { margin: 0; text-wrap: pretty; }
ul { margin: 0; }
a  { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
picture { display: contents; }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-150%);
  top: 8px;
  z-index: 200;
  background: var(--orange);
  color: #fff;
  font-weight: var(--fw-bold);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: transform var(--dur) var(--ease-out);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   3 · LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: 1440px; }

.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--cream-50 { background: var(--cream-50); }
.section--navy { background: var(--navy); color: var(--ink-invert); }
.section--tight { padding-block: clamp(2rem,4vw,3.5rem); }

.eyebrow {
  font-weight: var(--fw-extra);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  color: var(--orange);
  display: inline-block;
}
.eyebrow--soft { color: var(--navy-500); }
.eyebrow--cream { color: var(--amber); }

.display { font-family: var(--font-display); font-weight: 400; }

.section-head { max-width: 760px; margin-bottom: clamp(2rem,4vw,3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: var(--text-3xl);
  text-transform: uppercase;
  letter-spacing: .005em;
  margin-top: var(--space-2);
}
.lead {
  font-size: var(--text-md);
  color: var(--ink-soft);
  margin-top: var(--space-4);
  max-width: 62ch;
}
.section--navy .lead { color: rgba(247,234,213,.82); }

/* ============================================================
   4 · PALM BACKDROP + WAVE DIVIDER (signature motifs)
   ============================================================ */
.palm-bg {
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 42% 64% at 6% 102%, var(--cream-200) 0%, transparent 60%),
    radial-gradient(ellipse 38% 58% at 94% 102%, var(--cream-200) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 50% -8%, var(--cream-200) 0%, transparent 55%);
}

/* Torn-paper Mediterranean sea edge. Lifted from the design system. */
.wave {
  --w1: var(--wave-foam); --w2: var(--wave-bright);
  --w3: var(--wave-mid);  --w4: var(--wave-deep);
  position: relative;
  width: 100%;
  height: clamp(34px, 5vw, 70px);
  line-height: 0;
  background:
    radial-gradient(circle at 14px -7px, transparent 16px, var(--w1) 16px) repeat-x 0 0 / 32px 20px,
    linear-gradient(var(--w2), var(--w2)) no-repeat 0 16px / 100% 12px,
    linear-gradient(var(--w3), var(--w3)) no-repeat 0 26px / 100% 16px,
    linear-gradient(var(--w4), var(--w4)) no-repeat 0 40px / 100% 100%;
}
.wave--flip { transform: scaleY(-1); }

/* ============================================================
   5 · MARQUEE RIBBON (static, no animation)
   ============================================================ */
.ribbon {
  background: var(--amber);
  color: var(--navy);
  overflow: hidden;
  white-space: nowrap;
}
.ribbon__track {
  display: flex;
  gap: 0;
  padding-block: 12px;
  font-weight: var(--fw-black);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: var(--text-sm);
  justify-content: center;
}
.ribbon__track span { padding-inline: 14px; flex: 0 0 auto; }
.ribbon__track span::after { content: "✦"; margin-left: 28px; color: var(--orange); }
.ribbon__track span:last-child::after { content: ""; }
.ribbon--navy { background: var(--navy); color: var(--cream); }
.ribbon--navy .ribbon__track span::after { color: var(--amber); }

/* ============================================================
   6 · BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: var(--tap-min);
  padding: 0.85em 1.6em;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: var(--fw-extra);
  font-size: var(--text-sm);
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-bounce),
              border-color var(--dur) var(--ease-out);
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:active { transform: scale(.96); }

.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--orange-600); }

.btn--navy { background: var(--navy); color: var(--cream); }
.btn--navy:hover { background: var(--navy-700); }

.btn--outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--cream); }

.btn--ghost-cream { background: transparent; border-color: var(--cream); color: var(--cream); }
.btn--ghost-cream:hover { background: var(--cream); color: var(--navy); }

.btn--lg { font-size: var(--text-base); padding: 1.05em 2em; }
.btn--block { display: flex; width: 100%; }

/* ============================================================
   7 · CATEGORY TAGS
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-extra);
  font-size: var(--text-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.tag--musica { background: var(--amber); color: var(--red); }
.tag--teatro { background: var(--navy); color: var(--orange); }
.tag--gastro { background: var(--red); color: var(--amber); }
.tag--ocio   { background: var(--orange); color: var(--cream); }

/* ============================================================
   8 · SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,22,44,.97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(247,234,213,.10);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: 68px;
}
.nav__logo img { height: 30px; width: auto; }
.nav__links {
  display: none;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  list-style: none;
  padding: 0; margin: 0;
}
.nav__links a {
  color: var(--cream);
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--dur) var(--ease-out), color var(--dur);
}
.nav__links a:hover { border-color: var(--orange); }
.nav__links a[aria-current="page"] { color: var(--amber); border-color: var(--amber); }
.nav__right { display: flex; align-items: center; gap: var(--space-4); }
.nav__socials { display: none; gap: 12px; color: var(--cream-200); }
.nav__socials a:hover { color: var(--amber); }
.nav__socials svg { width: 18px; height: 18px; }

/* CSS-only mobile menu via hidden checkbox */
.nav__toggle { display: inline-flex; }
.nav__burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--tap-min); height: var(--tap-min);
  background: none; border: 0; color: var(--cream); cursor: pointer;
}
.nav__burger svg { width: 26px; height: 26px; }
#nav-switch { position: absolute; opacity: 0; pointer-events: none; }
.nav__burger .icon-x { display: none; }
#nav-switch:checked ~ .nav .icon-menu { display: none; }
#nav-switch:checked ~ .nav .icon-x { display: block; }
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--navy-900);
  border-top: 1px solid rgba(247,234,213,.08);
}
#nav-switch:checked ~ .nav__mobile { display: flex; }
.nav__mobile a {
  color: var(--cream);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  font-size: var(--text-base);
  letter-spacing: .04em;
  padding: 16px var(--gutter);
}
.nav__mobile a:hover { background: var(--navy-700); }
.nav__mobile .btn { margin: var(--space-4) var(--gutter) var(--space-5); }

@media (min-width: 920px) {
  .nav__links { display: flex; }
  .nav__socials { display: flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none !important; }
}

/* ============================================================
   9 · HERO (home)
   ============================================================ */
.hero { position: relative; padding-top: clamp(2rem, 5vw, 3.5rem); overflow: hidden; }
.hero__inner { max-width: 1040px; margin-inline: auto; text-align: center; padding: 0 var(--gutter) clamp(2rem,5vw,3.5rem); }
.hero__logo { width: min(640px, 86%); margin: 0 auto var(--space-2); }
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  color: var(--navy-700);
  margin-top: var(--space-3);
}
.hero__cta { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; margin-top: var(--space-6); }
.hero__meta {
  display: flex; gap: var(--space-6); justify-content: center; flex-wrap: wrap;
  margin-top: var(--space-6); color: var(--navy-700); font-weight: var(--fw-bold); font-size: var(--text-sm);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 18px; height: 18px; color: var(--orange); }

/* The stuck-on starburst seal */
.seal {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  width: clamp(90px, 13vw, 150px);
  aspect-ratio: 1;
  color: #fff;
  font-weight: var(--fw-black);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: .02em;
  font-size: clamp(.7rem, 1.4vw, 1rem);
  transform: rotate(-12deg);
}
.seal--orange { background: var(--orange);
  clip-path: polygon(50% 0%,61% 9%,75% 4%,79% 19%,94% 21%,89% 36%,100% 46%,90% 57%,98% 71%,83% 76%,84% 91%,69% 88%,60% 100%,50% 90%,40% 100%,31% 88%,16% 91%,17% 76%,2% 71%,10% 57%,0% 46%,11% 36%,6% 21%,21% 19%,25% 4%,39% 9%);
}
.seal small { display: block; font-size: .82em; font-weight: var(--fw-bold); line-height: 0.92; }

/* circular red date stamp */
.stamp {
  display: grid; place-items: center; text-align: center;
  width: clamp(110px, 15vw, 160px); aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red); color: #fff;
  font-weight: var(--fw-black); text-transform: uppercase;
  letter-spacing: .04em; line-height: 1.1;
  font-size: clamp(.85rem, 1.6vw, 1.15rem);
  transform: rotate(7deg);
  box-shadow: var(--shadow-md);
  padding: 10px;
}

/* ============================================================
   10 · STRAND CARDS (Música/Teatro/Gastro/Ocio)
   ============================================================ */
.strands {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .strands { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .strands { grid-template-columns: repeat(4, 1fr); } }

.strand {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5) var(--space-5);
  box-shadow: var(--shadow-sm);
  border-top: 6px solid var(--cat);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.strand:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.strand--musica { --cat: var(--cat-musica); }
.strand--teatro { --cat: var(--cat-teatro); }
.strand--gastro { --cat: var(--cat-gastro); }
.strand--ocio   { --cat: var(--cat-ocio); }
.strand__num { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--cat); line-height: 1; }
.strand h3 { font-size: var(--text-xl); text-transform: uppercase; margin: var(--space-3) 0 var(--space-2); letter-spacing: .02em; }
.strand p { color: var(--ink-soft); font-size: var(--text-sm); }

/* ============================================================
   11 · EVENT CARDS (full-bleed photo + floating capsule)
   ============================================================ */
.events-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 840px) { .events-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .events-grid--four { grid-template-columns: repeat(4, 1fr); } }

.event-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  isolation: isolate;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-card__media { position: relative; aspect-ratio: 4 / 5; }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; }
.event-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,22,44,.88) 0%, rgba(17,22,44,0) 58%);
}
.event-card__tag { position: absolute; top: 14px; left: 14px; z-index: 2; }
.event-card .wave { position: absolute; bottom: 0; left: 0; z-index: 2; height: clamp(18px,2.4vw,26px); }
.event-card__label {
  position: relative;
  z-index: 3;
  background: var(--cream-50);
  padding: 10px 14px 12px;
  text-align: center;
}
.event-card__kicker { font-size: 0.7rem; font-weight: var(--fw-bold); color: var(--navy-500); text-transform: uppercase; letter-spacing: .08em; }
.event-card__name { font-size: var(--text-base); font-weight: var(--fw-black); color: var(--navy); text-transform: uppercase; line-height: 1.05; }
.event-card__date { font-size: var(--text-xs); font-weight: var(--fw-extra); color: var(--orange); text-transform: uppercase; margin-top: 2px; }

/* ============================================================
   12 · FILTER CHIPS (static anchors, programme)
   ============================================================ */
.chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: var(--space-7); }
.chip {
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-weight: var(--fw-extra);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: var(--text-xs);
  padding: 9px 18px;
  min-height: var(--tap-min);
  display: inline-flex; align-items: center;
  border-radius: var(--radius-pill);
  transition: background var(--dur) var(--ease-out), color var(--dur);
}
.chip:hover { background: var(--navy); color: var(--cream); }

/* ============================================================
   13 · CALENDAR / FECHAS LIST
   ============================================================ */
.calendar { display: grid; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--surface); }
.cal-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--line);
  border-left: 6px solid var(--cat, var(--navy));
  transition: background var(--dur), transform var(--dur);
  text-decoration: none;
  color: inherit;
}
.cal-row:last-child { border-bottom: 0; }
.cal-row:hover { background: var(--cream-50); }
a.cal-row:hover .cal-row__event { text-decoration: underline; text-underline-offset: 3px; }
a.cal-row:focus-visible { outline: 2px solid var(--navy); outline-offset: -2px; }
.cal-row--musica { --cat: var(--cat-musica); }
.cal-row--teatro { --cat: var(--cat-teatro); }
.cal-row--gastro { --cat: var(--cat-gastro); }
.cal-row--ocio   { --cat: var(--cat-ocio); }
.cal-row__date { font-weight: var(--fw-black); text-transform: uppercase; letter-spacing: .04em; color: var(--navy); font-size: var(--text-sm); }
.cal-row__event { font-weight: var(--fw-semibold); color: var(--ink-soft); }
@media (min-width: 640px) {
  .cal-row { grid-template-columns: 180px 1fr auto; align-items: center; gap: var(--space-5); }
  .cal-row__event { font-size: var(--text-md); color: var(--navy); }
}

/* ============================================================
   14 · STATS
   ============================================================ */
.stats { display: grid; gap: var(--space-5); grid-template-columns: 1fr 1fr; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat__num { font-family: var(--font-condensed); font-size: clamp(3rem, 7vw, 5rem); line-height: .9; color: var(--amber); }
.section--navy .stat__num { color: var(--amber); }
.stat__label { font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .08em; font-size: var(--text-xs); margin-top: var(--space-2); }
.section--navy .stat__label { color: rgba(247,234,213,.78); }

/* ============================================================
   15 · PROCESS TIMELINE (the summer, week by week)
   ============================================================ */
.timeline { position: relative; margin-top: var(--space-7); }
.timeline::before {
  content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px;
  width: 3px; background: linear-gradient(var(--amber), var(--orange), var(--red));
  border-radius: 3px;
}
.tl-item { position: relative; padding: 0 0 var(--space-7) 56px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item__dot {
  position: absolute; left: 8px; top: 2px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--cat, var(--orange)); border: 4px solid var(--cream);
  box-shadow: var(--shadow-sm);
}
.tl-item--musica { --cat: var(--cat-musica); }
.tl-item--teatro { --cat: var(--cat-teatro); }
.tl-item--gastro { --cat: var(--cat-gastro); }
.tl-item--ocio   { --cat: var(--cat-ocio); }
.tl-item__date { font-weight: var(--fw-extra); text-transform: uppercase; letter-spacing: .08em; color: var(--orange); font-size: var(--text-sm); }
.tl-item h3 { font-size: var(--text-lg); text-transform: uppercase; margin: 4px 0 6px; }
.tl-item p { color: var(--ink-soft); font-size: var(--text-sm); max-width: 56ch; }

/* ============================================================
   16 · FAQ ACCORDION (CSS-only details/summary)
   ============================================================ */
.faq { display: grid; gap: var(--space-4); max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5);
  font-weight: var(--fw-extra);
  font-size: var(--text-md);
  color: var(--navy);
  min-height: var(--tap-min);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .faq__icon {
  flex: 0 0 auto; width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--cream);
  transition: transform var(--dur) var(--ease-out), background var(--dur);
}
.faq summary .faq__icon svg { width: 16px; height: 16px; color: var(--navy); }
.faq details[open] summary .faq__icon { transform: rotate(45deg); background: var(--orange); }
.faq details[open] summary .faq__icon svg { color: #fff; }
.faq__body { padding: 0 var(--space-5) var(--space-5); color: var(--ink-soft); }
.faq__body p { font-size: var(--text-base); }

/* ============================================================
   17 · PRICING / TICKET TIERS
   ============================================================ */
.tickets-grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 720px) { .tickets-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .tickets-grid { grid-template-columns: repeat(3, 1fr); } }

.ticket {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.ticket:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ticket--feature { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.ticket--feature .ticket__price, .ticket--feature h3 { color: #fff; }
.ticket--feature .ticket__feat { color: rgba(247,234,213,.86); }
.ticket__flag {
  position: absolute; top: -14px; right: 22px;
  background: var(--orange); color: #fff;
  font-weight: var(--fw-extra); text-transform: uppercase; letter-spacing: .08em;
  font-size: var(--text-xs); padding: 6px 14px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.ticket h3 { font-size: var(--text-xl); text-transform: uppercase; }
.ticket__price { font-family: var(--font-condensed); font-size: clamp(2.6rem,5vw,3.4rem); line-height: 1; color: var(--navy); margin: var(--space-3) 0 var(--space-1); }
.ticket__price small { font-family: var(--font-sans); font-size: var(--text-sm); font-weight: var(--fw-bold); color: var(--ink-soft); }
.ticket__sub { color: var(--ink-soft); font-size: var(--text-sm); }
.ticket--feature .ticket__sub { color: rgba(247,234,213,.72); }
.ticket__list { list-style: none; padding: 0; margin: var(--space-5) 0; display: grid; gap: var(--space-3); }
.ticket__feat { display: flex; gap: 10px; align-items: flex-start; font-size: var(--text-sm); }
.ticket__feat svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--orange); margin-top: 2px; }
.ticket .btn { margin-top: auto; }

/* ============================================================
   18 · COMPARISON TABLE
   ============================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.compare { width: 100%; border-collapse: collapse; background: var(--surface); min-width: 560px; }
.compare th, .compare td { padding: var(--space-4) var(--space-5); text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--navy); color: var(--cream); text-transform: uppercase; letter-spacing: .06em; font-size: var(--text-sm); }
.compare tbody th { font-weight: var(--fw-bold); color: var(--navy); }
.compare tbody tr:nth-child(even) { background: var(--cream-50); }
.compare td svg { width: 20px; height: 20px; color: #1f8a4c; }
.compare td .no { color: var(--navy-500); font-weight: var(--fw-bold); }

/* ============================================================
   19 · FORMS (contact)
   ============================================================ */
.form-grid { display: grid; gap: var(--space-5); }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: var(--fw-bold); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .04em; color: var(--navy); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: var(--text-base);
  color: var(--navy);
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 13px 15px;
  min-height: var(--tap-min);
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(239,127,17,.22);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--red); }
.checkbox { flex-direction: row; align-items: flex-start; gap: 12px; }
.checkbox input { min-height: auto; width: 22px; height: 22px; accent-color: var(--orange); margin-top: 2px; }
.checkbox label { text-transform: none; letter-spacing: 0; font-weight: var(--fw-medium); color: var(--ink-soft); }
.field__hint { font-size: var(--text-xs); color: var(--ink-soft); }
.form-status {
  margin-top: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-weight: var(--fw-semibold);
  font-size: var(--text-sm);
  line-height: 1.5;
}
.form-status.is-ok { background: #e4f4ea; color: #1a7a45; border: 1px solid #bfe6cd; }
.form-status.is-err { background: #fde4e4; color: var(--red-700); border: 1px solid #f4c4c4; }

/* ============================================================
   20 · CONTACT INFO CARDS
   ============================================================ */
.info-list { display: grid; gap: var(--space-5); }
.info-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.info-item__icon {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--cream); display: grid; place-items: center;
}
.section--navy .info-item__icon { background: var(--navy-700); }
.info-item__icon svg { width: 22px; height: 22px; color: var(--orange); }
.info-item h3 { font-size: var(--text-base); text-transform: uppercase; letter-spacing: .04em; }
.info-item p, .info-item a { color: var(--ink-soft); font-size: var(--text-sm); }
.section--navy .info-item p, .section--navy .info-item a { color: rgba(247,234,213,.82); }
.info-item a:hover { color: var(--orange); }

/* ============================================================
   21 · GENERIC CARD GRID / SPLIT / CTA BANNER
   ============================================================ */
.split { display: grid; gap: var(--space-7); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--reverse > :first-child { order: 2; } }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.poster-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; aspect-ratio: 4 / 5; display: block; }
.poster-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cta-banner {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.cta-banner h2 { font-size: var(--text-3xl); text-transform: uppercase; }
.cta-banner p { color: rgba(247,234,213,.85); margin: var(--space-4) auto 0; max-width: 52ch; }
.cta-banner .hero__cta { margin-top: var(--space-6); }

.pagehero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2rem,4vw,3rem);
  text-align: center;
}
.pagehero h1 { font-size: var(--text-4xl); text-transform: uppercase; letter-spacing: .005em; }
.pagehero .lead { margin-inline: auto; }

.feature-list { list-style: none; padding: 0; display: grid; gap: var(--space-4); margin-top: var(--space-5); }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--orange); margin-top: 2px; }

/* ============================================================
   22 · FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: var(--cream); }
.footer__grid {
  display: grid; gap: var(--space-7);
  grid-template-columns: 1fr;
  padding-block: var(--space-8) var(--space-6);
}
@media (min-width: 600px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer__brand img { height: 40px; width: auto; margin-bottom: var(--space-4); }
.footer__brand p { color: rgba(247,234,213,.72); font-size: var(--text-sm); max-width: 38ch; }
.footer__socials { display: flex; gap: 14px; margin-top: var(--space-5); }
.footer__socials a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy-700); color: var(--cream);
  transition: background var(--dur) var(--ease-out);
}
.footer__socials a:hover { background: var(--orange); }
.footer__socials svg { width: 20px; height: 20px; }
.footer__col h4 { text-transform: uppercase; letter-spacing: .08em; font-size: var(--text-sm); color: var(--amber); margin-bottom: var(--space-4); }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: var(--space-3); }
.footer__col a, .footer__col p { color: rgba(247,234,213,.78); font-size: var(--text-sm); }
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  border-top: 1px solid rgba(247,234,213,.12);
  padding-block: var(--space-5);
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  justify-content: space-between; align-items: center;
  font-size: var(--text-xs); color: rgba(247,234,213,.6);
}
.footer__bottom a:hover { color: var(--orange); }

/* ============================================================
   24 · CINEMATIC HERO (Primavera-style, full-bleed photo)
   ============================================================ */
.hero-cine {
  position: relative;
  min-height: clamp(460px, 86svh, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-cine__bg { position: absolute; inset: 0; z-index: 0; }
.hero-cine__bg img,
.hero-cine__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-cine__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(17,22,44,.62) 0%, rgba(17,22,44,.32) 30%, rgba(17,22,44,.40) 58%, rgba(17,22,44,.93) 100%);
}
.hero-cine__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 940px;
  padding: clamp(1.25rem,4vw,2.25rem) var(--gutter);
}
.hero-cine .eyebrow { color: var(--amber); }
.hero-cine__logo { width: min(720px, 92%); max-height: 42svh; object-fit: contain; margin: clamp(.5rem,2vw,1.25rem) auto; filter: drop-shadow(0 6px 24px rgba(0,0,0,.45)); }
.hero-cine__badge {
  display: inline-block;
  background: var(--orange); color: #fff;
  font-weight: var(--fw-black); text-transform: uppercase;
  letter-spacing: .12em; font-size: var(--text-sm);
  padding: 10px 22px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
.hero-cine__cta { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; margin-top: var(--space-5); }
.hero-cine__cta .btn { font-size: var(--text-xs); padding: 0.6em 1.15em; min-height: 38px; }
.hero-cine__cta .btn svg { width: 1em; height: 1em; }
.hero-cine__meta {
  display: flex; gap: var(--space-6); justify-content: center; flex-wrap: wrap;
  margin-top: var(--space-6); font-weight: var(--fw-bold); font-size: var(--text-sm);
  color: rgba(247,234,213,.9);
}
.hero-cine__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-cine__meta svg { width: 18px; height: 18px; color: var(--amber); }
.hero-cine__seal { position: absolute; top: clamp(90px, 12vw, 120px); right: clamp(14px, 5vw, 60px); z-index: 3; display: none; }
@media (min-width: 920px) { .hero-cine__seal { display: grid; } }

/* ============================================================
   25 · INTRO EDITORIAL BAND (2-col)
   ============================================================ */
.intro-band { display: grid; gap: var(--space-6); align-items: start; }
@media (min-width: 860px) { .intro-band { grid-template-columns: 0.85fr 1.15fr; gap: var(--space-9); } }
.intro-band__title { font-size: var(--text-3xl); text-transform: uppercase; letter-spacing: .005em; }
.intro-band__kicker { margin-bottom: var(--space-3); }
.intro-band__body p { font-size: var(--text-md); color: var(--ink-soft); }
.intro-band__body p + p { margin-top: var(--space-4); }

/* ============================================================
   26 · TICKET TABLE (Primavera-style rows)
   ============================================================ */
.ticket-table { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--surface); }
.tt-head {
  background: var(--navy); color: var(--cream);
  text-align: center; font-weight: var(--fw-black);
  text-transform: uppercase; letter-spacing: .14em; font-size: var(--text-sm);
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.tt-head svg { width: 18px; height: 18px; }
.tt-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--space-4) var(--space-5);
  padding: var(--space-5);
  border-bottom: 1px solid var(--line);
}
.tt-row:last-child { border-bottom: 0; }
.tt-row:hover { background: var(--cream-50); }
.tt-row__main { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 14px; flex: 1 1 280px; min-width: 0; }
.tt-row__name { font-weight: var(--fw-black); text-transform: uppercase; font-size: var(--text-md); color: var(--navy); }
.tt-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.tt-meta__chip {
  font-size: 11px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy-500); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 3px 10px;
}
.pill-status {
  display: inline-flex; align-items: center; gap: 6px;
  background: #e4f4ea; color: #1a7a45;
  font-weight: var(--fw-extra); text-transform: uppercase; letter-spacing: .05em;
  font-size: 11px; padding: 4px 12px; border-radius: var(--radius-pill);
}
.pill-status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #25a35a; }
.tt-row__buy { display: flex; align-items: center; gap: var(--space-5); margin-left: auto; }
.tt-price { text-align: right; font-weight: var(--fw-black); color: var(--navy); font-size: var(--text-lg); white-space: nowrap; line-height: 1.1; }
.tt-price small { display: block; font-weight: var(--fw-medium); font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.tt-price .tt-from { display: block; font-size: 10px; font-weight: var(--fw-bold); color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }
.tt-buy {
  background: var(--orange); color: #fff;
  font-weight: var(--fw-extra); text-transform: uppercase; letter-spacing: .06em; font-size: var(--text-xs);
  padding: 11px 22px; border-radius: var(--radius-pill); min-height: var(--tap-min);
  display: inline-flex; align-items: center; white-space: nowrap;
  transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-bounce);
}
.tt-buy:hover { background: var(--orange-600); }
.tt-buy:active { transform: scale(.96); }
.tt-toggles { display: flex; gap: var(--space-4); justify-content: center; margin-top: var(--space-6); flex-wrap: wrap; }
.tt-fineprint { text-align: center; color: var(--ink-soft); font-size: var(--text-xs); margin-top: var(--space-5); }
@media (max-width: 560px) {
  .tt-row__buy { width: 100%; justify-content: space-between; }
  .tt-price { text-align: left; }
}

/* ============================================================
   27 · PROMO CARDS (image + overlay)
   ============================================================ */
.promos { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 760px) { .promos { grid-template-columns: 1fr 1fr; } }
.promo {
  position: relative; display: flex; align-items: flex-end;
  min-height: 300px; border-radius: var(--radius-lg); overflow: hidden;
  color: var(--cream); box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.promo:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.promo__bg { position: absolute; inset: 0; z-index: 0; }
.promo__bg img { width: 100%; height: 100%; object-fit: cover; }
.promo__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,22,44,.92) 0%, rgba(17,22,44,.30) 70%); }
.promo__body { position: relative; z-index: 2; padding: var(--space-6); width: 100%; }
.promo__body h3 { font-size: var(--text-2xl); text-transform: uppercase; line-height: 1; margin-bottom: var(--space-3); }
.promo__body p { color: rgba(247,234,213,.86); font-size: var(--text-sm); max-width: 40ch; margin-bottom: var(--space-5); }

/* ============================================================
   28 · NEWS / NOVEDADES CARDS
   ============================================================ */
.cards-row { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 620px) { .cards-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .cards-row { grid-template-columns: repeat(3, 1fr); } }
.news-card {
  display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-card__media { aspect-ratio: 16/10; overflow: hidden; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease-out); }
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-2); flex: 1; }
.news-card__cat { font-size: var(--text-xs); font-weight: var(--fw-extra); text-transform: uppercase; letter-spacing: .1em; color: var(--orange); }
.news-card__title { font-size: var(--text-md); text-transform: none; line-height: 1.2; color: var(--navy); }

/* ============================================================
   29 · GALLERY STRIP (Relive)
   ============================================================ */
.gallery { display: grid; gap: var(--space-4); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { display: flex; flex-direction: column; gap: var(--space-3); }
.gallery-item__media { aspect-ratio: 3/4; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.gallery-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease-out); }
.gallery-item:hover .gallery-item__media img { transform: scale(1.06); }
.gallery-item__cat { font-size: var(--text-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .1em; color: var(--amber); }
.gallery-item__name { font-size: var(--text-sm); font-weight: var(--fw-extra); color: var(--cream); text-transform: uppercase; }

/* ============================================================
   30 · NEWSLETTER (Stay in touch)
   ============================================================ */
.newsletter { background: linear-gradient(135deg, var(--navy) 0%, var(--wave-deep) 100%); color: var(--cream); text-align: center; }
.newsletter h2 { font-size: var(--text-3xl); text-transform: uppercase; }
.newsletter p { color: rgba(247,234,213,.82); margin: var(--space-4) auto 0; max-width: 50ch; }
.newsletter__form { display: flex; gap: var(--space-3); max-width: 540px; margin: var(--space-6) auto 0; flex-wrap: wrap; }
.newsletter__form input {
  flex: 1 1 240px; min-height: var(--tap-min);
  border: 2px solid rgba(247,234,213,.3); background: rgba(255,255,255,.08);
  color: var(--cream); border-radius: var(--radius-pill); padding: 13px 22px; font-family: inherit; font-size: var(--text-base);
}
.newsletter__form input::placeholder { color: rgba(247,234,213,.55); }
.newsletter__form input:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(250,189,73,.25); }
.newsletter__note { font-size: var(--text-xs); color: rgba(247,234,213,.55); margin: var(--space-5) auto 0; max-width: 52ch; }

/* ============================================================
   31 · PARTNERS BAND
   ============================================================ */
.partners-band { display: grid; gap: var(--space-7); }
.partners-group { text-align: center; }
.partners-group h4 { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .16em; color: var(--ink-soft); margin-bottom: var(--space-4); }
.partners-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-5) var(--space-7); }
.partner-name { font-weight: var(--fw-black); text-transform: uppercase; letter-spacing: .04em; color: var(--navy); font-size: var(--text-lg); }
.partner-name .display { font-family: var(--font-display); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 1.4em; }

/* Footer colaboradores strip */
.footer__partners { display: flex; flex-wrap: wrap; gap: 26px 56px; align-items: center; justify-content: center; text-align: center; padding: 26px 0 4px; margin-top: var(--space-6); border-top: 1px solid rgba(247,234,213,.14); }
.footer__partner { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 10px; }
.footer__partner > span { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .14em; color: #fff; }
.footer__partner img { display: block; width: auto; filter: brightness(0) invert(1); }
.footer__partner--organiza img { height: 58px; }
.footer__partner--colabora img { height: 46px; }

/* ============================================================
   23 · UTILITIES
   ============================================================ */
/* Hero decoration placement */
.hero__seal { display: none; }
.hero__stamp { display: none; }
@media (min-width: 880px) {
  .hero__seal { display: grid; position: absolute; z-index: 4; top: clamp(10px, 4vw, 40px); left: clamp(10px, 4vw, 56px); }
  .hero__stamp { display: grid; position: absolute; z-index: 4; top: clamp(10px, 3vw, 30px); right: clamp(10px, 4vw, 56px); }
}

.text-center { text-align: center; }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.stack-sm { display: grid; gap: var(--space-4); }
.muted { color: var(--ink-soft); }

/* ============================================================
   32 · EVENT LANDING (sales-oriented, mobile-first)
   Category themes via --ev-accent / --ev-ink
   ============================================================ */
.ev--musica { --ev-accent: var(--amber);  --ev-ink: var(--red); }
.ev--teatro { --ev-accent: var(--orange); --ev-ink: var(--navy); }
.ev--gastro { --ev-accent: var(--red);    --ev-ink: var(--amber); }
.ev--ocio   { --ev-accent: var(--orange); --ev-ink: var(--cream); }

body.has-buybar { padding-bottom: 86px; }

/* ---- HERO ---- */
.ev-hero {
  position: relative;
  min-height: clamp(500px, 84svh, 800px);
  display: flex; align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}
.ev-hero__bg { position: absolute; inset: 0; z-index: 0; }
.ev-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.ev-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,22,44,.95) 2%, rgba(17,22,44,.55) 38%, rgba(17,22,44,.12) 70%, rgba(17,22,44,.45) 100%);
}
.ev-hero__inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--container); margin-inline: auto;
  padding: clamp(1.5rem,5vw,3rem) var(--gutter) calc(var(--space-5) + 78px);
}
.ev-hero__cat {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ev-accent); color: var(--ev-ink);
  font-weight: var(--fw-black); text-transform: uppercase; letter-spacing: .12em;
  font-size: var(--text-xs); padding: 7px 16px; border-radius: var(--radius-pill);
}
.ev-hero__kicker {
  font-family: var(--font-display); font-size: clamp(1.15rem,4.5vw,1.9rem);
  color: var(--cream); margin: var(--space-3) 0 var(--space-2); opacity: .95;
}
.ev-hero__name {
  font-size: clamp(2.9rem, 10vw, 8rem); line-height: .9; text-transform: uppercase;
  letter-spacing: -.01em; text-shadow: 0 6px 30px rgba(0,0,0,.4);
}
.ev-hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5);
  margin-top: var(--space-4); font-weight: var(--fw-bold); font-size: var(--text-sm);
}
.ev-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.ev-hero__meta svg { width: 18px; height: 18px; color: var(--ev-accent); }
.ev-hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }

/* ---- STICKY BUY BAR (mobile-first sales) ---- */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(17,22,44,.98); backdrop-filter: saturate(140%) blur(8px);
  border-top: 1px solid rgba(247,234,213,.12);
  padding: 7px var(--gutter); padding-bottom: max(7px, env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
}
.buybar__price { color: var(--cream); line-height: 1.05; }
.buybar__price b { display: block; font-size: var(--text-md); font-weight: var(--fw-black); }
.buybar__price small { font-size: 11px; color: rgba(247,234,213,.6); text-transform: uppercase; letter-spacing: .06em; }
.buybar .btn { flex: 0 0 auto; padding: 11px 22px; font-size: var(--text-sm); }
@media (min-width: 760px) {
  .buybar {
    left: 0; right: 0; margin-inline: auto;
    bottom: var(--space-4);
    width: fit-content; max-width: calc(100% - 2 * var(--gutter));
    justify-content: center; gap: var(--space-6);
    padding: 7px 10px 7px var(--space-4);
    border: 1px solid rgba(247,234,213,.14);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-lg);
  }
  .buybar__price { display: flex; align-items: baseline; gap: 10px; flex: 0 0 auto; white-space: nowrap; }
  .buybar__price b { display: inline; font-size: var(--text-md); white-space: nowrap; }
}

/* ---- INTRO / QUÉ VAS A VIVIR ---- */
.ev-intro { max-width: 720px; }
.ev-intro__lead { font-size: clamp(1.15rem,3vw,1.5rem); color: var(--navy); font-weight: var(--fw-semibold); line-height: 1.35; }
.ev-intro__body { color: var(--ink-soft); font-size: var(--text-md); margin-top: var(--space-4); }

.ev-highlights { display: grid; gap: var(--space-4); grid-template-columns: 1fr; margin-top: var(--space-7); }
@media (min-width: 720px) { .ev-highlights { grid-template-columns: repeat(3, 1fr); } }
.ev-hl {
  background: var(--surface); border-radius: var(--radius-lg); padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-sm); border-top: 5px solid var(--ev-accent);
}
.ev-hl__icon { width: 46px; height: 46px; border-radius: var(--radius-md); display: grid; place-items: center; background: var(--cream); margin-bottom: var(--space-4); }
.ev-hl__icon svg { width: 24px; height: 24px; color: var(--ev-accent); }
.ev-hl h3 { font-size: var(--text-md); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 6px; }
.ev-hl p { color: var(--ink-soft); font-size: var(--text-sm); }

/* ---- INFO GRID ---- */
.ev-info { display: grid; gap: 1px; background: var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); grid-template-columns: 1fr 1fr; }
@media (min-width: 760px) { .ev-info { grid-template-columns: repeat(4, 1fr); } }
.ev-info__cell { background: var(--surface); padding: var(--space-5); text-align: center; }
.ev-info__cell svg { width: 22px; height: 22px; color: var(--ev-accent); margin: 0 auto var(--space-2); }
.ev-info__k { font-size: var(--text-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); }
.ev-info__v { font-weight: var(--fw-extra); color: var(--navy); margin-top: 2px; text-transform: uppercase; font-size: var(--text-sm); }

/* ---- BIG VISUAL QUOTE BAND ---- */
.ev-quote { position: relative; overflow: hidden; color: var(--cream); text-align: center; }
.ev-quote__bg { position: absolute; inset: 0; z-index: 0; }
.ev-quote__bg img { width: 100%; height: 100%; object-fit: cover; }
.ev-quote__bg::after { content: ""; position: absolute; inset: 0; background: rgba(17,22,44,.78); }
.ev-quote__inner { position: relative; z-index: 2; max-width: 880px; margin-inline: auto; padding: clamp(3.5rem,9vw,7rem) var(--gutter); }
.ev-quote p { font-family: var(--font-display); font-size: clamp(1.6rem,5vw,3rem); line-height: 1.15; }

/* ---- PRICE / CTA BLOCK ---- */
.ev-buy {
  background: var(--navy); color: var(--cream);
  border-radius: var(--radius-xl); padding: clamp(2rem,6vw,3.5rem) var(--gutter); text-align: center;
}
.ev-buy__price { font-family: var(--font-condensed); font-size: clamp(3rem,9vw,5rem); line-height: .9; color: var(--ev-accent); }
.ev-buy__price small { font-family: var(--font-sans); font-size: var(--text-md); font-weight: var(--fw-bold); color: rgba(247,234,213,.7); }
.ev-buy p { color: rgba(247,234,213,.82); margin: var(--space-4) auto 0; max-width: 46ch; }
.ev-buy .btn { margin-top: var(--space-6); }
.ev-buy__days { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; margin-top: var(--space-6); }
.ev-buy__days .btn { margin-top: 0; }
.buybar__days { display: flex; gap: var(--space-3); flex: 0 0 auto; }

/* ---- MORE EVENTS ---- */
.ev-more-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 560px) { .ev-more-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 920px) { .ev-more-grid { grid-template-columns: repeat(4, 1fr); } }
.ev-mini { position: relative; display: block; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; color: var(--cream); box-shadow: var(--shadow-sm); }
.ev-mini img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease-out); }
.ev-mini::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,22,44,.9), rgba(17,22,44,0) 65%); }
.ev-mini:hover img { transform: scale(1.06); }
.ev-mini__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: var(--space-4); }
.ev-mini__name { font-weight: var(--fw-black); text-transform: uppercase; font-size: var(--text-md); line-height: 1; }
.ev-mini__date { font-size: var(--text-xs); font-weight: var(--fw-bold); color: var(--amber); text-transform: uppercase; margin-top: 4px; }

/* ---- DATED TICKETS CAROUSEL (una tarjeta por función) ---- */
.ev-dates { position: relative; }
.ev-dates__track {
  display: flex; gap: var(--space-4);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px var(--space-2);
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.ev-dates__track::-webkit-scrollbar { display: none; }
.date-card {
  flex: 0 0 84%;
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  border-top: 5px solid var(--ev-accent);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.date-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
@media (min-width: 640px) { .date-card { flex-basis: clamp(200px, 40vw, 240px); } }
@media (min-width: 900px) { .date-card { flex-basis: calc((100% - 3 * var(--space-4)) / 4); } }
.date-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.date-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.date-card__body { padding: var(--space-4); display: flex; flex-direction: column; gap: 2px; flex: 1; }
.date-card__dow { font-size: var(--text-xs); font-weight: var(--fw-bold); letter-spacing: .12em; text-transform: uppercase; color: var(--ev-accent); }
.date-card__date { font-family: var(--font-condensed); font-size: clamp(1.5rem, 4vw, 1.9rem); line-height: .92; text-transform: uppercase; color: var(--navy); }
.date-card__place { display: flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .03em; color: var(--ink-soft); margin-top: 3px; }
.date-card__place svg { width: 13px; height: 13px; color: var(--ev-accent); flex: none; }
.date-card__cta { margin-top: var(--space-4); width: 100%; }
.ev-dates__nav { display: flex; align-items: center; justify-content: center; gap: var(--space-4); margin-top: var(--space-5); }
.ev-dates__arrow {
  width: 52px; height: 52px; border-radius: var(--radius-pill); border: none; cursor: pointer;
  background: var(--ev-accent); color: var(--ev-ink);
  display: grid; place-items: center;
  transition: filter var(--dur) var(--ease-out), transform var(--dur) var(--ease-bounce);
}
.ev-dates__arrow:hover { filter: brightness(.92); }
.ev-dates__arrow:active { transform: scale(.94); }
.ev-dates__arrow svg { width: 22px; height: 22px; }
.ev-dates__dots { display: flex; justify-content: center; gap: 8px; }
.ev-dates__dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; cursor: pointer; background: rgba(27,34,64,.2); transition: all var(--dur) var(--ease-out); }
.ev-dates__dot.is-active { width: 26px; border-radius: 5px; background: var(--ev-accent); }

/* ============================================================
   33 · CUATRO MUNDOS color tiles + full-bleed photo CTA
   ============================================================ */
.worlds { display: grid; gap: var(--space-3); grid-template-columns: 1fr 1fr; }
@media (min-width: 860px) { .worlds { grid-template-columns: repeat(4, 1fr); } }
.world {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: clamp(190px, 27vw, 270px);
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--w-bg); color: var(--w-ink);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.world:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.world--musica { --w-bg: var(--amber);  --w-ink: var(--red); }
.world--teatro { --w-bg: var(--navy);   --w-ink: var(--orange); }
.world--gastro { --w-bg: var(--red);    --w-ink: var(--amber); }
.world--ocio   { --w-bg: var(--orange); --w-ink: var(--cream); }
.world__index { position: absolute; top: -0.18em; right: .15em; font-family: var(--font-display); font-size: clamp(5rem, 12vw, 8rem); line-height: 1; opacity: .2; }
.world__word { position: relative; font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: var(--fw-black); text-transform: uppercase; line-height: .95; letter-spacing: -.01em; }
.world__sub { position: relative; font-size: var(--text-sm); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .08em; opacity: .92; margin-top: 8px; }

.cta-photo { position: relative; overflow: hidden; color: var(--cream); text-align: center; }
.cta-photo__bg { position: absolute; inset: 0; z-index: 0; }
.cta-photo__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-photo__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(17,22,44,.74), rgba(17,22,44,.86)); }
.cta-photo__inner { position: relative; z-index: 2; max-width: 820px; margin-inline: auto; padding: clamp(3.5rem, 10vw, 7rem) var(--gutter); }
.cta-photo h2 { font-size: var(--text-4xl); text-transform: uppercase; line-height: .95; }
.cta-photo p { font-size: var(--text-md); color: rgba(247,234,213,.86); margin: var(--space-4) auto 0; max-width: 46ch; }
.cta-photo__cta { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; margin-top: var(--space-7); }

/* ============================================================
   34 · CATEGORY LANDING hero (themed color band)
   ============================================================ */
.cat--musica { --c-bg: var(--amber);  --c-ink: var(--navy);  --c-word: var(--red); }
.cat--teatro { --c-bg: var(--navy);   --c-ink: var(--cream); --c-word: var(--orange); }
.cat--gastro { --c-bg: var(--red);    --c-ink: var(--cream); --c-word: var(--amber); }
.cat--ocio   { --c-bg: var(--orange); --c-ink: var(--navy);  --c-word: var(--cream); }

.cat-hero { background: var(--c-bg); color: var(--c-ink); position: relative; overflow: hidden; }
.cat-hero__inner { display: grid; gap: var(--space-7); align-items: center; padding-block: clamp(2.5rem,6vw,4.5rem); }
@media (min-width: 880px) { .cat-hero__inner { grid-template-columns: 1.1fr .9fr; } }
.cat-hero__eyebrow { font-weight: var(--fw-extra); letter-spacing: .16em; text-transform: uppercase; font-size: var(--text-sm); opacity: .85; }
.cat-hero__word { font-family: var(--font-condensed); font-size: var(--text-5xl); color: var(--c-word); text-transform: uppercase; line-height: .88; letter-spacing: .01em; margin: var(--space-3) 0 var(--space-4); }
.cat-hero__text { font-size: var(--text-md); max-width: 48ch; }
.cat-hero__meta { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); margin-top: var(--space-5); font-weight: var(--fw-bold); font-size: var(--text-sm); }
.cat-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.cat-hero__meta svg { width: 18px; height: 18px; }
.cat-hero__cta { margin-top: var(--space-6); display: flex; gap: var(--space-4); flex-wrap: wrap; }
.cat-hero__poster { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid rgba(255,255,255,.5); transform: rotate(-1.5deg); }
.cat-hero__poster img { width: 100%; height: auto; display: block; }

/* ============================================================
   35 · EVENT VIDEO (YouTube embed slot)
   ============================================================ */
.ev-video { display: block; max-width: 920px; margin-inline: auto; }
.ev-video__facade { display: block; width: 100%; padding: 0; border: 0; cursor: pointer; font: inherit; color: inherit; -webkit-appearance: none; appearance: none; }
.ev-video--portrait { max-width: 420px; }
.ev-video--portrait .ev-video__frame { aspect-ratio: 9 / 16; }
.ev-video__frame {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--navy);
}
.ev-video__frame img { width: 100%; height: 100%; object-fit: cover; }
.ev-video__frame::after { content: ""; position: absolute; inset: 0; background: rgba(17,22,44,.45); transition: background var(--dur) var(--ease-out); }
.ev-video:hover .ev-video__frame::after { background: rgba(17,22,44,.28); }
.ev-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4; }
.ev-video__play {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: clamp(64px, 10vw, 92px); aspect-ratio: 1; border-radius: 50%;
  background: var(--orange); display: grid; place-items: center; box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease-bounce);
}
.ev-video:hover .ev-video__play { transform: translate(-50%,-50%) scale(1.08); }
.ev-video__play svg { width: 40%; height: 40%; color: #fff; margin-left: 8%; }
.ev-video__tag {
  position: absolute; z-index: 2; left: 16px; bottom: 14px;
  background: rgba(17,22,44,.82); color: var(--cream);
  font-weight: var(--fw-extra); text-transform: uppercase; letter-spacing: .08em;
  font-size: var(--text-xs); padding: 7px 14px; border-radius: var(--radius-pill);
}
.ev-video-split { align-items: center; }
.ev-synopsis p { color: var(--ink-soft); font-size: var(--text-md); line-height: 1.6; margin-bottom: var(--space-4); text-wrap: pretty; }
.ev-synopsis p:last-child { margin-bottom: 0; }
.ev-synopsis em { color: var(--navy); font-style: italic; font-weight: var(--fw-bold); }
.ev-synopsis__q { font-family: var(--font-display); color: var(--ev-accent); font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1.1; margin-top: var(--space-5); margin-bottom: 0; }

/* ============================================================
   36 · EVENT PHOTO GALLERY (fill-in slots)
   ============================================================ */
.ev-gallery { display: grid; gap: var(--space-3); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 680px) { .ev-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .ev-gallery { grid-template-columns: repeat(4, 1fr); } }
.ev-gallery__item--wide { aspect-ratio: 2 / 1; }
/* Single row: scrollable on mobile, fits the row on desktop */
.ev-gallery {
  display: flex; gap: var(--space-3);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: var(--space-3);
  -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.ev-gallery__item {
  position: relative; flex: 0 0 78%;
  aspect-ratio: 2 / 3; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); scroll-snap-align: start;
}
@media (min-width: 560px) { .ev-gallery__item { flex: 0 0 calc((100% - var(--space-3)) / 2.2); } }
@media (min-width: 760px) { .ev-gallery__item { flex: 0 0 calc((100% - 2 * var(--space-3)) / 3.2); } }
@media (min-width: 980px) { .ev-gallery__item { flex: 0 0 calc((100% - 3 * var(--space-3)) / 4); } }
.ev-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease-out); }
.ev-gallery__item:hover img { transform: scale(1.05); }
a.ev-gallery__item { cursor: zoom-in; }

/* Slider: drag to scroll + prev/next arrows */
.ev-gallery { cursor: grab; }
.ev-gallery.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.ev-gallery.is-dragging .ev-gallery__item img { transform: none; }
.ev-gallery.is-dragging a.ev-gallery__item { cursor: grabbing; }
.ev-gallery-wrap { position: relative; }
.ev-gallery__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  background: var(--cream); color: var(--navy);
  box-shadow: var(--shadow-md); border: none; cursor: pointer; z-index: 4;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.ev-gallery__arrow svg { width: 26px; height: 26px; }
.ev-gallery__arrow--prev { left: -8px; }
.ev-gallery__arrow--next { right: -8px; }
.ev-gallery__arrow:hover { background: var(--orange); color: #fff; }
.ev-gallery__arrow:active { transform: translateY(-50%) scale(.94); }
.ev-gallery__arrow[disabled] { opacity: .3; pointer-events: none; }
@media (min-width: 760px) { .ev-gallery-wrap.is-scrollable .ev-gallery__arrow { display: inline-flex; } }

/* CSS-only lightbox (click a photo to view it large) */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);
  background: rgba(17,22,44,.93);
}
.lightbox:target { display: flex; }
.lightbox__backdrop { position: absolute; inset: 0; cursor: zoom-out; }
.lightbox img {
  position: relative; z-index: 2;
  max-width: min(1100px, 94vw); max-height: 88vh; width: auto; height: auto;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute; top: clamp(12px, 3vw, 22px); right: clamp(12px, 3vw, 22px); z-index: 3;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(247,234,213,.16); color: var(--cream);
  display: grid; place-items: center;
  transition: background var(--dur) var(--ease-out);
}
.lightbox__close:hover { background: var(--orange); color: #fff; }
.lightbox__close svg { width: 24px; height: 24px; }
.ev-gallery__slot {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center; padding: var(--space-4);
  background: var(--cream-50); border: 2px dashed var(--cream-line); color: var(--ink-soft);
}
.ev-gallery__slot svg { width: 30px; height: 30px; color: var(--ev-accent, var(--orange)); }
.ev-gallery__slot span { font-size: var(--text-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .06em; }

/* ============================================================
   37 · HOME REELS (vertical 9:16 YouTube slot)
   ============================================================ */
.reels { display: grid; gap: var(--space-7); align-items: center; }
@media (min-width: 820px) { .reels { grid-template-columns: 1fr 1fr; } }
.reels__copy .section-title { margin: var(--space-2) 0 var(--space-4); }
.reels__copy p { color: var(--ink-soft); font-size: var(--text-md); max-width: 42ch; }
.reels__copy .hero__cta, .reels__copy .cta-photo__cta { justify-content: flex-start; }
.reels__phone {
  position: relative; width: min(300px, 78vw); margin-inline: auto;
  aspect-ratio: 9 / 16; border-radius: 32px; overflow: hidden;
  background: var(--navy); box-shadow: var(--shadow-lg);
  border: 7px solid var(--navy-900);
}
.reels__phone img { width: 100%; height: 100%; object-fit: cover; }
.reels__phone iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4; }
/* CSS-only click-to-play: cover (thumbnail) hides + embed loads on toggle */
.reels__toggle { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.reels__cover { position: absolute; inset: 0; z-index: 5; cursor: pointer; display: block; }
.reels__cover img { width: 100%; height: 100%; object-fit: cover; }
.reels__embed { position: absolute; inset: 0; z-index: 4; display: none; }
.reels__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reels__toggle:checked ~ .reels__cover { display: none; }
.reels__toggle:checked ~ .reels__embed { display: block; }
.reels__cover:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.reels__phone::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,22,44,.55), rgba(17,22,44,.05) 45%, rgba(17,22,44,.25)); z-index: 1; }
.reels__play {
  position: absolute; z-index: 3; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 72px; aspect-ratio: 1; border-radius: 50%; background: var(--orange);
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease-bounce);
}
.reels__phone:hover .reels__play { transform: translate(-50%,-50%) scale(1.08); }
.reels__play svg { width: 38%; height: 38%; color: #fff; margin-left: 8%; }
.reels__tag {
  position: absolute; z-index: 3; left: 14px; bottom: 14px;
  background: rgba(17,22,44,.82); color: var(--cream);
  font-weight: var(--fw-extra); text-transform: uppercase; letter-spacing: .08em;
  font-size: var(--text-xs); padding: 6px 13px; border-radius: var(--radius-pill);
}

/* ============================================================
   38 · COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: var(--navy-900);
  color: var(--cream);
  border-top: 3px solid var(--orange);
  box-shadow: 0 -10px 30px rgba(17,22,44,.3);
  transform: translateY(110%);
  transition: transform var(--dur) var(--ease-out);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: var(--space-5) var(--gutter);
  padding-bottom: max(var(--space-5), env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}
.cookie-banner__text strong {
  display: block;
  font-weight: var(--fw-extra);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: var(--text-sm);
  margin-bottom: 6px;
}
.cookie-banner__text p { font-size: var(--text-sm); color: rgba(247,234,213,.82); max-width: 70ch; }
.cookie-banner__link { color: var(--amber); text-decoration: underline; }
.cookie-banner__link:hover { color: var(--orange); }
.cookie-banner__actions {
  display: flex; gap: var(--space-3); flex-wrap: wrap; width: 100%;
}
.cookie-banner__btn { flex: 1 1 auto; font-size: var(--text-xs); }
.cookie-banner .btn--outline { border-color: rgba(247,234,213,.5); color: var(--cream); }
.cookie-banner .btn--outline:hover { background: var(--cream); color: var(--navy); }
@media (min-width: 720px) {
  .cookie-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-banner__actions { width: auto; flex-wrap: nowrap; }
  .cookie-banner__btn { flex: 0 0 auto; }
}

/* ============================================================
   39 · LEGAL / DOC PAGES
   ============================================================ */
.legal { max-width: 860px; margin-inline: auto; }
.legal h2 { font-size: var(--text-xl); text-transform: uppercase; letter-spacing: .02em; color: var(--navy); margin: var(--space-7) 0 var(--space-3); }
.legal h3 { font-size: var(--text-md); text-transform: uppercase; color: var(--navy); margin: var(--space-5) 0 var(--space-2); }
.legal p, .legal li { font-size: var(--text-base); color: var(--ink-soft); line-height: 1.65; }
.legal p { margin-bottom: var(--space-4); }
.legal ul, .legal ol { margin: 0 0 var(--space-4) 1.2em; display: grid; gap: var(--space-2); }
.legal a { color: var(--orange); text-decoration: underline; }
.legal a:hover { color: var(--orange-600); }
.legal strong { color: var(--navy); }
.legal__updated { font-size: var(--text-sm); color: var(--navy-500); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .06em; }
.legal .table-wrap { margin: var(--space-4) 0 var(--space-5); }
.legal table { width: 100%; border-collapse: collapse; background: var(--surface); min-width: 480px; }
.legal table th, .legal table td { padding: var(--space-3) var(--space-4); text-align: left; border-bottom: 1px solid var(--line); font-size: var(--text-sm); vertical-align: top; }
.legal table thead th { background: var(--navy); color: var(--cream); text-transform: uppercase; letter-spacing: .04em; }
.legal table tbody tr:nth-child(even) { background: var(--cream-50); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
