    :root {
      --bg: #F5EFE2;
      --bg-deep: #EDE3CE;
      --surface: #FFFCF5;
      --paper: #FFFCF5;
      --ink: #2A1F14;
      --ink-soft: #6B5746;
      --ink-mute: #9C8B77;
      --accent: #B85C3A;
      --accent-deep: #8B3F22;
      --accent-soft: #D9A589;
      --accent-on: #FAF7EE;
      --border: rgba(42, 31, 20, 0.10);
      --border-strong: rgba(42, 31, 20, 0.20);
      --radius: 6px;
      --radius-lg: 10px;
      --radius-xl: 18px;
      --heading-font: "Cormorant Garamond", "Playfair Display", Georgia, serif;
      --body-font: "Source Serif Pro", "Lora", Georgia, serif;
      --max-w: 1240px;
      --max-w-narrow: 760px;
      --pad-x: clamp(26px, 4vw, 64px);
      --section-y: clamp(72px, 9vw, 130px);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 92px; overflow-x: clip; }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: var(--body-font);
      font-size: 17px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: clip;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; }

    .container { max-width: var(--max-w); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
    .container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

    .skip-link {
      position: absolute; left: -9999px; top: 12px;
      background: var(--ink); color: var(--bg);
      padding: 10px 16px; border-radius: var(--radius);
      z-index: 100; font-size: 14px;
    }
    .skip-link:focus { left: 12px; }

    .italic-display {
      font-family: var(--heading-font);
      font-style: italic;
      color: var(--accent);
      font-weight: 500;
    }

    /* ========== Header ========== */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      background: rgba(245, 239, 226, 0.92);
      backdrop-filter: saturate(140%) blur(12px);
      -webkit-backdrop-filter: saturate(140%) blur(12px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s ease, border-bottom-color 0.3s ease, backdrop-filter 0.3s ease;
    }
    /* Transparent state. Applied while at top of page, over the hero */
    .site-header.at-top {
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom-color: transparent;
    }
    .site-header.at-top .site-nav a {
      color: rgba(250, 247, 238, 0.95);
      text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    }
    .site-header.at-top .site-nav a:hover { color: #fff; }
    .site-header.at-top .nav-social a {
      color: rgba(250, 247, 238, 0.95);
      border-color: rgba(250, 247, 238, 0.5);
    }
    .site-header.at-top .nav-social a:hover {
      background: var(--accent);
      color: var(--accent-on);
      border-color: var(--accent);
    }
    .site-header.at-top .nav-mobile-toggle {
      color: #FAF7EE;
      border-color: rgba(250, 247, 238, 0.5);
    }
    .site-header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding-top: 14px;
      padding-bottom: 14px;
    }
    .site-logo {
      position: relative;
      display: inline-block;
      text-decoration: none;
      /* Reserve box so the absolutely-positioned cream variant doesn't collapse */
      line-height: 0;
    }
    .site-logo img {
      height: 54px;
      width: auto;
      display: block;
      transition: opacity 0.3s ease;
    }
    /* Stack the two logo variants so we can crossfade on .at-top */
    .site-logo .site-logo-cream {
      position: absolute;
      top: 0; left: 0;
      opacity: 0;
      pointer-events: none;
    }
    /* When the header is in its transparent-over-hero state, swap to cream */
    .site-header.at-top .site-logo .site-logo-default { opacity: 0; }
    .site-header.at-top .site-logo .site-logo-cream   { opacity: 1; }
    .site-nav { display: flex; align-items: center; gap: 30px; }
    .site-nav a {
      text-decoration: none;
      color: var(--ink-soft);
      font-size: 15px;
      letter-spacing: 0.01em;
      transition: color 0.15s ease;
    }
    .site-nav a:hover, .site-nav a:focus-visible { color: var(--ink); }
    .nav-social { display: inline-flex; gap: 10px; margin-left: 4px; }
    .nav-social a {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border-strong);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--ink-soft);
      transition: background 0.15s, color 0.15s, border-color 0.15s;
    }
    .nav-social a:hover { background: var(--accent); color: var(--accent-on); border-color: var(--accent); }
    .nav-social svg { width: 16px; height: 16px; }
    /* Specificity bump (.site-nav a + .nav-cta) so the cream label
       on the terracotta CTA isn't overridden by the .site-nav a color
       in the scrolled (non-at-top) state. */
    .site-nav a.nav-cta,
    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 20px;
      /* Locked min-width so the nav row never reflows when the label
         switches between "See the menu" and "Visit us" across pages. */
      min-width: 132px;
      min-height: 44px;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
      color: var(--accent-on);
      text-decoration: none;
      border-radius: var(--radius);
      font-weight: 600;
      font-size: 14.5px;
      letter-spacing: 0.01em;
      transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.25s ease;
      margin-left: 4px;
      box-shadow: 0 6px 16px -8px rgba(132, 62, 38, 0.5);
    }
    .site-nav a.nav-cta:hover,
    .nav-cta:hover {
      background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
      color: var(--accent-on);
      box-shadow: 0 10px 24px -8px rgba(132, 62, 38, 0.65);
    }
    .site-nav a.nav-cta:active,
    .nav-cta:active { transform: translateY(1px); }
    /* Make sure transparent-header state also keeps the cream label */
    .site-header.at-top .site-nav a.nav-cta { color: var(--accent-on); }

    .nav-mobile-toggle {
      display: none;
      background: none;
      border: 1px solid var(--border-strong);
      color: var(--ink);
      width: 44px; height: 44px;
      border-radius: var(--radius);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      padding: 0;
    }
    .nav-mobile-panel {
      display: none;
      flex-direction: column;
      padding: 8px var(--pad-x) 24px;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
    }
    .nav-mobile-panel a {
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      text-decoration: none;
      color: var(--ink);
      font-size: 17px;
    }
    .nav-mobile-panel a:last-child { border-bottom: none; }
    .nav-mobile-panel.open { display: flex; }
    .nav-mobile-socials {
      display: flex;
      gap: 14px;
      padding-top: 16px;
    }
    .nav-mobile-socials a {
      border: 1px solid var(--border-strong);
      padding: 10px 14px;
      border-radius: var(--radius);
      font-size: 14px;
      text-decoration: none;
    }

    @media (max-width: 940px) {
      .site-nav { display: none; }
      .nav-mobile-toggle { display: inline-flex; }
      .site-logo img { height: 46px; }
    }

    /* ========== Hero (full-bleed photo, text overlay) ========== */
    .hero {
      position: relative;
      /* Taller so the marquee is just barely visible on page load — the
         photo carries the visual weight. */
      min-height: clamp(660px, 92vh, 920px);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      isolation: isolate;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -2;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* Center on the silhouetted regulars + clock. */
      object-position: center center;
      /* Blur is pre-baked into the WebP (PIL gaussian r=3 ≈ CSS blur(2px))
         so the browser does zero runtime filter work. Saturation/brightness
         baked in too. No CSS filter, no scale transform — straight bitmap
         paint, Lighthouse-friendly. */
      filter: saturate(108%) brightness(0.97);
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: -1;
      /* Semi-opaque wash — middle ground that keeps the pastries visible
         while restoring eyebrow + sub-copy + italic-accent legibility. */
      background:
        /* A touch lighter than before — still keeps the cream + gold logo readable */
        linear-gradient(180deg, rgba(42, 31, 20, 0.48) 0%, rgba(42, 31, 20, 0.38) 22%, rgba(42, 31, 20, 0.44) 60%, rgba(42, 31, 20, 0.62) 100%),
        radial-gradient(ellipse 70% 55% at center 45%, rgba(42, 31, 20, 0.18) 0%, rgba(42, 31, 20, 0) 75%);
    }
    .hero-ghost-222 {
      position: absolute;
      /* ~1.5in above the hero's vertical center (mirrors the headline's
         optical center after the asymmetric hero-inner padding push). */
      top: calc(50% - 140px);
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--heading-font);
      font-size: clamp(22rem, 48vw, 44rem);
      font-weight: 500;
      color: #FAF7EE;
      /* Subtle against the new cinematic interior hero — the dark photo
         lets a very low opacity still register without competing with
         the silhouettes + clock. */
      opacity: 0.10;
      text-shadow: 0 4px 28px rgba(0, 0, 0, 0.2);
      line-height: 0.9;
      letter-spacing: -0.04em;
      pointer-events: none;
      user-select: none;
      z-index: -1;
    }
    .hero-inner {
      position: relative;
      /* Asymmetric padding so the eyebrow has real breathing room above it
         (compensating for the 88px cream header that sits over the hero top). */
      padding: clamp(96px, 15vh, 160px) var(--pad-x) clamp(56px, 9vh, 100px);
      width: 100%;
      max-width: 900px;
      color: #FAF7EE;
    }
    .hero-eyebrow {
      font-family: var(--body-font);
      font-size: 14px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #FAF7EE;
      margin: 0 0 24px;
      font-weight: 600;
      /* Sharper read against the warm pastry photo */
      text-shadow: 0 1px 2px rgba(0,0,0,0.55), 0 2px 16px rgba(0,0,0,0.45);
    }
    .hero h1 {
      font-family: var(--heading-font);
      font-weight: 500;
      /* Sized so a longer SEO-friendly H1 ("Where Edwardsville starts the day.")
         fits cleanly without dominating the fold. */
      font-size: clamp(2.6rem, 5.4vw, 4.4rem);
      line-height: 1.04;
      color: #FAF7EE;
      margin: 0 0 18px;
      letter-spacing: -0.015em;
      text-shadow: 0 2px 30px rgba(0,0,0,0.3);
      position: relative;
      isolation: isolate;
    }
    .hero h1::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 120%;
      height: 180%;
      background: radial-gradient(ellipse at center, rgba(212, 138, 90, 0.22) 0%, rgba(212, 138, 90, 0.10) 35%, transparent 65%);
      z-index: -1;
      pointer-events: none;
    }
    .hero h1 .italic-line {
      display: block;
      font-style: italic;
      /* Brighter warm peach (vs muted --accent-soft #D9A589) so the line
         carries its own light against the dark blurred hero photo. */
      color: #F5C49B;
      font-weight: 500;
      font-size: clamp(1.9rem, 4.4vw, 3.2rem);
      letter-spacing: 0.005em;
      margin-top: 6px;
      /* Lit-from-behind effect: crisp dark shadow underneath for legibility
         + a warm terracotta halo that radiates outward, so the words read
         as illuminated against the photo instead of laid flat on it. */
      text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.55),
        0 0 22px rgba(216, 109, 73, 0.55),
        0 0 60px rgba(216, 109, 73, 0.35);
    }
    .hero-sub {
      font-family: var(--body-font);
      font-size: clamp(1.05rem, 1.4vw, 1.22rem);
      color: rgba(250, 247, 238, 0.93);
      max-width: 620px;
      margin: 0 auto 38px;
      line-height: 1.65;
    }
    .hero-ctas {
      display: inline-flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* ========== Buttons ========== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 15px 28px;
      min-height: 48px;
      border-radius: var(--radius);
      font-family: var(--body-font);
      font-size: 15.5px;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-decoration: none;
      transition: background 0.15s, color 0.15s, transform 0.1s, border-color 0.15s;
      cursor: pointer;
      border: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
      color: var(--accent-on);
      box-shadow: 0 8px 22px -10px rgba(132, 62, 38, 0.55);
      transition: background 0.15s, color 0.15s, transform 0.1s, border-color 0.15s, box-shadow 0.25s ease;
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
      box-shadow: 0 14px 34px -10px rgba(132, 62, 38, 0.7);
    }
    .btn-primary:active { transform: translateY(1px); box-shadow: 0 6px 18px -10px rgba(132, 62, 38, 0.55); }
    .btn-cream { background: var(--paper); color: var(--ink); }
    .btn-cream:hover { background: var(--bg-deep); }
    .btn-outline-light {
      background: transparent;
      color: #FAF7EE;
      border: 1.5px solid rgba(250, 247, 238, 0.7);
    }
    .btn-outline-light:hover { background: rgba(250, 247, 238, 0.15); border-color: #FAF7EE; }
    .btn-outline-ink {
      background: transparent;
      color: var(--ink);
      border: 1.5px solid var(--ink);
    }
    .btn-outline-ink:hover { background: var(--ink); color: var(--bg); }
    .btn-ghost {
      background: transparent;
      color: var(--accent);
      border-bottom: 1.5px solid var(--accent);
      border-radius: 0;
      padding: 4px 0;
    }
    .btn-ghost:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }

    /* ========== Marquee ========== */
    .marquee {
      background: var(--ink);
      color: var(--bg);
      overflow: hidden;
      padding: 18px 0;
      border-top: 1px solid var(--ink);
      border-bottom: 1px solid var(--ink);
    }
    .marquee-track {
      display: flex;
      /* gap:0 — the inter-copy spacing is baked into each marquee-item's
         padding-right so the translateX(-50%) loop lands EXACTLY on the
         start of the second identical copy (no half-gap stutter). */
      gap: 0;
      white-space: nowrap;
      width: max-content;
      animation: marquee 38s linear infinite;
      font-family: var(--body-font);
      font-size: 14.5px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .marquee:hover .marquee-track { animation-play-state: paused; }
    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 64px;
      padding-right: 64px;
      flex-shrink: 0;
    }
    .marquee-item::after {
      content: "✦";
      color: var(--accent);
      margin-left: 0;
      font-size: 12px;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .marquee-track { animation: none; justify-content: center; flex-wrap: wrap; gap: 24px; }
      .marquee-item::after { display: none; }
    }

    /* ========== Section base ========== */
    .section { padding: var(--section-y) 0; }
    .section-tight { padding: clamp(48px, 6vw, 80px) 0; }
    /* Operator note: these two sections sit close to the bottom of the page
       and the default --section-y was reading as "extra heavy" against the
       lighter content above. Cut top-padding in half. */
    #faq.section, #visit.section { padding-top: calc(var(--section-y) / 2); }
    .section-head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 740px; }
    .section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
    .eyebrow {
      font-family: var(--body-font);
      font-size: 12.5px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 16px;
      font-weight: 600;
      white-space: normal;
      overflow-wrap: break-word;
    }
    .section h2, .display-h2 {
      font-family: var(--heading-font);
      font-weight: 500;
      font-size: clamp(2.2rem, 4.6vw, 3.4rem);
      line-height: 1.08;
      color: var(--ink);
      margin: 0 0 20px;
      letter-spacing: -0.012em;
    }
    .section h2 .italic-display,
    .display-h2 .italic-display {
      display: block;
      font-style: italic;
      font-weight: 500;
    }
    .section-lede {
      font-family: var(--body-font);
      font-size: clamp(1.05rem, 1.3vw, 1.18rem);
      color: var(--ink-soft);
      line-height: 1.7;
      margin: 0;
    }

    /* ========== Split (image + body) ========== */
    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(36px, 6vw, 72px);
      align-items: center;
    }
    .split-wide-media { grid-template-columns: 1.15fr 1fr; }
    .split-wide-text  { grid-template-columns: 1fr 1.15fr; }
    .split-text-first .split-media { order: 2; }

    .split-media {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 4 / 5;
      box-shadow:
        inset 0 0 0 1px rgba(42, 31, 20, 0.06),
        0 22px 60px -30px rgba(42, 31, 20, 0.4);
    }
    .split-media-wide { aspect-ratio: 4 / 3; }
    .split-media img {
      width: 100%; height: 100%; object-fit: cover;
    }
    /* Bottom-fade overlay for label readability on every framed split image (Wave 4.7) */
    .split-media::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 38%;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(42, 31, 20, 0) 0%, rgba(42, 31, 20, 0.45) 100%);
    }
    .split-media-cap,
    .split-media > img { position: relative; }
    .split-media-cap { z-index: 2; }
    .split-media-cap {
      position: absolute;
      bottom: 14px; left: 14px;
      background: rgba(42, 31, 20, 0.88);
      color: var(--bg);
      padding: 6px 12px;
      font-family: var(--body-font);
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: var(--radius);
    }
    .split-body p {
      font-family: var(--body-font);
      font-size: clamp(1.02rem, 1.2vw, 1.1rem);
      line-height: 1.75;
      color: var(--ink);
      margin: 0 0 18px;
    }
    .split-body p:last-of-type { margin-bottom: 0; }

    @media (max-width: 940px) {
      .split, .split-wide-media, .split-wide-text { grid-template-columns: 1fr; }
      .split-text-first .split-media { order: 0; }
      .split-media { aspect-ratio: 4 / 3; max-height: 540px; }
    }

    /* ========== Timeline ========== */
    .timeline {
      list-style: none;
      padding: 0;
      margin: 32px 0 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      border-top: 1px solid var(--border);
      padding-top: 28px;
    }
    .timeline li {
      font-family: var(--body-font);
      font-size: 13px;
      color: var(--ink-soft);
      line-height: 1.5;
      position: relative;
      padding-top: 22px;
    }
    .timeline li::before {
      content: "";
      position: absolute;
      top: 4px; left: 0;
      width: 11px; height: 11px;
      border-radius: 50%;
      background: var(--border-strong);
    }
    .timeline li.active { color: var(--ink); font-weight: 600; }
    .timeline li.active::before { background: var(--accent); box-shadow: 0 0 0 4px rgba(184, 92, 58, 0.18); }
    .timeline li strong {
      display: block;
      font-family: var(--heading-font);
      color: var(--ink);
      font-size: 1.1rem;
      margin-bottom: 4px;
      font-weight: 600;
    }
    @media (max-width: 720px) {
      .timeline { grid-template-columns: repeat(2, 1fr); }
    }

    /* ========== Signature reel ========== */
    .reel {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .reel-card {
      background: var(--surface);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 18px 40px -32px rgba(42, 31, 20, 0.4);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .reel-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 60px -28px rgba(42, 31, 20, 0.55);
    }
    .reel-card-photo {
      aspect-ratio: 4 / 3;
      overflow: hidden;
      position: relative;
      box-shadow: inset 0 0 0 1px rgba(42, 31, 20, 0.06);
    }
    .reel-card-photo img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s ease;
    }
    .reel-card:hover .reel-card-photo img { transform: scale(1.04); }
    .reel-card-body { padding: 26px 26px 30px; }
    .reel-card-tag {
      display: inline-block;
      font-family: var(--body-font);
      font-size: 11.5px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
      font-weight: 600;
    }
    .reel-card h3 {
      font-family: var(--heading-font);
      font-weight: 600;
      font-size: 1.55rem;
      color: var(--ink);
      margin: 0 0 10px;
      line-height: 1.2;
    }
    .reel-card p {
      font-family: var(--body-font);
      color: var(--ink-soft);
      font-size: 15.5px;
      margin: 0;
      line-height: 1.6;
    }
    @media (max-width: 940px) {
      .reel { grid-template-columns: 1fr; gap: 22px; }
    }

    /* ========== Bread schedule ========== */
    .schedule {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .schedule-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: 36px;
    }
    .schedule-day {
      background: var(--surface);
      padding: 22px 18px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      min-height: 200px;
    }
    .schedule-day-name {
      font-family: var(--heading-font);
      font-size: 1.45rem;
      color: var(--ink);
      font-weight: 600;
      margin-bottom: 8px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }
    .schedule-day ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .schedule-day li {
      font-family: var(--body-font);
      font-size: 14.5px;
      color: var(--ink-soft);
      line-height: 1.4;
    }
    @media (max-width: 940px) {
      .schedule-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 540px) {
      .schedule-grid { grid-template-columns: 1fr; }
    }

    /* ========== Stats ========== */
    .stats {
      background: var(--ink);
      color: var(--bg);
      /* 70% tighter top/bottom — band reads as a marquee strip, not a section */
      padding: clamp(18px, 2.4vw, 33px) 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      text-align: center;
    }
    .stats-grid > * {
      position: relative;
      padding-top: 18px;
    }
    .stats-grid > *::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 32px;
      height: 2px;
      background: var(--accent);
      border-radius: 1px;
    }
    .stat-num {
      display: block;
      font-family: var(--heading-font);
      font-weight: 500;
      font-size: clamp(3rem, 5.6vw, 4.6rem);
      color: var(--accent-soft);
      line-height: 1;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .stat-label {
      font-family: var(--body-font);
      font-size: 14px;
      color: rgba(250, 247, 238, 0.78);
      letter-spacing: 0.06em;
      line-height: 1.4;
    }
    @media (max-width: 720px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
    }

    /* ========== Menu teaser (sandwiches + pizzas) ========== */
    .menu-block {
      background: var(--surface);
    }
    .menu-twocol {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 5vw, 72px);
    }
    .menu-col h3 {
      font-family: var(--heading-font);
      font-size: 1.9rem;
      font-weight: 600;
      color: var(--ink);
      margin: 0 0 8px;
    }
    .menu-col-sub {
      font-family: var(--body-font);
      font-size: 14px;
      color: var(--ink-soft);
      margin: 0 0 24px;
      font-style: italic;
    }
    .menu-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
    }
    .menu-list li {
      padding: 14px 0;
      border-top: 1px solid var(--border);
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px;
      align-items: baseline;
    }
    .menu-list li:last-child { border-bottom: 1px solid var(--border); }
    .menu-item-name {
      font-family: var(--heading-font);
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--ink);
      white-space: nowrap;
    }
    .menu-item-desc {
      font-family: var(--body-font);
      font-size: 14.5px;
      color: var(--ink-soft);
      line-height: 1.5;
    }
    @media (max-width: 940px) {
      .menu-twocol { grid-template-columns: 1fr; }
    }

    /* ========== Pull quote ========== */
    .pull-quote {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      padding: 0 var(--pad-x);
    }
    .pull-quote-mark {
      display: block;
      font-family: var(--heading-font);
      font-style: italic;
      color: var(--accent);
      font-size: clamp(5rem, 10vw, 8rem);
      line-height: 0.5;
      margin: 0 0 4px;
      font-weight: 500;
    }
    .pull-quote-text {
      font-family: var(--heading-font);
      font-style: italic;
      font-weight: 400;
      font-size: clamp(1.6rem, 3.4vw, 2.6rem);
      line-height: 1.3;
      color: var(--ink);
      margin: 0 0 22px;
      letter-spacing: -0.005em;
    }
    .pull-quote-stars {
      color: var(--accent);
      font-size: 18px;
      letter-spacing: 0.22em;
      margin-bottom: 10px;
    }
    .pull-quote-cite {
      font-family: var(--body-font);
      font-size: 13.5px;
      color: var(--ink-soft);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-style: normal;
    }
    /* Testimonials section "see all reviews on Google" CTA card */
    .testimonial-card.testimonial-card-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: var(--bg-deep);
      border: 1px dashed var(--border-strong);
    }
    .testimonial-card-cta-stars {
      color: var(--accent);
      font-size: 18px;
      letter-spacing: 0.18em;
      margin-bottom: 14px;
    }
    .testimonial-card-cta-num {
      font-family: var(--heading-font);
      font-weight: 500;
      font-size: clamp(2.6rem, 4.4vw, 3.4rem);
      color: var(--ink);
      line-height: 1;
      margin: 0 0 6px;
      letter-spacing: -0.01em;
    }
    .testimonial-card-cta-sub {
      font-family: var(--body-font);
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin: 0 0 24px;
    }
    .testimonial-card-cta-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: var(--accent);
      text-decoration: none;
      font-family: var(--body-font);
      font-size: 14.5px;
      font-weight: 600;
      transition: color 0.15s ease;
    }
    .testimonial-card-cta-link:hover { color: var(--accent-deep); }
    .testimonial-card-cta-arrow {
      font-size: 20px;
      line-height: 1;
      transition: transform 0.2s ease;
    }
    .testimonial-card-cta-link:hover .testimonial-card-cta-arrow {
      transform: translateY(3px);
    }
    .menu-headline { white-space: normal; }
    @media (min-width: 720px) {
      /* Force the first headline line on one row at desktop widths */
      .menu-headline { text-wrap: balance; }
    }

    /* ========== Testimonials (2 big editorial cards) ========== */
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .testimonial-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px 36px 32px;
      display: flex;
      flex-direction: column;
    }
    .testimonial-stars {
      color: var(--accent);
      font-size: 18px;
      letter-spacing: 0.12em;
      margin-bottom: 18px;
    }
    .testimonial-quote {
      font-family: var(--heading-font);
      font-style: italic;
      font-size: clamp(1.2rem, 1.7vw, 1.45rem);
      color: var(--ink);
      line-height: 1.45;
      margin: 0 0 28px;
      flex-grow: 1;
      font-weight: 400;
    }
    .testimonial-cite {
      font-family: var(--body-font);
      font-size: 14px;
      color: var(--ink-soft);
      border-top: 1px solid var(--border);
      padding-top: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .testimonial-cite strong {
      color: var(--ink);
      font-weight: 600;
    }
    .source-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-mute);
    }
    @media (max-width: 940px) {
      .testimonials-grid { grid-template-columns: 1fr; }
    }

    /* ========== FAQ ========== */
    .faq-list { max-width: 800px; margin: 0 auto; }
    .faq-item { border-top: 1px solid var(--border); padding: 24px 0; }
    .faq-item:last-child { border-bottom: 1px solid var(--border); }
    .faq-item summary {
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 24px;
      font-family: var(--heading-font);
      font-weight: 600;
      font-size: 1.4rem;
      color: var(--ink);
      line-height: 1.3;
      min-height: 48px;
      padding: 6px 0;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: "+";
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-family: var(--body-font);
      font-size: 20px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 2px;
      transition: transform 0.25s ease, background 0.2s, color 0.2s;
    }
    .faq-item summary:hover::after { background: var(--accent); color: var(--accent-on); }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item-body {
      padding-top: 14px;
      font-family: var(--body-font);
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.7;
      max-width: 720px;
    }

    /* ========== Visit ========== */
    .visit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 36px;
    }
    .visit-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
    }
    .visit-card h3 {
      font-family: var(--heading-font);
      font-weight: 600;
      font-size: 1.5rem;
      color: var(--ink);
      margin: 0 0 20px;
    }
    .hours-row {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      padding: 8px 0;
      align-items: baseline;
      border-bottom: 1px dashed var(--border);
    }
    .hours-row:last-of-type { border-bottom: none; }
    .hours-day {
      font-family: var(--body-font);
      font-weight: 600;
      color: var(--ink);
      font-size: 14.5px;
      letter-spacing: 0.02em;
    }
    .hours-time {
      font-family: var(--body-font);
      color: var(--ink-soft);
      font-size: 14.5px;
      text-align: right;
    }
    .visit-card dl { margin: 0; }
    .visit-card dt {
      font-family: var(--body-font);
      font-size: 12.5px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-top: 16px;
    }
    .visit-card dt:first-of-type { margin-top: 0; }
    .visit-card dd {
      font-family: var(--body-font);
      font-size: 16px;
      color: var(--ink);
      margin: 4px 0 0;
      line-height: 1.5;
    }
    .visit-card dd a {
      color: var(--accent);
      text-decoration: none;
      border-bottom: 1px solid transparent;
    }
    .visit-card dd a:hover { border-bottom-color: var(--accent); }
    .visit-cta { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); }
    @media (max-width: 720px) {
      .visit-grid { grid-template-columns: 1fr; }
    }

    /* ========== Newsletter ========== */
    .newsletter {
      background: var(--bg-deep);
      padding: clamp(56px, 7vw, 96px) 0;
      border-top: 1px solid var(--border);
    }
    .newsletter-inner {
      max-width: 680px;
      margin: 0 auto;
      text-align: center;
      padding: 0 var(--pad-x);
    }
    .newsletter h2 { margin-bottom: 12px; }
    .newsletter p {
      font-family: var(--body-font);
      color: var(--ink-soft);
      font-size: 17px;
      line-height: 1.6;
      margin: 0 0 28px;
    }
    .newsletter-form {
      display: flex;
      gap: 10px;
      max-width: 460px;
      margin: 0 auto;
    }
    .newsletter-form input[type="email"] {
      flex: 1;
      padding: 14px 16px;
      font-family: var(--body-font);
      font-size: 15.5px;
      border: 1.5px solid var(--border-strong);
      border-radius: var(--radius);
      background: var(--surface);
      color: var(--ink);
    }
    .newsletter-form input[type="email"]:focus {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
      border-color: var(--accent);
    }
    .newsletter-form button {
      padding: 14px 26px;
      font-family: var(--body-font);
      font-size: 15.5px;
      font-weight: 600;
      background: var(--accent);
      color: var(--accent-on);
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: background 0.15s;
    }
    .newsletter-form button:hover { background: var(--accent-deep); }
    .newsletter-tiny {
      font-size: 13px;
      color: var(--ink-mute);
      margin-top: 12px;
    }
    @media (max-width: 540px) {
      .newsletter-form { flex-direction: column; }
    }

    /* ========== Footer ========== */
    .site-footer {
      background: var(--ink);
      color: rgba(250, 247, 238, 0.85);
      padding: clamp(64px, 8vw, 96px) 0 32px;
    }
    .site-footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 44px;
      border-bottom: 1px solid rgba(250, 247, 238, 0.15);
    }
    .footer-brand img {
      height: 64px;
      width: auto;
      margin-bottom: 20px;
      filter: brightness(1.05);
    }
    .footer-brand p {
      font-family: var(--body-font);
      font-size: 15px;
      line-height: 1.65;
      margin: 0 0 18px;
      max-width: 320px;
      color: rgba(250, 247, 238, 0.7);
    }
    .footer-socials {
      display: flex;
      gap: 10px;
    }
    .footer-socials a {
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(250, 247, 238, 0.25);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(250, 247, 238, 0.85);
      transition: background 0.15s, color 0.15s, border-color 0.15s;
    }
    .footer-socials a:hover { background: var(--accent); color: var(--accent-on); border-color: var(--accent); }
    .footer-socials svg { width: 16px; height: 16px; }
    .footer-col h4 {
      font-family: var(--body-font);
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
      margin: 0 0 16px;
      font-weight: 600;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-col a {
      color: rgba(250, 247, 238, 0.85);
      text-decoration: none;
      font-family: var(--body-font);
      font-size: 15px;
    }
    .footer-col a:hover { color: var(--accent-on); }
    .footer-col p {
      font-family: var(--body-font);
      font-size: 15px;
      margin: 0 0 10px;
      color: rgba(250, 247, 238, 0.85);
      line-height: 1.55;
    }
    .site-footer-bottom {
      padding-top: 26px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }
    .footer-copy {
      font-family: var(--body-font);
      font-size: 13px;
      color: rgba(250, 247, 238, 0.55);
      margin: 0;
    }
    .footer-copy a {
      color: rgba(250, 247, 238, 0.85);
      text-decoration: underline;
    }
    @media (max-width: 940px) {
      .site-footer-top { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
    }
    @media (max-width: 540px) {
      .site-footer-top { grid-template-columns: 1fr; }
    }

    /* ========== Focus + reduced-motion ========== */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }
    a:focus-visible, button:focus-visible, .btn:focus-visible, summary:focus-visible,
    input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
      border-radius: 4px;
    }

    /* ========== Plaid Coffee feature card (centered logo + copy + CTAs) ========== */
    .plaid-feature {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 48px);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: 0 22px 60px -36px rgba(42, 31, 20, 0.28);
    }
    /* Themed variant — wears Plaid Coffee's own visual identity
       (deep black + warm-dark surface + cream text + coral-pink accent).
       Reads as Plaid stepping onto the 222 site, not just a mention. */
    .plaid-feature.plaid-feature-themed {
      --plaid-bg:      #0F0F0F;
      --plaid-surface: #1F1815;
      --plaid-ink:     #F5EFE2;
      --plaid-ink-soft:#C9BBA9;
      --plaid-accent:  #E04E5C;
      --plaid-accent-deep: #B33846;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(224, 78, 92, 0.18) 0%, rgba(224, 78, 92, 0) 70%),
        var(--plaid-surface);
      border: 1px solid rgba(245, 239, 226, 0.10);
      box-shadow:
        0 0 0 1px rgba(224, 78, 92, 0.22),
        0 28px 80px -32px rgba(0, 0, 0, 0.65);
      color: var(--plaid-ink);
    }
    .plaid-feature.plaid-feature-themed .plaid-feature-logo {
      /* The PlaidLogoBlack file is dark — invert so the wordmark reads cream on dark */
      filter: brightness(0) invert(1) drop-shadow(0 6px 24px rgba(224, 78, 92, 0.25));
    }
    .plaid-feature.plaid-feature-themed .eyebrow {
      color: var(--plaid-accent);
    }
    .plaid-feature.plaid-feature-themed h2 {
      color: var(--plaid-ink);
    }
    .plaid-feature.plaid-feature-themed h2 .italic-display {
      color: var(--plaid-accent);
    }
    .plaid-feature.plaid-feature-themed .plaid-feature-lede {
      color: var(--plaid-ink-soft);
    }
    .plaid-feature.plaid-feature-themed .plaid-btn-primary {
      background: linear-gradient(135deg, var(--plaid-accent) 0%, var(--plaid-accent-deep) 100%);
      color: var(--plaid-bg);
      box-shadow: 0 10px 28px -10px rgba(224, 78, 92, 0.55);
    }
    .plaid-feature.plaid-feature-themed .plaid-btn-primary:hover {
      background: linear-gradient(135deg, var(--plaid-accent-deep) 0%, var(--plaid-accent) 100%);
      box-shadow: 0 14px 36px -10px rgba(224, 78, 92, 0.7);
      color: var(--plaid-bg);
    }
    .plaid-feature.plaid-feature-themed .plaid-btn-outline {
      color: var(--plaid-ink);
      border-color: rgba(245, 239, 226, 0.45);
    }
    .plaid-feature.plaid-feature-themed .plaid-btn-outline:hover {
      background: rgba(245, 239, 226, 0.12);
      border-color: var(--plaid-ink);
      color: var(--plaid-ink);
    }
    .plaid-feature-logo {
      height: clamp(60px, 9vw, 110px);
      width: auto;
      margin: 0 auto clamp(20px, 3vw, 32px);
      display: block;
    }
    .plaid-feature .eyebrow { margin-bottom: 10px; }
    .plaid-feature h2 { margin: 0 0 18px; }
    .plaid-feature-lede {
      font-family: var(--body-font);
      font-size: clamp(1.02rem, 1.2vw, 1.12rem);
      color: var(--ink-soft);
      line-height: 1.7;
      max-width: 580px;
      margin: 0 auto 28px;
    }
    .plaid-feature-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Plaid logo placed inside a .split-media slot (cafe page treatment).
       Wears Plaid Coffee's own dark + coral-pink visual identity so the card
       reads as Plaid's brand inside the bakery's brand. */
    .split-media.plaid-feature-card {
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(224, 78, 92, 0.22) 0%, rgba(224, 78, 92, 0) 70%),
        #1F1815;
      border: 1px solid rgba(245, 239, 226, 0.10);
      box-shadow:
        0 0 0 1px rgba(224, 78, 92, 0.22),
        inset 0 0 0 1px rgba(245, 239, 226, 0.06),
        0 28px 80px -32px rgba(0, 0, 0, 0.65);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(36px, 6vw, 80px);
    }
    /* Disable the inherited brown bottom-fade — clashes with Plaid's dark surface */
    .split-media.plaid-feature-card::after { display: none; }
    .split-media.plaid-feature-card img {
      width: auto;
      height: auto;
      max-width: 80%;
      max-height: 60%;
      object-fit: contain;
      filter: brightness(0) invert(1) drop-shadow(0 8px 28px rgba(224, 78, 92, 0.32));
    }
    /* Caption pill on the Plaid card wears the coral accent, not the brown */
    .split-media.plaid-feature-card .split-media-cap {
      background: rgba(224, 78, 92, 0.92);
      color: #FFF6F2;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    /* Two-card reel variant (cafe page after removing chai card) */
    .reel.reel-2 {
      grid-template-columns: repeat(2, 1fr);
      max-width: 760px;
      margin: 0 auto;
    }
    @media (max-width: 940px) {
      .reel.reel-2 { grid-template-columns: 1fr; }
    }
    /* Four-card reel variant (cafe page "on the bar" section) — coffee + sandwiches + soups/salads + pastries */
    .reel.reel-4 {
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }
    .reel.reel-4 .reel-card-body { padding: 22px 22px 26px; }
    .reel.reel-4 .reel-card h3 { font-size: 1.4rem; }
    .reel.reel-4 .reel-card p { font-size: 14.5px; line-height: 1.55; }
    @media (max-width: 1080px) {
      .reel.reel-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    }
    @media (max-width: 640px) {
      .reel.reel-4 { grid-template-columns: 1fr; }
    }

    /* ========== Subpage hero variant (shorter, optional photo, breadcrumb) ========== */
    .page-hero {
      position: relative;
      padding: clamp(150px, 18vh, 220px) 0 clamp(56px, 7vw, 88px);
      text-align: center;
      isolation: isolate;
      overflow: hidden;
      background: var(--bg-deep);
      border-bottom: 1px solid var(--border);
    }
    .page-hero.has-photo {
      background: var(--ink);
      color: #FAF7EE;
      /* Immersive photo treatment — matches homepage hero rhythm so the image carries the weight. */
      min-height: clamp(560px, 72vh, 780px);
      display: flex;
      align-items: center;
      padding-top: clamp(140px, 14vh, 180px);
      padding-bottom: clamp(80px, 9vh, 120px);
    }
    .page-hero.has-photo > .container { width: 100%; }
    .page-hero-bg {
      position: absolute; inset: 0; z-index: -2;
    }
    .page-hero-bg img {
      width: 100%; height: 100%; object-fit: cover; object-position: center;
      filter: saturate(105%) contrast(102%);
    }
    .page-hero-overlay {
      position: absolute; inset: 0; z-index: -1;
      background: linear-gradient(180deg, rgba(42, 31, 20, 0.55) 0%, rgba(42, 31, 20, 0.75) 100%);
    }
    .page-hero-ghost {
      position: absolute;
      top: 50%; left: 50%; transform: translate(-50%, -50%);
      font-family: var(--heading-font);
      font-size: clamp(12rem, 28vw, 24rem);
      font-weight: 500;
      color: var(--accent);
      opacity: 0.07;
      line-height: 0.9;
      letter-spacing: -0.04em;
      pointer-events: none;
      user-select: none;
      z-index: -1;
    }
    .page-hero.has-photo .page-hero-ghost {
      color: #FAF7EE;
      opacity: 0.08;
    }
    .page-hero h1 {
      font-family: var(--heading-font);
      font-weight: 500;
      font-size: clamp(2.8rem, 6.5vw, 5rem);
      line-height: 1.05;
      margin: 0 0 18px;
      letter-spacing: -0.015em;
    }
    .page-hero h1 .italic-line {
      display: block;
      font-style: italic;
      color: var(--accent);
      font-weight: 400;
      font-size: clamp(2rem, 4.6vw, 3.4rem);
      margin-top: 6px;
    }
    .page-hero.has-photo h1 .italic-line { color: var(--accent-soft); }
    .page-hero p.lede {
      font-family: var(--body-font);
      font-size: clamp(1.05rem, 1.3vw, 1.18rem);
      color: var(--ink-soft);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.65;
    }
    .page-hero.has-photo p.lede { color: rgba(250, 247, 238, 0.9); }
    .page-hero .eyebrow { color: var(--accent); margin-bottom: 14px; }
    .page-hero.has-photo .eyebrow { color: var(--accent-soft); }

    /* Wave 5: per-page hero rhythm variations.
       Each subpage tunes padding + H1 size against its content-density purpose so no two heroes feel identical. */
    body.page-menu .page-hero { padding: clamp(132px, 15vh, 188px) 0 clamp(44px, 5.5vw, 68px); }
    body.page-menu .page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
    body.page-menu .page-hero h1 .italic-line { font-size: clamp(1.8rem, 4vw, 3rem); }

    body.page-contact .page-hero { padding: clamp(168px, 20vh, 248px) 0 clamp(64px, 8vw, 100px); }
    body.page-contact .page-hero h1 { font-size: clamp(2.9rem, 6.8vw, 5.2rem); }

    body.page-gallery .page-hero { padding: clamp(150px, 18vh, 220px) 0 clamp(68px, 8.5vw, 104px); }
    body.page-gallery .page-hero h1 .italic-line { letter-spacing: 0.01em; }

    body.page-story .page-hero.has-photo { padding-bottom: clamp(64px, 7.5vw, 96px); }
    body.page-story .page-hero h1 { font-size: clamp(2.7rem, 6.3vw, 4.9rem); }

    body.page-cafe .page-hero.has-photo { padding-bottom: clamp(60px, 7.2vw, 92px); }
    body.page-cafe .page-hero h1 .italic-line { font-size: clamp(2.05rem, 4.7vw, 3.5rem); }

    /* Breadcrumb */
    .breadcrumb {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      font-family: var(--body-font);
      font-size: 13px;
      color: var(--ink-mute);
      letter-spacing: 0.06em;
      margin: 0 0 18px;
    }
    .page-hero.has-photo .breadcrumb { color: rgba(250, 247, 238, 0.65); }
    .breadcrumb a {
      text-decoration: none;
      color: inherit;
      border-bottom: 1px solid transparent;
    }
    .breadcrumb a:hover { border-bottom-color: currentColor; }
    .breadcrumb-sep { opacity: 0.5; }

    /* ========== Gallery — true masonry via CSS columns ==========
       Photos keep their natural aspect ratios; the column-flow packing
       creates the staircase rhythm operator wanted instead of the uniform
       3-col grid. .wide and .tall modifiers are intentionally no-ops now. */
    .gallery {
      column-count: 3;
      column-gap: 16px;
    }
    .gallery-item {
      display: block;
      break-inside: avoid;
      margin: 0 0 16px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--surface);
      position: relative;
      box-shadow:
        inset 0 0 0 1px rgba(42, 31, 20, 0.06),
        0 18px 40px -32px rgba(42, 31, 20, 0.4);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.6s ease;
    }
    .gallery-item:hover {
      transform: translateY(-4px);
      box-shadow:
        inset 0 0 0 1px rgba(42, 31, 20, 0.06),
        0 28px 60px -28px rgba(42, 31, 20, 0.55);
    }
    .gallery-item:hover img { transform: scale(1.04); }
    .gallery-caption {
      position: absolute;
      left: 14px; bottom: 14px;
      background: rgba(42, 31, 20, 0.88);
      color: var(--bg);
      padding: 6px 12px;
      font-family: var(--body-font);
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: var(--radius);
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .gallery-item:hover .gallery-caption,
    .gallery-item:focus-within .gallery-caption {
      opacity: 1;
      transform: translateY(0);
    }
    @media (hover: none) {
      .gallery-caption { opacity: 1; transform: none; }
    }
    @media (max-width: 940px) {
      .gallery { column-count: 2; }
    }
    @media (max-width: 540px) {
      .gallery { column-count: 1; }
    }
    /* Cursor cue that gallery tiles open a lightbox */
    .gallery-item { cursor: zoom-in; }

    /* ========== Gallery Instagram rail (compact persistent CTA above the masonry) ========== */
    .gallery-insta-rail {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
      color: var(--accent-on);
      padding: 18px 0;
    }
    .gallery-insta-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin: 0;
      font-family: var(--heading-font);
      font-size: clamp(1.05rem, 1.6vw, 1.3rem);
      font-weight: 500;
      letter-spacing: 0.005em;
    }
    .gallery-insta-glyph { width: 22px; height: 22px; flex-shrink: 0; }
    .gallery-insta-line .btn-sm {
      padding: 8px 18px;
      font-size: 13px;
      letter-spacing: 0.08em;
    }
    @media (max-width: 540px) {
      .gallery-insta-line { font-size: 1rem; gap: 12px; }
    }

    /* ========== Gallery lightbox ========== */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      background: rgba(20, 14, 8, 0.92);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      padding: clamp(40px, 6vh, 80px) clamp(20px, 4vw, 60px);
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .lightbox.is-open { display: flex; opacity: 1; }
    .lightbox-stage {
      position: relative;
      max-width: min(1280px, 100%);
      max-height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .lightbox-image-wrap {
      max-width: 100%;
      max-height: calc(100vh - 200px);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lightbox-image {
      max-width: 100%;
      max-height: calc(100vh - 200px);
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: var(--radius);
      box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
    }
    .lightbox-caption {
      color: #FAF7EE;
      font-family: var(--body-font);
      font-size: 13.5px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
      opacity: 0.85;
    }
    .lightbox-counter {
      color: rgba(250, 247, 238, 0.6);
      font-family: var(--body-font);
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .lightbox-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(250, 247, 238, 0.1);
      border: 1px solid rgba(250, 247, 238, 0.25);
      color: #FAF7EE;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    .lightbox-btn:hover { background: rgba(250, 247, 238, 0.22); }
    .lightbox-prev { left: clamp(8px, 2vw, 32px); }
    .lightbox-next { right: clamp(8px, 2vw, 32px); }
    .lightbox-close {
      position: absolute;
      top: clamp(16px, 3vh, 32px);
      right: clamp(16px, 3vw, 32px);
      transform: none;
    }
    .lightbox-btn svg { width: 22px; height: 22px; }
    @media (max-width: 640px) {
      .lightbox-btn { width: 44px; height: 44px; }
      .lightbox-image, .lightbox-image-wrap { max-height: calc(100vh - 240px); }
    }
    body.lightbox-open { overflow: hidden; }

    /* ========== Contact form ========== */
    .contact-form {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: clamp(28px, 4vw, 44px);
      overflow: hidden;
    }
    .contact-form::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 100%);
      pointer-events: none;
    }
    .contact-form-expect {
      list-style: none;
      margin: 0 0 22px 0;
      padding: 0 0 18px 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .contact-form-expect li {
      position: relative;
      padding-left: 22px;
      font-family: var(--body-font);
      font-size: 15.5px;
      color: var(--ink);
      line-height: 1.5;
    }
    .contact-form-expect li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.65em;
      width: 12px;
      height: 1px;
      background: var(--accent);
    }
    .contact-form .field { margin-bottom: 18px; }
    .contact-form label {
      display: block;
      font-family: var(--body-font);
      font-size: 12.5px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 6px;
      font-weight: 600;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px 14px;
      font-family: var(--body-font);
      font-size: 16px;
      color: var(--ink);
      background: var(--bg);
      border: 1.5px solid var(--border-strong);
      border-radius: var(--radius);
      font-family: var(--body-font);
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
      border-color: var(--accent);
    }
    .contact-form textarea { resize: vertical; min-height: 130px; }
    .contact-form-actions { margin-top: 24px; }
    .contact-form button[type="submit"] {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
      color: var(--accent-on);
      box-shadow: 0 8px 22px -10px rgba(132, 62, 38, 0.55);
      transition: background 0.15s, color 0.15s, transform 0.1s, border-color 0.15s, box-shadow 0.25s ease;
    }
    .contact-form button[type="submit"]:hover {
      background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
      box-shadow: 0 14px 34px -10px rgba(132, 62, 38, 0.7);
    }
    .contact-form button[type="submit"]:active {
      transform: translateY(1px);
      box-shadow: 0 6px 18px -10px rgba(132, 62, 38, 0.55);
    }
    .contact-form-status {
      margin-top: 14px;
      font-size: 14.5px;
      color: var(--accent);
      font-family: var(--body-font);
    }

    /* ========== Menu page layout — slim left-rail nav + wide single-column menu ========== */
    /* Desktop: 220px sticky vertical nav on the left, menu sections on the right. */
    /* Mobile (≤880px): horizontal sticky bar at top, then full-width single-column menu. */
    body.page-menu { scroll-padding-top: 104px; }
    .menu-layout {
      display: grid;
      grid-template-columns: 220px minmax(0, 1fr);
      gap: clamp(32px, 4vw, 64px);
      align-items: start;
    }
    .menu-main { min-width: 0; }
    .menu-subnav {
      /* Sticky inside its grid cell — sits below the fixed header */
      position: sticky;
      top: 104px;
      align-self: start;
    }
    .menu-subnav-inner {
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding-right: 12px;
      border-right: 1px solid var(--border);
    }
    .menu-subnav a {
      display: block;
      padding: 10px 12px;
      font-family: var(--body-font);
      font-size: 14.5px;
      letter-spacing: 0.02em;
      color: var(--ink-soft);
      text-decoration: none;
      border-left: 2px solid transparent;
      border-radius: 3px 0 0 3px;
      transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    }
    .menu-subnav a:hover { color: var(--ink); background: rgba(184, 92, 58, 0.06); }
    .menu-subnav a.is-active {
      color: var(--accent);
      border-left-color: var(--accent);
      background: rgba(184, 92, 58, 0.08);
      font-weight: 600;
    }
    .menu-subnav a:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
      border-radius: 4px;
    }

    /* Mobile: collapse the grid and make the nav a top sticky horizontal bar */
    @media (max-width: 880px) {
      body.page-menu { scroll-padding-top: 134px; }
      .menu-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
      }
      .menu-subnav {
        position: sticky;
        top: 71px;
        z-index: 40;
        margin: 0 calc(-1 * var(--pad-x));
        padding: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
      }
      .menu-subnav-inner {
        flex-direction: row;
        gap: 6px;
        padding: 0 var(--pad-x);
        border-right: none;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x proximity;
      }
      .menu-subnav-inner::-webkit-scrollbar { display: none; }
      .menu-subnav a {
        flex: 0 0 auto;
        padding: 12px 12px 10px;
        font-size: 13.5px;
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 0;
        scroll-snap-align: start;
        white-space: nowrap;
        background: transparent;
      }
      .menu-subnav a:hover { background: transparent; }
      .menu-subnav a.is-active {
        background: transparent;
        border-left-color: transparent;
        border-bottom-color: var(--accent);
      }
    }

    /* ========== Full menu blocks ========== */
    .menu-section {
      margin-bottom: clamp(48px, 6vw, 80px);
    }
    .menu-section h2 {
      font-family: var(--heading-font);
      font-weight: 500;
      font-size: clamp(1.8rem, 3.4vw, 2.5rem);
      color: var(--ink);
      margin: 0 0 6px;
      letter-spacing: -0.01em;
    }
    .menu-section .menu-section-sub {
      font-family: var(--body-font);
      font-size: 14.5px;
      color: var(--ink-soft);
      margin: 0 0 24px;
      font-style: italic;
    }
    /* Always single-column rows; menu sits inside the .menu-main column */
    .menu-grid-2 {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .menu-row {
      padding: 12px 0;
      border-top: 1px solid var(--border);
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 16px;
      align-items: baseline;
    }
    .menu-row:last-child { border-bottom: 1px solid var(--border); }
    .menu-row .menu-name {
      font-family: var(--heading-font);
      font-weight: 600;
      font-size: 1.08rem;
      color: var(--ink);
      white-space: nowrap;
    }
    .menu-row .menu-desc {
      font-family: var(--body-font);
      font-size: 14.5px;
      color: var(--ink-soft);
      line-height: 1.5;
      min-width: 0;
      overflow-wrap: break-word;
    }
    @media (max-width: 560px) {
      .menu-row { grid-template-columns: 1fr; gap: 4px; }
      .menu-row .menu-name { white-space: normal; }
    }

    /* ========== Wave 1: Hero phone tap-line (above CTAs) ========== */
    .hero-phone-line {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 auto 22px;
      padding: 12px 20px;
      min-height: 44px;
      background: rgba(42, 31, 20, 0.45);
      backdrop-filter: blur(6px) saturate(140%);
      -webkit-backdrop-filter: blur(6px) saturate(140%);
      border: 1px solid rgba(250, 247, 238, 0.22);
      border-radius: 999px;
      font-family: var(--body-font);
      font-size: 14.5px;
      letter-spacing: 0.04em;
      color: rgba(250, 247, 238, 0.95);
      text-decoration: none;
      transition: background 0.15s ease, border-color 0.15s ease;
    }
    .hero-phone-line:hover {
      background: rgba(42, 31, 20, 0.65);
      border-color: rgba(250, 247, 238, 0.5);
    }
    .hero-phone-line svg { width: 14px; height: 14px; flex: none; }
    .hero-phone-line strong { font-weight: 600; letter-spacing: 0.02em; }

    /* ========== Per-image framing tweaks on the 3-up reel cards ==========
       The reel-card-photo wrapper is overflow:hidden + aspect-ratio 4/3, so
       transforming the inner <img> tighter than the wrapper zooms the
       visible crop. We override the generic :hover scale(1.04) so the bump
       stacks on top of the base zoom instead of replacing it. */
    .reel-card .reel-card-photo img.zoom-brioche {
      /* Tighter zoom anchored to the top-left so the middle of the three
         brioche loaves lands near the visual center of the card. */
      transform: scale(1.55);
      transform-origin: 10% 5%;
    }
    .reel-card:hover .reel-card-photo img.zoom-brioche {
      transform: scale(1.62);
    }
    .reel-card .reel-card-photo img.zoom-croissant {
      /* Anchor near bottom so the big front croissant stays fully in view. */
      transform: scale(1.30);
      transform-origin: 55% 90%;
    }
    .reel-card:hover .reel-card-photo img.zoom-croissant {
      transform: scale(1.36);
    }

    /* ========== Testimonial (light card under the marquee, formerly in hero) ========== */
    .hero-testimonial {
      padding: clamp(40px, 5vw, 64px) 0;
      background: var(--bg);
    }
    .hero-testimonial-card {
      max-width: 760px;
      margin: 0 auto;
      padding: clamp(24px, 3vw, 36px) clamp(24px, 4vw, 44px);
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      text-align: center;
      box-shadow: 0 18px 40px -32px rgba(42, 31, 20, 0.30);
    }
    .hero-testimonial-stars {
      color: var(--accent);
      font-size: 17px;
      letter-spacing: 0.22em;
      margin-bottom: 14px;
    }
    .hero-testimonial-quote {
      font-family: var(--heading-font);
      font-style: italic;
      font-size: clamp(1.15rem, 1.7vw, 1.45rem);
      color: var(--ink);
      line-height: 1.5;
      margin: 0 0 18px;
      font-weight: 400;
    }
    .hero-testimonial-cite {
      font-family: var(--body-font);
      font-size: 12.5px;
      color: var(--ink-soft);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-style: normal;
      margin: 0;
    }

    /* ========== Wave 1: Glass testimonial card (in hero) ========== */
    .hero-glass-quote {
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-width: 460px;
      width: max-content;
      margin: 32px auto 0;
      padding: 18px 22px;
      background: rgba(250, 247, 238, 0.12);
      backdrop-filter: blur(14px) saturate(140%);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      border: 1px solid rgba(250, 247, 238, 0.28);
      border-radius: var(--radius-lg);
      box-shadow: 0 22px 60px -28px rgba(0, 0, 0, 0.55);
      text-align: left;
    }
    .hero-glass-quote-stars {
      font-size: 14px;
      letter-spacing: 0.25em;
      color: #F4C36A;
    }
    .hero-glass-quote-text {
      font-family: var(--heading-font);
      font-style: italic;
      font-size: 1.05rem;
      line-height: 1.5;
      color: #FAF7EE;
      margin: 0;
      font-weight: 500;
    }
    .hero-glass-quote-cite {
      font-family: var(--body-font);
      font-size: 12.5px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(250, 247, 238, 0.78);
      font-style: normal;
      margin: 0;
    }
    @media (max-width: 540px) {
      .hero-glass-quote {
        margin-top: 28px;
        padding: 14px 16px;
      }
      .hero-glass-quote-text { font-size: 1rem; }
    }

    /* ========== Wave 1: Sticky mobile CTA bar ========== */
    .sticky-cta {
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 60;
      display: none;
      gap: 10px;
      padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
      background: rgba(245, 239, 226, 0.96);
      backdrop-filter: blur(14px) saturate(140%);
      -webkit-backdrop-filter: blur(14px) saturate(140%);
      border-top: 1px solid var(--border-strong);
      box-shadow: 0 -10px 28px -18px rgba(42, 31, 20, 0.4);
    }
    .sticky-cta a {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 12px 14px;
      font-family: var(--body-font);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-decoration: none;
      border-radius: var(--radius);
      transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    }
    .sticky-cta .sticky-cta-call {
      background: var(--accent);
      color: var(--accent-on);
    }
    .sticky-cta .sticky-cta-call:hover { background: var(--accent-deep); }
    .sticky-cta .sticky-cta-menu {
      background: transparent;
      color: var(--ink);
      border: 1.5px solid var(--ink);
    }
    .sticky-cta .sticky-cta-menu:hover { background: var(--ink); color: var(--bg); }
    .sticky-cta svg { width: 16px; height: 16px; flex: none; }
    @media (max-width: 880px) {
      .sticky-cta { display: flex; }
      /* Reserve room so footer + bottom content aren't covered */
      body { padding-bottom: 78px; }
    }

    /* ========== Wave 1: Desktop floating CTA pill ========== */
    .floating-cta {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 55;
      display: none;
      align-items: center;
      gap: 10px;
      padding: 13px 22px 13px 18px;
      background: var(--accent);
      color: var(--accent-on);
      text-decoration: none;
      border-radius: 999px;
      font-family: var(--body-font);
      font-size: 14.5px;
      font-weight: 600;
      letter-spacing: 0.02em;
      box-shadow: 0 18px 40px -16px rgba(139, 63, 34, 0.55), 0 4px 12px -4px rgba(42, 31, 20, 0.25);
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.25s ease, transform 0.25s ease, background 0.15s ease;
    }
    .floating-cta:hover { background: var(--accent-deep); }
    .floating-cta svg { width: 16px; height: 16px; flex: none; }
    .floating-cta.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    @media (min-width: 881px) {
      .floating-cta { display: inline-flex; }
    }
    @media (prefers-reduced-motion: reduce) {
      .floating-cta { transition: opacity 0.15s ease; transform: none; }
      .floating-cta.is-visible { transform: none; }
    }

    /* ========== Wave 2: line-length cap on prose (~72ch measure) ========== */
    .split-body p,
    .section-lede,
    .story-content p,
    p.lede,
    .hero-sub {
      max-width: 72ch;
    }
    .split-body p { max-width: 68ch; }
    .section-lede { max-width: 64ch; }
    /* Exceptions (nav, hours, tables, menu rows, eyebrow labels) are not affected. */

    /* ========== Wave 2: mobile wrap safety (prevents headline + eyebrow overflow) ========== */
    @media (max-width: 540px) {
      .hero h1,
      .hero h1 .italic-line,
      .hero-sub,
      .page-hero h1,
      .page-hero h1 .italic-line,
      .page-hero p.lede,
      .eyebrow {
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
      }
      .eyebrow {
        letter-spacing: 0.06em;
        font-size: 11px;
      }
      .page-hero h1 .italic-line { letter-spacing: -0.005em; }
      /* Wave 8: extra inline buffer so text breathes from viewport edge */
      .hero-sub,
      .page-hero p.lede,
      .section-lede {
        padding-inline: 12px;
        box-sizing: border-box;
        max-width: 100%;
      }
    }
    /* Wave 8: narrow viewports. Eyebrow chains and long body lines
       need to wrap aggressively. Allow line breaks anywhere if a word
       would push the viewport. Targets up through phone-landscape so
       headless renderers that report ~500px viewport still match. */
    @media (max-width: 540px) {
      .eyebrow,
      .hero-eyebrow,
      .hero-sub,
      .page-hero p.lede,
      .hero h1 .italic-line,
      .page-hero h1 .italic-line {
        overflow-wrap: anywhere;
        word-break: normal;
      }
      .hero-eyebrow {
        letter-spacing: 0.12em;
        font-size: 13px;
      }
      /* Shrink display italic-line on narrow so long phrases
         like "Bakery, cafe, and pizza on the weekend." fit two lines */
      body.page-menu .page-hero h1 .italic-line { font-size: clamp(1.4rem, 4.5vw, 1.9rem); line-height: 1.15; }
      .hero h1 .italic-line { font-size: clamp(2rem, 8.5vw, 2.6rem); line-height: 1.1; }
    }

    /* ========== Wave 2: entrance reveals via IntersectionObserver ========== */
    [data-reveal] {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.7s ease, transform 0.7s ease;
      will-change: opacity, transform;
    }
    [data-reveal="seen"] {
      opacity: 1;
      transform: translateY(0);
    }
    /* Cinematic resolve: the whole pull-quote unifies from heavy blur +
       low opacity + slight scale to fully crisp over 2.2s — feels like
       a camera focus pulling in, not four staccato beats. */
    .pull-quote[data-reveal="cinematic"] {
      opacity: 0;
      filter: blur(14px) saturate(60%);
      transform: scale(0.96);
      transition:
        opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1),
        filter 2.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, filter, transform;
    }
    .pull-quote[data-reveal="cinematic-seen"] {
      opacity: 1;
      filter: blur(0) saturate(100%);
      transform: scale(1);
    }
    @media (prefers-reduced-motion: reduce) {
      [data-reveal],
      .pull-quote[data-reveal="cinematic"],
      .pull-quote[data-reveal="cinematic-seen"] {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
      }
    }

    /* ========== Wave 8: handwritten script signature flourish ========== */
    .signature-script {
      font-family: "Caveat", "Brush Script MT", cursive;
      font-style: normal;
      font-weight: 500;
      font-size: clamp(1.7rem, 2.4vw, 2.1rem);
      color: var(--accent);
      letter-spacing: 0.005em;
      line-height: 1.1;
      display: inline-block;
      margin-top: 18px;
      transform: rotate(-2deg);
      transform-origin: left center;
    }
    @media (prefers-reduced-motion: reduce) {
      .signature-script { transform: none; }
    }

    /* ========== Wave 8 · home delight: ticking stat counter ==========
       Stats animate from 0 to their final value the first time they
       scroll into view. The whole counter slot reserves space so the
       layout doesn't jump as digits tick up. */
    .stat-num[data-count] {
      /* Was inline-block, which made the sibling label flow next to the
         number instead of below it (only the 4th stat without data-count
         rendered correctly). Tabular-nums keeps digit widths stable
         while the counter ticks up. */
      display: block;
      font-variant-numeric: tabular-nums;
    }

    /* ========== Wave 8 · menu delight: numbered pizza tick-in ==========
       The pizza menu rows (Number 1 to Number 6) slide in from the left
       with a 60ms cascade so the eye reads them top-to-bottom as a
       weekend ritual. */
    body.page-menu .menu-pizza-row {
      opacity: 0;
      transform: translateX(-14px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    body.page-menu .menu-pizza-row.is-ticked {
      opacity: 1;
      transform: translateX(0);
    }
    @media (prefers-reduced-motion: reduce) {
      body.page-menu .menu-pizza-row {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    /* ========== Wave 8 · story delight: timeline node check-marks ==========
       When the timeline scrolls into view, each <li> gets a 222-style
       check ✓ before the strong label. Stays visible once seen. */
    body.page-story .timeline li::before {
      content: "✓";
      display: inline-block;
      width: 18px;
      height: 18px;
      margin-right: 12px;
      font-family: var(--body-font);
      font-weight: 600;
      font-size: 13px;
      color: var(--accent);
      text-align: center;
      line-height: 18px;
      opacity: 0;
      transform: scale(0.6);
      transition: opacity 0.4s ease, transform 0.4s ease;
      vertical-align: middle;
    }
    body.page-story .timeline.is-ticked li::before {
      opacity: 1;
      transform: scale(1);
    }
    body.page-story .timeline.is-ticked li:nth-child(1)::before { transition-delay: 0.05s; }
    body.page-story .timeline.is-ticked li:nth-child(2)::before { transition-delay: 0.18s; }
    body.page-story .timeline.is-ticked li:nth-child(3)::before { transition-delay: 0.31s; }
    body.page-story .timeline.is-ticked li:nth-child(4)::before { transition-delay: 0.44s; }
    @media (prefers-reduced-motion: reduce) {
      body.page-story .timeline li::before { opacity: 1; transform: none; transition: none; }
    }

    /* ========== Wave 8 · cafe delight: latte-art split-media parallax ==========
       The cafe's latte rosetta photograph drifts up slowly relative to
       the body copy. The pseudo-3D feel mimics looking through the
       espresso bar window at the rosetta being poured. */
    body.page-cafe .split-media img {
      transition: transform 0.05s linear, opacity 0.4s ease;
      will-change: transform;
    }
    @media (prefers-reduced-motion: reduce) {
      body.page-cafe .split-media img { transition: opacity 0.4s ease; transform: none !important; }
    }

    /* ========== Wave 8 · gallery delight: 5° tilt on hover ==========
       Each gallery tile tilts ever so slightly to one side on hover so
       the grid reads as a polaroid wall instead of a tiled mosaic.
       Alternate directions across siblings. */
    body.page-gallery .gallery-item {
      transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
    }
    body.page-gallery .gallery-item:hover {
      transform: translateY(-6px) rotate(-1.2deg);
    }
    body.page-gallery .gallery-item:nth-child(even):hover {
      transform: translateY(-6px) rotate(1.2deg);
    }
    body.page-gallery .gallery-item.wide:hover {
      transform: translateY(-6px) rotate(0.5deg);
    }
    @media (hover: none) {
      body.page-gallery .gallery-item:hover,
      body.page-gallery .gallery-item:nth-child(even):hover,
      body.page-gallery .gallery-item.wide:hover { transform: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      body.page-gallery .gallery-item:hover,
      body.page-gallery .gallery-item:nth-child(even):hover,
      body.page-gallery .gallery-item.wide:hover { transform: translateY(-2px) rotate(0); }
    }

    /* ========== Wave 8 · contact delight: floating-label form ==========
       Labels start at field-text height and slide up + shrink on focus
       or when the field has content. A small tactile cue the field is
       active, without changing field width or causing layout shift.
       Driven by JS (.is-focused / .has-content classes on .field). */
    body.page-contact .contact-form .field {
      position: relative;
      padding-top: 26px;
    }
    body.page-contact .contact-form .field label {
      position: absolute;
      left: 18px;
      /* Resting position: visually centered over the single-line input box.
         (Input top sits at .field padding-top:26px; input is ~49px tall, so center ≈ 50.5px.
         Label is ~19px tall; top:41px puts the label center close to the input center.) */
      top: 41px;
      z-index: 2;
      font-family: var(--body-font);
      font-size: 16px;
      font-weight: 500;
      color: var(--ink-soft);
      letter-spacing: 0;
      text-transform: none;
      pointer-events: none;
      transform-origin: left top;
      transition: transform 0.22s ease, color 0.22s ease;
      background: linear-gradient(to bottom, transparent 0 45%, var(--bg) 45% 100%);
      padding: 0 6px;
      margin: 0;
      max-width: calc(100% - 36px);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    /* Textarea is much taller — label sits near the top instead of the vertical center */
    body.page-contact .contact-form .field:has(textarea) label { top: 32px; }
    body.page-contact .contact-form .field.is-focused label,
    body.page-contact .contact-form .field.has-content label {
      /* Floated state: label tucks into the 26px reserved area above the input.
         Floated y ≈ resting top − 33px, same end position as before. */
      transform: translateY(-33px) scale(0.82);
      color: var(--accent-deep);
    }
    body.page-contact .contact-form .field:has(textarea).is-focused label,
    body.page-contact .contact-form .field:has(textarea).has-content label {
      transform: translateY(-24px) scale(0.82);
    }
    @media (prefers-reduced-motion: reduce) {
      body.page-contact .contact-form .field label { transition: none; }
    }
