/* ==========================================================================
   Ovation Catering Co., Powered by Gušt — Simcoe County, Ontario
   "Extraordinary Experiences. Impeccably Crafted."
   Style: Editorial Grid / Magazine  ·  Palette: Black + ivory + gold
   Type:  Playfair Display (display) / Cormorant Garamond (script accents)
          / Karla (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Ink / neutrals — warmed toward the brand's ivory rather than a cool grey */
  --ink-950:  #0B0907;
  --ink-900:  #17130F;
  --ink-800:  #26201A;
  --ink-700:  #443A2E;
  --stone-600:#5A5047;
  --stone-400:#A79C8E;
  --stone-300:#D8CFC2;
  --stone-200:#E8E0D3;
  --paper:    #FAF7F1;
  --paper-2:  #F3ECE0;
  --white:    #FFFDF9;

  /* Gold — --gold clears AA on all three light surfaces (paper 5.3:1, the darker
     ivory paper-2 4.8:1, card white 5.6:1). --gold-400 is for dark surfaces only. */
  --gold:      #96590A;
  --gold-500:  #B8860B;
  --gold-400:  #D4AF37;
  --gold-300:  #E8C874;
  --gold-tint: rgba(161, 98, 7, .08);

  /* Semantic */
  --color-bg:        var(--paper);
  --color-fg:        var(--ink-950);
  --color-muted-fg:  var(--stone-600);
  --color-card:      var(--white);
  --color-border:    var(--stone-200);
  --color-accent:    var(--gold);
  --color-on-accent: var(--white);
  --color-danger:    #B91C1C;
  --color-success:   #15803D;

  /* Spacing — spacious scale (density 3/10) */
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --shell: 1200px;

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-script: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --t-display: clamp(2.5rem, 6.2vw, 4.5rem);
  --t-h2:      clamp(1.95rem, 4.2vw, 3rem);
  --t-h3:      clamp(1.15rem, 1.9vw, 1.4rem);
  --t-lede:    clamp(1.02rem, 1.4vw, 1.15rem);
  --t-body:    1rem;
  --t-sm:      .9rem;
  --t-xs:      .78rem;

  /* Shape & depth */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(12,10,9,.06), 0 2px 8px rgba(12,10,9,.04);
  --shadow-md: 0 4px 12px rgba(12,10,9,.07), 0 12px 32px rgba(12,10,9,.06);
  --shadow-lg: 0 12px 28px rgba(12,10,9,.10), 0 32px 64px rgba(12,10,9,.10);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur-fast: 160ms;
  --dur: 260ms;
  --dur-slow: 420ms;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* keep anchored sections clear of the sticky header */
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 var(--space-2);
  text-wrap: balance;
}

p { margin: 0 0 var(--space-2); }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold-300); color: var(--ink-950); }

/* Focus — never removed, always visible (WCAG 2.4.7 / 2.4.13) */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.section-dark :focus-visible,
.hero :focus-visible,
.site-footer :focus-visible { outline-color: var(--gold-400); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink-950);
  color: var(--gold-300);
  padding: .85rem 1.25rem;
  font-weight: 600;
  border-radius: 0 0 var(--r-md) 0;
}
.skip-link:focus { left: 0; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --------------------------------------------------------------------------
   3. Shared pieces
   -------------------------------------------------------------------------- */

/* Gold kicker label — small caps, rule on either side */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 var(--space-2);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker::before,
.kicker::after {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
/* Left-aligned kickers get a single trailing rule; centred ones get both. */
.kicker::before { display: none; }
.center .kicker::before,
.hero-inner .kicker::before { display: block; }
.kicker-light { color: var(--gold-400); }

.section { padding-block: var(--section-y); }
.section-paper { background: var(--paper-2); }
.section-dark {
  background: var(--ink-950);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
/* subtle gold wash so the dark bands don't read flat */
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 55% at 15% 0%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(60% 50% at 90% 100%, rgba(161,98,7,.10), transparent 65%);
  pointer-events: none;
}
.section-dark > * { position: relative; z-index: 1; }

.section-head { max-width: 46rem; margin-bottom: var(--space-5); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-title { font-size: var(--t-h2); margin-bottom: var(--space-2); }
.section-lede {
  font-size: var(--t-lede);
  color: var(--color-muted-fg);
  max-width: 42rem;
  margin-inline: auto;
}
.section-dark .section-lede { color: var(--stone-400); }

.link-gold {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color var(--dur-fast) var(--ease);
}
.section-dark .link-gold { color: var(--gold-400); }
.link-gold:hover { color: var(--gold-500); }
.section-dark .link-gold:hover { color: var(--gold-300); }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  --btn-py: .95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;              /* touch target */
  padding: var(--btn-py) 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.btn:active { transform: scale(.975); }

.btn-gold {
  background: var(--gold);
  color: var(--color-on-accent);
  box-shadow: 0 2px 12px rgba(161,98,7,.28);
}
.btn-gold:hover {
  background: var(--ink-950);
  color: var(--gold-300);
  box-shadow: 0 6px 20px rgba(12,10,9,.28);
}
.section-dark .btn-gold:hover,
.hero .btn-gold:hover {
  background: var(--gold-300);
  color: var(--ink-950);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(250,250,249,.35);
}
/* Over the hero photo the button needs its own dark ground — the plate beneath it
   is bright enough to drop white label text below 4.5:1 otherwise. */
.hero .btn-ghost {
  background: rgba(12,10,9,.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-color: rgba(232,200,116,.45);
}
.hero .btn-ghost:hover { background: rgba(12,10,9,.8); }
.btn-ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  background: rgba(212,175,55,.08);
}

.btn-sm { --btn-py: .65rem; min-height: 44px; padding: var(--btn-py) 1.35rem; font-size: var(--t-xs); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* --- Media frames --------------------------------------------------------- */
/* Every photo crops to its frame and eases into a slow zoom on hover.
   The dark background holds the space while the image decodes. */
.split-frame,
.dish-media,
.gal {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--r-md);
  background: var(--ink-900);
}
.split-frame img,
.dish-media img,
.gal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter var(--dur-slow) var(--ease);
}

.split-frame {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(161,98,7,.28);
}
.dish-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.gal { height: 100%; }

/* Slow push-in on hover — the one place the site uses scale as a flourish */
.split-frame:hover img,
.dish-card:hover .dish-media img,
.gal:hover img { transform: scale(1.07); }

/* Gold veil that warms the gallery tiles as they are hovered */
.gal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(161,98,7,0) 45%, rgba(161,98,7,.35) 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.gal:hover::after { opacity: 1; }

/* --------------------------------------------------------------------------
   4. Header & navigation
   -------------------------------------------------------------------------- */
/* Solid black — no translucency, so the hero behind it can never tint the bar grey. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink-950);
  border-bottom: 1px solid rgba(212,175,55,.16);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
/* Once scrolled the bar lifts off the page with a shadow rather than a colour change. */
.site-header.is-scrolled {
  border-bottom-color: rgba(212,175,55,.3);
  box-shadow: 0 8px 28px rgba(0,0,0,.55);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  margin-right: auto;
}
/* viewBox is 90×112, so the mark is taller than it is wide */
.logo-mark { width: 39px; height: 48px; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.logo-sub {
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: .34rem;
}
.logo-tag {
  font-size: .5rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone-600);
  margin-top: .3rem;
}

.nav-desktop ul { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav-link {
  position: relative;
  display: inline-block;
  padding: .5rem 0;
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--stone-300);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.is-active { color: var(--gold-300); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-toggle-bars { display: block; width: 20px; height: 14px; position: relative; }
.nav-toggle-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold-300);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 6px; }
.nav-toggle-bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 76px 0 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--gutter) calc(var(--space-5) + env(safe-area-inset-bottom));
  background: var(--ink-950);
  overflow-y: auto;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav ul { display: flex; flex-direction: column; align-items: center; gap: var(--space-1); }
.mobile-nav a {
  display: block;
  padding: .85rem 1.5rem;
  min-height: 48px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--paper);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.mobile-nav a:hover { color: var(--gold-300); }
.mobile-nav-meta {
  font-size: var(--t-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone-600);
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* enough height for the photo to read as a photo, capped so the page below
     is still discoverable without scrolling blind */
  min-height: min(86vh, 780px);
  background: var(--ink-950);
  color: var(--paper);
  padding-block: clamp(4rem, 10vw, 7rem) 0;
  overflow: hidden;
}
/* z-index:0 makes this a stacking context, so the photo and scrim inside it can
   never paint over the hero copy. */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(212,175,55,.16), transparent 65%),
    radial-gradient(45% 45% at 12% 78%, rgba(161,98,7,.16), transparent 70%),
    linear-gradient(180deg, #14110F 0%, #0C0A09 70%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Chef's hands and the dark upper third sit behind the headline;
     the plate falls into the lower third, clear of the text */
  object-position: center 16%;
  /* light touch — the photo's warm copper tones are already on-palette */
  filter: grayscale(.12) contrast(1.04) saturate(1.05);
}

/* Darkens the photo enough that white headline text clears AA at any crop.
   Heaviest at the top, where the headline sits over the brightest part of the plate. */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(12,10,9,.94) 0%,
      rgba(12,10,9,.78) 22%,
      rgba(12,10,9,.52) 62%,
      rgba(12,10,9,.86) 100%),
    radial-gradient(68% 52% at 50% 30%, rgba(12,10,9,.58), rgba(12,10,9,.12) 78%);
}

/* fine gold hairline grid — editorial texture, not decoration for its own sake */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(212,175,55,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(75% 65% at 50% 35%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(75% 65% at 50% 35%, #000 0%, transparent 78%);
}

.hero-inner { position: relative; z-index: 1; text-align: center; padding-bottom: var(--space-6); }
.hero-title {
  font-size: var(--t-display);
  font-weight: 500;
  margin-bottom: var(--space-3);
  letter-spacing: -.02em;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(100deg, var(--gold-300), var(--gold-400) 45%, var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  max-width: 40rem;
  margin: 0 auto var(--space-4);
  font-size: var(--t-lede);
  color: var(--stone-300);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

/* A borderless row that floats on the photograph rather than boxing it off.
   No opaque cells, no grid lines — separation comes from space and a single
   gold rule that fades out at both ends. */
.hero-stats {
  --stat-gap: clamp(1.75rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: var(--stat-gap);
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem) clamp(2.25rem, 5vw, 3.5rem);
}
/* The grounding gradient must run edge to edge. This element is width-capped by
   .shell, so painting the gradient on it directly leaves a visible seam at each
   shell edge — hence the full-bleed pseudo-element. */
.hero-stats::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(12,10,9,0) 0%,
    rgba(12,10,9,.50) 55%,
    rgba(12,10,9,.72) 100%);
}
/* hairline that dissolves at the edges instead of a hard border */
.hero-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212,175,55,.40) 22%,
    rgba(212,175,55,.40) 78%,
    transparent);
}

.hero-stats li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
}

/* Separator echoes the diamond in the logo mark */
.hero-stats li + li::before {
  content: "";
  position: absolute;
  top: .8rem;
  left: calc(var(--stat-gap) / -2);
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  background: var(--gold-400);
  opacity: .5;
  transform: rotate(45deg);
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-300);
  letter-spacing: .01em;
}
.hero-stats span {
  font-size: var(--t-xs);          /* 12.5px — stays above the 12px legibility floor */
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone-300);
}

/* --------------------------------------------------------------------------
   6. About
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-text p { color: var(--color-muted-fg); max-width: 34rem; }
.split-media { position: relative; }
.split-badge {
  position: absolute;
  right: -1rem;
  bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  width: 110px; height: 110px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  line-height: 1.1;
}
.split-badge-num { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.split-badge-year { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }

/* The experience block reuses .split-frame but with a landscape photo */
.experience-media .split-frame { aspect-ratio: 4 / 3; }

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.pillar-icon { width: 26px; height: 26px; color: var(--gold); margin-bottom: .55rem; }
.pillar h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.pillar p { font-size: var(--t-sm); color: var(--color-muted-fg); }

/* --------------------------------------------------------------------------
   7. Menu
   -------------------------------------------------------------------------- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.dish-card {
  background: rgba(28,25,23,.6);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.dish-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,.42);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.dish-body { padding: var(--space-3); }
.dish-tag {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: .5rem;
}
.dish-body h3 { font-size: var(--t-h3); color: var(--paper); margin-bottom: .4rem; }
.dish-body > p:last-child { font-size: var(--t-sm); color: var(--stone-400); }

/* Tabs */
.menu-tabs { max-width: 60rem; margin-inline: auto; }
.tablist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: var(--space-4);
}
.tab {
  min-height: 44px;
  padding: .7rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: var(--r-pill);
  color: var(--stone-300);
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.tab:hover { color: var(--gold-300); border-color: rgba(212,175,55,.55); }
.tab[aria-selected="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.tabpanel[hidden] { display: none; }
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-1) var(--space-5);
}
.menu-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "name dots" "desc desc";
  align-items: baseline;
  gap: 0 .6rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(212,175,55,.13);
}
.mi-name {
  grid-area: name;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--paper);
}
.mi-dot {
  grid-area: dots;
  height: 1px;
  background-image: linear-gradient(90deg, rgba(212,175,55,.4) 33%, transparent 0);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  transform: translateY(-3px);
}
.mi-desc {
  grid-area: desc;
  font-size: var(--t-sm);
  color: var(--stone-400);
  margin-top: .2rem;
}

.menu-foot {
  max-width: 42rem;
  margin: var(--space-5) auto 0;
  text-align: center;
  font-size: var(--t-sm);
  color: var(--stone-400);
}
.menu-foot .link-gold { margin-left: .4rem; white-space: nowrap; }

/* --------------------------------------------------------------------------
   8. Services
   -------------------------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: var(--space-3);
}
.service-card {
  padding: var(--space-4) var(--space-3);
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(161,98,7,.4);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 40px; height: 40px;
  padding: 7px;
  color: var(--gold);
  background: var(--gold-tint);
  border-radius: 50%;
  margin-bottom: var(--space-2);
}
.service-card h3 { font-size: var(--t-h3); }
.service-card > p { font-size: var(--t-sm); color: var(--color-muted-fg); }
.service-points {
  margin-top: var(--space-2);
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: .4rem;
}
.service-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--t-sm);
  color: var(--ink-700);
}
.service-points li::before {
  content: "";
  position: absolute;
  left: 0; top: .6em;
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   9. Gallery
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: var(--space-2);
}
/* 4 columns × 2 rows: the feature tile takes the left 2×2 block, the remaining
   four tiles fill the right half exactly — no gaps. */
.gal-a { grid-column: span 2; grid-row: span 2; }

/* --------------------------------------------------------------------------
   10. Testimonials
   -------------------------------------------------------------------------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--space-3);
}
.quote-card {
  margin: 0;
  padding: var(--space-4) var(--space-3);
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.quote-mark { width: 30px; height: 30px; color: var(--gold); opacity: .65; margin-bottom: var(--space-2); }
.quote-card blockquote { margin: 0 0 var(--space-3); }
.quote-card blockquote p {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink-800);
}
.quote-card figcaption {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-border);
}
.quote-name { font-weight: 700; font-size: var(--t-sm); }
.quote-role {
  font-size: var(--t-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   11. Contact
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.info-list { display: grid; gap: var(--space-3); }
.info-list li { display: flex; gap: var(--space-2); align-items: flex-start; }
.info-list svg {
  width: 38px; height: 38px;
  flex: none;
  padding: 8px;
  color: var(--gold-400);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50%;
}
.info-label {
  display: block;
  font-size: var(--t-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: .2rem;
}
.info-value {
  display: inline-block;
  min-height: 24px;
  padding-block: .2rem;
  color: var(--paper);
  font-size: 1.02rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}
a.info-value:hover { color: var(--gold-300); }

.info-note {
  margin-top: var(--space-4);
  padding: var(--space-3);
  background: rgba(212,175,55,.07);
  border-left: 2px solid var(--gold-400);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: var(--t-sm);
  color: var(--stone-300);
}
.info-note strong { color: var(--gold-300); }

/* --- Form ----------------------------------------------------------------- */
.form-wrap {
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  color: var(--color-fg);
}

.form-errors {
  margin-bottom: var(--space-3);
  padding: var(--space-2) var(--space-3);
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-left: 3px solid var(--color-danger);
  border-radius: var(--r-sm);
}
.form-errors[hidden] { display: none; }
.form-errors h3 {
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--color-danger);
  margin-bottom: .5rem;
}
.form-errors ul { display: grid; gap: .3rem; }
.form-errors a {
  font-size: var(--t-sm);
  color: var(--color-danger);
  text-underline-offset: 3px;
}

.quote-form { display: grid; gap: var(--space-3); }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
.field { display: flex; flex-direction: column; }

.field label {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink-800);
  margin-bottom: .45rem;
}
.req { color: var(--color-danger); }
.opt { font-weight: 400; color: var(--stone-600); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;                 /* touch target */
  padding: .75rem .9rem;
  font-family: var(--font-body);
  font-size: 1rem;                  /* 16px — prevents iOS zoom-on-focus */
  color: var(--color-fg);
  background: var(--paper);
  border: 1px solid var(--stone-300);
  border-radius: var(--r-sm);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2357534E' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  background-size: 18px;
  padding-right: 2.6rem;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--stone-400); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(161,98,7,.18);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--stone-400); }

.field-hint { font-size: var(--t-xs); color: var(--stone-600); margin: .4rem 0 0; }
.field-error {
  display: flex;
  align-items: flex-start;
  gap: .35rem;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--color-danger);
  margin: .4rem 0 0;
}
.field-error[hidden] { display: none; }
.field-error::before { content: "!"; flex: none; font-weight: 700; }

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--color-danger);
  background: #FFFBFB;
}
.field.has-error input:focus,
.field.has-error select:focus,
.field.has-error textarea:focus { box-shadow: 0 0 0 3px rgba(185,28,28,.16); }

/* honeypot — off-screen but not display:none, so bots still fill it */
.hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; }

.spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.is-sending .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-foot { font-size: var(--t-xs); color: var(--stone-600); margin: 0; }

.form-status { margin: 0; font-size: var(--t-sm); font-weight: 600; }
.form-status:empty { display: none; }
.form-status.is-ok {
  padding: var(--space-2);
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-left: 3px solid var(--color-success);
  border-radius: var(--r-sm);
  color: #14532D;
}
.form-status.is-bad {
  padding: var(--space-2);
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-left: 3px solid var(--color-danger);
  border-radius: var(--r-sm);
  color: #7F1D1D;
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink-950);
  color: var(--stone-400);
  padding-block: var(--space-6) var(--space-3);
  border-top: 1px solid rgba(212,175,55,.18);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--space-5);
}
.logo-footer { margin-right: 0; margin-bottom: var(--space-2); }
.footer-blurb { max-width: 26rem; font-size: var(--t-sm); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-3);
}
.footer-nav h2 {
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-2);
}
.footer-nav ul { display: grid; gap: .55rem; }
.footer-nav li { font-size: var(--t-sm); }
.footer-nav a {
  display: inline-block;
  padding: .45rem 0;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.footer-nav a:hover { color: var(--gold-300); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(212,175,55,.14);
  font-size: var(--t-xs);
}
.footer-bottom p { margin: 0; }
.social { display: flex; gap: .5rem; }
.social a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;      /* touch target */
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 50%;
  color: var(--stone-400);
  transition: color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.social svg { width: 18px; height: 18px; }
.social a:hover {
  color: var(--ink-950);
  background: var(--gold-400);
  border-color: var(--gold-400);
}

/* --------------------------------------------------------------------------
   13. Scroll reveal
   -------------------------------------------------------------------------- */
/* Hidden only once JS has confirmed it can reveal them again — if the script
   never runs, every section stays visible. */
.reveal { transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* --- Cascading children ---------------------------------------------------
   Containers marked [data-stagger] let their children arrive in sequence
   rather than as one block. Delays are assigned in js/main.js. */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.js [data-stagger] > * { opacity: 0; }
.js [data-stagger].is-in > * {
  animation: riseIn 620ms var(--ease) backwards;
  animation-delay: var(--stagger-delay, 0ms);
  opacity: 1;
}

/* --- Hero photo drift -----------------------------------------------------
   A very slow push-in. Long enough that it reads as atmosphere, not movement. */
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.13) translate3d(0, -1.5%, 0); }
}
.js .hero-photo { animation: heroDrift 28s var(--ease) infinite alternate; }

/* --- Menu panel change ---------------------------------------------------- */
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.js .tabpanel:not([hidden]) { animation: panelIn 400ms var(--ease); }

/* --- Light sweep across the gold buttons ---------------------------------- */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg,
    transparent, rgba(255,255,255,.38), transparent);
  transform: skewX(-22deg);
  transition: left 750ms var(--ease);
  pointer-events: none;
}
.btn-gold:hover::after,
.btn-gold:focus-visible::after { left: 150%; }

/* --- Kicker rules draw outward -------------------------------------------- */
.kicker::before,
.kicker::after { transition: width var(--dur-slow) var(--ease) 200ms; }
.js .reveal:not(.is-in) .kicker::before,
.js .reveal:not(.is-in) .kicker::after,
.js .reveal.kicker:not(.is-in)::before,
.js .reveal.kicker:not(.is-in)::after { width: 0; }

/* --------------------------------------------------------------------------
   13b. Ovation brand sections
   -------------------------------------------------------------------------- */

/* Gold italic emphasis inside a heading */
.title-gold {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(100deg, var(--gold-300), var(--gold-400) 45%, var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- "The meaning behind Ovation" ----------------------------------------- */
.meaning-inner { max-width: 44rem; margin-inline: auto; text-align: center; }
.meaning-inner .kicker { justify-content: center; }
.meaning-inner .kicker::before { display: block; }
.meaning-word {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1;
  margin-bottom: var(--space-3);
  background: linear-gradient(160deg, var(--gold-300), var(--gold-400) 45%, var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* hairline rules bracketing the word */
.meaning-word::before,
.meaning-word::after {
  content: "";
  display: block;
  width: min(220px, 45%);
  height: 1px;
  margin: 1.25rem auto;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.55), transparent);
}
.meaning-lede {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--stone-300);
  max-width: 34rem;
  margin-inline: auto;
}
.meaning-script {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  color: var(--gold-300);
  margin-block: var(--space-3);
}

/* --- Leadership ----------------------------------------------------------- */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  max-width: 52rem;
  margin-inline: auto;
}
.leader { text-align: center; }
/* Stand-in until real headshots are supplied — see README */
.leader-monogram {
  width: 132px;
  height: 132px;
  margin: 0 auto var(--space-3);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--ink-900), var(--ink-950));
  border: 1px solid rgba(212,175,55,.45);
  box-shadow: 0 0 0 6px rgba(161,98,7,.07);
}
.leader-monogram span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: .06em;
  background: linear-gradient(160deg, var(--gold-300), var(--gold-400) 50%, var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.leader-photo {
  width: 132px;
  height: 132px;
  margin: 0 auto var(--space-3);
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212,175,55,.45);
}
.leader h3 { font-size: 1.35rem; margin-bottom: .25rem; }
.leader-role {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.leader-bio { font-size: var(--t-sm); color: var(--color-muted-fg); max-width: 24rem; margin-inline: auto; }

.brand-quote {
  max-width: 44rem;
  margin: var(--space-6) auto 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.brand-quote p {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.5;
  color: var(--ink-800);
}

/* --- Menu extras ---------------------------------------------------------- */
.menu-note {
  text-align: center;
  font-size: var(--t-sm);
  color: var(--stone-400);
  margin-bottom: var(--space-3);
}
.menu-extra {
  margin-top: var(--space-4);
  padding: var(--space-3);
  border: 1px solid rgba(212,175,55,.28);
  border-radius: var(--r-md);
  text-align: center;
}
.menu-extra-title {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-300);
  margin-bottom: var(--space-2);
}
.chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem .6rem;
}
.chip-list li {
  padding: .4rem 1rem;
  font-size: var(--t-sm);
  color: var(--stone-300);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--r-pill);
}

/* --- Our approach --------------------------------------------------------- */
.approach { margin-top: var(--space-7); }
.approach-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--space-3);
  counter-reset: step;
}
.approach-list li {
  position: relative;
  padding-top: var(--space-3);
  border-top: 2px solid var(--gold-tint);
}
.approach-list li::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
}
.approach-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.approach-list h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.approach-list p { font-size: var(--t-sm); color: var(--color-muted-fg); }

/* --- The Ovation experience ----------------------------------------------- */
.experience {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.check-list { display: grid; gap: var(--space-3); margin-top: var(--space-4); }
.check-list li {
  position: relative;
  padding-left: 2.5rem;
}
/* gold check mark drawn with a rotated border, so no icon file is needed */
.check-list li::before {
  content: "";
  position: absolute;
  left: .4rem;
  top: .35rem;
  width: 8px;
  height: 14px;
  border: solid var(--gold-400);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(42deg);
}
.check-list h3 { font-size: 1.1rem; color: var(--paper); margin-bottom: .15rem; }
.check-list p { font-size: var(--t-sm); color: var(--stone-400); }

/* --- Clientele ------------------------------------------------------------ */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--space-4);
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}
.client svg {
  width: 46px;
  height: 46px;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.client h3 {
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-800);
}

/* --- Footer motto --------------------------------------------------------- */
.footer-motto {
  margin-top: var(--space-2);
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-300);
}

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .experience { grid-template-columns: 1fr; }
  .experience-media { max-width: 34rem; margin-inline: auto; }
  .split-media { max-width: 30rem; margin-inline: auto; }
  .split-badge { right: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  /* 2×2 on small screens — diamonds only make sense on a single row */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3) var(--space-2);
  }
  .hero-stats li + li::before { display: none; }
  /* 2 columns: feature tile across the top, then two clean rows of two */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gal-a { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 620px) {
  .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .menu-list { grid-template-columns: 1fr; }
  .tablist { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: .5rem; scrollbar-width: thin; }
  .tab { flex: none; }
  .footer-bottom { justify-content: center; text-align: center; }
  .split-badge { width: 78px; height: 78px; }
}

/* --------------------------------------------------------------------------
   15. Motion & print preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  /* everything arrives in its final state — no drift, no cascade, no zoom */
  .js [data-stagger] > *,
  .js [data-stagger].is-in > * { opacity: 1; animation: none; }
  .js .hero-photo { animation: none; }
  .split-frame:hover img,
  .dish-card:hover .dish-media img,
  .gal:hover img { transform: none; }
  .btn-gold::after { display: none; }
  .kicker::before, .kicker::after { width: 1.75rem; }
}

@media print {
  .site-header, .mobile-nav, .hero-bg, .nav-toggle, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .section-dark, .hero, .site-footer { background: #fff !important; color: #000 !important; }
}
