/* ────────────────────────────────────────────────────────────────
   Home — Hero  (cinematic, editorial)
   ──────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + var(--s-8));
  padding-bottom: var(--s-9);
  overflow: hidden; /* clip the inset:-10% scaled blurred backdrop */
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: -10%;
  z-index: -3;
  background-position: center;
  background-size: cover;
  filter: blur(48px) brightness(0.32) saturate(1.15);
  transform: scale(1.25);
  opacity: 0.85;
  transition: opacity 1200ms var(--ease);
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 80% at 75% 50%, rgba(0,0,0,0), rgba(8,8,10,0.94) 70%),
    linear-gradient(180deg, rgba(8,8,10,0.5) 0%, rgba(8,8,10,0.85) 60%, rgba(8,8,10,1) 100%);
}

/* Vignette mask */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 60% at 50% 100%, transparent 60%, rgba(8,8,10,0.7));
}

.hero__top {
  position: absolute;
  top: calc(var(--nav-h) + var(--s-5));
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim-2);
}
.hero__top span { display: inline-flex; align-items: center; gap: var(--s-3); }
.hero__top em { color: var(--gold); font-style: normal; }

.hero__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(var(--s-5), 6vw, var(--s-9));
  align-items: end;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  max-width: 760px;
}

.hero__edition {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}
.hero__edition::before,
.hero__edition::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 44px;
}
.hero__edition::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero__edition::before { background: linear-gradient(90deg, transparent, var(--gold)); }

.hero__title {
  font-size: clamp(3.25rem, 8.5vw, 7.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-feature-settings: 'liga', 'dlig';
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero__title small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--dim-2);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: var(--s-4);
  font-style: normal;
}

.hero__synopsis {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: var(--bone-2);
  line-height: 1.6;
  font-weight: 300;
  max-width: 58ch;
  letter-spacing: -0.005em;
}
.hero__synopsis::first-letter {
  font-family: var(--font-display);
  font-size: 2em;
  font-style: italic;
  color: var(--gold);
  line-height: 0.85;
  float: left;
  padding-right: 6px;
  padding-top: 6px;
}

.hero__meta {
  display: flex;
  gap: var(--s-5);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  flex-wrap: wrap;
  align-items: center;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero__meta .icon { width: 13px; height: 13px; color: var(--gold); }
.hero__meta .meta-bullet {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero__actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-3);
}

.hero__poster {
  position: relative;
  aspect-ratio: 2 / 3;
  max-width: 360px;
  margin-left: auto;
  margin-bottom: var(--s-4);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-poster);
  overflow: hidden;
  transition: transform 600ms var(--ease);
}
.hero__poster:hover { transform: translateY(-4px); }

.hero__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55));
  pointer-events: none;
  z-index: 1;
}
.hero__poster::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 2;
}
.hero__poster-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-2);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
}
.hero__poster-caption em { color: var(--gold); font-style: normal; }

/* Scroll cue at the very bottom of hero */
.hero__cue {
  position: absolute;
  bottom: var(--s-5);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
}
.hero__cue::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue-pulse 2.2s var(--ease) infinite;
}
@keyframes cue-pulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero__poster { max-width: 260px; margin-left: 0; }
  .hero__top { font-size: 9px; }
  .hero__cue { display: none; }
}

/* ────────────────────────────────────────────────────────────────
   Marquee strip
   ──────────────────────────────────────────────────────────────── */

.marquee {
  border-block: 1px solid var(--line);
  padding: var(--s-4) 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(201,169,97,0.025), transparent);
}

/* Fade-out gradients at the edges */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }

.marquee__track {
  display: inline-flex;
  gap: var(--s-7);
  animation: marquee 50s linear infinite;
  will-change: transform;
  align-items: center;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-style: italic;
  color: var(--bone);
  letter-spacing: -0.025em;
  font-weight: 400;
}
.marquee__item--gold { color: var(--gold); }
.marquee__dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  align-self: center;
  transform: rotate(45deg);
  border-radius: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ────────────────────────────────────────────────────────────────
   The Venue — editorial photo grid (1 lead + 3 supporting)
   Used on the homepage to show the cinema's interior; works as an
   asymmetric 3-up on desktop, stacks on mobile. Each figure has a
   small caption that fades in over the image on hover.
   ──────────────────────────────────────────────────────────────── */

.venue-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

.venue-grid__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
  transition: box-shadow .4s var(--ease);
  transition-delay: var(--d, 0ms);
}

.venue-grid__item:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.55); }

.venue-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s var(--ease);
}

.venue-grid__item:hover img { transform: scale(1.04); }

.venue-grid__item::after {
  /* Soft bottom gradient so the caption stays legible against any image. */
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(8,8,10,0.85));
  pointer-events: none;
}

.venue-grid__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--s-5);
  z-index: 2;
  color: var(--bone);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.25;
  letter-spacing: var(--ls-tight);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.venue-grid__item figcaption .eyebrow {
  /* Reuse global eyebrow style — gold uppercase mono lockup. */
  margin: 0;
}

.venue-grid__item--lead {
  aspect-ratio: 4 / 5;
}

.venue-grid__item--lead figcaption {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

@media (min-width: 900px) {
  .venue-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(220px, 0.5fr) minmax(220px, 0.5fr);
    gap: var(--s-5);
  }
  .venue-grid__item--lead {
    grid-column: 1;
    grid-row: 1 / span 2;
    aspect-ratio: auto;
  }
  .venue-grid__item:nth-child(2) {
    grid-column: 2 / span 2;
    grid-row: 1;
    aspect-ratio: auto;
  }
  .venue-grid__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: auto;
  }
  .venue-grid__item:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
    aspect-ratio: auto;
  }
}

/* ────────────────────────────────────────────────────────────────
   Showcase — Now Showing & Special Events grids.
   Cinema-style "poster wall": equal-size 2:3 posters laid out on a
   strict grid, so every card carries equal editorial weight. Calmer,
   more architectural than mixed-aspect cards.
   ──────────────────────────────────────────────────────────────── */

.showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: var(--s-7) var(--s-5);
}

@media (min-width: 1100px) {
  .showcase { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1400px) {
  .showcase { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* The first card in the "Now Showing" grid is the editor's pick.
   We mark it with a subtle FEATURED tag but keep the same dimensions
   as every other card — the rhythm matters more than hierarchy. */
.showcase--featured > .movie-card:first-child::before {
  content: 'FEATURED';
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  background: rgba(8,8,10,0.78);
  border: 1px solid var(--line-gold);
  padding: 4px 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ────────────────────────────────────────────────────────────────
   Movie rows: poster left + sessions right
   ──────────────────────────────────────────────────────────────── */

.movie-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--s-6);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
}
.movie-row:last-child { border-bottom: 0; }

@media (max-width: 640px) {
  .movie-row { grid-template-columns: 110px 1fr; gap: var(--s-4); }
  .movie-row__synopsis { display: none; }
}
@media (max-width: 420px) {
  .movie-row { grid-template-columns: 1fr; gap: var(--s-3); }
  .movie-row__poster { max-width: 200px; }
}

.movie-row__poster {
  aspect-ratio: 2 / 3;
  background: var(--ink-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.movie-row__poster img { width: 100%; height: 100%; object-fit: cover; }

.movie-row__body { display: flex; flex-direction: column; gap: var(--s-3); }

.movie-row__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1.1;
  letter-spacing: var(--ls-tight);
  color: var(--bone);
  margin: 0;
}
.movie-row__title a:hover { color: var(--gold); }

.movie-row__meta {
  display: flex;
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

.movie-row__synopsis {
  font-size: var(--fs-sm);
  color: var(--bone-2);
  line-height: 1.6;
  max-width: 70ch;
}

.movie-row__sessions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-2);
}

/* ────────────────────────────────────────────────────────────────
   Schedule page — date tabs + day group
   ──────────────────────────────────────────────────────────────── */

.schedule-header {
  padding-top: calc(var(--nav-h) + var(--s-7));
  padding-bottom: var(--s-6);
}

.day-group__date {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  border-bottom: 1px solid var(--line);
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-5);
}
.day-group__date h2 {
  font-size: var(--fs-2xl);
}
.day-group__date span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* "Today" inline pill in day-group title */
.day-group__date .badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 3px 8px;
  vertical-align: middle;
  margin-left: var(--s-3);
  font-weight: 500;
}

/* Explainer card shown on sparse / special-only schedule days */
.schedule-note {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: var(--s-4);
  padding: var(--s-5);
  margin-bottom: var(--s-6);
  background: linear-gradient(180deg, var(--gold-faint), transparent 80%);
  border: 1px solid var(--line-gold);
  position: relative;
}
.schedule-note::before {
  content: '';
  grid-column: 1;
  width: 2px;
  background: var(--gold);
}
.schedule-note > div { grid-column: 2; }
.schedule-note h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--bone);
  margin: var(--s-2) 0 var(--s-3);
  letter-spacing: -0.012em;
}
.schedule-note p {
  color: var(--dim);
  font-size: var(--fs-sm);
  line-height: 1.65;
  max-width: 64ch;
}
.schedule-note .eyebrow { color: var(--gold); }

/* Inline "Special event" tag before a film row title in schedule view */
.row-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  padding: 2px 7px;
  margin-right: var(--s-3);
  vertical-align: middle;
  background: var(--gold-faint);
}

/* ────────────────────────────────────────────────────────────────
   Movie detail page
   ──────────────────────────────────────────────────────────────── */

.detail-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--s-8));
  padding-bottom: var(--s-8);
  overflow: hidden;
  isolation: isolate;
}
.detail-hero__bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  filter: blur(56px) brightness(0.3) saturate(1.2);
  transform: scale(1.3);
  z-index: -3;
  opacity: 0.75;
}
.detail-hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 30%, rgba(0,0,0,0), rgba(8,8,10,0.85) 70%),
    linear-gradient(180deg, rgba(8,8,10,0.55), rgba(8,8,10,0.96));
  z-index: -2;
}
.detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 60% at 50% 100%, transparent 60%, rgba(8,8,10,0.7));
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--s-8);
  align-items: start;
}
@media (max-width: 800px) {
  .detail-hero__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .detail-hero__poster-wrap { max-width: 280px; }
}

.detail-hero__poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-poster);
}
.detail-hero__poster-wrap img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero__poster-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}

.detail-hero__title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: -0.035em;
  margin: var(--s-4) 0 var(--s-4);
  line-height: 0.95;
  font-weight: 400;
}

.detail-hero__meta {
  display: flex;
  gap: var(--s-4);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  flex-wrap: wrap;
  margin-bottom: var(--s-4);
}
.detail-hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.detail-hero__meta .icon { width: 14px; height: 14px; color: var(--gold); }

.detail-hero__synopsis {
  font-size: var(--fs-lg);
  color: var(--bone-2);
  line-height: 1.6;
  font-weight: 300;
  max-width: 64ch;
  margin-bottom: var(--s-5);
}

.detail-hero__cast-line {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-2);
  font-size: var(--fs-sm);
}
.detail-hero__cast-line dt {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dim-2);
  padding-top: 3px;
}
.detail-hero__cast-line dd { color: var(--bone); }

.trailer-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: var(--ink-1);
}

/* ────────────────────────────────────────────────────────────────
   Booking page
   ──────────────────────────────────────────────────────────────── */

.book-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--s-7);
  padding-top: calc(var(--nav-h) + var(--s-7));
  padding-bottom: var(--s-9);
}
@media (max-width: 880px) {
  .book-grid { grid-template-columns: 1fr; }
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.ticket-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
}
.ticket-row__name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ticket-row__name small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim-2);
}
.ticket-row__price {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: var(--fs-md);
}

.book-summary {
  background:
    linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line);
  padding: var(--s-6);
  position: sticky;
  top: calc(var(--nav-h) + var(--s-3));
  align-self: start;
  box-shadow: var(--shadow-card);
}
/* Ticket-stub corner ticks */
.book-summary::before,
.book-summary::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.book-summary::before {
  top: -1px; left: -1px;
  border-right: 0; border-bottom: 0;
}
.book-summary::after {
  bottom: -1px; right: -1px;
  border-left: 0; border-top: 0;
}
.book-summary { position: sticky; } /* keep sticky after pseudo elements */
.book-summary h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--s-4);
}
.book-summary dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-3) var(--s-4);
  margin-bottom: var(--s-5);
}
.book-summary dt {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--dim-2);
}
.book-summary dd {
  font-size: var(--fs-sm);
  color: var(--bone);
  text-align: right;
  font-family: var(--font-body);
}
.book-summary .total {
  border-top: 1px dashed var(--line-strong);
  padding-top: var(--s-4);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
}
/* Decorative perforations on the dashed line */
.book-summary .total::before,
.book-summary .total::after {
  content: '';
  position: absolute;
  top: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--line);
}
.book-summary .total::before { left: calc(-1 * var(--s-6) - 7px); }
.book-summary .total::after  { right: calc(-1 * var(--s-6) - 7px); }

.book-summary .total span:first-child {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim);
}
.book-summary .total span:last-child {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--gold);
  letter-spacing: -0.025em;
}

/* Confirmation screen */
.confirm {
  text-align: center;
  padding: var(--s-9) var(--s-5);
  border: 1px solid var(--line);
  background: var(--ink-1);
}
.confirm__mark {
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  display: inline-grid; place-items: center;
  color: var(--gold);
  margin-bottom: var(--s-5);
}
.confirm__reference {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  letter-spacing: 0.04em;
  color: var(--gold);
  margin: var(--s-4) 0;
}
.confirm__actions {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}
.confirm__hint {
  max-width: 50ch;
  margin: var(--s-5) auto 0;
  text-align: center;
}

/* ──────────────────────────────────────────────────────────────
   "Seats held for" 10-minute countdown banner on booking page
   ────────────────────────────────────────────────────────────── */
.hold-timer {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 10px var(--s-3);
  background: var(--gold-faint);
  border: 1px solid var(--line-gold);
  margin-bottom: var(--s-4);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
}
.hold-timer__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,169,97,0.7);
  animation: pulseDot 1.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hold-timer__label { color: var(--dim); }
.hold-timer__time {
  margin-left: auto;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.hold-timer.is-urgent {
  background: rgba(196, 90, 72, 0.08);
  border-color: rgba(196, 90, 72, 0.4);
}
.hold-timer.is-urgent .hold-timer__dot { background: var(--danger); box-shadow: 0 0 8px rgba(196,90,72,0.7); }
.hold-timer.is-urgent .hold-timer__time { color: var(--danger); }
.hold-timer.is-expired {
  background: var(--ink-3);
  border-color: var(--line);
  color: var(--dim-2);
}
.hold-timer.is-expired .hold-timer__dot { background: var(--mute); box-shadow: none; animation: none; }

/* ──────────────────────────────────────────────────────────────
   Seat map — illustrative SVG of cinema room
   ────────────────────────────────────────────────────────────── */
.seat-map-mount { margin-top: var(--s-5); }

.seat-map {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-4);
  border: 1px solid var(--line);
  background: var(--ink-2);
  margin: 0;
}
.seat-map__cap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-2);
}
.seat-map__cap-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}
.seat-map svg {
  width: 100%;
  height: auto;
  display: block;
}
.seat-map__screen { fill: rgba(245,241,232,0.5); }
.seat-map__screen-arc { stroke: var(--gold); stroke-width: 0.6; opacity: 0.55; }
.seat-map__screen-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  fill: var(--gold);
}
.seat-map .seat {
  fill: var(--ink-3);
  stroke: var(--line-strong);
  stroke-width: 0.7;
  transition: fill var(--dur-fast) var(--ease);
}
.seat-map .seat:hover { fill: var(--gold-faint); }
.seat-map .seat.is-wc {
  fill: rgba(201,169,97,0.18);
  stroke: var(--gold);
}
.seat-map__aisle {
  fill: rgba(8,8,10,0.6);
}
.seat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: var(--dim-2);
}
.seat-map__door {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: var(--dim);
  letter-spacing: 0.1em;
}
.seat-map__legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--dim);
}
.seat-map__legend span { display: inline-flex; align-items: center; gap: 6px; }
.seat-map__swatch {
  width: 10px;
  height: 10px;
  background: var(--ink-3);
  border: 1px solid var(--line-strong);
  display: inline-block;
}
.seat-map__swatch--wc {
  background: rgba(201,169,97,0.18);
  border-color: var(--gold);
}
.seat-map__swatch--aisle {
  background: rgba(8,8,10,0.6);
  border-color: var(--line);
}
.seat-map__note {
  font-size: 11px;
  color: var(--dim-2);
  line-height: 1.5;
  margin: 0;
}

/* ────────────────────────────────────────────────────────────────
   About — pricing & cinema rooms
   ──────────────────────────────────────────────────────────────── */

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 800px) { .split-grid { grid-template-columns: 1fr; } }

.pricing-table {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, rgba(201,169,97,0.018));
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  padding: var(--s-5) var(--s-4) var(--s-5) 0;
  border-bottom: 1px solid var(--line);
  gap: var(--s-5);
  transition: background var(--dur-fast) var(--ease), padding-left var(--dur-fast) var(--ease);
  position: relative;
}
.pricing-row:hover {
  background: linear-gradient(90deg, rgba(201,169,97,0.04), transparent);
  padding-left: var(--s-3);
}
.pricing-row::before {
  content: counter(price-counter, decimal-leading-zero);
  counter-increment: price-counter;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--dim-2);
  align-self: start;
  padding-top: 6px;
  min-width: 24px;
}
.pricing-table { counter-reset: price-counter; }
.pricing-row__name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  letter-spacing: -0.01em;
}
.pricing-row__name small {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--dim-2);
  letter-spacing: 0;
  margin-top: 4px;
  font-weight: 300;
}
.pricing-row__price {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--gold);
  letter-spacing: -0.025em;
}

/* ────────────────────────────────────────────────────────────────
   Coming Soon — horizontal cards on the home page
   ──────────────────────────────────────────────────────────────── */

.coming-soon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: var(--s-6);
}
@media (max-width: 720px) {
  .coming-soon { grid-template-columns: 1fr; gap: var(--s-5); }
}

.coming-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--s-5);
  text-decoration: none;
  color: inherit;
  padding: var(--s-4);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  position: relative;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.coming-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  opacity: 0.06;
  pointer-events: none;
  z-index: -1;
}
.coming-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
}
.coming-card:hover .coming-card__cue [data-icon] {
  transform: translateX(4px);
}
.coming-card__poster {
  aspect-ratio: 2/3;
  background: var(--ink-3);
  overflow: hidden;
  position: relative;
}
.coming-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.coming-card:hover .coming-card__poster img {
  transform: scale(1.04);
}
.coming-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-3);
  min-width: 0;
}
.coming-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--bone);
  line-height: 1.15;
  margin: var(--s-2) 0;
  /* Clamp very long titles to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.coming-card__synopsis {
  font-size: var(--fs-sm);
  color: var(--dim);
  line-height: 1.6;
  /* Clamp synopsis to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.coming-card__cue {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-2);
}
.coming-card__cue [data-icon] {
  transition: transform var(--dur-fast) var(--ease);
}
@media (max-width: 480px) {
  .coming-card { grid-template-columns: 100px 1fr; gap: var(--s-3); padding: var(--s-3); }
}

/* ────────────────────────────────────────────────────────────────
   Gift cards page
   ──────────────────────────────────────────────────────────────── */

.gift-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
@media (max-width: 960px) {
  .gift-hero {
    grid-template-columns: 1fr;
    gap: var(--s-7);
  }
}

.gift-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--s-3);
  max-width: 560px;
}
.gift-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--s-4) var(--s-4);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  color: var(--bone);
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative;
}
.gift-amount::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color var(--dur) var(--ease);
}
.gift-amount:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.gift-amount:hover::before {
  border-color: rgba(201,169,97,0.15);
  inset: 4px;
}
.gift-amount__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.015em;
}
.gift-amount__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim-2);
  margin-top: var(--s-2);
}
.gift-amount--custom .gift-amount__num {
  color: var(--bone-2);
}

.gift-card {
  position: relative;
  aspect-ratio: 1.586 / 1;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(201,169,97,0.08), transparent 60%),
    linear-gradient(155deg, var(--ink-3) 0%, var(--ink-1) 60%, #0a0a0c 100%);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(201,169,97,0.08);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform var(--dur-slow) var(--ease);
}
.gift-card:hover {
  transform: rotate(0deg) translateY(-4px);
}
.gift-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -1;
}
.gift-card__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gift-card__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--gold);
}
.gift-card__corner--tl { top: 0; left: 0; border-top: 1px solid; border-left: 1px solid; }
.gift-card__corner--tr { top: 0; right: 0; border-top: 1px solid; border-right: 1px solid; }
.gift-card__corner--bl { bottom: 0; left: 0; border-bottom: 1px solid; border-left: 1px solid; }
.gift-card__corner--br { bottom: 0; right: 0; border-bottom: 1px solid; border-right: 1px solid; }
.gift-card__title {
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-card__foot {
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
}

/* ────────────────────────────────────────────────────────────────
   Prose — long-form text pages (Privacy, Terms, etc.)
   ──────────────────────────────────────────────────────────────── */

.prose {
  color: var(--dim);
  font-size: var(--fs-base);
  line-height: 1.75;
  max-width: 70ch;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 500;
  color: var(--bone);
  letter-spacing: -0.015em;
  margin: var(--s-7) 0 var(--s-3);
  position: relative;
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--line);
}
.prose h2:first-child {
  margin-top: 0;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: var(--bone);
  margin: var(--s-5) 0 var(--s-2);
}
.prose p {
  margin-bottom: var(--s-4);
}
.prose ul,
.prose ol {
  margin: var(--s-3) 0 var(--s-5);
  padding-left: var(--s-5);
}
.prose ul li,
.prose ol li {
  margin-bottom: var(--s-2);
  padding-left: var(--s-2);
}
.prose ul li::marker {
  content: '— ';
  color: var(--gold);
  font-family: var(--font-mono);
}
.prose ol li::marker {
  color: var(--gold);
  font-family: var(--font-mono);
}
.prose strong {
  color: var(--bone-2);
  font-weight: 500;
}
.prose a {
  color: var(--bone);
  border-bottom: 1px solid var(--line-strong);
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.prose a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.prose code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  color: var(--gold);
  background: var(--gold-faint);
  padding: 1px 6px;
  border-radius: 2px;
}

/* Right-rail table of contents for long-form pages. */
.has-prose-toc {
  position: relative;
}
.prose-toc {
  position: sticky;
  top: calc(var(--nav-h) + var(--s-5));
  align-self: start;
  max-width: 240px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--dim);
  border-left: 1px solid var(--line);
  padding-left: var(--s-4);
}
.prose-toc__heading {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.prose-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prose-toc li {
  counter-increment: toc;
  padding: 0;
}
.prose-toc a {
  display: flex;
  gap: var(--s-3);
  padding: 6px 0;
  color: var(--dim);
  text-decoration: none;
  line-height: 1.4;
  transition: color var(--dur-fast) var(--ease);
  border: 0;
}
.prose-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-size: 9.5px;
  color: var(--dim-2);
  letter-spacing: 0.1em;
  font-weight: 500;
  min-width: 18px;
}
.prose-toc a:hover { color: var(--bone); border: 0; }
.prose-toc a.is-active {
  color: var(--gold);
}
.prose-toc a.is-active::before {
  color: var(--gold);
}

/* On wide screens, float the TOC to the right of the prose. */
@media (min-width: 1100px) {
  .has-prose-toc {
    display: grid;
    grid-template-columns: minmax(0, 70ch) 240px;
    gap: var(--s-9);
    align-items: start;
  }
  .has-prose-toc .prose {
    grid-column: 1;
  }
  .has-prose-toc .prose-toc {
    grid-column: 2;
  }
}
@media (max-width: 1099px) {
  .prose-toc {
    display: none;
  }
}

/* ────────────────────────────────────────────────────────────────
   404 / error hero
   ──────────────────────────────────────────────────────────────── */

.error-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--s-9));
  padding-bottom: var(--s-9);
  overflow: hidden;
  isolation: isolate;
}
.error-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(201,169,97,0.07), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(8,8,10,0.5), transparent 80%);
}
.error-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ────────────────────────────────────────────────────────────────
   FAQ accordion — native <details>, editorial styling
   ──────────────────────────────────────────────────────────────── */

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: var(--s-5) 0;
  position: relative;
  transition: padding var(--dur-fast) var(--ease);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  letter-spacing: -0.01em;
  color: var(--bone);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--s-4);
  transition: color var(--dur-fast) var(--ease);
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { content: ''; }

.faq-list summary::after {
  content: '';
  width: 16px;
  height: 16px;
  background:
    linear-gradient(90deg, currentColor 0 100%) center / 100% 1px no-repeat,
    linear-gradient(0deg, currentColor 0 100%) center / 1px 100% no-repeat;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}

.faq-list details[open] summary {
  color: var(--gold);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background:
    linear-gradient(90deg, currentColor 0 100%) center / 100% 1px no-repeat;
}

.faq-list details p {
  margin-top: var(--s-3);
  font-size: var(--fs-sm);
  color: var(--dim);
  line-height: 1.7;
  max-width: 68ch;
  padding-right: 32px;
}

.faq-list details p a {
  color: var(--bone);
  border-bottom: 1px solid var(--line-strong);
}
.faq-list details p a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.faq-list details p strong {
  color: var(--bone);
  font-weight: 500;
}

.feature-list { display: flex; flex-direction: column; gap: var(--s-5); }
.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--s-4);
  align-items: start;
  position: relative;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
}
.feature:last-child { border-bottom: 0; padding-bottom: 0; }
.feature__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--gold);
  position: relative;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.feature:hover .feature__icon {
  border-color: var(--gold);
  background: rgba(201,169,97,0.06);
}
/* Tiny gold corner ticks */
.feature__icon::before,
.feature__icon::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.feature__icon::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.feature__icon::after  { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }
.feature:hover .feature__icon::before,
.feature:hover .feature__icon::after { opacity: 1; }
.feature__icon .icon { width: 20px; height: 20px; }
.feature__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.feature__body {
  font-size: var(--fs-sm);
  color: var(--dim);
  line-height: 1.6;
}
.feature__body a { color: var(--bone); border-bottom: 1px solid var(--line-strong); }
.feature__body a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ────────────────────────────────────────────────────────────────
   Contact
   ──────────────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.map-wrap {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05); }
