/* ============================================================
   VOX TALKIES — Light theme layer
   ------------------------------------------------------------
   Loaded last, after style.css and responsive.css.

   The original build was dark-first: the page canvas was near-black
   and every component was coloured for it. This layer flips the
   canvas to white while keeping the genuinely "cinematic" bands —
   hero film, page headers, the full-bleed image bands, the booking
   modal and the footer — dark.

   The flip is done by re-declaring the design tokens rather than
   rewriting components: :root now carries light values, and the
   dark bands re-declare the original dark values on themselves, so
   everything nested inside them keeps its old appearance for free.
   ============================================================ */

/* ---------- 1. Light canvas tokens ---------- */
:root {
  --bg:          #FFFFFF;
  --surface-1:   #F7F5F1;   /* tinted section band              */
  --surface-2:   #FFFFFF;   /* cards, lifted with a hairline    */
  --surface-3:   #EFEBE3;

  --text:        #16161A;
  --text-70:     rgba(22, 22, 26, 0.74);
  --text-50:     rgba(22, 22, 26, 0.58);
  --text-30:     rgba(22, 22, 26, 0.42);

  --hairline:    rgba(10, 10, 11, 0.13);
  --hairline-2:  rgba(10, 10, 11, 0.07);

  /* On white, the pale gold fails contrast as a text colour, so the
     soft token resolves to the deep tone. Dark bands put it back. */
  --gold-soft:   #A9700F;

  /* Fixed reference to the cinematic black, for gradients that have
     to ramp into a dark band rather than the page. */
  --dark-bg:     #08080A;

  --header-h:    116px;
}

html { scroll-padding-top: 128px; }

body { background: var(--bg); color: var(--text); }

/* ---------- 2. Dark bands re-declare the original tokens ---------- */
.hero,
.film-hero,
.page-header,
.cinematic-band,
.glass-cta,
.site-footer,
.modal,
.xcard,
.location-card__art,
.fnb-reel__card,
.dark-zone {
  --bg:         #08080A;
  --surface-1:  #0E0E11;
  --surface-2:  #141418;
  --surface-3:  #1C1C21;
  --text:       #F6F4F0;
  --text-70:    rgba(246, 244, 240, 0.72);
  --text-50:    rgba(246, 244, 240, 0.5);
  --text-30:    rgba(246, 244, 240, 0.3);
  --hairline:   rgba(255, 255, 255, 0.10);
  --hairline-2: rgba(255, 255, 255, 0.06);
  --gold-soft:  #E8BB6B;
  /* Headings and any element without an explicit colour inherit from
     the page, which is now dark ink — so each dark band has to restate
     its own text colour or its copy disappears into the background. */
  color: var(--text);
}
.dark-zone { background: var(--bg); color: var(--text); }

/* The venue row stacks its name over its region; without an explicit
   display the two inline spans collide. */
.venue__text { display: flex; flex-direction: column; min-width: 0; }
.venue__name, .venue__region { display: block; }

/* ---------- 3. Header: white, taller, full lockup ---------- */
.site-header {
  padding: 1.15rem 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 1px 0 rgba(10, 10, 11, .08);
}
.site-header.is-scrolled,
.site-header.is-on-light.is-scrolled {
  padding: .7rem 0;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(10, 10, 11, .06), 0 14px 34px rgba(10, 10, 11, .07);
}
.site-header.is-on-light { color: var(--ink); }

/* The full lockup (mark + "Experience the Extraordinary") replaces the
   bare wordmark, and the header now sizes around it. */
.nav__logo img { height: 74px; }
.site-header.is-scrolled .nav__logo img { height: 58px; }
/* Header is light on every page and at every scroll position, so the
   dark mark is the one that stays visible. */
.logo-swap .logo--light,
.is-on-light .logo-swap .logo--light { opacity: 0; }
.logo-swap .logo--dark,
.is-on-light .logo-swap .logo--dark { opacity: 1; }

.nav__link { opacity: .72; }
.nav__link:hover, .nav__link.is-active { opacity: 1; }

/* ---------- 4. Liquid glass, inverted ----------
   On white the translucent panel has nothing to tint, so the default
   becomes a clean lifted card. Dark bands keep the original glass. */
.liquid-glass,
.liquid-glass-strong {
  background: #fff;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 1px 2px rgba(10, 10, 11, .04), 0 16px 44px rgba(10, 10, 11, .07);
}
.liquid-glass::before,
.liquid-glass-strong::before { display: none; }

.glass-cta .liquid-glass,
.modal .liquid-glass,
.modal .liquid-glass-strong,
.dark-zone .liquid-glass {
  background: rgba(255, 255, 255, .04);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  backdrop-filter: blur(22px) saturate(1.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .38), inset 0 1px 1px rgba(255, 255, 255, .10);
}
.modal .liquid-glass-strong {
  background: rgba(18, 18, 22, .78);
  -webkit-backdrop-filter: blur(46px) saturate(1.5);
  backdrop-filter: blur(46px) saturate(1.5);
}
.glass-cta .liquid-glass::before,
.modal .liquid-glass::before,
.modal .liquid-glass-strong::before,
.dark-zone .liquid-glass::before { display: block; }

/* ---------- 5. Buttons ---------- */
.btn-gold:hover { background: #E8BB6B; color: var(--ink); }
.btn-outline { border-color: var(--hairline); color: inherit; }
.btn-outline:hover { background: rgba(10, 10, 11, .05); border-color: rgba(10, 10, 11, .35); }
.glass-cta .btn-outline:hover,
.dark-zone .btn-outline:hover { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .3); }
.btn-ripple { background: rgba(10, 10, 11, .18); }
.btn-gold .btn-ripple,
.glass-cta .btn-ripple,
.dark-zone .btn-ripple,
.modal .btn-ripple { background: rgba(255, 255, 255, .45); }

/* ---------- 6. Section bands ---------- */
.section--surface { background: var(--surface-1); }
.section--light { background: var(--surface-1); color: var(--ink); }

/* The warm corner glow was there to lift black; on white it muddies. */
.glow-top::before, .glow-bottom::after {
  background: radial-gradient(ellipse at center, rgba(221, 150, 39, .05) 0%, transparent 72%);
}

/* Ticker reads as a quiet rule between white sections */
.ticker { background: var(--surface-1); border-block-color: var(--hairline-2); }
.ticker__track span { color: var(--text-50); }

/* Page header: a dark band under the white header, ending cleanly at
   the white page instead of ramping into it. */
.page-header::after {
  background:
    radial-gradient(ellipse 70% 90% at 30% 50%, rgba(8, 8, 10, .82) 0%, rgba(8, 8, 10, .52) 62%, rgba(8, 8, 10, .35) 100%),
    linear-gradient(180deg, rgba(8, 8, 10, .88) 0%, rgba(8, 8, 10, .5) 45%, rgba(8, 8, 10, .8) 100%);
}
.page-header { padding-top: clamp(10.5rem, 24vh, 14rem); }

/* Cinematic band: a self-contained dark band, no page blend */
.cinematic-band__overlay {
  background: linear-gradient(180deg, rgba(8, 8, 10, .72) 0%, rgba(8, 8, 10, .45) 40%, rgba(8, 8, 10, .68) 100%);
}

/* Glass CTA: the top/bottom ramps must fade into the band itself */
.glass-cta__fade-top { background: linear-gradient(to bottom, rgba(8, 8, 10, .85), transparent); }
.glass-cta__fade-bottom { background: linear-gradient(to top, rgba(8, 8, 10, .85), transparent); }

/* Split experience panel keeps a tinted, not black, surface */
.split-experience__panel { background: var(--surface-1); }

/* ---------- 7. Cards ---------- */
.location-card {
  background: #fff;
  border: 1px solid var(--hairline-2);
  box-shadow: 0 1px 2px rgba(10, 10, 11, .04), 0 18px 44px rgba(10, 10, 11, .06);
}
.location-card:hover { box-shadow: 0 26px 60px rgba(10, 10, 11, .12); }
/* The vector artwork stays on its dark plate — it is drawn in gold on
   black — but no longer fades into the card body. */
.location-card__art::after { background: linear-gradient(180deg, transparent 70%, rgba(8, 8, 10, .35) 100%); }

.timeline-card {
  background: #fff;
  border: 1px solid var(--hairline-2);
  box-shadow: 0 1px 2px rgba(10, 10, 11, .04), 0 16px 40px rgba(10, 10, 11, .06);
}
.timeline-card p { color: var(--text-50); }

.service-card { background: #fff; }

.stat { border: 1px solid var(--hairline-2); }
.stat__num { color: var(--gold-deep); }

.status-pill { background: rgba(184, 118, 26, .1); color: var(--gold-deep); border-color: rgba(184, 118, 26, .28); }
.status-pill--live { background: rgba(31, 122, 70, .1); color: #1F7A46; border-color: rgba(31, 122, 70, .28); }
.status-pill--live::before { background: #1F7A46; }
.modal .status-pill { background: rgba(221, 150, 39, .13); color: var(--gold-soft); border-color: rgba(221, 150, 39, .3); }

.amenity-tag { border-color: var(--hairline); color: var(--text-50); }

/* ---------- 8. Forms on the light canvas ---------- */
.section--light .form-card,
.form-card { background: #fff; box-shadow: 0 1px 2px rgba(10, 10, 11, .04), 0 24px 60px rgba(10, 10, 11, .08); }
.form-field label { color: var(--text-50); }
.form-field input, .form-field textarea, .form-field select {
  background: #FAF8F5; border-color: var(--hairline); color: var(--text);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  background: #fff; border-color: var(--gold-deep);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-30); }
.form-field select option { background: #fff; color: var(--text); }
.form-banner--success { background: #EBF5EE; color: #2F5D3F; border: 1px solid #C6E0CF; }
.form-banner--error { background: #FBEDED; color: #7E2A2E; border: 1px solid #EFCDCF; }
.field-error { color: #A8323A; }

/* Inside the dark franchise / booking modal the fields stay dark */
.modal .form-field input, .modal .form-field textarea, .modal .form-field select {
  background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .16); color: #F6F4F0;
}
.modal .form-field input:focus, .modal .form-field textarea:focus, .modal .form-field select:focus {
  background: rgba(255, 255, 255, .09); border-color: var(--gold);
}
.modal .form-field label { color: var(--text-50); }
.modal .form-field input::placeholder { color: rgba(246, 244, 240, .34); }
.modal .form-field select option { background: #1C1C21; color: #F6F4F0; }

/* ---------- 9. Odds and ends ---------- */
.cursor-ring { border-color: rgba(10, 10, 11, .35); }
.cursor-ring.is-light { border-color: rgba(10, 10, 11, .35); }
.grain-overlay { opacity: .018; mix-blend-mode: multiply; }
.contact-info__item { border-bottom-color: var(--hairline-2); }
.contact-info__icon { background: rgba(184, 118, 26, .12); }
.contact-info__icon svg { color: var(--gold-deep); }
.location-meta { border-top-color: var(--hairline); }
.location-row + .location-row { border-top-color: var(--hairline); }
.phase { border-top-color: var(--hairline); }
.piracy__inner { border: 1px solid var(--hairline-2); }
.piracy__icon { background: rgba(205, 32, 40, .07); border-color: rgba(205, 32, 40, .25); }
.piracy__icon svg { color: #C22630; }
.text-link { color: var(--gold-deep); }
.text-link:hover { color: var(--gold); }
.whatsapp-float { box-shadow: 0 10px 30px rgba(10, 10, 11, .22); }

/* ============================================================
   NEW COMPONENTS
   ============================================================ */

/* ---------- Film hero (home) ----------
   The brand animation is 2048x858. The frame is pinned to that exact
   ratio so the clip is never cropped — the whole title sequence plays,
   end to end, on loop. */
.film-hero {
  position: relative;
  padding-top: var(--header-h);
  /* The reserved strip behind the fixed header belongs to the white
     page, not to the film — only the frame itself goes dark. */
  background: #fff;
}
.film-hero__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2048 / 858;
  overflow: hidden;
  background: #0A0A0C;
}
.film-hero__frame video {
  width: 100%; height: 100%;
  object-fit: cover;   /* frame matches the source ratio, so nothing is lost */
  display: block;
}
.film-hero__edge {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 18%;
  background: linear-gradient(to top, rgba(255, 255, 255, .55), transparent);
  pointer-events: none; z-index: 2;
}

/* The headline block that used to sit on top of the hero video now
   sits beneath it, on the white canvas. */
.hero-intro { padding: clamp(3.25rem, 7vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.hero-intro__mark {
  font-size: .72rem; font-weight: 600; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1.1rem;
}
.hero-intro__title { font-size: clamp(2.3rem, 5.6vw, 4.4rem); line-height: 1.04; }
.hero-intro__title .accent { color: var(--red); }
.hero-intro__lede { margin: 1.35rem auto 0; max-width: 56ch; color: var(--text-70); font-size: 1.05rem; }
.hero-intro__actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

@media (max-width: 768px) {
  :root { --header-h: 92px; }
  /* The frame keeps the clip's own 2.39:1 ratio on phones too, so the
     animation plays end to end with no letterbox bars around it. */
  .film-hero__frame { aspect-ratio: 2048 / 858; }
  .hero-intro__actions { flex-direction: column; align-items: center; }
  .hero-intro__actions .btn { width: 100%; max-width: 320px; }
  .nav__logo img { height: 58px; }
  .site-header.is-scrolled .nav__logo img { height: 48px; }
}

/* ---------- Dual booking (Bhavnagar) ----------
   Bhavnagar sells through two ticketing partners. The page shows a
   single "Book Bhavnagar" button like every other venue; the choice
   between partners happens inside the booking modal. */
/* The base .venue-sub is hidden until its group expands, and that rule
   is declared later in this file — so the standalone list needs the
   extra specificity of a doubled class to show itself. */
.venue-sub.venue-sub--standalone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-top: 0;
  padding-left: 0;
}
.venue-sub__link--lg { padding: 1.15rem 1.35rem; font-size: .82rem; }
.modal__back {
  font: inherit; font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-50);
  border-bottom: 1px solid var(--hairline); padding: 0 0 2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.modal__back:hover { color: var(--gold-soft); border-color: var(--gold); }
@media (max-width: 560px) { .venue-sub.venue-sub--standalone { grid-template-columns: 1fr; } }

/* Venue rows that expand into two ticketing partners */
.venue-group { grid-column: 1 / -1; }
.venue-group .venue { width: 100%; }
.venue-sub {
  display: none; grid-template-columns: 1fr 1fr; gap: .6rem;
  margin-top: .6rem; padding-left: .25rem;
}
.venue-group.is-open .venue-sub { display: grid; }
.venue-sub__link {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  padding: .85rem 1rem; border-radius: 12px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
  color: #F6F4F0;
  transition: background .3s var(--ease-premium), border-color .3s var(--ease-premium);
}
.venue-sub__link:hover { background: rgba(255, 255, 255, .11); border-color: rgba(232, 187, 107, .5); }
.venue-sub__link svg { width: 15px; height: 15px; flex-shrink: 0; }
.venue__cue--toggle { transition: transform .3s var(--ease-premium); }
.venue-group.is-open .venue__cue--toggle { transform: rotate(180deg); }
@media (max-width: 768px) { .venue-sub { grid-template-columns: 1fr; } }

/* ---------- Franchise modal ---------- */
.modal--form .modal__dialog { width: min(760px, 100%); }
.modal--form .form-row { gap: 1.1rem; }
.modal--form .form-field { margin-bottom: 1.05rem; }
.consent-field {
  display: flex; align-items: flex-start; gap: .75rem;
  margin: .4rem 0 1.4rem;
}
.consent-field input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: .18rem;
  accent-color: var(--gold); cursor: pointer;
}
.consent-field label {
  font-size: .78rem; line-height: 1.55; color: var(--text-50);
  letter-spacing: 0; text-transform: none; font-weight: 400; margin: 0;
}
.consent-field .field-error { margin-top: .35rem; }
.modal--form .btn { width: 100%; }

/* ---------- Franchise page ---------- */
.franchise-cta-band {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--surface-1);
  border-block: 1px solid var(--hairline-2);
  text-align: center;
}
.franchise-cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: .8rem; }
.franchise-cta-band p { color: var(--text-70); max-width: 58ch; margin: 0 auto 2rem; }
.franchise-figures { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.franchise-figure {
  padding: 1.8rem 1.4rem; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--hairline-2); text-align: left;
}
.franchise-figure h3 { font-size: 1.05rem; margin-bottom: .45rem; }
.franchise-figure p { font-size: .86rem; color: var(--text-50); }
@media (max-width: 900px) { .franchise-figures { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .franchise-figures { grid-template-columns: 1fr; } }

/* ---------- F&B page ---------- */
.fnb-hero { position: relative; padding-top: var(--header-h); background: #08080A; }
.fnb-hero__frame { position: relative; width: 100%; aspect-ratio: 16 / 7; overflow: hidden; }
.fnb-hero__frame video, .fnb-hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.fnb-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8, 8, 10, .55) 0%, rgba(8, 8, 10, .2) 40%, rgba(8, 8, 10, .85) 100%);
}
.fnb-hero__content {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: clamp(1.75rem, 5vw, 3.5rem);
  text-align: center; padding: 0 1.25rem; color: #fff;
}
.fnb-hero__title { font-size: clamp(2.1rem, 5.4vw, 4rem); color: #fff; }
.fnb-hero__sub { margin-top: .8rem; color: rgba(255, 255, 255, .82); font-size: 1rem; }
@media (max-width: 768px) {
  .fnb-hero__frame { aspect-ratio: 4 / 5; }
  .fnb-hero__sub { font-size: .9rem; }
}

/* Freshness pillars */
.fresh-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.fresh-card {
  padding: 2rem 1.7rem; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--hairline-2);
  box-shadow: 0 1px 2px rgba(10, 10, 11, .04), 0 16px 40px rgba(10, 10, 11, .05);
}
.fresh-card__mark {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 12px; background: rgba(184, 118, 26, .12); margin-bottom: 1.2rem;
}
.fresh-card__mark svg { width: 20px; height: 20px; color: var(--gold-deep); }
.fresh-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.fresh-card p { font-size: .9rem; color: var(--text-50); }
@media (max-width: 900px) { .fresh-grid { grid-template-columns: 1fr; } }

/* Social-style vertical reel */
.fnb-reel { position: relative; }
.fnb-reel__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(208px, 22vw, 268px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .35rem .25rem 1.6rem;
  margin: 0 calc(var(--container-pad) * -1);
  padding-inline: var(--container-pad);
  scrollbar-width: thin;
  scrollbar-color: rgba(10, 10, 11, .22) transparent;
}
.fnb-reel__rail::-webkit-scrollbar { height: 6px; }
.fnb-reel__rail::-webkit-scrollbar-thumb { background: rgba(10, 10, 11, .18); border-radius: 100px; }
.fnb-reel__card {
  position: relative; scroll-snap-align: start;
  aspect-ratio: 9 / 16; border-radius: 20px; overflow: hidden;
  background: #0E0E11;
  box-shadow: 0 1px 2px rgba(10, 10, 11, .06), 0 20px 48px rgba(10, 10, 11, .14);
  transition: transform .5s var(--ease-premium), box-shadow .5s var(--ease-premium);
}
.fnb-reel__card:hover { transform: translateY(-6px); box-shadow: 0 30px 66px rgba(10, 10, 11, .2); }
.fnb-reel__card video, .fnb-reel__card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.fnb-reel__card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 8, 10, .35) 0%, transparent 34%, transparent 52%, rgba(8, 8, 10, .88) 100%);
}
.fnb-reel__tag {
  position: absolute; z-index: 2; top: .85rem; left: .85rem;
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  padding: .32rem .7rem; border-radius: 100px;
  background: rgba(255, 255, 255, .16); color: #fff;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .22);
}
.fnb-reel__caption { position: absolute; z-index: 2; left: 1rem; right: 1rem; bottom: 1rem; }
.fnb-reel__caption h3 { font-size: 1.12rem; color: #fff; margin-bottom: .2rem; }
.fnb-reel__caption p { font-size: .76rem; color: rgba(255, 255, 255, .74); line-height: 1.45; }
.fnb-reel__hint {
  display: flex; align-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-30); margin-top: -.6rem;
}
.fnb-reel__hint svg { width: 15px; height: 15px; }

/* Counter / process band */
.fnb-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 2.5rem; }
.fnb-step { position: relative; padding-top: 1.4rem; border-top: 2px solid rgba(184, 118, 26, .35); }
.fnb-step span {
  font-family: var(--font-display); font-size: .78rem; color: var(--gold-deep);
  letter-spacing: .14em; display: block; margin-bottom: .5rem;
}
.fnb-step h3 { font-size: 1.15rem; margin-bottom: .45rem; }
.fnb-step p { font-size: .9rem; color: var(--text-50); }
@media (max-width: 900px) { .fnb-steps { grid-template-columns: 1fr; } }

/* ---------- Mobile navigation overlay, inverted ---------- */
@media (max-width: 768px) {
  /* backdrop-filter makes an element a containing block for fixed
     descendants, which would trap the full-screen menu inside the
     header. On phones the bar is solid white anyway, so drop it. */
  .site-header,
  .site-header.is-scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #fff;
  }

  .nav__links {
    background: #fff;
    -webkit-backdrop-filter: blur(26px); backdrop-filter: blur(26px);
    color: var(--ink);
  }
  body.nav-open .site-header { color: var(--ink); }
  body.nav-open .logo-swap .logo--light { opacity: 0; }
  body.nav-open .logo-swap .logo--dark { opacity: 1; }
  .nav__links .nav__link { color: var(--ink); }
}

/* Address is now the only meta field on a location row */
.location-meta--single { grid-template-columns: 1fr; }
.location-meta--single p { max-width: 46ch; }

/* The modal sets display:flex, which would defeat the `hidden`
   attribute used as the franchise dialog's no-JS guard. */
[hidden] { display: none !important; }

/* The consent row is a flex line, so its validation message needs a
   row of its own rather than a squeezed third column. */
.consent-field { flex-wrap: wrap; }
.consent-field .field-error { flex: 0 0 100%; margin-left: 2.5rem; }

@media (max-width: 768px) {
  /* On phones the rail stays inside the container's own gutters rather
     than bleeding to the edges, so the first card lines up with the
     headings above it. */
  .fnb-reel__rail {
    margin: 0;
    padding-inline: 0;
    grid-auto-columns: 72vw;
  }
}
