/* =========================================================
   Patisserie Royale — Design System
   ========================================================= */

:root {
  /* =========================================================
     Palette — Official Pâtisserie Royale brand kit.
     Derived from the logo + pattern:
       chocolate #482818 · gold #D8B830 · cherry #E00030
     Warm ivory surfaces keep food appetizing + text readable;
     deep-cocoa "rooms" (footer / ink section) wear the gold
     pattern as the brand's signature bold moment.
     ========================================================= */
  --canvas: #F6F1E6;          /* warm ivory */
  --surface: #FFFDF8;         /* warm near-white (never pure #fff) */
  --surface-soft: #FBF6EB;

  --ink: #2A1810;             /* deep chocolate — body text + dark UI */
  --ink-soft: #5A4434;        /* softer cocoa for secondary text */
  --muted: #8A7867;           /* warm taupe */
  --line: #E8DECE;            /* warm hairline */
  --line-strong: #D6C8B2;

  /* Brand primary — chocolate (the wordmark color).
     Token name kept as --burgundy so all existing component CSS
     cascades to the new brand color without per-rule edits. */
  --burgundy: #482818;        /* chocolate cocoa — primary */
  --burgundy-dark: #2E1A0F;   /* darker cocoa — hover/pressed */

  /* Gold — the signature accent (cupcake frosting + pattern) */
  --gold: #D8B830;            /* brand gold: fills, pattern, gold-on-dark */
  --gold-ink: #9A6E0A;        /* deep gold: readable accent on light bg */
  --gold-soft: #F4E6B0;       /* pale gold wash */

  /* Cherry — rare pop accent */
  --cherry: #E00030;
  --cherry-soft: #FBE0E4;

  /* Pastel accent system (washed, semantic tags only) */
  --pale-red: #FBE0E4;
  --pale-red-ink: #B01028;
  --pale-cream: #FBF1D4;
  --pale-cream-ink: #8A6206;
  --pale-green: #EDF3EC;
  --pale-green-ink: #346538;

  /* Section tones — the warm rooms each section lives in */
  --tone-canvas: #F6F1E6;
  --tone-cream: #EFE5D0;      /* warm cream */
  --tone-butter: #FBF1D4;     /* buttery gold-tint */
  --tone-ink: #20120A;        /* deep cocoa-black — hosts gold pattern */

  /* Bento tile fills — warm brown/gold family */
  --tile-rose: #F3E6CC;       /* soft gold-cream */
  --tile-cream: #EFE2CC;
  --tile-butter: #FAF2DF;
  --tile-mint: #E7DAC4;       /* warm sand (was sage) */

  /* Semantic status (dietary tags + checkout pills) */
  --status-veg-bg: #DCEBD4;
  --status-veg-ink: #4A6B3B;
  --status-success: #4FAE6B;
  --status-error: #C0202E;

  /* Legacy aliases — keep so existing component CSS doesn't break;
     they now point to the new palette */
  --cream: var(--canvas);
  --cream-soft: var(--surface-soft);
  --cream-deep: #EFE6D4;
  --pink-soft: var(--gold-soft);   /* hover washes now read gold, not pink */
  --pink-blush: #F1E2BE;
  --white: #FFFDF8;

  /* Typography */
  --font-script: 'Pinyon Script', 'Allison', cursive;
  --font-display: 'Fraunces', 'Newsreader', 'Instrument Serif', Georgia, serif;
  --font-serif: 'Fraunces', 'Newsreader', Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display',
               'Geist', 'Helvetica Neue', 'Switzer', Helvetica, Arial, sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', 'JetBrains Mono', ui-monospace, monospace;
  --font-accent: 'Caveat', 'Allura', cursive;

  /* Layout */
  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-bezel: 32px;     /* Double-Bezel outer shell */
  --radius-bezel-in: 24px;  /* Inner core: bezel - shell-padding */
  --radius-pill: 999px;
  --radius-btn: 999px;      /* pill-shape primary CTAs */

  /* Custom easings (real-world mass + spring physics) */
  --ease-out-soft: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out-spring: cubic-bezier(0.16, 1, 0.3, 1);

  /* Ultra-diffuse shadows (use sparingly; mostly replaced by borders) */
  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.025);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-button: none;
}

/* =========================================================
   Reset & Base
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  /* Mobile stability */
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1, 'cv11' 1;
  /* Mobile stability — lock horizontal scroll */
  overflow-x: clip;
  width: 100%;
  position: relative;
  overscroll-behavior-x: none;
}

/* Constrain all media — no fixed widths can poke past the viewport */
img, video, iframe, embed, object, svg {
  max-width: 100%;
}
img { display: block; }

/* Long words / URLs wrap instead of overflowing */
h1, h2, h3, h4, h5, p, a, span, li, button, label {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Allow flex / grid children to shrink (default min-width:auto blocks shrink) */
.nav, .nav-actions, .hero-grid, .hero-actions, .hero-text, .hero-visual,
.feature-grid, .about-preview, .story-section, .location-grid, .contact-grid,
.product-grid, .menu-grid, .testimonial-grid, .values-grid, .team-grid,
.gallery-grid, .footer-grid, .course-list, .course-item, .reservation-card,
.cart-item, .mobile-cart-bar, .mobile-nav-links a, .mobile-nav-contact-item {
  min-width: 0;
}
.nav > *, .nav-actions > *, .hero-actions > *, .footer-grid > *,
.cart-item > *, .mobile-cart-bar > * {
  min-width: 0;
}

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

button { font-family: inherit; cursor: pointer; border: none; }

/* =========================================================
   Focus indicators — visible for every keyboard user
   ========================================================= */

/* Hide the default outline when the focus came from mouse/touch */
:focus:not(:focus-visible) { outline: none; }

/* Universal keyboard-focus ring — burgundy on canvas halo */
:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Pill / rounded interactives keep the offset but their own radius */
.btn:focus-visible,
.circle-btn:focus-visible,
.icon-btn:focus-visible,
.menu-toggle:focus-visible,
.filter-pill:focus-visible,
.mobile-nav-close:focus-visible {
  border-radius: var(--radius-pill);
}

/* Cards & tiles get a tighter offset to keep the ring readable */
.bento-tile:focus-visible,
.menu-item:focus-visible,
.team-card:focus-visible,
.testimonial:focus-visible,
.value-card:focus-visible,
.gallery-grid .tile:focus-visible {
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

/* Nav links — tighter ring underneath the active dot */
.nav-links a:focus-visible,
.footer-grid a:focus-visible {
  outline-offset: 6px;
}

/* Skip link — hidden until focused, then snaps in */
.skip-link {
  position: fixed;
  top: -120px;
  left: 12px;
  z-index: 200;
  background: var(--ink);
  color: var(--canvas);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: top 280ms var(--ease-out-soft);
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 12px;
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.08;
  margin: 0;
  font-variation-settings: 'opsz' 80, 'SOFT' 60, 'WONK' 0;
  font-feature-settings: 'kern' 1, 'ss01' 1, 'ss02' 1;
}

h1 {
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 0;
  font-weight: 450;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h2 {
  font-variation-settings: 'opsz' 100, 'SOFT' 80, 'WONK' 0;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.05;
}

h3 {
  font-variation-settings: 'opsz' 40, 'SOFT' 40, 'WONK' 0;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

h4, h5 {
  font-variation-settings: 'opsz' 20, 'SOFT' 30, 'WONK' 0;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
}

p { margin: 0; color: var(--ink-soft); }

/* Refined eyebrow / overline label */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  line-height: 1;
  font-feature-settings: 'kern' 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Numbered editorial eyebrow — N° 01, 02, 03… */
.eyebrow-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  color: inherit;
  opacity: 0.55;
  font-variation-settings: 'opsz' 20, 'SOFT' 40;
  font-feature-settings: 'tnum' 1, 'ss01' 1;
}
.eyebrow-bar {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  flex-shrink: 0;
}

/* ============================================================
   Premium primitives — paper grain, hairline rules, drop caps
   ============================================================ */

/* Paper grain — subtle SVG noise overlay (fixed across viewport).
   Low z-index keeps it behind any future modals, drawers or toasts.
   Lower opacity since the texture is plenty strong already. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.18 0 0 0 0 0.12 0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}
/* Drop the grain on small screens — mobile GPUs struggle with the
   full-viewport multiply blend, and the texture isn't readable at that size. */
@media (max-width: 640px) {
  body::after { display: none; }
}

/* Hairline rule utility */
.rule {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--ink);
  opacity: 0.18;
  margin: 0 auto;
  border: 0;
}
.rule-tall {
  display: inline-block;
  width: 1px;
  height: 48px;
  background: var(--ink);
  opacity: 0.18;
}

/* Drop cap — applies automatically to first paragraph of story prose */
.story-text > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 5.2em;
  float: left;
  line-height: 0.82;
  padding: 8px 14px 0 0;
  color: var(--burgundy);
  font-weight: 450;
  letter-spacing: -0.022em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 0;
  -webkit-font-smoothing: antialiased;
}

/* Footer link reveal-underline */
.site-footer ul a {
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
}
.site-footer ul a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--pink-soft);
  transition: width 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.site-footer ul a:hover::after {
  width: 100%;
}

/* Refined card hover — subtler movement, no shadow inflation */
.product-card,
.menu-item,
.value-card,
.testimonial,
.team-card {
  will-change: transform;
}
/* Subtle, document-style: no transform on hover, just border + shadow shift */
.product-card:hover,
.menu-item:hover,
.value-card:hover,
.testimonial:hover {
  transform: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}


/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 26px;
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  line-height: 1;
  transition: background 360ms var(--ease-out-soft),
              color 240ms var(--ease-out-soft),
              transform 240ms var(--ease-out-soft),
              border-color 240ms var(--ease-out-soft),
              box-shadow 360ms var(--ease-out-soft);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--burgundy);
  color: var(--surface);
  border-color: var(--burgundy);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 1px 2px rgba(80, 32, 15, 0.18);
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 12px;
  font-weight: 500;
  border-color: transparent;
}
.btn-ghost:hover { color: var(--burgundy); }
.btn-ghost .arrow { transition: transform 360ms var(--ease-out-soft); }
.btn-ghost:hover .arrow { transform: translateX(3px); }

.btn-outline {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 14px 22px 14px 24px;
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--surface);
}

/* Button-in-Button: trailing arrow nested inside its own circle */
.btn .btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 6px;
  transition: transform 480ms var(--ease-out-soft),
              background 240ms var(--ease-out-soft);
}
.btn-outline .btn-icon,
.btn-ghost .btn-icon {
  background: rgba(17, 17, 17, 0.06);
  color: var(--ink);
}
.btn:hover .btn-icon {
  transform: translate(2px, -1px) scale(1.05);
  background: rgba(255, 255, 255, 0.24);
}
.btn-outline:hover .btn-icon,
.btn-ghost:hover .btn-icon {
  background: rgba(17, 17, 17, 0.1);
}

.circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.circle-btn:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: scale(1.05);
}
.circle-btn.large {
  width: 60px;
  height: 60px;
  background: var(--burgundy);
  color: var(--white);
}
.circle-btn.large:hover {
  background: var(--burgundy-dark);
  transform: scale(1.05);
}

/* =========================================================
   Header / Navigation
   ========================================================= */

/* Fluid Island Nav — detached floating pill */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  margin: 16px auto 0;
  max-width: min(calc(100% - 32px), 1080px);
  /* Apple-style liquid glass: translucent warm tint + saturated blur, a
     bright top rim + inner highlight so it reads as a real glass pane, and
     a soft warm drop shadow. Content frosts beautifully as it scrolls under. */
  background:
    linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(250,246,239,0.5) 46%, rgba(247,243,235,0.55) 100%);
  backdrop-filter: saturate(185%) blur(26px);
  -webkit-backdrop-filter: saturate(185%) blur(26px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0.5px rgba(255, 255, 255, 0.9),
    inset 0 -1px 1px rgba(72, 40, 24, 0.04),
    0 10px 26px -12px rgba(72, 40, 24, 0.20),
    0 22px 50px -26px rgba(72, 40, 24, 0.28);
  transition: top 360ms var(--ease-out-soft),
              box-shadow 360ms var(--ease-out-soft);
}
/* Lighter blur on mobile — backdrop-filter at 20px+ is a real
   GPU cost on every scroll frame for low-end Android. */
@media (max-width: 640px) {
  .site-header {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(250,246,239,0.62) 100%);
    backdrop-filter: saturate(170%) blur(18px);
    -webkit-backdrop-filter: saturate(170%) blur(18px);
  }
}
.site-header .container.nav {
  padding-left: 24px;
  padding-right: 14px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 28px;
}

.brand {
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
}
.brand:hover { color: var(--burgundy); }
/* Official logo lockup in the header */
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
  transition: opacity 0.3s var(--ease-out-soft, ease);
}
.brand:hover .brand-logo { opacity: 0.82; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--burgundy);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--burgundy);
}

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

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.2s ease;
}
.icon-btn:hover { background: var(--cream-deep); }

.menu-toggle {
  display: none;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.menu-toggle:hover { background: var(--cream-deep); }

/* =========================================================
   Hero (Home)
   ========================================================= */

.hero {
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Slow ambient radial blob — adds depth without breaking minimalism */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 90%;
  height: 110%;
  background: radial-gradient(circle at 50% 50%,
              rgba(216, 184, 48, 0.07) 0%,
              rgba(253, 235, 236, 0.04) 35%,
              transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: hero-drift 28s ease-in-out infinite alternate;
  filter: blur(40px);
}
@keyframes hero-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-6%, 4%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(72px, 11vw, 156px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 0;
  color: var(--ink);
}
.hero h1 .line {
  display: block;
}
.hero h1 .line + .line {
  margin-top: 0.02em;
}
.hero h1 .period {
  color: var(--burgundy);
  display: inline-block;
  margin-left: 0.02em;
}

/* Handwritten founder signature beneath the title */
.hero-sig {
  display: block;
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--burgundy);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 36px;
  padding-left: 0.35em;
  transform: rotate(-1.5deg);
  transform-origin: left center;
}

.hero p.lead {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 48px;
  line-height: 1.65;
  letter-spacing: 0;
}

/* Hero overline — small caps label with rule */
.hero-overline {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
}
.hero-overline::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--burgundy);
  display: inline-block;
}

/* Obsolete handwritten line styles removed — replaced by .hero h1 .line + .hero-sig */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 48px;
  flex-wrap: wrap;
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  width: fit-content;
  max-width: 100%;
}
.hero-socials::before {
  content: 'Follow';
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-right: 6px;
  align-self: center;
  padding-top: 8px;
}
.hero-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-socials a:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero visual — Double-Bezel: outer shell wraps an inner core */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 0.95;
  border-radius: var(--radius-bezel);
  padding: 8px;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.025) 100%);
  border: 1px solid rgba(17, 17, 17, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 30px 60px -30px rgba(80, 32, 15, 0.18);
  will-change: transform;
  transform-origin: center center;
}
.hero-visual .image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-bezel-in);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--cream-deep) 100%);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.96);
  transition: filter 0.6s ease, transform 0.8s var(--ease-out-soft);
  will-change: transform;
}
.hero-visual:hover img { transform: scale(1.02); }
.hero-visual .image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(26, 20, 16, 0.18) 100%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  border-radius: inherit;
}

/* =========================================================
   Section primitives
   ========================================================= */

section { padding: 160px 0; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 68px;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 18px;
  font-variation-settings: 'opsz' 100, 'SOFT' 80, 'WONK' 0;
}
.section-head p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

/* =========================================================
   Product Cards (Featured)
   ========================================================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.product-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}

.product-card .product-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }

.product-info {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.product-info h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.product-info .product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.product-info .product-meta strong {
  color: var(--burgundy);
  font-weight: 600;
}

/* =========================================================
   Bento Showcase — pastel mosaic of the counter
   ========================================================= */

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, minmax(180px, 1fr));
  gap: 16px;
}

.bento-tile {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1),
              box-shadow 0.45s ease;
  min-height: 180px;
  cursor: pointer;
}

/* Tile fill colors — driven by token, not inline style */
.bento-tile.tile-1 { background: var(--tile-rose); }
.bento-tile.tile-3 { background: var(--tile-cream); }
.bento-tile.tile-4 { background: var(--tile-butter); }
.bento-tile.tile-5 { background: var(--tile-mint); }
.bento-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(80, 32, 15, 0.14);
}

/* Photo tile — framed image floating on colored background */
.bento-tile.has-image .tile-photo-wrap {
  position: absolute;
  inset: 14% 14% 30% 14%;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(80, 32, 15, 0.08);
}
.bento-tile.has-image .tile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.32, 0.72, 0, 1);
}
.bento-tile.has-image:hover .tile-photo-wrap img {
  transform: scale(1.06);
}

/* Pill label overlay */
.bento-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
  max-width: calc(100% - 36px);
}
.bento-label .price {
  color: var(--burgundy);
  font-weight: 700;
}
.bento-label .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--burgundy);
  flex-shrink: 0;
}

/* Featured CTA tile (burgundy) */
.bento-tile.text-tile {
  background: var(--burgundy);
  color: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.bento-tile.text-tile .tile-eyebrow {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.bento-tile.text-tile h3 {
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1.2;
  color: var(--white);
  margin: 10px 0 0;
  font-weight: 600;
}
.bento-tile.text-tile .tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: auto;
}
.bento-tile.text-tile .tile-cta svg {
  transition: transform 0.3s ease;
}
.bento-tile.text-tile:hover .tile-cta svg {
  transform: translateX(4px);
}

/* Social tile (Instagram) */
.bento-tile.social-tile {
  background: var(--pink-blush);
  color: var(--burgundy-dark);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.bento-tile.social-tile .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--burgundy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bento-tile.social-tile h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  margin: 0;
  color: var(--burgundy-dark);
  line-height: 1.2;
}
.bento-tile.social-tile p {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 6px 0 0;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Decorative floating shapes on photo tiles (gives the bento "air") */
.bento-tile.has-image::after {
  content: '';
  position: absolute;
  top: 22px;
  right: 22px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  z-index: 1;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.bento-tile.has-image:hover::after {
  opacity: 1;
  transform: scale(1);
}
.bento-tile.has-image .corner-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.bento-tile.has-image:hover .corner-arrow {
  opacity: 1;
}

/* Grid positions — 3 cols × 3 rows asymmetric */
.bento .tile-1 { grid-column: 1; grid-row: 1 / span 2; }
.bento .tile-2 { grid-column: 2; grid-row: 1; }
.bento .tile-3 { grid-column: 3; grid-row: 1 / span 2; }
.bento .tile-4 { grid-column: 2; grid-row: 2 / span 2; }
.bento .tile-5 { grid-column: 1; grid-row: 3; }
.bento .tile-6 { grid-column: 3; grid-row: 3; }

@media (max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 170px);
    gap: 14px;
  }
  .bento .tile-1 { grid-column: 1; grid-row: 1 / span 2; }
  .bento .tile-2 { grid-column: 2; grid-row: 1; }
  .bento .tile-3 { grid-column: 2; grid-row: 2; }
  .bento .tile-4 { grid-column: 1 / span 2; grid-row: 3; min-height: 220px; }
  .bento .tile-5 { grid-column: 1; grid-row: 4 / span 2; }
  .bento .tile-6 { grid-column: 2; grid-row: 4 / span 2; }
}

@media (max-width: 640px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    /* minmax(150px, auto) prevents content overflow into the next row
       which was causing tile-2 ("Custom cakes") to spill over tile-3. */
    grid-auto-rows: minmax(150px, auto);
    gap: 12px;
  }
  .bento .tile-1 { grid-column: 1; grid-row: 1 / span 2; min-height: 312px; }
  .bento .tile-2 { grid-column: 2; grid-row: 1; }
  .bento .tile-3 { grid-column: 2; grid-row: 2; }
  .bento .tile-4 { grid-column: 1 / span 2; grid-row: 3; min-height: 200px; }
  .bento .tile-5 { grid-column: 1; grid-row: 4; }
  .bento .tile-6 { grid-column: 2; grid-row: 4; }
  .bento-tile { border-radius: 22px; }
  .bento-tile.text-tile { padding: 18px; }
  .bento-tile.text-tile h3 { font-size: 18px; }
  .bento-tile.social-tile { padding: 16px; }
  .bento-tile.social-tile h3 {
    font-size: 14.5px;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }
  .bento-tile.social-tile p { font-size: 12px; margin-top: 4px; }
  .bento-tile.social-tile .social-icon {
    width: 34px; height: 34px;
    margin-bottom: 8px;
  }
  .bento-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 7px 10px;
    font-size: 10.5px;
    gap: 6px;
    /* Wrap multi-piece labels rather than overflow */
    flex-wrap: wrap;
  }
  .bento-label .dot { display: none; }
  .bento-tile.has-image .tile-photo-wrap { inset: 14% 14% 38% 14%; }
}

/* =========================================================
   Feature strip (Signature Coffee)
   ========================================================= */

.feature-strip {
  background: var(--pink-soft);
  padding: 0;
  border-radius: 0;
}
.feature-strip .container { padding: 0 32px; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.feature-visual {
  aspect-ratio: 1 / 0.9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-text .eyebrow { margin-bottom: 12px; display: inline-block; }
.feature-text h2 {
  font-size: clamp(36px, 4.5vw, 54px);
  margin-bottom: 20px;
}
.feature-text p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
}

/* =========================================================
   About preview
   ========================================================= */

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview .visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 1;
}
.about-preview .visual > div {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-deep);
}
.about-preview .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-preview .visual > div:first-child { grid-row: 1 / 3; }

.about-preview .text h2 {
  font-size: clamp(36px, 4vw, 50px);
  margin-bottom: 20px;
}
.about-preview .text p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* =========================================================
   Gallery preview / Gallery page
   ========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-grid .tile {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-deep);
  transition: transform 0.3s ease;
}
.gallery-grid .tile:hover { transform: scale(1.02); }
.gallery-grid .tile.tall { aspect-ratio: 1 / 1.5; grid-row: span 2; }
.gallery-grid .tile.wide { aspect-ratio: 2; grid-column: span 2; }
.gallery-grid .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid .tile:hover img { transform: scale(1.08); }

/* =========================================================
   Testimonials
   ========================================================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--surface);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.testimonial .stars {
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 40, 'SOFT' 60, 'WONK' 0;
  position: relative;
}
.testimonial p::before {
  content: '\201C';
  position: absolute;
  top: -22px;
  left: -8px;
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--pink-soft);
  line-height: 1;
  font-weight: 500;
  pointer-events: none;
  z-index: 0;
}
.testimonial p > * { position: relative; z-index: 1; }
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  color: var(--burgundy);
  font-weight: 600;
}
.testimonial .author-name {
  font-weight: 500;
  color: var(--ink);
  font-size: 15px;
}
.testimonial .author-role {
  font-size: 13px;
  color: var(--muted);
}

/* =========================================================
   CTA Banner
   ========================================================= */

.cta-banner {
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(36px, 4.5vw, 54px);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 17px;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--burgundy);
}
.cta-banner .btn-primary:hover {
  background: var(--cream);
  color: var(--burgundy-dark);
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--tone-ink);
  color: rgba(255, 253, 248, 0.75);
  padding: 80px 0 40px;
  margin-top: 60px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
/* Brand pattern — faint gold motifs tiled across the cocoa footer */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('pattern.png');
  background-size: 320px auto;
  background-repeat: repeat;
  opacity: 0.07;
}
.site-footer > .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  margin-bottom: 18px;
  line-height: 1;
}
/* Official white logo in the footer */
.footer-logo {
  height: 56px;
  width: auto;
  display: block;
}
.footer-grid p { color: rgba(255, 255, 255, 0.65); max-width: 280px; }
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255, 255, 255, 0.65); font-size: 15px; }
.footer-grid a:hover { color: var(--pink-soft); }
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.footer-socials a:hover {
  background: var(--burgundy);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   Page hero (used by inner pages)
   ========================================================= */

.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
}
.page-hero .eyebrow { margin-bottom: 14px; display: inline-block; }
.page-hero h1 {
  font-size: clamp(50px, 7vw, 92px);
  font-weight: 450;
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 0;
}
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}
.breadcrumbs a:hover { color: var(--burgundy); }

/* =========================================================
   Menu page
   ========================================================= */

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}
.filter-pill {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-pill:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.filter-pill.active {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.menu-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}
.menu-item:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}
.menu-item .item-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.menu-item .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-item:hover .item-image img { transform: scale(1.06); }
.menu-item .item-body {
  padding: 24px 26px 26px;
}
.menu-item h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.menu-item .item-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.55;
}
.menu-item .item-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-item .price {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--burgundy);
  font-weight: 600;
}

/* =========================================================
   Story / About page
   ========================================================= */

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.story-section:nth-child(even) .story-text { order: 2; }
.story-section .story-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story-section .story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-section h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 20px;
}
.story-section p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.value-card {
  background: var(--surface);
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-align: left;
}
.value-card .value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--burgundy);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.value-card p { font-size: 15px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.team-card { text-align: center; }
.team-card .team-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--cream-deep);
}
.team-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.team-card .team-role {
  color: var(--burgundy);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   Location page
   ========================================================= */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.location-info {
  background: var(--surface);
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.location-info h2 {
  font-size: 36px;
  margin-bottom: 8px;
}
.location-info .badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--pink-soft);
  color: var(--burgundy);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  font-weight: 500;
}
.info-block {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.info-block:last-child { border-bottom: none; }
.info-block .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-block h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.info-block p { font-size: 16px; color: var(--ink); }

.map-wrapper {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink);
}
.hours-list li span:last-child { color: var(--ink-soft); }

/* =========================================================
   Contact page
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  background: var(--burgundy);
  color: var(--white);
  padding: 50px 44px;
  border-radius: var(--radius-lg);
}
.contact-info h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 12px;
}
.contact-info p { color: rgba(255, 255, 255, 0.8); margin-bottom: 32px; }
.contact-info .info-block { border-color: rgba(255, 255, 255, 0.15); }
.contact-info .info-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.contact-info .info-block h4 { color: rgba(255, 255, 255, 0.6); }
.contact-info .info-block p { color: var(--white); margin: 0; }
.contact-info .footer-socials { margin-top: 30px; }
.contact-info .footer-socials a { background: rgba(255, 255, 255, 0.1); }
.contact-info .footer-socials a:hover { background: var(--white); color: var(--burgundy); }

.contact-form {
  background: var(--surface);
  padding: 50px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.contact-form h3 {
  font-size: 28px;
  margin-bottom: 8px;
}
.contact-form .form-subtitle {
  color: var(--muted);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream-soft);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(72, 40, 24, 0.22);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

/* =========================================================
   Restaurant page — course-style menu
   ========================================================= */

.course-block { margin-bottom: 80px; }
.course-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.course-head .course-title h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 6px;
}
.course-head .course-title .eyebrow { display: inline-block; margin-bottom: 6px; }
.course-head p {
  max-width: 360px;
  text-align: right;
  font-size: 15px;
  color: var(--muted);
}

.course-list { display: flex; flex-direction: column; gap: 28px; }
.course-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: baseline;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
}
.course-item:last-child { border-bottom: none; }
.course-item h3 {
  font-size: 22px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.course-item .tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--pink-soft);
  color: var(--burgundy);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-family: var(--font-sans);
}
.course-item .tag.veg { background: var(--status-veg-bg); color: var(--status-veg-ink); }
.course-item .tag.signature { background: var(--burgundy); color: var(--white); }
.course-item .desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
}
.course-item .course-price {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--burgundy);
  font-weight: 600;
  white-space: nowrap;
}

.reservation-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.reservation-card h3 {
  font-size: 32px;
  margin-bottom: 12px;
}
.reservation-card .res-hours {
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}
.reservation-card .res-hours h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 600;
}

.dish-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}
.dish-strip .tile {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.dish-strip .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dish-strip .tile:hover img { transform: scale(1.06); }

.tasting-banner {
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--pink-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.tasting-banner h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 14px;
}
.tasting-banner .tasting-price {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--burgundy);
  font-weight: 600;
  line-height: 1;
}
.tasting-banner .tasting-price small {
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 6px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .reservation-card { grid-template-columns: 1fr; }
  .dish-strip { grid-template-columns: repeat(2, 1fr); }
  .tasting-banner { grid-template-columns: 1fr; padding: 40px 32px; text-align: left; }
  .course-head p { text-align: left; }
}

@media (max-width: 640px) {
  .course-item { grid-template-columns: 1fr; gap: 8px; }
  .course-item .course-price { font-size: 20px; }
  .reservation-card { padding: 28px 24px; }
}

/* =========================================================
   Cart — badge, drawer, items, toast
   ========================================================= */

.icon-btn { position: relative; }

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid var(--cream);
  font-family: var(--font-sans);
}
.cart-badge.visible { display: inline-flex; }

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 20, 16, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 250;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cart-backdrop.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: var(--cream-soft);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -20px 0 60px rgba(80, 32, 15, 0.18);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  padding: 28px 32px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-header h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin: 0;
}
.cart-drawer-header .close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.2s ease;
}
.cart-drawer-header .close:hover { background: var(--cream-deep); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  height: 100%;
  color: var(--muted);
}
.cart-empty .empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.cart-empty h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}
.cart-empty p { font-size: 15px; margin-bottom: 24px; }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item .ci-thumb {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream-deep);
}
.cart-item .ci-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
}
.cart-item .ci-price {
  font-size: 14px;
  color: var(--muted);
}
.cart-item .ci-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  background: var(--white);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
}
.cart-item .ci-qty button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 16px;
  transition: background 0.2s ease;
}
.cart-item .ci-qty button:hover { background: var(--pink-soft); color: var(--burgundy); }
.cart-item .ci-qty span {
  min-width: 22px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
.cart-item .ci-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.cart-item .ci-total {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--burgundy);
  font-weight: 600;
}
.cart-item .ci-remove {
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.cart-item .ci-remove:hover { color: var(--burgundy); }

.cart-drawer-foot {
  padding: 22px 32px 28px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 15px;
}
.cart-summary.total {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  margin: 14px 0 18px;
  font-weight: 600;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.cart-summary.total .amount { color: var(--burgundy); }
.cart-drawer-foot .btn-primary { width: 100%; justify-content: center; }
.cart-foot-stack { display: flex; flex-direction: column; gap: 16px; }
.cart-totals .cart-summary.total { margin: 0; padding-top: 12px; }
.cart-foot-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: stretch;
}
.cart-foot-actions .btn,
.cart-foot-actions .btn-whatsapp { width: 100%; margin: 0; }
.cart-foot-checkout .btn-primary { width: 100%; }
.cart-drawer-foot .note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Checkout step inside drawer */
.checkout-step .form-group { margin-bottom: 14px; }
.checkout-step .form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.checkout-step .form-group input,
.checkout-step .form-group textarea,
.checkout-step .form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
}
.checkout-step .form-group input:focus,
.checkout-step .form-group textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(72, 40, 24, 0.22);
}
.checkout-step .form-group textarea { min-height: 70px; resize: vertical; }
.checkout-step .back-btn {
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  padding: 6px 0;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.checkout-step .back-btn:hover { color: var(--burgundy); }

.cart-success {
  text-align: center;
  padding: 50px 24px;
}
.cart-success .success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: #2E1A0F;
  margin: 0 auto 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 14px 30px -14px rgba(154,110,10,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-success h4 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--ink);
}
.cart-success p {
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Notifications — toast (add-to-order) + inline status chips
   ============================================================ */
.toast {
  position: fixed;
  left: 50%; bottom: 26px;
  transform: translate(-50%, 26px);
  width: max-content; max-width: min(380px, calc(100vw - 32px));
  display: flex; align-items: center; gap: 13px;
  padding: 12px 18px 12px 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 46px -20px rgba(42,24,16,0.55), 0 4px 14px -8px rgba(42,24,16,0.3);
  color: var(--ink);
  z-index: 600;
  opacity: 0; pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
  overflow: hidden;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast .toast-icon {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: #2E1A0F;
  display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45);
}
.toast .toast-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.toast .toast-title { font-family: var(--font-sans); font-weight: 600; font-size: 14px; letter-spacing: -0.005em; color: var(--ink); line-height: 1.2; }
.toast .toast-detail { font-family: var(--font-sans); font-size: 12.5px; color: var(--muted); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 230px; }
.toast .toast-bar { position: absolute; left: 0; bottom: 0; height: 2.5px; width: 100%; background: var(--gold); transform-origin: left center; transform: scaleX(0); }
.toast.show .toast-bar { animation: toastBar 2.6s linear forwards; }
@keyframes toastBar { from { transform: scaleX(1); } to { transform: scaleX(0); } }

/* Inline status chips — cart checkout (#coStatus) + contact form (#formStatus) */
.form-status {
  display: none; align-items: center; gap: 10px;
  margin-top: 16px; padding: 11px 15px;
  border-radius: 12px; border: 1px solid transparent;
  font-family: var(--font-sans); font-size: 13.5px; line-height: 1.4;
}
.form-status.show { display: flex; }
.form-status .fs-dot { flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.form-status .fs-text { color: var(--ink); }
.form-status.is-ok { background: rgba(216,184,48,0.14); border-color: rgba(154,110,10,0.30); color: var(--gold-ink); }
.form-status.is-pending { background: rgba(42,24,16,0.05); border-color: var(--line); color: var(--ink-soft); }
.form-status.is-pending .fs-dot { animation: fsPulse 1s ease-in-out infinite; }
.form-status.is-error { background: rgba(198,66,66,0.10); border-color: rgba(198,66,66,0.32); color: #b14a4a; }
.form-status.is-error .fs-text { color: #8f2f2f; }
@keyframes fsPulse { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .toast.show .toast-bar { animation: none; transform: scaleX(0); }
  .form-status.is-pending .fs-dot { animation: none; }
}

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .cart-drawer-header,
  .cart-drawer-foot { padding-left: 20px; padding-right: 20px; }
}

/* =========================================================
   Mobile navigation drawer — slide-in panel
   ========================================================= */

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  /* Lighter tint so the blur reads as frosted glass rather than a
     dark veil. The blur + saturation lift do the visual work. */
  background: rgba(26, 20, 16, 0.28);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  max-width: 420px;
  background: var(--cream-soft);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -20px 0 60px rgba(80, 32, 15, 0.18);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* iOS notch safe area */
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-nav.open {
  transform: translateX(0);
}
@media (max-width: 480px) {
  /* Leave a strip of the frosted-glass backdrop visible on the left
     so the user sees the blurred page behind and has an obvious
     tap-target to dismiss the drawer. */
  .mobile-nav { max-width: 86vw; }
}

/* Header */
.mobile-nav-header {
  position: sticky;
  top: 0;
  background: var(--cream-soft);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-header .brand {
  font-family: var(--font-script);
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
}
.mobile-nav-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: background 0.2s ease, transform 0.3s ease, color 0.2s ease;
  position: static;
  cursor: pointer;
}
.mobile-nav-close:hover {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
  transform: rotate(90deg);
}

/* Status pill */
.mobile-nav-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  font-family: var(--font-sans);
}
.mobile-nav-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mobile-nav-status.open .status-dot {
  background: var(--status-success);
  box-shadow: 0 0 0 3px rgba(79, 174, 107, 0.2);
  animation: nav-status-pulse 2s ease-in-out infinite;
}
.mobile-nav-status.closed .status-dot {
  background: var(--status-error);
  box-shadow: 0 0 0 3px rgba(176, 88, 75, 0.2);
}
@keyframes nav-status-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(79, 174, 107, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(79, 174, 107, 0.04); }
}

/* Section label */
.mobile-nav-label {
  padding: 22px 24px 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Nav links */
.mobile-nav-links {
  list-style: none;
  padding: 0 14px;
  margin: 0;
}
.mobile-nav-links li {
  margin-bottom: 2px;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
  background: var(--white);
  outline: none;
}
.mobile-nav-links a:active {
  transform: scale(0.98);
}
.mobile-nav-links a.active {
  background: var(--burgundy);
  color: var(--white);
}
.mobile-nav-links a.active .nav-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}
.mobile-nav-links a.active .nav-arrow {
  color: rgba(255, 255, 255, 0.85);
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav-links .nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.mobile-nav-links a:hover .nav-icon {
  background: var(--pink-soft);
}
.mobile-nav-links .nav-label {
  flex: 1;
  line-height: 1.2;
}
.mobile-nav-links .nav-arrow {
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.mobile-nav-links a:hover .nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* CTA group — now the last block in the drawer, so it carries the
   bottom padding (plus iOS safe-area inset) */
.mobile-nav-cta-group {
  padding: 18px 24px calc(28px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-cta-group .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 15px;
}

/* Contact section */
.mobile-nav-contact {
  padding: 0 24px 8px;
}
.mobile-nav-contact .mobile-nav-label {
  padding-left: 0;
  padding-right: 0;
  padding-top: 22px;
  padding-bottom: 6px;
}
.mobile-nav-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-nav-contact-item:hover {
  color: var(--burgundy);
}
.mobile-nav-contact-item:hover .contact-icon {
  background: var(--pink-soft);
}
.mobile-nav-contact-item .contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

/* Social */
.mobile-nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 24px 28px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}
.mobile-nav-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  text-decoration: none;
}
.mobile-nav-social a:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Staggered fade-in for nav items when drawer opens */
.mobile-nav.open .mobile-nav-links li {
  animation: navItemFadeIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) both;
}
.mobile-nav.open .mobile-nav-links li:nth-child(1) { animation-delay: 0.08s; }
.mobile-nav.open .mobile-nav-links li:nth-child(2) { animation-delay: 0.12s; }
.mobile-nav.open .mobile-nav-links li:nth-child(3) { animation-delay: 0.16s; }
.mobile-nav.open .mobile-nav-links li:nth-child(4) { animation-delay: 0.20s; }
.mobile-nav.open .mobile-nav-links li:nth-child(5) { animation-delay: 0.24s; }
.mobile-nav.open .mobile-nav-links li:nth-child(6) { animation-delay: 0.28s; }
.mobile-nav.open .mobile-nav-cta-group { animation: navItemFadeIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) both; animation-delay: 0.34s; }
.mobile-nav.open .mobile-nav-contact { animation: navItemFadeIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) both; animation-delay: 0.38s; }
.mobile-nav.open .mobile-nav-social { animation: navItemFadeIn 0.5s cubic-bezier(0.32, 0.72, 0, 1) both; animation-delay: 0.42s; }

@keyframes navItemFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Responsive
   ========================================================= */

/* =========================================================
   Responsive — Tablet (≤ 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-grid,
  .feature-grid,
  .about-preview,
  .story-section,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-section:nth-child(even) .story-text { order: 0; }
  .product-grid,
  .menu-grid,
  .testimonial-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* =========================================================
   Responsive — Large phone / small tablet (≤ 768px)
   ========================================================= */
@media (max-width: 768px) {
  .site-header .nav { padding: 16px 0; gap: 12px; }
  .brand { font-size: 30px; }
  .icon-btn { width: 42px; height: 42px; }

  section { padding: 60px 0; }
  .section-head { margin-bottom: 48px; max-width: none; }
  .section-head h2 { font-size: clamp(32px, 6.5vw, 42px); }
  .section-head p { font-size: 15px; }

  .hero { padding: 28px 0 56px; }
  .hero-grid { gap: 32px; }
  .hero h1 { font-size: clamp(40px, 9vw, 60px); line-height: 1.08; margin-bottom: 18px; }
  .hero p.lead { font-size: 16px; margin-bottom: 28px; max-width: none; }
  .hero-actions { gap: 12px; margin-bottom: 32px; }
  .hero-visual { aspect-ratio: 4 / 3; }

  .btn { min-height: 48px; }
  .circle-btn { width: 46px; height: 46px; }
  .circle-btn.large { width: 56px; height: 56px; }

  .about-preview .visual { aspect-ratio: 4 / 3; }
  .page-hero { padding: 56px 0 48px; }
  .page-hero h1 { font-size: clamp(40px, 9vw, 56px); line-height: 1.1; }
  .feature-grid { padding: 60px 0; gap: 32px; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 14px 16px;
  }
}

/* =========================================================
   Responsive — Phone (≤ 640px)
   ========================================================= */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  section { padding: 52px 0; }

  /* Header — cleaner on mobile: brand + cart + menu only */
  .site-header {
    background: rgba(247, 244, 237, 0.85);
    top: 10px;
    margin: 10px auto 0;
    max-width: calc(100% - 20px);
  }
  .site-header .container.nav {
    padding-left: 18px;
    padding-right: 10px;
  }
  .site-header .nav-actions .btn-primary {
    display: none; /* moved into mobile drawer to free header space */
  }
  .nav-actions { gap: 6px; }
  .brand { font-size: 28px; }

  /* Hero — stacked CTAs */
  .hero { padding: 18px 0 50px; }
  .hero h1 { font-size: clamp(38px, 11vw, 54px); }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
  .hero-visual { aspect-ratio: 1 / 1; max-height: 420px; }

  /* Grids → single column */
  .product-grid,
  .menu-grid,
  .testimonial-grid,
  .values-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-grid .tile.wide { grid-column: span 2; }
  .gallery-grid .tile.tall { aspect-ratio: 1 / 1.4; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .form-group { margin-bottom: 18px; }

  /* Cards & sections */
  .cta-banner { padding: 48px 22px; border-radius: 24px; }
  .cta-banner h2 { font-size: clamp(28px, 7vw, 38px); }
  .cta-banner p { font-size: 15px; }
  .contact-info,
  .contact-form,
  .location-info,
  .reservation-card { padding: 32px 22px; }

  /* Product / Menu cards */
  .product-card .product-info { padding: 18px 20px; }
  .product-info h3 { font-size: 19px; }
  .menu-item .item-body { padding: 22px 22px 22px; }
  .menu-item h3 { font-size: 20px; }

  /* Filter pills — horizontal scroll */
  .menu-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px 36px;
    padding: 4px 20px 12px;
    scrollbar-width: none;
    justify-content: flex-start;
  }
  .menu-filters::-webkit-scrollbar { display: none; }
  .filter-pill {
    flex-shrink: 0;
    scroll-snap-align: start;
    white-space: nowrap;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
  }

  /* Mobile nav drawer — refined editorial layout.
     The drawer is intentionally compact so the entire menu
     (nav + CTAs + contact + social) fits within a 375×812 viewport
     without scrolling. Earlier rules used a broad
     `.mobile-nav a { font-size: 30px }` that was overriding the
     structured class-based system above — replaced with scoped
     refinements that respect the .mobile-nav-* hierarchy. */
  .mobile-nav { padding: 0; }

  .mobile-nav-header {
    padding: 18px 22px 14px;
  }
  .mobile-nav-header .brand {
    font-size: 26px;
    letter-spacing: 0.005em;
  }
  .mobile-nav-close {
    width: 38px;
    height: 38px;
  }

  .mobile-nav-status {
    padding: 11px 22px;
    font-size: 12.5px;
    font-weight: 500;
  }

  .mobile-nav-label {
    padding: 18px 22px 6px;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: var(--muted);
  }

  .mobile-nav-links {
    padding: 0 12px;
  }
  .mobile-nav-links li { margin-bottom: 1px; }
  .mobile-nav-links a {
    font-family: var(--font-serif, 'Fraunces', Georgia, serif);
    font-size: 17px;
    font-weight: 500;
    padding: 9px 12px;
    gap: 12px;
    border-radius: 12px;
    min-height: 50px;
  }
  .mobile-nav-links .nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .mobile-nav-links .nav-icon svg {
    width: 18px;
    height: 18px;
  }
  .mobile-nav-links .nav-arrow svg {
    width: 16px;
    height: 16px;
  }

  .mobile-nav-cta-group {
    padding: 16px 22px calc(26px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
  }
  .mobile-nav-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 22px;
    font-size: 14px;
    min-height: 46px;
  }

  .mobile-nav-contact {
    padding: 0 22px 4px;
  }
  .mobile-nav-contact .mobile-nav-label {
    padding: 16px 0 2px;
  }
  .mobile-nav-contact-item {
    font-size: 13.5px;
    padding: 9px 0;
    gap: 12px;
  }
  .mobile-nav-contact-item .contact-icon {
    width: 32px;
    height: 32px;
  }
  .mobile-nav-contact-item .contact-icon svg {
    width: 14px;
    height: 14px;
  }

  .mobile-nav-social {
    padding: 12px 22px 18px;
    margin-top: 6px;
    gap: 10px;
  }
  .mobile-nav-social a {
    width: 38px;
    height: 38px;
  }
  .mobile-nav-social a svg {
    width: 16px;
    height: 16px;
  }

  /* Course list (restaurant) */
  .course-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .course-head p { text-align: left; max-width: none; }
  .course-block { margin-bottom: 60px; }

  /* Footer */
  .site-footer { padding: 56px 0 28px; margin-top: 40px; }
  .footer-grid { gap: 36px; margin-bottom: 40px; }
  .footer-brand { font-size: 36px; }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-top: 24px;
  }

  /* Cart drawer mobile niceties */
  .cart-drawer-header { padding: 22px 22px 18px; }
  .cart-drawer-body { padding: 12px 20px; }
  .cart-drawer-foot { padding: 20px 22px 24px; }
  .cart-item .ci-qty button { width: 32px; height: 32px; font-size: 18px; }

  /* Tasting banner */
  .tasting-banner { padding: 40px 22px; text-align: left; }
  .tasting-banner .tasting-price { font-size: 42px; }
}

/* =========================================================
   Responsive — Small phone (≤ 480px)
   ========================================================= */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 44px 0; }

  /* Header tight */
  .site-header .nav { padding: 12px 0; gap: 6px; }
  .brand { font-size: 24px; }
  .nav-actions { gap: 4px; }
  .nav-actions .btn-primary {
    padding: 10px 14px;
    font-size: 13px;
    min-height: 40px;
  }
  .icon-btn { width: 38px; height: 38px; }
  .menu-toggle { width: 38px; height: 38px; }

  /* Hero tighter */
  .hero { padding: 8px 0 36px; }
  .hero-grid { gap: 24px; }
  .hero h1 { font-size: clamp(32px, 11vw, 44px); margin-bottom: 16px; }
  .hero p.lead { font-size: 15px; margin-bottom: 22px; }
  .hero-actions { margin-bottom: 24px; gap: 10px; }
  .hero-socials { gap: 10px; }
  .hero-socials a { width: 38px; height: 38px; }

  /* Section heads */
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(28px, 7.5vw, 36px); }

  /* Page hero */
  .page-hero { padding: 36px 0 32px; }
  .page-hero h1 { font-size: clamp(32px, 10vw, 44px); }
  .page-hero p { font-size: 15px; }

  /* Cards tighter */
  .product-card .product-info,
  .menu-item .item-body { padding: 16px 18px 18px; }
  .product-info h3,
  .menu-item h3 { font-size: 18px; }
  .menu-item .price { font-size: 20px; }

  /* Testimonials */
  .testimonial { padding: 26px 22px; }
  .testimonial p { font-size: 16px; }

  /* Value / team cards */
  .value-card { padding: 28px 20px; }
  .value-card h3,
  .team-card h3 { font-size: 20px; }

  /* CTA banner */
  .cta-banner { padding: 36px 20px; border-radius: 22px; }
  .cta-banner h2 { font-size: clamp(24px, 7.5vw, 32px); }

  /* Contact / location cards */
  .contact-info,
  .contact-form,
  .reservation-card,
  .location-info { padding: 26px 20px; border-radius: 22px; }
  .info-block { padding: 16px 0; gap: 14px; }

  /* Tasting banner */
  .tasting-banner { padding: 32px 22px; }
  .tasting-banner .tasting-price { font-size: 38px; }

  /* Cart drawer */
  .cart-drawer-header { padding: 20px 20px 16px; }
  .cart-drawer-header h3 { font-size: 22px; }
  .cart-drawer-body { padding: 10px 18px; }
  .cart-drawer-foot { padding: 18px 20px 22px; }
  .cart-item { grid-template-columns: 64px 1fr auto; gap: 12px; padding: 14px 4px; }
  .cart-item .ci-thumb { width: 64px; height: 64px; }
  .cart-item h4 { font-size: 16px; }

  /* Course items - tighter */
  .course-item h3 { font-size: 19px; }
  .course-item .desc { font-size: 14px; }
  .course-item .course-price { font-size: 20px; }

  /* Footer */
  .site-footer { padding: 48px 0 24px; }
  .footer-brand { font-size: 32px; }
  .footer-grid { gap: 32px; }

  /* Gallery tighter */
  .gallery-grid { gap: 8px; }
}

/* =========================================================
   Sticky mobile cart bar (≤ 640px, visible when cart > 0)
   ========================================================= */
.mobile-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--burgundy);
  color: var(--white);
  padding: 12px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 120;
  font-family: var(--font-sans);
  cursor: pointer;
  box-shadow: 0 -14px 40px rgba(80, 32, 15, 0.22);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  border: none;
  width: 100%;
  text-align: left;
}
.mobile-cart-bar.visible { transform: translateY(0); }
.mobile-cart-bar .cart-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-cart-bar .cart-bar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mobile-cart-bar .cart-bar-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.mobile-cart-bar .cart-bar-title {
  font-size: 14px;
  font-weight: 600;
}
.mobile-cart-bar .cart-bar-count {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 2px;
}
.mobile-cart-bar .cart-bar-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--burgundy);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 640px) {
  .mobile-cart-bar { display: flex; }
  body.has-mobile-cart { padding-bottom: 80px; }
  /* Toast spans the width with comfortable margins + safe-area inset, and
     lifts above the mobile cart bar when it is showing. */
  .toast { left: 16px; right: 16px; bottom: calc(20px + env(safe-area-inset-bottom)); max-width: none; width: auto; transform: translate(0, 26px); }
  .toast.show { transform: translate(0, 0); }
  body.has-mobile-cart .toast { bottom: calc(86px + env(safe-area-inset-bottom)); }
}

/* =========================================================
   MOBILE POLISH PASS
   Final-mile fixes for phone viewports. Grouped here so the
   intent is obvious and they're easy to tune as a set.
   ========================================================= */

/* ─── Phones (≤ 640px) ──────────────────────────────────── */
@media (max-width: 640px) {
  /* Eyebrow text — 11.5px is borderline on phones */
  .eyebrow { font-size: 12px; letter-spacing: 0.22em; }

  /* Section head — give it a touch more room to breathe */
  .section-head {
    margin-bottom: 40px;
    padding: 0 4px;
  }
  .section-head h2 {
    line-height: 1.06;
    letter-spacing: -0.022em;
  }

  /* Page-hero — overrides for sub-page heroes (menu, about, etc.)
     The inline padding-bottom values in HTML stay, but we tighten
     the overall vertical rhythm. */
  .page-hero { padding: 44px 0 36px; }
  .page-hero p { margin-top: 12px; max-width: none; }

  /* Hero — tighten lead spacing on phones */
  .hero p.lead { margin: 24px 0 28px; line-height: 1.55; }
  .hero-actions { margin-bottom: 28px; }
  .hero-socials { padding-top: 22px; }
  .hero-socials a { width: 42px; height: 42px; }

  /* Hero visual — slightly more screen-friendly aspect on phones */
  .hero-visual { aspect-ratio: 4 / 5; max-height: 460px; }

  /* Today-chip — shrink + reposition so it doesn't smother the photo.
     Sits flush left at the bottom, smaller thumb, tighter padding. */
  .hero .today-chip {
    left: 10px;
    bottom: 10px;
    right: auto;
    padding: 10px 14px;
    border-radius: 14px;
    gap: 10px;
    max-width: calc(100% - 20px);
  }
  .hero .today-chip .thumb { width: 36px; height: 36px; border-radius: 9px; }
  .hero .today-chip .meta-eyebrow { font-size: 9px; margin-bottom: 2px; }
  .hero .today-chip .meta-title { font-size: 13px; }

  /* Drop cap — 5.2em is a sledgehammer on a 360px column.
     Tame it so it's still editorial but doesn't blow up the layout. */
  .story-text > p:first-of-type::first-letter {
    font-size: 3.4em;
    padding: 4px 10px 0 0;
    line-height: 0.85;
  }

  /* Story sections — tighter gap on phones */
  .story-section { gap: 28px; }
  .story-visual img { border-radius: 18px; }

  /* About-preview gap — same treatment */
  .about-preview { gap: 28px; }

  /* Course block — reduce empty space between blocks */
  .course-block { margin-bottom: 44px; }
  .course-head { padding-bottom: 14px; margin-bottom: 24px; }
  .course-head .course-title h2 {
    font-size: clamp(28px, 7vw, 36px);
    line-height: 1.08;
  }
  .course-list { gap: 18px; }
  .course-item { padding: 16px 0; }
  .course-item h3 { font-size: 17.5px; line-height: 1.3; }
  .course-item .desc { font-size: 14px; margin-top: 4px; line-height: 1.5; }
  .course-item .course-price { font-size: 19px; margin-top: 4px; }
  .course-item .tag {
    font-size: 10px;
    padding: 2px 8px;
    vertical-align: 2px;
  }

  /* Menu item — slightly tighter card */
  .menu-item .item-image { aspect-ratio: 4 / 3; }
  .menu-item .item-body { padding: 18px 18px 18px; }
  .menu-item h3 { font-size: 18.5px; line-height: 1.3; margin-bottom: 6px; }
  .menu-item .item-desc { font-size: 14px; line-height: 1.5; }
  .menu-item .item-foot { margin-top: 14px; }
  .menu-item .price { font-size: 18px; font-weight: 600; }

  /* Bento — give text-tiles + social-tile room to breathe.
     minmax floor + auto lets rows grow to fit content so the text
     tile never overflows into the tile below it. */
  .bento { grid-auto-rows: minmax(160px, auto); gap: 10px; }
  .bento-tile { border-radius: 20px; }
  .bento-tile.text-tile { padding: 16px; }
  .bento-tile.text-tile h3 { font-size: 17px; line-height: 1.25; }
  .bento-tile.text-tile .tile-eyebrow { font-size: 10px; }
  .bento-tile.text-tile .tile-cta { font-size: 13px; margin-top: 10px; }
  .bento-tile.social-tile { padding: 16px; }
  .bento-tile.social-tile h3 { font-size: 15px; }
  .bento-tile.social-tile p { font-size: 12px; margin-top: 2px; }
  .bento-tile.social-tile .social-icon {
    width: 36px; height: 36px;
    margin-bottom: 8px;
  }
  .bento-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    font-size: 10.5px;
    gap: 6px;
  }
  .bento-label .price { font-weight: 600; }

  /* Testimonials — tighter card, larger pull-text */
  .testimonial { padding: 28px 24px; border-radius: 22px; }
  .testimonial p { font-size: 16.5px; line-height: 1.55; }
  .testimonial .stars { font-size: 14px; margin-bottom: 12px; }
  .testimonial .author { margin-top: 18px; gap: 12px; }
  .testimonial .author-avatar { width: 38px; height: 38px; font-size: 14px; }
  .testimonial .author-name { font-size: 14.5px; }
  .testimonial .author-role { font-size: 12.5px; }

  /* Value cards */
  .value-card { padding: 28px 22px; border-radius: 22px; }
  .value-card .value-icon { width: 48px; height: 48px; margin-bottom: 18px; }
  .value-card h3 { font-size: 19px; margin-bottom: 8px; }
  .value-card p { font-size: 14.5px; line-height: 1.55; }

  /* CTA banner — already covered, just tighten body */
  .cta-banner p { font-size: 14.5px; line-height: 1.55; max-width: 36ch; margin: 14px auto 24px; }

  /* Tone-section padding — 96px was still too tall on phones */
  .tone-cream,
  .tone-butter { padding: 72px 0; }
  .tone-ink { padding: 92px 0; }

  /* Torn paper dividers — shrink so they don't eat screen height */
  .td svg { height: 48px !important; }

  /* Footer — slightly tighter list spacing */
  .site-footer h4 { font-size: 13px; letter-spacing: 0.18em; margin-bottom: 12px; }
  .site-footer ul { gap: 8px; }
  .site-footer ul li { font-size: 14px; }
  .footer-bottom { font-size: 12.5px; line-height: 1.5; }

  /* Tasting / sharing platter banner — readable on phone */
  .tasting-banner h3 { font-size: clamp(26px, 7vw, 34px); line-height: 1.1; }
  .tasting-banner p { font-size: 14.5px; line-height: 1.55; }
  .tasting-banner .tasting-price { font-size: 38px; line-height: 1.05; }
  .tasting-banner .tasting-price small {
    font-size: 12px;
    display: block;
    margin-top: 6px;
    opacity: 0.7;
  }

  /* Reservation card hours list */
  .res-hours h4 { font-size: 13px; letter-spacing: 0.18em; margin-bottom: 14px; }
  .hours-list { font-size: 14px; gap: 10px; }
  .hours-list li { padding: 6px 0; }

  /* Buttons — uniform min-height across the page for tap accuracy */
  .btn { min-height: 48px; padding-top: 14px; padding-bottom: 14px; }
  .btn-outline { padding-top: 14px; padding-bottom: 14px; }
}

/* ─── Small phones (≤ 480px) ────────────────────────────── */
@media (max-width: 480px) {
  /* Tighter container padding — but not razor-thin */
  .container { padding: 0 18px; }

  /* Hero — even more compact */
  .hero { padding: 4px 0 32px; }
  .hero p.lead { margin: 20px 0 24px; font-size: 15.5px; }
  .hero-grid { gap: 20px; }

  /* Today-chip — keep it readable but smaller still */
  .hero .today-chip .thumb { width: 32px; height: 32px; }
  .hero .today-chip { padding: 8px 12px; gap: 8px; }
  .hero .today-chip .meta-title { font-size: 12.5px; }

  /* Drop cap — even smaller on the smallest phones */
  .story-text > p:first-of-type::first-letter {
    font-size: 3em;
  }

  /* Section padding floor */
  section { padding: 40px 0; }
  .tone-cream,
  .tone-butter { padding: 56px 0; }
  .tone-ink { padding: 72px 0; }

  /* Section head — yet tighter */
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(26px, 8vw, 34px); }
  .section-head p { font-size: 14.5px; }

  /* Page hero on inner pages */
  .page-hero { padding: 32px 0 28px; }
  .page-hero h1 { font-size: clamp(30px, 10vw, 42px); }

  /* Bento single-photo tiles tighter — keep minmax so the text tile
     can still grow to fit its content (prevents overlap). */
  .bento { grid-auto-rows: minmax(150px, auto); }

  /* Filter pills — slightly smaller */
  .filter-pill { padding: 10px 16px; font-size: 13.5px; min-height: 40px; }

  /* Story drop-cap-bearing paragraph — extra leading */
  .story-text > p:first-of-type { line-height: 1.65; }
}

/* ─── Very small phones (≤ 360px) ───────────────────────── */
@media (max-width: 360px) {
  .brand { font-size: 22px; }
  .nav-actions .icon-btn,
  .nav-actions .menu-toggle { width: 36px; height: 36px; }
  .hero h1.h-anim { font-size: clamp(34px, 11vw, 48px); }
  .page-hero h1 { font-size: clamp(28px, 10vw, 38px); }
  .container { padding: 0 14px; }
}

/* ============================================================
   Full text menu (matches the printed menu PDF) — used on
   menu.html (café) + restaurant.html (bistro). Category blocks
   with subgroups; each row stays cart-compatible (.menu-item
   with h3 + .price + .circle-btn).
   ============================================================ */
.menu-cat{ margin-bottom: 56px; }
.menu-cat-head{ display:flex; align-items:baseline; gap:16px; margin-bottom:22px; padding-bottom:14px; border-bottom:2px solid var(--burgundy); }
.menu-cat-head h2{ font-family:'Berita','Fraunces',Georgia,serif; font-weight:400; font-size:clamp(26px,3.2vw,38px); line-height:1; color:var(--ink); letter-spacing:-.01em; }
.menu-cat-head .count{ font-family:var(--font-mono,monospace); font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); }
.menu-sub{ font-family:var(--font-mono,monospace); font-size:11.5px; letter-spacing:.2em; text-transform:uppercase; color:var(--gold-ink); font-weight:600; margin:26px 0 8px; }
.menu-list{ display:flex; flex-direction:column; }
/* override the card .menu-item into a clean row inside .menu-list */
.menu-list .menu-item{
  display:flex; align-items:baseline; justify-content:space-between; gap:18px;
  padding:13px 0; border-bottom:1px solid var(--line);
  background:none; border-radius:0; box-shadow:none; overflow:visible;
}
.menu-list .menu-item:hover{ transform:none; box-shadow:none; }
.menu-list .menu-item .item-image{ display:none; }
.menu-list .item-body{ padding:0; min-width:0; }
.menu-list .menu-item h3{ font-family:var(--font-serif,'Fraunces',Georgia,serif); font-size:17px; font-weight:500; line-height:1.25; color:var(--ink); margin:0; }
.menu-list .item-desc{ font-size:13.5px; line-height:1.5; color:var(--muted); margin:3px 0 0; max-width:62ch; }
.menu-list .item-foot{ display:flex; align-items:center; gap:12px; flex-shrink:0; margin:0; }
.menu-list .menu-item .price{ font-family:var(--font-mono,monospace); font-size:14.5px; font-weight:600; color:var(--burgundy); white-space:nowrap; letter-spacing:.01em; }
.menu-list .circle-btn{
  width:30px; height:30px; flex-shrink:0; border-radius:50%; border:1px solid var(--line);
  background:var(--surface); color:var(--burgundy); display:inline-flex; align-items:center; justify-content:center;
  cursor:pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.menu-list .circle-btn:hover{ background:var(--burgundy); color:var(--cream); border-color:var(--burgundy); }
.menu-note{ font-size:13px; color:var(--muted); font-style:italic; margin:-6px 0 18px; }
@media (max-width:560px){
  .menu-list .menu-item{ gap:12px; padding:12px 0; }
  .menu-list .menu-item h3{ font-size:16px; }
  .menu-list .item-desc{ font-size:13px; }
  .menu-list .menu-item .price{ font-size:13.5px; }
}

/* Cart thumbnail fallback for items without a photo (text menu) */
.ci-thumb-letter{ display:flex; align-items:center; justify-content:center; width:100%; height:100%;
  background:var(--gold-soft,#F4E6B0); color:var(--burgundy); font-family:var(--font-serif,'Fraunces',serif); font-size:20px; font-weight:500; }


/* ============================================================
   "Ready to order?" CTA band — recurring between menu categories.
   Cocoa room + faint gold pattern + gold CTA button.
   ============================================================ */
.order-cta{ margin:36px 0 48px; background:var(--tone-ink); color:#F5EBE2;
  border-radius:22px; position:relative; overflow:hidden; padding:30px 36px; isolation:isolate; }
.order-cta::before{ content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:url('pattern.png'); background-size:300px auto; background-repeat:repeat; opacity:.08; }
.order-cta::after{ content:''; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:radial-gradient(ellipse 60% 80% at 88% 30%, rgba(216,184,48,.16), transparent 60%); }
.order-cta-inner{ position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.order-cta-title{ font-family:'Berita','Fraunces',Georgia,serif; font-weight:400; font-size:clamp(22px,2.8vw,30px);
  line-height:1.1; color:#F8EDDB; margin:0; letter-spacing:-.01em; }
.order-cta-sub{ font-size:13.5px; line-height:1.5; color:rgba(245,235,226,.72); margin:7px 0 0; }
.order-cta-btn{ display:inline-flex; align-items:center; gap:10px; flex-shrink:0; cursor:pointer; border:0;
  background:var(--gold); color:#2E1A0F; font-family:var(--font-sans); font-weight:600; font-size:15px;
  padding:14px 24px; border-radius:999px; white-space:nowrap; transition:background .25s var(--ease-out-soft,ease), transform .25s var(--ease-out-soft,ease); }
.order-cta-btn:hover{ background:var(--gold-soft); transform:translateY(-1px); }
.order-cta-btn svg{ flex-shrink:0; }
@media (max-width:560px){ .order-cta{ padding:26px 22px; text-align:center; } .order-cta-inner{ flex-direction:column; gap:16px; } .order-cta-sub{ margin-bottom:2px; } }


/* Sticky category bar — keeps navigation reachable on the long menu */
.menu-filters{ position:sticky; top:92px; z-index:40; background:var(--canvas,#F6F1E6);
  padding:14px 0 14px; margin:0 0 28px; box-shadow:0 12px 18px -16px rgba(72,40,24,.55); }
@media (max-width:768px){
  .menu-filters{ top:78px; flex-wrap:nowrap; overflow-x:auto; -webkit-overflow-scrolling:touch;
    scrollbar-width:none; justify-content:flex-start; }
  .menu-filters::-webkit-scrollbar{ display:none; }
  .menu-filters .filter-pill{ flex:0 0 auto; }
}

/* ============================================================
   Category picture gallery (shared)
   Used by: homepage menu-preview (.mp) AND the top of the
   Pâtisserie / Restaurant menu pages (.menu-gallery). Cards are
   tappable category cards that jump into the filtered menu.
   ============================================================ */
.mp-cats{display:grid;grid-template-columns:repeat(6,1fr);gap:16px;margin-top:clamp(28px,4vw,46px)}
.mp-cats.is-5{grid-template-columns:repeat(5,1fr)}
.mp-cat{position:relative;display:block;aspect-ratio:3/4;border-radius:16px;overflow:hidden;
  text-decoration:none;background:var(--cream-deep,#efe6d4);isolation:isolate}
.mp-cat img{width:100%;height:100%;object-fit:cover;transition:transform .9s cubic-bezier(.22,1,.36,1)}
.mp-cat:hover img,.mp-cat:focus-visible img{transform:scale(1.07)}
.mp-cat::after{content:'';position:absolute;inset:0;z-index:1;
  background:linear-gradient(0deg,rgba(28,16,9,.88) 0%,rgba(28,16,9,.34) 46%,rgba(28,16,9,.05) 72%,transparent 100%)}
.mp-cat::before{content:'';position:absolute;inset:0;z-index:3;border-radius:16px;pointer-events:none;
  box-shadow:inset 0 0 0 0 var(--gold);transition:box-shadow .35s ease}
.mp-cat:hover::before,.mp-cat:focus-visible::before{box-shadow:inset 0 0 0 2px var(--gold)}
.mp-cat-tag{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:16px 16px 17px;
  display:flex;flex-direction:column;gap:9px;color:var(--cream)}
.mp-cat-tag b{font-family:'Berita','Fraunces',Georgia,serif;font-weight:400;line-height:1.08;letter-spacing:-.01em;
  font-size:clamp(15px,1.2vw,20px)}
.mp-cat-tag .go{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-mono,'Geist',ui-monospace,monospace);
  font-size:10.5px;letter-spacing:.16em;text-transform:uppercase;color:#F2E6C2;
  opacity:0;transform:translateY(6px);transition:opacity .4s ease,transform .45s cubic-bezier(.22,1,.36,1)}
.mp-cat-tag .go::before{content:'';width:16px;height:1px;background:var(--gold);transition:width .4s ease}
.mp-cat:hover .go,.mp-cat:focus-visible .go{opacity:1;transform:none}
.mp-cat:hover .go::before{width:26px}

/* menu-page wrapper for the gallery (between hero and the filter bar) */
.menu-gallery{padding:14px 0 26px}
.mg-head{display:flex;align-items:baseline;justify-content:space-between;gap:16px;flex-wrap:wrap}
.mg-eyebrow{font-family:var(--font-mono,'Geist',ui-monospace,monospace);font-size:12px;letter-spacing:.24em;
  text-transform:uppercase;color:var(--gold-ink);font-weight:600;display:inline-flex;align-items:center;gap:12px}
.mg-hint{font-family:var(--font-mono,'Geist',ui-monospace,monospace);font-size:11px;letter-spacing:.04em;color:var(--muted)}

@media (max-width:900px){
  .mp-cats,.mp-cats.is-5{grid-template-columns:repeat(3,1fr);gap:14px}
}
@media (max-width:560px){
  .mp-cats,.mp-cats.is-5{grid-template-columns:repeat(2,1fr);gap:12px}
  .mp-cat-tag{padding:13px 13px 14px;gap:7px}
  .mp-cat-tag .go{opacity:1;transform:none}   /* no hover on touch — always show */
  .mg-hint{display:none}
}

/* ============================================================
   Menu order accordion (menu.html / restaurant.html)
   Each .menu-cat becomes a tap-to-open section card; rows get a
   quantity stepper + Add button. Built by buildOrderAccordion().
   ============================================================ */
.menu-intro{ max-width:64ch; margin:0 0 26px; }
.menu-intro .mg-eyebrow{ margin-bottom:6px; }
.menu-intro-title{ font-family:var(--font-serif,'Fraunces',Georgia,serif); font-weight:400;
  font-size:clamp(23px,3vw,36px); line-height:1.12; letter-spacing:-.01em; color:var(--ink); margin:12px 0 0; }
.menu-intro-sub{ color:var(--muted); font-size:16px; line-height:1.65; max-width:58ch; margin:13px 0 0; }

.cart-custom-note{font-size:12px;color:var(--muted);margin:8px 0 0;line-height:1.45}

/* =========================================================
   The Cake Atelier — custom cake picker (menu page)
   ========================================================= */
.cake-atelier{padding:34px 0 6px}
.atelier{
  position:relative;overflow:hidden;
  background:linear-gradient(150deg,var(--burgundy) 0%,var(--burgundy-dark) 80%);
  border-radius:var(--radius-lg);color:#FFF7E8;
  padding:clamp(34px,5vw,58px) clamp(22px,5vw,62px) clamp(30px,4.4vw,50px);
}
/* thin gold keyline inset, like a menu card border */
.atelier::before{
  content:'';position:absolute;inset:14px;border:1px solid rgba(216,184,48,.3);
  border-radius:calc(var(--radius-lg) - 8px);pointer-events:none;
}
.atelier-watermark{
  position:absolute;right:-2%;top:-14px;font-family:var(--font-script);
  font-size:clamp(96px,17vw,230px);line-height:1;color:rgba(216,184,48,.09);
  pointer-events:none;user-select:none;white-space:nowrap;transform:rotate(-4deg);
}
.atelier-head{position:relative}
.atelier-eyebrow{
  display:inline-flex;align-items:center;gap:12px;
  font-size:12px;letter-spacing:.26em;text-transform:uppercase;font-weight:600;color:var(--gold);
}
.atelier-title{
  font-family:var(--font-serif);font-weight:400;font-size:clamp(30px,4.6vw,52px);
  line-height:1.08;margin:16px 0 14px;color:#FFF9EC;
}
.atelier-title .script{font-family:var(--font-script);color:var(--gold);font-size:1.25em;font-weight:400}
.atelier-lead{color:rgba(255,247,232,.82);font-size:16px;line-height:1.65;max-width:58ch;margin:0}
.atelier-steps{
  list-style:none;display:flex;flex-wrap:wrap;gap:10px 36px;margin:26px 0 0;padding:20px 0 0;
  border-top:1px solid rgba(255,247,232,.14);position:relative;
}
.atelier-steps li{display:flex;align-items:baseline;gap:10px;font-size:14px;color:rgba(255,247,232,.85)}
.atelier-steps b{font-size:12px;letter-spacing:.14em;color:var(--gold);font-weight:700}
.atelier-cta{position:relative;margin-top:26px}
.atelier-btn{
  display:inline-flex;align-items:center;gap:12px;cursor:pointer;
  padding:15px 30px;border-radius:999px;border:1px solid rgba(216,184,48,.5);
  background:var(--gold);color:var(--burgundy-dark);font-weight:700;font-size:15px;font-family:inherit;
  transition:background .2s ease,color .2s ease,transform .15s ease,box-shadow .2s ease;
  box-shadow:0 14px 30px -14px rgba(0,0,0,.55);
}
.atelier-btn:hover{background:#E6C84E;transform:translateY(-1px)}
.atelier-btn .chev{transition:transform .25s ease;flex-shrink:0}
.atelier-btn[aria-expanded="true"]{background:transparent;color:var(--gold);box-shadow:none}
.atelier-btn[aria-expanded="true"] .chev{transform:rotate(180deg)}
.cake-picker{position:relative;margin-top:28px;animation:atelierReveal .4s ease both}
@keyframes atelierReveal{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
.cake-picker-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.cake-option{
  position:relative;display:flex;flex-direction:column;align-items:flex-start;gap:7px;text-align:left;
  padding:20px 20px 18px;border-radius:16px;cursor:pointer;font-family:inherit;
  background:rgba(255,247,232,.05);border:1px solid rgba(255,247,232,.16);color:#FFF7E8;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}
.cake-option:hover{background:rgba(216,184,48,.12);border-color:rgba(216,184,48,.65);transform:translateY(-2px)}
.cake-option-num{font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);font-weight:700}
.cake-option-name{font-family:var(--font-serif);font-size:21px;line-height:1.15;color:#FFF9EC}
.cake-option-desc{font-size:13px;line-height:1.5;color:rgba(255,247,232,.7)}
.cake-option-add{
  margin-top:6px;font-size:12px;font-weight:700;letter-spacing:.06em;color:var(--gold);
  opacity:.7;transition:opacity .2s ease,transform .2s ease;
}
.cake-option:hover .cake-option-add{opacity:1;transform:translateX(3px)}

@media(max-width:900px){
  .cake-picker-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:560px){
  .cake-picker-grid{grid-template-columns:1fr}
  .atelier::before{inset:10px}
  .atelier-btn{width:100%;justify-content:center}
  .atelier-steps{flex-direction:column;gap:9px}
}

.menu-cat.ord{ margin:0 0 14px; padding:0; border:1px solid var(--line); border-radius:18px; background:var(--surface);
  overflow:hidden; transition:border-color .2s ease, box-shadow .25s ease; }
.menu-cat.ord.open{ border-color:var(--line-strong); box-shadow:var(--shadow-card); }

.ord-head{ display:flex; align-items:center; gap:18px; width:100%; padding:14px 18px 14px 14px;
  background:none; border:0; cursor:pointer; text-align:left; font:inherit; color:inherit; }
.ord-head:hover{ background:rgba(72,40,24,.035); }
.ord-thumb{ flex:0 0 auto; width:84px; height:84px; border-radius:13px; overflow:hidden; background:var(--cream-deep,#efe6d4); }
.ord-thumb img{ width:100%; height:100%; object-fit:cover; }
.ord-meta{ flex:1 1 auto; min-width:0; }
.ord-name{ display:block; font-family:var(--font-serif,'Fraunces',Georgia,serif); font-weight:500;
  font-size:clamp(19px,2.1vw,24px); line-height:1.15; color:var(--burgundy); }
.ord-desc{ display:block; color:var(--muted); font-size:13.5px; line-height:1.45; margin-top:4px; }
.ord-cta{ flex:0 0 auto; display:flex; flex-direction:column; align-items:flex-end; gap:6px; text-align:right; }
.ord-count{ font-family:var(--font-mono,monospace); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); }
.ord-go{ display:inline-flex; align-items:center; gap:6px; font-family:var(--font-mono,monospace); font-size:11.5px;
  letter-spacing:.08em; text-transform:uppercase; font-weight:600; color:var(--gold-ink); white-space:nowrap; }
.ord-chev{ transition:transform .3s ease; }
.menu-cat.ord.open .ord-chev{ transform:rotate(180deg); }

/* ---- inside an open counter: refined order list ---- */
.ord-body{ display:none; padding:6px 26px 22px; }
.menu-cat.ord.open .ord-body{ display:block; }
.ord-body .menu-cat-head{ display:none; }   /* category name lives in the header */
.menu-cat.ord .menu-item{ opacity:1 !important; transform:none !important; }  /* defeat scroll-reveal */
.ord-body .menu-list{ display:block; max-width:860px; }

/* sub-section label with a trailing hairline */
.ord-body .menu-sub{ display:flex; align-items:center; gap:16px; margin:30px 0 2px;
  font-family:var(--font-mono,monospace); font-size:10.5px; letter-spacing:.26em; text-transform:uppercase;
  color:var(--gold-ink); font-weight:700; }
.ord-body .menu-sub::after{ content:''; flex:1 1 auto; height:1px;
  background:linear-gradient(90deg, rgba(154,110,10,.42), rgba(154,110,10,0)); }
.ord-body .menu-cat-head + .menu-sub, .ord-body .menu-cat-head + .menu-list{ margin-top:4px; }

/* item row: name · dotted leader · price | order control */
.ord-body .menu-item.oi{ display:grid; grid-template-columns:minmax(0,1fr) auto;
  grid-template-areas:"line order" "desc order"; align-items:center; column-gap:26px; row-gap:3px;
  margin:0; padding:13px 10px 13px 8px; border:0;
  border-bottom:1px solid rgba(72,40,24,.10); border-radius:12px; transition:background .18s ease; }
.ord-body .menu-item.oi:last-child{ border-bottom:0; }
.ord-body .menu-item.oi:hover{ background:rgba(216,184,48,.07); }
.oi-line{ grid-area:line; display:flex; align-items:baseline; gap:6px; min-width:0; }
.oi-name{ flex:0 1 auto; font-family:var(--font-serif,'Fraunces',Georgia,serif); font-weight:500;
  font-size:17.5px; line-height:1.3; color:var(--ink); }
.oi-lead{ flex:1 1 auto; min-width:22px; position:relative; top:-4px;
  border-bottom:2px dotted rgba(72,40,24,.28); }
.oi-price{ flex:0 0 auto; font-family:var(--font-mono,monospace); font-size:14px; font-weight:600;
  color:var(--gold-ink); letter-spacing:.02em; white-space:nowrap; }
.oi-desc{ grid-area:desc; margin:0; font-size:13px; line-height:1.5; color:var(--muted); max-width:56ch; }

/* order control — stepper + Add, as a tidy pair */
.oi-order{ grid-area:order; display:inline-flex; align-items:center; gap:10px; }
.oi-order .qty{ display:inline-flex; align-items:center; border:1px solid var(--line-strong); border-radius:999px; background:var(--surface); }
.oi-order .qty-btn{ width:30px; height:32px; border:0; background:none; color:var(--burgundy); font-size:17px; line-height:1;
  display:inline-flex; align-items:center; justify-content:center; cursor:pointer; transition:color .15s ease; }
.oi-order .qty-btn:hover{ color:var(--gold-ink); }
.oi-order .qty-btn:disabled{ opacity:.3; cursor:default; }
.oi-order .qty-n{ min-width:20px; text-align:center; font-family:var(--font-mono,monospace); font-size:13px; font-weight:600; color:var(--ink); }
.oi-order .add-btn{ display:inline-flex; align-items:center; gap:6px; height:34px; padding:0 16px 0 13px; border:0; border-radius:999px;
  background:var(--burgundy); color:var(--cream); font-weight:600; font-size:12.5px; letter-spacing:.02em;
  cursor:pointer; transition:background .2s ease, transform .1s ease; box-shadow:0 6px 14px -9px rgba(72,40,24,.7); }
.oi-order .add-btn:hover{ background:var(--burgundy-dark); }
.oi-order .add-btn:active{ transform:translateY(1px); }
.oi-order .add-btn svg{ flex:0 0 auto; }

@media (max-width:560px){
  .ord-head{ gap:13px; padding:11px; }
  .ord-thumb{ width:62px; height:62px; border-radius:11px; }
  .ord-desc,.ord-count{ display:none; }   /* keep the collapsed card compact: thumb + name + CTA */
  .ord-body{ padding:4px 14px 14px; }
  .ord-body .menu-item.oi{ grid-template-columns:1fr; grid-template-areas:"line" "desc" "order";
    column-gap:0; row-gap:9px; padding:14px 6px; }
  .oi-order{ justify-self:start; }
  .oi-name{ font-size:16.5px; }
}

/* =========================================================
   WhatsApp ordering (cart only) + order band
   ========================================================= */
.btn-whatsapp{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  width:100%;padding:14px 20px;border:0;border-radius:999px;
  background:#25D366;color:#fff;font-weight:600;font-size:15px;
  cursor:pointer;transition:background .2s ease,transform .1s ease;
  box-shadow:0 8px 22px -10px rgba(37,211,102,.65);
}
.btn-whatsapp:hover{background:#1fb855;color:#fff}
.btn-whatsapp:active{transform:translateY(1px)}
.btn-whatsapp svg{flex-shrink:0}

@media(max-width:768px){
  .cart-foot-actions{grid-template-columns:1fr}
}

.wa-strip{
  background:var(--cream-soft);border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  padding:20px 0;
}
.wa-strip-inner{
  display:flex;flex-wrap:wrap;gap:16px 32px;align-items:center;justify-content:center;
  font-size:14px;color:var(--ink-soft);
}
.wa-strip-inner strong{color:var(--ink)}
.wa-strip-inner a{color:var(--burgundy);font-weight:600}
