/* ============================================================
   The Eatery by 3 Kids & A Cake — refined bakery/cafe concept
   Palette: warm cream paper, espresso ink, clay + blush accents
   Type: Cormorant Garamond (display) + Hanken Grotesk (text)
   ============================================================ */

:root {
  /* warm neutral surface system */
  --cream:  #f4ede2;
  --paper:  #fbf7f0;
  --paper-2:#f0e7d9;
  --ink:    #2c1f17;
  --ink-soft: #5a4a3e;
  --choco:  #3b2a21;

  /* accent (tweakable) */
  --accent:      #b07d62;   /* warm clay */
  --accent-deep: #8a5d46;
  --blush:       #d9b8a3;

  --line:   rgba(44, 31, 23, .14);
  --line-2: rgba(44, 31, 23, .08);
  --shadow: 0 1px 2px rgba(44,31,23,.04), 0 18px 40px -28px rgba(44,31,23,.45);
  --shadow-sm: 0 1px 2px rgba(44,31,23,.05), 0 8px 22px -18px rgba(44,31,23,.4);

  /* density (tweakable via [data-density]) */
  --section-y: 120px;
  --gap: 28px;

  --radius: 14px;
  --radius-lg: 22px;

  --maxw: 1200px;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Hanken Grotesk", -apple-system, system-ui, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, monospace;
}

[data-density="compact"] { --section-y: 84px; --gap: 22px; }
[data-density="comfy"]   { --section-y: 156px; --gap: 36px; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

/* static image fills (replaced the <image-slot> component) */
.slot-img { object-fit: cover; width: 100%; height: 100%; }
.slot-empty {
  background:
    repeating-linear-gradient(45deg, var(--paper-2) 0 10px, var(--cream) 10px 20px);
  border: 1px solid var(--line-2);
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: .003em;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }

/* ---------- eyebrow / section labels — a SYSTEM of treatments ----------
   Base is undecorated; each section opts into one style so they vary.   */
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: lowercase;
  color: var(--accent-deep);
  margin: 0 0 18px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

/* (a) sig — trailing period: the "the eatery." voice */
.eyebrow.sig::after { content: "."; color: var(--accent); }
.eyebrow.sig { color: var(--accent-deep); }

/* (b) star — asterisk motif, uppercase tracked */
.eyebrow.star {
  text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 700;
}
.eyebrow.star::before {
  content: "✳"; color: var(--accent); font-size: 14px; margin-right: 10px;
  position: relative; top: 1px;
}

/* (c) index — monospace numeral, ruled divider, uppercase label */
.eyebrow.index {
  text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700;
}
.eyebrow.index::before {
  content: attr(data-num);
  font-family: var(--mono); font-weight: 500; letter-spacing: 0;
  color: var(--accent);
  margin-right: 12px; padding-right: 12px;
  border-right: 1px solid var(--line);
}

/* (d) badge — outlined pill, uppercase */
.eyebrow.badge {
  text-transform: uppercase; letter-spacing: .16em; font-size: 11.5px; font-weight: 700;
  border: 1px solid currentColor; border-radius: 999px;
  padding: 7px 15px; opacity: .9;
}

/* (e) dot — leading dot, uppercase wide */
.eyebrow.dot {
  text-transform: uppercase; letter-spacing: .2em; font-size: 12px; font-weight: 700;
  padding-left: 18px;
}
.eyebrow.dot::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

section { padding: var(--section-y) 0; }

/* ---------- buttons (tweakable via [data-btn]) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-deep); }

.btn-ghost { background: transparent; color: var(--ink); padding-left: 4px; padding-right: 4px; }
.btn-ghost:hover { color: var(--accent-deep); }

[data-btn="pill"] .btn { border-radius: 999px; }
[data-btn="square"] .btn { border-radius: 3px; }

.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line-2);
  box-shadow: 0 10px 30px -26px rgba(44,31,23,.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 54px; height: 54px;
  object-fit: contain;
  display: block;
  flex: none;
}
.site-header .brand-mark {
  width: 66px; height: 66px;
}
.footer .brand-mark { filter: invert(1); }
.brand-name {
  display: flex; flex-direction: column; line-height: 1.05;
}
.brand-name b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: .01em;
}
.brand-name span {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .18s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width .22s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 11px 20px; }

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  top: 116px; /* fallback; JS sets the exact value from the header's rendered height */
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 8px 28px 28px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
  z-index: 55;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a:not(.btn) {
  display: block;
  padding: 15px 0;
  font-size: 19px;
  font-family: var(--serif);
  border-bottom: 1px solid var(--line-2);
}
.mobile-menu .btn {
  display: flex;
  width: 100%;
  margin-top: 20px;
  justify-content: center;
  text-align: center;
  font-family: var(--sans);
  font-size: 16px;
  padding: 15px 24px;
}

/* ============================================================
   HERO — three layouts toggled by [data-hero]
   ============================================================ */
.hero { padding-top: 64px; padding-bottom: 0; position: relative; }
.hero-loc {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--accent-deep);
  margin-bottom: 22px;
}
.hero-loc .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: -.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-deep);
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 30em;
  margin-top: 22px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

/* default + layout A: split */
.hero-split .wrap {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
  padding-bottom: var(--section-y);
}
.hero-split .hero-media {
  position: relative;
}
.hero-split .slot-img { width: 100%; height: 560px; }
.hero-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge .stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.hero-badge b { font-family: var(--serif); font-size: 26px; display: block; line-height: 1; }
.hero-badge small { color: var(--ink-soft); font-size: 12.5px; }

/* layout B: full-bleed */
.hero-full { padding: 0; }
.hero-full .hero-stage {
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: end start;
}
.hero-full .slot-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-full .hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,13,8,.15) 0%, rgba(20,13,8,.06) 38%, rgba(20,13,8,.62) 100%);
  pointer-events: none;
}
.hero-full .hero-content {
  position: relative;
  padding: 0 28px 92px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  color: #fff;
}
.hero-full h1 { color: #fff; }
.hero-full h1 em { color: var(--blush); }
.hero-full .hero-sub { color: rgba(255,255,255,.9); }
.hero-full .hero-loc { color: var(--blush); }

/* layout C: editorial stack */
.hero-stack { text-align: center; padding-bottom: 0; }
.hero-stack .hero-loc { justify-content: center; }
.hero-stack h1 { font-size: clamp(52px, 8.5vw, 116px); }
.hero-stack .hero-sub { margin-left: auto; margin-right: auto; }
.hero-stack .hero-cta { justify-content: center; }
.hero-stack .hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}
.hero-stack .hero-strip .slot-img { width: 100%; height: 300px; }
.hero-stack .hero-strip .tall { margin-top: -34px; height: 334px; }

/* hide non-active hero layouts */
.hero-layout { display: none; }
[data-hero="split"] .hero-split,
[data-hero="full"]  .hero-full,
[data-hero="stack"] .hero-stack { display: block; }
/* editorial | collage | circle | cinematic are styled & toggled in hero.css */

/* ---------- trust strip ---------- */
.trust {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  padding: 0;
  background: var(--paper);
}
.trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 30px 26px;
  text-align: center;
  border-left: 1px solid var(--line-2);
}
.trust-item:first-child { border-left: none; }
.trust-item b {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  margin-bottom: 3px;
}
.trust-item span { font-size: 13px; color: var(--ink-soft); letter-spacing: .02em; }

/* ---------- section heading block ---------- */
.sec-head { max-width: 640px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: clamp(34px, 4.6vw, 56px); }
.sec-head p { margin-top: 18px; color: var(--ink-soft); font-size: 18px; }

/* ---------- features ---------- */
.features { background: var(--paper); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: 54px;
}
.feature {
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .slot-img { width: 100%; height: 440px; }
/* the coffee shot reads best framed a touch lower (the front latte cup) */
#feat-coffee { object-position: center 55%; }
.feature-body { padding: 28px 30px 32px; }
.feature-body h3 { font-size: 30px; }
.feature-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent-deep);
  letter-spacing: .1em;
  margin-bottom: 12px;
  display: block;
}
.feature-body p { margin-top: 10px; color: var(--ink-soft); font-size: 16px; }
.feature-link {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14.5px; color: var(--accent-deep);
}
.feature-link .arrow { transition: transform .2s ease; }
.feature:hover .feature-link .arrow { transform: translateX(4px); }

/* ---------- custom cakes (premium split) ---------- */
.cakes .wrap {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: center;
}
.cakes-media { position: relative; }
.cakes-media .stack-a { width: 78%; height: 480px; }
.cakes-media .stack-b {
  position: absolute;
  right: 0; bottom: -36px;
  width: 46%; height: 280px;
  border: 6px solid var(--cream);
  border-radius: var(--radius);
}
.cakes-list { list-style: none; padding: 0; margin: 28px 0 34px; display: grid; gap: 14px; }
.cakes-list li {
  display: flex; align-items: flex-start; gap: 13px;
  font-size: 16.5px; color: var(--ink-soft);
}
.cakes-list .tick {
  flex: none; margin-top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  display: grid; place-items: center;
  color: var(--accent-deep); font-size: 11px;
}

/* ---------- lunch (dark warm band) ---------- */
.lunch {
  background: var(--choco);
  color: #f3e9dd;
}
.lunch .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.lunch h2 { color: #fbf3e8; }
.lunch .eyebrow { color: var(--blush); }
.lunch .eyebrow::before { background: var(--blush); }
.lunch p { color: rgba(243,233,221,.8); }
.lunch-menu {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 34px 36px;
}
.lunch-menu h4 {
  color: #fbf3e8; font-size: 22px; margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.menu-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 11px 0;
}
.menu-row .name { font-family: var(--serif); font-size: 21px; color: #fbf3e8; }
.menu-row .dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,.28); transform: translateY(-4px); }
.menu-row .price { font-family: var(--mono); font-size: 14px; color: var(--blush); }
.menu-row small { display: block; color: rgba(243,233,221,.6); font-size: 13.5px; font-family: var(--sans); margin-top: 2px; }
.lunch-note { font-size: 13.5px; color: rgba(243,233,221,.6); margin-top: 18px; text-align: center; }

/* ---------- catering ---------- */
.catering .cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  min-height: 460px;
  display: grid;
  align-items: center;
}
.catering .slot-img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.catering .cat-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(28,18,12,.82) 0%, rgba(28,18,12,.55) 50%, rgba(28,18,12,.2) 100%);
}
.cat-inner { padding: 64px; max-width: 620px; color: #fff; }
.cat-inner .eyebrow { color: var(--blush); }
.cat-inner .eyebrow::before { background: var(--blush); }
.cat-inner h2 { color: #fff; font-size: clamp(32px, 4.4vw, 52px); }
.cat-inner p { color: rgba(255,255,255,.88); margin: 18px 0 30px; font-size: 18px; }

/* ---------- about ---------- */
.about { background: var(--paper); }
.about .wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-media .slot-img { width: 100%; height: 540px; }
.about blockquote {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.22;
  color: var(--ink);
}
.about blockquote em { color: var(--accent-deep); font-style: italic; }
.about-sign { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.about-sign .slot-img { width: 60px; height: 60px; }
.about-sign b { font-family: var(--serif); font-size: 20px; display: block; }
.about-sign span { font-size: 13px; color: var(--ink-soft); }

/* ---------- location / contact ---------- */
.location .wrap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: stretch;
}
.loc-card {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.loc-detail { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line-2); }
.loc-detail:first-of-type { border-top: none; padding-top: 8px; }
.loc-detail .ic {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  display: grid; place-items: center; color: var(--accent-deep);
}
.loc-detail .lbl { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); font-weight: 600; }
/* email addresses have no natural break point, so on narrow screens they
   force horizontal overflow unless allowed to break mid-word */
.loc-detail .val { font-size: 17px; margin-top: 3px; overflow-wrap: anywhere; }
.loc-detail .val a:hover { color: var(--accent-deep); }
.loc-hours { display: grid; gap: 7px; margin-top: 4px; }
.loc-hours .row { display: flex; justify-content: space-between; font-size: 15.5px; }
.loc-hours .row span:first-child { color: var(--ink-soft); }
.loc-map { border-radius: var(--radius-lg); overflow: hidden; }
.loc-map .slot-img { width: 100%; height: 100%; min-height: 480px; }

/* ---------- reviews / local love ---------- */
.reviews { background: var(--paper); }
.rv-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.rv-head h2 { font-size: clamp(34px, 4.6vw, 56px); margin-top: 4px; }
.rv-aggregate {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  justify-content: center; margin-top: 22px;
}
.rv-score { font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--ink); }
.rv-stars { position: relative; display: inline-block; font-size: 22px; letter-spacing: 2px; }
.rv-stars .rv-empty { color: color-mix(in srgb, var(--accent) 26%, transparent); }
.rv-stars .rv-fill {
  position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap;
  color: var(--accent);
}
.rv-count { font-size: 15px; color: var(--ink-soft); }
.rv-count b { color: var(--ink); font-weight: 700; }
.rv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); max-width: 980px; margin: 0 auto; }
.rv-card {
  background: var(--cream);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 14px;
}
.rv-card-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.rv-quote {
  margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.4;
  color: var(--ink); flex: 1;
}
.rv-name {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--accent-deep); text-transform: none;
}
.rv-cta { text-align: center; margin-top: 50px; }

/* ---------- footer ---------- */
.footer {
  position: relative;
  background: var(--choco);
  color: #d9c9ba;
  padding: 76px 0 36px;
}
.footer a { color: #d9c9ba; }
.footer a:hover { color: #fff; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer .brand-name b { color: #fbf3e8; }
.footer .brand-name span { color: #b39d8c; }
.footer .brand-mark { border-color: var(--blush); color: var(--blush); }
.footer-blurb { margin-top: 20px; font-size: 14.5px; line-height: 1.6; color: #b39d8c; max-width: 30em; }
.footer h5 {
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: #fbf3e8;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; }
.socials { display: flex; gap: 10px; margin-top: 4px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
  transition: background .2s ease, border-color .2s ease;
}
.socials a:hover { background: rgba(255,255,255,.1); border-color: var(--blush); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 13px; color: #9d8775; gap: 18px; flex-wrap: wrap;
}
.footer-credit {
  color: #c9b6a4; font-weight: 600;
  border-bottom: 1px solid rgba(201,182,164,.35);
  transition: color .18s ease, border-color .18s ease;
}
.footer-credit:hover { color: #fff; border-bottom-color: var(--blush); }
.footer-seo { font-size: 12.5px; color: #8a7565; max-width: 60ch; line-height: 1.6; margin-top: 6px; }

/* ---------- step inside (full-bleed interior band) ---------- */
.stepin {
  position: relative;
  padding: 0;
  height: clamp(440px, 60vh, 660px);
  overflow: hidden;
  isolation: isolate;
}
.stepin .slot-img { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; }
.stepin-scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(20,13,8,.74) 0%, rgba(20,13,8,.42) 42%, rgba(20,13,8,.06) 72%, rgba(20,13,8,0) 100%);
}
.stepin-cap {
  max-width: var(--maxw); margin: 0 auto; height: 100%;
  padding: 0 28px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: min(var(--maxw), 100%);
}
.stepin-cap > * { max-width: 30ch; }
.stepin-eyebrow {
  font-family: var(--sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--blush);
  display: inline-block; margin-bottom: 18px;
}
.stepin-cap h2 {
  font-family: var(--serif); font-weight: 500; color: #fbf3e8;
  font-size: clamp(38px, 5vw, 68px); line-height: 1.0; letter-spacing: -.01em;
}
.stepin-cap p {
  color: rgba(251,243,232,.9); font-size: 18px; line-height: 1.6; margin-top: 18px;
}
@media (max-width: 700px) {
  .stepin-scrim { background: linear-gradient(180deg, rgba(20,13,8,.3) 0%, rgba(20,13,8,.2) 40%, rgba(20,13,8,.8) 100%); }
  .stepin-cap { justify-content: flex-end; padding-bottom: 40px; }
  .stepin-cap > *, .stepin-cap { max-width: 100%; }
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  :root { --section-y: 84px; }
  .nav-links, .nav-actions .btn-secondary { display: none; }
  .hamburger { display: flex; }
  .hero-split .wrap, .cakes .wrap, .lunch .wrap, .about .wrap, .location .wrap { grid-template-columns: 1fr; gap: 40px; }
  /* grid items default to min-width:auto, so an unwrapped clamp()-sized heading
     or a nowrap CTA button can force this single column wider than the
     viewport and push the page into horizontal scroll */
  .hero-split .wrap > *, .cakes .wrap > *, .lunch .wrap > *, .about .wrap > *, .location .wrap > * { min-width: 0; }
  .hero-split .slot-img { height: 420px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature .slot-img { height: 300px; }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: none; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line-2); }
  .cakes-media .stack-a { width: 100%; }
  .cakes-media .stack-b { display: none; }
  .cat-inner { padding: 44px 30px; }
  .about-media .slot-img { height: 400px; }
  .loc-map .slot-img { min-height: 360px; }
  .hero-stack .hero-strip { grid-template-columns: 1fr; }
  .hero-stack .hero-strip .tall { margin-top: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  :root { --section-y: 60px; }
  body { font-size: 16px; }
  .wrap, .wrap-narrow { padding: 0 20px; }
  .trust .wrap { grid-template-columns: 1fr; }
  .trust-item { border-left: none; border-top: 1px solid var(--line-2); }
  .trust-item:first-child { border-top: none; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; }
  .rv-grid { grid-template-columns: 1fr; }
  .hero-split .slot-img { height: 300px; }
  .hero-badge { display: none; }
  .feature .slot-img { height: 220px; }
  .about-media .slot-img { height: 280px; }
  .loc-map { display: none; }
  .cat-inner { padding: 32px 22px; }
  .lunch-menu { padding: 24px 22px; }
}

/* ============================================================
   EDITORIAL UPGRADES — patterns from leading bakery/cafe sites
   ============================================================ */

/* --- slim utility / hours bar (Tatte-style top bar) --- */
.topbar {
  background: var(--choco);
  color: #e9ddcf;
  font-size: 12.5px;
  letter-spacing: .04em;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 6px 18px; min-height: 38px; padding-top: 5px; padding-bottom: 5px; text-align: center;
}
.topbar .tb-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar .tb-item .pip { width: 6px; height: 6px; border-radius: 50%; background: #5fae7a; box-shadow: 0 0 0 3px rgba(95,174,122,.22); }
.topbar .sep { opacity: .32; }
.topbar a { color: #fbf3e8; font-weight: 600; white-space: nowrap; }
.topbar a:hover { color: #fff; }
.topbar .tb-phone { margin-left: 4px; }
.topbar .tb-short { display: none; }
@media (max-width: 760px) {
  .topbar .tb-hide { display: none; }
}
@media (max-width: 600px) {
  .topbar .tb-hide-sm { display: none; }
  .topbar { font-size: 11px; letter-spacing: .02em; }
  .topbar .wrap { gap: 4px 10px; min-height: 34px; }
  .topbar .tb-item { gap: 6px; }
  .topbar .tb-phone { margin-left: 0; }
}
@media (max-width: 360px) {
  .topbar { font-size: 10px; }
}

/* --- offerings marquee (Grand Central / Pophams editorial ticker) --- */
.marquee {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: var(--paper);
  overflow: hidden;
  padding: 26px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--ink);
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-track span::after {
  content: "✳";
  font-style: normal;
  font-size: .5em;
  color: var(--accent);
  transform: translateY(-2px);
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* --- tabular figures so prices align like a real menu --- */
.menu-row .price, .mi .price, .pkg .price, .hero-badge b, .trust-item b {
  font-variant-numeric: tabular-nums;
}

/* --- menu-row hover affordance (interactive menu pattern) --- */
.mi { transition: padding-left .2s ease; }
.mi:hover { padding-left: 8px; }
.mi:hover .name { color: var(--accent-deep); }
.mi:hover .dots { border-bottom-color: var(--accent); }
.menu-row { transition: transform .2s ease; border-radius: 8px; }
.menu-row:hover { transform: translateX(4px); }
.menu-row:hover .name { color: #fff; }
