/* ============================================================================
   NIKITA BOTBERG — Private Chef · Homepage styles
   Tokens (verbatim from design system) + section styles adapted from the
   website UI kit. White-first luxe; emerald point-wise accent; gold line/mark.
   ============================================================================ */

:root {
  /* ---- Greens (emerald = the signature accent) ------------------------- */
  --emerald:      #0E3B2C;
  --emerald-2:    #134736;
  --emerald-mid:  #2A5B44;
  --forest-black: #092826;

  /* ---- White base + cream ---------------------------------------------- */
  --white:        #FFFFFF;
  --cream:        #F4F0E7;
  --cream-raised: #FBF8F1;
  --linen:        #EFEADD;
  --sand:         #E4DCC9;
  --clay:         #CBC0A8;

  /* ---- Gold (camel) ---------------------------------------------------- */
  --gold:         #CBA06A;
  --gold-deep:    #AE8348;
  --gold-bright:  #D8B585;

  /* ---- Legacy aliases -------------------------------------------------- */
  --paper:        var(--white);
  --paper-raised: var(--cream);
  --taupe:        #59635C;
  --stone:        #79827A;
  --espresso:     var(--emerald);
  --ink:          var(--forest-black);
  --brass:        var(--gold);
  --brass-deep:   var(--gold-deep);
  --brass-soft:   var(--gold-bright);

  /* ---- Semantic -------------------------------------------------------- */
  --success:      #2A5B44;
  --error:        #8A3A32;
  --warning:      #B07F3E;
  --info:         #2A5B44;

  /* ---- Foreground roles ------------------------------------------------ */
  --fg-1: #16241D;
  --fg-2: var(--taupe);
  --fg-3: var(--stone);
  --fg-on-dark:   #ECE4D6;
  --fg-on-dark-2: #A9B6AA;

  /* ---- Surface roles --------------------------------------------------- */
  --bg-1: var(--white);
  --bg-2: var(--cream);
  --bg-3: var(--linen);
  --bg-dark: var(--emerald);
  --bg-darker: var(--forest-black);

  /* ---- Hairlines & borders --------------------------------------------- */
  --line:        rgba(9, 40, 38, 0.12);
  --line-strong: rgba(9, 40, 38, 0.22);
  --line-on-dark: rgba(236, 228, 214, 0.16);

  /* ---- Type families --------------------------------------------------- */
  --font-display: 'Cormorant Garamond', 'Hoefler Text', Georgia, serif;
  --font-sans:    'Hanken Grotesk', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-emblem:  'Bodoni Moda', 'Cormorant Garamond', Georgia, serif;
  --font-mono:    'SFMono-Regular', 'Menlo', monospace;

  /* ---- Type scale ------------------------------------------------------ */
  --t-hero:    clamp(56px, 8vw, 112px);
  --t-d1:      72px;
  --t-d2:      56px;
  --t-d3:      42px;
  --t-h1:      34px;
  --t-h2:      27px;
  --t-h3:      21px;
  --t-body-lg: 19px;
  --t-body:    16px;
  --t-small:   14px;
  --t-eyebrow: 12px;
  --t-caption: 11px;

  /* ---- Line heights ---------------------------------------------------- */
  --lh-tight:   1.04;
  --lh-display: 1.12;
  --lh-snug:    1.3;
  --lh-body:    1.6;
  --lh-relaxed: 1.75;

  /* ---- Tracking -------------------------------------------------------- */
  --track-eyebrow: 0.22em;
  --track-label:   0.12em;
  --track-display: -0.01em;
  --track-body:    0;

  /* ---- Spacing scale --------------------------------------------------- */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 24px;  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;
  --s-9: 96px;  --s-10: 128px; --s-11: 160px;

  /* ---- Radii ----------------------------------------------------------- */
  --r-0: 0px;
  --r-1: 2px;
  --r-2: 4px;
  --r-3: 8px;
  --r-pill: 999px;

  /* ---- Shadows --------------------------------------------------------- */
  --shadow-xs: 0 1px 2px rgba(11, 31, 26, 0.06);
  --shadow-sm: 0 2px 8px rgba(11, 31, 26, 0.07);
  --shadow-md: 0 8px 28px rgba(11, 31, 26, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 31, 26, 0.16);

  /* ---- Motion ---------------------------------------------------------- */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:    160ms;
  --dur:         280ms;
  --dur-slow:    520ms;

  --maxw: 1280px;
}

/* ============================================================================
   BASE
   ============================================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { margin: 0; padding: 0; }
body {
  background: var(--white);
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--brass); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--brass-deep); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--r-1); }

.skip-link {
  position: absolute; left: 16px; top: -56px; z-index: 200;
  background: var(--emerald); color: var(--white);
  padding: 12px 20px; border-radius: var(--r-2); font-size: 14px; font-weight: 600;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 16px; color: var(--white); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.section { padding: 112px 0; }
.section-tight { padding: 88px 0; }

/* ---- Reveal animation ---------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================================
   ATOMS
   ============================================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass); font-family: var(--font-sans);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--brass); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after { content: ""; width: 26px; height: 1px; background: var(--brass); }

.h-display {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px); line-height: 1.1;
  letter-spacing: -.01em; color: var(--fg-1); margin: 16px 0 0;
}
.h-display em { font-style: italic; color: var(--emerald); }
.lead { font-size: 17px; line-height: 1.65; color: var(--fg-2); }

.emblem { display: block; }
.emblem text { font-family: var(--font-emblem); }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  font-size: 14px; font-weight: 600; letter-spacing: .02em;
  padding: 14px 26px; border-radius: var(--r-2); border: 1px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap; font-family: var(--font-sans);
}
.btn i { font-size: 17px; }
.btn-primary { background: var(--emerald); color: var(--white); }
.btn-primary:hover { background: var(--forest-black); color: var(--white); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--emerald); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--emerald); background: var(--linen); color: var(--emerald); }
.btn-brass { background: var(--gold); color: var(--forest-black); }
.btn-brass:hover { background: var(--gold-deep); color: var(--forest-black); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--brass); padding: 14px 4px; }
.btn-ghost:hover { color: var(--brass-deep); gap: 13px; }
.btn-ondark { background: var(--white); color: var(--emerald); }
.btn-ondark:hover { background: #fff; color: var(--emerald); }
.btn:active { transform: scale(.985); }

/* ============================================================================
   NAV
   ============================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px; transition: background var(--dur) var(--ease),
            padding var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.88); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); padding: 14px 40px;
}
.nav-brand { display: inline-flex; align-items: center; gap: 11px; background: none; border: 0; padding: 0; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-kicker { font-family: var(--font-sans); font-size: 9px; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--fg-3); margin-bottom: 4px; }
.nav-mark {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 23px; color: var(--emerald); letter-spacing: -.01em; line-height: 1;
}
.nav.onhero:not(.scrolled) .nav-kicker { color: rgba(236,228,214,.72); }
/* links spread across the bar (not clumped right); CTA rides the right edge */
.nav-links { display: flex; flex: 1; align-items: center; justify-content: space-between; gap: 20px; margin-left: 56px; }
.nav-link {
  font-size: 15px; font-weight: 500; color: var(--fg-1); letter-spacing: .015em;
  background: none; border: 0; padding: 0 0 5px; position: relative; font-family: var(--font-sans);
}
/* persistent gold underline so the menu reads as a menu */
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold); opacity: .4; transition: opacity var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-link:hover { color: var(--brass); }
.nav-link:hover::after { opacity: 1; }
.nav-links .btn { flex: none; }

/* Over hero (transparent state): light text */
/* hero is a dark full-bleed photo -> nav over it is light (cream + gold-bright) */
.nav.onhero:not(.scrolled) .nav-mark,
.nav.onhero:not(.scrolled) .nav-link { color: var(--cream); }
.nav.onhero:not(.scrolled) .nav-link:hover { color: #fff; }
.nav.onhero:not(.scrolled) .nav-link::after { background: var(--gold-bright); opacity: .55; }
.nav.onhero:not(.scrolled) .nav-link:hover::after { opacity: 1; }
.nav.onhero:not(.scrolled) .emblem rect { stroke: var(--gold-bright); }
.nav.onhero:not(.scrolled) .emblem text { fill: #fff; }
.nav.onhero:not(.scrolled) .nav-toggle span { background: var(--cream); }
.nav.onhero:not(.scrolled) .btn-primary { background: var(--gold); color: var(--forest-black); border-color: var(--gold); }
.nav.onhero:not(.scrolled) .btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.nav-toggle {
  display: none; width: 40px; height: 40px; background: none; border: 0;
  flex-direction: column; justify-content: center; gap: 5px; align-items: flex-end;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--emerald); transition: all var(--dur) var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70; background: var(--white);
  padding: 96px 40px 40px; display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 28px; color: var(--fg-1);
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { color: var(--brass); }
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ============================================================================
   HERO — full-bleed photo, headline OVER it (deck title-slide style)
   ============================================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 96px 0 48px; background: var(--emerald); overflow: hidden;
}
/* hero content is above the fold — show immediately, never wait for scroll-reveal */
.hero .reveal { opacity: 1; transform: none; transition: none; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
/* deep, even emerald scrim so the whole frame + text reads (deck .scrim.deep) */
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(4,28,19,.97) 0%, rgba(4,28,19,.74) 52%, rgba(4,28,19,.82) 100%),
    radial-gradient(120% 90% at 50% 40%, rgba(4,28,19,.34), rgba(4,28,19,.62)); }
.hero-inner { position: relative; z-index: 3; max-width: 960px; }
.hero-emblem { display: block; margin: 0 auto 16px; }
.hero .eyebrow { color: var(--gold-bright); justify-content: center; }
.hero .eyebrow::before, .hero .eyebrow::after { background: var(--gold-bright); }
.hero h1 {
  font-family: var(--font-display); font-weight: 400; color: var(--cream);
  font-size: clamp(34px, 4.2vw, 60px); line-height: 1.1; letter-spacing: -.01em;
  margin: 16px auto 0; max-width: 18ch;
}
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero .sub { color: var(--fg-on-dark); font-size: 17px; line-height: 1.6; max-width: 52ch; margin: 18px auto 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero .btn-primary { background: var(--gold); color: var(--forest-black); border-color: var(--gold); }
.hero .btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.hero .btn-secondary { color: var(--cream); border-color: rgba(236,228,214,.45); }
.hero .btn-secondary:hover { border-color: var(--cream); background: rgba(255,255,255,.06); }

/* ============================================================================
   ABOUT / split
   ============================================================================ */
.split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center; }
.about-photo { aspect-ratio: 4/5; max-height: 440px; border-radius: var(--r-2); overflow: hidden; background: var(--emerald); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text p.lead { margin-top: 22px; }
.about-sig { font-family: var(--font-display); font-style: italic; font-size: 30px; color: var(--emerald); margin-top: 14px; }
.stat-row { display: flex; gap: 48px; margin-top: 36px; border-top: 1px solid var(--line); padding-top: 28px; flex-wrap: wrap; }
.stat .n { font-family: var(--font-display); font-size: 42px; color: var(--emerald); line-height: 1; }
.stat .l { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); margin-top: 8px; }

/* ============================================================================
   SERVICES — cream
   ============================================================================ */
.bg-cream { background: var(--cream); }
.section-head { max-width: 620px; }
.section-head.center { margin: 0 auto; text-align: center; }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.svc-card {
  border: 1px solid var(--line); border-radius: var(--r-2); background: var(--white);
  padding: 36px 34px 30px; transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex; flex-direction: column; position: relative;
}
.svc-card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc-card .svc-ic { font-size: 28px; color: var(--brass); margin-bottom: 14px; }
.svc-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 28px; margin: 0 0 12px; line-height: 1.15; color: var(--fg-1); }
.svc-card p { font-size: 15px; line-height: 1.6; color: var(--fg-2); margin: 0 0 22px; }
.svc-card .svc-foot { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); padding-top: 18px; }
.svc-price { font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--emerald); }
.svc-price span { font-style: normal; font-family: var(--font-sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); display: block; margin-bottom: 2px; }
.svc-more { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.svc-more i { transition: transform var(--dur) var(--ease); }
.svc-card:hover .svc-more i { transform: translateX(4px); }
.svc-note { margin-top: 32px; font-size: 13px; color: var(--fg-3); text-align: center; }

/* ============================================================================
   SAMPLE MENU — white
   ============================================================================ */
.menu-tabs { display: flex; justify-content: center; gap: 8px; margin: 40px 0 24px; flex-wrap: wrap; }
.menu-tab {
  font-size: 13px; font-weight: 600; padding: 10px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--line-strong); color: var(--stone); background: transparent;
  transition: all var(--dur) var(--ease); font-family: var(--font-sans);
}
.menu-tab:hover { border-color: var(--emerald); color: var(--emerald); }
.menu-tab.active { background: var(--emerald); color: var(--white); border-color: var(--emerald); }
.menu-panel { display: none; max-width: 800px; margin: 0 auto; }
.menu-panel.active { display: block; }
.menu-sub { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); margin: 8px 0 28px; }
.course { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); }
.course:last-child { border-bottom: 1px solid var(--line); }
.course .num { font-family: var(--font-display); font-style: italic; font-size: 30px; color: var(--brass); line-height: 1; }
.course .ct { font-family: var(--font-display); font-size: 27px; font-weight: 600; margin: 0 0 6px; color: var(--fg-1); line-height: 1.15; }
.course .cd { font-size: 16px; color: var(--fg-2); line-height: 1.55; font-style: italic; font-family: var(--font-display); margin: 0; }
.menu-foot { text-align: center; margin-top: 48px; }
.menu-foot p { font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--fg-2); margin: 0 0 20px; }

/* ============================================================================
   EMERALD QUOTE BAND
   ============================================================================ */
.band-dark { background: var(--emerald); color: var(--fg-on-dark); }
.band-dark .quote-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.quote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(28px, 3.6vw, 46px); line-height: 1.28; color: #f3eede; max-width: 20ch; margin: 0;
}
.quote b { color: var(--gold-bright); font-weight: 500; font-style: normal; }
.band-dark .lead { color: var(--fg-on-dark-2); }

/* ============================================================================
   HOW IT WORKS — cream
   ============================================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px; }
.step { border-top: 1px solid var(--line-strong); padding-top: 22px; }
.step .sn { font-family: var(--font-display); font-style: italic; font-size: 44px; color: var(--brass); line-height: 1; }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 23px; margin: 14px 0 10px; color: var(--fg-1); }
.step p { font-size: 15px; line-height: 1.6; color: var(--fg-2); margin: 0; }

/* ============================================================================
   GALLERY — white
   ============================================================================ */
/* masonry columns: photos shown in full (no crop), varied natural heights, not huge */
.gallery-grid { column-count: 3; column-gap: 14px; margin-top: 48px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--r-2);
  background: var(--cream); border: 0; padding: 0; cursor: pointer;
  display: block; width: 100%; margin: 0 0 14px; break-inside: avoid;
}
.gallery-item.tall { aspect-ratio: auto; }
.gallery-item img { display: block; width: 100%; height: auto; object-fit: contain; transition: transform var(--dur-slow) var(--ease-out); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: rgba(9,40,38,0);
  transition: background var(--dur) var(--ease);
}
.gallery-item:hover::after { background: rgba(9,40,38,.14); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(9,40,38,.94);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: var(--r-2); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid var(--line-on-dark);
  color: var(--gold-bright); width: 54px; height: 54px; border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  transition: background var(--dur) var(--ease);
}
.lb-btn:hover { background: rgba(255,255,255,.16); color: #fff; }
.lb-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 28px; top: 50%; transform: translateY(-50%); }
.lb-close { top: 28px; right: 28px; width: 48px; height: 48px; font-size: 22px; }
.lb-counter {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--gold-bright); font-size: 13px; letter-spacing: .16em; font-weight: 600;
}

/* ============================================================================
   REVIEWS — cream
   ============================================================================ */
/* wider, less tall: 2-up cards, sized to content (no equal-height stretch) */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; align-items: start; max-width: 1040px; margin-left: auto; margin-right: auto; }
.review-card {
  background: var(--cream-raised); border: 1px solid var(--line); border-radius: var(--r-2);
  padding: 28px 32px; display: flex; flex-direction: column; align-self: start;
}
.review-card .qmark { font-family: var(--font-display); font-size: 44px; color: rgba(203,160,106,.4); line-height: .6; margin-bottom: 12px; }
.review-card blockquote { font-family: var(--font-display); font-style: italic; font-size: 18px; line-height: 1.45; color: var(--fg-1); margin: 0 0 18px; }
.review-card .rrule { height: 1px; background: rgba(203,160,106,.3); margin-bottom: 18px; }
.review-card .rname { font-size: 14px; font-weight: 600; color: var(--gold-deep); }
.review-card .rrole { font-size: 12px; color: var(--fg-3); margin-top: 3px; }
.reviews-dots { display: none; justify-content: center; gap: 10px; margin-top: 26px; }
.reviews-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--clay); padding: 0; }
.reviews-dots button.active { background: var(--gold-deep); }

/* ============================================================================
   FAQ — white
   ============================================================================ */
.faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-item { border-top: 1px solid var(--line); }
.faq-list .faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: none; border: 0; padding: 26px 4px; text-align: left;
  font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--fg-1); line-height: 1.25;
}
.faq-q:hover { color: var(--emerald); }
.faq-icon { flex-shrink: 0; color: var(--brass); font-size: 22px; transition: transform var(--dur) var(--ease); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease); }
@media (prefers-reduced-motion: reduce) { .faq-a { transition: none; } }
.faq-a-inner { padding: 0 4px 28px; font-size: 16px; line-height: 1.7; color: var(--fg-2); max-width: 64ch; }

/* ============================================================================
   BOOKING — solid emerald
   ============================================================================ */
.booking { background: var(--emerald); color: var(--fg-on-dark); }
.booking-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: start; }
.booking-aside .eyebrow { color: var(--gold-bright); }
.booking-aside .eyebrow::before, .booking-aside .eyebrow::after { background: var(--gold-bright); }
.booking-aside .h-display { color: #f3eede; }
.booking-aside .h-display em { color: var(--gold-bright); }
.booking-aside p { color: var(--fg-on-dark-2); font-size: 16px; line-height: 1.7; margin-top: 20px; }
.booking-aside .aside-contact { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.booking-aside .aside-contact a { display: inline-flex; align-items: center; gap: 11px; color: var(--fg-on-dark); font-size: 15px; }
.booking-aside .aside-contact a i { color: var(--gold-bright); font-size: 19px; }
.booking-aside .aside-contact a:hover { color: #fff; }

.booking-card { background: var(--white); border-radius: var(--r-3); padding: 44px 44px 40px; box-shadow: var(--shadow-lg); }
.steps { display: flex; gap: 8px; margin-bottom: 28px; }
.step-pip { flex: 1; height: 3px; border-radius: 2px; background: var(--linen); }
.step-pip.done, .step-pip.active { background: var(--gold); }
.step-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 18px; }
.fstep { display: none; }
.fstep.active { display: block; animation: fadein var(--dur) var(--ease); }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .fstep.active { animation: none; } }
.field-group { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-label { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); margin: 0 0 8px; display: block; }
.field-label .req { color: var(--gold-deep); }
.input, select.input, textarea.input {
  width: 100%; background: var(--cream-raised); border: 1px solid var(--line-strong);
  border-radius: var(--r-1); padding: 14px 16px; font-family: var(--font-sans);
  font-size: 16px; color: var(--fg-1); transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.input::placeholder, textarea.input::placeholder { color: var(--clay); }
.input:focus, select.input:focus, textarea.input:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(203,160,106,.22);
}
textarea.input { resize: vertical; min-height: 96px; }
select.input { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2359635C' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field-error { color: var(--error); font-size: 13px; margin-top: 6px; display: none; }
.field-group.has-error .input { border-color: var(--error); }
.field-group.has-error .field-error { display: block; }
.booking-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 16px; }
.booking-note { font-size: 13px; color: var(--fg-3); margin-top: 20px; }
.booking-confirm { text-align: center; padding: 24px 0; }
.confirm-check { width: 72px; height: 72px; border-radius: 50%; background: rgba(42,91,68,.16); color: var(--success); display: flex; align-items: center; justify-content: center; font-size: 38px; margin: 0 auto 24px; }
.booking-confirm h3 { font-family: var(--font-display); font-weight: 600; font-size: 34px; color: var(--fg-1); margin: 0 0 12px; }
.booking-confirm p { font-size: 17px; color: var(--fg-2); max-width: 42ch; margin: 0 auto; }
.form-alert { display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--r-1); background: rgba(138,58,50,.08); border: 1px solid rgba(138,58,50,.3); color: var(--error); font-size: 14px; }
.form-alert.show { display: block; }

/* ============================================================================
   CTA BAND
   ============================================================================ */
.cta-band { text-align: center; }
.cta-band .eyebrow { color: var(--gold); justify-content: center; }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: var(--gold); }
.cta-band .h-display { max-width: 18ch; margin: 16px auto 28px; }
/* emerald closing variant (deck closing-slide) */
.cta-band.band-dark { background: var(--emerald); color: var(--fg-on-dark); }
.cta-band.band-dark .eyebrow { color: var(--gold-bright); }
.cta-band.band-dark .eyebrow::before, .cta-band.band-dark .eyebrow::after { background: var(--gold-bright); }
.cta-emblem { display: block; margin: 0 auto 20px; }

/* ============================================================================
   DESIGN-SYSTEM ELEMENTS (reusable): keyline · diamond band · seal · footmark
   ============================================================================ */
/* gold keyline frame w/ corner ticks — SOLID emerald blocks only */
.band-dark, .booking, .cta-band.band-dark { position: relative; }
.keyline { position: absolute; inset: 28px; z-index: 1; border: 1px solid rgba(216,181,133,.42);
  border-radius: var(--r-3); pointer-events: none; }
.keyline::before, .keyline::after { content: ""; position: absolute; width: 18px; height: 18px; border: 1px solid var(--gold-bright); }
.keyline::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.keyline::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.band-dark .wrap, .booking .wrap, .cta-band.band-dark .wrap { position: relative; z-index: 2; }
/* headings inside dark bands */
.band-dark .h-display { color: #f3eede; }
.band-dark .h-display em { color: var(--gold-bright); }
/* woven double-diamond band strip — section-border ornament */
.dband-strip { display: block; width: 100%; height: 20px; line-height: 0; opacity: .85;
  background-repeat: repeat-x; background-position: center; background-size: auto 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='44' viewBox='0 0 40 44'%3E%3Cg fill='none' stroke='%23CBA06A' stroke-width='1'%3E%3Cpath d='M0 4 L20 22 L0 40 L-20 22 Z'/%3E%3Cpath d='M20 4 L40 22 L20 40 L0 22 Z'/%3E%3Cpath d='M40 4 L60 22 L40 40 L20 22 Z'/%3E%3C/g%3E%3Cg fill='none' stroke='%23CBA06A' stroke-width='0.6'%3E%3Cpath d='M0 11 L13 22 L0 33 L-13 22 Z'/%3E%3Cpath d='M20 11 L33 22 L20 33 L7 22 Z'/%3E%3Cpath d='M40 11 L53 22 L40 33 L27 22 Z'/%3E%3C/g%3E%3C/svg%3E"); }
.dband-strip.top { margin-bottom: 44px; }
.dband-strip.bottom { margin-top: 44px; }
/* scalloped seal at menu end */
.menu-seal { display: flex; justify-content: center; margin: 52px 0 8px; }
/* footmark row (italic name + tracked label) */
.footmark { margin-top: 46px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; align-items: center;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-on-dark-2); }
.footmark .fm-name { font-family: var(--font-display); font-style: italic; text-transform: none; letter-spacing: 0; font-size: 24px; color: var(--gold-bright); }
.footmark .fm-sep { color: rgba(216,181,133,.45); }
/* featured service card (deck package .feat) */
/* every service card = Luxe Card A: white + inner gold keyline with BOLD corner ticks */
.card-keyline { position: absolute; inset: 9px; border: 1px solid rgba(203,160,106,.34); border-radius: 7px; pointer-events: none; }
.card-keyline::before, .card-keyline::after { content: ""; position: absolute; width: 16px; height: 16px; border: 2px solid var(--gold); }
.card-keyline::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.card-keyline::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.svc-card .svc-ic { color: var(--gold-deep); }
/* CTA footmark on light cream */
.cta-footmark { color: var(--fg-3); }
.cta-footmark .fm-name { color: var(--emerald); }

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer { position: relative; background: var(--forest-black); color: var(--fg-on-dark-2); padding: 84px 0 40px; }
/* diamond band: full-bleed horizontally (edge to edge), small vertical gap from top.
   NB: <svg> is a replaced element — needs an EXPLICIT width (here 100%). */
.footer-band { position: absolute; top: 30px; left: 0; width: 100%; height: 36px; opacity: .9; line-height: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-bright); margin: 0 0 16px; font-family: var(--font-sans); }
.footer a, .footer .fl { display: block; color: var(--fg-on-dark-2); font-size: 14px; margin-bottom: 11px; }
.footer a:hover { color: var(--white); }
.fmark-row { display: flex; align-items: center; gap: 12px; }
.fmark-wm { display: flex; flex-direction: column; line-height: 1; }
.fmark-kicker { font-family: var(--font-sans); font-size: 9px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 5px; }
.footer .fmark { font-family: var(--font-display); font-style: italic; font-size: 28px; color: #ece5d8; margin: 0; }
.footer .fsub { font-size: 13px; line-height: 1.65; margin-top: 14px; max-width: 34ch; }
.footer .fcontact a { display: inline-flex; align-items: center; gap: 10px; }
.footer .fcontact a i { font-size: 18px; color: var(--gold-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line-on-dark); font-size: 12px; flex-wrap: wrap; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { display: inline-flex; }
.footer-social i { font-size: 20px; color: var(--fg-on-dark-2); }
.footer-social a:hover i { color: var(--white); }

/* ============================================================================
   INNER-PAGE KIT (shared by all rolled-out pages: about, services, faq, …)
   ============================================================================ */
/* Inner pages use a solid (not over-hero) nav from the top — light surface,
   dark text. No .onhero class needed; nav stays transparent then .scrolled. */
.page-hero { padding: 168px 0 56px; text-align: center; }
.page-hero.tight { padding-bottom: 8px; }
.page-hero .wrap { max-width: 860px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 400; color: var(--fg-1);
  font-size: clamp(40px, 5vw, 72px); line-height: 1.08; letter-spacing: -.01em;
  margin: 16px auto 0; max-width: 16ch;
}
.page-hero h1 em { font-style: italic; color: var(--emerald); }
.page-hero .sub { font-size: 18px; line-height: 1.6; color: var(--fg-2); max-width: 56ch; margin: 20px auto 0; }

/* breadcrumb */
.crumb { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--fg-3); font-weight: 600; }
.crumb a { color: var(--fg-3); }
.crumb a:hover { color: var(--brass); }
.crumb .sep { color: var(--clay); }
.crumb .cur { color: var(--brass); }

/* portrait + prose split (photo left, copy right, top-aligned) */
.about-split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 64px; align-items: start; }
.about-split .portrait { aspect-ratio: 4/5; border-radius: var(--r-2); overflow: hidden;
  background: var(--emerald); position: relative; }
.about-split .portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-split .prose p { margin: 0 0 20px; }
.about-split .prose p:last-child { margin-bottom: 0; }

/* solid-emerald stats band (page's emerald anchor) w/ keyline */
.stats-band { background: var(--emerald); color: var(--fg-on-dark); position: relative; }
.stats-band .wrap { position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-big .n { font-family: var(--font-display); font-size: clamp(44px, 5vw, 60px); color: var(--gold-bright); line-height: 1; }
.stat-big .l { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-on-dark-2); margin-top: 10px; }

/* credentials / training list */
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; max-width: 880px; margin: 48px auto 0; }
.cred { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.cred i { color: var(--brass); font-size: 18px; margin-top: 3px; flex-shrink: 0; }
.cred strong { display: block; color: var(--fg-1); font-weight: 600; margin-bottom: 4px; font-size: 15px; }
.cred span { color: var(--fg-2); font-size: 14px; line-height: 1.5; }

/* decorative mini-gallery (square thumbs; not the no-crop main gallery) */
.mini-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; }
.mg-item { aspect-ratio: 1; overflow: hidden; border-radius: var(--r-2); background: var(--cream); display: block; }
.mg-item.wide { grid-column: span 2; aspect-ratio: 2.06; }
.mg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
.mg-item:hover img { transform: scale(1.05); }
.mg-link { display: flex; align-items: center; justify-content: center; aspect-ratio: 1; border: 1px solid var(--line-strong);
  border-radius: var(--r-2); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brass); gap: 8px; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.mg-link:hover { border-color: var(--emerald); background: var(--cream); color: var(--emerald); }

@media (max-width: 920px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .about-split .portrait { max-width: 420px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .cred-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 132px 0 44px; }
}
@media (max-width: 680px) {
  .mini-gallery { grid-template-columns: repeat(2, 1fr); }
  .mg-item.wide { grid-column: span 2; }
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1080px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 32px; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .split, .booking-grid, .quote-grid.quote-grid, .band-dark .quote-grid { grid-template-columns: 1fr; gap: 44px; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section { padding: 84px 0; }
  .hero { min-height: 82vh; padding: 118px 0 72px; }
  .keyline { inset: 16px; }
  .dband-strip { background-size: auto 16px; height: 16px; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 24px; }
  .gallery-grid { column-count: 2; }
  .reviews-grid { grid-template-columns: 1fr; gap: 0; }
  .reviews-grid .review-card { display: none; }
  .reviews-grid .review-card.active { display: flex; }
  .reviews-dots { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .booking-card { padding: 32px 24px 28px; }
  .lightbox { padding: 18px; }
  .lightbox img { max-height: 68vh; }
  .lb-prev, .lb-next { top: auto; bottom: 22px; transform: none; width: 50px; height: 50px;
    background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.55); color: #fff; }
  .lb-prev { left: calc(50% - 96px); right: auto; }
  .lb-next { right: calc(50% - 96px); left: auto; }
  .lb-counter { bottom: 96px; }
  .lb-close { top: 14px; right: 14px; }
}

/* seo-hero-v12 */
.hero h1{white-space:nowrap;}
.hero .sub{font-size:clamp(19px,2.1vw,23px);max-width:62ch;}
.hero-note{margin-top:14px;font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.82);}
.hero .hero-note{opacity:1;transform:none;}
@media(max-width:640px){.hero h1{white-space:normal;}.hero .sub{font-size:17px;}}

/* mobile-fixes-v13 */
/* hero: small-viewport units so iOS toolbar doesn't crop the first screen */
@supports (height:100svh){ .hero{min-height:100svh;} }
@media (max-width:920px){ @supports (height:100svh){ .hero{min-height:82svh;} } }
/* mobile: nav gutters match page content (24px), not the desktop 40px */
@media (max-width:680px){
  .nav{padding-left:24px;padding-right:24px;}
  .nav.scrolled{padding-left:24px;padding-right:24px;}
  .stat-row{gap:22px 28px;}
  .booking-foot{flex-wrap:wrap;gap:12px 16px;}
}

/* menus-v14 */
html{scroll-padding-top:92px;}
.menu-block{max-width:720px;margin:40px auto 0;}
.menu-block .menu-sub{margin:0 0 6px;}
.menu-block .ml{font-size:12px;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--brass);text-align:center;margin:34px 0 16px;}
.menu-dish{text-align:center;padding:9px 0;}
.menu-dish .dn{font-family:var(--font-display);font-size:22px;font-weight:600;color:var(--fg-1);margin:0;line-height:1.22;}
.menu-dish .dd{font-family:var(--font-display);font-style:italic;font-size:15px;color:var(--fg-2);margin:5px auto 0;line-height:1.5;max-width:54ch;}
.menu-rule{height:1px;width:90px;background:var(--gold);opacity:.5;margin:26px auto 0;}
.menu-jump{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;}
.menu-jump a{font-size:12px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--stone);border:1px solid var(--line-strong);border-radius:var(--r-pill);padding:9px 18px;transition:border-color var(--dur) var(--ease),color var(--dur) var(--ease),background var(--dur) var(--ease);}
.menu-jump a:hover{border-color:var(--emerald);color:var(--emerald);background:var(--cream);}
@media(max-width:640px){.menu-dish .dn{font-size:19px;}}

/* fixes-v15 */
/* form inputs never overflow their card (iOS date/number intrinsic min-width) */
.field-group{min-width:0;}
.input,select.input,textarea.input{min-width:0;max-width:100%;}
input[type="date"].input,input[type="number"].input{-webkit-appearance:none;appearance:none;}
/* nav collapses to hamburger earlier so the link set never crowds */
@media(max-width:1100px){.nav-links{display:none;}.nav-toggle{display:flex;}}
/* denser menu rhythm */
.menu-block .ml{margin:22px 0 12px;}
.menu-dish{padding:6px 0;}
.menu-rule{margin:18px auto 0;}
/* homepage flagship menus: two columns on wider screens */
.menu-block.cols2{max-width:940px;}
.menu-block.cols2 .mg{padding-bottom:4px;}
.menu-block.cols2 .mg .ml{margin-top:14px;}
@media(min-width:760px){.menu-block.cols2{column-count:2;column-gap:56px;}.menu-block.cols2 .menu-sub{column-span:all;}.menu-block.cols2 .mg{break-inside:avoid;}}
#menus.section{padding-top:88px;padding-bottom:88px;}
/* mobile: breathing room between dark-band content and the gold keyline frame */
@media(max-width:680px){.band-dark>.wrap,.booking>.wrap,.cta-band.band-dark>.wrap,.stats-band>.wrap{padding-left:34px;padding-right:34px;}.keyline{inset:14px;}}

/* cards-v16 */
/* framed 'physical menu' card (homepage flagships) */
.menu-card{position:relative;max-width:940px;margin:0 auto;background:var(--cream-raised);border:1px solid var(--line);border-radius:var(--r-3);padding:52px 50px 46px;box-shadow:var(--shadow-md);}
.menu-card .card-keyline{inset:14px;border-color:rgba(203,160,106,.40);}
.menu-card-head{text-align:center;position:relative;margin-bottom:6px;}
.menu-card-mark{display:block;margin:0 auto 10px;}
.menu-card-title{font-family:var(--font-display);font-weight:600;font-size:clamp(26px,3vw,34px);color:var(--emerald);margin:0 0 6px;line-height:1.08;}
.menu-card .menu-sub{color:var(--brass);margin:0;}
.menu-card .menu-block{margin-top:20px;}
.menu-card .menu-block.cols2{max-width:none;}
@media(max-width:640px){.menu-card{padding:40px 22px 32px;}.menu-card .card-keyline{inset:10px;}}
/* sticky 'jump to menu' bar (menus page) */
.menu-jump-bar{position:sticky;top:68px;z-index:60;background:var(--cream-raised);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.menu-jump-inner{display:flex;align-items:center;gap:18px;padding:12px 0;flex-wrap:wrap;}
.menu-jump-label{font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--fg-3);white-space:nowrap;}
html:has(.menu-jump-bar){scroll-padding-top:130px;}
@media(max-width:680px){.menu-jump-bar{top:54px;}.menu-jump-inner{gap:10px;padding:9px 0;}.menu-jump-label{display:none;}.menu-jump{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;width:100%;padding-bottom:2px;}.menu-jump a{flex:0 0 auto;}}

/* tweaks-v17 */
/* CTA footmark: stack name over tagline, centered */
.footmark{flex-direction:column;align-items:center;gap:8px;}
/* uniform form field height (date input was shorter) */
.input,select.input{min-height:56px;}
/* menus: single column inside the framed card (2-col reverted) */
@media(min-width:760px){.menu-block.cols2{column-count:1;}}
.menu-card{max-width:760px;}

/* jump-v18 */
.menu-jump-bar{position:sticky;top:68px;z-index:60;background:rgba(255,255,255,.88);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-top:0;border-bottom:1px solid var(--line);}
.menu-jump-inner{justify-content:center;gap:0;padding:0;flex-wrap:nowrap;}
.menu-jump{justify-content:center;gap:40px;flex-wrap:wrap;padding:15px 0;overflow:visible;width:auto;}
.menu-jump a{position:relative;border:0;border-radius:0;background:none;padding:0 0 7px;font-size:12px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--fg-3);flex:0 0 auto;}
.menu-jump a::after{content:"";position:absolute;left:0;right:0;bottom:0;height:1px;background:var(--gold);opacity:.32;transition:opacity var(--dur) var(--ease),background var(--dur) var(--ease),height var(--dur) var(--ease);}
.menu-jump a:hover{color:var(--emerald);background:none;}
.menu-jump a:hover::after{opacity:.7;}
.menu-jump a.active{color:var(--emerald);}
.menu-jump a.active::after{opacity:1;height:2px;background:var(--emerald);}
@media(max-width:680px){.menu-jump{flex-wrap:wrap;overflow-x:visible;width:auto;gap:14px 24px;padding:13px 0;justify-content:center;}.menu-jump a{font-size:11px;letter-spacing:.1em;}}

/* photofix-v20 */
/* MAIN BUG: bare .portrait hero on detail pages had no img sizing, so the 1200px image overflowed and got corner-cropped by overflow:hidden. */
.portrait img{width:100%;height:100%;object-fit:cover;display:block;}
/* portrait sources (3:4/2:3) crammed into 16/9 = a thin sliver; on mobile give them a portrait frame so the full subject shows. */
@media(max-width:760px){.portrait[style*="16/9"]{aspect-ratio:4/5!important;}}
/* sticky jump bar: more air below the nav + inside the bar */
.menu-jump-bar{top:80px;}
.menu-jump{padding:19px 0 17px;}
html:has(.menu-jump-bar){scroll-padding-top:150px;}

/* ============ blog-posts-v21 ============ */
.post-hero{padding-bottom:8px}
.post-meta{display:flex;flex-wrap:wrap;justify-content:center;gap:8px 14px;margin-top:18px;font-family:var(--font-sans);font-size:13px;letter-spacing:.04em;color:var(--fg-2)}
.post-meta .dot{color:var(--gold)}
.post-wrap{max-width:760px;margin:0 auto;padding:8px 24px 0}
.post-lead{font-family:var(--font-display);font-size:clamp(20px,2.4vw,26px);line-height:1.5;color:var(--fg-1);margin:0 0 8px;font-weight:500}
.post-lead strong{color:var(--emerald);font-weight:600}
.post-toc{border:1px solid var(--line);border-radius:2px;background:var(--cream-raised);padding:22px 26px;margin:30px 0}
.post-toc h2{font-family:var(--font-sans);font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:var(--fg-2);margin:0 0 12px}
.post-toc ol{margin:0;padding-left:20px;columns:2;column-gap:30px}
.post-toc li{margin:0 0 8px;font-family:var(--font-sans);font-size:14.5px}
.post-toc a{color:var(--fg-1);text-decoration:none;border-bottom:1px solid var(--gold)}
.post-toc a:hover{color:var(--emerald)}
.post-body{font-family:var(--font-sans);color:#27322b;font-size:17px;line-height:1.75}
.post-body h2{font-family:var(--font-display);font-weight:600;font-size:clamp(26px,3vw,34px);line-height:1.15;color:var(--emerald);margin:48px 0 14px;scroll-margin-top:120px}
.post-body h3{font-family:var(--font-display);font-weight:600;font-size:22px;color:var(--fg-1);margin:30px 0 10px}
.post-body p{margin:0 0 18px}
.post-body ul,.post-body ol{margin:0 0 18px;padding-left:22px}
.post-body li{margin:0 0 9px}
.post-body strong{color:var(--fg-1);font-weight:600}
.post-body a{color:var(--emerald);text-decoration:underline;text-decoration-color:var(--gold);text-underline-offset:3px}
.post-body a:hover{text-decoration-color:var(--emerald)}
.post-body blockquote{margin:26px 0;padding:4px 0 4px 24px;border-left:2px solid var(--gold);font-family:var(--font-display);font-style:italic;font-size:21px;line-height:1.5;color:var(--fg-1)}
.post-body hr{border:0;border-top:1px solid var(--line);margin:40px 0}
.price-table{width:100%;border-collapse:collapse;margin:24px 0;font-family:var(--font-sans);font-size:15.5px}
.price-table caption{caption-side:top;text-align:left;font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--fg-2);margin-bottom:10px}
.price-table th,.price-table td{text-align:left;padding:13px 14px;border-bottom:1px solid var(--line);vertical-align:top}
.price-table thead th{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--fg-2);font-weight:600;border-bottom:1px solid var(--line-strong)}
.price-table td:first-child{font-weight:600;color:var(--fg-1);white-space:nowrap}
.price-table .num{font-family:var(--font-display);font-size:19px;color:var(--emerald);white-space:nowrap}
.price-table tr:last-child td{border-bottom:0}
.post-note{background:var(--cream-raised);border:1px solid var(--line);border-left:3px solid var(--gold);border-radius:2px;padding:18px 22px;margin:26px 0;font-family:var(--font-sans);font-size:15.5px;line-height:1.65;color:var(--fg-1)}
.post-note strong{color:var(--emerald)}
@media(max-width:680px){.post-toc ol{columns:1}.post-body{font-size:16px}.price-table{font-size:14px}.price-table th,.price-table td{padding:10px 8px}.post-wrap{padding:8px 20px 0}}
/* ============ /blog-posts-v21 ============ */

/* ============ blog-cards-v22 ============ */
.blog-grid{margin-top:44px}
.svc-card .blog-card-foot{margin-top:auto;border-top:1px solid var(--line);padding-top:20px;display:flex;flex-direction:column;gap:14px;align-items:stretch}
.blog-meta{font-family:var(--font-sans);font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--fg-3);display:flex;gap:9px;align-items:center}
.blog-meta .dot{color:var(--gold)}
.btn-read{display:flex;align-items:center;justify-content:center;gap:9px;width:100%;padding:15px 20px;background:var(--gold);color:var(--emerald);font-family:var(--font-sans);font-weight:700;font-size:13.5px;letter-spacing:.1em;text-transform:uppercase;border-radius:2px;text-decoration:none;transition:background var(--dur) var(--ease),transform var(--dur) var(--ease),box-shadow var(--dur) var(--ease)}
.btn-read:hover{background:var(--gold-deep);color:#fff;transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn-read i{font-size:17px;transition:transform var(--dur) var(--ease)}
.btn-read:hover i{transform:translateX(4px)}
.blog-title-link{color:inherit;text-decoration:none;transition:color var(--dur) var(--ease)}
.blog-title-link:hover{color:var(--emerald)}
.blog-soon{font-family:var(--font-sans);font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--fg-3);padding:14px 18px;text-align:center;border:1px dashed var(--line-strong);border-radius:2px}
@media(max-width:720px){.blog-grid{grid-template-columns:1fr}}
/* ============ /blog-cards-v22 ============ */

/* ============ blog-photos-v23 ============ */
.blog-card{overflow:hidden}
.blog-card .card-keyline{display:none}
.blog-card .svc-ic{display:none}
.blog-thumb{display:block;margin:-36px -34px 22px;aspect-ratio:16/10;overflow:hidden;background:var(--cream);position:relative}
.blog-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s var(--ease)}
.blog-card:hover .blog-thumb img{transform:scale(1.045)}
.post-figure{max-width:1000px;margin:12px auto 0;padding:0 24px}
.post-figure img{width:100%;display:block;border-radius:2px;aspect-ratio:16/9;object-fit:cover}
.post-figure figcaption{font-family:var(--font-sans);font-size:12px;letter-spacing:.04em;color:var(--fg-3);text-align:center;margin-top:10px}
@media(max-width:680px){.blog-thumb{margin:-36px -34px 18px}.post-figure{padding:0 20px}}
/* ============ /blog-photos-v23 ============ */

/* ============ serif-body-v24 ============ */
:root{--font-serif-body:'Source Serif 4','Source Serif Pro',Georgia,'Times New Roman',serif}
.post-body{font-family:var(--font-serif-body);font-size:18px;line-height:1.75}
.post-body p,.post-body li,.post-body strong,.post-body a,.post-body em{font-family:var(--font-serif-body)}
@media(max-width:680px){.post-body{font-size:16.5px}}
/* ============ /serif-body-v24 ============ */

/* ============ post-hero-title-v25 ============ */
.post-hero .wrap{max-width:900px}
.post-hero h1{max-width:none;font-size:clamp(30px,3.9vw,48px);line-height:1.12;letter-spacing:-.015em}
@media(max-width:680px){.post-hero h1{font-size:clamp(26px,7vw,34px)}}
/* ============ /post-hero-title-v25 ============ */

/* ============ sans-headings-v26 ============ */
.post-hero h1{font-family:var(--font-sans);font-weight:600;letter-spacing:-.022em;line-height:1.1}
.post-hero h1 em{font-style:normal;color:var(--emerald)}
.post-body h2{font-family:var(--font-sans);font-weight:600;letter-spacing:-.015em;font-size:clamp(24px,2.7vw,31px);line-height:1.18}
.post-body h3{font-family:var(--font-sans);font-weight:600;letter-spacing:-.01em;font-size:20px}
/* ============ /sans-headings-v26 ============ */

/* ============ post-split-hero-v27 ============ */
.post-hero-split{padding:132px 0 50px;background:var(--white)}
.post-hero-split .wrap{max-width:1240px}
.phs-grid{display:grid;grid-template-columns:1.02fr 1fr;gap:60px;align-items:center}
.phs-text{text-align:left}
.phs-text .crumb{justify-content:flex-start;margin:0 0 24px}
.phs-eyebrow{font-family:var(--font-sans);font-size:12px;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-deep);display:block}
.phs-text h1{font-family:var(--font-sans);font-weight:600;letter-spacing:-.022em;line-height:1.08;font-size:clamp(32px,3.5vw,52px);color:var(--fg-1);margin:18px 0 0}
.phs-text h1 em{font-style:normal;color:var(--emerald)}
.phs-dek{font-family:var(--font-display);font-style:italic;font-weight:500;font-size:clamp(19px,1.7vw,23px);line-height:1.45;color:var(--fg-2);margin:22px 0 0;max-width:36ch}
.phs-byline{font-family:var(--font-sans);font-weight:700;font-size:15px;color:var(--fg-1);margin:28px 0 0}
.phs-date{font-family:var(--font-sans);font-size:13px;letter-spacing:.04em;color:var(--fg-3);margin:6px 0 0}
.phs-media{margin:0;align-self:stretch}
.phs-media img{width:100%;height:100%;object-fit:cover;display:block;aspect-ratio:4/5;border-radius:2px;background:var(--cream)}
@media(max-width:880px){
  .post-hero-split{padding:116px 0 26px}
  .phs-grid{grid-template-columns:1fr;gap:28px}
  .phs-media{order:-1}
  .phs-media img{aspect-ratio:16/10;max-height:440px}
  .phs-dek{max-width:none}
}
/* ============ /post-split-hero-v27 ============ */

/* ============ post-hero-fix-v29 ============ */
.phs-grid{align-items:start}
.phs-text h1{font-size:clamp(27px,2.6vw,40px);line-height:1.13}
.phs-dek{font-size:clamp(18px,1.5vw,21px)}
@media(min-width:881px){.phs-grid{grid-template-columns:1.12fr 1fr;gap:54px}}
/* ============ /post-hero-fix-v29 ============ */

/* ============ footer-space-v30 ============ */
.footer{padding-top:120px}
@media(max-width:680px){.footer{padding-top:104px}}
/* ============ /footer-space-v30 ============ */

/* ============ mobile-menu-fix-v31 ============ */
/* When the mobile menu is open, force the fixed nav to an opaque light surface
   so the brand/close are dark-readable and scrolling items hide behind the bar. */
.nav:has(.nav-toggle[aria-expanded="true"]){background:#fff;border-bottom:1px solid var(--line)}
.nav:has(.nav-toggle[aria-expanded="true"]) .nav-mark{color:var(--emerald)}
.nav:has(.nav-toggle[aria-expanded="true"]) .nav-kicker{color:var(--fg-3)}
.nav:has(.nav-toggle[aria-expanded="true"]) .emblem rect{stroke:var(--gold)}
.nav:has(.nav-toggle[aria-expanded="true"]) .emblem text{fill:var(--emerald)}
.nav:has(.nav-toggle[aria-expanded="true"]) .nav-toggle span{background:var(--emerald)}
/* Book button inside the mobile menu: readable white text, real button padding, no list hairline */
.mobile-menu .btn{border-bottom:0;padding:16px 32px;align-self:flex-start}
.mobile-menu .btn-primary,.mobile-menu .btn-primary:hover{color:#fff}
/* ============ /mobile-menu-fix-v31 ============ */

/* ============ hero-crumb-footer-v32 ============ */
.post-hero-split .crumb{margin:0 0 22px;justify-content:flex-start}
@media(max-width:880px){.post-hero-split .crumb{margin:0 0 14px}}
/* footer: stack phone / email / instagram one per line on every width */
.footer .fcontact a{display:flex}
/* mobile menu: slightly smaller items so more fits on screen (button untouched) */
.mobile-menu a:not(.btn){font-size:22px;padding:9px 0}
/* ============ /hero-crumb-footer-v32 ============ */

/* ============ menu-btn-v33 ============ */
.mobile-menu .btn{align-self:stretch;width:100%;justify-content:center;text-align:center;padding:13px 20px;font-size:13px;margin-top:20px}
/* ============ /menu-btn-v33 ============ */

/* ============ reviews-real-v34 ============ */
.rv-summary{display:flex;flex-wrap:wrap;gap:16px;justify-content:center;margin:6px 0 46px}
.rv-badge{display:inline-flex;align-items:center;gap:12px;padding:13px 22px;border:1px solid var(--line);border-radius:4px;background:var(--white);text-decoration:none;box-shadow:0 1px 3px rgba(9,40,38,.06);transition:border-color .25s,transform .25s,box-shadow .25s}
.rv-badge:hover{border-color:var(--line-strong);transform:translateY(-2px);box-shadow:var(--shadow-md)}
.rv-badge .rv-plat{display:inline-flex;align-items:center;gap:7px;font-family:var(--font-sans);font-weight:600;font-size:14px;color:var(--fg-1)}
.rv-badge .rv-score{font-family:var(--font-display);font-size:25px;color:var(--fg-1);line-height:1}
.rv-badge .rv-count{font-family:var(--font-sans);font-size:12.5px;color:var(--fg-2)}
.rv-stars{display:inline-flex;gap:2px;line-height:0}
.rv-stars svg{width:16px;height:16px;display:block}
.rv-grid{columns:3;column-gap:24px}
.rv-card{break-inside:avoid;display:inline-block;width:100%;border:1px solid var(--line);border-radius:4px;background:var(--white);padding:22px 22px 24px;margin:0 0 24px;box-shadow:0 1px 3px rgba(9,40,38,.05)}
.rv-top{display:flex;align-items:center;gap:12px;margin-bottom:13px}
.rv-avatar{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-family:var(--font-sans);font-weight:600;font-size:17px;flex:none}
.rv-meta{display:flex;flex-direction:column;flex:1;min-width:0}
.rv-name{font-family:var(--font-sans);font-weight:600;font-size:15px;color:var(--fg-1)}
.rv-date{font-family:var(--font-sans);font-size:12px;color:var(--fg-3)}
.rv-src{flex:none;display:inline-flex;line-height:0}
.rv-card .rv-stars{margin-bottom:11px}
.rv-text{font-family:var(--font-sans);font-size:14.5px;line-height:1.62;color:#33403a;margin:0}
.rv-foot-note{text-align:center;font-family:var(--font-sans);font-size:13px;color:var(--fg-3);margin:36px auto 0;max-width:60ch}
.rv-foot-note a{color:var(--emerald);text-decoration:underline;text-decoration-color:var(--gold);text-underline-offset:2px}
@media(max-width:980px){.rv-grid{columns:2}}
@media(max-width:640px){.rv-grid{columns:1}}
/* ============ /reviews-real-v34 ============ */
/* reviews-home-gap-v35 */
#reviews .rv-summary{margin-top:38px}

/* portrait-headroom-v36 — keep Nikita's head from cropping */
.about-photo img,.about-split .portrait img,.portrait img{object-position:50% 0%}

/* ============ reviews-carousel-row-v44 ============ */
/* uniform platform badges — size to content, no overflow */
.rv-summary{display:flex;flex-wrap:wrap;gap:16px;justify-content:center;max-width:none;margin:6px auto 40px}
.rv-summary .rv-badge{flex:0 0 auto;justify-content:flex-start;gap:13px}
.rv-badge .rv-plat{min-width:108px;justify-content:flex-start}
.rv-badge .rv-score{min-width:38px;display:inline-flex;justify-content:center}
.rv-badge .rv-stars{flex:0 0 auto}
.rv-badge .rv-count{white-space:nowrap}
/* one-row infinite carousel */
.rv-carousel{position:relative}
#homeReviews{display:flex!important;flex-wrap:nowrap;column-count:auto!important;columns:auto!important;
  gap:22px;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;cursor:grab;
  scrollbar-width:none;padding:4px 2px 10px;margin:0;max-width:none}
#homeReviews::-webkit-scrollbar{display:none}
#homeReviews.rv-dragging{cursor:grabbing}
#homeReviews.rv-dragging,#homeReviews.rv-dragging *{user-select:none}
#homeReviews a,#homeReviews svg{-webkit-user-drag:none}
#homeReviews .rv-card{flex:0 0 360px;width:360px;max-width:84vw;margin:0;display:flex;flex-direction:column}
#homeReviews .rv-card .rv-text{display:-webkit-box;-webkit-line-clamp:7;-webkit-box-orient:vertical;overflow:hidden}
.rv-nav{display:flex;align-items:center;justify-content:center;gap:20px;margin-top:26px}
.rv-arrow{width:46px;height:46px;border-radius:50%;border:1px solid var(--line);background:var(--white);color:var(--emerald);display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:18px;box-shadow:0 1px 3px rgba(9,40,38,.08);transition:border-color .2s,transform .2s,box-shadow .2s}
.rv-arrow:hover{border-color:var(--line-strong);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.rv-arrow:active{transform:translateY(0)}
@media(max-width:640px){
  #homeReviews .rv-card{flex-basis:84vw;width:84vw}
  .rv-summary{flex-direction:column;align-items:stretch;max-width:420px;margin-left:auto;margin-right:auto}
  .rv-summary .rv-badge{width:100%}
  .rv-badge .rv-count{margin-left:auto}
}
/* ============ /reviews-carousel-row-v44 ============ */
/* portrait-taller-v38 */
.about-photo{max-height:520px}

/* ============ mobile-cta-bar-v40 ============ */
.mobile-cta-bar{display:none}
@media(max-width:860px){
  .mobile-cta-bar{display:flex;gap:10px;position:fixed;left:12px;right:12px;bottom:12px;z-index:65;
    background:var(--white);border:1px solid var(--line);border-radius:18px;padding:10px;
    box-shadow:0 10px 30px rgba(9,40,38,.20)}
  .mobile-cta-bar .mcta-btn{flex:1 1 0;min-width:0;display:flex;align-items:center;justify-content:center;gap:8px;
    height:50px;border-radius:12px;font-family:var(--font-sans);font-size:14px;font-weight:600;
    letter-spacing:.01em;text-decoration:none;cursor:pointer;transition:background .15s,transform .15s}
  .mobile-cta-bar .mcta-btn i{font-size:18px}
  .mcta-quote{background:var(--gold);color:var(--forest-black);border:1px solid var(--gold)}
  .mcta-quote:active{background:var(--gold-bright);transform:translateY(1px)}
  .mcta-call{background:var(--white);color:var(--emerald);border:1px solid var(--line-strong)}
  .mcta-call:active{background:var(--linen);transform:translatey(1px)}
  body{padding-bottom:84px}
}
/* ============ /mobile-cta-bar-v40 ============ */

/* ============ reviews-numbers-sans-v43 ============ */
.rv-badge .rv-score{font-family:var(--font-sans);font-weight:600;letter-spacing:.005em;font-size:22px}
/* ============ /reviews-numbers-sans-v43 ============ */

/* ============ reviews-mobile-tweak-v46 ============ */
@media(max-width:640px){
  #reviews .rv-summary{margin-bottom:22px}
  #homeReviews{align-items:flex-start}
  #homeReviews .rv-card{height:auto}
  #homeReviews .rv-card .rv-text{-webkit-line-clamp:initial;display:block;overflow:visible}
  .rv-nav{margin-top:20px}
}
/* ============ /reviews-mobile-tweak-v46 ============ */
