/* =========================================================================
   T-CAN — Cute Cinematic
   Palette: cream · hot pink · sky blue · sunshine yellow · deep navy text
   Type:    Fraunces (serif display) + Inter (sans body) + Caveat (script)
   ========================================================================= */

:root {
  /* Backgrounds — warm cream, very light pink, very light blue */
  --bg:        #fff8f0;          /* cream — the page */
  --bg2:       #fff1f5;          /* pale pink wash */
  --bg3:       #ecf6fc;          /* pale blue wash */
  --bg-card:   #ffffff;          /* clean white card */

  /* Text — deep navy/teal so it's readable but warm */
  --ink:       #103952;          /* primary text */
  --ink-2:     rgba(16, 57, 82, 0.72);
  --ink-3:     rgba(16, 57, 82, 0.48);
  --ink-4:     rgba(16, 57, 82, 0.24);

  /* Brand accents — bright, bubbly */
  --pink:      #ff5b9f;          /* hot pink (primary brand) */
  --pink-deep: #d83a7f;
  --pink-soft: #ffb9d4;

  --blue:      #3db7e4;          /* sky blue (secondary brand) */
  --blue-deep: #1d8cb6;
  --blue-soft: #b8e3f3;

  --sun:       #ffd93d;          /* sunshine yellow — small accent / star highlight */

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-script:  'Caveat', cursive;

  /* Layout */
  --max:    1280px;
  --gutter: clamp(20px, 5vw, 64px);

  /* Shape */
  --radius:   18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--pink); color: #fff; }

/* =========================================================================
   Type primitives
   ========================================================================= */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
}
.eyebrow.light { color: var(--blue-soft); }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}
.display.light { color: #fff; }
.display .italic, .display em { font-style: italic; font-weight: 500; color: var(--pink); }
.display.light .italic { color: var(--sun); }

.line { display: block; }

/* =========================================================================
   Navbar
   ========================================================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  /* default: over the dark hero — soft dark wash for grounding */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}
#navbar.scrolled {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 57, 82, 0.08);
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Default (over hero) — light text + inverted logo so dark line-art reads on dark bg */
.nav-logo {
  display: flex;
  align-items: center;
  height: 44px;
  text-decoration: none;
}
.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
  /* Invert so black line-art becomes white over the dark hero */
  filter: invert(1) brightness(1.05) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  transition: filter 0.4s ease;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  transition: color 0.2s, text-shadow 0.4s ease;
}
.nav-links a:hover { color: var(--pink-soft); }

/* Scrolled state — dark text on cream, logo back to natural black line-art */
#navbar.scrolled .nav-logo img {
  filter: none;
}
#navbar.scrolled .nav-links a {
  color: var(--ink-2);
  text-shadow: none;
  font-weight: 500;
}
#navbar.scrolled .nav-links a:hover { color: var(--pink); }

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 22px;
  background: var(--pink);
  border-radius: var(--radius-pill);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 18px rgba(255, 91, 159, 0.28);
}
.nav-cta:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 91, 159, 0.4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1.5px solid #fff;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-toggle:hover {
  border-color: var(--pink);
  color: var(--pink);
}
#navbar.scrolled .lang-toggle {
  border-color: var(--text);
  color: var(--text);
}
#navbar.scrolled .lang-toggle:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: var(--bg);
}
.canvas-wrap {
  position: absolute;
  inset: 0;
}
.canvas-wrap canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    /* dark scrim on bottom-left for copy legibility */
    radial-gradient(ellipse 80% 80% at 20% 100%, rgba(16, 26, 40, 0.85) 0%, rgba(16, 26, 40, 0.55) 30%, transparent 65%),
    /* general bottom darkening so the lower copy band always reads */
    linear-gradient(to bottom, transparent 0%, transparent 45%, rgba(16, 26, 40, 0.55) 80%, rgba(16, 26, 40, 0.85) 100%),
    /* subtle top fade so navbar feels grounded */
    linear-gradient(to bottom, rgba(16, 26, 40, 0.35) 0%, transparent 18%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 var(--gutter) clamp(60px, 10vh, 120px);
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  pointer-events: none;
}
.hero-overlay > * { pointer-events: auto; }
.hero-overlay .eyebrow { color: var(--pink); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
  margin-bottom: 28px;
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.45),
    0 8px 32px rgba(0, 0, 0, 0.55);
}
.hero-title .italic { font-style: italic; font-weight: 600; color: var(--sun); }

.hero-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: #fff;
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 500;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.6),
    0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-scroll {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.hero-scroll .scroll-line {
  width: 64px; height: 2px;
  background: linear-gradient(to right, var(--pink), transparent);
  border-radius: 2px;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: translateY(0) scaleX(0.8); }
  50%      { opacity: 1;   transform: translateY(4px) scaleX(1); }
}

.hero-scroll-spacer { height: 200vh; }

/* =========================================================================
   STORY
   ========================================================================= */
.story {
  position: relative;
  background: var(--bg);
  padding: clamp(100px, 18vh, 200px) var(--gutter);
}
.story-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.story .display { margin-bottom: clamp(60px, 10vh, 120px); max-width: 18ch; }

.beats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px) clamp(60px, 8vw, 120px);
}
.beat {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(16, 57, 82, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.beat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(16, 57, 82, 0.1);
}
.beat:nth-child(odd)  { background: linear-gradient(180deg, #ffffff 0%, var(--bg2) 100%); }
.beat:nth-child(even) { background: linear-gradient(180deg, #ffffff 0%, var(--bg3) 100%); }

.beat-num {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: 28px;
  color: var(--pink);
  margin-bottom: 8px;
  line-height: 1;
}
.beat:nth-child(even) .beat-num { color: var(--blue); }

.beat-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--ink);
  font-variation-settings: "opsz" 36;
}
.beat-body {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
}
.beat-body em {
  color: var(--pink);
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(180deg, transparent 60%, rgba(255, 217, 61, 0.4) 60%);
  padding: 0 2px;
}

/* =========================================================================
   ONE BABO SPLASH
   ========================================================================= */
.babo {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: #2a1645;  /* the splash purple */
}
.babo .canvas-wrap canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.babo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 var(--gutter) clamp(60px, 10vh, 120px);
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
}
.babo-overlay::before {
  content: '';
  position: absolute;
  inset: -100% 0 0 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(42, 22, 69, 0.85) 100%);
  pointer-events: none;
  z-index: -1;
}
.babo .display {
  font-size: clamp(40px, 6vw, 88px);
  margin-bottom: 24px;
  color: #fff;
}
.babo .display .italic { color: var(--pink); }
.babo-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
}

.babo-scroll-spacer { height: 200vh; }

/* =========================================================================
   BABO CUSTOMIZE — Make Your Own
   ========================================================================= */
.babo-customize {
  position: relative;
  background: var(--bg);
  padding: clamp(100px, 18vh, 200px) var(--gutter);
}
.customize-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.customize-inner .eyebrow { color: var(--blue); }
.customize-inner .display {
  margin-bottom: clamp(40px, 6vh, 80px);
  max-width: 20ch;
}
.customize-inner .display .italic { color: var(--blue); }
.customize-sub {
  font-size: clamp(14px, 1.1vw, 17px);
  color: var(--ink-2);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: clamp(60px, 10vh, 100px);
}

/* Three-card customize grid */
.customize-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(32px, 4vw, 56px);
}
@media (max-width: 768px) {
  .customize-cards {
    grid-template-columns: 1fr;
  }
}

.customize-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.customize-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.customize-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: clamp(16px, 3vh, 28px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 8px 32px rgba(16, 57, 82, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.customize-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(16px, 3vh, 32px);
}

.customize-card-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 32;
}

/* Stagger animation for the three cards */
.customize-card:nth-child(1) { transition-delay: 0.05s; }
.customize-card:nth-child(2) { transition-delay: 0.20s; }
.customize-card:nth-child(3) { transition-delay: 0.35s; }

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .customize-card {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}

/* =========================================================================
   MENU
   ========================================================================= */
.menu {
  position: relative;
  background: var(--bg2);
  padding: clamp(100px, 18vh, 200px) var(--gutter);
}
.menu-inner { max-width: var(--max); margin: 0 auto; }
.menu .display { margin-bottom: clamp(80px, 12vh, 140px); max-width: 16ch; }
.menu .display .italic { color: var(--blue); }

.menu-group {
  margin-bottom: clamp(80px, 12vh, 140px);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 8px 32px rgba(16, 57, 82, 0.05);
}
.menu-group:last-child { margin-bottom: 0; }

/* =========================================================================
   Two-image menu (using the original menu screenshots)
   ========================================================================= */
.menu-images {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vh, 56px);
  margin-bottom: 56px;
}
.menu-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(16, 57, 82, 0.08),
    0 2px 8px rgba(255, 91, 159, 0.06);
  background: var(--bg-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.menu-image:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(16, 57, 82, 0.12),
    0 4px 12px rgba(255, 91, 159, 0.1);
}
.menu-image img {
  display: block;
  width: 100%;
  height: auto;
}
/* Fallback shown when image fails to load */
.menu-image-fallback {
  display: none;
  padding: clamp(48px, 10vh, 96px) clamp(24px, 6vw, 60px);
  text-align: center;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
}
.menu-image.missing .menu-image-fallback { display: block; }
.fallback-emoji {
  font-size: 56px;
  letter-spacing: 12px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(16, 57, 82, 0.1));
}
.fallback-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ink);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 30;
}
.fallback-note {
  font-size: 14px;
  color: var(--ink-3);
}
.fallback-note code {
  background: var(--bg-card);
  border: 1px solid rgba(16, 57, 82, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  color: var(--pink-deep);
}

.menu-callout {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(255, 91, 159, 0.06);
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 91, 159, 0.25);
}
.menu-callout p {
  margin: 0;
}
.menu-callout .star {
  display: inline-block;
  margin-right: 8px;
  font-size: 18px;
}
.menu-callout strong { color: var(--pink-deep); font-weight: 600; }
.menu-callout em { color: var(--blue-deep); font-style: italic; font-weight: 600; }

.menu-callout-review {
  display: flex;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.menu-callout-review:hover {
  transform: scale(1.05);
}
.menu-callout-review-img {
  display: block;
  max-width: clamp(100px, 15vw, 180px);
  height: auto;
  transition: filter 0.3s ease;
}
.menu-callout-review:hover .menu-callout-review-img {
  filter: brightness(1.1);
}

/* View Dishes Button */
.view-dishes-btn {
  display: block;
  margin: 20px 0 40px 0;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(61, 183, 228, 0.2);
}
.view-dishes-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 183, 228, 0.35);
}

/* Modal Gallery */
.dishes-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.dishes-modal.active {
  display: flex;
}
.dishes-modal-content {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 1200px;
  width: 100%;
  padding: clamp(30px, 5vw, 60px);
  max-height: 90vh;
  overflow-y: auto;
}
.dishes-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dishes-modal-close:hover {
  color: var(--pink);
}

/* Gallery Masonry */
.dishes-gallery {
  column-count: auto;
  column-width: clamp(200px, 30vw, 350px);
  gap: clamp(20px, 3vw, 40px);
  margin-top: 20px;
}
.dishes-gallery-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  break-inside: avoid;
  margin-bottom: clamp(20px, 3vw, 40px);
}
.dishes-gallery-item:hover {
  transform: translateY(-8px);
}
.dishes-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(16, 57, 82, 0.12);
  transition: box-shadow 0.3s ease;
}
.dishes-gallery-item:hover img {
  box-shadow: 0 12px 48px rgba(16, 57, 82, 0.2);
}
.dishes-gallery-item p {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--ink);
}

/* Catering Modal Styles */
.view-catering-btn {
  display: block;
  margin: 20px 0 40px 0;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 91, 159, 0.2);
}
.view-catering-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 91, 159, 0.35);
}

.catering-facts-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto 56px;
  align-items: start;
}

.catering-facts-wrapper #view-catering-btn {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 20px 0;
  justify-self: center;
}

.catering-facts-wrapper .catering-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
}

@media (max-width: 720px) {
  .catering-facts-wrapper {
    grid-template-columns: 1fr;
  }
  .catering-facts-wrapper #view-catering-btn {
    grid-column: 1;
    margin: 0 0 20px 0;
  }
}

.catering-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.catering-modal.active {
  display: flex;
}
.catering-modal-content {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 1200px;
  width: 100%;
  padding: clamp(30px, 5vw, 60px);
  max-height: 90vh;
  overflow-y: auto;
}
.catering-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catering-modal-close:hover {
  color: var(--pink);
}

/* Catering Gallery Masonry */
.catering-gallery {
  column-count: auto;
  column-width: clamp(200px, 30vw, 350px);
  gap: clamp(20px, 3vw, 40px);
  margin-top: 20px;
}
.catering-gallery-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  break-inside: avoid;
  margin-bottom: clamp(20px, 3vw, 40px);
}
.catering-gallery-item:hover {
  transform: translateY(-8px);
}
.catering-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(16, 57, 82, 0.12);
  transition: box-shadow 0.3s ease;
}
.catering-gallery-item:hover img {
  box-shadow: 0 12px 48px rgba(16, 57, 82, 0.2);
}
.catering-gallery-item p {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--ink);
}

.group-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 2px dashed rgba(255, 91, 159, 0.25);
  margin-bottom: 28px;
}
.group-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
}
.group-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 60;
  color: var(--ink);
}
.group-note {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  font-family: var(--font-script);
  font-weight: 500;
  font-size: 18px;
  align-self: end;
  color: var(--blue-deep);
}

.dish-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.dish {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 24px;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(16, 57, 82, 0.08);
  align-items: center;
  transition: background 0.25s ease, transform 0.25s ease;
  position: relative;
  border-radius: 14px;
}
.dish:last-child { border-bottom: 0; }
.dish:hover {
  background: var(--bg3);
  transform: translateX(4px);
}
.dish:hover .dish-thumb { transform: scale(1.05); }
.dish.star {
  background: linear-gradient(90deg, rgba(255, 217, 61, 0.16) 0%, rgba(255, 91, 159, 0.06) 100%);
  border-bottom-color: rgba(255, 91, 159, 0.18);
}
.dish.soon { opacity: 0.55; }

/* Thumbnail */
.dish-thumb {
  grid-row: 1 / 3;
  width: 96px; height: 96px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, var(--pink-soft) 0%, var(--blue-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(16, 57, 82, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dish-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
}
.dish-thumb .dish-emoji {
  font-size: 38px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(16, 57, 82, 0.15));
  z-index: 1;
}

/* Vary thumb gradients per category — subtle */
.menu-group:nth-child(2) .dish-thumb { background: linear-gradient(135deg, #ffe7d6 0%, var(--pink-soft) 100%); } /* House Special: warm */
.menu-group:nth-child(3) .dish-thumb { background: linear-gradient(135deg, var(--blue-soft) 0%, var(--pink-soft) 100%); } /* Main */
.menu-group:nth-child(4) .dish-thumb { background: linear-gradient(135deg, #fff3b3 0%, var(--blue-soft) 100%); } /* Burger: yellow→blue */
.menu-group:nth-child(5) .dish-thumb { background: linear-gradient(135deg, #c8eac8 0%, #fff3b3 100%); } /* Poutine: jade→yellow */

.dish-fr {
  grid-column: 2; grid-row: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
  align-self: end;
}
.dish-en {
  grid-column: 2; grid-row: 2;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: 0.01em;
  font-style: italic;
  align-self: start;
}
.dish-price {
  grid-column: 3; grid-row: 1 / 3;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--pink);
  text-align: right;
  font-variation-settings: "opsz" 24;
  align-self: center;
}
.dish.soon .dish-price { color: var(--ink-3); font-style: italic; font-weight: 500; }

/* =========================================================================
   CATERING
   ========================================================================= */
.catering {
  position: relative;
  background: var(--bg3);
  padding: clamp(120px, 20vh, 220px) var(--gutter);
  text-align: center;
  overflow: hidden;
}
.catering::before, .catering::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}
.catering::before { background: var(--pink-soft); top: -120px; left: -80px; }
.catering::after  { background: var(--blue-soft); bottom: -120px; right: -80px; }

.catering-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }
.catering .display { margin-bottom: 36px; }
.catering .display .italic { color: var(--blue); }
.catering-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 56px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.catering-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto 56px;
  max-width: 820px;
  text-align: left;
}
.catering-fact {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 24px 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.2s, box-shadow 0.2s;
}
.catering-fact:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}
.catering-fact-num {
  font-family: var(--font-display, var(--font-serif, serif));
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.catering-fact:nth-child(2) .catering-fact-num { color: var(--blue); }
.catering-fact:nth-child(3) .catering-fact-num { color: var(--pink-deep); }
.catering-fact-label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

.catering-call {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.catering-call-label {
  font-family: var(--font-script);
  font-size: 20px;
  color: var(--ink-2);
  margin: 0;
}
.catering-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--pink);
  color: #fff;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 10px 28px rgba(255, 91, 159, 0.36);
}
.catering-phone:hover {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 91, 159, 0.46);
}
.catering-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.catering-phone-num {
  font-variant-numeric: tabular-nums;
}

.catering-fineprint {
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  font-family: var(--font-script);
  font-size: 18px;
}

@media (max-width: 720px) {
  .catering-facts {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* =========================================================================
   VISIT
   ========================================================================= */
.visit {
  position: relative;
  background: var(--bg);
  padding: clamp(100px, 18vh, 200px) var(--gutter);
}
.visit-inner { max-width: var(--max); margin: 0 auto; }
.visit-text { max-width: 720px; }
.visit .display { margin-bottom: 28px; }
.visit .display .italic { color: var(--blue); }
.visit-body {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}
.visit-meta {
  display: grid;
  gap: 0;
  border-top: 2px dashed rgba(255, 91, 159, 0.25);
}
.visit-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(16, 57, 82, 0.08);
  align-items: baseline;
}
.visit-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.visit-val {
  font-size: 17px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "opsz" 24;
}
.visit-val a {
  color: inherit;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  transition: color 0.2s, border-color 0.2s;
}
.visit-val a:hover {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(60px, 10vh, 100px) var(--gutter) 40px;
  text-align: center;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto 20px;
  /* Invert because the line-art is black on transparent — needs to be white on dark footer */
  filter: invert(1) brightness(1.05);
}
.footer-meta {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  font-family: var(--font-script);
  font-size: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  font-weight: 500;
}
.footer-link:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.footer-link-icon {
  font-size: 16px;
  display: inline-block;
}
.footer-link-review {
  background: linear-gradient(135deg, rgba(255,91,159,0.15), rgba(61,183,228,0.15));
  border-color: rgba(255,91,159,0.3);
}
.footer-link-review:hover {
  background: linear-gradient(135deg, rgba(255,91,159,0.25), rgba(61,183,228,0.25));
  border-color: rgba(255,91,159,0.5);
}

.footer-fine {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

/* =========================================================================
   Reveal-on-scroll utility
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================================
   CUTE ANIMATIONS  (apply to sections after the babo splash)
   ========================================================================= */

/* Make sure these sections clip their floating decorations */
.menu, .visit { overflow: hidden; }
footer { position: relative; overflow: hidden; }

.menu-inner,
.catering-inner,
.visit-inner,
.footer-inner { position: relative; z-index: 1; }

/* ---- Catering background blobs slowly drift ----------------------------- */
.catering::before { animation: blobDrift1 18s ease-in-out infinite; }
.catering::after  { animation: blobDrift2 22s ease-in-out infinite; }
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, 30px) scale(1.05); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, -20px) scale(1.08); }
}

/* ---- Catering tile reveal: stagger + bouncy entry ----------------------- */
.catering-fact.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.94);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.catering-fact.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.catering-facts .catering-fact:nth-child(1).reveal { transition-delay: 0.05s; }
.catering-facts .catering-fact:nth-child(2).reveal { transition-delay: 0.20s; }
.catering-facts .catering-fact:nth-child(3).reveal { transition-delay: 0.35s; }

/* Hover: cheeky tilt */
.catering-fact:hover { transform: translateY(-4px) rotate(-1deg); }
.catering-fact:nth-child(2):hover { transform: translateY(-4px) rotate( 1deg); }
.catering-fact:nth-child(3):hover { transform: translateY(-4px) rotate(-1deg); }

/* Big number pop after the tile reveals */
.catering-fact-num { display: inline-block; transform-origin: bottom left; }
.catering-fact.reveal.visible .catering-fact-num {
  animation: numPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.catering-facts .catering-fact:nth-child(1).reveal.visible .catering-fact-num { animation-delay: 0.25s; }
.catering-facts .catering-fact:nth-child(2).reveal.visible .catering-fact-num { animation-delay: 0.40s; }
.catering-facts .catering-fact:nth-child(3).reveal.visible .catering-fact-num { animation-delay: 0.55s; }

@keyframes numPop {
  0%   { transform: scale(0.4) rotate(-12deg); opacity: 0; }
  60%  { transform: scale(1.18) rotate(4deg);  opacity: 1; }
  100% { transform: scale(1) rotate(0);        opacity: 1; }
}

/* The infinity symbol gets to spin lazily on its own */
.catering-fact:nth-child(2) .catering-fact-num {
  animation: infinitySway 9s ease-in-out infinite;
}
@keyframes infinitySway {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}

/* ---- Phone CTA: pulsing ring + ringing-icon wiggle ---------------------- */
.catering-phone { position: relative; }
.catering-phone::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--pink-soft);
  opacity: 0;
  animation: phoneRing 2.6s ease-out infinite;
  pointer-events: none;
}
.catering-phone::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--pink-soft);
  opacity: 0;
  animation: phoneRing 2.6s ease-out infinite;
  animation-delay: 1.3s;
  pointer-events: none;
}
@keyframes phoneRing {
  0%   { transform: scale(0.92); opacity: 0; }
  20%  { opacity: 0.55; }
  100% { transform: scale(1.18); opacity: 0; }
}

.catering-phone-icon {
  animation: phoneWiggle 3.4s ease-in-out infinite;
  transform-origin: 50% 60%;
}
@keyframes phoneWiggle {
  0%, 60%, 100% { transform: rotate(0deg); }
  62% { transform: rotate(-15deg); }
  64% { transform: rotate(15deg); }
  66% { transform: rotate(-12deg); }
  68% { transform: rotate(12deg); }
  70% { transform: rotate(0deg); }
}

/* ---- Menu callout star spins/pulses ------------------------------------- */
.menu-callout .star {
  display: inline-block;
  transform-origin: center;
  animation: starSpin 4.2s ease-in-out infinite;
}
@keyframes starSpin {
  0%, 100% { transform: rotate(0deg)   scale(1); }
  20%      { transform: rotate(-18deg) scale(1.25); }
  40%      { transform: rotate(18deg)  scale(1.15); }
  60%      { transform: rotate(0deg)   scale(1); }
}

/* ---- Menu images get a subtle tilt-in on reveal ------------------------- */
.menu-image.reveal { transform: translateY(40px) rotate(-1.5deg); }
.menu-image.reveal.visible { transform: translateY(0) rotate(0); }
.menu-image:nth-child(2).reveal { transform: translateY(40px) rotate(1.5deg); }
.menu-image:nth-child(2).reveal.visible { transform: translateY(0) rotate(0); }

/* ---- Visit-meta rows slide in horizontally, staggered ------------------- */
.visit-row.reveal { transform: translateX(-18px); }
.visit-row.reveal.visible { transform: translateX(0); }
.visit-meta .visit-row:nth-child(1).reveal { transition-delay: 0.05s; }
.visit-meta .visit-row:nth-child(2).reveal { transition-delay: 0.18s; }
.visit-meta .visit-row:nth-child(3).reveal { transition-delay: 0.31s; }
.visit-meta .visit-row:nth-child(4).reveal { transition-delay: 0.44s; }
.visit-row { transition: transform 0.25s ease, background 0.25s ease; }
.visit-row.reveal.visible:hover {
  transform: translateX(4px);
}

/* ---- Footer logo: gentle bob ------------------------------------------- */
.footer-logo {
  animation: footerLogoBob 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes footerLogoBob {
  0%, 100% { transform: translateY(0)   rotate(0); }
  50%      { transform: translateY(-6px) rotate(-2deg); }
}

/* ---- Reduced motion: turn off all the loops --------------------------- */
@media (prefers-reduced-motion: reduce) {
  .deco-floats .float,
  .catering::before,
  .catering::after,
  .catering-phone::before,
  .catering-phone::after,
  .catering-phone-icon,
  .catering-fact:nth-child(2) .catering-fact-num,
  .menu-callout .star,
  .footer-logo {
    animation: none !important;
  }
  .catering-fact.reveal.visible .catering-fact-num {
    animation: none !important;
  }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 768px) {
  #navbar { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-logo { font-size: 20px; }

  /* Cute decorations: smaller and fewer so they don't crowd narrow screens */
  .deco-floats .float { font-size: 22px; opacity: 0.4; }
  .deco-floats .float.f4,
  .deco-floats .float.f5 { display: none; }

  .beats { grid-template-columns: 1fr; gap: 24px; }

  .group-head { grid-template-columns: 1fr; gap: 12px; }
  .menu-group { padding: 28px 20px; }

  .dish {
    grid-template-columns: 72px 1fr auto;
    gap: 4px 14px;
    padding: 14px 8px;
  }
  .dish-thumb { width: 72px; height: 72px; border-radius: 14px; }
  .dish-thumb .dish-emoji { font-size: 30px; }
  .dish-fr { font-size: 16px; }
  .dish-en { font-size: 12px; }
  .dish-price { font-size: 17px; }

  .visit-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .visit-label { font-size: 10px; }
}
