/* ============================================================
   THE KING OF BOLLYWOOD — design system
   Cinema vernacular: stage black, tungsten marigold, sindoor red.
   Display: Anton (film-poster condensed) · Body: Hanken Grotesk
   Data/times: Spline Sans Mono · Devanagari accent: Tiro Devanagari Hindi
   ============================================================ */

:root {
  --ink:      #191114;   /* warm stage black */
  --ink-2:    #241a1a;   /* raised panel */
  --ink-3:    #2f2220;   /* borders on dark */
  --cream:    #f6ecdc;   /* house lights */
  --cream-2:  #cdbca4;   /* dim cream, secondary text */
  --marigold: #f2a93b;   /* tungsten accent */
  --gold:     #d9a441;   /* deep gold, rules + chips */
  --sindoor:  #c8432f;   /* cinema red, sparing */
  --ok:       #7fb069;   /* open-seat green, muted sage */
  --line:     rgba(217, 164, 65, .25);
  --shadow:   0 18px 50px rgba(0, 0, 0, .45);
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Hanken Grotesk', 'Helvetica Neue', sans-serif;
  --font-mono: 'Spline Sans Mono', 'Courier New', monospace;
  --font-dev: 'Tiro Devanagari Hindi', serif;
  --wrap: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--marigold); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--marigold); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- marquee: the signature. A cinema strip with chasing bulbs. */
.marquee {
  display: block;
  background: #100a0c;
  border-bottom: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  padding: 9px 0 11px;
  text-decoration: none;
}
.marquee:hover { text-decoration: none; }
.marquee::before, .marquee::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 3px;
  background-image: radial-gradient(circle at 4px 1.5px, var(--marigold) 1.4px, rgba(242,169,59,.12) 1.9px, transparent 2.4px);
  background-size: 16px 3px;
  animation: bulbs 1.2s steps(2) infinite;
}
.marquee::before { top: 1px; }
.marquee::after  { bottom: 1px; }
.marquee-track {
  display: flex; width: max-content;
  animation: marquee-scroll 26s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--marigold); white-space: nowrap; padding-right: 3.5em;
}
.marquee-track b { color: var(--cream); font-weight: 600; }
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
@keyframes bulbs { 50% { background-position: 8px 0; } }

/* ---------- nav */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(25, 17, 20, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a {
  color: var(--cream); font-size: 15px; font-weight: 500;
  letter-spacing: .02em;
}
.nav-links a:hover { color: var(--marigold); text-decoration: none; }
.nav-links a[aria-current="page"] {
  color: var(--marigold);
  border-bottom: 2px solid var(--sindoor);
  padding-bottom: 3px;
}
.nav-links .nav-shop {
  color: var(--marigold); font-weight: 700;
}
.nav-links .nav-shop::after { content: " ↗"; font-size: 12px; }
.btn-enroll {
  background: var(--marigold); color: #1b1208 !important;
  font-weight: 700; font-size: 15px;
  padding: 10px 22px; border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-enroll:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(242,169,59,.35); }
.nav-burger {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 10px; cursor: pointer; color: var(--cream);
  font-size: 18px; line-height: 1;
}

/* ---------- buttons */
.btn {
  display: inline-block; background: var(--marigold); color: #1b1208;
  font-weight: 700; font-size: 16px; letter-spacing: .01em;
  padding: 14px 30px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,169,59,.35); color: #1b1208; }
.btn-ghost {
  display: inline-block; color: var(--cream); font-weight: 600; font-size: 16px;
  padding: 13px 28px; border-radius: 999px; border: 1.5px solid var(--cream-2);
  transition: border-color .15s ease, color .15s ease;
}
.btn-ghost:hover { text-decoration: none; border-color: var(--marigold); color: var(--marigold); }

/* ---------- hero */
.hero {
  position: relative; overflow: hidden;
  min-height: 82vh;
  display: flex; flex-direction: column; justify-content: center;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: grayscale(.55) sepia(.35) contrast(1.08) brightness(.6);
}
.hero-tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 8%, rgba(242,169,59,.20), transparent 60%),
    linear-gradient(180deg, rgba(25,17,20,.55) 0%, rgba(25,17,20,.75) 55%, var(--ink) 98%);
}
.hero-dev {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-dev); color: var(--marigold); opacity: .07;
  font-size: clamp(180px, 34vw, 460px); line-height: 1; pointer-events: none;
  user-select: none;
}
.hero-inner { position: relative; text-align: center; padding: 96px 24px 72px; }
.eyebrow {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--marigold);
}
.hero h1, .hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9.5vw, 128px);
  line-height: .98; letter-spacing: .015em; text-transform: uppercase;
  margin: 18px 0 10px;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
  color: var(--cream);
}
.hero h1 .accent, .hero .hero-title .accent { color: var(--marigold); }
/* the page's real h1 lives OUTSIDE the rotating slides (a hidden slide goes
   aria-hidden + inert, which would remove the only h1 from the a11y tree) */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.hero-sub { font-size: clamp(17px, 2.2vw, 21px); color: var(--cream-2); max-width: 640px; margin: 0 auto 34px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* billing block — stats set like a film-poster credit strip */
.billing {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 22px 24px 26px;
  display: flex; justify-content: center; gap: clamp(20px, 5vw, 64px); flex-wrap: wrap;
  background: rgba(16, 10, 12, .55);
}
.billing div { text-align: center; }
.billing .n {
  font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 40px);
  color: var(--marigold); letter-spacing: .03em;
}
.billing .l {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--cream-2);
}

/* ---------- sections */
.section { padding: 88px 0; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 46px); line-height: 1.05; letter-spacing: .02em;
  margin: 10px 0 14px;
}
.section h2 .accent { color: var(--marigold); }
.section-head p { color: var(--cream-2); font-size: 17.5px; }
.section.alt { background: var(--ink-2); border-block: 1px solid var(--line); }

/* ---------- about split */
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: 6px; box-shadow: var(--shadow); }
.split-media::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold); border-radius: 6px; z-index: -1;
}
.split-body p { color: var(--cream-2); margin-bottom: 16px; }
.split-body p strong { color: var(--cream); }

/* ---------- showtimes board (schedule) */
.board { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.board-card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden;
}
.section.alt .board-card { background: var(--ink); }
.board-card header {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 18px; border-bottom: 1px dashed var(--line);
}
.board-card header .day {
  font-family: var(--font-display); text-transform: uppercase; font-size: 20px;
  letter-spacing: .05em; color: var(--cream);
}
.board-card header .loc {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--marigold);
}
.slot {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 18px; border-bottom: 1px solid rgba(217,164,65,.10);
  font-size: 14.5px;
}
.slot:last-child { border-bottom: none; }
/* availability chips removed 2026-08-25 (owner: parents read them as a guaranteed
   seat) — the freed width lets descriptions sit on one line so rows stay even. */
.slot .t { font-family: var(--font-mono); font-size: 12.5px; color: var(--cream); white-space: nowrap; min-width: 132px; }
.slot .d { color: var(--cream-2); flex: 1; }
.chip {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 999px; white-space: nowrap;
}
.chip.open { color: var(--ok); border: 1px solid var(--ok); }
.chip.full { color: var(--cream-2); border: 1px solid var(--ink-3); opacity: .75; }
.chip.request { color: var(--gold); border: 1px dashed var(--gold); }

/* ---------- carousel (the old external store rotating banners) */
.carousel {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 12px;
  background: #0f0a0b;
}
.car-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .7s ease; pointer-events: none;
  display: block;
}
.car-slide.is-on { position: relative; opacity: 1; pointer-events: auto; }
.car-slide img { width: 100%; height: auto; display: block; }
.car-dots {
  position: absolute; bottom: 12px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; z-index: 2;
}
.car-dot {
  width: 22px; height: 4px; border-radius: 999px; border: none; cursor: pointer;
  background: rgba(246, 236, 220, .45); padding: 0;
  transition: background .2s ease;
}
.car-dot[aria-current="true"] { background: var(--marigold); }
.car-dot:hover { background: var(--cream); }
.carousel-wrap { margin: 34px auto 0; }
@media (prefers-reduced-motion: reduce) {
  .car-slide { transition: none; }
}

/* ---------- shop */
.shop-note {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--cream-2);
  border: 1px dashed var(--line); border-radius: 8px; padding: 12px 16px;
  max-width: 760px; margin: 0 auto 40px; text-align: center; line-height: 1.7;
}
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.product {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.section.alt .product { background: var(--ink); }
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product .ph { aspect-ratio: 1; overflow: hidden; background: #0f0a0b; }
.product .ph img { width: 100%; height: 100%; object-fit: cover; }
.product .pb { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product .pn { font-weight: 700; font-size: 16px; color: var(--cream); }
.product .pr { display: flex; align-items: baseline; gap: 10px; }
.product .inr { font-family: var(--font-mono); font-size: 19px; color: var(--marigold); font-weight: 600; }
.product .mrp { font-family: var(--font-mono); font-size: 13px; color: var(--cream-2); text-decoration: line-through; }
.product .usd { font-family: var(--font-mono); font-size: 12px; color: var(--cream-2); }
.product .buy {
  margin-top: auto; padding-top: 12px;
  font-weight: 700; font-size: 14px; color: var(--marigold);
}
.product .buy::after { content: " ↗"; font-size: 12px; }

/* ---------- cart (drawer + nav badge + demo checkout) */
.nav-cart {
  position: relative; background: none; border: 1px solid var(--line);
  border-radius: 999px; color: var(--cream); cursor: pointer;
  padding: 8px 14px; font-size: 16px; line-height: 1;
  order: 2; /* after the links on desktop; before the burger on mobile */
}
.nav-burger { order: 3; }
.nav-cart:hover { border-color: var(--marigold); color: var(--marigold); }
.cart-count {
  position: absolute; top: -7px; right: -7px;
  background: var(--sindoor); color: var(--cream);
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.cart-scrim {
  position: fixed; inset: 0; background: rgba(12, 8, 9, .6); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.cart-scrim.on { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 95;
  width: min(420px, 92vw);
  background: var(--ink-2); border-left: 1px solid var(--gold);
  transform: translateX(102%); transition: transform .28s ease;
  display: flex; flex-direction: column;
}
.cart-drawer.on { transform: none; }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; border-bottom: 1px dashed var(--line);
}
.cart-head h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 22px; letter-spacing: .04em; }
.cart-close {
  background: none; border: 1px solid var(--cream-2); color: var(--cream);
  border-radius: 999px; padding: 6px 14px; cursor: pointer;
  font-family: var(--font-mono); font-size: 12px;
}
.cart-close:hover { border-color: var(--marigold); color: var(--marigold); }
.cart-body { flex: 1; overflow-y: auto; padding: 10px 22px; }
.cart-empty { text-align: center; color: var(--cream-2); padding: 48px 0; line-height: 2; }
.cart-line {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid rgba(217,164,65,.12);
}
.cart-line img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; }
.cl-mid { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.cl-name { font-weight: 600; font-size: 14.5px; }
.cl-size { font-family: var(--font-mono); font-size: 12px; color: var(--cream-2); }
.cl-qty { display: flex; align-items: center; gap: 10px; margin-top: 4px; font-family: var(--font-mono); font-size: 13px; }
.qty-btn {
  width: 24px; height: 24px; border-radius: 6px; cursor: pointer;
  background: var(--ink); border: 1px solid var(--ink-3); color: var(--cream);
  font-size: 14px; line-height: 1;
}
.qty-btn:hover { border-color: var(--marigold); color: var(--marigold); }
.cl-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; font-family: var(--font-mono); font-size: 14px; }
.cl-remove {
  background: none; border: none; cursor: pointer; padding: 0;
  color: var(--cream-2); font-family: var(--font-mono); font-size: 11px;
  text-decoration: underline; text-underline-offset: 3px;
}
.cl-remove:hover { color: #e06a52; }
.cart-foot { padding: 18px 22px 22px; border-top: 1px solid var(--line); }
.cart-subtotal {
  display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 14px;
}
.cart-subtotal b { font-family: var(--font-mono); font-size: 18px; color: var(--marigold); }
.cart-foot .btn { width: 100%; text-align: center; }
.cart-demo-note {
  font-family: var(--font-mono); font-size: 11px; color: var(--cream-2);
  text-align: center; margin-top: 10px; line-height: 1.6;
}
/* product card actions */
.product .pa { display: flex; gap: 8px; margin-top: 12px; align-items: stretch; }
.size-select {
  background: var(--ink); border: 1px solid var(--ink-3); color: var(--cream);
  border-radius: 8px; font-family: var(--font-mono); font-size: 13px; padding: 0 8px;
}
.size-select:focus { outline: none; border-color: var(--marigold); }
.btn-add {
  flex: 1; background: var(--marigold); color: #1b1208; border: none; cursor: pointer;
  font-weight: 700; font-size: 14px; padding: 11px 0; border-radius: 999px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-add:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(242,169,59,.3); }
.product .store-link { font-family: var(--font-mono); font-size: 11.5px; color: var(--cream-2); margin-top: 9px; display: inline-block; }
.product .store-link:hover { color: var(--marigold); }
/* demo checkout page */
.checkout-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: start; }
.demo-chip {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); border: 1px dashed var(--gold);
  border-radius: 999px; padding: 4px 14px; margin-bottom: 14px;
}
.order-line { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(217,164,65,.12); font-size: 14.5px; }
.order-line .m { font-family: var(--font-mono); }
.order-total { display: flex; justify-content: space-between; padding: 14px 0 0; font-weight: 700; }
.order-total .m { font-family: var(--font-mono); font-size: 19px; color: var(--marigold); }
.pay-success { text-align: center; padding: 40px 20px; }
.pay-success .tick {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  border: 2px solid var(--ok); color: var(--ok); font-size: 30px;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 860px) { .checkout-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .cart-drawer, .cart-scrim { transition: none; }
}

/* ---------- video wall */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.vid {
  position: relative; border-radius: 10px; overflow: hidden; cursor: pointer;
  border: 1px solid var(--line); background: #000; aspect-ratio: 16/9; padding: 0;
}
.vid img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .2s ease, transform .3s ease; }
.vid:hover img { opacity: 1; transform: scale(1.03); }
.vid .play, .headliner .play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.vid .play span, .headliner .play span {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(25,17,20,.75); border: 1.5px solid var(--marigold);
  display: flex; align-items: center; justify-content: center;
  color: var(--marigold); font-size: 20px; padding-left: 4px;
  transition: transform .15s ease, background .15s ease;
}
.vid:hover .play span { transform: scale(1.1); background: rgba(200,67,47,.85); color: var(--cream); border-color: var(--sindoor); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  background: rgba(12, 8, 9, .93); align-items: center; justify-content: center; padding: 24px;
}
.lightbox.on { display: flex; }
.lightbox-inner { width: min(960px, 100%); }
.lightbox-frame { aspect-ratio: 16/9; background: #000; border: 1px solid var(--gold); border-radius: 8px; overflow: hidden; }
.lightbox-frame iframe { width: 100%; height: 100%; border: 0; }
.lightbox-bar { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.lightbox-bar a { font-family: var(--font-mono); font-size: 13px; }
.lightbox-close {
  background: none; border: 1px solid var(--cream-2); color: var(--cream);
  border-radius: 999px; padding: 8px 18px; cursor: pointer; font-family: var(--font-mono); font-size: 13px;
}
.lightbox-close:hover { border-color: var(--marigold); color: var(--marigold); }

/* ---------- CTA band */
.cta-band {
  text-align: center; padding: 96px 24px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 110%, rgba(200,67,47,.28), transparent 65%),
    radial-gradient(ellipse 55% 60% at 50% -20%, rgba(242,169,59,.14), transparent 60%),
    var(--ink-2);
  border-top: 1px solid var(--line);
}
.cta-band h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(34px, 5.5vw, 58px); letter-spacing: .02em; margin: 10px 0 12px;
}
.cta-band p { color: var(--cream-2); max-width: 560px; margin: 0 auto 30px; }

/* ---------- footer */
.footer { border-top: 1px solid var(--line); background: #120c0e; padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px;
  padding-bottom: 48px;
}
.footer h4 {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--marigold); margin-bottom: 16px;
}
.footer p, .footer li { color: var(--cream-2); font-size: 15px; line-height: 1.8; }
.footer ul { list-style: none; }
.footer a { color: var(--cream-2); }
.footer a:hover { color: var(--marigold); }
.footer-bottom {
  border-top: 1px solid rgba(217,164,65,.12); padding: 18px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: var(--cream-2);
}
.footer-bottom .demo-tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; opacity: .8; }

/* ---------- page hero (inner pages) */
.page-hero {
  padding: 76px 24px 56px; text-align: center;
  background:
    radial-gradient(ellipse 65% 90% at 50% -30%, rgba(242,169,59,.16), transparent 60%), var(--ink);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(40px, 7vw, 76px); letter-spacing: .02em; margin: 14px 0 10px; line-height: 1;
}
.page-hero h1 .accent { color: var(--marigold); }
.page-hero p { color: var(--cream-2); max-width: 620px; margin: 0 auto; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; align-items: start; }
.info-card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px; padding: 28px;
}
.info-card + .info-card { margin-top: 20px; }
.info-card h3 {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--marigold); margin-bottom: 10px;
}
.info-card p { color: var(--cream-2); font-size: 15.5px; }
.info-card .big { font-size: 19px; color: var(--cream); font-weight: 600; }
.copy-btn {
  background: none; border: 1px solid var(--line); color: var(--marigold);
  font-family: var(--font-mono); font-size: 12px; border-radius: 999px;
  padding: 5px 14px; cursor: pointer; margin-left: 8px;
}
.copy-btn:hover { border-color: var(--marigold); }
.form-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px; padding: 32px; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--cream-2); margin-bottom: 8px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--ink-3);
  border-radius: 8px; color: var(--cream); font-family: var(--font-body);
  font-size: 16px; padding: 12px 14px;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--marigold);
}
.form-note { font-size: 13px; color: var(--cream-2); margin-top: 14px; line-height: 1.6; }

/* ---------- utility */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.strip-link { font-family: var(--font-mono); font-size: 13.5px; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- responsive */
@media (max-width: 860px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .split-media { max-width: 420px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(20, 13, 16, .98); border-bottom: 1px solid var(--line);
    padding: 10px 24px 18px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; font-size: 17px; }
  .nav-links .btn-enroll { margin-top: 10px; display: inline-block; padding: 12px 26px; }
  .nav-burger { display: block; }
  .section { padding: 64px 0; }
  .hero { min-height: 70vh; }
  .billing { gap: 18px 28px; }
  .slot .t { min-width: 128px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee::before, .marquee::after { animation: none; }
  html { scroll-behavior: auto; }
  .product:hover, .btn:hover, .btn-enroll:hover { transform: none; }
}

/* ============================================================
   NOW SHOWING — hero carousel, video reel, gallery headliners
   (2026-08: hero becomes a 3-slide marquee; the "billing card"
   lower-third is the shared signature across home + gallery.)
   ============================================================ */

/* hero becomes a stage with stacked, crossfading slides */
.hero-stage { position: relative; flex: 1; min-height: clamp(540px, 76vh, 860px); }
/* every slide layout reserves room for the dot strip at EVERY width — the pill
   grew with 6 slides and short windows center content right into it otherwise */
.hero-stage .hero-inner { padding-bottom: 130px; }
.hero-stage .car-slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity .7s ease;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-stage .car-slide.is-on { opacity: 1; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .hero-stage .car-slide { transition: none; } }

/* video slides: split layout — the photo shown WHOLE in a gold offset frame
   (same treatment as the .split sections), billing text beside it. Replaced
   the full-bleed still + overlay card 2026-08-23: on mobile the card buried
   the image entirely (owner report). */
.ns-slide {
  background:
    radial-gradient(ellipse 55% 45% at 72% 12%, rgba(242,169,59,.12), transparent 62%),
    var(--ink);
}
.ns-split {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 5vw, 56px); align-items: center;
  width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding: 36px 24px 128px; /* bottom clears the perforation strip */
}
.ns-media { position: relative; max-width: 460px; justify-self: center; width: 100%; }
.ns-media img { display: block; width: 100%; max-height: 52vh; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow); }
.ns-media::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--gold); border-radius: 6px; z-index: -1;
}
.ns-body h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(28px, 4vw, 50px); line-height: 1.02; letter-spacing: .015em;
  margin: 10px 0 10px; color: var(--cream);
}
.ns-body h2 .accent { color: var(--marigold); }
@media (max-width: 900px) {
  .ns-split { grid-template-columns: 1fr; gap: 20px; padding: 22px 20px 120px; }
  .ns-media { max-width: min(340px, 78vw); }
  .ns-media img { max-height: 34vh; }
  .ns-media::after { inset: 10px -10px -10px 10px; }
  .ns-body { text-align: center; }
  .ns-body .ns-ctas { justify-content: center; }
  .ns-sub { margin-left: auto; margin-right: auto; }
}

/* the billing card — film-poster lower third */
.now-showing {
  position: relative; align-self: flex-start;
  margin: auto 24px 92px clamp(20px, 6vw, 90px);
  max-width: 620px; padding: 20px 26px 24px;
  background: rgba(20, 13, 10, .74);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-left: 4px solid var(--marigold);
  border-radius: 0 14px 14px 0;
}
.now-showing h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 56px); line-height: 1.02; letter-spacing: .015em;
  margin: 10px 0 10px; text-shadow: 0 3px 26px rgba(0,0,0,.55);
}
.now-showing h2 .accent { color: var(--marigold); }
.ns-sub { color: var(--cream-2); max-width: 520px; margin: 0 0 20px; font-size: clamp(15px, 1.8vw, 17.5px); }
.ns-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.ns-ctas .btn { border: 0; cursor: pointer; font: inherit; font-weight: 700; }

/* arrows */
.car-prev, .car-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(16,10,12,.45); color: var(--cream);
  border: 1.5px solid rgba(244,239,230,.45);
  font-size: 24px; line-height: 1; cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.car-prev { left: 18px; } .car-next { right: 18px; }
.car-prev:hover, .car-next:hover { border-color: var(--marigold); color: var(--marigold); background: rgba(16,10,12,.7); }
@media (max-width: 760px) { .car-prev, .car-next { display: none; } }

/* dots as film perforations — .hero-stage-scoped: the legacy store-carousel
   .car-dots rules (left:0; right:0; pill dots) still exist above for the kept
   shop pages and would otherwise stretch/paint these */
.hero-stage .car-dots {
  position: absolute; left: 50%; right: auto; bottom: 22px; transform: translateX(-50%); z-index: 3;
  display: flex; gap: 10px; padding: 9px 14px;
  background: rgba(16,10,12,.55); border-radius: 999px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.hero-stage .car-dot {
  width: 22px; height: 13px; border-radius: 4px; padding: 0; cursor: pointer;
  background: transparent; border: 1.5px solid rgba(242,169,59,.55);
  transition: background .2s, border-color .2s;
}
.hero-stage .car-play {
  width: 26px; height: 26px; margin: -4px 2px -4px -4px; padding: 0;
  border-radius: 50%; cursor: pointer; font-size: 12px; line-height: 1;
  background: transparent; color: var(--marigold);
  border: 1.5px solid rgba(242,169,59,.55);
  transition: border-color .2s, color .2s;
}
.hero-stage .car-play:hover { border-color: var(--marigold); color: var(--cream); }
.hero-stage .car-play:focus-visible { outline: 2px solid var(--cream); outline-offset: 2px; }
.hero-stage .car-dot:hover { background: transparent; border-color: var(--marigold); }
.hero-stage .car-dot[aria-current="true"] { background: var(--marigold); border-color: var(--marigold); }
.hero-stage .car-dot:focus-visible { outline: 2px solid var(--cream); outline-offset: 2px; }

/* ---------- horizontal video reel (home "Our videos") */
.reel-wrap { position: relative; }
.reel {
  display: flex; gap: 20px; overflow-x: auto; padding: 4px 4px 16px;
  scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.reel::-webkit-scrollbar { display: none; }
.reel .vid { flex: 0 0 min(430px, 80vw); aspect-ratio: 16 / 9; scroll-snap-align: start; }
/* Shorts variant: portrait cards, phone-screen proportions */
.reel.shorts .vid { flex: 0 0 clamp(168px, 21vw, 224px); aspect-ratio: 9 / 16; }
.reel.shorts .vid-caption { padding: 22px 12px 10px; }
.reel.shorts .vid-caption .vc-title { font-size: 13.5px; }
.reel-nav { position: absolute; right: 0; top: -58px; display: flex; gap: 10px; }
.reel-prev, .reel-next {
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  background: transparent; color: var(--cream); border: 1.5px solid var(--cream-2);
  font-size: 20px; line-height: 1; transition: border-color .15s, color .15s;
}
.reel-prev:hover, .reel-next:hover { border-color: var(--marigold); color: var(--marigold); }
@media (max-width: 760px) { .reel-nav { display: none; } } /* thumbs: it's a swipe surface */

/* caption bar on featured cards (reel + gallery grid) */
.vid { text-align: left; }
.vid-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 26px 14px 11px; pointer-events: none;
  background: linear-gradient(0deg, rgba(16,10,12,.92) 0%, rgba(16,10,12,.55) 60%, transparent 100%);
  display: flex; flex-direction: column; gap: 2px;
}
.vid-caption .vc-top {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--marigold);
}
.vid-caption .vc-title { font-weight: 600; font-size: 15px; color: var(--cream); }

/* portrait (Shorts) mode for the shared lightbox */
.lightbox-inner.portrait { width: min(400px, 92vw); }
.lightbox-inner.portrait .lightbox-frame { aspect-ratio: 9 / 16; max-height: 82vh; margin: 0 auto; }

/* ---------- gallery headline acts */
.headliners { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
/* odd count: the orphan card centers on its own row instead of hugging the left */
.headliner:last-child:nth-child(odd) { grid-column: 1 / -1; justify-self: center; width: 100%; max-width: 620px; }
@media (max-width: 880px) { .headliners { grid-template-columns: 1fr; } .headliner:last-child:nth-child(odd) { max-width: none; } }
.headliner {
  position: relative; aspect-ratio: 16 / 9; padding: 0; cursor: pointer;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #000;
}
.headliner img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.headliner:hover img { transform: scale(1.03); }
.headliner .hl-bill {
  position: absolute; left: 0; right: 0; bottom: 0; text-align: left;
  padding: 42px 18px 16px;
  background: linear-gradient(0deg, rgba(16,10,12,.94) 0%, rgba(16,10,12,.45) 65%, transparent 100%);
  display: flex; flex-direction: column; gap: 3px; pointer-events: none;
}
.headliner .hl-bill .vc-top {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--marigold);
}
.headliner .hl-bill .hl-title {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(21px, 2.6vw, 30px); line-height: 1.05; color: var(--cream);
}
.headliner .play { z-index: 1; }
.headliner:hover .play span { transform: scale(1.1); background: rgba(200,67,47,.85); color: var(--cream); border-color: var(--sindoor); }
.headliner:focus-visible { outline: 2px solid var(--marigold); outline-offset: 3px; }

/* mobile: BOTH slide layouts must clear the perforation strip (audit: on
   short viewports slide 1's CTAs sat under the dots and weren't tappable) */
@media (max-width: 760px) {
  .hero-stage { min-height: clamp(480px, 72vh, 720px); }
  .hero-stage .hero-inner { padding: 48px 24px 130px; }
  .hero-stage .hero-sub { margin-bottom: 24px; }
  .hero-stage .car-dots { bottom: 12px; padding: 7px 12px; }
  .now-showing {
    margin: auto 18px 86px; padding: 18px 18px 20px;
    border-radius: 0 12px 12px 0;
  }
}

/* ============================================================
   THE GREEN ROOM — wall of printed photos + a strip of film
   frames (about page). Prints get a cream mat, a warm grade and
   grain: WhatsApp-quality shots read as loved old prints, not
   low-res files. Film frames live small inside a sprocket strip.
   ============================================================ */
.greenroom { background: #140d0f; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gr-wall { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(22px, 4vw, 44px); }
.gr-print {
  margin: 0; background: var(--cream); padding: 10px 10px 34px;
  border-radius: 2px; box-shadow: 0 14px 34px rgba(0,0,0,.5);
  transform: rotate(-2deg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gr-print:nth-child(2) { transform: rotate(1.4deg) translateY(10px); }
.gr-print:nth-child(3) { transform: rotate(-1deg) translateY(-6px); }
.gr-print:hover { transform: rotate(0) scale(1.025); box-shadow: 0 20px 44px rgba(0,0,0,.6); z-index: 2; }
@media (prefers-reduced-motion: reduce) { .gr-print, .gr-print:hover { transition: none; transform: none; } }
.gr-shot { display: block; padding: 0; border: 0; background: none; cursor: zoom-in; position: relative; }
.gr-shot img {
  display: block; width: min(280px, 74vw); height: min(340px, 90vw); object-fit: cover;
  filter: sepia(.16) contrast(1.05) saturate(.94);
}
/* film grain over every shot — hides compression, sells "print" */
.gr-shot::after, .fs-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}
.gr-print figcaption {
  margin-top: 12px; text-align: center;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; color: #3a2c22;
}
/* the filmstrip band */
.filmstrip-band { margin-top: clamp(40px, 6vw, 64px); }
.fs-label {
  text-align: center; margin-bottom: 18px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--cream-2);
}
.filmstrip {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  background: #0d0809; border-radius: 10px; padding: 26px 18px;
  position: relative; overflow: hidden;
}
.filmstrip::before, .filmstrip::after {
  content: ""; position: absolute; left: 0; right: 0; height: 10px;
  background-image: repeating-linear-gradient(90deg, transparent 0 9px, rgba(246,236,220,.22) 9px 23px, transparent 23px 32px);
}
.filmstrip::before { top: 7px; } .filmstrip::after { bottom: 7px; }
.fs-frame {
  padding: 0; border: 1px solid rgba(246,236,220,.16); border-radius: 3px;
  background: #000; cursor: zoom-in; position: relative; overflow: hidden;
}
.fs-frame img {
  display: block; height: 150px; width: auto; max-width: 78vw;
  filter: sepia(.22) contrast(1.06) saturate(.9) brightness(.96); opacity: .92;
  transition: opacity .2s, filter .2s;
}
.fs-frame:hover img { opacity: 1; filter: sepia(.08) contrast(1.05); }
.gr-shot:focus-visible, .fs-frame:focus-visible { outline: 2px solid var(--marigold); outline-offset: 3px; }
/* ---------- trial band + real Google-review quotes (homepage conversion block) */
.trial-band {
  background:
    radial-gradient(ellipse 60% 55% at 50% 0%, rgba(242,169,59,.10), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--line);
}
.trial-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.trial-meta {
  text-align: center; margin-top: 18px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--cream-2);
}
.quote-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; margin-top: 40px;
}
.quote-card {
  margin: 0; padding: 22px 22px 18px;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 12px;
  display: flex; flex-direction: column; gap: 10px;
}
.quote-card .q-stars { color: var(--marigold); letter-spacing: .2em; font-size: 14px; margin: 0; }
.quote-card p { color: var(--cream-2); font-size: 15px; line-height: 1.6; }
.quote-card footer {
  margin-top: auto; font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
}

/* larger walls (green-room page): more rotation variety, denser packing */
.gr-wall-lg { row-gap: clamp(30px, 4vw, 48px); }
.gr-wall-lg .gr-print:nth-child(4n) { transform: rotate(1.8deg) translateY(6px); }
.gr-wall-lg .gr-print:nth-child(4n+1) { transform: rotate(-1.6deg); }
.gr-wall-lg .gr-print:nth-child(4n+2) { transform: rotate(1.2deg) translateY(12px); }
.gr-wall-lg .gr-print:nth-child(4n+3) { transform: rotate(-2.2deg) translateY(-4px); }
.gr-wall-lg .gr-print:hover { transform: rotate(0) scale(1.03); }

/* homepage shelf: a slim single row of small prints above the hero */
.gr-shelf { background: #140d0f; border-bottom: 1px solid var(--line); padding: 20px 0 22px; }
.gr-shelf-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.gr-more { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.gr-shelf-row {
  /* ONE camera-roll strip (owner call 2026-08-31): a single swipeable row of
     prints instead of a two-row grid — reads like flipping through a photo
     roll and keeps the homepage's top section short. */
  display: flex; gap: 18px; padding: 8px 2px 12px;
  overflow-x: auto; scroll-snap-type: x proximity;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.gr-shelf-row::-webkit-scrollbar { display: none; }
.gr-print.sm { flex: 0 0 auto; padding: 7px 7px 26px; scroll-snap-align: start; }
.gr-print.sm .gr-shot img { width: 152px; height: 176px; }
.gr-print.sm figcaption { margin-top: 8px; font-size: 10px; letter-spacing: .09em; }
.gr-print.sm:nth-child(2n) { transform: rotate(1.4deg); }
.gr-print.sm:nth-child(3n) { transform: rotate(-1.2deg) translateY(3px); }
.gr-print.sm:nth-child(5n+1) { transform: rotate(-1.8deg); }
@media (max-width: 900px) {
  .gr-shelf { padding: 14px 0 12px; }
  .gr-print.sm .gr-shot img { width: 128px; height: 150px; }
}

/* lightbox photo mode */
.lightbox-inner.photo { width: min(860px, 94vw); }
.lightbox-inner.photo .lightbox-frame { aspect-ratio: auto; display: flex; justify-content: center; }
.lightbox-inner.photo .lightbox-frame img { max-height: 80vh; max-width: 100%; width: auto; display: block; }
.page-hero .hero-trial { margin-top: 14px; font-size: 15.5px; }
.page-hero .hero-trial a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   EVENTS — workshops & limited-time offers (/events + homepage band)
   Time-critical items are shown as a GRID, never a rotating carousel:
   three dated events must all be visible at once.
   ============================================================ */
.ev-head { max-width: 760px; margin-bottom: 30px; }
.ev-head h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(30px, 4.4vw, 52px); line-height: 1.03; margin: 10px 0 12px; }
.ev-head h2 .accent { color: var(--marigold); }
.ev-lede { color: var(--cream-2); font-size: 17px; }
.ev-note { margin-top: 14px; text-align: center; font-size: 14px; color: var(--cream-2); }

.ev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.ev-grid.two { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.ev-card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 20px 22px 22px;
}
.ev-card.quiet { opacity: .82; }
.ev-kicker { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--marigold); }
.ev-time { margin-top: 8px; font-size: 16px; color: var(--cream); }
.ev-price { margin-top: 6px; font-family: var(--font-display); font-size: 34px; color: var(--cream); letter-spacing: .02em; }
.ev-card.venue .ev-venue { margin-top: 8px; font-family: var(--font-display); text-transform: uppercase; font-size: 22px; letter-spacing: .02em; }
.ev-card.venue .ev-addr { color: var(--cream-2); font-size: 14px; margin-bottom: 12px; }
.ev-card.venue .slot { padding: 8px 0; }
.ev-card.venue .slot .t { min-width: 118px; }

.ev-tiers {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(18px, 5vw, 56px);
  margin-top: 26px; padding: 20px 24px;
  background: rgba(200,67,47,.10); border: 1px solid var(--sindoor); border-radius: 12px;
}
.ev-tiers > div { text-align: center; display: flex; flex-direction: column; gap: 2px; }
.tier-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--cream-2); }
.tier-price { font-family: var(--font-display); font-size: 34px; color: var(--marigold); }
.tier-note { font-size: 11.5px; color: var(--cream-2); }

/* homepage "what's on" band */
.whats-on { background: #140d0f; border-bottom: 1px solid var(--line); }
.wo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.wo-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--ink-2); border: 1px solid var(--line); border-left: 4px solid var(--marigold);
  border-radius: 0 12px 12px 0; padding: 20px 22px 22px;
  transition: transform .15s ease, border-color .15s ease;
}
.wo-card:hover { transform: translateY(-2px); border-color: var(--gold); }
.wo-when { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--marigold); }
.wo-title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(21px, 2.4vw, 27px); line-height: 1.05; }
.wo-sub { color: var(--cream-2); font-size: 14.5px; flex: 1; }
.wo-cta { margin-top: 6px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.wo-cta .btn, .wo-cta .btn-ghost { font-size: 14.5px; padding: 10px 20px; }

/* ---------- events hero banner (top of the homepage, three panels) */
.ev-banner { background: #120c0e; border-bottom: 1px solid var(--line); padding: 26px 0 30px; }
.ev-banner-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.ev-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ev-panel {
  position: relative; overflow: hidden; min-height: 260px;
  display: flex; align-items: flex-end;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--ink-2);
  transition: transform .18s ease, border-color .18s ease;
}
.ev-panel::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--panel-img, none);
  background-size: cover; background-position: center;
  filter: grayscale(.08) brightness(.72) contrast(1.05);
}
.ev-panel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,9,10,.92) 4%, rgba(14,9,10,.55) 48%, rgba(14,9,10,.12) 100%);
}
/* the headline act with no photo yet: cinema-red spotlight instead of a stand-in image */
.ev-panel.is-headline::before {
  background-image:
    radial-gradient(ellipse 70% 60% at 78% 12%, rgba(200,67,47,.55), transparent 62%),
    radial-gradient(ellipse 60% 55% at 20% 90%, rgba(242,169,59,.28), transparent 64%);
  filter: none;
}
.ev-panel:hover { transform: translateY(-3px); border-color: var(--gold); }
.ev-panel-body { position: relative; z-index: 1; padding: 22px 22px 20px; width: 100%; }
.ev-panel-when { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--marigold); }
.ev-panel-title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.04; margin: 8px 0 8px; color: var(--cream); }
.ev-panel-title .accent { color: var(--marigold); }
.ev-panel-sub { color: var(--cream-2); font-size: 14.5px; margin-bottom: 16px; }
.ev-panel-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ev-panel-cta .btn { font-size: 14.5px; padding: 11px 22px; }
.ev-more { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.ev-pay { font-size: 13.5px; }
@media (max-width: 900px) { .ev-panels { grid-template-columns: 1fr; } .ev-panel { min-height: 210px; } }
.ev-art { width: 100%; max-height: 320px; object-fit: cover; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 24px; }
/* official event flyer — shown as a poster, never stretched */
.ev-flyer { display: block; width: min(420px, 100%); height: auto; margin: 0 auto 26px; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.ev-venue-line { margin-top: 8px; font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; color: var(--marigold); }

/* homepage poster wall — the official flyers at full height, as designed */
.ev-posters { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); }
.ev-poster { display: flex; flex-direction: column; }
.ev-poster-img {
  display: block; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line); background: #0f0a0b;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ev-poster-img img { width: 100%; height: auto; aspect-ratio: 1050 / 1540; object-fit: cover; display: block; }
.ev-poster-img:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow); }
.ev-poster-foot { padding: 14px 2px 0; }
.ev-poster-when { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--marigold); }
.ev-poster-title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(20px, 2.1vw, 26px); line-height: 1.05; margin: 6px 0 12px; color: var(--cream); }
.ev-poster-title .accent { color: var(--marigold); }
/* Phones: plain block stack, deliberately NOT a grid/scroll-snap strip — the
   grid-auto-flow strip did not take effect in mobile Safari (owner report
   2026-08-31: posters rendered full-width and endlessly tall). Each flyer is
   capped by HEIGHT and fully contained, so the whole poster is readable, keeps
   its true proportions, and three of them stay a short scroll. */
@media (max-width: 900px) {
  .ev-posters { display: block; }
  .ev-poster { margin-bottom: 30px; }
  .ev-poster:last-child { margin-bottom: 0; }
  .ev-poster-img { display: flex; justify-content: center; background: #0f0a0b; }
  .ev-poster-img img {
    aspect-ratio: auto; object-fit: contain;
    width: auto; max-width: min(100%, 268px); height: auto; max-height: 44vh; margin: 0 auto;
  }
  .ev-banner-head { flex-direction: column; align-items: flex-start; gap: 2px; }
  .ev-flyer { width: auto; max-width: min(100%, 300px); max-height: 52vh; }
  .ev-poster-foot { text-align: center; }
  .ev-poster-foot .ev-panel-cta { justify-content: center; }
}
/* tappable registration link — a phone user can't scan a QR on their own screen */
.ev-qr-line { margin-top: 10px; font-size: 13px; color: var(--cream-2); }
.ev-qr-line a { font-family: var(--font-mono); font-size: 12.5px; word-break: break-all; }
.ev-poster-foot .ev-qr-line { margin-top: 8px; }
