/* ═══════════════════════════════════════════════════════════════
   KRISP EVENTS — GLOBAL DESIGN SYSTEM
   Fortune 500 · Editorial Luxury · NYC Catering
═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Guard against any off-screen/decorative element creating horizontal scroll. */
html, body { overflow-x: hidden; }

:root {
  --cream:       #FCFBF8;   /* porcelain — section/card/form backgrounds (was green-tint #F3F6EF) */
  --warm-white:  #FFFFFF;   /* white — page + section backgrounds (leads the palette) */
  --charcoal:    #34322B;   /* warm ink — headlines + strong text */
  --mid-gray:    #6B6358;   /* secondary body text */
  --light-gray:  #E8EBE3;   /* neutral hairline borders on white */
  --gold:        #8E866F;   /* muted neutral — eyebrows / small labels (was green #3C5C2A) */
  --gold-light:  #C29A52;   /* honey — accents on dark surfaces (was sage #8FAF72) */
  --gold-pale:   #EAF1E0;   /* sage-pale — reserved for subtle hover accents only */
  --black:       #2A4A1E;   /* deep green — the one stats anchor band (was #233A2D) */
  --wine:        #4A1521;   /* rare punctuation accent */
  --forest:      #2A4A1E;   /* deep green — reserved: logo + anchor moments only */
  --forest-deep: #233A2D;   /* deepest green — footer anchor + mobile nav */
  --wine-deep:   #3A0F19;
  --deep:        #141414;
  --green:       #2A4A1E;   /* deep green — buttons & CTAs (champagne text) */
  --beige:       #C29A52;   /* honey — hairlines, numerals, card detailing */

  /* ── UNIFIED TYPE SCALE (serif headings · sans body) ── */
  --fs-h1: clamp(48px, 6.5vw, 92px);   /* page hero */
  --fs-h2: clamp(36px, 4.5vw, 60px);   /* section headline */
  --fs-display: clamp(34px, 4.5vw, 58px); /* big editorial statement */
  --fs-statement: clamp(28px, 3.5vw, 46px); /* first post-hero statement role (KP-10 census) */
  --lh-statement: 1.3;
  --fs-quote: clamp(26px, 3vw, 40px);  /* pull-quote / testimonial */
  --fs-card: 26px;                     /* card / tile title */
  --fs-card-lg: 40px;                  /* featured / oversized card title */
  --fs-list: 18px;                     /* dish / course / list-item title */
  --fs-numeral: 64px;                  /* big section stat / step figures */
  --fs-eyebrow: 10px;                  /* all eyebrows / labels */
  --ls-eyebrow: 0.22em;
  --fs-body: 15px;                     /* hero subs, intros, standard copy */
  --fs-small: 13px;                    /* card descriptions, meta, captions */
  --lh-h1: 1.0;
  --lh-h2: 1.1;
  --lh-display: 1.15;
  --lh-quote: 1.3;
  --lh-body: 1.7;
  --lh-small: 1.6;

  /* ── UNIFIED SPACING SCALE (tightened menus rhythm) ── */
  --pad-section: 64px;                 /* vertical band padding */
  --pad-section-x: 72px;               /* horizontal band padding */
  --pad-hero-top: 120px;               /* hero top clearance for fixed nav */
  --gap-eyebrow: 10px;                 /* eyebrow → headline */
  --gap-headline-sub: 12px;            /* headline → sub-line */
  --gap-sub-content: 36px;             /* sub-line / header → content */
  --gap-header-grid: 40px;             /* section-header row → grid */
  --pad-list-item: 11px;               /* between list items */
  --gap-list-col: 26px;                /* between stacked list columns */
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
.serif { font-family: 'Cormorant Garamond', serif; }

.section-label {
  font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--gap-eyebrow); display: block;
}
.section-label.light { color: #EFE1B0; } /* champagne sweep: below-fold eyebrows on dark (all uses are cta-parallax; light-band pages override locally) */

.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h2);
  font-weight: 300; line-height: var(--lh-h2); color: var(--charcoal);
}
.section-headline em { font-style: italic; }
.section-headline.light { color: #fff; }
.section-headline.xl { font-size: clamp(48px, 6vw, 80px); }

.section-body {
  font-size: var(--fs-body); font-weight: 300; line-height: var(--lh-body); color: var(--mid-gray);
}

/* ═══════════════════════════════════════════════════════════════
   UNIFIED CTA BUTTON SYSTEM (kc-) — solid primary + outlined secondary
   Surfaces: -dark (on dark photo scrims) · -light (on white / porcelain)
═══════════════════════════════════════════════════════════════ */
.kc-btn-solid-dark, .kc-btn-outline-dark, .kc-btn-solid-light, .kc-btn-outline-light {
  display: inline-block; position: relative;
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  padding: 19px 44px; line-height: 1; border-radius: 0;
  border: 1px solid transparent; cursor: pointer; transition: all 0.25s ease;
}
.kc-btn-solid-dark { background: #FFFFFF; color: #34322B; box-shadow: 0 2px 14px rgba(0,0,0,0.18); }
.kc-btn-solid-dark::after { content: ''; position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); width: 0; height: 1px; background: #C29A52; transition: width 0.3s ease; }
.kc-btn-solid-dark:hover { color: #2A4A1E; }
.kc-btn-solid-dark:hover::after { width: 36px; }
.kc-btn-outline-dark { background: transparent; color: #FFFFFF; border-color: rgba(239,225,176,0.65); }
.kc-btn-outline-dark:hover { border-color: #EFE1B0; background: rgba(239,225,176,0.10); color: #EFE1B0; }
.kc-btn-solid-light { background: #2A4A1E; color: #EFE1B0; }
.kc-btn-solid-light:hover { background: #1F3616; }
.kc-btn-outline-light { background: transparent; color: #2A4A1E; border-color: #2A4A1E; }
.kc-btn-outline-light:hover { background: #EAF1E0; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 76px;
  /* Always-on warm-white bar. */
  background: var(--warm-white);
  box-shadow: 0 2px 0 #C29A52;
  /* NOTE: no backdrop-filter here. The background is fully opaque, so blur did
     nothing visually — but it forced the fixed nav into its own compositing
     path, where Chromium on some GPUs stops repainting the honey underline
     except in mouse-invalidated regions (line renders dark/stale, turns honey
     only under the cursor). Same property class the mobile menu already
     disables for its containing-block side effect. */
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: var(--warm-white);
  box-shadow: 0 2px 0 #C29A52;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--forest); text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 35.4px; width: auto; display: block; } /* KP-15d: lockup +18% (was 30px), one object, internal proportions locked by the image */
.nav-links { display: flex; gap: 14px; list-style: none; }
.nav-links a {
  position: relative;
  font-size: 11px; font-weight: 500; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--forest);
  text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #3C5C2A; }
/* Honey underline marks the active page/section. Pinned to the literal honey
   hex (not var(--beige)) so the indicator can never drift if the variable is
   ever retuned. */
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -5px;
  /* A crisp 1px solid honey hairline — hard-edged like the nav bar's bottom
     rule (box-shadow: 0 2px 0), at half its weight. */
  height: 1px;
  background: #C29A52;
}
.nav-cta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #EFE1B0;
  background: #2A4A1E; padding: 12px 26px; border-radius: 2px;
  text-decoration: none; transition: background 0.2s, color 0.2s; white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: #1F3616; color: #EFE1B0; }

/* ═══════════════════════════════════════════════════════════════
   NAV DROPDOWNS — Corporate + Weddings & Celebrations (the site's first).
   Trigger = a link (navigates) beside a caret button (toggles the panel).
   Panels are absolute overlays, so the 76px nav height never changes.
═══════════════════════════════════════════════════════════════ */
/* The trigger stays a normal inline nav link (so all seven labels share one
   baseline); the caret is taken out of flow (absolute) and vertically centered
   on the trigger, reserving its width via the trigger's right padding. */
.nav-group { position: relative; }
/* Trigger reserves 13px on the right: a 6px measured ink gap after the label +
   the chevron (9px box, ~8.5px ink with round caps). */
.nav-group .nav-trigger { padding-right: 13px; }
.nav-trigger.active::after { right: 13px; }   /* underline spans the label, not the caret gap */
.nav-caret {
  /* +1.6px seats the chevron's ink on the label's optical center (pixel-measured
     against the uppercase Jost midline; hold to ±1px). */
  position: absolute; right: -3px; top: calc(50% + 1.6px); transform: translateY(-50%);
  appearance: none; -webkit-appearance: none; background: none; border: none;
  margin: 0; padding: 6px 3px; cursor: pointer; line-height: 0;
  display: inline-flex; align-items: center;
}
/* Stroked SVG chevron (9px wide, 1.5px stroke, round caps) via mask so the color
   is a plain background-color: muted at rest, honey on hover and while open.
   Whisper, not shout. */
.nav-caret::before {
  content: ''; width: 9px; height: 6px; display: block;
  background: var(--muted, #8E866F); background: #8E866F;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 6'%3E%3Cpath d='M1.2 1.6 4.5 4.4 7.8 1.6' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 9px 6px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 6'%3E%3Cpath d='M1.2 1.6 4.5 4.4 7.8 1.6' fill='none' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 9px 6px no-repeat;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.nav-group:hover .nav-caret::before { background: #C29A52; }
.nav-group.open .nav-caret::before { background: #C29A52; transform: rotate(180deg); }
.nav-caret:focus-visible { outline: 2px solid var(--beige); outline-offset: 2px; border-radius: 2px; }

.nav-panel {
  /* top: 50% of the .nav-group li + 40px. The li is vertically centered in the
     fixed 76px nav, so this resolves to nav-bottom + 2px: the panel hangs just
     BELOW the honey rule instead of overlapping it (the old 100% + 15px put the
     panel's top edge 11.5px above the nav's bottom edge, so the rule crossed
     it). Independent of li font metrics by construction. */
  position: absolute; top: calc(50% + 40px); left: 0; z-index: 210;
  min-width: 232px; padding: 8px 0; display: none;
  background: #fff; border: 1px solid #EBE7DE; border-radius: 0;
  box-shadow: 0 12px 32px rgba(52,50,43,0.12);
}
/* invisible bridge over the gap so diagonal mouse paths never cross a dead zone
   (29px = the trigger-to-panel gap under the calc above) */
.nav-panel::before { content: ''; position: absolute; top: -29px; left: 0; right: 0; height: 29px; }
.nav-group.open .nav-panel { display: block; }
.nav-panel a {
  position: relative; display: block; padding: 11px 24px; white-space: nowrap;
  font-size: 11px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--forest); text-decoration: none; transition: color 0.2s, background 0.2s;
}
.nav-panel a::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 0; height: 15px; background: var(--beige); transition: width 0.2s ease;
}
.nav-panel a:hover, .nav-panel a:focus-visible { color: #3C5C2A; background: var(--cream); outline: none; }
.nav-panel a:hover::before, .nav-panel a:focus-visible::before { width: 3px; }

/* ═══════════════════════════════════════════════════════════════
   kc-marquee — sitewide service marquee (reference implementation)
   White strip, honey hairlines, seamless translateX 0 → -50% loop.
═══════════════════════════════════════════════════════════════ */
.kc-marquee { background: #FFFFFF; border-top: 1px solid #C29A52; border-bottom: 1px solid #C29A52; padding: 14px 0; overflow: hidden; white-space: nowrap; }
.kc-marquee-track { display: inline-flex; animation: kc-marquee 42s linear infinite; }
.kc-marquee-item { font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.16em; color: #34322B; }
.kc-marquee-sep { color: #C29A52; font-size: 11px; margin: 0 28px; }
@keyframes kc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .kc-marquee-track { animation: none; } }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25,1,0.5,1), transform 0.8s cubic-bezier(0.25,1,0.5,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Vertical fade (was translateX ±32px). The horizontal slide bled 32px past the
   viewport while a section was still off-screen, causing sideways scroll site-wide
   on both mobile and desktop. Fading in vertically keeps the reveal with zero
   horizontal travel. */
.reveal-left {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25,1,0.5,1), transform 0.8s cubic-bezier(0.25,1,0.5,1);
}
.reveal-left.visible { opacity: 1; transform: translateY(0); }
.reveal-right {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25,1,0.5,1), transform 0.8s cubic-bezier(0.25,1,0.5,1);
}
.reveal-right.visible { opacity: 1; transform: translateY(0); }
/* Reduced-motion: show all reveal content immediately, no fade or transform.
   Also covers the JS-failsafe class for any browser without IntersectionObserver. */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1; transform: none; transition: none;
  }
}
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ─── FOOTER: THE LETTERPRESS (KP-14): centered, porcelain, quiet close ─── */
footer {
  background: var(--cream); text-align: center;
  padding: 66px 24px 34px;
}
/* Pages ending on a feathered dark band hand off with reduced clearance */
body:has(.cta-parallax) footer, body:has(.venues-soon) footer { padding-top: 26px; }
.kcf-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; letter-spacing: 0.05em; color: var(--green);
}
.kcf-tagline { margin: 8px auto 0; max-width: 720px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17.5px; font-weight: 400; letter-spacing: 0.01em; color: var(--green); opacity: 0.85; line-height: 1.5; } /* color pass: tracked caps -> italic serif, deep green at .85 (6.3:1 effective on porcelain) */
.kcf-links { margin: 34px auto 0; max-width: 1080px; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 0; } /* color pass: honey middot separators carry the horizontal rhythm */
.kcf-links .kcf-dot { margin: 0 13px; }
.kcf-pair { white-space: nowrap; } /* KP-20: link + trailing dot wrap as one unit; no dot can lead a line */
.kcf-links a {
  color: var(--charcoal); text-decoration: none;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 400;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
.kcf-links a:hover { color: var(--green); border-bottom-color: var(--beige); }
.kcf-contact { margin-top: 26px; font-size: 12px; font-weight: 300; letter-spacing: 0.04em; color: var(--charcoal); }
.kcf-contact a { color: var(--green); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.kcf-contact a:hover { border-bottom-color: var(--beige); }
.kcf-dot { margin: 0 10px; color: var(--beige); }
.kcf-serving { margin-top: 8px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #7A735F; }
.kcf-social { margin-top: 18px; display: flex; justify-content: center; gap: 24px; }
.kcf-social a { color: var(--green); text-decoration: none; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding-bottom: 2px; border-bottom: 1px solid rgba(194,154,82,0.45); transition: border-color 0.3s, color 0.3s; } /* color pass: resting honey underline at 45% */
.kcf-social a:hover { border-bottom-color: var(--beige); color: #1E3614; }
.kcf-rule { width: 40px; height: 1px; background: var(--beige); margin: 38px auto 0; }
.kcf-legal { margin-top: 20px; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: #7A735F; line-height: 2; }
.kcf-since { color: var(--green); }
.kcf-legal a { color: #7A735F; text-decoration: none; border-bottom: 1px solid transparent; transition: color 0.3s, border-color 0.3s; }
.kcf-legal a:hover { color: var(--green); border-bottom-color: var(--beige); }
footer a:focus-visible { outline: 1.5px solid var(--beige); outline-offset: 4px; }

/* ─── FEATHER: final dark band dissolves into the porcelain footer ─── */
.cta-parallax { padding-bottom: 310px; } /* 160px base + 150px fade clearance */
.venues-soon { padding-bottom: 150px; }
.cta-parallax::after, .venues-soon::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 170px;
  pointer-events: none; z-index: 3;
  background: linear-gradient(180deg,
    rgba(252,251,248,0) 0%,
    rgba(252,251,248,0.06) 22%,
    rgba(252,251,248,0.2) 44%,
    rgba(252,251,248,0.48) 66%,
    rgba(252,251,248,0.8) 84%,
    #FCFBF8 100%);
}
@media (max-width: 640px) {
  footer { padding: 52px 18px 28px; }
  body:has(.cta-parallax) footer, body:has(.venues-soon) footer { padding-top: 26px; }
  .cta-parallax { padding-bottom: 270px; } /* 160px base + 110px mobile fade clearance */
  .venues-soon { padding-bottom: 110px; }
  .cta-parallax::after, .venues-soon::after { height: 120px; }
}

/* ─── SHARED HERO BASE ─── */
.page-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; overflow: hidden;
  padding-bottom: 100px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 9s ease;
}
.page-hero-bg.loaded { transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.1) 40%, rgba(10,10,10,0.82) 100%);
}
.page-hero-content {
  position: relative; z-index: 2; padding: 0 72px; width: 100%;
}
.hero-eyebrow {
  font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase; color: #EFE1B0; /* 2e eyebrow test: brighter gold, was var(--gold-light) */
  margin-bottom: 16px; display: block;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-h1);
  font-weight: 300; line-height: var(--lh-h1); color: #fff;
  letter-spacing: -0.01em; margin-bottom: 28px; max-width: 800px;
}
.hero-h1 em { font-style: italic; }
.hero-sub {
  font-size: var(--fs-body); font-weight: 300; line-height: var(--lh-body);
  color: rgba(255,255,255,0.72); max-width: 460px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-stats {
  position: absolute; bottom: 0; right: 0;
  display: flex; background: rgba(255,255,255,0.82); backdrop-filter: blur(8px);
}
.hero-stat {
  padding: 26px 44px; border-left: 1px solid var(--light-gray); text-align: center;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 38px;
  font-weight: 300; color: var(--charcoal); display: block; line-height: 1; margin-bottom: 5px;
}
.hero-stat-label {
  font-size: 9px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--charcoal);
}

/* ─── SHARED SECTION PATTERNS ─── */

/* Intro Statement — 2-col asymmetric */
.intro-statement {
  background: var(--warm-white); padding: 120px 72px;
  display: grid; grid-template-columns: 200px 1fr;
  gap: 80px; align-items: start;
}
.intro-label-col {
  font-size: 10px; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); padding-top: 14px;
  line-height: 1.8;
}
.intro-text-col {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--fs-statement);
  font-weight: 300; line-height: var(--lh-statement); color: var(--charcoal);
}
.intro-text-col em { font-style: italic; }
.intro-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 300; line-height: 1.25; color: var(--charcoal);
  margin: 0 0 28px;
}

/* Editorial Split */
.editorial-split { background: var(--warm-white); padding: 140px 0; overflow: hidden; }
.editorial-inner {
  display: grid; grid-template-columns: 55% 45%; align-items: center;
}
.editorial-img-wrap { position: relative; height: 680px; overflow: hidden; }
.editorial-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 8s ease;
}
.editorial-img-wrap:hover img { transform: scale(1.04); }
.editorial-img-caption {
  position: absolute; bottom: 28px; left: 28px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.editorial-text-col { padding: 80px 72px 80px 80px; position: relative; }
.editorial-text-col::before { content: none; }
.editorial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300; font-style: italic; line-height: 1.5;
  color: var(--charcoal); margin-bottom: 24px; position: relative; z-index: 1;
}
.editorial-attr {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 36px;
}
.editorial-body { font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--mid-gray); margin-bottom: 36px; }


/* (Retired dark services-grid component fully removed 2026-07-08 — every class
   was orphaned, and its global .svc-card span-2 rule collided with the
   services.html hub grid, collapsing cards at <=720px.) */

/* Photo Mosaic */
.photo-mosaic {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 380px 380px; gap: 4px; background: var(--light-gray);
}
.mosaic-item { overflow: hidden; position: relative; }
.mosaic-item:nth-child(1) { grid-row: span 2; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; filter: brightness(0.85); }
.mosaic-item:hover img { transform: scale(1.05); filter: brightness(1); }
.mosaic-gold { background: var(--cream); display: flex; flex-direction: column; justify-content: center; padding: 48px; border: 1px solid var(--light-gray); }
.mosaic-quote { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; font-style: italic; line-height: 1.5; color: var(--charcoal); margin-bottom: 24px; }
.mosaic-attr { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal); }

/* CTA Parallax */
.cta-parallax { position: relative; padding: 160px 72px; text-align: center; overflow: hidden; }
.cta-parallax-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; filter: brightness(0.62); }
.cta-parallax::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: rgba(20,20,20,0.55); }
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 6vw, 80px); font-weight: 300; line-height: 1.05; color: #fff; margin-bottom: 28px; }
.cta-headline em { font-style: italic; }
.cta-body { font-size: 15px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 48px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* Inquiry Form */
.inquiry-section { background: var(--warm-white); padding: 140px 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.inq-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 52px); font-weight: 300; line-height: 1.1; color: var(--charcoal); margin-bottom: 24px; }
.inq-headline em { font-style: italic; }
.inq-body { font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--mid-gray); margin-bottom: 40px; }
.inq-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-label { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 300; color: var(--charcoal); background: var(--cream); border: 1px solid var(--light-gray); padding: 14px 16px; border-radius: 2px; outline: none; transition: border-color 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--beige); }
.form-textarea { resize: vertical; min-height: 100px; }

/* Venues Strip */

/* How It Works */
.how-section { background: var(--cream); padding: var(--pad-section) var(--pad-section-x); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.how-step { padding: 30px; border-radius: 14px; background: var(--warm-white); border: 1px solid var(--light-gray); }
.how-step:nth-child(1) { background: var(--warm-white); }
.how-step:nth-child(2) { background: var(--warm-white); }
.how-step:nth-child(3) { background: var(--warm-white); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: var(--fs-numeral); font-weight: 300; line-height: 1; margin-bottom: 28px; display: block; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: var(--fs-card); font-weight: 500; margin-bottom: 16px; }
.step-body { font-size: var(--fs-small); font-weight: 300; line-height: var(--lh-small); }
.how-step:nth-child(1) .step-num, .how-step:nth-child(1) .step-title { color: var(--charcoal); }
.how-step:nth-child(1) .step-body { color: var(--mid-gray); }
.how-step:nth-child(2) .step-num, .how-step:nth-child(2) .step-title { color: var(--charcoal); }
.how-step:nth-child(2) .step-body { color: var(--mid-gray); }
.how-step:nth-child(3) .step-num { color: var(--charcoal); }
.how-step:nth-child(3) .step-title { color: var(--charcoal); }
.how-step:nth-child(3) .step-body { color: var(--mid-gray); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE / MOBILE
   Each page's inline <style> loads AFTER this file, so grid/padding
   overrides below are prefixed with `body` to win on specificity
   without !important. Class list spans every page (style.css is global).
═══════════════════════════════════════════════════════════════ */

/* Hamburger button — injected by main.js, hidden on desktop */
.nav-toggle { display: none; }

/* ─── TABLET & DOWN: hamburger nav ─── */
@media (max-width: 1279px) {
  nav { padding: 0 28px; }
  .nav-links, .nav-cta { display: none; }
  /* Active-page underline is a desktop-bar cue; the open mobile menu uses color only */
  .nav-links a.active::after { display: none; }

  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 9px; margin: 0;
    background: none; border: none; cursor: pointer; z-index: 300;
  }
  .nav-toggle span {
    display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  /* Toggle chip (KP-15): the mobile nav bar is opaque warm-white in every closed
     state, so the white bars were invisible until the menu opened. Closed state
     gets the sitewide smoked-glass treatment behind the white bars (4.81:1 worst
     case); the scrolled nav is solid warm-white, so the chip drops and the bars
     go ink (12.83:1). Open state keeps the white X on forest-deep. */
  nav:not(.scrolled):not(.nav-open) .nav-toggle { background: rgba(20,30,18,0.62); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; }
  nav.scrolled:not(.nav-open) .nav-toggle span { background: var(--charcoal); }
  /* Cancel the scrolled-state backdrop blur while open: backdrop-filter
     makes nav a containing block for the fixed panel, which would clamp it
     to nav height and cut off all but the first links. */
  nav.nav-open {
    background: var(--forest-deep);
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Full-screen menu panel */
  nav.nav-open .nav-links {
    display: flex; flex-direction: column; gap: 0; list-style: none;
    position: fixed; top: 114px; left: 0; right: 0; bottom: 0;
    background: var(--forest-deep); padding: 20px 28px 120px; overflow-y: auto;
  }
  nav.nav-open .nav-links a {
    display: block; font-size: 16px; letter-spacing: 0.1em; white-space: normal;
    color: rgba(255,255,255,0.85); padding: 18px 2px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  nav.nav-open .nav-cta {
    display: block; position: fixed; left: 28px; right: 28px; bottom: 28px;
    text-align: center; padding: 16px 26px;
  }
  body.nav-locked { overflow: hidden; }

  /* 4-column grids → 2 columns at tablet width */
  body .values-grid, body .sectors-grid, body .corp-stats,
  body .milestone-grid, body .wf-grid, body .tech-svc-grid,
  body .serve-row, body .case-study-results {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── NAV DROPDOWNS on mobile: the two groups become tap-to-expand
   accordion sections inside the open hamburger menu (no hover). ─── */
@media (max-width: 1279px) {
  nav.nav-open .nav-group { display: flex; flex-wrap: wrap; align-items: center; position: static; border-bottom: 1px solid rgba(255,255,255,0.08); }
  nav.nav-open .nav-group .nav-trigger { flex: 1 1 auto; border-bottom: none; padding-right: 0; }
  nav.nav-open .nav-caret { position: static; transform: none; display: inline-flex; padding: 18px 10px; }
  /* Larger masked chevron on the dark mobile panel; open state inherits the 180° flip. */
  nav.nav-open .nav-caret::before { width: 13px; height: 9px; -webkit-mask-size: 13px 9px; mask-size: 13px 9px; background: rgba(255,255,255,0.85); }
  nav.nav-open .nav-group.open .nav-caret::before { background: #C29A52; }
  nav.nav-open .nav-panel { display: none; position: static; flex-basis: 100%; min-width: 0; background: transparent; border: none; box-shadow: none; padding: 2px 0 10px; }
  nav.nav-open .nav-panel::before { display: none; }
  nav.nav-open .nav-group.open .nav-panel { display: block; }
  nav.nav-open .nav-panel a { color: rgba(255,255,255,0.68); font-size: 14px; letter-spacing: 0.08em; padding: 12px 2px 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  nav.nav-open .nav-panel a::before { display: none; }
  nav.nav-open .nav-panel a:last-child { border-bottom: none; }
  nav.nav-open .nav-panel a:hover, nav.nav-open .nav-panel a:focus-visible { color: #fff; background: transparent; }
}

/* ─── PHONES & SMALL: single column, tighter spacing, smaller type ─── */
@media (max-width: 720px) {

  /* ---- Collapse every multi-column layout to one column ---- */
  body .intro-statement, body .editorial-inner, body .services-grid,
  body .photo-mosaic, body .inquiry-section, body .form-row, body .how-steps,
  body .cocktail-hero-grid, body .serve-row,
  body .canape-header, body .canape-grid, body .bar-section,
  body .mission-body, body .timeline-item, body .values-grid,
  body .contact-page, body .event-types-grid, body .diff-grid,
  body .home-services-grid, body .menu-header, body .menu-panel.active,
  body .faq-section, body .social-hero, body .et-grid, body .milestone-grid,
  body .planning-section, body .stagger-row, body .dark-statement,
  body .packages-grid, body .testimonials-grid, body .pd-statement-inner,
  body .pd-tiers-grid, body .chefs-table, body .pd-testimonials,
  body .corp-hero-inner, body .sectors-grid, body .corp-editorial,
  body .corp-svc-grid, body .corp-stats, body .corp-testi-grid,
  body .tech-hero-grid, body .brand-statement-inner, body .tech-svc-grid,
  body .case-study, body .case-study-results, body .branded-grid,
  body .venues-hero-content, body .fv-grid, body .venue-list-item,
  body .vc-grid, body .wedding-hero, body .wf-grid, body .tasting-section,
  body .wedding-mosaic, body .menus-hero-inner, body .canape-layout-header,
  body .canape-two-col, body .plated-course, body .stations-grid,
  body .beverage-grid {
    grid-template-columns: 1fr;
  }

  /* Reset fixed grid rows + gaps that assumed multiple columns */
  body .photo-mosaic, body .fv-grid, body .et-grid, body .wedding-mosaic {
    grid-template-rows: auto;
  }
  body .intro-statement, body .editorial-inner, body .menu-header,
  body .canape-header, body .canape-layout-header, body .menus-hero-inner,
  body .venues-hero-content, body .tech-hero-grid, body .cocktail-hero-grid {
    gap: 36px;
  }

  /* Stacked split-screen heroes/sections shouldn't be 2x viewport tall */
  body .wedding-hero, body .contact-page, body .social-hero,
  body .case-study, body .chefs-table, body .corp-editorial,
  body .stagger-row, body .bar-section, body .tasting-section {
    min-height: auto;
  }
  body .contact-left { position: relative; height: auto; }
  body .pd-hero-content { position: static; width: 100%; }

  /* ---- Reduce side padding everywhere ---- */
  nav { padding: 0 20px; }
  .nav-logo img { height: 28.32px; } /* KP-15d: +18% (was 24px) */
  body .page-hero-content,
  body .intro-statement, body .editorial-text-col, body .services-section,
  body .cta-parallax, body .inquiry-section,
  body .how-section,
  body .contact-left, body .contact-right,
  body .stagger-text, body .stagger-disclaimer, body .dark-statement, body .packages-section,
  body .testimonials-section, body .pkg-card,
  body .about-hero-content, body .mission-section, body .timeline-section,
  body .values-section, body .press-section,
  body .cocktail-hero-content, body .gold-bar, body .serve-section,
  body .canape-section, body .bar-content, body .flow-section,
  body .pd-hero-content, body .pd-statement, body .pd-tiers,
  body .chefs-table-content, body .pd-testimonials,
  body .venues-hero, body .venues-filter, body .featured-venues,
  body .all-venues, body .venue-categories,
  body .event-types, body .milestone-section, body .planning-section,
  body .corp-hero-inner, body .sectors-section, body .corp-editorial-text,
  body .corp-services, body .corp-stats, body .corp-testimonials,
  body .diff-header, body .home-services, body .menu-section,
  body .clients-section, body .faq-section,
  body .menus-hero, body .menu-nav-inner, body .canape-layout,
  body .plated-layout, body .stations-layout, body .beverage-layout,
  body .dietary-note,
  body .wedding-hero-left, body .promise-section, body .wedding-features,
  body .tasting-content, body .wedding-testi,
  body .tech-hero-content, body .brand-statement, body .tech-services,
  body .case-study-content, body .branded-section, body .tech-clients,
  body .diff-card {
    padding-left: 22px; padding-right: 22px;
  }
  body .diff-grid { margin-left: 0; margin-right: 0; }

  /* Trim the tallest hero top-padding so content isn't pushed off-screen */
  body .venues-hero, body .menus-hero { padding-top: 150px; } /* KP-27: 36px nav clearance (venues-hero selector matches nothing; menus-only in effect) */

  /* ---- Shrink oversized headlines ---- */
  body .hero-h1, body [class*="hero-h1"], body .contact-left-h1 {
    font-size: 40px; line-height: 1.05; max-width: 100%;
  }
  body .section-headline { font-size: 30px; }
  body .section-headline.xl { font-size: 34px; }
  body .cta-headline { font-size: 32px; }

  /* statement-role classes removed from this pin (KP-10): --fs-statement clamp governs at every width */
  body .promise-text, body .image-break-text,
  body .inq-headline {
    font-size: 26px; line-height: 1.25;
  }
  body .chefs-table-h2, body .case-study-h2, body .stagger-title,
  body .dark-statement-quote, body .wedding-testi-quote,
  body .pd-testi-large-quote, body .editorial-quote,
  body .corp-editorial-quote, body .corp-testi-quote, body .mosaic-quote {
    font-size: 24px; line-height: 1.35;
  }

  /* Oversized decorative numerals */
  body .diff-num, body .step-num { font-size: 56px; }
  body .editorial-text-col::before { font-size: 120px; left: 20px; top: 0; }

  /* ---- Hero stats: stacked left, in-flow (canonical mobile look) ---- */
  body .hero-stats {
    position: relative; z-index: 2; left: auto; right: auto; bottom: auto; width: 100%;
    background: none; backdrop-filter: none; -webkit-backdrop-filter: none;
    flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 32px;
  }
  body .hero-stat { flex: none; padding: 0; border-left: none; text-align: left; }
  body .hero-stat:first-child { border-left: none; }
  body .hero-stat-num { font-size: 30px; }

  /* Long single-cell rows (e.g. venue list) need their own spacing */
  body .venue-list-item { gap: 6px; padding: 22px 0; }

  /* Wide horizontal-scroll tab bars stay usable */
  body .menu-tabs { overflow-x: auto; }
}

/* ─── VERY SMALL PHONES ─── */
@media (max-width: 400px) {
  body .hero-h1, body [class*="hero-h1"], body .contact-left-h1 { font-size: 34px; }
  body .section-headline { font-size: 26px; }
  body .hero-stat-num { font-size: 28px; }
}

/* ─── SHARED SCRIPT ─── */

/* <picture> wrappers (WebP w/ JPEG fallback) must not affect layout */
picture { display: contents; }

/* ─────────────────────────────────────────────────────────────
   TOP CONTACT STRIP — slim bar above the nav (header is now strip 38px + nav 76px = 114px)
   ───────────────────────────────────────────────────────────── */
.top-contact-strip {
  position: fixed; top: 0; left: 0; right: 0; z-index: 201; height: 38px;
  display: flex; align-items: center; justify-content: flex-end; gap: 24px;
  padding: 0 56px; background: #FFFFFF;
}
.top-contact-strip a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--forest); text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.top-contact-strip a:hover { color: #3C5C2A; }
.top-strip-social { display: inline-flex; align-items: center; gap: 14px; }
.top-strip-social a { display: inline-flex; align-items: center; color: var(--forest); transition: color 0.2s; }
.top-strip-social a:hover { color: #3C5C2A; }
.top-strip-social svg { width: 16px; height: 16px; display: block; fill: currentColor; }

/* COOKIE CONSENT BANNER — fixed bottom dark bar */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  display: none; align-items: center; gap: 24px;
  padding: 18px 56px; background: rgba(14,14,14,0.97); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-banner.show { display: flex; }
.cookie-banner-text {
  font-size: 12.5px; font-weight: 300; line-height: 1.6;
  color: rgba(255,255,255,0.7); max-width: 920px;
}
.cookie-banner-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 12px; margin-left: auto; flex-shrink: 0; }
.cookie-btn {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 2px; cursor: pointer; border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s; white-space: nowrap;
}
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.cookie-btn-decline:hover { border-color: #fff; color: #fff; }
.cookie-btn-accept { background: var(--green); color: #EFE1B0; border-color: var(--green); }
.cookie-btn-accept:hover { background: #1F3616; border-color: #1F3616; }

@media (max-width: 720px) {
  .top-contact-strip { padding: 0 20px; gap: 16px; }
  .top-contact-strip a { font-size: 10px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px 20px; }
  .cookie-banner-actions { margin-left: 0; width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ===================================================================
   HERO CAROUSEL (kc-) — homepage rotating bites hero.
   Fully scoped under .kc-hero-section; does not affect other styles.
   =================================================================== */
/* First-screen composition: hero carousel + client marquee share one
   viewport. Flex column @ 100svh (vh fallback) — the marquee self-sizes at
   the bottom, the hero takes the remaining share and its carousel scales to
   fit. No magic numbers: the marquee's rendered height is whatever it is. */
.hero-viewport{min-height:100vh;min-height:100svh;display:flex;flex-direction:column}
.hero-viewport>.kc-hero-section{flex:1 1 auto;min-height:0;display:flex;flex-direction:column;justify-content:center}
.hero-viewport>.kc-marquee{flex:0 0 auto}

/* ── HOUSE RULE — first-screen peek for full-bleed utility heroes ──────────────
   The svc-hero family (11 service/category pages) + about share the same
   photo-hero -> padded-section shape. Cap the hero viewport-relatively (offset-
   linear svh, vh fallback) so the next section's eyebrow/headline peeks into the
   first screen at every desktop size; the photo crops from the top (dead space),
   the bottom-anchored text stays put. Scoped min-width:761px so each page's own
   mobile stacking (<=760/<=720) is untouched. Defined once, applied by class. */
@media (min-width: 761px) {
  body .svc-hero, body .about-hero {
    /* Match the menus hero scale: line fit through 734px@1080 and 576px@768
       (0.5064·svh + 187), capped at the menus plateau (734px, where menus stops
       growing as its own paddings cap). Lands within 0.1px of menus at both. */
    height: clamp(520px, calc(50.64vh + 187px), 734px);
    height: clamp(520px, calc(50.64svh + 187px), 734px);
    min-height: 0;
  }
  /* Bottom-anchored svc-hero content clears the 114px header at menus height:
     keep the original 100px composition on tall screens, ease toward ~52px on
     short screens (mirrors how the menus hero's own bottom padding clamps). */
  body .svc-hero {
    padding-bottom: clamp(48px, calc(15.4vh - 66px), 100px);
    padding-bottom: clamp(48px, calc(15.4svh - 66px), 100px);
  }
  /* Next section borrows its top padding on short screens so content (not just
     padding) shows in the peek; restores to the full 64px on tall screens. */
  body .svc-section, body .beverage-layout, body .mission-section {
    padding-top: clamp(24px, calc(15.4vh - 90px), 64px);
    padding-top: clamp(24px, calc(15.4svh - 90px), 64px);
  }
}

.kc-hero-section{--green:#2A4A1E;--green2:#3C5C2A;--sage2:#7E9C5E;--honey:#C29A52;--wine:#4A1521;--ink:#34322B;--secondary:#6B6358;--muted:#8E866F;--hairline:#E8EBE3;background:#FAFAF8;font-family:'Jost',sans-serif;color:var(--ink);isolation:isolate;padding-top:120px}
/* margin-only reset — do NOT zero padding here: it would clobber the sitewide
   .kc-btn-* recipe (padding:19px 44px), collapsing the hero buttons to text. */
.kc-hero-section *{box-sizing:border-box;margin:0}
.kc-serif{font-family:'Cormorant Garamond',serif}

/* Split: text column (0.38) + turntable stage (0.62), per the reference. */
.kc-grid{display:grid;grid-template-columns:0.38fr 0.62fr;align-items:center;width:100%;max-width:1600px;margin:0 auto;gap:clamp(16px,2.4vw,48px);padding:0 clamp(22px,3vw,56px)}

/* Left text column — left-aligned */
.kc-hero{text-align:left;padding-left:clamp(0px,1.4vw,24px);min-width:0}
.kc-eb{font-size:12px;font-weight:500;letter-spacing:.26em;text-transform:uppercase;color:var(--honey)}
.kc-hero h1{font-family:'Cormorant Garamond',serif;font-weight:500;font-size:clamp(34px,3.4vw,58px);font-size:clamp(34px,min(3.4vw,6.4svh),58px);line-height:1.08;color:var(--green);margin:16px 0 0}
.kc-hero h1 em{font-style:italic}
.kc-hero p{font-weight:300;font-size:15px;color:var(--secondary);max-width:360px;margin:14px 0 0}
.kc-honeyrule{width:56px;height:1px;background:var(--honey);margin:18px 0 0}
.kc-pair{display:flex;flex-wrap:wrap;gap:16px;margin-top:26px}

/* Right column — stage + caption. Stage height is viewport-relative (svh, vh
   fallback); the engine derives BASE from it, so the whole composition is a
   uniform scale of the reference (BASE=330 at the reference stage height 535).
   Ring geometry (cx/cy/Rx/Ry) is fractional, so it re-composes on resize with
   no change to motion, timing, order, click, hover, or caption. */
.kc-stagewrap{position:relative;min-width:0}
.kc-stage{position:relative;width:100%;height:clamp(300px,46vh,540px);height:clamp(300px,46svh,540px);margin:0 auto}
/* One transform per unit (translate + scale). Bites are always solid; the
   pre-blurred twin crossfades on top. Per-frame work is transform + opacity. */
.kc-item{position:absolute;left:0;top:0;will-change:transform;backface-visibility:hidden}
.kc-bite{display:block;position:relative;width:auto;z-index:2;cursor:pointer;will-change:opacity;transform:translateZ(0)}
.kc-bsoft{display:block;position:absolute;left:0;top:0;width:auto;z-index:3;pointer-events:none;will-change:opacity;transform:translateZ(0)}

/* Caption below the stage: the dish block crossfades on arrival with a
   reserved min-height; the hint below never moves or fades. ~44px breathing
   room keeps the block off the hero's bottom edge. */
.kc-caption{text-align:center;position:relative;z-index:20;margin-top:6px;padding-bottom:44px}
.kc-capdish{min-height:78px;transition:opacity .35s}
.kc-cap-num{font-family:'Cormorant Garamond',serif;font-size:15px;letter-spacing:.3em;color:var(--honey)}
.kc-cap-name{font-family:'Cormorant Garamond',serif;font-size:27px;color:var(--ink);margin:3px 0 5px}
.kc-cap-sub{font-size:11px;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--secondary)}
.kc-hint{font-size:10px;font-weight:400;letter-spacing:.22em;text-transform:uppercase;color:var(--muted);margin-top:11px}

/* ── MOBILE (≤760px): split collapses to one centered column. Same engine —
   the stage shrinks and the fractional ring keeps the band flat; only the CSS
   layout changes. Same copy, same buttons. ─────────────────────────────── */
@media (max-width: 760px) {
  /* The two full-size house buttons wrap to a 2-row, ~122px block on phones;
     with the fixed nav (≈114px) that leaves a tight first-screen budget, so the
     whole stack is trimmed to keep header + hero + marquee flush. */
  .kc-hero-section{padding-top:116px}     /* clear the fixed nav (bottom ≈ 114px) */
  .kc-grid{grid-template-columns:1fr;gap:4px;max-width:540px;padding:0 22px}
  .kc-hero{text-align:center;padding-left:0}
  .kc-hero h1{font-size:clamp(29px,7vw,40px);margin-top:10px}
  .kc-hero p{font-size:14px;margin-top:10px}
  .kc-hero p,.kc-honeyrule{margin-left:auto;margin-right:auto}
  .kc-honeyrule{margin-top:12px}
  .kc-pair{justify-content:center;margin-top:16px}
  .kc-stage{height:clamp(156px,22svh,244px);margin-top:2px}
  .kc-caption{margin-top:0;padding-bottom:10px}
  .kc-capdish{min-height:54px}
  .kc-cap-name{font-size:21px;margin:2px 0 4px}
  .kc-cap-sub{margin-top:6px}
  .kc-hint{margin-top:8px}
}
