/* ========================================================================
   Lighthearted Kitchen — Site styles
   Brand tokens lifted from LK Brand Guidelines v2.
   Type system: Addington CF (display) + Montserrat (body).
   Note: Addington CF is a paid font and not in this project's assets.
         Falls back to Cormorant Garamond per the brand book's web stack.
   ======================================================================== */

:root {
  /* Core palette */
  --lk-linen-50:   #FDFAF2;
  --lk-linen:      #F9F2E4;
  --lk-cream:      #DBD9B5;
  --lk-cream-deep: #C4C29D;
  --lk-fern:       #557340;
  --lk-fern-deep:  #3F5A2E;
  --lk-ebony:      #536B4A;
  --lk-ebony-ink:  #2F3E27;
  --lk-bark:       #6B5B43;
  --lk-clay:       #C9784A;
  --lk-tomato:     #A8443A;

  /* Spacing — 8pt grid */
  --s-1: 4px;  --s-2: 8px;   --s-3: 16px;  --s-4: 24px;
  --s-5: 32px; --s-6: 48px;  --s-7: 64px;  --s-8: 96px;  --s-9: 128px;

  /* Type stacks */
  --serif: 'Addington CF', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Containers */
  --w-prose: 640px;
  --w-site:  1140px;
  --w-wide:  1320px;

  /* Motion */
  --ease: cubic-bezier(.2,.6,.2,1);
  --t-fast: 150ms var(--ease);
  --t-base: 200ms var(--ease);
  --t-slow: 300ms var(--ease);
}

/* Cormorant fallback for Addington CF (closest licensed alt available on Google Fonts).
   When Addington CF OTFs are dropped into /assets/fonts, the @font-face below
   takes precedence and the fallback is unused. */

@font-face {
  font-family: 'Addington CF';
  src: url('../fonts/AddingtonCF-Regular.otf') format('opentype'),
       url('../fonts/AddingtonCF-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Addington CF';
  src: url('../fonts/AddingtonCF-RegularItalic.otf') format('opentype'),
       url('../fonts/AddingtonCF-RegularItalic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Addington CF';
  src: url('../fonts/AddingtonCF-Medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--lk-linen);
  color: var(--lk-ebony-ink);
  font: 400 16px/1.75 var(--sans);
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture, video { max-width: 100%; display: block; }
a { color: var(--lk-fern); text-decoration: none; transition: color var(--t-base); }
a:hover { color: var(--lk-fern-deep); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
hr { border: 0; border-top: 1px solid rgba(83,107,74,.18); margin: var(--s-6) 0; }
::selection { background: var(--lk-cream); color: var(--lk-ebony-ink); }

/* Visible focus for keyboard users */
:focus { outline: 0; }
:focus-visible {
  outline: 2px solid var(--lk-fern);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Type scale ---------- */
.eyebrow {
  font: 600 12px/1.4 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lk-ebony);
}
.display-xl, .display-lg, .display-md, .display-sm, .pullquote,
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.012em;
  color: var(--lk-ebony);
  margin: 0;
  text-wrap: balance;
}
h1, .display-lg { font-size: clamp(40px, 5.6vw, 64px); line-height: 1.08; }
h2, .display-md { font-size: clamp(32px, 4vw, 44px); line-height: 1.12; }
h3, .display-sm { font-size: clamp(24px, 2.4vw, 30px); line-height: 1.2; }
h4 { font-size: 20px; line-height: 1.3; }
.display-xl { font-size: clamp(48px, 7.4vw, 80px); line-height: 1.04; }
.pullquote   { font-style: italic; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.45; }

p { margin: 0 0 1em; text-wrap: pretty; max-width: 62ch; }
.lede { font-size: 18px; line-height: 1.7; color: var(--lk-ebony-ink); max-width: 56ch; }
small, .caption { font-size: 12px; line-height: 1.5; color: var(--lk-bark); }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--w-site); margin: 0 auto; padding: 0 var(--s-4); }
.container-wide { max-width: var(--w-wide); }
.container-prose { max-width: var(--w-prose); }
.stack > * + * { margin-top: var(--s-3); }
.stack-lg > * + * { margin-top: var(--s-5); }

.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--cream { background: var(--lk-cream); color: var(--lk-ebony-ink); }
.section--ebony { background: var(--lk-ebony); color: var(--lk-linen); }
.section--ebony h1, .section--ebony h2, .section--ebony h3, .section--ebony h4,
.section--ebony .eyebrow { color: var(--lk-linen); }
.section--linen-50 { background: var(--lk-linen-50); }

.divider {
  height: 1px;
  background: rgba(83,107,74,.18);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 4px;
  font: 600 13px/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background-color var(--t-base), color var(--t-base), border-color var(--t-base);
  cursor: pointer;
}
.btn--primary { background: var(--lk-ebony); color: var(--lk-linen); }
.btn--primary:hover { background: var(--lk-fern-deep); color: var(--lk-linen); }
.btn--secondary { background: transparent; color: var(--lk-ebony); border: 1px solid var(--lk-ebony); }
.btn--secondary:hover { background: var(--lk-ebony); color: var(--lk-linen); }
.btn--on-dark { background: var(--lk-linen); color: var(--lk-ebony); }
.btn--on-dark:hover { background: var(--lk-cream); color: var(--lk-ebony-ink); }
.btn--ghost { padding: 6px 0; color: var(--lk-ebony); border-bottom: 1px solid currentColor; border-radius: 0; letter-spacing: .12em; }
.btn--ghost:hover { color: var(--lk-fern-deep); }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font: 600 12px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--lk-ebony); }
.link-arrow::after { content: "→"; transition: transform var(--t-base); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(249,242,228,.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  transition: background-color var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(249,242,228,.96);
  border-bottom-color: rgba(83,107,74,.12);
}
.site-nav.is-hero {
  background: rgba(249,242,228,.86);
  border-bottom-color: transparent;
}
.site-nav.is-hero::before { content: none; }
.site-nav.is-hero:not(.is-scrolled) .nav-link,
.site-nav.is-hero:not(.is-scrolled) .nav-brand,
.site-nav.is-hero:not(.is-scrolled) .nav-toggle { color: var(--lk-ebony); }

.nav-inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 18px var(--s-4);
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lk-ebony);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-brand__mark { height: 44px; width: auto; transition: opacity var(--t-base); }
.nav-brand__mark--white { display: none; }
.nav-brand__logo { height: 44px; width: auto; display: block; transition: opacity var(--t-base); }
.nav-brand__logo--white { display: none; }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  margin: 0 auto;
}
.nav-ctas { display: flex; gap: 10px; align-items: center; }
.nav-links--right { justify-content: flex-end; }
.nav-link {
  font: 500 12px/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lk-ebony);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--t-base), border-color var(--t-base);
}
.nav-link:hover, .nav-link[aria-current="page"] {
  color: var(--lk-fern-deep);
  border-bottom-color: currentColor;
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--lk-ebony);
}
.nav-toggle .bar {
  position: relative;
  width: 22px; height: 1px; background: currentColor;
}
.nav-toggle .bar::before, .nav-toggle .bar::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px; background: currentColor;
}
.nav-toggle .bar::before { top: -7px; }
.nav-toggle .bar::after  { top:  7px; }

@media (max-width: 880px) {
  .nav-inner { justify-content: space-between; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0;
  background: var(--lk-linen);
  z-index: 80;
  display: flex; flex-direction: column;
  padding: 24px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.mobile-drawer.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-drawer__head { display: flex; justify-content: space-between; align-items: center; }
.mobile-drawer__close { width: 40px; height: 40px; color: var(--lk-ebony); font-size: 24px; }
.mobile-drawer__nav { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.mobile-drawer__nav a {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.3;
  color: var(--lk-ebony);
  padding: 6px 0;
}
.mobile-drawer__nav a:hover { color: var(--lk-fern-deep); }
.mobile-drawer__foot { font-size: 12px; color: var(--lk-bark); letter-spacing: .12em; text-transform: uppercase; }
.mobile-drawer__foot a { color: var(--lk-bark); margin-right: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--lk-ebony); color: var(--lk-linen); padding: 96px 0 32px; }
.site-footer h4 { color: var(--lk-linen); font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: var(--s-3); opacity: .7; }
.site-footer a { color: var(--lk-linen); }
.site-footer a:hover { color: var(--lk-cream); }
.site-footer a.btn--on-dark { color: var(--lk-ebony); }
.site-footer a.btn--on-dark:hover { color: var(--lk-ebony-ink); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: var(--s-7);
}
.footer-cols a { display: block; padding: 4px 0; font-size: 14px; }
.footer-brand .mark-fill { fill: var(--lk-linen); }
.footer-brand p { color: rgba(249,242,228,.78); font-size: 14px; line-height: 1.7; max-width: 32ch; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: var(--s-6); margin-top: var(--s-6); border-top: 1px solid rgba(249,242,228,.18); font-size: 12px; color: rgba(249,242,228,.6); letter-spacing: .04em; }
.footer-bottom a { color: rgba(249,242,228,.6); }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input {
  flex: 1; min-width: 0;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid rgba(249,242,228,.32);
  color: var(--lk-linen);
  font: 400 14px/1 var(--sans);
  border-radius: 4px;
}
.newsletter-form input::placeholder { color: rgba(249,242,228,.55); }
.newsletter-form input:focus { border-color: var(--lk-linen); }
.newsletter-form button {
  padding: 12px 18px;
  background: var(--lk-linen);
  color: var(--lk-ebony);
  border-radius: 4px;
  font: 600 12px/1 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background-color var(--t-base);
}
.newsletter-form button:hover { background: var(--lk-cream); }
.newsletter-success { font-size: 13px; color: var(--lk-cream); margin-top: 12px; opacity: 0; transform: translateY(4px); transition: opacity var(--t-slow), transform var(--t-slow); }
.newsletter-success.is-shown { opacity: 1; transform: none; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 6px; }
.field > label {
  font: 600 11px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lk-ebony);
}
.field input, .field textarea, .field select {
  font: 400 16px/1.5 var(--sans);
  color: var(--lk-ebony-ink);
  background: var(--lk-linen-50);
  border: 1px solid rgba(83,107,74,.24);
  border-radius: 4px;
  padding: 14px;
  transition: border-color var(--t-base), background-color var(--t-base);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--lk-ebony);
  background: var(--lk-linen);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }
fieldset.step { border: 0; padding: 0; margin: 0; display: grid; gap: 18px; }
fieldset.step .kicker { justify-self: start; }
fieldset.step h2 { margin: 0; }
fieldset.step .muted { margin: 0; }
.field-error { color: var(--lk-tomato); font-size: 12px; min-height: 14px; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: var(--lk-tomato); }

/* ---------- Cards ---------- */
.card {
  background: var(--lk-linen-50);
  border: 1px solid rgba(83,107,74,.14);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.card:hover { box-shadow: 0 1px 2px rgba(83,107,74,.08), 0 8px 24px rgba(83,107,74,.06); }
.card__media { aspect-ratio: 4/5; background: var(--lk-cream); }
.card__body { padding: var(--s-4); }

/* ---------- Image placeholder system (no real photography in repo) ---------- */
.ph {
  position: relative;
  display: block;
  background: var(--lk-cream);
  color: var(--lk-ebony-ink);
  overflow: hidden;
  isolation: isolate;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(83,107,74,.06) 0 1px, transparent 1px 14px);
  z-index: 0;
}
.ph::after {
  content: attr(data-label);
  position: absolute; left: 12px; bottom: 10px; right: 12px;
  font: 500 10px/1.4 'Menlo','Monaco','Courier New', monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(47,62,39,.62);
  z-index: 1;
}
.ph[data-tone="dark"]    { background: var(--lk-ebony); }
.ph[data-tone="dark"]::after { color: rgba(249,242,228,.72); }
.ph[data-tone="dark"]::before { background-image: linear-gradient(135deg, rgba(249,242,228,.06) 0 1px, transparent 1px 14px); }
.ph[data-tone="cream"]   { background: var(--lk-cream); }
.ph[data-tone="linen"]   { background: var(--lk-linen-50); }
.ph[data-tone="bark"]    { background: var(--lk-bark); color: var(--lk-linen); }
.ph[data-tone="bark"]::after { color: rgba(249,242,228,.78); }
.ph[data-tone="tomato"]  { background: var(--lk-tomato); color: var(--lk-linen); }
.ph[data-tone="tomato"]::after { color: rgba(249,242,228,.78); }
.ph[data-tone="fern"]    { background: var(--lk-fern); color: var(--lk-linen); }
.ph[data-tone="fern"]::after { color: rgba(249,242,228,.78); }

.ph--16x9 { aspect-ratio: 16/9; }
.ph--4x5  { aspect-ratio: 4/5; }
.ph--1x1  { aspect-ratio: 1/1; }
.ph--3x2  { aspect-ratio: 3/2; }
.ph--2x3  { aspect-ratio: 2/3; }
.ph--hero { aspect-ratio: auto; height: 100vh; min-height: 620px; }

/* Optional caption seal in upper-left */
.ph[data-stamp]::before {
  content: attr(data-stamp);
  position: absolute;
  top: 12px; left: 12px;
  font: 500 10px/1 'Menlo', monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(47,62,39,.5);
  background: none;
  z-index: 2;
}
.ph[data-tone="dark"][data-stamp]::before,
.ph[data-tone="bark"][data-stamp]::before,
.ph[data-tone="tomato"][data-stamp]::before,
.ph[data-tone="fern"][data-stamp]::before { color: rgba(249,242,228,.65); }

/* Eucalyptus texture band — uses real eucalyptus line drawings */
.eucalyptus-band {
  position: relative;
  background: var(--lk-linen);
  overflow: hidden;
}
.eucalyptus-band > .eu-leaf {
  position: absolute;
  pointer-events: none;
  opacity: .14;
  filter: invert(38%) sepia(28%) saturate(498%) hue-rotate(58deg) brightness(94%) contrast(86%);
}
.eucalyptus-band > .eu-leaf--1 { top: -40px; left: -30px; width: 280px; transform: rotate(-22deg); }
.eucalyptus-band > .eu-leaf--2 { bottom: -60px; right: -40px; width: 320px; transform: rotate(140deg); }
.eucalyptus-band > .eu-leaf--3 { top: 30px; right: 12%; width: 180px; transform: rotate(28deg); opacity:.10; }

.veg-accent { display: inline-block; height: 64px; width: auto; vertical-align: middle; }
.veg-accent--lg { height: 120px; }
.veg-accent--xl { height: 180px; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(47,62,39,.55);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--lk-linen);
  max-width: 520px; width: 100%;
  padding: 48px;
  border-radius: 8px;
  transform: translateY(8px);
  transition: transform var(--t-slow);
  position: relative;
}
.modal-backdrop.is-open .modal { transform: translateY(0); }
.modal__close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 999px; color: var(--lk-ebony); }
.modal__close:hover { background: rgba(83,107,74,.08); }
.modal h3 { margin-bottom: 12px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(47,62,39,.92);
  z-index: 110;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-slow);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__stage { max-width: min(1200px, 92vw); max-height: 86vh; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.lightbox__stage .ph { width: 100%; height: 100%; max-height: 86vh; aspect-ratio: 3/2; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  width: 48px; height: 48px;
  color: var(--lk-linen);
  font-size: 22px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(249,242,228,.08);
  transition: background-color var(--t-base);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(249,242,228,.18); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font: 500 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: rgba(249,242,228,.7); }

/* ---------- Hero patterns ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex; align-items: flex-end;
  color: var(--lk-linen);
  overflow: hidden;
}
.hero .ph { position: absolute; inset: 0; height: 100%; aspect-ratio: auto; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(47,62,39,.32) 0%, rgba(47,62,39,0) 35%, rgba(47,62,39,.55) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 var(--s-4) var(--s-8);
}
.hero h1 { color: var(--lk-linen); max-width: 18ch; }
.hero p  { color: rgba(249,242,228,.92); max-width: 44ch; }

/* ---------- Page enter motion ---------- */
.page-enter > main,
.page-enter > .site-nav,
.page-enter > header.site-nav,
.page-enter > .site-footer {
  animation: fade-up 500ms var(--ease) both;
}
.page-enter > .site-nav { animation-delay: 60ms; }
.page-enter > main      { animation-delay: 140ms; }
.page-enter > .site-footer { animation-delay: 220ms; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* In-view reveal (toggled by JS) */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Capacity notice ---------- */
.capacity {
  border: 1px solid rgba(83,107,74,.22);
  background: var(--lk-linen-50);
  border-radius: 8px;
  padding: var(--s-5);
  display: grid; gap: 12px;
}
.capacity__label { font: 600 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--lk-bark); }

/* ---------- Pattern accents (composed with CSS, no logo files in repo) ---------- */
.veg {
  display: inline-block;
  width: 48px; height: 48px;
  vertical-align: middle;
  color: var(--lk-fern);
}

/* ---------- Misc utilities ---------- */
.center { text-align: center; }
.muted  { color: var(--lk-bark); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: var(--s-5); }
  .field-row { grid-template-columns: 1fr; }
  .modal { padding: 32px 24px; }
}

.kicker { display: inline-block; padding-bottom: 4px; border-bottom: 1px solid currentColor; font: 600 11px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--lk-bark); }

/* ---------- Logo mark (SVG inline) ---------- */
.brand-stack { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; line-height: 1; }
.brand-stack .wordmark { font-family: var(--serif); font-size: 18px; letter-spacing: .12em; text-transform: uppercase; color: inherit; }
.brand-stack .tagline { font: 500 9px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: inherit; opacity: .72; }

/* Scroll lock when drawer/modal open */
body.no-scroll { overflow: hidden; }

/* =========================================================================
   MARKETPLACE PATTERNS (added with the 2026 pivot to chef ↔ host network)
   ========================================================================= */

/* ---------- Updated nav: brand left, links center, two CTAs right ---------- */
.nav-brand__name {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .04em;
  color: inherit;
  margin-left: 4px;
  white-space: nowrap;
}
.nav-ctas { display: flex; gap: 10px; align-items: center; }
.nav-cta {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 4px;
  font: 600 11px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color var(--t-base), color var(--t-base), border-color var(--t-base);
}
.nav-cta--ghost  { color: var(--lk-ebony); border: 1px solid rgba(83,107,74,.32); }
.nav-cta--ghost:hover  { border-color: var(--lk-ebony); }
.nav-cta--solid  { background: var(--lk-ebony); color: var(--lk-linen); }
.nav-cta--solid:hover  { background: var(--lk-fern-deep); color: var(--lk-linen); }
.nav-cta--icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(83,107,74,.32);
  color: var(--lk-ebony);
  background: transparent;
  flex-shrink: 0;
}
.nav-cta--icon:hover { background: var(--lk-ebony); color: var(--lk-linen); border-color: var(--lk-ebony); }
.nav-cta--icon svg { display: block; }
.site-nav.is-hero:not(.is-scrolled) .nav-cta--ghost { color: var(--lk-ebony); border-color: var(--lk-ebony); }
.site-nav.is-hero:not(.is-scrolled) .nav-cta--ghost:hover { background: var(--lk-ebony); color: var(--lk-linen); }
.site-nav.is-hero:not(.is-scrolled) .nav-cta--solid { background: var(--lk-ebony); color: var(--lk-linen); }
.site-nav.is-hero:not(.is-scrolled) .nav-cta--solid:hover { background: var(--lk-fern-deep); color: var(--lk-linen); }
.site-nav.is-hero:not(.is-scrolled) .nav-cta--icon { color: var(--lk-ebony); border-color: var(--lk-ebony); }
.site-nav.is-hero:not(.is-scrolled) .nav-cta--icon:hover { background: var(--lk-ebony); color: var(--lk-linen); }

@media (max-width: 1100px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 1101px) {
  .nav-toggle { display: none; }
}

/* Mobile drawer extra: hr + supercategory captions */
.mobile-drawer__nav hr {
  border: 0; border-top: 1px solid rgba(83,107,74,.22);
  margin: 18px 0;
}
.mobile-drawer__nav a {
  display: flex; flex-direction: column; gap: 2px;
}
.mobile-drawer__nav a .caption {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--lk-bark);
}

/* ---------- Footer top band ---------- */
.footer-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 56px; margin-bottom: 56px;
  border-bottom: 1px solid rgba(249,242,228,.18);
}
.footer-band h3 { color: var(--lk-linen); }
.footer-band__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-band__ghost { border-color: rgba(249,242,228,.55) !important; color: var(--lk-linen) !important; }
.footer-band__ghost:hover { background: rgba(249,242,228,.12) !important; }

/* ---------- SPLIT HERO (Home) ---------- */
.split-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--lk-ebony);
}
.split-hero__pane {
  position: relative;
  display: flex; align-items: center;
  padding: clamp(80px, 9vw, 140px) clamp(40px, 6vw, 96px);
  overflow: hidden;
  isolation: isolate;
  transition: flex var(--t-slow);
}
.split-hero__pane .ph {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: -1;
  filter: brightness(.55);
  transition: filter var(--t-slow), transform var(--t-slow);
}
.split-hero__pane:hover .ph { filter: brightness(.45); transform: scale(1.02); }
.split-hero__pane .split-hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform var(--t-slow);
}
.split-hero__pane::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: var(--lk-ebony);
  opacity: .78;
  transition: background-color var(--t-slow), opacity var(--t-slow);
}
.split-hero__pane > .stack {
  position: relative;
  z-index: 2;
}
.split-hero__pane:hover::after {
  background: var(--lk-linen);
  opacity: .82;
}
.split-hero__pane:hover .split-hero__photo { transform: scale(1.02); }
.split-hero__pane > .stack { color: var(--lk-linen); max-width: 480px; position: relative; z-index: 2; transition: color var(--t-slow); }
.split-hero__pane h2 { color: inherit; }
.split-hero__pane .eyebrow { color: inherit; opacity: .82; }
.split-hero__pane p { color: inherit; opacity: .94; }
.split-hero__pane .link-arrow { color: inherit !important; }
.split-hero__pane:hover > .stack { color: var(--lk-ebony); }
.split-hero__divider {
  position: absolute; left: 50%; top: 12%; bottom: 12%;
  width: 1px; background: rgba(249,242,228,.32);
  transform: translateX(-.5px);
}
@media (max-width: 880px) {
  .split-hero { grid-template-columns: 1fr; min-height: auto; }
  .split-hero__divider { display: none; }
  .split-hero__pane { min-height: 70vh; }
}

/* ---------- HOST/CHEF dual columns (How it works) ---------- */
.dual-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
@media (max-width: 880px) { .dual-columns { grid-template-columns: 1fr; } }

.column-card {
  background: var(--lk-linen-50);
  border: 1px solid rgba(83,107,74,.18);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 48px);
}
.column-card--dark {
  background: var(--lk-ebony);
  color: var(--lk-linen);
  border-color: rgba(249,242,228,.18);
}
.column-card--dark h2,
.column-card--dark h3,
.column-card--dark .eyebrow { color: var(--lk-linen); }
.column-card--dark .muted { color: rgba(249,242,228,.7); }
.column-card--dark hr { border-top-color: rgba(249,242,228,.18); }
.column-card--dark .btn--secondary {
  color: var(--lk-linen);
  border-color: var(--lk-linen);
  background: transparent;
}
.column-card--dark .btn--secondary:hover {
  background: var(--lk-linen);
  color: var(--lk-ebony-ink);
  border-color: var(--lk-linen);
}

/* ---------- STAGE RAIL (4-gate chef journey) ---------- */
.stage-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 48px;
}
.stage-rail::before {
  content: '';
  position: absolute; top: 24px; left: 0; right: 0;
  height: 1px; background: rgba(83,107,74,.32);
}
.stage {
  position: relative;
  padding-top: 24px;
}
.stage__node {
  position: absolute; top: -16px; left: 0;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--lk-linen);
  border: 1px solid var(--lk-ebony);
  color: var(--lk-ebony);
  display: flex; align-items: center; justify-content: center;
  font: 600 12px/1 var(--sans);
}
.column-card--dark .stage__node { background: var(--lk-ebony-ink); border-color: var(--lk-cream); color: var(--lk-cream); }
.column-card--dark .stage__no { color: var(--lk-cream); }
.stage__no { font: 600 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--lk-bark); margin-bottom: 8px; display:block; }
.stage h3 { font-size: 22px; margin-bottom: 8px; }
.stage p { font-size: 14px; color: inherit; opacity: .85; }
@media (max-width: 880px) {
  .stage-rail { grid-template-columns: 1fr; gap: 36px; }
  .stage-rail::before { display: none; }
}

/* ---------- DIRECTORY (Browse chefs) ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  padding: 18px 20px;
  background: var(--lk-linen-50);
  border: 1px solid rgba(83,107,74,.18);
  border-radius: 6px;
  margin-bottom: 32px;
}
.filter-bar select, .filter-bar input {
  padding: 8px 12px;
  border: 1px solid rgba(83,107,74,.28);
  border-radius: 4px;
  background: white;
  font: 400 13px/1 var(--sans);
  color: var(--lk-ebony-ink);
}
.filter-bar .filter-count {
  margin-left: auto;
  font: 500 12px/1 var(--sans);
  color: var(--lk-bark);
}

.chef-card {
  display: block;
  color: inherit;
  background: var(--lk-linen-50);
  border: 1.5px solid var(--lk-ebony);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.chef-card:hover {
  transform: translateY(-3px);
  border-color: var(--lk-ebony-ink);
  box-shadow: 0 12px 32px rgba(47,62,39,.16);
}
.chef-card .ph { aspect-ratio: 4/5; }
.chef-card__photo { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.chef-card__body { padding: 20px; }
.chef-card__name { font-family: var(--serif); font-size: 22px; line-height: 1.2; margin: 4px 0 6px; color: var(--lk-ebony); }
.chef-card__meta { font: 500 12px/1.4 var(--sans); color: var(--lk-bark); }
.chef-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag {
  display: inline-block;
  padding: 4px 10px;
  font: 500 11px/1 var(--sans);
  letter-spacing: .04em;
  background: var(--lk-cream);
  color: var(--lk-ebony-ink);
  border-radius: 999px;
}
.tag--available { background: #B8C9A4; color: var(--lk-ebony-ink); }
.tag--limited   { background: var(--lk-cream-deep); color: var(--lk-ebony-ink); }

/* ---------- STEPPER (multi-step chef application) ---------- */
.stepper {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(83,107,74,.18);
}
.stepper__step {
  display: flex; align-items: center; gap: 10px;
  font: 600 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  color: var(--lk-bark);
}
.stepper__step .dot {
  width: 28px; height: 28px;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.stepper__step.is-active { color: var(--lk-ebony); }
.stepper__step.is-active .dot { background: var(--lk-ebony); color: var(--lk-linen); border-color: var(--lk-ebony); }
.stepper__step.is-done { color: var(--lk-fern); }
.stepper__step.is-done .dot { background: var(--lk-fern); color: var(--lk-linen); border-color: var(--lk-fern); }
.stepper__sep { flex: 1; height: 1px; background: rgba(83,107,74,.22); }

/* ---------- TABS (FAQ, etc.) ---------- */
.tabs {
  display: flex; gap: 4px;
  border-bottom: 1px solid rgba(83,107,74,.22);
  margin-bottom: 40px;
}
.tabs__btn {
  padding: 14px 20px;
  font: 600 12px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  color: var(--lk-bark);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--t-base), border-color var(--t-base);
}
.tabs__btn:hover { color: var(--lk-ebony); }
.tabs__btn.is-active { color: var(--lk-ebony); border-bottom-color: var(--lk-ebony); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade-up 400ms var(--ease) both; }

/* ---------- GALLERY MASONRY ---------- */
.masonry { column-count: 3; column-gap: 12px; }
.masonry > figure { break-inside: avoid; margin: 0 0 12px; position: relative; }
.masonry > figure img { width: 100%; display: block; }
.masonry > figure figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(46,46,46,.78); color: var(--lk-linen);
  padding: 6px 10px; font: 500 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase;
}
@media (max-width: 880px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }

/* ---------- COLLAB LOGO STRIP ---------- */
.collab-strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; border-top: 1px solid rgba(83,107,74,.22); border-left: 1px solid rgba(83,107,74,.22);
}
.collab-strip > div {
  border-right: 1px solid rgba(83,107,74,.22); border-bottom: 1px solid rgba(83,107,74,.22);
  aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center;
  font: 500 13px/1.2 var(--serif); color: var(--lk-bark); text-align: center; padding: 16px;
  font-style: italic;
}
@media (max-width: 880px) { .collab-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .collab-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- JOURNAL CARDS ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; }
@media (max-width: 1000px) { .journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .journal-grid { grid-template-columns: 1fr; } }
.journal-card { display: block; color: inherit; text-decoration: none; }
.journal-card__img {
  aspect-ratio: 4/5; background: var(--lk-cream); margin-bottom: 18px; overflow: hidden;
  border: 1px solid rgba(83,107,74,.18);
}
.journal-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.journal-card:hover .journal-card__img img { transform: scale(1.04); }
.journal-card__meta { font: 500 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--lk-bark); margin-bottom: 8px; }
.journal-card__title { font: 400 26px/1.2 var(--serif); color: var(--lk-ebony-ink); margin: 0 0 8px; }
.journal-card__excerpt { color: var(--lk-bark); font-size: 15px; }


/* ---------- ACCORDION (FAQ) ---------- */
.accordion { border-top: 1px solid rgba(83,107,74,.18); }
.accordion details {
  border-bottom: 1px solid rgba(83,107,74,.18);
  padding: 20px 0;
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--lk-ebony);
  gap: 24px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+';
  font: 300 28px/1 var(--serif);
  color: var(--lk-bark);
  transition: transform var(--t-base);
}
.accordion details[open] summary::after { content: '–'; }
.accordion details > div { padding-top: 14px; max-width: 64ch; color: var(--lk-bark); }

/* ---------- MAP / CITIES ---------- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(83,107,74,.18);
}
.city-grid li {
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid rgba(83,107,74,.18);
  display: flex; flex-direction: column; gap: 6px;
}
.city-grid li strong { font-family: var(--serif); font-size: 22px; color: var(--lk-ebony); font-weight: 500; }
.city-grid li span { font: 500 12px/1.4 var(--sans); color: var(--lk-bark); letter-spacing: .02em; }
.city-pill {
  padding: 18px 20px;
  background: var(--lk-linen-50);
  border: 1px solid rgba(83,107,74,.18);
  border-radius: 6px;
}
.city-pill .name { font-family: var(--serif); font-size: 22px; color: var(--lk-ebony); }
.city-pill .meta { font: 500 12px/1.4 var(--sans); color: var(--lk-bark); margin-top: 4px; }
.city-pill--soon { opacity: .8; background: transparent; border-style: dashed; }

/* ---------- METRIC BLOCKS ---------- */
.metric { padding: 24px 0; }
.metric__num {
  font-family: var(--serif); font-size: clamp(48px, 6vw, 72px); line-height: 1;
  color: var(--lk-ebony);
}
.metric__label { font: 600 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--lk-bark); margin-top: 12px; }

/* ---------- PRICE BAR ---------- */
.price-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--lk-linen-50);
  border: 1px solid rgba(83,107,74,.18);
  border-radius: 8px;
  overflow: hidden;
}
.price-bar > div {
  padding: 28px 24px;
  border-right: 1px solid rgba(83,107,74,.12);
}
.price-bar > div:last-child { border-right: 0; }
@media (max-width: 720px) { .price-bar { grid-template-columns: 1fr; } .price-bar > div { border-right: 0; border-bottom: 1px solid rgba(83,107,74,.12);}}
.price-bar h4 { font: 600 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--lk-bark); margin: 0 0 8px; }
.price-bar .num { font-family: var(--serif); font-size: 32px; color: var(--lk-ebony); }
.price-bar p { margin-top: 6px; font-size: 13px; color: var(--lk-bark); }

/* ---------- CHIP ROW ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 6px 12px;
  border: 1px solid rgba(83,107,74,.28);
  border-radius: 999px;
  font: 500 12px/1 var(--sans);
  color: var(--lk-ebony);
  background: transparent;
}
.chip.is-on { background: var(--lk-ebony); color: var(--lk-linen); border-color: var(--lk-ebony); }

/* ---------- DENSE / FUNCTIONAL TYPE ---------- */
.functional { font-family: var(--sans); }
.functional h1, .functional h2, .functional h3 { font-family: var(--serif); }
.functional p { max-width: 64ch; font-size: 15px; line-height: 1.65; }

/* ---------- STANDARD PAGE — pillars ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(83,107,74,.22);
  border-left: 1px solid rgba(83,107,74,.22);
}
.pillar-grid > .pillar {
  border-right: 1px solid rgba(83,107,74,.22);
  border-bottom: 1px solid rgba(83,107,74,.22);
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  background: var(--lk-linen);
  min-height: 360px;
}
.pillar__no {
  font: 600 11px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lk-bark);
}
.pillar__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--lk-ebony);
  margin: 0;
}
.pillar__icon {
  position: absolute;
  top: clamp(28px, 4vw, 44px);
  right: clamp(28px, 4vw, 44px);
  width: clamp(56px, 7vw, 88px);
  height: clamp(56px, 7vw, 88px);
  opacity: 0.85;
  pointer-events: none;
}
.pillar__icon img { width: 100%; height: 100%; object-fit: contain; }
.pillar__body { color: var(--lk-bark); font-size: 16px; line-height: 1.6; max-width: 38ch; margin-top: auto; }

@media (max-width: 720px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* commitments list — long-form */
.commitments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(83,107,74,.22);
}
.commitments > li {
  list-style: none;
  border-bottom: 1px solid rgba(83,107,74,.22);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: baseline;
}
.commitments > li:nth-child(odd) { padding-right: 32px; border-right: 1px solid rgba(83,107,74,.22); }
.commitments > li:nth-child(even) { padding-left: 32px; }
.commitments__no {
  font: 600 11px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lk-fern);
}
.commitments__text { font-family: var(--serif); font-size: 22px; line-height: 1.3; color: var(--lk-ebony-ink); }
@media (max-width: 720px) {
  .commitments { grid-template-columns: 1fr; }
  .commitments > li:nth-child(odd) { border-right: 0; padding-right: 0; }
  .commitments > li:nth-child(even) { padding-left: 0; }
}

/* small inline mark for inline list eyebrows */
.standard-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 500 13px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lk-ebony);
  padding: 7px 14px;
  border: 1px solid var(--lk-ebony);
  border-radius: 999px;
}

