/* ============================================================
   SORBO — styles
   Black marble · amber arch light · Yame green · oat cream
   Display: Shippori Mincho B1 · Text/UI: Albert Sans
   ============================================================ */

@font-face { font-family: "Shippori Mincho B1"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/ShipporiMinchoB1-400.woff2") format("woff2"); }
@font-face { font-family: "Shippori Mincho B1"; font-style: normal; font-weight: 700; font-display: swap; src: url("assets/fonts/ShipporiMinchoB1-700.woff2") format("woff2"); }
@font-face { font-family: "Albert Sans"; font-style: normal; font-weight: 300 700; font-display: swap; src: url("assets/fonts/AlbertSans-300-700.woff2") format("woff2"); }

:root {
  --ink: #0b0b0d;          /* marble black — page ground */
  --ink-2: #111113;        /* slate panel */
  --ink-3: #18181b;        /* card */
  --vein: #27272b;         /* hairline */
  --oat: #efe6d8;          /* primary text */
  --oat-2: #bfb5a7;        /* secondary */
  --oat-3: #877e72;        /* muted */
  --amber: #f0a848;        /* arch glow */
  --amber-hot: #ffcf8a;
  --amber-dim: #7d5322;
  --matcha: #7fa64a;       /* Yame green */
  --matcha-2: #b8d26e;
  --caramel: #c98a3a;
  --ube: #9a7bc2;

  --font-d: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  --font-b: "Albert Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --max: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --arch-r: 999px 999px 0 0;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0; background: var(--ink); color: var(--oat);
  font-family: var(--font-b); font-weight: 300; font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
::selection { background: rgba(240,168,72,.35); color: var(--oat); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
strong { font-weight: 500; }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--amber);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .7; }
.eyebrow.plain::before { display: none; }
.title { font-family: var(--font-d); font-weight: 400; font-size: clamp(34px, 4.6vw, 62px); line-height: 1.06; letter-spacing: -.005em; margin: 14px 0 0; }
.title em { font-style: normal; color: var(--amber); }
.lede { font-size: clamp(16px, 1.35vw, 19px); line-height: 1.65; color: var(--oat-2); max-width: 58ch; margin: 22px 0 0; }
.lede + .lede { margin-top: 14px; }
.small { font-size: 13px; color: var(--oat-3); }
.price { font-variant-numeric: tabular-nums; font-weight: 400; color: var(--oat); white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 0 22px; border-radius: 999px; font: 500 14px/1 var(--font-b); letter-spacing: .01em;
  border: 1px solid transparent; cursor: pointer; transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn.primary { background: var(--amber); color: #1a1207; box-shadow: 0 10px 30px -14px rgba(240,168,72,.7); }
.btn.primary:hover { background: var(--amber-hot); transform: translateY(-1px); }
.btn.ghost { border-color: rgba(239,230,216,.28); color: var(--oat); background: rgba(11,11,13,.25); backdrop-filter: blur(6px); }
.btn.ghost:hover { border-color: var(--oat); transform: translateY(-1px); }
.btn.link { padding: 0; min-height: 0; border: 0; color: var(--amber); gap: 8px; }
.btn.link:hover { color: var(--amber-hot); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: 74px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 var(--pad);
  transition: background .5s var(--ease), border-color .5s var(--ease), height .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(11,11,13,.72); backdrop-filter: blur(14px) saturate(120%); -webkit-backdrop-filter: blur(14px) saturate(120%); border-color: rgba(239,230,216,.06); height: 64px; }
.brand { display: inline-flex; align-items: center; height: 100%; }
.brand img { height: 44px; width: auto; transition: height .5s var(--ease); }
.nav.scrolled .brand img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 400; color: var(--oat-2); position: relative; padding: 6px 0; transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--amber); transition: right .4s var(--ease); }
.nav-links a:hover { color: var(--oat); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { min-height: 40px; padding: 0 18px; font-size: 13px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 0; position: relative; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--oat); transition: transform .4s var(--ease), opacity .3s; }
.nav-toggle span:nth-child(1) { top: 16px; } .nav-toggle span:nth-child(2) { top: 22px; } .nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 40; background: rgba(11,11,13,.96); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; padding: 100px var(--pad) 60px; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity .45s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-d); font-size: clamp(34px, 9vw, 52px); line-height: 1.15; color: var(--oat); padding: 6px 0; border-bottom: 1px solid var(--vein); }
.mobile-menu a.cta { color: var(--amber); }
.mobile-menu .meta { margin-top: 26px; font-size: 14px; color: var(--oat-3); line-height: 1.7; }

/* ---------- Loader ---------- */
.loader {
  position: absolute; inset: 0; z-index: 8; display: grid; place-items: center; align-content: center; gap: 22px;
  background: var(--ink); transition: opacity .7s var(--ease), visibility .7s;
  --p: 0;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader img { width: 96px; opacity: .92; }
.loader .arch-load {
  width: 46px; height: 74px; border-radius: var(--arch-r); position: relative; overflow: hidden;
  border: 1px solid rgba(240,168,72,.35); box-shadow: 0 0 40px -8px rgba(240,168,72,.35);
}
.loader .arch-load i {
  position: absolute; left: 0; right: 0; bottom: 0; height: calc(var(--p) * 100%);
  background: linear-gradient(180deg, var(--amber-hot), var(--amber)); transition: height .25s linear;
}
.loader small { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--oat-3); }

/* ---------- Scrub sections ---------- */
.scrub { position: relative; height: 520vh; background: var(--ink); }
.scrub.short { height: 460vh; }
.scrub.long { height: 880vh; }   /* matcha: whisk segment is 2× interpolated — give it room */
.stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.stage .vignette { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11,11,13,.55) 0%, rgba(11,11,13,0) 22%, rgba(11,11,13,0) 54%, rgba(11,11,13,.48) 78%, rgba(11,11,13,.86) 100%); }
.stage .vignette.side::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,13,.55), rgba(11,11,13,0) 45%); }
.overlay { position: absolute; inset: 0; pointer-events: none; }
.reveal-line { position: absolute; opacity: 0; will-change: opacity, transform; }
.reveal-line.center { top: 50%; left: var(--pad); right: var(--pad); text-align: center; transform: translateY(-50%); }
.reveal-line.center.low { top: auto; bottom: clamp(72px, 12vh, 120px); transform: none; }
.reveal-line.center.low .hero-title { font-size: clamp(46px, 7.6vw, 108px); }
.reveal-line.center.low .eyebrow { margin-bottom: 14px; }
.overlay .hero-title, .overlay .h-scrub, .overlay .lede, .overlay .eyebrow, .overlay .hero-sub { text-shadow: 0 2px 28px rgba(0,0,0,.55), 0 1px 2px rgba(0,0,0,.4); }
.reveal-line.ml { top: 50%; left: var(--pad); max-width: min(560px, 44vw); transform: translateY(-50%); }
.reveal-line.mr { top: 50%; right: var(--pad); max-width: min(560px, 44vw); text-align: left; transform: translateY(-50%); }
.reveal-line .btn, .reveal-line a { pointer-events: auto; }
.reveal-line .eyebrow { margin-bottom: 18px; }
.reveal-line .lede { margin-top: 16px; }
.reveal-line.center .lede { margin-left: auto; margin-right: auto; }
.reveal-line .actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.reveal-line.center .actions { justify-content: center; }
.hero-title { font-family: var(--font-d); font-weight: 400; font-size: clamp(50px, 9.2vw, 132px); line-height: .98; letter-spacing: -.012em; margin: 0; text-wrap: balance; }
.hero-title em { font-style: normal; color: var(--amber); }
.hero-sub { margin-top: 20px; font-size: clamp(14px, 1.2vw, 17px); letter-spacing: .06em; color: var(--oat-2); }
.hero-sub .dot { color: var(--amber); margin: 0 8px; }
.h-scrub { font-family: var(--font-d); font-weight: 400; font-size: clamp(34px, 5.2vw, 72px); line-height: 1.02; letter-spacing: -.008em; margin: 0; text-wrap: balance; }
.h-scrub em { font-style: normal; color: var(--amber); }
.progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(239,230,216,.08); }
.progress-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--amber-dim), var(--amber)); }
.scroll-hint {
  position: absolute; right: var(--pad); bottom: 26px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--oat-3); transition: opacity .5s;
}
.scroll-hint i { width: 1px; height: 44px; background: linear-gradient(180deg, var(--amber), transparent); animation: hint 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes hint { 0% { transform: scaleY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }
.chip { position: absolute; top: 96px; right: var(--pad); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--oat-3); }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(80px, 11vw, 150px) var(--pad); }
.section.tight { padding-top: clamp(56px, 7vw, 100px); padding-bottom: clamp(56px, 7vw, 100px); }
.section.panel { background: var(--ink-2); }
.wrap { max-width: var(--max); margin: 0 auto; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(36px, 6vw, 96px); align-items: center; }
.split.top { align-items: start; }
.split.bakery { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.hairline { height: 1px; background: linear-gradient(90deg, transparent, var(--vein) 20%, var(--vein) 80%, transparent); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; } .reveal.d5 { transition-delay: .5s; }

/* ---------- The arch (signature) ---------- */
.arch {
  position: relative; border-radius: var(--arch-r); overflow: hidden; background: var(--ink-3);
  box-shadow: 0 0 0 1px rgba(240,168,72,.28), 0 0 44px -10px rgba(240,168,72,.42), inset 0 0 40px -14px rgba(240,168,72,.28);
  transition: box-shadow .6s var(--ease);
}
.arch img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.arch::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(240,168,72,.10), rgba(11,11,13,0) 30%, rgba(11,11,13,0) 70%, rgba(11,11,13,.45)); }
.glow { position: relative; }
.glow::before { content: ""; position: absolute; left: 50%; top: 4%; width: 120%; height: 60%; transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(closest-side, rgba(240,168,72,.28), rgba(240,168,72,0)); filter: blur(24px); pointer-events: none; z-index: 0; transition: opacity .6s; opacity: .8; }
.glow > * { position: relative; z-index: 1; }

/* ---------- Manifesto ---------- */
.manifesto { text-align: center; }
.manifesto .quote { font-family: var(--font-d); font-weight: 400; font-size: clamp(28px, 4.2vw, 56px); line-height: 1.18; letter-spacing: -.005em; margin: 18px auto 0; max-width: 22ch; text-wrap: balance; }
.manifesto .quote em { font-style: normal; color: var(--amber); }
.manifesto .lede { margin-left: auto; margin-right: auto; }
.pillars { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 2.4vw, 28px); margin-top: clamp(48px, 6vw, 80px); }
.pillar { display: block; text-align: center; color: inherit; }
.pillar .arch { aspect-ratio: 3 / 3.9; background: #0e0e10; }
.pillar .arch img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pillar .arch::after { background: linear-gradient(180deg, rgba(240,168,72,.10), rgba(11,11,13,0) 30%, rgba(11,11,13,0) 62%, rgba(11,11,13,.78) 100%); }
.pillar .arch .num { position: absolute; left: 0; right: 0; bottom: 20px; z-index: 2; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--amber); }
.pillar .arch .num::after { content: ""; display: block; width: 18px; height: 1px; background: currentColor; margin: 10px auto 0; opacity: .8; }
.pillar h3 { font-family: var(--font-d); font-weight: 400; font-size: 22px; margin: 18px 0 0; letter-spacing: .01em; transition: color .4s; }
.pillar p { margin: 8px auto 0; font-size: 13.5px; color: var(--oat-3); line-height: 1.55; max-width: 26ch; }
.pillar:hover .arch img { transform: scale(1.04); }
.pillar:hover h3 { color: var(--amber-hot); }
.pillar:hover .arch { box-shadow: 0 0 0 1px rgba(240,168,72,.6), 0 0 64px -8px rgba(240,168,72,.6), inset 0 0 50px -14px rgba(240,168,72,.4); }

/* ---------- Menu lists ---------- */
.menu-block h3 { font-family: var(--font-d); font-weight: 400; font-size: 26px; margin: 0 0 4px; }
.menu-block .note { font-size: 12.5px; color: var(--oat-3); margin: 0 0 16px; letter-spacing: .02em; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { display: grid; grid-template-columns: auto 1fr auto; column-gap: 12px; align-items: baseline; padding: 11px 0; border-bottom: 1px solid rgba(239,230,216,.06); }
.menu-list li:last-child { border-bottom: 0; }
.menu-list .name { font-weight: 400; color: var(--oat); font-size: 15.5px; }
.menu-list .desc { grid-column: 1 / -1; font-size: 13px; color: var(--oat-3); margin-top: 2px; }
.menu-list .dots { border-bottom: 1px dotted rgba(239,230,216,.22); transform: translateY(-5px); }
.menu-list .price { font-size: 14.5px; }
.menu-list .price small { font-size: 11px; color: var(--oat-3); letter-spacing: .04em; margin: 0 2px; }
.menu-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 72px); }
.menu-cols.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tag { display: inline-block; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--matcha-2); border: 1px solid rgba(184,210,110,.35); border-radius: 999px; padding: 4px 9px; margin-left: 8px; vertical-align: middle; }
.tag.amber { color: var(--amber); border-color: rgba(240,168,72,.4); }
.tag.ube { color: var(--ube); border-color: rgba(154,123,194,.45); }
.mods { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.mods span { font-size: 12.5px; color: var(--oat-2); border: 1px solid var(--vein); border-radius: 999px; padding: 6px 12px; }
.mods span b { color: var(--amber); font-weight: 500; }

/* ---------- Niches (signature drinks) ---------- */
.niches { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: clamp(14px, 2vw, 26px); margin-top: clamp(40px, 5vw, 64px); }
.niche { text-align: left; }
.niche .arch { aspect-ratio: 4 / 5.6; }
.niche:hover .arch img { transform: scale(1.04); }
.niche:hover .arch { box-shadow: 0 0 0 1px rgba(240,168,72,.6), 0 0 64px -8px rgba(240,168,72,.55), inset 0 0 50px -14px rgba(240,168,72,.35); }
.niche h3 { font-family: var(--font-d); font-weight: 400; font-size: 18px; line-height: 1.25; margin: 16px 0 0; }
.niche p { margin: 6px 0 0; font-size: 12.5px; color: var(--oat-3); line-height: 1.5; }
.niche .price { display: block; margin-top: 8px; font-size: 14px; color: var(--amber); }

/* ---------- Media panels ---------- */
.frame { position: relative; overflow: hidden; border-radius: 6px; background: var(--ink-3); box-shadow: 0 0 0 1px rgba(239,230,216,.06), 0 30px 80px -40px rgba(0,0,0,.9); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame.tall { aspect-ratio: 4 / 5; }
.frame.wide { aspect-ratio: 16 / 10; }
.frame .cap { position: absolute; left: 18px; bottom: 16px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--oat-2); background: rgba(11,11,13,.55); backdrop-filter: blur(6px); padding: 7px 10px; border-radius: 999px; }
.arch-frame { aspect-ratio: 4 / 5.2; }
.origin { display: grid; grid-template-columns: auto 1fr; gap: 14px 18px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--vein); font-size: 14px; }
.origin dt { color: var(--oat-3); letter-spacing: .04em; }
.origin dd { margin: 0; color: var(--oat); }

/* Space (full-bleed) */
.space { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.space img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.space::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,13,.25), rgba(11,11,13,.3) 35%, rgba(11,11,13,.82) 68%, rgba(11,11,13,.97) 100%); }
.space .title, .space .lede, .space .facts { text-shadow: 0 2px 24px rgba(0,0,0,.6); }
.space .wrap { position: relative; z-index: 1; width: 100%; padding: 0 0 clamp(48px, 7vw, 96px); }
.space .facts { display: flex; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap; margin-top: 34px; padding-top: 24px; border-top: 1px solid rgba(239,230,216,.14); }
.space .facts div { min-width: 140px; }
.space .facts b { display: block; font-family: var(--font-d); font-weight: 400; font-size: 26px; color: var(--oat); }
.space .facts span { font-size: 12.5px; letter-spacing: .06em; color: var(--oat-2); }

/* ---------- Visit ---------- */
.hours { list-style: none; margin: 18px 0 0; padding: 0; max-width: 420px; }
.hours li { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(239,230,216,.07); font-size: 15px; color: var(--oat-2); }
.hours li span:last-child { font-variant-numeric: tabular-nums; color: var(--oat); }
.hours li.today { color: var(--oat); }
.hours li.today span:first-child::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); margin-right: 10px; box-shadow: 0 0 10px var(--amber); vertical-align: middle; }
.open-now { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; color: var(--oat-2); }
.open-now::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--oat-3); }
.open-now.is-open { color: var(--matcha-2); }
.open-now.is-open::before { background: var(--matcha-2); box-shadow: 0 0 10px var(--matcha-2); }
.address { margin-top: 26px; font-size: 15px; line-height: 1.7; color: var(--oat-2); }
.address a { color: var(--oat); border-bottom: 1px solid rgba(239,230,216,.25); }
.address a:hover { border-color: var(--amber); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.map { position: relative; border-radius: 6px; overflow: hidden; background: var(--ink-3); box-shadow: 0 0 0 1px rgba(239,230,216,.07); aspect-ratio: 4 / 3.4; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(.9) brightness(.85) sepia(.18); }
.map .pin { position: absolute; left: 14px; bottom: 14px; font-size: 12px; color: var(--oat); background: rgba(11,11,13,.8); border: 1px solid rgba(239,230,216,.1); padding: 8px 12px; border-radius: 999px; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px clamp(28px, 5vw, 72px); margin: 34px 0 0; }
.faq div { padding: 18px 0; border-top: 1px solid var(--vein); }
.faq dt { font-family: var(--font-d); font-weight: 400; font-size: 20px; margin: 0 0 8px; }
.faq dd { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--oat-2); }
.faq dd a { color: var(--amber); }
@media (max-width: 900px) { .faq { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band .arch-bg { position: absolute; left: 50%; bottom: -30%; width: min(720px, 90vw); aspect-ratio: 1 / 1.05; transform: translateX(-50%); border-radius: var(--arch-r); pointer-events: none;
  box-shadow: 0 0 0 1px rgba(240,168,72,.22), 0 0 120px -20px rgba(240,168,72,.45), inset 0 0 120px -30px rgba(240,168,72,.28); }
.cta-band .wrap { position: relative; }
.cta-band .actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--vein); padding: clamp(48px, 6vw, 80px) var(--pad) 32px; background: var(--ink); }
.footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.footer h3 { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--oat-3); margin: 0 0 14px; font-weight: 500; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 0 0 9px; font-size: 14.5px; color: var(--oat-2); }
.footer li a:hover { color: var(--amber); }
.footer .about { font-size: 14.5px; color: var(--oat-2); max-width: 36ch; line-height: 1.65; margin-top: 16px; }
.footer .brand { display: inline-block; height: auto; }
.footer .brand img { height: 48px; }
.footer .bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: clamp(36px, 5vw, 60px); padding-top: 22px; border-top: 1px solid var(--vein); font-size: 12.5px; color: var(--oat-3); }
.footer .bottom a:hover { color: var(--oat); }

/* ---------- Menu page ---------- */
.page-head { padding: 150px var(--pad) 40px; }
.menu-tabs { position: sticky; top: 64px; z-index: 30; display: flex; gap: 6px; overflow-x: auto; padding: 12px var(--pad); background: rgba(11,11,13,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--vein); scrollbar-width: none; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tabs a { flex: 0 0 auto; font-size: 13px; padding: 8px 14px; border-radius: 999px; color: var(--oat-2); border: 1px solid transparent; }
.menu-tabs a.active, .menu-tabs a:hover { color: var(--oat); border-color: rgba(240,168,72,.5); }
.menu-section { padding: clamp(48px, 6vw, 80px) var(--pad); scroll-margin-top: 130px; }
.menu-section + .menu-section { border-top: 1px solid var(--vein); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .niches { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .split, .split.bakery { grid-template-columns: 1fr; }
  .split .frame.tall, .split .arch-frame { max-width: 520px; }
  .split .frame.wide { aspect-ratio: 16 / 11; }
  .menu-list .name .tag { display: inline-block; margin: 6px 0 0; }
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-cols, .menu-cols.three { grid-template-columns: 1fr; }
  .reveal-line.ml, .reveal-line.mr { top: auto; bottom: 64px; left: var(--pad); right: var(--pad); max-width: none; transform: none; text-align: left; }
  .reveal-line.center { top: 44%; }
  .reveal-line.center.low { top: auto; bottom: 84px; }
  .scroll-hint { display: none; }
  .chip { display: none; }
  .space { min-height: 76vh; }
}
@media (max-width: 600px) {
  .niches { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer .grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(44px, 14vw, 64px); }
  .h-scrub { font-size: clamp(30px, 9vw, 44px); }
  .btn { min-height: 44px; }
  .reveal-line .actions .btn { flex: 1 1 auto; }
  .hero-sub .loc { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint i { animation: none; }
  .btn, .arch img, .nav { transition: none; }
}
