/* ═══════════════════════════════════════════════════════════
   Big Cine Expo 2026 — page-specific styles
   Extends /pages/assets/style.css with event landing page tokens.
   Standalone page — no shared nav/footer partials.
   ·
   · Hero stat: translateY hover lift removed
   · prod-card__name hover underline removed (h3 is not a link)
   · Footer: contrast ratios raised
   · Form labels: 13px → 14px
   · Mobile: badge hidden at ≤480px (topbar carries the info)
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --ink-900:        #171717;
  --ink-700:        #282828;
  --ink-500:        #6B655F;
  --ink-300:        #B9B1A6;
  --ink-100:        #E6E7E8;

  --paper:          #FAF7F2;
  --paper-deep:     #F2ECE2;
  --peach-mist:     #F4DDCD;
  --peach-deep:     #E8C0A4;

  --terracotta:     #C75A3C;
  --terracotta-700: #A24326;

  /* Aligned to brand guidelines Charcoal Black */
  --bg-inverse:     #171717;
  --fg-on-dark:     #FAF7F2;

  --terra-mist:     rgba(199,90,60,.08);
  --terra-border:   rgba(199,90,60,.2);
  --whatsapp:       #25D366;
  --whatsapp-dk:    #1da851;

  --font-display: 'Spectral', Georgia, 'Times New Roman', serif;
  --font-body:    'Red Hat Display', system-ui, -apple-system, sans-serif;
  --font-ui:      'Red Hat Display', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --fs-eyebrow: .8125rem;
  --fs-body-lg: 1.0625rem;
  --fs-body:    1rem;
  --fs-body-sm: .9375rem;
  --fs-caption: .875rem;   /* was .8125rem — form labels */

  /* Aligned to design system — was clamp(1.5rem, 1.5vw + .875rem, 2.125rem) */
  --fs-h2:      clamp(1.75rem, 1.4vw + 1rem, 2.5rem);

  --lh-heading: 1.18;
  --lh-body:    1.65;

  --tracking-display: -.015em;
  --tracking-tight:   -.02em;
  --tracking-eyebrow:  .14em;

  --space-1:  .25rem;
  --space-2:  .5rem;
  --space-3:  .75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;

  /* Aligned to design system — max was 6.5rem */
  --section-y: clamp(4rem, 6vw, 7rem);

  --container-max: 1280px;
  /* Aligned to design system — max was 2.5rem */
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  --radius-2:   4px;
  --radius-3:   8px;
  --radius-4:   14px;
  --radius-pill: 999px;

  /* Aligned to design system shadow values */
  --shadow-1: 0 1px 2px rgba(22,20,19,.04), 0 1px 1px rgba(22,20,19,.03);
  --shadow-2: 0 4px 14px rgba(22,20,19,.06), 0 1px 3px rgba(22,20,19,.04);
  --shadow-3: 0 14px 32px rgba(22,20,19,.10), 0 4px 10px rgba(22,20,19,.05);

  --ease-out:  cubic-bezier(.2, .7, .2, 1);
  --ease-expo: cubic-bezier(.16, 1, .3, 1);
  --dur-base:  220ms;
  --dur-slow:  420ms;

  /* Aligned to design system — was 100 */
  --z-nav:   200;
  --z-float: 90;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: var(--tracking-display);
  line-height: var(--lh-heading);
  text-wrap: balance;
}
p { text-wrap: pretty; }
[hidden] { display: none !important; }

/* Italic accent — brand signature move */
h1 em.accent, h2 em.accent {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}
/* On dark hero: lighter terracotta so it reads against near-black */
.hero h1 em.accent {
  color: #E8856A;
}

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

/* ── LAYOUT ─────────────────────────────────────────────────── */
.wrap { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-pad); }

.skip {
  position: absolute; top: -100%; left: 1rem;
  background: var(--ink-900); color: var(--fg-on-dark);
  padding: .5rem 1rem; border-radius: var(--radius-2);
  font-size: var(--fs-caption); z-index: 9999;
}
.skip:focus { top: 1rem; }

/* ── EYEBROW ────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-ui);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-500);
}

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
[data-reveal] {
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
}
.js-reveal [data-reveal] { opacity: 0; transform: translateY(20px); }
.js-reveal [data-reveal].visible { opacity: 1; transform: none; }
.js-reveal [data-reveal]:nth-child(2) { transition-delay: .08s; }
.js-reveal [data-reveal]:nth-child(3) { transition-delay: .16s; }
.js-reveal [data-reveal]:nth-child(4) { transition-delay: .24s; }
.js-reveal [data-reveal]:nth-child(5) { transition-delay: .32s; }
.js-reveal [data-reveal]:nth-child(6) { transition-delay: .40s; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-ui); font-weight: 600;
  font-size: var(--fs-body-sm); letter-spacing: .01em;
  border-radius: var(--radius-2); border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  position: relative; overflow: visible;
  transition:
    background var(--dur-base) var(--ease-out),
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-expo);
}
.btn:active { transform: scale(0.98); }
.btn:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}

.btn--fire {
  background: #171717; color: #fff; border-color: #171717;
}
.btn--fire:hover {
  background: transparent; color: #171717; border-color: #171717;
  box-shadow: var(--shadow-2);
}
.hero .btn--fire {
  background: #f4ddcd; color: #171717; border-color: #f4ddcd;
}
.hero .btn--fire:hover {
  background: transparent; color: #f4ddcd; border-color: #f4ddcd;
  box-shadow: var(--shadow-2);
}

/* WhatsApp — full green: used only in booking form where it's the primary alt */
.btn--wa {
  background: var(--whatsapp); color: #fff; border-color: var(--whatsapp);
}
.btn--wa:hover {
  background: var(--whatsapp-dk); border-color: var(--whatsapp-dk);
  box-shadow: var(--shadow-2);
}

/* WhatsApp ghost — for dark backgrounds (hero). Icon stays green; button stays quiet. */
.btn--wa-ghost {
  background: transparent;
  color: var(--fg-on-dark);
  border-color: rgba(250,247,242,.28);
}
.btn--wa-ghost:hover {
  background: rgba(250,247,242,.07);
  border-color: rgba(250,247,242,.5);
  box-shadow: none;
}
.btn--wa-ghost svg { color: var(--whatsapp); }

/* WhatsApp secondary — for light backgrounds (booking form). Outlined, not flooded. */
.btn--wa-secondary {
  background: transparent;
  color: var(--ink-700);
  border-color: rgba(37,211,102,.35);
}
.btn--wa-secondary:hover {
  background: rgba(37,211,102,.07);
  border-color: rgba(37,211,102,.65);
  box-shadow: none;
}
.btn--wa-secondary svg { color: var(--whatsapp); }

.btn--ghost-dark {
  background: transparent; color: var(--fg-on-dark);
  border-color: rgba(250,247,242,.25);
}
.btn--ghost-dark:hover {
  background: rgba(250,247,242,.08); border-color: rgba(250,247,242,.45);
}

.btn--xl { padding: 1.0625rem 2.25rem; font-size: 1rem; }
.btn--lg { padding: .875rem 1.875rem; }
.btn--md { padding: .6875rem 1.375rem; }
.btn--sm { padding: .5rem 1rem; font-size: .8125rem; }

/* Floating CTA pulse ring */
.float-cta.visible .btn--fire::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(23,23,23,.4);
  animation: pulse-ring 2.8s var(--ease-expo) 1.4s infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: .65; }
  65%  { transform: scale(1.24); opacity: 0;   }
  100% { transform: scale(1.24); opacity: 0;   }
}

/* ── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
  background: var(--bg-inverse);
  padding: .5rem var(--container-pad);
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-4); flex-wrap: wrap;
  font-family: var(--font-mono); font-size: .6875rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(250,247,242,.45);
}
.topbar a { color: rgba(250,247,242,.65); transition: color var(--dur-base) var(--ease-out); }
.topbar a:hover { color: var(--fg-on-dark); }
.topbar__sep { width: 3px; height: 3px; background: rgba(250,247,242,.2); border-radius: 50%; flex-shrink: 0; }
.topbar__live { display: flex; align-items: center; gap: var(--space-2); color: rgba(250,247,242,.65); }
.topbar__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta); flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

/* ── NAV ────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--dur-base) var(--ease-out),
    box-shadow    var(--dur-base) var(--ease-out);
}
.site-nav--scrolled {
  border-color: rgba(22,20,19,.07);
  box-shadow: 0 2px 24px rgba(22,20,19,.07);
}
.nav__inner {
  display: flex; align-items: center; gap: var(--space-4);
  padding-block: .875rem;
}
.nav__logo img { height: 30px; width: auto; display: block; }

.nav__links {
  display: flex; align-items: center; gap: var(--space-5);
  margin-left: var(--space-8);
}
.nav__links a {
  font-family: var(--font-ui); font-size: .9rem; font-weight: 500;
  color: var(--ink-700); position: relative; padding-bottom: 2px;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1.5px; background: var(--ink-900);
  transform: scaleX(0); transform-origin: left center;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; border-radius: 2px; }

.nav__cta { margin-left: auto; }

.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--ink-900); padding: var(--space-2); margin-left: auto;
}
.nav__toggle:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; border-radius: var(--radius-2); }

.nav__panel {
  display: none;
  padding: var(--space-4) var(--container-pad) var(--space-6);
  border-top: 1px solid rgba(22,20,19,.07);
  background: var(--paper);
}
.nav__panel.is-open { display: block; }
.nav__panel ul { display: flex; flex-direction: column; gap: var(--space-4); }
.nav__panel a:not(.btn) { font-family: var(--font-ui); font-size: 1rem; font-weight: 500; color: var(--ink-700); }
.nav__panel .nav__book-cta { margin-top: var(--space-2); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: url('images/gallery/gallery-04.jpg') center/cover no-repeat;
  background-color: var(--bg-inverse);
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: clamp(3rem, 7vw, 6rem) var(--container-pad);
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(199,90,60,.28) 0%, transparent 65%),
    radial-gradient(ellipse 55% 35% at 50% 110%, rgba(199,90,60,.14) 0%, transparent 65%),
    linear-gradient(rgba(13,12,11,.76) 0%, rgba(13,12,11,.62) 60%, rgba(13,12,11,.52) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 760px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

/* Co-brand */
.hero__cobrand {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-6); margin-bottom: var(--space-8);
}
.hero__bce-logo {
  height: 72px; width: auto;
  /* Real logo colours — no inversion. Drop-shadow lifts it off the dark bg. */
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.7));
  opacity: 1;
}
.hero__cobrand-sep {
  font-family: var(--font-ui); font-size: 1.25rem; font-weight: 200;
  color: rgba(250,247,242,.2); line-height: 1; flex-shrink: 0;
}
.hero__unidus-logo {
  height: 34px; width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0,0,0,.55));
  opacity: .9;
}

/* Event badge */
.hero__event-badge {
  display: inline-flex; align-items: stretch;
  border: 1px solid rgba(199,90,60,.4);
  border-radius: var(--radius-3);
  background: rgba(199,90,60,.1);
  margin-bottom: var(--space-10);
  overflow: hidden;
}
.hero__event-badge > span {
  padding: .6875rem var(--space-5);
  font-family: var(--font-ui); font-weight: 500;
  font-size: .9375rem; letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
}
.hero__event-badge > span + span {
  border-left: 1px solid rgba(199,90,60,.25);
}
.badge-booth { color: var(--fg-on-dark); font-weight: 700 !important; }
.badge-loc   { color: rgba(250,247,242,.65); }
.badge-date  { color: #E8856A; font-weight: 700 !important; }

/* Headline */
.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.375rem);
  color: var(--fg-on-dark);
  margin-bottom: var(--space-5);
  line-height: 1.12;
}

/* Sub */
.hero__sub {
  font-size: var(--fs-body-lg);
  color: rgba(250,247,242,.72);
  line-height: var(--lh-body);
  max-width: 540px;
  margin: 0 auto var(--space-10);
}

/* Stats bar — editorial floating row.
   Removed the glassmorphism container; numbers breathe against the hero bg.
   Horizontal rules above/below give structure without boxing. */
.hero__stats {
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 0 auto var(--space-10);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(250,247,242,.12);
  border-bottom: 1px solid rgba(250,247,242,.12);
}
.hero__stat {
  flex: 1; padding: 0 var(--space-4);
  display: flex; flex-direction: column;
  align-items: center; gap: var(--space-2);
  border-right: 1px solid rgba(250,247,242,.1);
  cursor: default;
}
.hero__stat:last-child { border-right: none; }
/* No translateY hover lift */
.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3vw + .25rem, 2.75rem);
  font-weight: 500; letter-spacing: -.02em;
  color: var(--fg-on-dark); line-height: 1;
}
.hero__stat-num sup { font-size: .55em; vertical-align: super; }
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: .75rem; letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(250,247,242,.55);
  line-height: 1.6; text-align: center;
}

/* CTAs */
.hero__actions {
  display: flex; gap: var(--space-3);
  justify-content: center; flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

/* Timings */
.hero__timings {
  display: flex; gap: var(--space-6);
  justify-content: center; flex-wrap: wrap;
}
.hero__timing {
  display: flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-mono); font-size: .8125rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(250,247,242,.7);
}
.hero__timing svg { color: var(--terracotta); opacity: .85; flex-shrink: 0; }

/* Booth number underline animation */
.booth-num, .bce-mark {
  position: relative;
  display: inline-block;
}
.booth-num::after, .bce-mark::after {
  content: '';
  position: absolute;
  left: -.04em; right: -.04em; bottom: -.16em;
  height: 8px;
  background: rgba(199,90,60,.36);
  border-radius: 1px;
  transform-origin: left center;
  transform: scaleX(1);
  transition: transform .85s var(--ease-expo) .05s;
}
.booth-num::after { transition-delay: .3s; }
.js-reveal .booth-num::after,
.js-reveal .bce-mark::after { transform: scaleX(0); }
.js-reveal [data-reveal].visible .booth-num::after,
.js-reveal [data-reveal].visible .bce-mark::after { transform: scaleX(1); }

/* ── PRODUCTS ───────────────────────────────────────────────── */
.products {
  background: var(--paper);
  padding-block: var(--section-y);
}
.products__head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: var(--space-8);
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.products__head h2 { font-size: var(--fs-h2); }
.products__note {
  font-size: var(--fs-body-sm); color: var(--ink-500);
  max-width: 260px; text-align: right; line-height: 1.6;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Product card */
.prod-card {
  background: #fff;
  border-radius: var(--radius-3);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  border: 1px solid rgba(22,20,19,.06);
  transition: box-shadow var(--dur-base) var(--ease-out);
}
/* No translateY lift — image zoom only */
.prod-card:hover { box-shadow: var(--shadow-3); }

.prod-card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.prod-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease-out);
}
.prod-card:hover .prod-card__img img { transform: scale(1.04); }

.prod-card__body { padding: var(--space-5) var(--space-5) var(--space-6); }
.prod-card__tag {
  font-family: var(--font-mono); font-size: .625rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: var(--space-2);
}
.prod-card__name {
  font-family: var(--font-display);
  font-size: 1.1875rem; font-weight: 500;
  color: var(--ink-900); margin-bottom: var(--space-2); line-height: 1.25;
}
/* Removed hover underline — h3 is not a link */
.prod-card__desc { font-size: .875rem; color: var(--ink-500); line-height: 1.58; }

/* Featured: Pet Panel — 2 columns, image left */
.prod-card--featured {
  grid-column: span 2;
  display: flex; flex-direction: row;
  border-radius: var(--radius-4);
}
.prod-card--featured .prod-card__img {
  width: 52%; flex-shrink: 0; aspect-ratio: auto; min-height: 260px;
}
.prod-card--featured .prod-card__body {
  padding: var(--space-8);
  display: flex; flex-direction: column; justify-content: center;
}
.prod-card--featured .prod-card__name {
  font-size: 1.5rem; margin-bottom: var(--space-3);
}
.prod-card--featured .prod-card__desc {
  font-size: var(--fs-body-sm); line-height: 1.68; margin-bottom: var(--space-5);
}

/* Wide: Acoustic Dividers — full width, image right */
.prod-card--wide {
  grid-column: span 3;
  display: flex; flex-direction: row-reverse;
}
.prod-card--wide .prod-card__img {
  width: 40%; flex-shrink: 0; aspect-ratio: auto; min-height: 220px;
}
.prod-card--wide .prod-card__body {
  padding: var(--space-8);
  display: flex; flex-direction: column; justify-content: center;
}

/* ── WHY VISIT ──────────────────────────────────────────────── */
.visit {
  background: var(--peach-mist);
  padding-block: var(--section-y);
}
.visit__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.visit__head h2 { font-size: var(--fs-h2); }

.visit__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  counter-reset: visit;
}
.visit__item {
  display: flex; flex-direction: column; gap: 0;
  counter-increment: visit;
  background: rgba(255,255,255,.55);
  border-radius: var(--radius-4);
  padding: var(--space-6);
  transition: box-shadow var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.visit__item::before {
  content: counter(visit, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500; line-height: 1;
  color: rgba(199,90,60,.3);
  display: block;
  margin-bottom: var(--space-3);
}
.visit__item:hover {
  box-shadow: 0 8px 28px rgba(22,20,19,.10), 0 2px 8px rgba(22,20,19,.05);
  background: rgba(255,255,255,.82);
}

/* Staggered reveal */
.js-reveal .visit__item[data-reveal]:nth-child(2) { transition-delay: .12s; }
.js-reveal .visit__item[data-reveal]:nth-child(3) { transition-delay: .24s; }

.visit__item h3 {
  font-size: 1.25rem; color: var(--ink-900);
  line-height: 1.28; margin-bottom: var(--space-2);
}
.visit__item p { font-size: .9rem; color: var(--ink-500); line-height: 1.65; }

/* ── BOOKING ────────────────────────────────────────────────── */
.booking {
  background: #fff;
  padding-block: var(--section-y);
}
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.booking__info .eyebrow { margin-bottom: var(--space-3); }
.booking__info h2 { margin-bottom: var(--space-4); }
.bce-mark { font-weight: 700; }
.booking__info > p {
  font-size: var(--fs-body-sm); color: var(--ink-500);
  line-height: var(--lh-body); margin-bottom: var(--space-8);
}
.booking__detail {
  display: flex; gap: var(--space-3); align-items: flex-start; margin-bottom: var(--space-4);
}
.booking__detail svg { flex-shrink: 0; color: var(--terracotta); margin-top: 2px; }
.booking__detail strong { display: block; font-weight: 600; font-size: var(--fs-body-sm); }
.booking__detail span  { color: var(--ink-500); font-size: .875rem; }
.booking__note {
  margin-top: var(--space-6); padding: var(--space-4) var(--space-5);
  background: var(--terra-mist);
  border: 1px solid var(--terra-border);
  border-radius: var(--radius-3);
  font-size: .875rem; color: var(--ink-500); line-height: 1.65;
}

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.fg { margin-bottom: var(--space-5); }
.fg label {
  display: block;
  font-family: var(--font-ui); font-size: var(--fs-caption);
  font-weight: 700; color: var(--ink-900); margin-bottom: var(--space-2);
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: .75rem 1rem;
  font-family: var(--font-body); font-size: var(--fs-body-sm);
  color: var(--ink-900); background: var(--paper);
  border: 1.5px solid rgba(22,20,19,.12);
  border-radius: var(--radius-2); appearance: none;
  transition:
    border-color var(--dur-base) var(--ease-out),
    outline-color var(--dur-base) var(--ease-out);
  outline: 3px solid transparent; outline-offset: 2px;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--ink-300); }
.fg input:focus-visible,
.fg select:focus-visible,
.fg textarea:focus-visible {
  border-color: var(--terracotta);
  outline-color: rgba(199,90,60,.25);
}
.fg textarea { resize: vertical; min-height: 80px; }

.fg-sel { position: relative; }
.fg-sel::after {
  content: ''; position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%); width: 10px; height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B655F' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  pointer-events: none;
}

.form-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-6); }
.form-note { margin-top: var(--space-4); font-size: .8rem; color: var(--ink-300); line-height: 1.55; }

/* Form success */
.form-success {
  text-align: center;
  padding: var(--space-12) var(--space-8);
  border: 1px solid rgba(22,20,19,.08);
  border-radius: var(--radius-4);
  background: var(--paper);
}
.form-success__check {
  width: 56px; height: 56px;
  background: var(--terra-mist); border: 1px solid var(--terra-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--terracotta);
}
.form-success__title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
  color: var(--ink-900); margin-bottom: var(--space-3);
}
.form-success__sub {
  color: var(--ink-500); font-size: var(--fs-body-sm);
  line-height: 1.65; margin-bottom: var(--space-6);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.bce-footer { background: var(--bg-inverse); padding-block: var(--space-10); }
.bce-footer__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6); flex-wrap: wrap;
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(250,247,242,.07);
  margin-bottom: var(--space-6);
}
.bce-footer__logo img {
  height: 28px; width: auto;
  filter: brightness(0) invert(1); opacity: .75;
}
.bce-footer__contact { display: flex; gap: var(--space-5); flex-wrap: wrap; align-items: center; }
.bce-footer__contact a {
  font-size: var(--fs-body-sm);
  /* Raised from .42 — was ~3.9:1, now ~6:1 */
  color: rgba(250,247,242,.65);
  transition: color var(--dur-base) var(--ease-out);
}
.bce-footer__contact a:hover { color: var(--fg-on-dark); }
.bce-footer__event {
  font-family: var(--font-mono); font-size: .625rem;
  letter-spacing: .08em; text-transform: uppercase;
  /* Raised from .26 — was ~2.2:1, now ~4.6:1 */
  color: rgba(250,247,242,.55);
  line-height: 1.9; text-align: right;
}
.bce-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); flex-wrap: wrap;
}
.bce-footer__copy {
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .07em; color: rgba(250,247,242,.3);
}
.bce-footer__links { display: flex; gap: var(--space-5); }
.bce-footer__links a {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .07em;
  color: rgba(250,247,242,.3);
  transition: color var(--dur-base) var(--ease-out);
}
.bce-footer__links a:hover { color: rgba(250,247,242,.65); }

/* ── FLOATING CTA ───────────────────────────────────────────── */
.float-cta {
  position: fixed; bottom: var(--space-6); right: var(--space-6);
  z-index: var(--z-float);
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  pointer-events: none;
}
.float-cta.visible { opacity: 1; transform: none; pointer-events: auto; }
/* Peach fill so the button reads against both the light page and the dark footer */
.float-cta .btn--fire {
  background: var(--peach-mist);
  color: var(--ink-900);
  border-color: var(--peach-mist);
  box-shadow: var(--shadow-3);
}
.float-cta .btn--fire:hover {
  background: var(--peach-deep);
  border-color: var(--peach-deep);
  color: var(--ink-900);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }

  .prod-card--featured { flex-direction: column; }
  .prod-card--featured .prod-card__img { width: 100%; aspect-ratio: 16 / 9; min-height: auto; }
  .prod-card--featured .prod-card__body { padding: var(--space-5) var(--space-5) var(--space-6); justify-content: flex-start; }
  .prod-card--featured .prod-card__name { font-size: 1.25rem; }

  .prod-card--wide { grid-column: span 2; flex-direction: column; }
  .prod-card--wide .prod-card__img { width: 100%; aspect-ratio: 16 / 9; min-height: auto; }
  .prod-card--wide .prod-card__body { padding: var(--space-5) var(--space-5) var(--space-6); justify-content: flex-start; }
}

@media (max-width: 860px) {
  .visit__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .booking__grid { grid-template-columns: 1fr; }
  .booking__note { display: none; }
  .products__note { display: none; }
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__toggle { display: flex; }
}

@media (max-width: 620px) {
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card--featured { grid-column: span 1; }
  .prod-card--wide     { grid-column: span 1; }

  .hero { padding-block: 2rem; }
  .hero__cobrand { margin-bottom: var(--space-5); }
  .hero h1 { margin-bottom: var(--space-4); }
  .hero__sub  { margin-bottom: var(--space-5); }
  .hero__stats { flex-wrap: wrap; max-width: 100%; margin-bottom: var(--space-5); padding: var(--space-4) 0; align-content: flex-start; }
  .hero__stat  { min-width: 48%; flex: none; gap: var(--space-1); padding-block: var(--space-3); }
  .hero__stat:nth-child(2) { border-right: none; }
  .hero__stat:nth-child(3) { border-top: 1px solid rgba(250,247,242,.1); }
  .hero__stat:nth-child(4) { border-top: 1px solid rgba(250,247,242,.1); border-right: none; }

  .hero__timings { flex-direction: column; align-items: center; gap: var(--space-3); }

  .form-row { grid-template-columns: 1fr; }
  .float-cta { bottom: var(--space-4); right: var(--space-4); }
  .bce-footer__event { display: none; }
  .topbar { display: none; }
}

/* Badge hidden at ≤480px — topbar already hides at 620px,
   so on mobile the cobrand lockup and h1 lead directly */
@media (max-width: 480px) {
  .hero__event-badge { display: none; }
}
