/* Silk Road — "Caravanserai at dusk" design system (design.md v1).
   Hand-rolled, mobile-first, no frameworks. */

/* ---------- Fonts (self-hosted subsets, served from the assets bucket) ---------- */
@font-face {
  font-family: 'Marcellus';
  src: url('/assets/fonts/marcellus-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-500-italic.woff2') format('woff2');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Tokens (design.md §2) ---------- */
:root {
  --ink-900: #140E08;
  --ink-800: #1E150C;
  --ink-950: #0C0804;
  --hairline: #3A2B18;
  --saffron-400: #D9A441;
  --saffron-300: #E9BC5F;
  --gold-dim: #8A6B33;
  --pomegranate-500: #B03A2E;
  --turquoise-500: #3E8E8A;
  --text-hi: #F3E9D7;
  --text-body: #D9CBB2;
  --text-mute: #A8946F;
  --display: 'Marcellus', Georgia, serif;
  --editorial: 'Cormorant Garamond', Georgia, serif;
  --func: 'Jost', system-ui, -apple-system, sans-serif;
  --header-h: 60px;
}
@media (min-width: 761px) { :root { --header-h: 72px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  background: var(--ink-900);
  color: var(--text-body);
  font-family: var(--func);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
h1, h2, h3 { color: var(--text-hi); margin: 0 0 .5em; }
h2 { font-family: var(--editorial); font-weight: 600; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.15; }
h3 { font-family: var(--editorial); font-weight: 600; font-size: 1.5rem; line-height: 1.25; }
p { margin: 0 0 1em; }
a { color: var(--saffron-400); }
a:hover { color: var(--saffron-300); }
:focus-visible { outline: 2px solid var(--saffron-400); outline-offset: 2px; border-radius: 2px; }
.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;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 761px) { .wrap { padding: 0 24px; } }
.narrow { max-width: 68ch; }
.center { text-align: center; }
.narrow.center { margin-inline: auto; }

.section { padding-block: clamp(56px, 9vw, 104px); }

.kicker {
  font-weight: 500; font-size: .8125rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--saffron-400); margin: 0 0 1em;
}
.lede {
  font-family: var(--editorial); font-weight: 500;
  font-size: clamp(1.2rem, 2.6vw, 1.5rem); line-height: 1.55; color: var(--text-hi);
}
.section-head { position: relative; margin-bottom: 2.5rem; overflow: hidden; }
.section-intro { font-family: var(--editorial); font-size: 1.25rem; max-width: 56ch; margin: 0; }

/* ---------- Buttons & links (design.md §6) ---------- */
.btn {
  display: inline-block;
  font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  padding: .95em 1.7em; border-radius: 4px; border: 1px solid transparent;
  text-decoration: none;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--saffron-400); color: var(--ink-900); }
.btn-primary:hover { background: var(--saffron-300); color: var(--ink-900); transform: translateY(-1px); }
.btn-secondary { background: transparent; border-color: var(--gold-dim); color: var(--text-hi); }
.btn-secondary:hover { background: rgba(138, 107, 51, .12); color: var(--text-hi); }

.link-arrow {
  font-weight: 500; font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--saffron-400); text-decoration: none;
}
.link-arrow span { display: inline-block; transition: transform .2s ease; }
.link-arrow:hover { color: var(--saffron-300); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- Header (sticky, translucent, gold rule on scroll) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(20, 14, 8, .85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--hairline); }
.header-inner { display: flex; align-items: center; gap: .9rem; height: var(--header-h); }
.wordmark {
  font-family: var(--display); font-size: 1.05rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-hi); text-decoration: none; white-space: nowrap;
}
.wordmark:hover { color: var(--text-hi); }
.wordmark-star { color: var(--saffron-400); margin-right: .45em; }
.main-nav { display: none; margin-left: auto; align-items: center; gap: 1.75rem; }
.main-nav a {
  font-weight: 500; font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-body); text-decoration: none;
}
.main-nav a:hover { color: var(--saffron-300); }
.main-nav a[aria-current="page"] { color: var(--saffron-400); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.header-actions .btn { padding: .75em 1.1em; font-size: .72rem; }
/* Small phones: shrink the header row so wordmark + Reserve + hamburger fit */
@media (max-width: 420px) {
  .header-inner { gap: .5rem; }
  .wordmark { font-size: .92rem; letter-spacing: .14em; }
  .header-actions { gap: .35rem; }
  .header-actions .btn { padding: .7em .85em; font-size: .68rem; letter-spacing: .1em; }
  .hamburger { width: 36px; }
}
@media (min-width: 761px) {
  .main-nav { display: flex; }
  .header-actions { margin-left: 0; }
  .header-actions .btn { padding: .85em 1.5em; font-size: 13px; }
}

/* Mobile nav: checkbox-driven, works without JS */
.nav-toggle { position: absolute; opacity: 0; width: 1px; height: 1px; }
.nav-toggle:focus-visible ~ .header-inner .hamburger { outline: 2px solid var(--saffron-400); outline-offset: 2px; }
.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 9px; cursor: pointer;
}
.hamburger span { display: block; height: 1.5px; background: var(--text-hi); transition: opacity .2s, transform .2s; }
.nav-toggle:checked ~ .header-inner .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle:checked ~ .header-inner .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .header-inner .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; padding: 0 20px .75rem; border-bottom: 1px solid var(--hairline); }
.mobile-nav a {
  padding: .85em 0; color: var(--text-body); text-decoration: none;
  font-weight: 500; font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase;
  border-top: 1px solid var(--hairline);
}
.mobile-nav a:hover { color: var(--saffron-300); }
.nav-toggle:checked ~ .mobile-nav { display: flex; }
@media (min-width: 761px) {
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: max(560px, 88svh);
  display: flex; align-items: flex-end;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h)); /* slide under the translucent header */
  padding-top: var(--header-h);
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (prefers-reduced-motion: no-preference) {
  .hero-img { animation: hero-drift 20s ease-in-out infinite alternate; }
  @keyframes hero-drift { from { transform: scale(1); } to { transform: scale(1.06); } }
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(20, 14, 8, .72) 0%, rgba(20, 14, 8, .25) 55%, rgba(20, 14, 8, 0) 100%),
    linear-gradient(to top, var(--ink-900) 0%, rgba(20, 14, 8, .55) 24%, rgba(20, 14, 8, 0) 60%);
}
.hero-content { position: relative; z-index: 1; padding-bottom: clamp(3rem, 8vh, 5.5rem); }
.hero-wordmark {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-hi); margin: 0 0 .12em;
}
.hero-sub {
  font-family: var(--editorial); font-style: italic; font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: var(--text-hi); opacity: .92;
  margin: 0 0 1.6rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin: 0 0 1.4rem; }
.center-ctas { justify-content: center; }

/* ---------- Status chip ---------- */
.status-chip {
  display: inline-flex; align-items: center; gap: .55em; margin: 0;
  font-weight: 500; font-size: .8125rem; letter-spacing: .06em; color: var(--text-body);
  background: rgba(30, 21, 12, .8); border: 1px solid var(--hairline); border-radius: 999px;
  padding: .45em 1em;
}
.status-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pomegranate-500); flex: none; }
.status-chip.open .dot { background: var(--turquoise-500); }
.status-chip.small { font-size: .75rem; }

/* ---------- Pattern band divider ---------- */
.band { padding: 0 20px; }
.band img {
  display: block; width: min(640px, 100%); height: auto; margin: 0 auto;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 18%, #000 82%, transparent);
}

/* ---------- Corner ornament (dimmed, 1–2 uses per page) ---------- */
.corner { position: absolute; width: 220px; height: 220px; opacity: .28; pointer-events: none; }
.corner-br { right: 0; bottom: 0; }                       /* flourish sits bottom-right in the asset */
.corner-tl { top: 0; left: 0; transform: rotate(180deg); }

/* ---------- Quick-action cards ---------- */
.quick-actions { display: grid; gap: 1rem; margin-top: 2.75rem; }
@media (min-width: 761px) { .quick-actions { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.qa-card {
  display: block; background: var(--ink-800); border: 1px solid var(--hairline); border-radius: 8px;
  padding: 24px; color: var(--text-body); text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.qa-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(217, 164, 65, .10); color: var(--text-body); }
.qa-title {
  font-family: var(--func); font-weight: 600; font-size: .8125rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--saffron-400); margin: 0 0 .6em;
}
.qa-card p { margin: 0 0 1em; font-size: .95rem; }
.qa-arrow { color: var(--gold-dim); display: inline-block; transition: transform .2s ease, color .2s ease; }
.qa-card:hover .qa-arrow { transform: translateX(4px); color: var(--saffron-400); }

/* ---------- Dish cards (home rail) ---------- */
.dish-grid {
  display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory;
  margin: 0 -20px 1.75rem; padding: 0 20px .5rem;
}
.dish-card {
  flex: 0 0 76%; scroll-snap-align: start;
  background: var(--ink-800); border: 1px solid var(--hairline); border-radius: 8px;
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.dish-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(217, 164, 65, .12); }
.dish-card img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.dish-body { padding: 20px 24px 24px; }
.dish-card h3 { margin: 0 0 .3em; }
.dish-card p { margin: 0; font-size: .92rem; color: var(--text-mute); }
@media (min-width: 761px) {
  .dish-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; overflow: visible; margin: 0 0 2rem; padding: 0; }
  .dish-card { flex: none; }
}
@media (min-width: 1101px) { .dish-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Story teaser split ---------- */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 861px) { .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }
.split-media img { display: block; width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--hairline); }
.split-text p:not(.kicker) { font-family: var(--editorial); font-size: 1.2rem; line-height: 1.65; }

/* ---------- Visit band ---------- */
.visit-panel {
  position: relative; overflow: hidden;
  background: var(--ink-800); border: 1px solid var(--hairline); border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.visit-grid { position: relative; display: grid; gap: 2rem; }
@media (min-width: 861px) { .visit-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; } }
.visit-card h3 { margin-bottom: .7em; }
.hours-table { width: 100%; border-collapse: collapse; font-size: .9rem; font-variant-numeric: tabular-nums; margin-bottom: 1.1rem; }
.hours-table th, .hours-table td { padding: .32em 0; font-weight: 400; }
.hours-table th { text-align: left; color: var(--text-body); font-weight: 500; }
.hours-table td { text-align: right; color: var(--text-mute); }
.hours-table tr.today th, .hours-table tr.today td { color: var(--saffron-400); }
.address { font-size: 1.05rem; color: var(--text-hi); line-height: 1.5; }
.phone-big { font-family: var(--editorial); font-size: 1.7rem; color: var(--text-hi); text-decoration: none; }
.phone-big:hover { color: var(--saffron-300); }
.takeout-note { font-size: .92rem; color: var(--text-mute); }
.takeout-links { font-size: .92rem; color: var(--text-mute); margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-950); border-top: 1px solid var(--hairline); padding: clamp(3rem, 7vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; gap: 2.25rem; }
@media (min-width: 761px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 2.5rem; } }
.footer-h {
  font-family: var(--func); font-weight: 600; font-size: .75rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-dim); margin: 0 0 .9em;
}
.footer-h2 { margin-top: 1.5em; }
.tagline { color: var(--text-mute); font-size: .9rem; margin: .6em 0 0; }
.footer-nav a, .footer-social a {
  display: block; color: var(--text-mute); font-size: .9rem; padding: .22em 0; text-decoration: none;
}
.footer-nav a:hover, .footer-social a:hover { color: var(--saffron-300); }
.footer-hours p { margin: 0 0 .3em; font-size: .9rem; color: var(--text-mute); font-variant-numeric: tabular-nums; }
.fh-days { color: var(--text-body); font-weight: 500; }
.fh-times { color: var(--text-mute); }
.today-mark { display: block; font-family: var(--func); font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.nw { white-space: nowrap; }
.footer-base { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--hairline); color: var(--text-mute); font-size: .85rem; }
.footer-base p { margin: 0 0 .4em; }
.star-seal { display: block; margin: 0 auto 1.1rem; }
.provenance { font-size: .8rem; opacity: .75; }

/* ---------- Menu page ---------- */
.page-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-hi);
}
.menu-head { padding-bottom: 2.5rem; }
.legend {
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: center;
  font-size: .8125rem; letter-spacing: .06em; color: var(--text-mute); margin: 1.75rem 0 0;
}
.legend .badge { margin-right: .2em; }
.badge {
  display: inline-block; border: 1px solid var(--gold-dim); border-radius: 3px;
  color: var(--text-body); font-weight: 600; font-size: .6875rem; letter-spacing: .04em;
  padding: .04em .35em; vertical-align: baseline;
}
.sig { color: var(--saffron-400); }
.fav { color: var(--pomegranate-500); font-size: .8em; }
.category-nav {
  position: sticky; top: var(--header-h); z-index: 40;
  background: rgba(20, 14, 8, .92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.category-nav-row { display: flex; gap: 1.5rem; overflow-x: auto; padding-block: .85rem; scrollbar-width: none; }
@media (min-width: 1024px) { .category-nav-row { flex-wrap: wrap; overflow-x: visible; row-gap: .5rem; } }
.category-nav-row::-webkit-scrollbar { display: none; }
.category-nav a {
  white-space: nowrap; font-weight: 500; font-size: .8125rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-mute); text-decoration: none;
}
.category-nav a:hover { color: var(--saffron-300); }
.menu-body { padding-block: 2.75rem; }
.menu-category { scroll-margin-top: calc(var(--header-h) + 64px); margin-bottom: 3.5rem; }
.category-head { overflow: auto; margin-bottom: 1.5rem; }
.category-head h2 { margin-bottom: .25em; }
.category-photo {
  float: right; width: 132px; height: 132px; object-fit: cover;
  border-radius: 8px; border: 1px solid var(--hairline); margin: 0 0 1rem 1.5rem;
}
@media (min-width: 761px) { .category-photo { width: 180px; height: 180px; } }
.category-note { font-size: .9rem; color: var(--text-mute); max-width: 62ch; margin: 0; }
.dish-list { list-style: none; margin: 0; padding: 0; clear: both; }
.dish { margin-bottom: 1.15rem; }
.dish-line { display: flex; align-items: baseline; gap: .6rem; }
.dish-name { font-weight: 500; color: var(--text-hi); font-size: 1.02rem; }
.dish-name .badge { margin-left: .15em; }
.leader { flex: 1; min-width: 2rem; border-bottom: 1px dotted var(--gold-dim); transform: translateY(-.28em); }
.price { font-variant-numeric: tabular-nums; color: var(--text-mute); font-weight: 500; white-space: nowrap; }
.dish-desc { margin: .15em 0 0; font-size: .9rem; color: var(--text-mute); max-width: 62ch; }
.pull-quote { position: relative; margin: 4rem auto; max-width: 56ch; text-align: center; }
.pull-quote::before {
  content: "\201C"; display: block; font-family: var(--editorial);
  font-size: 4.5rem; line-height: .4; color: var(--gold-dim); margin-bottom: .3em;
}
.pull-quote p {
  font-family: var(--editorial); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1.4; color: var(--text-hi); margin: 0 0 .8em;
}
.pull-quote cite {
  font-family: var(--func); font-style: normal; font-weight: 500;
  font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute);
}
/* inline quote inside the home story split */
.story-quote {
  font-family: var(--editorial); font-style: italic; font-weight: 500;
  font-size: 1.15rem; line-height: 1.5; color: var(--text-hi);
  margin: 1.2em 0 0; padding-left: 1.1em; border-left: 2px solid var(--gold-dim);
}
.story-attr {
  display: block; margin-top: .4em; font-family: var(--func); font-style: normal;
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute);
}
.menu-smallprint {
  font-size: .8rem; color: var(--text-mute); text-align: center;
  max-width: 60ch; margin: 0 auto; padding-top: 1.75rem; border-top: 1px solid var(--hairline);
}
.cta-band { text-align: center; }
.cta-alt { margin: 0; color: var(--text-mute); }

/* ---------- 404 ---------- */
.notfound { padding-block: clamp(5rem, 15vw, 9rem); }

/* ---------- Mobile action bar (visible after the hero, mobile only) ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; gap: .6rem;
  background: rgba(12, 8, 4, .95);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--hairline);
  padding: .55rem .75rem calc(.55rem + env(safe-area-inset-bottom, 0px));
}
.mobile-bar.visible { display: flex; }
@media (min-width: 761px) { .mobile-bar.visible { display: none; } }
.mobile-bar a {
  flex: 1; text-align: center; text-decoration: none;
  font-weight: 600; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .8em .4em; border-radius: 4px;
  color: var(--text-hi); border: 1px solid var(--hairline); background: var(--ink-800);
}
.mobile-bar a.bar-primary { background: var(--saffron-400); color: var(--ink-900); border-color: transparent; }
@media (max-width: 760px) { body { padding-bottom: 60px; } }

/* ---------- Scroll reveal (JS + no-preference only) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .4s ease-out, transform .4s ease-out; }
  html.js .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Visit page ---------- */
/* hero-lite: a shorter image band for sub-pages; reuses .hero-img/.hero-scrim */
.hero-lite {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: clamp(300px, 44vw, 460px);
  margin-top: calc(-1 * var(--header-h)); /* slide under the translucent header */
  padding-top: var(--header-h);
}
.hero-lite-content { position: relative; z-index: 1; padding-bottom: clamp(2rem, 6vw, 3.25rem); }
.hero-lite .page-title { margin: 0 0 .1em; line-height: 1.15; }
.hero-lite .hero-sub { margin: 0; }
@media (max-width: 420px) {
  .hero-lite .story-title { font-size: 10.5vw; }
}

.parking-note { font-size: .92rem; color: var(--text-mute); }

/* dark-styled Google embed, framed like the other cards */
.map-card {
  margin-top: 1.5rem;
  background: var(--ink-800); border: 1px solid var(--hairline); border-radius: 8px; overflow: hidden;
}
.map-card iframe { display: block; width: 100%; height: 320px; border: 0; }
@media (min-width: 761px) { .map-card iframe { height: 420px; } }
.map-dark { filter: invert(0.92) hue-rotate(180deg) saturate(0.35) brightness(0.92) contrast(0.9); }

/* "Good to know" strip */
.good-to-know {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem 1.75rem;
  list-style: none; margin: 2.25rem 0 0; padding: 1.5rem 0 0;
  border-top: 1px solid var(--hairline);
  font-weight: 500; font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-body);
}
.good-to-know span { color: var(--saffron-400); margin-right: .5em; }

/* catering packages */
#catering { scroll-margin-top: var(--header-h); }
.catering-grid { display: grid; gap: 1rem; }
@media (min-width: 861px) { .catering-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.catering-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: var(--ink-800); border: 1px solid var(--hairline); border-radius: 8px; padding: 24px;
}
.catering-card h3 { margin: 0 0 .15em; }
.catering-price {
  font-variant-numeric: tabular-nums; font-weight: 500; color: var(--saffron-400); margin: 0 0 .9em;
}
.catering-card > p:not(.catering-price) { font-size: .95rem; margin-bottom: 1.25rem; }
.catering-terms { text-align: center; color: var(--text-mute); font-size: .9rem; margin: 2.25rem 0 1.75rem; }

/* ---------- Our Story page ---------- */
/* editorial prose column (design.md §7.3) */
.story-body p { font-family: var(--editorial); font-size: 1.2rem; line-height: 1.65; }
.story-more { margin-top: 1.1em; }

/* vertical timeline: gold line down the left margin, star nodes */
.timeline {
  list-style: none; margin: 3.5rem 0 0; padding: 0 0 0 2rem;
  border-left: 1px solid var(--gold-dim);
}
.timeline li { position: relative; margin-bottom: 2.25rem; }
.timeline li:last-child { margin-bottom: 0; }
.timeline li::before {
  content: "✶"; position: absolute; left: -2rem; top: .45em;
  transform: translateX(-50%); padding: 0 .4em;
  background: var(--ink-900); color: var(--saffron-400);
  font-size: 1.1rem; line-height: 1;
}
.timeline h3 { margin-bottom: .15em; }
.timeline p { margin: 0; }

/* tandoor photo with corner flourish */
.craft-media { position: relative; margin: 0 0 2rem; }
.craft-photo { display: block; width: 100%; height: auto; border-radius: 8px; border: 1px solid var(--hairline); }

/* the family's own claim, quoted honestly */
.pioneers {
  font-family: var(--editorial); font-size: 1.2rem; line-height: 1.6; color: var(--text-hi);
  border-left: 2px solid var(--gold-dim); padding-left: 1.1em; margin: 2.5rem 0 0;
}

/* ---------- Reserve page ---------- */
/* corner-ornamented panel, ~640px centered (design.md §7.5) */
.reserve-wrap { max-width: 640px; margin: 0 auto; }
.reserve-head { margin-bottom: 2.5rem; }
.reserve-panel {
  position: relative; overflow: hidden;
  background: var(--ink-800); border: 1px solid var(--hairline); border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color-scheme: dark; /* native date/select chrome follows the palette */
}
.reserve-panel form { position: relative; } /* fields sit above the corner ornament */

.field { margin-bottom: 1.25rem; }
.field label {
  display: block; font-weight: 500; font-size: .8125rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-body); margin-bottom: .5em;
}
.field-hint { color: var(--text-mute); text-transform: none; letter-spacing: 0; font-weight: 400; }
.field input, .field select, .field textarea {
  display: block; width: 100%; font: inherit; color: var(--text-hi);
  background: var(--ink-900); border: 1px solid var(--hairline); border-radius: 4px;
  padding: .7em .9em;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--saffron-400); outline-offset: 0; border-color: var(--gold-dim);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--pomegranate-500); }
.field textarea { resize: vertical; min-height: 5.5em; }
.field-row { display: grid; gap: 0 1.25rem; }
@media (min-width: 621px) { .field-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 621px) { .field-row-3 { grid-template-columns: .7fr 1.15fr 1.15fr; } }

/* pomegranate lightened to ~6.8:1 on ink-800 for small error text */
.field-error { color: #DF8674; font-size: .85rem; margin: .45em 0 0; }
.form-alert { margin: 0 0 1.25rem; font-size: .95rem; }
.field-error-contact { margin: -.75rem 0 1.25rem; }

/* honeypot: present in the DOM, invisible and untabbable for humans */
.hp { position: absolute; left: -100vw; width: 1px; height: 1px; overflow: hidden; }

.reserve-submit { margin: 1.5rem 0 0; }
.form-smallprint { font-size: .8rem; color: var(--text-mute); text-align: center; margin: 1.25rem 0 0; }
.reserve-note { color: var(--text-mute); margin: 2rem 0 0; line-height: 1.9; }
.reserve-success h2 { margin-bottom: .6em; }
.reserve-success p { font-family: var(--editorial); font-size: 1.2rem; line-height: 1.6; }
.success-call { margin: 1.5rem 0 0; }

/* Menu #2 is the first complete catering detail page. */
.catering-card-featured { border-color: var(--gold-dim); }
.catering-card > .link-arrow { display: inline-block; margin-top: auto; padding-top: .5rem; }
.catering-card-pdf { display: block; font-size: .76rem; color: var(--text-mute); margin-top: .8rem; text-underline-offset: 3px; }
