/* ==========================================================================
   Bobola's Restaurant, Nashua NH
   Design system: "The Sign Board"
   Palette pulled from the physical sign at 9 Simon Street: espresso board,
   butter-gold letters, sign red band. Food photos are cropped as round plates.
   Type: Fraunces (display) + Figtree (body).
   ========================================================================== */

:root {
  --board: #2a1810;
  --board-2: #3a241a;
  --board-3: #4a3125;
  --butter: #f2c14e;
  --butter-2: #ffd97a;
  --red: #b5261e;
  --red-2: #8f1c16;
  --paper: #f7f0e4;
  --paper-2: #efe4d2;
  --paper-3: #e6d8c2;
  --ink: #1c1512;
  --ink-2: #5b4636;
  --ink-3: #8a7461;
  --line: #e4d6c1;
  --white: #fffdf9;
  --ok: #2e8b57;

  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body: "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --wrap: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 700; line-height: 1.05; letter-spacing: -.015em; }
h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); font-weight: 800; font-variation-settings: "opsz" 144; }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-variation-settings: "opsz" 120; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-variation-settings: "opsz" 72; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--butter); color: var(--ink); padding: 10px 14px; border-radius: 8px; z-index: 999; font-weight: 700; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--butter); outline-offset: 3px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Eyebrow, buttons, pills ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.on-dark .eyebrow, .eyebrow.light { color: var(--butter); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 24px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer; line-height: 1;
  transition: transform .18s var(--ease), background .18s, color .18s, border-color .18s, box-shadow .18s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 24px -10px rgba(181, 38, 30, .7); }
.btn-red:hover { background: var(--red-2); }
.btn-butter { background: var(--butter); color: var(--ink); box-shadow: 0 10px 24px -10px rgba(242, 193, 78, .6); }
.btn-butter:hover { background: var(--butter-2); }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, .35); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .06); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--board-2); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: 11px 18px; font-size: .92rem; }

.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  font-size: .85rem; font-weight: 700; background: rgba(255, 255, 255, .08); color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
}
.pill .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-3); flex: none; }
.pill.is-open .dot { background: #4ade80; box-shadow: 0 0 0 4px rgba(74, 222, 128, .22); }
.pill.is-closed .dot { background: var(--butter); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--board); color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.nav { display: flex; align-items: center; gap: 16px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand img { width: 46px; height: 52px; }
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.7rem; letter-spacing: -.02em; color: var(--butter); line-height: 1; font-variation-settings: "opsz" 72; }
.brand-name b { color: var(--red); font-weight: inherit; }
.brand-sub { display: block; white-space: nowrap; font-family: var(--body); font-size: .62rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: rgba(255, 255, 255, .6); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a { display: inline-block; white-space: nowrap; padding: 10px 14px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: .98rem; color: rgba(255, 255, 255, .86); transition: background .15s, color .15s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(255, 255, 255, .09); color: #fff; }
.nav-links a[aria-current="page"] { color: var(--butter); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: inline-flex; white-space: nowrap; align-items: center; gap: 8px; text-decoration: none; font-weight: 700; color: #fff; padding: 10px 12px; border-radius: 999px; }
.nav-phone svg { width: 18px; height: 18px; }
.nav-phone:hover { background: rgba(255, 255, 255, .09); }
.nav-toggle { display: none; background: none; border: 0; color: #fff; padding: 8px; border-radius: 10px; cursor: pointer; }
.nav-toggle svg { width: 28px; height: 28px; }
.has-menu { position: relative; }
.submenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px; padding: 8px;
  background: var(--white); color: var(--ink); border-radius: 14px; list-style: none; margin: 0;
  box-shadow: 0 30px 60px -20px rgba(28, 21, 18, .5), 0 0 0 1px var(--line);
}
.submenu a { display: block; padding: 10px 12px; border-radius: 10px; color: var(--ink); font-weight: 600; }
.submenu a small { display: block; font-weight: 500; color: var(--ink-3); font-size: .8rem; }
.submenu a:hover { background: var(--paper-2); }

@media (max-width: 1360px) { .nav-phone span { display: none; } .nav-links a { padding: 10px 11px; font-size: .94rem; } }
@media (max-width: 1180px) { .nav-cta .btn-butter { display: none; } }
@media (max-width: 1024px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-phone span { display: none; }
  .site-header.is-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; left: 0; right: 0; top: 100%; background: var(--board);
    padding: 12px var(--gutter) 24px; border-bottom: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 30px 40px -20px rgba(0, 0, 0, .6);
  }
  .site-header.is-open .nav-links a { padding: 14px 12px; font-size: 1.1rem; }
  .site-header.is-open .submenu { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; box-shadow: none; padding: 0 0 6px 14px; }
  .site-header.is-open .submenu a { color: rgba(255, 255, 255, .8) !important; font-size: 1rem !important; padding: 10px 12px !important; }
  .site-header.is-open .submenu a small { color: rgba(255, 255, 255, .45); }
  .site-header.is-open .submenu a:hover { background: rgba(255, 255, 255, .08) !important; }
  .has-menu > a::after { display: none; }
  .site-header.is-open .nav-mobile-cta { display: flex; gap: 10px; margin-top: 14px; }
  .site-header.is-open .nav-mobile-cta .btn { display: inline-flex; flex: 1; }
}
.nav-mobile-cta { display: none; }

/* ---------- Plates (the signature) ---------- */
.plate {
  position: relative; border-radius: 50%; overflow: hidden; aspect-ratio: 1; background: var(--paper-2);
  box-shadow: 0 0 0 6px #fff, 0 0 0 7px var(--line), 0 30px 50px -18px rgba(42, 24, 16, .55);
}
.plate img { width: 100%; height: 100%; object-fit: cover; }
.plate::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08), inset 0 -20px 40px -20px rgba(0, 0, 0, .25); pointer-events: none; }
.on-dark .plate { box-shadow: 0 0 0 6px #fff, 0 0 0 7px rgba(255, 255, 255, .15), 0 40px 60px -24px rgba(0, 0, 0, .8); }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--board); color: #fff; overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(242, 193, 78, .14), transparent 60%),
    radial-gradient(700px 600px at 95% 100%, rgba(181, 38, 30, .22), transparent 60%),
    linear-gradient(180deg, var(--board) 0%, #24140d 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .07; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: clamp(56px, 8vw, 110px) 0 clamp(48px, 6vw, 90px); }
.hero h1 { color: var(--butter); text-wrap: balance; }
.hero h1 em { font-style: italic; font-weight: 600; color: #fff; }
.hero-lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: rgba(255, 255, 255, .8); max-width: 34rem; margin: 22px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-status { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .92rem; color: rgba(255, 255, 255, .7); }
.hero-meta strong { color: #fff; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--butter); }

.table { position: relative; aspect-ratio: 1 / 1; width: 100%; max-width: 560px; margin-left: auto; }
.table .plate { position: absolute; will-change: transform; }
.table .plate figcaption {
  position: absolute; left: 50%; bottom: 10%; transform: translate(-50%, 8px);
  background: rgba(28, 21, 18, .85); color: #fff; padding: 6px 12px; border-radius: 999px;
  font-size: .78rem; font-weight: 700; white-space: nowrap; opacity: 0; transition: opacity .2s, transform .25s var(--ease);
  pointer-events: none; backdrop-filter: blur(6px);
}
.table .plate:hover figcaption { opacity: 1; transform: translate(-50%, 0); }
.p1 { width: 52%; left: 0; top: 6%; z-index: 3; }
.p2 { width: 36%; right: 2%; top: 0; z-index: 2; }
.p3 { width: 40%; right: 0; bottom: 8%; z-index: 4; }
.p4 { width: 30%; left: 14%; bottom: 0; z-index: 5; }
.p5 { width: 20%; left: 44%; top: 56%; z-index: 6; }
.table .spoon { position: absolute; width: 22%; right: 36%; top: 52%; z-index: 1; opacity: .9; filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .5)); }
@keyframes plate-in { from { opacity: 0; transform: translateY(40px) scale(.9); } to { opacity: 1; transform: none; } }
@keyframes drift { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }
.table .plate { animation: plate-in .9s var(--ease) both; }
.table .p1 { animation-delay: .05s; } .table .p2 { animation-delay: .18s; } .table .p3 { animation-delay: .3s; } .table .p4 { animation-delay: .42s; } .table .p5 { animation-delay: .54s; }
.table.is-in .plate { animation: drift 7s ease-in-out infinite; }
.table.is-in .p2 { animation-duration: 8.5s; animation-delay: -2s; } .table.is-in .p3 { animation-duration: 9s; animation-delay: -4s; } .table.is-in .p4 { animation-duration: 7.5s; animation-delay: -1s; } .table.is-in .p5 { animation-duration: 6.5s; animation-delay: -3s; }
@media (prefers-reduced-motion: reduce) { .table .plate { animation: none !important; } }
.hero-fade { text-wrap: balance; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-copy > * { animation: rise .8s var(--ease) both; }
.hero-copy > *:nth-child(2) { animation-delay: .08s; } .hero-copy > *:nth-child(3) { animation-delay: .16s; } .hero-copy > *:nth-child(4) { animation-delay: .24s; } .hero-copy > *:nth-child(5) { animation-delay: .32s; } .hero-copy > *:nth-child(6) { animation-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .hero-copy > * { animation: none; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; padding-top: 44px; }
  .table { max-width: 100%; aspect-ratio: 16 / 9; margin: 8px 0 0; }
  .p1 { width: 40%; left: 0; top: 4%; } .p2 { width: 30%; left: 44%; top: 0; } .p3 { width: 34%; right: 0; bottom: 4%; } .p4 { width: 26%; left: 22%; bottom: 0; } .p5 { width: 18%; left: 60%; top: 50%; }
  .table .spoon { display: none; }
}

/* ---------- Hours strip ---------- */
.hours-strip { background: var(--butter); color: var(--ink); }
.hours-strip .wrap { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; padding: 16px 0; }
.hours-strip .label { font-family: var(--display); font-weight: 700; font-size: 1.1rem; white-space: nowrap; }
.hours-strip .label small { display: block; font-family: var(--body); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .65; }
.week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; list-style: none; margin: 0; padding: 0; }
.week li { text-align: center; padding: 8px 4px; border-radius: 12px; font-size: .86rem; line-height: 1.25; }
.week li b { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; margin-bottom: 2px; }
.week li.today { background: var(--board); color: var(--butter); box-shadow: 0 10px 20px -10px rgba(42, 24, 16, .6); }
.week li.today b { opacity: .8; }
.week li.closed { opacity: .55; }
.week li.today.closed { opacity: 1; }
@media (max-width: 800px) {
  .hours-strip .wrap { grid-template-columns: 1fr; gap: 10px; }
  .week { grid-template-columns: repeat(4, 1fr); }
  .week li { font-size: .8rem; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-tight { padding: clamp(40px, 5vw, 70px) 0; }
.section-head { max-width: 46rem; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head p { color: var(--ink-2); font-size: 1.12rem; margin-top: 14px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.on-dark { background: var(--board); color: #fff; }
.on-dark .section-head p { color: rgba(255, 255, 255, .72); }
.on-paper-2 { background: var(--paper-2); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; } .reveal-d2 { transition-delay: .16s; } .reveal-d3 { transition-delay: .24s; } .reveal-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Meals ---------- */
.meals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.meal {
  position: relative; display: flex; flex-direction: column; gap: 18px; padding: 28px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; color: inherit; transition: transform .25s var(--ease), box-shadow .25s;
  overflow: hidden;
}
.meal:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -30px rgba(42, 24, 16, .45); }
.meal .plate { width: 132px; }
.meal-when { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.meal h3 { font-size: 1.9rem; }
.meal p { color: var(--ink-2); }
.meal .go { margin-top: auto; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 8px; }
.meal .go svg { width: 18px; height: 18px; transition: transform .2s; }
.meal:hover .go svg { transform: translateX(4px); }
.meal .now { position: absolute; top: 18px; right: 18px; background: var(--ok); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; display: none; }
.meal.is-now { border-color: var(--ok); }
.meal.is-now .now { display: inline-block; }
@media (max-width: 900px) { .meals { grid-template-columns: 1fr; } .meal { flex-direction: row; flex-wrap: wrap; align-items: center; } .meal .plate { width: 96px; } .meal > div { flex: 1; min-width: 200px; } }

/* ---------- Dish scroller ---------- */
.scroller { display: flex; gap: 26px; overflow-x: auto; padding: 24px var(--gutter) 40px; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.scroller::-webkit-scrollbar { display: none; }
.scroller-wrap { position: relative; }
.dish { flex: 0 0 220px; scroll-snap-align: start; text-align: center; text-decoration: none; color: inherit; }
.dish .plate { width: 100%; transition: transform .35s var(--ease); }
.dish:hover .plate { transform: translateY(-6px) rotate(-2deg); }
.dish h3 { margin-top: 18px; font-size: 1.15rem; }
.dish small { color: var(--ink-3); font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.on-dark .dish small { color: rgba(255, 255, 255, .55); }
.on-dark .dish h3 { color: #fff; }
.scroller-nav { display: flex; gap: 8px; }
.scroller-nav button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); background: transparent; color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.scroller-nav button:hover { background: rgba(255, 255, 255, .1); }
.scroller-nav svg { width: 18px; height: 18px; }
.head-row { display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* ---------- Story ---------- */
.story-figure { position: relative; }
.story-figure .plate { width: min(100%, 420px); margin-inline: auto; }
.story-figure .stamp {
  position: absolute; right: 4%; bottom: 2%; width: 130px; height: 130px; border-radius: 50%;
  background: var(--butter); color: var(--ink); display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-weight: 800; line-height: 1; padding: 14px; transform: rotate(-8deg);
  box-shadow: 0 20px 30px -16px rgba(42, 24, 16, .5);
}
.story-figure .stamp b { font-size: 2rem; display: block; }
.story-figure .stamp small { font-family: var(--body); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.lede { font-family: var(--display); font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 500; line-height: 1.35; color: var(--ink); font-variation-settings: "opsz" 48; }
.lede + p, .story-copy p { color: var(--ink-2); }

/* ---------- Extras ---------- */
.extras { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.extra { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; }
.extra .icon { width: 48px; height: 48px; border-radius: 14px; background: var(--paper-2); color: var(--red); display: grid; place-items: center; margin-bottom: 16px; }
.extra .icon svg { width: 24px; height: 24px; }
.extra h3 { font-size: 1.15rem; margin-bottom: 6px; }
.extra p { color: var(--ink-2); font-size: .95rem; }
.extras-3 { grid-template-columns: repeat(3, 1fr); }
.extras-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .extras, .extras-3, .extras-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .extras, .extras-3, .extras-4 { grid-template-columns: 1fr 1fr; } .extra { padding: 18px 16px; } }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--white); border-radius: var(--radius); padding: 30px 28px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.review .stars { color: var(--butter); display: flex; gap: 2px; }
.review .stars svg { width: 18px; height: 18px; fill: #d99e1e; }
.review blockquote { margin: 0; font-family: var(--display); font-size: 1.15rem; line-height: 1.45; font-weight: 500; font-variation-settings: "opsz" 40; }
.review cite { font-style: normal; font-weight: 700; color: var(--ink-3); font-size: .9rem; margin-top: auto; }
.rating-card { display: inline-flex; align-items: center; gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px 10px 12px; }
.rating-card .num { font-family: var(--display); font-weight: 800; font-size: 1.8rem; line-height: 1; }
.rating-card .stars { display: flex; gap: 1px; } .rating-card .stars svg { width: 16px; height: 16px; fill: #d99e1e; }
.rating-card small { display: block; color: var(--ink-3); font-weight: 600; font-size: .8rem; }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

/* ---------- Visit ---------- */
.visit { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border-radius: var(--radius); overflow: hidden; background: var(--board); color: #fff; }
.visit-copy { padding: clamp(28px, 4vw, 56px); }
.visit-map { min-height: 380px; background: var(--board-2); }
.visit-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: saturate(.85) contrast(1.05); }
.hours-table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 1rem; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr.today td { color: var(--butter); font-weight: 700; }
.hours-table tr.closed td:last-child { color: rgba(255, 255, 255, .5); }
.on-paper .hours-table td { border-color: var(--line); }
.on-paper .hours-table tr.today td { color: var(--red); }
.on-paper .hours-table tr.closed td:last-child { color: var(--ink-3); }
.addr { font-family: var(--display); font-size: 1.5rem; font-weight: 600; line-height: 1.25; }
.visit-notes { color: rgba(255, 255, 255, .7); font-size: .95rem; }
@media (max-width: 900px) { .visit { grid-template-columns: 1fr; } }

/* ---------- Page header (inner pages) ---------- */
.page-head { background: var(--board); color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.page-head::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(800px 400px at 10% 0%, rgba(242, 193, 78, .12), transparent 60%), radial-gradient(600px 400px at 100% 100%, rgba(181, 38, 30, .2), transparent 60%); }
.page-head .wrap { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; padding: clamp(44px, 6vw, 80px) 0 clamp(36px, 5vw, 60px); }
.page-head h1 { color: var(--butter); font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
.page-head .lead { color: rgba(255, 255, 255, .78); font-size: 1.15rem; max-width: 40rem; margin-top: 16px; }
.page-head .actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.page-head .plates { display: flex; }
.page-head .plates .plate { width: 118px; margin-left: -28px; }
.page-head .plates .plate:first-child { margin-left: 0; }
@media (max-width: 800px) { .page-head .wrap { grid-template-columns: 1fr; } .page-head .plates { order: -1; } .page-head .plates .plate { width: 84px; margin-left: -20px; } }

/* ---------- Menu pages ---------- */
.menu-nav { position: sticky; top: 76px; z-index: 40; background: var(--paper); border-bottom: 1px solid var(--line); }
.menu-nav .wrap { display: flex; gap: 6px; overflow-x: auto; padding: 10px 0; scrollbar-width: none; }
.menu-nav .wrap::-webkit-scrollbar { display: none; }
.menu-nav a { flex: none; padding: 9px 14px; border-radius: 999px; font-weight: 700; font-size: .9rem; text-decoration: none; color: var(--ink-2); border: 1px solid transparent; transition: background .15s, color .15s; }
.menu-nav a:hover { background: var(--paper-2); color: var(--ink); }
.menu-nav a.active { background: var(--board); color: var(--butter); }
.menu-section { padding: clamp(36px, 5vw, 64px) 0; scroll-margin-top: 140px; border-bottom: 1px solid var(--line); }
.menu-section:last-of-type { border-bottom: 0; }
.menu-section-head { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; align-items: start; margin-bottom: 26px; }
.menu-section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.menu-note { color: var(--ink-2); font-size: .98rem; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--butter); padding: 12px 16px; border-radius: 10px; }
.menu-note + .menu-note { margin-top: 8px; }
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 40px; }
.menu-item { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: start; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.menu-item .plate { width: 64px; box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--line), 0 12px 20px -10px rgba(42, 24, 16, .45); }
.menu-item.no-photo { grid-template-columns: 1fr auto; }
.menu-item h3 { font-size: 1.12rem; font-weight: 600; font-variation-settings: "opsz" 40; }
.menu-item p { color: var(--ink-2); font-size: .95rem; margin-top: 4px; }
.menu-item .price { font-weight: 700; color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; text-align: right; }
.menu-item .price.variants { display: grid; gap: 2px; }
.menu-item .price.variants span { display: flex; justify-content: flex-end; align-items: baseline; gap: 8px; }
.menu-item .price.variants small { font-weight: 600; color: var(--ink-3); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.menu-items.compact { grid-template-columns: repeat(3, 1fr); gap: 0 32px; }
.menu-items.compact .menu-item { padding: 10px 0; }
.menu-items.compact .menu-item h3 { font-size: 1rem; }
.menu-items.compact .menu-item { grid-template-columns: 1fr auto; }
.menu-items.compact .menu-item .plate { display: none; }
@media (max-width: 600px) { .menu-item .plate { width: 52px; } .menu-item { gap: 12px; } .menu-item .price { font-size: .95rem; } }
.stamp-note { color: rgba(255, 255, 255, .55); font-size: .85rem; margin-top: 18px; }
.menu-item.featured h3::after { content: "House favorite"; display: inline-block; margin-left: 10px; font-family: var(--body); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--red); background: rgba(181, 38, 30, .1); padding: 3px 8px; border-radius: 999px; vertical-align: middle; }
.addons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.addons span { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; font-size: .85rem; font-weight: 600; }
.menu-cta { background: var(--butter); color: var(--ink); border-radius: var(--radius); padding: 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.menu-cta h3 { font-size: 1.5rem; }
.menu-cta p { color: rgba(28, 21, 18, .7); }
.menu-switch { display: flex; gap: 10px; flex-wrap: wrap; }
.menu-switch a { display: inline-flex; flex-direction: column; padding: 14px 18px; border-radius: 14px; background: var(--white); border: 1px solid var(--line); text-decoration: none; min-width: 160px; transition: transform .2s var(--ease), box-shadow .2s; }
.menu-switch a:hover { transform: translateY(-2px); box-shadow: 0 20px 30px -20px rgba(42, 24, 16, .4); }
.menu-switch a b { font-family: var(--display); font-size: 1.15rem; }
.menu-switch a small { color: var(--ink-3); font-weight: 600; }
@media (max-width: 900px) { .menu-items, .menu-items.compact { grid-template-columns: 1fr; } .menu-section-head { grid-template-columns: 1fr; gap: 12px; } .menu-nav { top: 76px; } }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.gallery-filters button { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-weight: 700; font-size: .9rem; cursor: pointer; color: var(--ink-2); }
.gallery-filters button.active { background: var(--board); color: var(--butter); border-color: var(--board); }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 30px 22px; }
.gallery figure { margin: 0; text-align: center; cursor: zoom-in; }
.gallery figure.is-hidden { display: none; }
.gallery .plate { transition: transform .3s var(--ease); }
.gallery figure:hover .plate { transform: scale(1.04) rotate(-1.5deg); }
.gallery figcaption { margin-top: 12px; font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.gallery figcaption small { display: block; font-family: var(--body); color: var(--ink-3); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; margin-top: 2px; }
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(28, 21, 18, .94); display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 82vh; border-radius: 14px; box-shadow: 0 40px 80px -30px #000; }
.lightbox .cap { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: #fff; font-family: var(--display); font-size: 1.3rem; font-weight: 600; }
.lightbox button { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, .1); border: 0; color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
.lightbox button svg { width: 22px; height: 22px; }
.lightbox .prev { left: 16px; } .lightbox .next { right: 16px; }
.lightbox .close { top: 20px; right: 20px; transform: none; }
@media (max-width: 720px) { .lightbox .cap { bottom: 96px; font-size: 1.1rem; width: 90%; text-align: center; } }

/* ---------- About ---------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.timeline li { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline .year { font-family: var(--display); font-weight: 800; font-size: 1.7rem; color: var(--red); line-height: 1; font-variation-settings: "opsz" 72; }
.timeline h3 { font-size: 1.25rem; margin-bottom: 6px; }
.timeline p { color: var(--ink-2); }
@media (max-width: 600px) { .timeline li { grid-template-columns: 1fr; gap: 6px; } }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.value h3 { font-size: 1.4rem; margin-bottom: 10px; }
.value p { color: var(--ink-2); }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }
.logo-story { display: grid; grid-template-columns: 200px 1fr; gap: 30px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
@media (max-width: 640px) { .logo-story { grid-template-columns: 1fr; text-align: center; } .logo-story img { margin-inline: auto; } }

/* ---------- Forms ---------- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
label { font-weight: 700; font-size: .9rem; display: block; margin-bottom: 6px; }
input, select, textarea { width: 100%; font: inherit; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); transition: border-color .15s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); }
textarea { min-height: 120px; resize: vertical; }
.checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.checks label { display: flex; align-items: center; gap: 8px; font-weight: 600; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; margin: 0; cursor: pointer; }
.checks input { width: auto; }
.form-msg { display: none; padding: 16px 18px; border-radius: 12px; font-weight: 600; }
.form-msg.ok { display: block; background: #e8f5ee; color: #1f6b41; }
.form-msg.err { display: block; background: #fdecea; color: var(--red-2); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 36px); }

/* ---------- News ---------- */
.posts { display: grid; gap: 18px; }
.post { display: grid; grid-template-columns: 150px 1fr; gap: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.post time { font-weight: 700; color: var(--red); font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }
.post h3 { font-size: 1.4rem; margin-bottom: 8px; }
.post p { color: var(--ink-2); }
.post a { font-weight: 700; color: var(--red); }
@media (max-width: 640px) { .post { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); color: #fff; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: clamp(36px, 5vw, 60px) 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .8); margin-top: 8px; }
.cta-band .btn-red { background: #fff; color: var(--red); box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .5); }
.cta-band .btn-red:hover { background: var(--paper); }

/* ---------- Footer ---------- */
.site-footer { background: var(--board); color: rgba(255, 255, 255, .78); padding: clamp(44px, 6vw, 72px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-grid h4 { font-family: var(--body); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--butter); margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-grid a { text-decoration: none; color: rgba(255, 255, 255, .8); }
.footer-grid a:hover { color: #fff; text-decoration: underline; }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.footer-brand img { width: 54px; }
.footer-tag { color: rgba(255, 255, 255, .6); max-width: 30rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; color: rgba(255, 255, 255, .5); }
.footer-bottom a { color: inherit; }
.social { display: inline-flex; align-items: center; gap: 8px; }
.social svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Mobile order bar ---------- */
.order-bar { display: none; }
@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .order-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(42, 24, 16, .96); backdrop-filter: blur(10px); border-top: 1px solid rgba(255, 255, 255, .1); }
  .order-bar .btn { padding: 13px 10px; font-size: .95rem; }
}
