/* ═══ TOKENS ═══════════════════════════════════════════════ */
:root {
  /* Brune palette */
  --bg:          #ffffff;
  --bg-soft:     #e4f2e0;          /* dewdrop */
  --ink:         #000000;
  --ink-2:       #313131;          /* dark-80 */
  --ink-3:       #adadad;          /* dark-70 */
  --ink-4:       #d0d0d0;          /* placeholder / disabled */
  --accent:      #63ab4d;          /* vibrant-sage */
  --accent-soft: #8bc87a;
  --rule:        #e8e8e8;

  --display: 'EB Garamond', Georgia, serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);

  /* Type scale — Brune proportions */
  --h1: clamp(2.6rem, 7vw, 5.4rem);
  --h2: clamp(2rem,   5vw, 4.2rem);
  --h3: clamp(1.6rem, 3vw, 2.8rem);

  /* Spacing — mirrors Brune's fixed values with fluid fallbacks */
  --pad:      clamp(20px, 3.5vw, 56px);   /* ≈ 44px at 1280px */
  --sec-v:    clamp(48px, 7vw,  80px);    /* standard section padding-top/bottom */
  --sec-v-xl: clamp(80px, 12vw, 140px);   /* extra-padding sections */
  --max:      1200px;
  --max-wide: 1340px;
}

/* ═══ RESET ════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* ═══ TYPE ═════════════════════════════════════════════════ */
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }

p { text-wrap: pretty; }

/* ═══ NAV ══════════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--pad);
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--rule);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  transition: opacity 0.3s var(--ease);
}
.nav-logo:hover img { opacity: 0.85; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: .78rem; font-weight: 400; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-2); position: relative; padding: 4px 0; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Keyboard focus — visible only for keyboard, not mouse */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.nav-logo:focus-visible { outline-offset: 4px; border-radius: 50%; }
.tab-btn:focus-visible { border-radius: 300px; }
.drawer-link:focus-visible { border-radius: 4px; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: .3s; }

/* drawer */
.drawer {
  position: fixed; top: 0; right: 0; z-index: 200;
  width: min(340px, 86vw); height: 100dvh; background: var(--bg);
  border-left: 1px solid var(--rule);
  transform: translateX(100%); transition: transform .45s var(--ease);
  padding: 5rem var(--pad) 2rem; display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer nav { display: flex; flex-direction: column; gap: 1.4rem; }
.drawer-link { font-family: var(--serif); font-size: 2.2rem; line-height: 1; transition: color .25s; }
.drawer-link:hover { color: var(--accent); }
.drawer-close { position: absolute; top: 1.4rem; right: 1.4rem; font-size: 1.2rem; color: var(--ink-3); }
.drawer-overlay {
  position: fixed; inset: 0; z-index: 190; background: rgba(0,0,0,.28);
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.drawer-overlay.show { opacity: 1; pointer-events: auto; }

/* ═══ HERO ═════════════════════════════════════════════════
   Brune: padding 160px 0 120px · gallery flex-row gap 80px · br 33px
═══════════════════════════════════════════════════════════ */
.hero {
  padding: clamp(100px, 14vh, 160px) 0 clamp(60px, 10vh, 120px);
  display: flex; flex-direction: column; gap: clamp(48px, 9vw, 111px);
}

.hero-text {
  padding: 0 var(--pad);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.hero-text.in { opacity: 1; transform: none; }

.hero-location {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(.8rem, 1.2vw, 1rem);
  color: var(--ink-3);
  letter-spacing: .01em;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-wrap: balance;
  line-height: 1;
  font-optical-sizing: auto;
}

.hero-tag {
  margin-top: 1.2rem;
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: var(--ink-2);
  max-width: 38ch;
  line-height: 1.6;
  font-weight: 300;
  text-wrap: balance;
}

.hero-gallery {
  display: flex; flex-direction: row;
  gap: clamp(12px, 4vw, 44px);
  padding: 0 var(--pad);
  align-items: center;
  overflow: visible;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.hero-fig {
  flex: 1; overflow: hidden; border-radius: 33px;
  background: var(--bg-soft);
  transform-origin: center center;
  will-change: transform;
}
.hero-fig img, .hero-fig video { width: 100%; height: 100%; object-fit: cover; }

.hero-video-link {
  display: block; width: 100%; height: 100%;
  position: relative; text-decoration: none;
}
.hero-video-link video { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-video-badge {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  color: #fff; font-size: .68rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 99px;
  white-space: nowrap;
  opacity: 0; transition: opacity .3s var(--ease);
}
.hero-video-link:hover .hero-video-badge { opacity: 1; }

/* Sizes and z-index only — transforms + transitions handled entirely by JS */
.hero-fig:nth-child(1) { aspect-ratio: 9/10; z-index: 1; }
.hero-fig:nth-child(2) { aspect-ratio: 9/10; flex: 1.08; z-index: 3; }
.hero-fig:nth-child(3) { aspect-ratio: 9/10; z-index: 1; }

/* ═══ INFO SECTION (Find Us + Hours combined)
   Brune: section padding 80px 44px · max-w 1200px
         flex-row space-between gap-30px · 3 columns
═══════════════════════════════════════════════════════════ */
.info {
  padding: var(--sec-v) var(--pad);
}
.info-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.info-col {
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
  align-items: center;
  text-align: center;
}
.info-label {
  font-size: .88rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink);
}
.info-col p { font-size: 1rem; line-height: 1.7; color: var(--ink-2); }
.info-col a { border-bottom: 1px solid var(--accent); transition: opacity .2s; }
.info-col a:hover { opacity: .6; }

.info-logo-wrap {
  flex: 0 0 auto;
  display: flex; justify-content: center; align-items: center;
  overflow: visible;
}
.info-logo {
  width: clamp(140px, 18vw, 240px);
  height: auto;
  object-fit: contain;
  /* Scale down slightly so the jump animation has headroom within the video frame */
  transform: scale(0.72);
  transform-origin: bottom center;
}
.mascot-wrap {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}

.info-mascot {
  width: clamp(180px, 24vw, 320px);
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  animation: mascot-bob 2.4s ease-in-out infinite;
}

.mascot-wrap.high-five .info-mascot {
  animation: mascot-highfive 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* ── Mascot hearts ── */
.mascot-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  perspective: 400px;
}

.heart-particle {
  position: absolute;
  pointer-events: none;
  line-height: 1;
  will-change: transform, opacity;
  /* duration set via inline style in JS to avoid custom-property shorthand bugs */
}

/* heart-rise keyframes handled entirely by WAAPI in script.js */

.mascot-emoji {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0) scale(0.5);
  transition: none;
}

.mascot-wrap.high-five .mascot-emoji {
  animation: emoji-pop 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes mascot-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(0deg); }
}

@keyframes mascot-highfive {
  0%   { transform: translateY(0) rotate(0deg) scale(1); }
  20%  { transform: translateY(-20px) rotate(-8deg) scale(1.08); }
  50%  { transform: translateY(-28px) rotate(6deg) scale(1.12); }
  75%  { transform: translateY(-10px) rotate(-3deg) scale(1.05); }
  100% { transform: translateY(0) rotate(0deg) scale(1); }
}

@keyframes emoji-pop {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  30%  { opacity: 1; transform: translateY(-28px) scale(1.3); }
  70%  { opacity: 1; transform: translateY(-40px) scale(1.1); }
  100% { opacity: 0; transform: translateY(-56px) scale(0.8); }
}

@media (prefers-reduced-motion: reduce) {
  .info-mascot { animation: none; }
  .mascot-wrap.high-five .info-mascot { animation: none; }
  .mascot-wrap.high-five .mascot-emoji { animation: none; opacity: 1; }
}

/* Pop-on-scroll animation */
.pop-reveal {
  opacity: 0;
  transform: scale(0.85) translateY(10px);
  transition: opacity .55s var(--ease), transform .65s var(--ease);
}
.pop-reveal.in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ═══ THE VIBES (centered text, max-w 966px)
   Brune: extra-padding-section 140px 44px · max-w 966px · flex-v center
═══════════════════════════════════════════════════════════ */
.vibes {
  padding: clamp(80px, 14vw, 160px) var(--pad) clamp(60px, 10vw, 120px);
  max-width: var(--max-wide); margin: 0 auto;
}
.vibes-inner {
  max-width: 680px;
  display: flex; flex-direction: column;
  gap: 0;
}
.vibes-word {
  font-family: var(--display);
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 400; font-style: italic;
  color: var(--ink);
  line-height: .88;
  letter-spacing: -0.03em;
  margin: 0 0 clamp(6px, 1vw, 12px);
}
.vibes-tagline {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 400; font-style: italic;
  color: var(--ink-2);
  letter-spacing: -0.01em;
  margin: 0 0 clamp(24px, 4vw, 44px);
}
.vibes-tagline.reveal { transition-delay: 0.1s; }
.vibes-text {
  font-family: var(--sans);
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: var(--ink-2); line-height: 1.75;
  text-wrap: pretty;
  max-width: 48ch;
}

/* ═══ MARQUEE ══════════════════════════════════════════════ */
.marquee { overflow: hidden; background: var(--accent); padding: 1.1rem 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee-track span {
  font-family: var(--serif); font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  color: var(--bg); white-space: nowrap; padding-right: .4rem;
}
@keyframes marquee { to { transform: translateX(-33.333%); } }

/* ═══ PROMOS ════════════════════════════════════════════════ */
.promos {
  --promos-bg:        oklch(93% 0.025 22);
  --promos-terra:     oklch(46% 0.1  22);
  --promos-terra-mid: oklch(60% 0.09 22);
  padding: var(--sec-v) 0;
  background: var(--promos-bg);
  overflow: hidden;
}

.promos-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
}

.promos-head {
  padding: 0 var(--pad);
  margin-bottom: clamp(20px, 3.5vw, 36px);
}

.promos-eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--promos-terra);
  letter-spacing: -0.01em;
}

.promos-track {
  display: flex;
  gap: clamp(14px, 2.5vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--pad) 8px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 3%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 3%, black 94%, transparent 100%);
}
.promos-track::-webkit-scrollbar { display: none; }

.promo-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(260px, 48vw, 400px);
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.promo-card:hover {
  box-shadow: 0 10px 36px oklch(40% 0.08 22 / 0.18);
  transform: translateY(-4px);
}

.promo-card-img-wrap { overflow: hidden; }
.promo-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.promo-card:hover .promo-card-img { transform: scale(1.04); }

.promo-card-body {
  padding: 1.2rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
}
.promo-card-body--noimg {
  padding: 1.8rem 1.6rem 2rem;
}

.promo-card-title {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}
.promo-card-body--noimg .promo-card-title {
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
}

.promo-card-desc {
  font-size: .88rem;
  color: var(--promos-terra-mid);
  line-height: 1.6;
  text-wrap: pretty;
}

/* Stagger reveal */
.promos .promo-card.reveal { transition-delay: calc(var(--i, 0) * 80ms); }

@media (prefers-reduced-motion: reduce) {
  .promos-track { -webkit-mask-image: none; mask-image: none; }
  .promo-card:hover .promo-card-img { transform: none; }
}

/* ═══ MENU (tab-based)
   Brune: section padding 80px 44px · tabs with border-radius 300px
         menu-items 2-col grid gap 11px · item padding 16px 11px br 15px
═══════════════════════════════════════════════════════════ */
.menu { padding: var(--sec-v) var(--pad); }
.menu-container { max-width: var(--max-wide); margin: 0 auto; }

.menu-head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.menu-head h2 { margin-bottom: .5rem; }
.menu-head p { font-size: 1rem; color: var(--ink-3); }

/* Tabs — centered pill style */
.menu-tabs-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 auto clamp(32px, 5vw, 56px);
  padding: 0 var(--pad);
}
.menu-tabs-scroll::-webkit-scrollbar { display: none; }

.menu-tabs {
  display: flex; gap: 6px;
  background: var(--rule);
  border-radius: 300px;
  padding: 4px;
  width: max-content;
  margin: 0 auto;
}
.tab-btn {
  font-size: .9rem; font-weight: 400;
  padding: 9px 18px; border-radius: 300px;
  border: none;
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--ink-3);
  transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.tab-btn.active {
  background: var(--bg); color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.tab-btn:hover:not(.active) { color: var(--ink); }

/* ─── Tab icon base ──────────────────────────── */
.tab-icon {
  flex-shrink: 0;
  display: block;
  transition: transform .3s var(--ease);
}
.tab-btn.active .tab-icon { transform: scale(1.18); }

/* Coffee steam */
@keyframes steam-rise {
  0%   { opacity: 0; transform: translateY(0); }
  35%  { opacity: .9; }
  100% { opacity: 0; transform: translateY(-5px); }
}
.tab-icon--coffee .steam { transform-origin: 50% 100%; }
.tab-icon--coffee .si-1 { animation: steam-rise 2.2s 0s ease-in-out infinite; }
.tab-icon--coffee .si-2 { animation: steam-rise 2.2s .45s ease-in-out infinite; }
.tab-icon--coffee .si-3 { animation: steam-rise 2.2s .9s ease-in-out infinite; }

/* Specialty star sparkle */
@keyframes star-spin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50%       { transform: rotate(22.5deg) scale(1.12); }
}
.tab-icon--star { animation: star-spin 3s ease-in-out infinite; }

/* Leaf sway */
@keyframes leaf-sway {
  0%, 100% { transform: rotate(-6deg); }
  50%       { transform: rotate(6deg); }
}
.tab-icon--leaf { transform-origin: 50% 90%; animation: leaf-sway 3.5s ease-in-out infinite; }

/* Juice spin */
@keyframes juice-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.tab-icon--juice { animation: juice-spin 10s linear infinite; }

/* Soda bubbles */
@keyframes bbl-rise {
  0%   { opacity: 0; transform: translateY(0); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-6px); }
}
.tab-icon--soda .b1 { animation: bbl-rise 1.9s 0s ease-in infinite; }
.tab-icon--soda .b2 { animation: bbl-rise 1.9s .55s ease-in infinite; }
.tab-icon--soda .b3 { animation: bbl-rise 1.9s 1.1s ease-in infinite; }

/* Iced tea shimmer */
@keyframes ice-shimmer {
  0%, 100% { opacity: 1; }
  50%       { opacity: .55; }
}
.tab-icon--iced rect { animation: ice-shimmer 2.5s ease-in-out infinite; }

/* Brunch sun pulse */
@keyframes sun-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.14); }
}
.tab-icon--brunch { animation: sun-pulse 2.8s ease-in-out infinite; }

/* Pasta fork twirl */
@keyframes fork-twirl {
  0%, 100% { transform: rotate(0deg); }
  30%       { transform: rotate(-10deg); }
  70%       { transform: rotate(10deg); }
}
.tab-icon--pasta { transform-origin: 50% 80%; animation: fork-twirl 2.5s ease-in-out infinite; }

/* Snacks bounce */
@keyframes fry-bounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-4px); }
  60%       { transform: translateY(-2px); }
}
.tab-icon--snacks { animation: fry-bounce 2s ease-in-out infinite; }

/* Dessert wobble */
@keyframes cake-wobble {
  0%, 100% { transform: rotate(0deg); }
  20%       { transform: rotate(-5deg); }
  40%       { transform: rotate(5deg); }
  60%       { transform: rotate(-2.5deg); }
  80%       { transform: rotate(2.5deg); }
}
.tab-icon--dessert { transform-origin: 50% 90%; animation: cake-wobble 4s ease-in-out infinite; }

/* Dinner cloche lift */
@keyframes cloche-lift {
  0%, 60%, 100% { transform: translateY(0); }
  30%            { transform: translateY(-4px); }
}
.tab-icon--dinner { animation: cloche-lift 3.5s ease-in-out infinite; }

/* Active tab pauses the animation so it doesn't distract while reading */
.tab-btn.active .tab-icon,
.tab-btn.active .tab-icon .steam,
.tab-btn.active .tab-icon .bbl,
.tab-btn.active .tab-icon rect {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .tab-icon,
  .tab-icon .steam,
  .tab-icon .bbl,
  .tab-icon rect { animation: none !important; }
}

/* Tab panels */
.tab-panel { display: none; }
.tab-panel.active {
  display: block;
  animation: tab-in .35s var(--ease) both;
}
@keyframes tab-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* Timing badge beneath active tab */
.menu-timing {
  display: flex;
  justify-content: center;
  margin: -8px auto clamp(20px, 3vw, 32px);
}

.menu-timing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: oklch(93% 0.025 22);
  color: oklch(42% 0.1 22);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 400;
  line-height: 1;
  padding: 6px 14px 7px 10px;
  border-radius: 300px;
}

.menu-timing-badge--open {
  background: oklch(91% 0.07 145);
  color: oklch(38% 0.13 145);
}
.menu-timing-badge--closed {
  background: oklch(93% 0.04 15);
  color: oklch(40% 0.14 15);
}

.menu-timing-icon {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: .85;
}

/* Menu cards — 2-col Brune layout */
.menu-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.menu-card {
  display: flex;
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
  min-height: 160px;
}
.menu-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,.09);
  border-color: transparent;
  transform: translateY(-3px);
}
.menu-card--unavailable { opacity: 0.55; }

.menu-card-img {
  width: 160px;
  flex-shrink: 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.menu-card-img-placeholder {
  width: 100%; height: 100%; min-height: 160px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-4); font-size: 2rem;
}
.menu-card-badge {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.65); color: #fff; font-size: .62rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .2rem .6rem; border-radius: 99px; white-space: nowrap;
}

.menu-card-body {
  flex: 1; padding: 1.1rem 1.25rem 1rem;
  display: flex; flex-direction: column; gap: .4rem; min-width: 0;
}
.menu-card-header {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: .5rem;
}
.menu-card-name {
  font-family: var(--serif); font-size: 1.1rem; line-height: 1.2;
}
.menu-card-price-row {
  display: flex; align-items: center; gap: .4rem; flex-shrink: 0;
}
.menu-card-price {
  font-size: .88rem; color: var(--ink-2); font-weight: 400;
}
.menu-card-sold {
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-4); background: var(--bg-soft);
  padding: .15rem .5rem; border-radius: 99px;
}
.menu-card-desc {
  font-size: .82rem; color: var(--ink-3); line-height: 1.5;
  flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.menu-card-order {
  align-self: flex-end;
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .78rem; font-weight: 500;
  padding: .45rem 1rem;
  border-radius: 300px;
  background: var(--bg-soft);
  color: var(--accent);
  text-decoration: none;
  transition: background .2s, color .2s;
  margin-top: .5rem;
}
.menu-card-order:hover { background: var(--accent); color: var(--bg); }
.menu-card-order--disabled {
  color: var(--ink-4); background: var(--bg-soft);
  pointer-events: none;
}

/* ═══ GOOGLE REVIEWS
   Dewdrop-green section break · dual-row auto-scrolling marquee
═══════════════════════════════════════════════════════════ */
.reviews {
  --reviews-bg:        oklch(93% 0.025 22);   /* blush — logo bg */
  --reviews-terra:     oklch(46% 0.1  22);    /* terracotta — logo ink */
  --reviews-terra-mid: oklch(60% 0.09 22);    /* lighter terracotta for muted text */
  background: var(--reviews-bg);
  padding: var(--sec-v) 0;
  overflow: hidden;
}

.reviews-inner {
  display: grid;
  grid-template-columns: clamp(220px, 22vw, 300px) 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

/* ── Anchor (left column) ── */
.reviews-anchor {
  padding: 0 0 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.reviews-rating-block {
  display: flex;
  align-items: baseline;
  gap: .6rem;
}

.reviews-score {
  font-family: var(--display);
  font-size: clamp(3.6rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--reviews-terra);
  font-optical-sizing: auto;
}

.reviews-rating-meta {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.reviews-stars {
  font-size: 1rem;
  color: var(--reviews-terra);
  letter-spacing: .05em;
  line-height: 1;
}

.reviews-out {
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  color: var(--reviews-terra-mid);
}

.reviews-count {
  font-size: .8rem;
  color: var(--reviews-terra-mid);
  margin-top: -.4rem;
}

.reviews-google-badge {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--reviews-terra);
  letter-spacing: .01em;
}

.reviews-google-g {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Marquee wrap ── */
.reviews-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 14px;
}

.reviews-track--fwd {
  animation: reviews-scroll-left 36s linear infinite;
}

.reviews-track--rev {
  animation: reviews-scroll-right 44s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.reviews-strip {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

@keyframes reviews-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes reviews-scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ── Review card ── */
.review-card {
  width: clamp(240px, 28vw, 300px);
  background: #fff;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}

.review-card--wide {
  width: clamp(280px, 32vw, 360px);
}

.review-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.07);
  transform: translateY(-2px);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  /* all avatars live in the blush-terracotta hue family (hue 10–40) at varied lightness */
  background: oklch(calc(52% + var(--av-l, 0%) ) 0.09 calc(15deg + var(--av-hue, 0) * 1deg));
}

.review-card-header > div {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.review-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}

.review-stars {
  font-size: .75rem;
  color: var(--reviews-terra);
  letter-spacing: .04em;
  line-height: 1;
}

.review-text {
  font-size: .82rem;
  color: var(--ink-2);
  line-height: 1.55;
  text-wrap: pretty;
}

/* ── Hide second row on mobile ── */
.reviews-track--row2 {
  display: none;
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .reviews-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .reviews-anchor {
    padding: 0 var(--pad);
  }
}

@media (min-width: 768px) {
  .reviews-track--row2 {
    display: flex;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
  .reviews-marquee-wrap {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
  }
  .reviews-strip + .reviews-strip[aria-hidden="true"] { display: none; }
}

/* ═══ INSTAGRAM
   Brune: 2-col header (heading | @handle) · 5-col grid gap 16px · h 200px br 8px
═══════════════════════════════════════════════════════════ */
.insta {
  padding: var(--sec-v) var(--pad) clamp(60px, 12vw, 160px);
  max-width: var(--max-wide); margin: 0 auto;
}
.insta-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(24px, 3.5vw, 44px);
}
.insta-heading {
  margin: 0;
}
.insta-word {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 400; font-style: italic;
  line-height: 1.1; letter-spacing: -0.01em;
  color: oklch(46% 0.1 22); text-decoration: none;
  display: block;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.insta-word:hover { opacity: .65; transform: translateX(4px); }
.insta-follow {
  font-family: var(--sans);
  font-size: .88rem; font-weight: 500;
  color: var(--ink-2); text-decoration: none;
  display: flex; align-items: center; gap: .45rem;
  padding-bottom: .3rem;
  white-space: nowrap;
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.insta-follow svg { flex-shrink: 0; transition: transform .25s var(--ease); }
.insta-follow:hover { color: oklch(46% 0.1 22); gap: .7rem; }
.insta-follow:hover svg { transform: translateX(3px); }
.insta-handle {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.2rem, 2.8vw, 2.2rem);
  color: var(--accent);
  justify-self: end;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.insta-cell {
  overflow: hidden; border-radius: 10px;
  background: var(--bg-soft); position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  border: none; padding: 0; /* button reset */
  transition: box-shadow .4s var(--ease);
}
.insta-cell::after {
  content: '';
  position: absolute; inset: 0;
  background: oklch(72% 0.09 22 / 0);
  border-radius: inherit;
  transition: background .4s var(--ease);
  pointer-events: none;
}
.insta-cell:hover { box-shadow: 0 8px 28px oklch(40% 0.08 22 / 0.15); }
.insta-cell:hover::after { background: oklch(72% 0.09 22 / 0.22); }
.insta-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.insta-cell:hover img { transform: scale(1.06); }

/* ═══ LIGHTBOX ══════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.88);
  cursor: zoom-out;
}
.lightbox-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  max-width: 90vw;
}
.lightbox-img {
  display: block;
  max-width: 90vw; max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity .2s var(--ease);
}
.lightbox-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.1);
  padding: .4rem 1.1rem; border-radius: 99px;
  text-decoration: none;
  transition: color .2s, background .2s;
}
.lightbox-link:hover { color: #fff; background: rgba(255,255,255,.18); }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  border: none; cursor: pointer; z-index: 2;
  transition: background .2s;
  -webkit-appearance: none; appearance: none;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 1.25rem; right: 1.25rem; font-size: 1rem; line-height: 1; }
.lightbox-prev  { top: 50%; left: 1rem; transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 1rem; transform: translateY(-50%); }
.lightbox-prev[disabled],
.lightbox-next[disabled] { opacity: .25; pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .lightbox { transition: none; }
  .lightbox-img { transition: none; }
}

/* ═══ FOOTER
   Brune: dark bg · logo row · 3-col info grid (space-between) · nav links row
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink); color: var(--bg);
  padding: clamp(60px, 10vw, 120px) var(--pad) clamp(36px, 5vw, 56px);
}
.footer-container { max-width: var(--max-wide); margin: 0 auto; }

.footer-wordmark {
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bg);
  margin-bottom: clamp(48px, 8vw, 88px);
  transition: opacity .2s;
}
.footer-wordmark:hover { opacity: .65; }

.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: clamp(48px, 7vw, 72px);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-label {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: .88rem;
  color: rgba(255,255,255,.42);
  letter-spacing: 0;
  text-transform: none;
}
.footer-col p { font-size: .9rem; line-height: 1.8; color: rgba(255,255,255,.8); }
.footer-col a { color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.2); transition: color .2s, border-color .2s; }
.footer-col a:hover { color: #fff; border-bottom-color: rgba(255,255,255,.55); }

.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: clamp(24px, 3.5vw, 40px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-nav-row {
  display: flex; gap: clamp(16px, 2.5vw, 28px); flex-wrap: wrap;
}
.footer-nav-row a {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
  letter-spacing: 0;
  text-transform: none;
}
.footer-nav-row a:hover { color: rgba(255,255,255,.9); }
.footer-copyright { font-size: .76rem; color: rgba(255,255,255,.28); }

/* ═══ REVEAL ═══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path .8s var(--ease); }
.reveal-img.in { clip-path: inset(0 0 0% 0); }

/* Text-mask wipe — editorial display lines */
.reveal-line { clip-path: inset(0 0 110% 0); transition: clip-path .7s var(--ease); }
.reveal-line.in { clip-path: inset(0 0 0% 0); }

/* Vibes stagger — text trails 180ms behind headline */
.vibes-text.reveal { transition-delay: 0.18s; }

/* Info column stagger */
.info-inner .info-col.reveal { transition-delay: calc(var(--i, 0) * 120ms); }

/* Menu card stagger within active tab panel */
.tab-panel.active .menu-card {
  animation: card-in .45s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 55ms + 0.06s);
}
@keyframes card-in {
  from { transform: translateY(18px); }
  to   { transform: none; }
}

/* Insta cell stagger */
.insta-grid .insta-cell {
  opacity: 0; transform: translateY(12px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  transition-delay: calc(var(--i, 0) * 65ms);
}
.insta-grid .insta-cell.in { opacity: 1; transform: none; }

/* ═══ RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .info-inner { flex-direction: column; gap: 36px; }
  .insta-handle { justify-self: start; }
  .footer-info-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .menu-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero-gallery { flex-direction: column; gap: 12px; }
  .hero-fig:nth-child(3) { display: none; }
  .hero-fig { border-radius: 20px; aspect-ratio: 4/3 !important; }
  .hero-gallery.in .hero-fig:nth-child(1),
  .hero-gallery.in .hero-fig:nth-child(2),
  .hero-gallery.in .hero-fig:nth-child(3) { transform: none; }
  .insta-head { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-info-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; align-items: flex-start; }
  .footer-nav-row { gap: 12px; }
}

/* ═══ REDUCED MOTION ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img { opacity: 1; transform: none; clip-path: none; transition: none; }
  .pop-reveal { opacity: 1; transform: none; transition: none; }
  .hero-text { opacity: 1; transform: none; transition: none; }
  .hero-gallery { opacity: 1; transform: none; transition: none; }
  .insta-grid .insta-cell { opacity: 1; transform: none; transition: none; }
  .tab-panel.active { animation: none; }
  .marquee-track { animation: none; }
  .insta-cell:hover img { transition: none; }
  .insta-word { transition: none; }
  .insta-follow, .insta-follow svg { transition: none; }
  .insta-cell::after { transition: none; }
  .reveal-line { clip-path: none; opacity: 0; transition: opacity .01ms; }
  .reveal-line.in { opacity: 1; }
  .vibes-text.reveal, .vibes-tagline.reveal { transition-delay: 0s; }
  .info-inner .info-col.reveal { transition-delay: 0s; }
  .tab-panel.active .menu-card { animation: none; }
  html { scroll-behavior: auto; }
}
