/* Tennessee Skewers: site styles
   Palette: charcoal + butcher paper, ember and brass accents. Mobile first. */

@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-display.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-display-italic.woff2') format('woff2');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('/fonts/manrope.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --char-950: #140f0c;
  --char-900: #1b1411;
  --char-800: #251c17;
  --char-700: #362920;
  --char-600: #4a392d;
  --wood: #3b2619;
  --ember: #a8431a;
  --ember-hover: #c2521d;
  --ember-hot: #f08a3c;
  --brass: #c9a063;
  --brass-soft: #e1c48f;
  --ivory: #f3e9d7;
  --ivory-2: #eadcc4;
  --ivory-3: #e0cfb2;
  --ink: #231a14;
  --ink-soft: #5a4a3d;
  --ink-muted: #6e5d4f;
  --muted: #b8aa98;
  --green: #2e5b45;
  --green-light: #6fae8a;
  --danger: #b3261e;
  --danger-light: #ff9a8a;
  --gold: #caa55e;
  --champagne: #e1cb99;
  --night: #120e0b;
  --night-2: #1c1a18;
  --cta: linear-gradient(135deg, #c4531a 0%, #d9621c 55%, #e0742c 100%);
  --orange-text: #b04a14;
  /* Logo lettering, matched to the trailer: TENNESSEE golden orange, SKEWERS red-orange */
  --logo-1-solid: #fa7f05;
  --logo-2-solid: #ef4a06;
  --logo-1: linear-gradient(180deg, #ffc24d 0%, #fb8c10 38%, #f46d02 68%, #e3560a 100%);
  --logo-2: linear-gradient(180deg, #ff7b2c 0%, #f5540b 42%, #e5420a 72%, #cc330c 100%);

  --font-display: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --header-h: 64px;
  --tabs-h: 52px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --max: 1240px;
  --radius-sm: 3px;
  --radius: 10px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --shadow-lift: 0 18px 40px -18px rgba(20, 10, 4, 0.55);

  color-scheme: light dark;
}

@media (min-width: 900px) {
  :root { --header-h: 76px; }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--tabs-h) + 12px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ivory);
  background: var(--char-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.12; text-wrap: balance; }
p { margin: 0; }
ul[role='list'], ol[role='list'] { list-style: none; margin: 0; padding: 0; }
dl, dd, figure { margin: 0; }
address { font-style: normal; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--ember-hot);
  outline-offset: 3px;
  border-radius: 4px;
}
.paper :focus-visible { outline-color: var(--ember); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--ivory); color: var(--ink);
  padding: 0.7rem 1rem; border-radius: var(--radius-sm); font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 760px; }

/* Butcher-paper surfaces */
.paper {
  color: var(--ink);
  background-color: var(--ivory);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.35), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .45 0 0 0 0 .33 0 0 0 0 .2 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  --btn-border: currentColor;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 48px; padding: 0.7rem 1.35rem;
  border: 1.5px solid var(--btn-border); border-radius: var(--radius-sm);
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; line-height: 1.1;
  transition: transform 0.18s var(--ease), background-color 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn[disabled], .btn[aria-disabled='true'] { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-ember { --btn-fg: #fff; --btn-border: transparent; background: var(--cta); letter-spacing: 0.16em; box-shadow: 0 12px 30px -12px rgba(224, 116, 44, 0.75); }
.btn-ember:hover:not([disabled]) { filter: brightness(1.07); box-shadow: 0 16px 36px -12px rgba(224, 116, 44, 0.9); }
.btn-ghost { --btn-fg: var(--ivory); --btn-border: rgba(243, 233, 215, 0.45); }
.btn-ghost:hover { --btn-border: var(--ivory); --btn-bg: rgba(243, 233, 215, 0.06); }
.btn-ink { --btn-bg: var(--ink); --btn-fg: var(--ivory); --btn-border: var(--ink); }
.btn-ink:hover { --btn-bg: #3a2c22; }
.btn-ghost-ink { --btn-fg: var(--ink); --btn-border: rgba(35, 26, 20, 0.35); }
.btn-ghost-ink:hover { --btn-border: var(--ink); }
.btn-sm { min-height: 42px; padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-lg { min-height: 54px; padding: 0.85rem 1.7rem; font-size: 0.95rem; }
.btn-block { width: 100%; }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid transparent; background: transparent; color: inherit;
  transition: background-color 0.15s;
}
.icon-btn:hover { background: rgba(127, 110, 90, 0.16); }

.spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid currentColor; border-right-color: transparent;
  display: none; animation: spin 0.7s linear infinite;
}
.spinner-lg { display: inline-block; width: 40px; height: 40px; border-width: 3px; color: var(--ember); }
.is-loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Promo bar ---------- */
.promo {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 0.55rem 3rem 0.55rem var(--gutter);
  background: linear-gradient(90deg, var(--wood), #5a311b 50%, var(--wood));
  color: var(--ivory); font-size: 0.9rem; text-align: center;
  border-bottom: 1px solid rgba(201, 160, 99, 0.35);
}
.promo-text strong { font-weight: 700; color: var(--brass-soft); }
.promo-text span { color: rgba(243, 233, 215, 0.88); }
.promo-link { margin-left: 0.5rem; font-weight: 700; white-space: nowrap; }
.promo-close { position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; display: grid; place-items: center; border: 0; background: transparent; border-radius: 50%; }
.promo-close .icon { width: 18px; height: 18px; }
.promo-close:hover { background: rgba(255, 255, 255, 0.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(18, 14, 11, 0.96);
  border-bottom: 1px solid rgba(243, 233, 215, 0.06);
  color: var(--ivory);
}
@supports (backdrop-filter: blur(10px)) {
  .site-header { background: rgba(18, 14, 11, 0.86); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); }
}
.header-inner {
  height: 100%; max-width: 1400px; margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 1rem;
}

.lockup { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: inherit; min-width: 0; }
.brand-mark { width: 46px; height: auto; color: var(--brass); flex: none; }
.lockup-text { display: flex; flex-direction: column; min-width: 0; }
.lockup-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; line-height: 1;
  text-transform: uppercase; letter-spacing: 0.04em; font-variation-settings: 'opsz' 72; white-space: nowrap;
}
.lockup-tag {
  margin-top: 0.3rem; font-family: var(--font-display); font-style: italic; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
}
.name-1 { color: var(--logo-1-solid); }
.name-2 { color: var(--logo-2-solid); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .name-1, .name-2 { -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
  .name-1 { background-image: var(--logo-1); }
  .name-2 { background-image: var(--logo-2); }
}
.lockup-lg .brand-mark { width: 64px; }
.lockup-lg .lockup-name { font-size: 1.5rem; }
.lockup-lg .lockup-tag { font-size: 0.66rem; }
@media (max-width: 400px) {
  .lockup-lg .brand-mark { width: 48px; }
  .lockup-lg .lockup-name { font-size: 1.22rem; }
  .lockup-lg .lockup-tag { font-size: 0.58rem; letter-spacing: 0.2em; }
}

.primary-nav { display: none; margin-left: auto; }
.primary-nav ul { display: flex; gap: 0.25rem; }
.primary-nav a {
  display: block; padding: 0.55rem 0.95rem;
  text-decoration: none; font-weight: 600; font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(243, 233, 215, 0.72);
}
.primary-nav a:hover { color: var(--ivory); }
.primary-nav a[aria-current] { color: var(--gold); }
.mobile-nav li a[aria-current] { color: var(--gold); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 0.35rem; }
.header-order { display: none; }
.header-order.btn { min-height: 48px; padding: 0.8rem 1.6rem; font-size: 0.8rem; }
.cart-button, .nav-toggle {
  position: relative; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%; border: 0; background: transparent; color: var(--ivory);
}
.cart-button { border: 1px solid rgba(243, 233, 215, 0.22); }
.cart-button:hover, .nav-toggle:hover { background: rgba(243, 233, 215, 0.08); }
.cart-count {
  position: absolute; top: 3px; right: 1px;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px;
  background: var(--ember); color: #fff; font-size: 0.72rem; font-weight: 800; line-height: 20px; text-align: center;
}
.cart-button.bump { animation: bump 0.45s var(--ease); }
@keyframes bump { 30% { transform: scale(1.18); } 60% { transform: scale(0.94); } }

.header-back { margin-left: auto; display: inline-flex; align-items: center; gap: 0.4rem; min-height: 44px; font-weight: 600; text-decoration: none; color: rgba(243, 233, 215, 0.88); }
.header-back:hover { color: var(--ivory); }
.header-back { flex: none; white-space: nowrap; }
@media (max-width: 479px) {
  .back-long { display: none; }
  .header-back > span { text-transform: capitalize; }
}

@media (min-width: 1040px) {
  .primary-nav { display: block; }
  .header-actions { margin-left: 0.75rem; }
  .header-order { display: inline-flex; }
  .nav-toggle { display: none; }
}
@media (max-width: 429px) {
  .site-header .lockup-name { font-size: 1rem; letter-spacing: 0.02em; }
  .site-header .lockup-tag { font-size: 0.52rem; letter-spacing: 0.2em; }
  .site-header .brand-mark { width: 40px; }
}
@media (max-width: 380px) {
  .lockup-tag { letter-spacing: 0.16em; }
  .brand-mark { width: 36px; }
  .site-header .lockup-name { font-size: 0.92rem; }
}

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 49;
  background: var(--char-950); color: var(--ivory);
  overflow-y: auto; padding: 1.5rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  animation: fadeIn 0.2s var(--ease);
}
.mobile-nav ul { margin-bottom: 1.5rem; }
.mobile-nav li a {
  display: block; padding: 0.9rem 0; border-bottom: 1px solid rgba(201, 160, 99, 0.16);
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; text-decoration: none;
}
.mobile-nav-meta { margin-top: 1.75rem; display: grid; gap: 1rem; color: var(--muted); }
.mobile-nav-meta > a { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; min-height: 44px; }
@keyframes fadeIn { from { opacity: 0; } }

.social-links { display: flex; gap: 0.35rem; }
.social-links a {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(201, 160, 99, 0.35); color: var(--brass); text-decoration: none;
  transition: background-color 0.18s, color 0.18s, border-color 0.18s;
}
.social-links a:hover { background: var(--brass); color: var(--char-900); border-color: var(--brass); }
.paper .social-links a { border-color: rgba(35, 26, 20, 0.28); color: var(--ink); }
.paper .social-links a:hover { background: var(--ink); color: var(--ivory); }

/* ---------- Section scaffolding ---------- */
.section-head { display: grid; gap: 0.75rem; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); max-width: 46rem; }
.section-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.15rem, 6vw, 3.6rem); letter-spacing: -0.015em; line-height: 1.02;
  font-variation-settings: 'opsz' 144;
}
.section-lede { font-size: 1.07rem; color: var(--muted); max-width: 40rem; }
.paper .section-lede { color: var(--ink-soft); }
.menu, .story, .gallery, .reviews, .location, .social, .contact { padding-block: clamp(3.5rem, 9vw, 7rem); }

.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: flex-start;
  background: var(--char-950); color: var(--ivory);
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-art { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 52%; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.embers { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 15, 12, 0.96) 0%, rgba(20, 15, 12, 0.88) 40%, rgba(20, 15, 12, 0.25) 64%, rgba(20, 15, 12, 0) 80%),
    linear-gradient(0deg, rgba(20, 15, 12, 0.5), transparent 22%);
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -10%; height: 45%; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 70% at 70% 100%, rgba(240, 120, 40, 0.35), transparent 70%);
  animation: breathe 5s ease-in-out infinite alternate;
}
.hero.has-photo .hero-scrim { background: linear-gradient(180deg, rgba(20, 15, 12, 0.9) 0%, rgba(20, 15, 12, 0.72) 50%, rgba(20, 15, 12, 0.45) 100%); }
@keyframes breathe { from { opacity: 0.55; } to { opacity: 1; } }

.hero-inner {
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding: clamp(2.25rem, 7vh, 4rem) var(--gutter) 46svh;
}
.hero-lockup { display: grid; justify-items: start; gap: 0; margin-bottom: 1.6rem; font-weight: inherit; }
.hero-name {
  display: flex; flex-direction: column;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.8rem, 15vw, 7rem); line-height: 0.86; letter-spacing: -0.012em;
  font-variation-settings: 'opsz' 144;
  /* Dark offset + soft glow echo the beveled lettering on the trailer */
  filter: drop-shadow(0 3px 0 rgba(70, 22, 0, 0.65)) drop-shadow(0 14px 30px rgba(0, 0, 0, 0.5));
}
.hero-rule {
  position: relative; display: block; width: min(calc(100% - 30px), 22rem); height: 2px; margin: 1.05rem 0 0.8rem 14px;
  background: linear-gradient(90deg, var(--brass), var(--brass-soft));
}
.hero-rule::before {
  content: ''; position: absolute; left: -16px; top: 50%; width: 12px; height: 12px; margin-top: -6px;
  border: 2px solid var(--brass); border-radius: 50%;
}
.hero-rule::after {
  content: ''; position: absolute; right: -14px; top: 50%; width: 16px; height: 10px; margin-top: -5px;
  background: var(--brass-soft); clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.hero-tag {
  font-family: var(--font-body); font-size: clamp(0.72rem, 2.6vw, 0.95rem); font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--brass);
}
.hero-headline {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.45rem, 4.4vw, 2.3rem); line-height: 1.18; max-width: 22ch; margin-bottom: 0.9rem;
}
.hero-sub { color: rgba(243, 233, 215, 0.8); max-width: 34rem; margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-ctas .btn { flex: 1 1 11rem; }
.hero-status { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem 1rem; font-size: 0.95rem; color: rgba(243, 233, 215, 0.85); }
.hero-status-place { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--muted); }
.hero-status-place .icon { width: 18px; height: 18px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); box-shadow: 0 0 0 4px rgba(184, 170, 152, 0.16); flex: none; }
.is-open .status-dot { background: #7fd49b; box-shadow: 0 0 0 4px rgba(127, 212, 155, 0.18); }
.is-closed .status-dot { background: #e0856b; box-shadow: 0 0 0 4px rgba(224, 133, 107, 0.16); }

@media (min-width: 760px) {
  .hero { align-items: center; }
  .hero-art { height: 100%; }
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(20, 15, 12, 0.96) 0%, rgba(20, 15, 12, 0.84) 34%, rgba(20, 15, 12, 0.2) 62%, rgba(20, 15, 12, 0) 78%),
      linear-gradient(0deg, rgba(20, 15, 12, 0.45), transparent 25%);
  }
  .hero-inner { padding-block: clamp(3rem, 9vh, 6rem); }
  .hero-ctas .btn { flex: 0 0 auto; }
}

/* ---------- Menu (dark intro, category tabs, photo cards) ---------- */
.menu { padding: 0; scroll-margin-top: var(--header-h); }
.menu-intro, .page-intro { background: var(--night); color: var(--ivory); padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(2.75rem, 6vw, 4rem); }
.eyebrow-dark { color: var(--orange-text) !important; }
.eyebrow { margin-bottom: 1.1rem; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.menu-headline, .page-title { display: grid; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 7.5vw, 5.4rem); line-height: 1.02; letter-spacing: -0.02em; color: #f3ede4; }
.menu-headline em, .page-title em, .teaser-title em { font-style: italic; font-weight: 500; color: var(--champagne); }
.menu-lede, .page-lede { margin-top: 1.4rem; max-width: 36rem; font-size: 1.1rem; color: #aaa39a; }
.promo-pill { display: inline-block; margin-top: 1.8rem; padding: 0.65rem 1rem; border: 1px solid rgba(202, 165, 94, 0.65); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

.menu-tabs { position: sticky; top: var(--header-h); z-index: 40; background: var(--night-2); border-bottom: 1px solid rgba(243, 233, 215, 0.06); }
.menu-tabs ul {
  display: flex; gap: 0.25rem; height: var(--tabs-h); align-items: stretch;
  overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
  mask-image: linear-gradient(90deg, #000 88%, transparent);
}
.menu-tabs ul::-webkit-scrollbar { display: none; }
.menu-tabs ul.wrap[role='list'] { margin-inline: auto; padding-inline: calc(var(--gutter) - 1rem); }
.menu-tabs li { display: flex; }
.menu-tabs a {
  display: inline-flex; align-items: center; padding: 0 1rem; white-space: nowrap; text-decoration: none;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #aaa39a;
  border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.menu-tabs a:hover { color: var(--ivory); }
.menu-tabs a[aria-current='true'] { color: var(--gold); border-bottom-color: var(--gold); }
.menu-tabs :focus-visible { outline-offset: -3px; }

.menu-body { padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(3.5rem, 8vw, 6rem); }
.menu-cat { scroll-margin-top: calc(var(--header-h) + var(--tabs-h) + 16px); }
.menu-cat + .menu-cat { margin-top: clamp(3rem, 7vw, 4.75rem); }
.menu-cat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding-bottom: 1.2rem; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); border-bottom: 1px solid rgba(35, 26, 20, 0.15); }
.menu-cat-head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.6vw, 2.8rem); letter-spacing: -0.02em; line-height: 1.05; }
.menu-cat-head p { margin-top: 0.45rem; color: var(--ink-soft); }
.menu-cat-count { flex: none; padding-bottom: 0.35rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-muted); }

.menu-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
@media (min-width: 600px) { .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; } }

.mcard {
  display: flex; flex-direction: column; overflow: hidden; min-width: 0;
  background: #fcfaf4; border: 1px solid rgba(35, 26, 20, 0.1); border-radius: 4px;
  box-shadow: 0 1px 2px rgba(35, 26, 20, 0.05), 0 22px 40px -30px rgba(35, 26, 20, 0.55);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.mcard:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(35, 26, 20, 0.06), 0 30px 50px -30px rgba(35, 26, 20, 0.6); }
.mcard-media { position: relative; display: block; width: 100%; aspect-ratio: 4 / 3; padding: 0; border: 0; overflow: hidden; background: var(--char-900); }
.mcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.mcard:hover .mcard-media img { transform: scale(1.05); }
.mcard-media::after { content: ''; position: absolute; inset: auto 0 0 0; height: 45%; background: linear-gradient(0deg, rgba(10, 6, 4, 0.6), transparent); pointer-events: none; }
.mcard-badge { position: absolute; z-index: 1; top: 0.9rem; left: 0.9rem; padding: 0.32rem 0.6rem; border-radius: 2px; background: var(--gold); color: #1a130e; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.mcard-price { position: absolute; z-index: 1; right: 1rem; bottom: 0.7rem; font-family: var(--font-display); font-weight: 800; font-size: 1.75rem; color: #fff; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55); font-variant-numeric: lining-nums; }
.mcard-soldout { position: absolute; z-index: 1; inset: 0; display: grid; place-items: center; background: rgba(12, 8, 6, 0.5); color: #fff; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; }
.mcard.is-sold-out .mcard-media img { filter: grayscale(0.8) brightness(0.75); }
.mcard-body { display: flex; flex-direction: column; flex: 1; padding: 1.3rem 1.3rem 1.1rem; }
.mcard-title { font-weight: inherit; }
.mcard-name { padding: 0; border: 0; background: none; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1.2; color: var(--ink); }
.mcard-name:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
.mcard-desc { margin-top: 0.5rem; font-size: 0.95rem; line-height: 1.55; color: var(--ink-soft); }
.mcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1.1rem; }
.mcard-customize { min-height: 44px; padding: 0; border: 0; background: none; color: var(--orange-text); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; }
.mcard-customize:hover:not(:disabled) { text-decoration: underline; text-underline-offset: 0.3em; }
.mcard-add { display: grid; place-items: center; flex: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: #15110e; color: #fff; transition: background-color 0.2s, transform 0.2s var(--ease); }
.mcard-add:hover:not(:disabled) { background: #c4531a; transform: scale(1.06); }
.mcard-customize:disabled, .mcard-add:disabled { opacity: 0.35; cursor: not-allowed; }
.menu-note { margin-top: 3rem; font-size: 0.9rem; color: var(--ink-muted); max-width: 44rem; }

/* ---------- Page intros and home page blocks ---------- */
.page-title { font-size: clamp(2.5rem, 7vw, 4.8rem); }
.page-intro + section { padding-top: clamp(3rem, 7vw, 5rem); }
.teaser-title { display: grid; }
.teaser-title em { font-weight: 500; }

.featured { padding-block: clamp(3.5rem, 8vw, 6rem); }
.featured-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.25rem; margin-bottom: clamp(1.75rem, 4vw, 2.5rem); }
.featured-head .section-title { font-weight: 800; }

.story-teaser .story-copy .btn { margin-top: 1.5rem; }
.story-teaser .story-figure img { aspect-ratio: 4 / 3; }

.visit { padding-block: clamp(3.5rem, 8vw, 6rem); background: var(--night); color: var(--ivory); }
.visit-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .visit-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 4rem; } }
.visit .teaser-title { margin-bottom: 1.25rem; }
.visit .open-status { margin-bottom: 0.9rem; }
.visit .info-line { color: rgba(243, 233, 215, 0.85); }
.visit .info-line .icon { color: var(--gold); }
.visit .info-ctas { margin-top: 1.5rem; }
.visit .info-ctas .btn { flex: 0 1 auto; }
.visit-hours { display: grid; gap: 0; padding: 1.5rem 1.6rem; border: 1px solid rgba(202, 165, 94, 0.35); font-variant-numeric: tabular-nums; }
.visit-hours > div { display: flex; justify-content: space-between; gap: 1.5rem; padding-block: 0.85rem; border-bottom: 1px solid rgba(243, 233, 215, 0.08); }
.visit-hours > div:last-child { border-bottom: 0; }
.visit-hours dt { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.visit-hours dd { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; white-space: nowrap; }

.contact-h { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; }

/* ---------- Item dialog ---------- */
dialog { padding: 0; border: 0; color: inherit; background: transparent; max-width: none; max-height: none; }
dialog::backdrop { background: rgba(12, 8, 6, 0.66); }
.item-dialog { width: 100%; height: 100%; margin: 0; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.item-dialog:not([open]) { display: none; }
.item-form {
  width: 100%; max-height: calc(100% - 2rem); display: flex; flex-direction: column;
  background: var(--ivory); color: var(--ink);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden;
  box-shadow: 0 -20px 60px -20px rgba(0, 0, 0, 0.6);
  animation: sheetUp 0.32s var(--ease);
}
@keyframes sheetUp { from { transform: translateY(40px); opacity: 0; } }
@media (min-width: 700px) {
  .item-dialog { align-items: center; padding: 2rem; }
  .item-form { max-width: 600px; max-height: min(92vh, 900px); border-radius: var(--radius-lg); animation-name: popIn; }
}
@keyframes popIn { from { transform: translateY(12px) scale(0.98); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .item-form, .drawer-panel { animation: none !important; } }

.item-scroll { overflow-y: auto; overscroll-behavior: contain; flex: 1; }
.item-media { position: relative; aspect-ratio: 16 / 9; background: var(--char-800); }
.item-media img { width: 100%; height: 100%; object-fit: cover; }
.item-close {
  position: absolute; top: 0.75rem; right: 0.75rem; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; border: 0; background: rgba(20, 15, 12, 0.72); color: var(--ivory);
}
.item-close:hover { background: rgba(20, 15, 12, 0.9); }
.item-info { padding: 1.25rem 1.25rem 0.5rem; }
.item-info h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; margin-bottom: 0.4rem; }
.item-price { font-weight: 800; color: var(--ember); margin-bottom: 0.5rem; }
.item-desc { color: var(--ink-soft); }
.opt-group { margin: 1.25rem 1.25rem 0; padding: 0; border: 0; min-width: 0; }
.opt-group legend { display: flex; width: 100%; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0 0 0.6rem; font-weight: 800; font-size: 1.02rem; }
.opt-rule { font-size: 0.8rem; font-weight: 700; color: var(--ink-muted); white-space: nowrap; }
.opt-rule.is-required { color: var(--ember); }
.opt-group.has-error .opt-rule { color: var(--danger); }
.opt {
  display: flex; align-items: center; gap: 0.8rem; min-height: 52px; padding: 0.6rem 0.85rem;
  border: 1px solid rgba(35, 26, 20, 0.16); border-radius: var(--radius); background: rgba(255, 252, 245, 0.7);
  cursor: pointer; transition: border-color 0.15s, background-color 0.15s;
}
.opt + .opt { margin-top: 0.45rem; }
.opt:hover { border-color: rgba(35, 26, 20, 0.4); }
.opt input { width: 20px; height: 20px; accent-color: var(--ember); flex: none; margin: 0; }
.opt:has(input:checked) { border-color: var(--ember); background: #fff8ee; box-shadow: inset 0 0 0 1px var(--ember); }
.opt:has(input:disabled) { opacity: 0.55; cursor: not-allowed; }
.opt-name { flex: 1; }
.opt-price { font-weight: 700; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.opt-error { margin-top: 0.4rem; color: var(--danger); font-size: 0.9rem; font-weight: 600; }
.item-note { margin: 1.25rem; }
.item-note label { display: block; font-weight: 800; margin-bottom: 0.4rem; }
.item-foot {
  display: flex; gap: 0.75rem; align-items: center;
  padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(35, 26, 20, 0.12); background: var(--ivory-2);
}
.item-foot .btn { flex: 1; justify-content: space-between; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid rgba(35, 26, 20, 0.3); border-radius: var(--radius-sm); background: #fffaf2; flex: none; }
.qty button { width: 44px; height: 46px; display: grid; place-items: center; border: 0; background: transparent; color: var(--ink); }
.qty button:disabled { opacity: 0.35; cursor: not-allowed; }
.qty output, .qty span { min-width: 2ch; text-align: center; font-weight: 800; font-variant-numeric: tabular-nums; }
.qty-sm button { width: 40px; height: 40px; }

/* ---------- Cart drawer ---------- */
.drawer { width: 100%; height: 100%; margin: 0; display: flex; justify-content: flex-end; }
.drawer:not([open]) { display: none; }
.drawer-panel {
  width: 100%; max-width: 460px; height: 100%; display: flex; flex-direction: column;
  background: var(--ivory); color: var(--ink);
  animation: slideIn 0.3s var(--ease);
}
@keyframes slideIn { from { transform: translateX(40px); opacity: 0.2; } }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0.9rem 0.9rem 1.25rem; border-bottom: 1px solid rgba(35, 26, 20, 0.12); }
.drawer-head h2 { font-family: var(--font-display); font-size: 1.6rem; }
.drawer-body { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 0.5rem 1.25rem; }
.drawer-foot { padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom)); border-top: 1px solid rgba(35, 26, 20, 0.12); background: var(--ivory-2); }
.drawer-foot .btn { margin-top: 1rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; display: grid; gap: 1rem; justify-items: center; color: var(--ink-soft); }
.cart-empty h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.cart-line { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 0.85rem; padding-block: 1rem; border-bottom: 1px solid rgba(35, 26, 20, 0.1); }
.cart-line img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; background: var(--char-800); }
.cart-line-top { display: flex; justify-content: space-between; gap: 0.75rem; align-items: baseline; }
.cart-line-name { font-weight: 800; }
.cart-line-price { font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.cart-line-opts, .cart-line-note { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.15rem; }
.cart-line-note { font-style: italic; }
.cart-line-issue { font-size: 0.88rem; color: var(--danger); font-weight: 700; margin-top: 0.25rem; }
.cart-line-actions { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.6rem; flex-wrap: wrap; }
.link-btn { border: 0; background: none; padding: 0.5rem 0.4rem; min-height: 40px; font-weight: 700; font-size: 0.88rem; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 0.2em; }
.link-btn:hover { color: var(--ink); }
.link-btn.danger:hover { color: var(--danger); }

.totals { display: grid; gap: 0.35rem; font-variant-numeric: tabular-nums; }
.totals > div { display: flex; justify-content: space-between; gap: 1rem; }
.totals dt { color: var(--ink-soft); }
.totals dd { font-weight: 700; }
.totals .grand { margin-top: 0.35rem; padding-top: 0.6rem; border-top: 1px solid rgba(35, 26, 20, 0.18); font-size: 1.15rem; }
.totals .grand dt { color: var(--ink); font-weight: 800; }
.totals .grand dd { font-weight: 800; }
.totals-note { font-size: 0.84rem; color: var(--ink-muted); margin-top: 0.5rem; }

/* ---------- Mobile cart bar + toasts ---------- */
.cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(20, 15, 12, 0), rgba(20, 15, 12, 0.85) 40%);
  animation: fadeUp 0.3s var(--ease);
}
@keyframes fadeUp { from { transform: translateY(16px); opacity: 0; } }
.cart-bar-btn {
  width: 100%; min-height: 56px; display: flex; align-items: center; gap: 0.75rem; padding: 0 1.1rem;
  border: 0; border-radius: var(--radius); background: var(--ember); color: #fbf4e8;
  font-weight: 800; box-shadow: 0 16px 34px -16px rgba(240, 138, 60, 0.95);
}
.cart-bar-count { padding: 0.15rem 0.55rem; border-radius: 999px; background: rgba(0, 0, 0, 0.22); font-size: 0.85rem; }
.cart-bar-label { flex: 1; text-align: left; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.9rem; }
.cart-bar-total { font-variant-numeric: tabular-nums; }
@media (min-width: 1040px) { .cart-bar { display: none !important; } }
body.has-cart-bar { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
@media (min-width: 1040px) { body.has-cart-bar { padding-bottom: 0; } }

.toast-region { position: fixed; z-index: 2000; left: 50%; bottom: calc(96px + env(safe-area-inset-bottom)); transform: translateX(-50%); width: min(92vw, 420px); display: grid; gap: 0.5rem; pointer-events: none; }
@media (min-width: 1040px) { .toast-region { bottom: 2rem; } }
.toast {
  pointer-events: auto; display: flex; align-items: center; gap: 0.75rem; padding: 0.8rem 0.9rem 0.8rem 1.1rem;
  border-radius: var(--radius); background: var(--char-800); color: var(--ivory);
  border: 1px solid rgba(201, 160, 99, 0.3); box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.7);
  animation: fadeUp 0.25s var(--ease);
}
.toast.is-error { border-color: var(--danger-light); }
.toast p { flex: 1; font-size: 0.95rem; }
.toast button { border: 0; background: none; color: var(--brass-soft); font-weight: 800; min-height: 40px; padding: 0 0.5rem; text-decoration: underline; }
.toast.is-leaving { opacity: 0; transform: translateY(8px); transition: opacity 0.2s, transform 0.2s; }

/* ---------- Story ---------- */
.story {
  background:
    radial-gradient(80% 60% at 0% 100%, rgba(168, 67, 26, 0.18), transparent 60%),
    linear-gradient(180deg, var(--char-900), #22170f);
}
.story-grid { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 960px) { .story-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); } }
.story-figure { position: relative; }
.story-figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8); }
.story-figure figcaption { margin-top: 0.75rem; font-size: 0.88rem; color: var(--muted); }
.story-copy .section-title { margin-bottom: 1.25rem; }
.story-lead { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.65rem); line-height: 1.35; margin-bottom: 1rem; color: #f7eddc; }
.story-copy > p { color: rgba(243, 233, 215, 0.82); max-width: 36rem; }
.pillars { display: grid; gap: 1.1rem; margin: 2rem 0; }
.pillars > div { display: grid; grid-template-columns: 6.5rem 1fr; gap: 1rem; padding-top: 1.1rem; border-top: 1px solid rgba(201, 160, 99, 0.25); }
.pillars dt { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--brass-soft); }
.pillars dd { color: rgba(243, 233, 215, 0.8); font-size: 0.98rem; }
.two-flags { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.25rem; border-top: 1px solid rgba(201, 160, 99, 0.25); font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--ivory); }
.flags { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--brass); }
.flag { width: 30px; height: 21px; border-radius: 2px; opacity: 0.92; box-shadow: 0 0 0 1px rgba(201, 160, 99, 0.35); }
.flag-skewer { width: 40px; height: 8px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--char-950); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 42vw; gap: 0.6rem; }
.gallery-cell { min-width: 0; }
.gallery-cell.g0, .gallery-cell.g4 { grid-column: span 2; }
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 15rem; gap: 0.8rem; }
  .gallery-cell.g0 { grid-column: span 2; grid-row: span 2; }
  .gallery-cell.g4 { grid-column: span 2; }
  .gallery-cell.g7 { grid-row: span 2; }
}
.gallery-btn { display: block; width: 100%; height: 100%; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden; background: var(--char-800); position: relative; }
.gallery-btn img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.4s; }
.gallery-btn:hover img, .gallery-btn:focus-visible img { transform: scale(1.05); filter: brightness(1.08); }

.lightbox { width: 100%; height: 100%; margin: 0; background: rgba(10, 7, 5, 0.94); color: var(--ivory); }
.lightbox::backdrop { background: rgba(10, 7, 5, 0.9); }
.lightbox-inner { position: relative; width: 100%; height: 100%; display: grid; place-items: center; padding: 4rem 0.5rem; }
.lightbox figure { max-width: min(1200px, 100%); display: grid; gap: 0.75rem; justify-items: center; }
.lightbox img { max-height: calc(100vh - 10rem); width: auto; max-width: 100%; border-radius: var(--radius); animation: fadeIn 0.25s var(--ease); }
.lightbox figcaption { color: var(--muted); text-align: center; }
.lightbox-close { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(255, 255, 255, 0.08); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.08); }
.lightbox-nav.prev { left: 0.5rem; }
.lightbox-nav.next { right: 0.5rem; }
@media (max-width: 699px) { .lightbox-nav { top: auto; bottom: 1rem; transform: none; } .lightbox-nav.prev { left: calc(50% - 56px); } .lightbox-nav.next { right: calc(50% - 56px); } }

/* ---------- Reviews ---------- */
.reviews-head { max-width: none; display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.25rem; }
.rating-summary { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.75rem; font-weight: 700; color: var(--ink-soft); }
.stars, .review-stars { display: inline-flex; gap: 2px; color: #b8862f; }
.star-empty { color: rgba(35, 26, 20, 0.2); }
.review-list { display: grid; gap: 1rem; }
@media (min-width: 760px) { .review-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .review-list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.review figure {
  height: 100%; display: flex; flex-direction: column; gap: 1rem;
  padding: 1.6rem 1.5rem 1.4rem; border-radius: 4px var(--radius-lg) var(--radius-lg) var(--radius-lg);
  background: #fbf6ec; border-top: 3px solid var(--brass);
  box-shadow: 0 1px 0 rgba(35, 26, 20, 0.06), 0 22px 40px -32px rgba(35, 26, 20, 0.6);
}
.review blockquote { margin: 0; flex: 1; }
.review blockquote p { font-family: var(--font-display); font-style: italic; font-size: 1.16rem; line-height: 1.45; color: var(--ink); }
.review figcaption { display: flex; flex-direction: column; font-weight: 800; }
.review figcaption a { text-decoration: none; }
.review-source { font-weight: 600; font-size: 0.86rem; color: var(--ink-muted); }
.review-attrib { margin-top: 1rem; font-size: 0.85rem; color: var(--ink-muted); }

/* ---------- Location ---------- */
.location { background: var(--char-900); }
.location-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
.location-info, .info-block { min-width: 0; }
@media (min-width: 960px) { .location-grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 2.5rem; } }
.map-frame { position: relative; min-height: 320px; border-radius: var(--radius-lg); overflow: hidden; background: var(--char-800); border: 1px solid rgba(201, 160, 99, 0.2); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.25) contrast(1.02); }
@media (min-width: 960px) { .map-frame { min-height: 100%; } }
.location-info { display: grid; gap: 1.25rem; }
.info-block { padding: 1.4rem; border-radius: var(--radius-lg); background: var(--char-800); border: 1px solid rgba(201, 160, 99, 0.14); }
.info-block h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.8rem; }
.open-status { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; margin-bottom: 0.9rem; }
.info-line { display: flex; gap: 0.65rem; align-items: flex-start; margin-bottom: 0.6rem; color: rgba(243, 233, 215, 0.88); }
.info-line .icon { color: var(--brass); flex: none; margin-top: 0.2rem; }
.info-line a { text-decoration: none; }
.info-line a:hover { text-decoration: underline; }
.info-ctas { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }
.info-ctas .btn { flex: 1 1 10rem; }
.hours-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours-table th, .hours-table td { padding: 0.55rem 0; border-bottom: 1px solid rgba(201, 160, 99, 0.12); text-align: left; font-weight: 500; }
.hours-table td { text-align: right; color: rgba(243, 233, 215, 0.85); padding-left: 1rem; }
@media (min-width: 360px) { .hours-table td { white-space: nowrap; } }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table .is-today th, .hours-table .is-today td { color: var(--ivory); font-weight: 800; }
.today-tag { display: inline-block; margin-left: 0.5rem; padding: 0.1rem 0.45rem; border-radius: 999px; background: var(--ember); color: #fbf4e8; font-size: 0.7rem; font-weight: 800; vertical-align: 0.1em; }

.stops { margin-top: 2.5rem; }
.stops-title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.1rem); margin-bottom: 1rem; }
.stop-list { display: grid; gap: 0.75rem; }
@media (min-width: 900px) { .stop-list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.stop { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1rem; padding: 1.1rem; border-radius: var(--radius-lg); background: var(--char-800); border: 1px solid rgba(201, 160, 99, 0.14); }
.stop-date { display: grid; place-items: center; align-content: center; width: 4.4rem; height: 4.4rem; border-radius: var(--radius); background: var(--char-950); border: 1px solid rgba(201, 160, 99, 0.3); font-weight: 800; font-size: 0.95rem; line-height: 1.2; text-align: center; }
.stop-date span { color: var(--brass); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.stop-name { font-weight: 800; font-size: 1.05rem; }
.stop-meta { color: rgba(243, 233, 215, 0.78); font-size: 0.92rem; }
.stop-notes { margin-top: 0.3rem; font-size: 0.88rem; color: var(--brass-soft); }
.stop-link { grid-column: 1 / -1; display: inline-flex; align-items: center; gap: 0.35rem; min-height: 40px; font-weight: 700; color: var(--brass-soft); text-decoration: none; justify-self: start; }
.stop-link:hover { text-decoration: underline; }

/* ---------- Social ---------- */
.social { background-color: var(--ivory-2); }
.social-head { max-width: none; display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.25rem; }
.social-head .section-lede a { color: var(--ember); font-weight: 700; }
.social-links-lg a { width: 52px; height: 52px; }
.social-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.5rem; }
@media (min-width: 900px) { .social-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.75rem; } }
.social-grid a { display: block; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: var(--char-800); }
.social-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.social-grid a:hover img { transform: scale(1.06); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.35rem; min-width: 0; }
.field label { font-weight: 700; font-size: 0.95rem; }
.optional { font-weight: 500; color: var(--muted); }
.paper .optional, .contact .optional { color: inherit; opacity: 0.7; }
.field-row { display: grid; gap: 1.1rem; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } .field-row-3 { grid-template-columns: 1.4fr 0.8fr 1fr; } }
input[type='text'], input[type='email'], input[type='tel'], input[type='password'], input[type='number'], input[type='date'], input[type='time'], select, textarea {
  width: 100%; min-height: 50px; padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm); border: 1.5px solid rgba(35, 26, 20, 0.28);
  background: #fffaf2; color: var(--ink); font-size: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
select { appearance: none; -webkit-appearance: none; padding-right: 2.5rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23231a14' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px rgba(168, 67, 26, 0.2); }
input[aria-invalid='true'], select[aria-invalid='true'], textarea[aria-invalid='true'] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.12); }
.field-error { color: var(--danger); font-size: 0.9rem; font-weight: 600; }
.field-error:empty { display: none; }
.field-hint { font-size: 0.86rem; color: var(--ink-muted); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-weight: 700; }
.form-status.is-error { color: var(--danger); }
.form-status.is-success { color: var(--green); }

/* ---------- Contact ---------- */
.contact { background: var(--char-800); }
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 4rem; } }
.contact-copy .section-title { margin-bottom: 1rem; }
.contact-list { display: grid; gap: 0.8rem; margin: 1.75rem 0; }
.contact-list li { display: flex; gap: 0.7rem; align-items: center; }
.contact-list .icon { color: var(--brass); flex: none; }
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-form { padding: clamp(1.25rem, 4vw, 2rem); border-radius: var(--radius-lg); background: var(--ivory); color: var(--ink); }
.contact .form-status.is-success { color: var(--green); }

/* ---------- Footer ---------- */
.site-footer { background: var(--char-950); color: var(--ivory); border-top: 1px solid rgba(201, 160, 99, 0.2); }
.footer-inner { max-width: var(--max); margin-inline: auto; padding: clamp(3rem, 7vw, 4.5rem) var(--gutter) 2rem; display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer-inner { grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); } }
.footer-inner > * { min-width: 0; }
.footer-col address a, .footer-col address span { overflow-wrap: anywhere; }
.footer-brand .lockup-name, .footer-brand .lockup-tag { white-space: normal; }
.footer-brand .lockup-name { line-height: 1.05; }
.footer-brand { display: grid; gap: 1.5rem; align-content: start; }
.footer-h { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.9rem; font-weight: 800; }
.footer-col ul { display: grid; gap: 0.1rem; }
.footer-col a { display: inline-block; padding: 0.3rem 0; text-decoration: none; color: rgba(243, 233, 215, 0.82); }
.footer-col a:hover { color: var(--ivory); text-decoration: underline; }
.footer-hours { display: grid; gap: 0.25rem; font-size: 0.93rem; font-variant-numeric: tabular-nums; }
.footer-hours > div { display: grid; grid-template-columns: 3rem 1fr; gap: 0.5rem; }
.footer-hours dt { color: var(--muted); }
.footer-hours dd { white-space: nowrap; }
.footer-col address { display: grid; gap: 0.25rem; color: rgba(243, 233, 215, 0.82); font-size: 0.95rem; }
.footer-base { max-width: var(--max); margin-inline: auto; padding: 1.25rem var(--gutter) 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; border-top: 1px solid rgba(201, 160, 99, 0.14); font-size: 0.88rem; color: var(--muted); }
.footer-base ul { display: flex; gap: 1.25rem; }
.footer-base a { text-decoration: none; }
.footer-base a:hover { color: var(--ivory); text-decoration: underline; }

/* ---------- Checkout ---------- */
.checkout { min-height: 70vh; padding-block: clamp(1.75rem, 5vw, 3.5rem) 4rem; }
.checkout-title { font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 3.2rem); margin-bottom: 1.5rem; }
.checkout-grid { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 960px) {
  .checkout-grid { grid-template-columns: minmax(0, 1fr) 380px; gap: 3rem; }
  .summary { grid-column: 2; grid-row: 1; position: sticky; top: calc(var(--header-h) + 1.5rem); }
  .checkout-form { grid-column: 1; grid-row: 1; }
}
.step { margin: 0; padding: 1.4rem; border: 1px solid rgba(35, 26, 20, 0.14); border-radius: var(--radius-lg); background: rgba(255, 250, 240, 0.65); min-width: 0; display: grid; gap: 1rem; }
.step legend { float: left; width: 100%; padding: 0; margin-bottom: 0.25rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.step legend + * { clear: both; }
.segmented { display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); gap: 0.6rem; }
.seg, .pill { position: relative; cursor: pointer; }
.seg input, .pill input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.seg span { display: grid; gap: 0.1rem; padding: 0.85rem 1rem; min-height: 64px; border: 1.5px solid rgba(35, 26, 20, 0.22); border-radius: var(--radius); background: #fffaf2; font-weight: 800; transition: border-color 0.15s, box-shadow 0.15s; }
.seg small { font-weight: 500; color: var(--ink-muted); font-size: 0.85rem; }
.seg input:checked + span, .pill input:checked + span { border-color: var(--ember); box-shadow: inset 0 0 0 1px var(--ember); background: #fff6ea; }
.seg input:focus-visible + span, .pill input:focus-visible + span { outline: 2px solid var(--ember); outline-offset: 2px; }
.tip-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.5rem; }
@media (min-width: 600px) { .tip-options { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.pill span { display: grid; place-items: center; gap: 0; min-height: 56px; padding: 0.4rem 0.5rem; border: 1.5px solid rgba(35, 26, 20, 0.22); border-radius: var(--radius); background: #fffaf2; font-weight: 800; text-align: center; line-height: 1.2; }
.pill small { font-weight: 600; color: var(--ink-muted); font-size: 0.78rem; font-variant-numeric: tabular-nums; }
.pill small:empty { display: none; }
.input-prefix { position: relative; }
.input-prefix span { position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%); color: var(--ink-muted); font-weight: 700; }
.input-prefix input { padding-left: 1.8rem; }
.custom-tip { max-width: 14rem; }
.demo-pay { display: grid; gap: 0.6rem; }
.demo-pay p { color: var(--ink-soft); }
.payment-element { min-height: 60px; }
.payment-loading { color: var(--ink-muted); }
.pay-btn { position: relative; min-height: 60px; font-size: 1rem; }
.pay-btn.is-loading .btn-label { opacity: 0.85; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.86rem; color: var(--ink-muted); text-align: center; }
.error-summary { padding: 1rem 1.1rem; border-radius: var(--radius); background: #fbe5e0; border: 1.5px solid var(--danger); color: #7a1a12; font-weight: 600; }
.error-summary ul { margin: 0.4rem 0 0; padding-left: 1.2rem; font-weight: 500; }
.error-summary a { color: inherit; }
.notice { display: flex; gap: 0.75rem; align-items: flex-start; padding: 1rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.25rem; }
.notice .icon { flex: none; margin-top: 0.15rem; }
.notice-warn { background: #fbe5e0; border: 1.5px solid var(--danger); color: #7a1a12; }
.notice-info { background: #f1e6cc; border: 1.5px solid #b8862f; color: #5a3c0e; }

.summary { border: 1px solid rgba(35, 26, 20, 0.14); border-radius: var(--radius-lg); background: #fbf6ec; }
.summary > summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.summary > summary::-webkit-details-marker { display: none; }
.summary > summary::after { content: ''; width: 10px; height: 10px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg); margin-left: 0.25rem; transition: transform 0.2s; }
.summary[open] > summary::after { transform: rotate(-135deg); }
.summary-total { margin-left: auto; font-family: var(--font-body); font-size: 1.05rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.summary-body { padding: 0 1.25rem 1.25rem; }
.summary-lines { display: grid; }
.summary-line { display: grid; grid-template-columns: 2.2rem minmax(0, 1fr) auto; gap: 0.5rem; padding-block: 0.7rem; border-bottom: 1px solid rgba(35, 26, 20, 0.1); font-size: 0.96rem; }
.summary-line .qty { border: 0; background: none; font-weight: 800; color: var(--ember); display: block; }
.line-main { display: grid; }
.line-name { font-weight: 700; }
.line-opts, .line-note { font-size: 0.86rem; color: var(--ink-soft); }
.line-note { font-style: italic; }
.line-error { font-size: 0.86rem; color: var(--danger); font-weight: 700; }
.line-price { font-weight: 700; font-variant-numeric: tabular-nums; }
.summary-edit { display: inline-block; margin: 0.75rem 0 1rem; font-weight: 700; color: var(--ember); min-height: 32px; }
.checkout-empty { text-align: center; padding: 3rem 1rem; display: grid; gap: 1rem; justify-items: center; }
.checkout-empty h2 { font-family: var(--font-display); font-size: 1.8rem; }

.confirm-dialog { margin: auto; width: min(92vw, 460px); }
.confirm-dialog form { padding: 1.5rem; border-radius: var(--radius-lg); background: var(--ivory); color: var(--ink); display: grid; gap: 1rem; }
.confirm-dialog h2 { font-family: var(--font-display); font-size: 1.5rem; }
.confirm-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: flex-end; }

/* ---------- Order page ---------- */
.order-page { padding-block: clamp(2rem, 6vw, 4rem) 4rem; min-height: 70vh; }
.confirm-hero { text-align: center; display: grid; justify-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.confirm-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 8vw, 3.6rem); font-weight: 700; }
.confirm-lede { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 3.5vw, 1.5rem); color: var(--ink-soft); }
.confirm-icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: #fff; }
.confirm-icon .icon { width: 32px; height: 32px; }
.is-failed .confirm-icon, .is-cancelled .confirm-icon { background: var(--danger); }
.is-failed p, .is-pending p, .is-cancelled p { max-width: 34rem; color: var(--ink-soft); }
.demo-flag { padding: 0.3rem 0.8rem; border-radius: 999px; background: #f1e6cc; color: #5a3c0e; font-weight: 700; font-size: 0.88rem; }
.order-facts { display: grid; gap: 0; margin-bottom: 2rem; border: 1px solid rgba(35, 26, 20, 0.14); border-radius: var(--radius-lg); background: #fbf6ec; }
.order-facts > div { display: grid; gap: 0.15rem; padding: 0.9rem 1.2rem; border-bottom: 1px solid rgba(35, 26, 20, 0.1); }
.order-facts > div:last-child { border-bottom: 0; }
@media (min-width: 600px) { .order-facts > div { grid-template-columns: 12rem 1fr; } }
.order-facts dt { color: var(--ink-muted); font-weight: 600; }
.order-facts dd { font-weight: 700; }
.order-number { font-family: var(--font-display); font-size: 1.4rem; }
.order-h { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.order-page .totals { margin-top: 1rem; }
.confirm-help { margin-top: 2rem; color: var(--ink-soft); text-align: center; }
.tracker { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0 0 2rem; padding: 0; list-style: none; counter-reset: s; }
.tracker li { position: relative; display: grid; justify-items: center; gap: 0.5rem; text-align: center; font-size: 0.8rem; font-weight: 700; color: var(--ink-muted); }
.tracker li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(35, 26, 20, 0.3); background: var(--ivory); z-index: 1; }
.tracker li::after { content: ''; position: absolute; top: 7px; left: -50%; width: 100%; height: 2px; background: rgba(35, 26, 20, 0.2); }
.tracker li:first-child::after { display: none; }
.tracker li.is-done, .tracker li.is-current { color: var(--ink); }
.tracker li.is-done::before { background: var(--green); border-color: var(--green); }
.tracker li.is-done::after, .tracker li.is-current::after { background: var(--green); }
.tracker li.is-current::before { background: var(--ember); border-color: var(--ember); box-shadow: 0 0 0 5px rgba(168, 67, 26, 0.18); }

/* ---------- Simple pages ---------- */
.simple { padding-block: clamp(2.5rem, 7vw, 5rem); min-height: 60vh; }
.prose h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 3.2rem); margin-bottom: 0.5rem; }
.prose h2 { font-family: var(--font-display); font-size: 1.45rem; margin: 2rem 0 0.5rem; }
.prose p { margin-bottom: 1rem; color: var(--ink-soft); max-width: 68ch; }
.prose p a { color: var(--ember); }
.prose .btn { margin: 0.25rem 0.5rem 0.25rem 0; }
.muted { color: var(--ink-muted) !important; }

/* ---------- Page transitions and entrance motion (premium, subtle) ---------- */
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes settleIn { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: none; } }
@keyframes vtOut { to { opacity: 0; transform: translateY(-8px); } }
@keyframes vtIn { from { opacity: 0; transform: translateY(14px); } }

@media (prefers-reduced-motion: no-preference) {
  /* Smooth cross-fade between pages (supported browsers); the header stays put */
  @view-transition { navigation: auto; }
  .site-header { view-transition-name: site-header; }
  .cart-bar { view-transition-name: cart-bar; }
  ::view-transition-old(root) { animation: 220ms cubic-bezier(0.4, 0, 1, 1) both vtOut; }
  ::view-transition-new(root) { animation: 480ms cubic-bezier(0.2, 0.7, 0.2, 1) both vtIn; }

  /* Page intros: eyebrow, title, italic line and text arrive in sequence */
  .page-intro .eyebrow { animation: riseIn 0.7s var(--ease) 0.05s both; }
  .page-title > span { animation: riseIn 0.85s var(--ease) 0.14s both; }
  .page-title > em { animation: riseIn 0.85s var(--ease) 0.26s both; }
  .page-lede { animation: riseIn 0.85s var(--ease) 0.4s both; }
  .page-intro + section { animation: fadeIn 0.9s ease 0.45s both; }
  /* Menu page: the intro and tabs stay still, even during the page transition; only the dishes move */
  .menu-intro { view-transition-name: menu-intro; }
  .menu-tabs { view-transition-name: menu-tabs; }
  ::view-transition-new(menu-intro), ::view-transition-new(menu-tabs) { animation: none; }
  ::view-transition-old(menu-intro), ::view-transition-old(menu-tabs) { animation: 220ms cubic-bezier(0.4, 0, 1, 1) both vtOut; }
  /* Each dish rises into place as it scrolls into view (classes added by app.js) */
  .rise-ready .menu-cat .mcard:not(.rise):not(.risen) { opacity: 0; }
  .menu-cat .mcard.rise { animation: riseIn 0.8s var(--ease) var(--rise-delay, 0s) both; }
  .story .story-figure img { animation: settleIn 1.1s var(--ease) 0.3s both; }

  /* Home hero: the name, rule and buttons arrive one after another */
  .hero-name > span:first-child { animation: riseIn 0.9s var(--ease) 0.1s both; }
  .hero-name > span:last-child { animation: riseIn 0.9s var(--ease) 0.22s both; }
  .hero-rule, .hero-tag { animation: riseIn 0.8s var(--ease) 0.38s both; }
  .hero-headline { animation: riseIn 0.8s var(--ease) 0.5s both; }
  .hero-sub { animation: riseIn 0.8s var(--ease) 0.6s both; }
  .hero-ctas { animation: riseIn 0.8s var(--ease) 0.7s both; }
  .hero-status { animation: riseIn 0.8s var(--ease) 0.8s both; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
