@charset "utf-8";
/* ============================================================
   Sweet Wheels — base.css
   Styles ported VERBATIM from the original mock files:
     • Shared system + components  → sweet-wheels-redesigned
     • Hero / buttons / features / about / menu  → index (index__10_)
     • New components (contact, schedule, testimonials, etc.)
       written in the same idiom.
   Loaded on every page via head.php.
   ============================================================ */

/* ============================================================
   TABLE OF CONTENTS
     1. Color tokens (oklch + sRGB fallback)  — original
     2. Extended design tokens (hues, rgb triplets, gradients,
        motion, section rhythm)
     3. Reset, base, typography, container
     4. Header, brand, nav drawer, overlay
     5. Route hero-fold: intro, map, spinner, info
     6. Specials, section headers, newsletter, gallery
     7. Footer (+ glow-up overrides near end of file)
     8. Index sections: hero, buttons, features, about, menu
     9. Additions: skip link, testimonials, schedule timeline,
        stats, founder note, CTA band, contact form
    10. Brand lockup, page hero
    11. Footer glow-up + responsive balance
    12. Site chrome: scrollbar, selection
    13. Card language: unified hover behavior
   NOTE: rule order is intentional — later blocks deliberately
   override earlier equal-specificity rules. Do not re-sort.
   ============================================================ */

/* ==================== [ REDESIGNED: shared + components ] ==================== */
    /* ===== COLOR TOKENS (OKLCH with sRGB fallbacks) ===== */
    @supports (color: oklch(0% 0 0)) {
      :root {
        --pink: oklch(95% 0.05 350);
        --mint: oklch(97% 0.04 160);
        --lemon: oklch(97% 0.06 90);
        --sky: oklch(96% 0.03 230);
        --lilac: oklch(94% 0.06 290);
        --ink: oklch(26% 0.03 240);
        --muted: oklch(48% 0.02 240);
        --subtle: oklch(58% 0.02 240);
        --white: oklch(100% 0 0);
        --cta-start: oklch(87% 0.12 340);
        --cta-end: oklch(82% 0.15 290);
        --cta-ink: oklch(18% 0.04 250);
      }
    }
    
    @supports not (color: oklch(0% 0 0)) {
      :root {
        --pink: #ffe8f1;
        --mint: #e3fff7;
        --lemon: #fff4cf;
        --sky: #eaf6ff;
        --lilac: #f1eaff;
        --ink: #273049;
        --muted: #5d6b86;
        --subtle: #7a87a0;
        --white: #fff;
        --cta-start: #ffbedc;
        --cta-end: #cdbbff;
        --cta-ink: #1a2340;
      }
    }
    
    :root {
      --card: #ffffffee;
      --card-border: #00000010;
      --shadow: 0 5px 16px rgba(var(--shade-rgb),.08);
      --shadow-md: 0 7px 18px rgba(var(--shade-rgb),.12);
      --shadow-lg: 0 10px 23px rgba(var(--shade-rgb),.16);
      --radius: 20px;
      --radius-sm: 12px;
      --radius-lg: 28px;
      --ring: 0 0 0 3px rgba(169,139,255,.32);
      --container: 1240px;
      --transition-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
      --transition-base: 280ms cubic-bezier(0.4, 0, 0.2, 1);
      --transition-slow: 420ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* ===== EXTENDED DESIGN TOKENS =====
       Single source of truth for the candy palette, motion, and
       rhythm. RGB triplet tokens feed rgba() alpha variants, so
       one hue change propagates through every tint and shadow. */
    :root {
      /* hues */
      --brand: #ff7fb5;          /* signature pink */
      --brand-light: #ff9ec9;
      --accent: #a78bfa;         /* lilac purple */
      --accent-deep: #8b6ef5;
      --live: #4ade80;           /* open/now green */
      --live-deep: #1f9e5f;
      --star: #f5b731;           /* review stars */
      --error: #d64562;          /* form errors */
      --nav-ink: #5a4a6a;        /* desktop nav text */
      --blush: #fff0f7;          /* scrollbar track, soft fills */
      --blush-soft: #fff8fc;
      
      /* rgb triplets — for rgba(var(--x-rgb), alpha) tints */
      --brand-rgb: 255, 127, 181;
      --accent-rgb: 167, 139, 250;
      --live-rgb: 74, 222, 128;
      --rose-rgb: 255, 190, 220;   /* cta-start family */
      --veil-rgb: 205, 187, 255;   /* cta-end family */
      --shade-rgb: 24, 33, 56;     /* shadow ink */
      --error-rgb: 214, 69, 98;
      
      /* gradients */
      --grad-cta: linear-gradient(135deg, var(--cta-start), var(--cta-end));
      --grad-brand: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
      
      /* motion */
      --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      --lift-sm: -3px;
      --lift-md: -6px;
      --lift-lg: -10px;
      
      /* section rhythm */
      --space-section-sm: clamp(2rem, 5vw, 3.5rem);
      --space-section-md: clamp(2.5rem, 6vw, 4rem);
      --space-section-lg: clamp(3rem, 8vw, 5rem);

      /* ===== SHADOW TOKENS =====
         Consolidates ~60 near-duplicate box-shadow values that had
         accreted over many edits into a shared tier system, grouped by
         design intent rather than raw pixel/alpha values:
           brand glow: xs (chips/badges) -> xl (ambient photo ombre)
           shade glow: sm/md (neutral "lifted element" shadows — distinct
                        from --shadow/-md/-lg, which are ambient card rest)
           inset:      the glossy top/pressed bottom edge on solid buttons
         A few shadows stay bespoke and are NOT tokenized here: the
         drawer's asymmetric slide-out shadow, the form error ring, and
         the live-pulse halo animation — each is structurally one-of-one
         and forcing them into a shared tier would only add indirection. */
      --glow-brand-xs: 0 2px 8px  rgba(var(--brand-rgb), .15);
      --glow-brand-sm: 0 3px 8px  rgba(var(--brand-rgb), .2);
      --glow-brand:    0 4px 12px rgba(var(--brand-rgb), .3);
      --glow-brand-md: 0 5px 16px rgba(var(--brand-rgb), .35);
      --glow-brand-lg: 0 7px 22px rgba(var(--brand-rgb), .45);
      --glow-brand-xl: 0 8px 27px rgba(var(--brand-rgb), .2);
      
      --glow-shade-sm: 0 3px 8px  rgba(var(--shade-rgb), .2);
      --glow-shade-md: 0 4px 14px rgba(var(--shade-rgb), .3);
      
      --inset-top:        inset 0 2px 0 rgba(255, 255, 255, .5);
      --inset-bottom:      inset 0 -2px 0 rgba(0, 0, 0, .15);
    }
    
    /* ===== RESET & BASE ===== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      background-color: var(--pink);   /* fallback base tint under the body gradient */
    }
    
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }
    
    body {
      min-height: 100vh;
      min-height: 100svh;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      font-size: clamp(14px, 1.2vw + 0.5rem, 16px);
      line-height: 1.4;
      color: var(--ink);
      background: linear-gradient(180deg, var(--pink) 0%, var(--mint) 40%, var(--sky) 75%, var(--lilac) 100%) no-repeat;
      background-size: 100% 100%;   /* covers the full page height, not just the viewport (screenshot-safe) */
      overflow-x: hidden;
    }
    
    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3 { 
      line-height: 1.2; 
      font-weight: 700; 
    }
    
    h1 { font-size: clamp(2rem, 4vw + 1rem, 4rem); }
    h2 { font-size: clamp(1.5rem, 2.5vw + 0.75rem, 2.25rem); }
    h3 { font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.5rem); }
    
    a {
      color: inherit;
      text-decoration: none;
      transition: opacity var(--transition-fast);
    }
    
    /* ===== UTILITIES ===== */
    .container {
      max-width: var(--container);
      margin-inline: auto;
      padding-inline: clamp(1rem, 4vw, 2rem);
    }
    
    .sr-only {
      position: absolute !important;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border-width: 0;
    }
    
    /* ===== HEADER & NAVIGATION ===== */
    /* Candy-gradient bar: a genuinely saturated surface, so the white
       pills / badge / lockup can never dissolve into the pale page. */
    header {
      padding: clamp(1rem, 2.5vw, 1.25rem) 0;
      background: linear-gradient(135deg, var(--brand-light) 0%, #c9b8ff 100%);
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(255,255,255,.35);
      box-shadow: var(--glow-brand-sm);
      transition: padding var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
    }
    
    /* Elevated state once the page scrolls (JS toggles .scrolled) */
    header.scrolled {
      padding: clamp(0.6rem, 1.5vw, 0.8rem) 0;
      background: linear-gradient(135deg, #ff8fc0 0%, #bfa8ff 100%);
      box-shadow: var(--glow-brand-md);
    }
    
    .header-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    
    .brand {
      font-family: Pacifico, cursive;
      font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
      color: var(--white);
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      line-height: 1;
      text-shadow: 0 2px 6px rgba(var(--shade-rgb),.28);
      transition: transform var(--transition-fast);
      z-index: 101;
    }
    
    .brand .brand-sub {
      color: rgba(255,255,255,.88);
    }
    
    .brand:hover {
      transform: translateY(-1px);
    }
    
    .brand:hover i {
      animation: brandWiggle 0.5s ease;
    }
    
    @keyframes brandWiggle {
      0%, 100% { transform: rotate(0); }
      25% { transform: rotate(-10deg); }
      75% { transform: rotate(10deg); }
    }
    
    /* Badge-style logo mark — matches the mobile drawer: cone in a
       candy-gradient disc, adapted for the lighter navbar/footer. */
    .brand-badge {
      flex: none;
      display: grid;
      place-items: center;
      width: 2.2rem;
      height: 2.2rem;
      border-radius: 50%;
      background: rgba(255, 255, 255, .94);
      color: var(--brand);
      box-shadow: var(--glow-shade-sm);
    }
    
    .brand-badge i {
      font-size: 1.05rem;
    }
    
    /* Mobile Menu Toggle */
    .menu-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, .82);
      border: 1.5px solid rgba(255,255,255,.75);
      border-radius: 12px;
      cursor: pointer;
      padding: 0;
      z-index: 101;
      transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
      position: relative;
      box-shadow: var(--glow-brand-xs);
    }
    
    .menu-toggle:hover {
      background: #ffffff;
      transform: scale(1.05);
      box-shadow: var(--glow-brand-sm);
    }
    
    .menu-toggle:active {
      transform: scale(0.94);
    }
    
    .menu-toggle.active {
      background: #ffffff;
      border-color: transparent;
      box-shadow: var(--glow-shade-sm);
    }
    
    .menu-toggle i {
      font-size: 1.25rem;
      color: var(--brand);
      position: absolute;
    }
    
    .menu-toggle.active i {
      color: var(--brand);
    }
    
    .menu-toggle .fa-bars {
      opacity: 1;
      transform: rotate(0deg);
    }
    
    .menu-toggle .fa-xmark {
      opacity: 0;
      transform: rotate(90deg);
    }
    
    .menu-toggle.active .fa-bars {
      opacity: 0;
      transform: rotate(-90deg);
    }
    
    .menu-toggle.active .fa-xmark {
      opacity: 1;
      transform: rotate(0deg);
    }
    
    /* Navigation — off-canvas drawer on mobile */
    /* ============================================================
       MOBILE DRAWER — kawaii off-canvas menu (<768px). Candy-gradient
       branded masthead with a badge + scalloped edge, decorated panel,
       icon-badge nav cards with chevrons, and a footer with a CTA,
       socials, and a tagline.
       ============================================================ */
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: min(360px, 90vw);
      height: 100vh;
      height: 100dvh;
      background:
        radial-gradient(circle at 18% 6%,  rgba(var(--rose-rgb),.30), transparent 42%),
        radial-gradient(circle at 92% 94%, rgba(var(--veil-rgb),.32), transparent 42%),
        radial-gradient(circle, rgba(var(--brand-rgb),.06) 1px, transparent 1.7px) 0 0 / 22px 22px,
        linear-gradient(180deg, #ffffff 0%, var(--blush-soft) 100%);
      border-left: 1px solid rgba(var(--brand-rgb),.2);
      box-shadow: -18px 0 34px rgba(var(--shade-rgb),.22);   /* bespoke: asymmetric slide-out shadow, no shared tier fits */
      padding: 0 0 calc(1.25rem + env(safe-area-inset-bottom, 0px));
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0.55rem;
      visibility: hidden;
      transition: right 0.4s var(--ease-smooth), visibility 0s linear 0.4s;
      z-index: 99;
      overflow-y: auto;
      overscroll-behavior: contain;
    }

    .nav-links.active {
      right: 0;
      visibility: visible;
      transition: right 0.4s var(--ease-smooth), visibility 0s;
    }

    /* ---- Branded masthead ---- */
    .drawer-head {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: calc(1.5rem + env(safe-area-inset-top, 0px)) 1.4rem 1.9rem;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
      box-shadow: var(--glow-brand-md);
    }

    /* scalloped dessert-paper bottom edge */
    .drawer-head::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: -1px;
      height: 12px;
      background: radial-gradient(circle at 11px 100%, var(--blush-soft) 0 7px, transparent 8px) repeat-x;
      background-size: 22px 12px;
    }

    .drawer-badge {
      flex: none;
      width: 48px; height: 48px;
      display: grid; place-items: center;
      background: rgba(255,255,255,.92);
      color: var(--brand);
      border-radius: 50%;
      font-size: 1.4rem;
      box-shadow: var(--glow-shade-sm);
    }

    .drawer-head .brand-text { align-items: flex-start; gap: 4px; }
    .drawer-head .brand-name {
      font-family: Pacifico, cursive;
      font-size: 1.5rem;
      color: var(--white);
      line-height: 1;
      text-shadow: 0 2px 6px rgba(var(--shade-rgb),.28);
    }
    .drawer-head .brand-sub {
      color: rgba(255,255,255,.9);
      margin-left: 0;
    }

    /* ---- Nav links: cards with gradient icon badges + chevron ---- */
    .nav-links > a {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      margin: 0 1rem;
      padding: 0.7rem 0.85rem;
      border-radius: 16px;
      font-family: Inter, sans-serif;
      font-weight: 700;
      font-size: 1.0625rem;
      color: var(--ink);
      background: rgba(255,255,255,.74);
      border: 1.5px solid rgba(var(--brand-rgb),.18);
      box-shadow: var(--glow-brand-xs);
      transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-smooth), background 0.28s var(--ease-smooth), border-color 0.28s var(--ease-smooth);
    }

    .nav-ico {
      flex: none;
      width: 42px; height: 42px;
      display: grid; place-items: center;
      border-radius: 12px;
      font-size: 1.1rem;
      color: var(--white);
      background: linear-gradient(135deg, rgba(var(--brand-rgb),.9), rgba(var(--accent-rgb),.9));
      box-shadow: var(--glow-brand);
      transition: transform 0.25s var(--ease-spring);
    }

    .nav-label { flex: 1; }

    /* chevron affordance */
    .nav-links > a::after {
      content: "\f054";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 0.75rem;
      color: rgba(var(--brand-rgb),.55);
      transition: transform 0.25s var(--ease-spring);
    }

    .nav-links > a:hover,
    .nav-links > a:focus-visible {
      background: #fff;
      border-color: rgba(var(--brand-rgb),.4);
      transform: translateX(-5px);
      box-shadow: var(--glow-brand-md);
    }
    .nav-links > a:hover .nav-ico { transform: scale(1.08) rotate(-6deg); }
    .nav-links > a:hover::after   { transform: translateX(3px); }
    .nav-links > a:active         { transform: translateX(-3px) scale(0.99); }

    /* current page: filled candy pill + beating heart */
    .nav-links > a[aria-current="page"] {
      background: var(--grad-cta);
      border-color: transparent;
      color: var(--white);
      box-shadow: var(--glow-brand-md);
    }
    .nav-links > a[aria-current="page"] .nav-ico {
      background: rgba(255,255,255,.92);
      color: var(--brand);
    }
    .nav-links > a[aria-current="page"]::after {
      content: "\f004";
      color: var(--white);
      animation: heartBeat 1.6s ease-in-out infinite;
    }

    @keyframes heartBeat {
      0%, 100% { transform: scale(1); }
      12% { transform: scale(1.25); }
      24% { transform: scale(1); }
    }

    /* ---- Socials (drawer footer) ---- */
    .nav-social {
      display: flex;
      gap: 0.75rem;
      justify-content: center;
      margin: auto 1rem 0;
      padding-top: 1.4rem;
    }

    .nav-social a {
      width: 46px; height: 46px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,.92);
      border: 2px solid rgba(var(--brand-rgb),.28);
      border-radius: 50%;
      font-size: 1.2rem;
      color: var(--brand);
      transition: transform 0.3s var(--ease-spring), background 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth);
      box-shadow: var(--glow-brand-sm);
      flex-shrink: 0;
    }
    .nav-social a:hover {
      background: var(--grad-cta);
      color: var(--white);
      transform: translateY(-5px) rotate(6deg) scale(1.1);
      box-shadow: var(--glow-brand-lg);
      border-color: transparent;
    }
    .nav-social a i { display: flex; }
    .nav-social a:hover i { color: var(--white); }
    .nav-social a:active { transform: translateY(-2px) scale(1.05); }

    /* ---- Drawer footer: CTA + tagline ---- */
    .drawer-foot {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.9rem;
      padding: 1.1rem 1.4rem 0;
    }

    .drawer-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.6rem;
      border-radius: 50px;
      background: var(--grad-cta);
      color: var(--white);
      font-weight: 700;
      font-size: 1rem;
      box-shadow: var(--glow-brand);
      transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease-smooth);
    }
    .drawer-cta:hover  { transform: translateY(-3px); box-shadow: var(--glow-brand-lg); }
    .drawer-cta:active { transform: translateY(-1px); }

    .drawer-tagline {
      display: flex; align-items: center; gap: 0.4rem;
      font-size: 0.8125rem;
      color: var(--muted);
      font-weight: 600;
    }
    .drawer-tagline i { color: var(--brand); }

    /* ---- Staggered candy-drop entrance ---- */
    .nav-links.active .drawer-head,
    .nav-links.active > a,
    .nav-links.active .nav-social,
    .nav-links.active .drawer-foot {
      animation: drawerIn 0.45s var(--ease-spring) both;
    }
    .nav-links.active .drawer-head       { animation-delay: 0.03s; }
    .nav-links.active > a:nth-of-type(1) { animation-delay: 0.10s; }
    .nav-links.active > a:nth-of-type(2) { animation-delay: 0.16s; }
    .nav-links.active > a:nth-of-type(3) { animation-delay: 0.22s; }
    .nav-links.active > a:nth-of-type(4) { animation-delay: 0.28s; }
    .nav-links.active .nav-social        { animation-delay: 0.33s; }
    .nav-links.active .drawer-foot       { animation-delay: 0.37s; }

    @keyframes drawerIn {
      from { opacity: 0; translate: 30px 0; }
      to   { opacity: 1; translate: 0 0; }
    }

    @media (min-width: 768px) {
      .menu-toggle {
        display: none;
      }
      
      .drawer-head,
      .drawer-foot {
        display: none;
      }
      
      /* drawer-only nav-link chrome hides on the horizontal bar */
      .nav-links > a .nav-ico {
        display: none;
      }
      
      .nav-links > a::after {
        display: none;
      }
      
      .nav-links {
        position: static;
        width: auto;
        height: auto;
        visibility: visible;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 6px;
        flex-direction: row;
        gap: clamp(0.5rem, 2vw, 1rem);
        align-items: center;
        overflow: visible;
      }
      
      /* no entrance animation on desktop */
      .nav-links.active > a,
      .nav-links.active .nav-social {
        animation: none;
      }
      
      .nav-links > a {
        font-size: clamp(0.875rem, 1.2vw + 0.4rem, 1rem);
        font-weight: 600;
        margin: 0;
        gap: 0;   /* reset the mobile-drawer flex gap — it was overriding
                     the heart's own margin-right on desktop */
        padding: 0.625rem 1rem;
        position: relative;
        color: var(--nav-ink);
        background: rgba(255, 255, 255, .45);
        border: none;
        border-radius: 12px;
        transition: background 0.28s var(--ease-smooth), color 0.28s var(--ease-smooth), box-shadow 0.28s var(--ease-smooth);
        box-shadow: var(--glow-brand-xs);
        line-height: 1.2;
        white-space: nowrap;          /* keep "Find Us" on one line */
      }
      
      .nav-links > a i {
        display: none;
      }
      
      /* Hover pops via colour + shadow only — never moves the hit-area,
         so grazing the link edge can't start a hover/un-hover flicker loop. */
      .nav-links > a:hover,
      .nav-links > a:focus-visible {
        background: #ffffff;
        color: var(--brand);
        box-shadow: var(--glow-brand-sm);
      }
      
      /* Current page (desktop): filled candy pill + tiny heart */
      .nav-links > a[aria-current="page"] {
        background: #ffffff;
        color: var(--brand);
        box-shadow: var(--glow-shade-sm);
      }
      
      .nav-links > a[aria-current="page"]:hover,
      .nav-links > a[aria-current="page"]:focus-visible {
        color: var(--brand);
        box-shadow: var(--glow-shade-md);
      }
      
      .nav-links > a[aria-current="page"]::before {
        content: "\f004";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 0.8em;
        margin-right: 0.22em;
        display: inline-block;
        vertical-align: 0.02em;
        position: relative;
        z-index: 1;
        animation: heartBeat 1.6s ease-in-out infinite;
      }
      
      /* Laptop/tablet: socials stay hidden so the main links get the room.
         (They live in the footer at these sizes.) */
      .nav-social {
        display: none;
      }
      
      .nav-social a {
        width: 34px;
        height: 34px;
        font-size: 0.9375rem;
        padding: 0;
        border-radius: 10px;
        border-width: 1.5px;
      }
      
      .nav-social a:hover {
        transform: translateY(-2px);
      }
    }
    
    /* Wide desktop only: enough room to show socials inline in the navbar. */
    @media (min-width: 1280px) {
      .nav-social {
        display: flex;
        margin: 0;
        padding: 0;
        border: none;
        gap: 0.5rem;
      }
    }
    
    /* Overlay for mobile menu */
    .nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(58, 32, 48, .45);
      backdrop-filter: blur(8px) saturate(1.1);
      -webkit-backdrop-filter: blur(8px) saturate(1.1);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease-in-out;
      z-index: 98;
      cursor: pointer;
    }
    
    .nav-overlay.active {
      opacity: 1;
      pointer-events: all;
    }
    
    @media (prefers-reduced-motion: reduce) {
      .nav-links,
      .nav-links.active {
        transition-duration: 0.01ms;
      }
      .nav-links.active > a,
      .nav-links.active .drawer-head,
      .nav-links.active .nav-social,
      .nav-links.active .drawer-foot,
      .nav-links > a[aria-current="page"]::before,
      .nav-links > a[aria-current="page"]::after,
      .brand:hover i {
        animation: none;
      }
      header {
        transition: none;
      }
    }

    
    @media (min-width: 768px) {
      .nav-overlay {
        display: none;
      }
    }
    
    /* ===== MINI HERO ===== */
    .mini-hero {
      padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(0.75rem, 2vw, 1.25rem);
      text-align: center;
    }
    
    .mini-hero h1 {
      font-family: Pacifico, cursive;
      font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
      color: var(--brand);
      text-shadow: 0 2px 8px rgba(var(--brand-rgb),.2);
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }
    
    .mini-hero p {
      font-size: clamp(0.875rem, 1.2vw + 0.4rem, 1.0625rem);
      color: var(--muted);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.4;
    }
    
    /* ===== HERO / TOP FOLD - 2x2 GRID ===== */
    .hero-fold {
      padding: clamp(1.5rem, 4vw, 2.5rem) 0;
    }
    
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(1.25rem, 3vw, 1.75rem);
    }
    
    @media (min-width: 768px) {
      .hero-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: clamp(1.25rem, 3vw, 1.75rem);
      }
    }
    
    @media (min-width: 968px) {
      .hero-grid {
        grid-template-columns: 
          minmax(0, 1fr)
          minmax(0, 1fr)
          minmax(0, 1fr)
          minmax(0, 1fr)
          minmax(0, 1fr);
        gap: clamp(1.25rem, 3vw, 1.75rem);
      }
      
      /* Top row: 60% / 40% */
      .hero-intro {
        grid-column: 1 / 4;
      }
      
      .map-container {
        grid-column: 4 / 6;
      }
      
      /* Bottom row: 40% / 60% */
      .spinner-container {
        grid-column: 1 / 3;
      }
      
      .spinner-info {
        grid-column: 3 / 6;
      }
    }
    
    /* Row 1 Left: Title & Subtitle */
    .hero-intro {
      background: var(--card);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      padding: clamp(1.25rem, 3vw, 2rem);
      box-shadow: var(--shadow-lg);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    /* Superseded by the shared CARD LANGUAGE hover (transform + smooth
       box-shadow) later in the cascade — no separate transition needed here. */
    
    .hero-intro h2 {
      font-family: Pacifico, cursive;
      font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
      color: var(--brand);
      text-shadow: 0 2px 8px rgba(var(--brand-rgb),.2);
      margin-bottom: 0.75rem;
      line-height: 1.2;
    }
    
    .hero-intro p {
      color: var(--muted);
      font-size: clamp(0.875rem, 1.2vw + 0.4rem, 1.0625rem);
      line-height: 1.4;
      margin-bottom: 1rem;
    }
    
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, rgba(var(--rose-rgb),.25), rgba(var(--veil-rgb),.25));
      border: 1px solid rgba(var(--brand-rgb),.25);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.875rem);
      color: var(--ink);
      width: fit-content;
      box-shadow: var(--glow-brand-sm);
    }
    
    .location-quick-info {
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(var(--brand-rgb),.15);
    }
    
    .quick-info-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted);
      font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.875rem);
      padding: 0.375rem 0.5rem;
      background: rgba(255,255,255,.4);
      border-radius: 8px;
      transition: background var(--transition-fast), transform var(--transition-fast);
      line-height: 1.4;
    }
    
    .quick-info-item:hover {
      background: rgba(255,255,255,.6);
      transform: translateX(4px);
    }
    
    .quick-info-item i {
      color: var(--brand);
      font-size: 1rem;
      min-width: 1.25rem;
    }
    
    .quick-info-item strong {
      color: var(--ink);
      font-weight: 700;
    }
    
    .status-dot {
      width: 10px;
      height: 10px;
      background: var(--live);
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(var(--live-rgb),.7);
      animation: pulse 2s ease-in-out infinite;
    }
    
    @keyframes pulse {
      0%, 100% { 
        opacity: 1;
        transform: scale(1);
      }
      50% { 
        opacity: 0.6;
        transform: scale(1.15);
      }
    }
    
    @media (prefers-reduced-motion: reduce) {
      .status-dot { animation: none; }
    }
    
    /* Row 1 Right: Mini Map */
    .map-container {
      background: linear-gradient(180deg, var(--cta-start) 0%, var(--cta-end) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,.4);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    
    .map-container:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }
    
    .map-header {
      display: flex;
      align-items: center;
      gap: 0.625rem;
    }
    
    .map-header h3 {
      font-size: clamp(0.9375rem, 1.2vw + 0.4rem, 1.0625rem);
      font-weight: 700;
      color: var(--white);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin: 0;
      text-shadow: 0 2px 4px rgba(0,0,0,.1);
      line-height: 1.2;
    }
    
    .map-header i {
      font-size: 1.25rem;
    }
    
    #map {
      width: 100%;
      height: clamp(200px, 35vw, 280px);
      background: rgba(200,210,225,.15);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--glow-shade-sm);
      will-change: transform;
      transform: translateZ(0);
      backface-visibility: hidden;
    }
    
    .directions-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: var(--white);
      color: var(--brand);
      font-weight: 700;
      font-size: clamp(0.875rem, 1.1vw + 0.4rem, 0.9375rem);
      padding: clamp(0.75rem, 2vw, 1rem);
      border-radius: 50px;
      box-shadow: var(--glow-shade-sm);
      transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
      line-height: 1.2;
    }
    
    .directions-btn:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: var(--glow-shade-md);
      background: var(--white);
    }
    
    /* Row 2 Left: Spinner */
    .spinner-container {
      background: linear-gradient(135deg, rgba(var(--rose-rgb),.3), rgba(var(--veil-rgb),.3));
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 2px solid rgba(var(--brand-rgb),.3);
      border-radius: var(--radius-lg);
      padding: clamp(1.25rem, 3vw, 2rem);
      box-shadow: var(--glow-brand-md), var(--inset-top);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(0.875rem, 2vw, 1.25rem);
      position: relative;
      overflow: hidden;
    }
    
    .spinner-container::before {
      content: "\f06d";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      top: 1rem;
      left: 1rem;
      font-size: 2rem;
      color: var(--brand);
      opacity: 0.3;
      animation: float 3s ease-in-out infinite;
    }
    
    .spinner-container::after {
      content: "\f005";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      font-size: 2rem;
      color: var(--accent);
      opacity: 0.3;
      animation: float 3s ease-in-out infinite 1.5s;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    
    .spinner-container:hover {
      transform: translateY(-4px) scale(1.01);
      box-shadow: var(--glow-brand-lg), var(--inset-top);
      border-color: rgba(var(--brand-rgb),.5);
    }
    
    .wheel-wrapper {
      position: relative;
      width: clamp(240px, 68vw, 340px);
      aspect-ratio: 1;
      margin-inline: auto;
      filter: drop-shadow(0 10px 28px rgba(var(--brand-rgb),.4));
    }
    
    .wheel-wrapper::before {
      content: "";
      position: absolute;
      inset: -20px;
      background: radial-gradient(circle, rgba(var(--brand-rgb),.2) 0%, transparent 70%);
      border-radius: 50%;
      z-index: -1;
      animation: glow 3s ease-in-out infinite;
    }
    
    @keyframes glow {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 0.8; transform: scale(1.05); }
    }
    
    #wheel-canvas {
      width: 100%;
      height: 100%;
      display: block;
      border-radius: 50%;
      box-shadow: var(--shadow-md);
      will-change: transform;
      transform: translateZ(0);
      backface-visibility: hidden;
    }
    
    .pointer {
      position: absolute;
      top: 0;
      left: 50%;
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--brand), var(--brand-light));
      border-radius: 50% 50% 50% 0;
      transform: translateX(-50%) translateY(-50%) rotate(315deg);
      filter: drop-shadow(0 4px 12px rgba(var(--brand-rgb),.5));
      z-index: 10;
      pointer-events: none;
      animation: pointerBounce 2s ease-in-out infinite;
      border: 3px solid rgba(255,255,255,.9);
    }
    
    @keyframes pointerBounce {
      0%, 100% { 
        transform: translateX(-50%) translateY(-50%) rotate(315deg);
      }
      50% { 
        transform: translateX(-50%) translateY(-56%) rotate(315deg);
      }
    }
    
    #spin-btn {
      background: var(--grad-brand);
      color: var(--white);
      font-family: Poppins, Inter, sans-serif;
      font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.25rem);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 1.125rem 3rem;
      border: none;
      border-radius: 50px;
      box-shadow: var(--glow-brand), inset 0 -2px 0 rgba(0,0,0,.15), inset 0 2px 0 rgba(255,255,255,.3);
      cursor: pointer;
      transition: box-shadow var(--transition-fast), transform var(--transition-fast);
      width: 100%;
      max-width: 300px;
      position: relative;
      overflow: hidden;
    }
    
    #spin-btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,.2) 50%, transparent 100%);
      transform: translateX(-100%);
      transition: transform 0.6s;
    }
    
    #spin-btn:hover::before {
      transform: translateX(100%);
    }
    
    #spin-btn:hover:not(:disabled) {
      transform: translateY(-4px) scale(1.05);
      box-shadow: var(--glow-brand-lg), inset 0 -2px 0 rgba(0,0,0,.15), inset 0 2px 0 rgba(255,255,255,.4);
    }
    
    #spin-btn:active:not(:disabled) {
      transform: translateY(-2px) scale(1.02);
      box-shadow: var(--glow-brand), inset 0 -2px 0 rgba(0,0,0,.15), inset 0 2px 0 rgba(255,255,255,.3);
    }
    
    #spin-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      animation: none;
    }
    
    #status {
      font-size: clamp(1.25rem, 1.8vw + 0.5rem, 1.5rem);
      font-weight: 800;
      color: var(--ink);
      min-height: 2em;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.025em;
      text-shadow: 0 2px 4px rgba(var(--brand-rgb),.15);
    }
    
    #status strong {
      color: var(--brand);
      background: var(--grad-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    /* Row 2 Right: Instructions/Info */
    .spinner-info {
      background: var(--card);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      padding: clamp(1.25rem, 3vw, 2rem);
      box-shadow: var(--shadow-lg);
      display: flex;
      flex-direction: column;
      gap: clamp(1rem, 2.5vw, 1.25rem);
    }
    
    .spinner-info:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }
    
    .spinner-info h3 {
      font-size: clamp(1.125rem, 1.8vw + 0.5rem, 1.5rem);
      color: var(--ink);
      margin: 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      line-height: 1.2;
    }
    
    .spinner-info h3 i {
      color: var(--brand);
      font-size: 1.1em;
    }
    
    .spinner-info > p {
      color: var(--muted);
      font-size: clamp(0.8125rem, 1.1vw + 0.4rem, 0.9375rem);
      line-height: 1.4;
      margin: 0;
    }
    
    .prizes-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(0.5rem, 1.5vw, 0.625rem);
    }
    
    .prize-item {
      background: linear-gradient(135deg, rgba(var(--rose-rgb),.2), rgba(var(--veil-rgb),.2));
      border: 1px solid rgba(var(--brand-rgb),.25);
      padding: clamp(0.5rem, 1.5vw, 0.625rem);
      border-radius: 12px;
      text-align: center;
      font-weight: 700;
      font-size: clamp(0.75rem, 1vw + 0.4rem, 0.8125rem);
      color: var(--brand);
      transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
      line-height: 1.3;
    }
    
    .prize-item:hover {
      background: linear-gradient(135deg, rgba(var(--rose-rgb),.35), rgba(var(--veil-rgb),.35));
      transform: translateY(-2px) scale(1.03);
      box-shadow: var(--glow-brand-sm);
    }
    
    .instructions-box {
      background: linear-gradient(135deg, rgba(var(--rose-rgb),.15), rgba(var(--veil-rgb),.15));
      border: 1px solid rgba(var(--brand-rgb),.2);
      border-radius: 12px;
      padding: clamp(1rem, 2.5vw, 1.25rem);
    }
    
    .instructions-box h4 {
      font-size: clamp(0.8125rem, 1.1vw + 0.4rem, 0.875rem);
      font-weight: 700;
      color: var(--ink);
      margin: 0 0 clamp(0.625rem, 1.5vw, 0.875rem) 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      line-height: 1.2;
    }
    
    .instructions-box h4 i {
      color: var(--brand);
    }
    
    .instructions-box ol {
      margin: 0;
      padding-left: clamp(1.125rem, 2.5vw, 1.375rem);
      display: flex;
      flex-direction: column;
      gap: clamp(0.5rem, 1.5vw, 0.625rem);
    }
    
    .instructions-box li {
      color: var(--muted);
      font-size: clamp(0.8125rem, 1.1vw + 0.4rem, 0.875rem);
      line-height: 1.4;
    }
    
    @media (max-width: 767px) {
      .prizes-list {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    /* ===== SPECIALS SECTION ===== */
    .specials-section {
      padding: var(--space-section-sm) 0;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .section-header h2 {
      margin-bottom: 0.625rem;
      color: var(--ink);
      line-height: 1.2;
    }
    
    .section-header p {
      color: var(--muted);
      font-size: clamp(0.875rem, 1.1vw + 0.4rem, 1rem);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.4;
    }
    
    .specials-grid {
      --gg: clamp(1rem, 2.5vw, 1.5rem);
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--gg);
      margin-top: clamp(1.5rem, 3vw, 2rem);
    }
    
    @media (min-width: 640px) {
      .specials-grid { grid-template-columns: repeat(2, 1fr); }
    }
    
    @media (min-width: 1024px) {
      .specials-grid { grid-template-columns: repeat(3, 1fr); }
    }
    
    /* 3 specials: center the orphan as a pyramid apex at the 2-col stage */
    @media (min-width: 640px) and (max-width: 1023.98px) {
      .specials-grid > :nth-child(3):last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - var(--gg) / 2);
      }
    }
    
    .special-card {
      background: var(--card);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .special-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: var(--shadow-md);
    }
    
    .special-image {
      width: 100%;
      height: clamp(160px, 25vw, 180px);
      overflow: hidden;
      position: relative;
    }
    
    .special-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(var(--brand-rgb),.1));
      opacity: 0;
      transition: opacity var(--transition-base);
    }
    
    .special-card:hover .special-image::after {
      opacity: 1;
    }
    
    .special-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform var(--transition-slow);
    }
    
    .special-card:hover .special-image img {
      transform: scale(1.08);
    }
    
    .special-content {
      padding: clamp(1rem, 2.5vw, 1.25rem);
    }
    
    .special-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-size: clamp(0.75rem, 1vw + 0.4rem, 0.8125rem);
      font-weight: 600;
      padding: clamp(0.3rem, 1vw, 0.375rem) clamp(0.625rem, 1.5vw, 0.75rem);
      border-radius: 50px;
      background: linear-gradient(135deg, rgba(var(--rose-rgb),.2), rgba(var(--veil-rgb),.2));
      color: var(--brand);
      border: 1px solid rgba(var(--brand-rgb),.2);
      margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
      box-shadow: var(--glow-brand-xs);
      line-height: 1.2;
    }
    
    .special-badge i {
      font-size: 0.875rem;
    }
    
    .special-content h3 {
      font-size: clamp(1rem, 1.3vw + 0.4rem, 1.125rem);
      margin-bottom: 0.5rem;
      color: var(--ink);
      line-height: 1.3;
    }
    
    .special-content p {
      color: var(--muted);
      font-weight: 600;
      font-size: clamp(0.8125rem, 1.1vw + 0.4rem, 0.875rem);
      line-height: 1.4;
    }
    
    /* ===== NEWSLETTER SECTION ===== */
    .newsletter-section {
      padding: var(--space-section-md) 0;
    }
    
    .newsletter-card {
      background: linear-gradient(135deg, 
        rgba(255,255,255,.95) 0%, 
        rgba(255,245,250,.95) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 2px solid rgba(var(--brand-rgb),.25);
      border-radius: 24px;
      padding: clamp(2.5rem, 5vw, 3.5rem) clamp(2rem, 4vw, 3rem);
      box-shadow: var(--glow-brand-xl), var(--inset-top);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(1.5rem, 3vw, 2rem);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .newsletter-card::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(var(--brand-rgb),.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    
    .newsletter-card::after {
      content: "";
      position: absolute;
      bottom: -50%;
      left: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(var(--accent-rgb),.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    
    .newsletter-icon {
      width: 80px;
      height: 80px;
      background: var(--grad-cta);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--glow-brand-md);
      position: relative;
      z-index: 1;
    }
    
    .newsletter-icon i {
      font-size: 2rem;
      color: var(--white);
    }
    
    .newsletter-content {
      max-width: 600px;
      position: relative;
      z-index: 1;
    }
    
    .newsletter-content h2 {
      font-family: Pacifico, cursive;
      font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
      color: var(--brand);
      margin-bottom: 0.75rem;
      line-height: 1.2;
      text-shadow: 0 2px 8px rgba(var(--brand-rgb),.2);
    }
    
    .newsletter-content p {
      font-size: clamp(0.9375rem, 1.2vw + 0.4rem, 1.0625rem);
      color: var(--muted);
      line-height: 1.4;
      margin: 0;
    }
    
    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      max-width: 500px;
      position: relative;
      z-index: 1;
    }
    
    .input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
    }
    
    .input-wrapper i {
      position: absolute;
      left: 1.25rem;
      font-size: 1.125rem;
      color: var(--brand);
      pointer-events: none;
    }
    
    .newsletter-form input {
      width: 100%;
      padding: 1.125rem 1.25rem 1.125rem 3.25rem;
      font-family: Inter, sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--ink);
      background: rgba(255,255,255,.9);
      border: 2px solid rgba(var(--brand-rgb),.2);
      border-radius: 16px;
      transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), outline-color var(--transition-fast);
      line-height: 1.2;
    }
    
    .newsletter-form input::placeholder {
      color: var(--muted);
      opacity: 0.6;
    }
    
    .newsletter-form input:focus {
      outline: none;
      border-color: var(--brand);
      background: var(--white);
      box-shadow: var(--glow-brand-sm);
    }
    
    .newsletter-btn {
      background: var(--grad-cta);
      color: var(--white);
      font-family: Inter, sans-serif;
      font-size: 1.0625rem;
      font-weight: 700;
      padding: 1.125rem 2rem;
      border: none;
      border-radius: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.625rem;
      transition: box-shadow var(--transition-fast), transform var(--transition-fast);
      box-shadow: var(--glow-brand);
      line-height: 1.2;
    }
    
    .newsletter-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--glow-brand-lg);
    }
    
    .newsletter-btn:active {
      transform: translateY(-1px);
    }
    
    .newsletter-btn i {
      font-size: 1rem;
      transition: transform var(--transition-fast);
    }
    
    .newsletter-btn:hover i {
      transform: translateX(4px);
    }
    
    .newsletter-disclaimer {
      font-size: clamp(0.75rem, 1vw + 0.3rem, 0.8125rem);
      color: var(--muted);
      opacity: 0.8;
      margin: 0;
      line-height: 1.4;
      position: relative;
      z-index: 1;
    }
    
    @media (min-width: 640px) {
      .newsletter-form {
        flex-direction: row;
      }
      
      .input-wrapper {
        flex: 1;
      }
      
      .newsletter-btn {
        flex-shrink: 0;
      }
    }
    
    /* ===== GALLERY (Masonry-style) ===== */
    .gallery-section {
      padding: var(--space-section-sm) 0;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: clamp(0.875rem, 2vw, 1.125rem);
      margin-top: clamp(1.5rem, 3vw, 2rem);
    }
    
    .gallery-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      aspect-ratio: 4 / 3;
    }
    
    .gallery-item:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-md);
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    /* ===== FOOTER ===== */
    footer {
      background: rgba(255,255,255,.6);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: clamp(2rem, 5vw, 3rem) 0 clamp(1.25rem, 3vw, 1.75rem);
      margin-top: var(--space-section-md);
      border-top: 1px solid rgba(255,255,255,.4);
    }
    
    /* ===== SCROLL TO TOP BUTTON ===== */
    .scroll-to-top {
      position: fixed;
      bottom: clamp(1.25rem, 3vw, 2rem);
      right: clamp(1.25rem, 3vw, 2rem);
      width: clamp(44px, 10vw, 48px);
      height: clamp(44px, 10vw, 48px);
      background: var(--grad-cta);
      color: var(--white);
      border: none;
      border-radius: 50%;
      box-shadow: var(--shadow-lg);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: clamp(1.125rem, 2.5vw, 1.25rem);
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: box-shadow var(--transition-fast), transform var(--transition-fast);
      z-index: 90;
    }
    
    .scroll-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .scroll-to-top:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 39px rgba(var(--shade-rgb),.22);   /* bespoke: intentionally stronger than --shadow-lg for this floating action button */
    }
    
    .scroll-to-top:active {
      transform: translateY(-2px);
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(1.5rem, 4vw, 2.5rem);
      margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }
    
    @media (min-width: 640px) {
      .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
      }
    }
    
    .footer-brand-section {
      display: flex;
      flex-direction: column;
      gap: clamp(0.75rem, 2vw, 1rem);
    }
    
    .footer-brand {
      font-family: Pacifico, cursive;
      font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
      color: var(--brand);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      line-height: 1.2;
    }
    
    .footer-brand .brand-badge {
      width: 2.4rem;
      height: 2.4rem;
    }
    .footer-brand .brand-badge i {
      font-size: 1.15rem;
    }
    
    .footer-tagline {
      color: var(--muted);
      font-size: clamp(0.8125rem, 1.1vw + 0.4rem, 0.875rem);
      line-height: 1.4;
      max-width: 320px;
    }
    
    .footer-social {
      display: flex;
      gap: 0.75rem;
      margin-top: 0.5rem;
    }
    
    .footer-social a {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, .9);
      border-radius: 50%;
      font-size: 1.125rem;
      color: var(--brand);
      transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
    }
    
    .footer-social a:hover {
      background: var(--grad-cta);
      color: var(--white);
      transform: translateY(-2px);
    }
    
    .footer-section h4 {
      font-size: 0.9375rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--ink);
      text-transform: uppercase;
      letter-spacing: 0.025em;
    }
    
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }
    
    .footer-links a {
      color: var(--muted);
      font-size: 0.9375rem;
      transition: color var(--transition-fast);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .footer-links a i {
      font-size: 0.875rem;
      color: var(--brand);
    }
    
    .footer-links a:hover {
      color: var(--brand);
    }
    
    .footer-bottom {
      padding-top: clamp(1.5rem, 4vw, 2rem);
      border-top: 1px solid rgba(0,0,0,.08);
      text-align: center;
      color: var(--subtle);
      font-size: 0.875rem;
    }
    
    /* ===== RESPONSIVE TWEAKS ===== */
    @media (max-width: 640px) {
    }

/* ==================== [ INDEX: hero, buttons, features, about, menu ] ==================== */
    .hero {
      padding: clamp(3rem, 8vw, 6rem) 0;
      text-align: center;
    }
    
    .hero h1 {
      font-family: Pacifico, cursive;
      font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
      color: var(--brand);
      margin-bottom: 1rem;
      text-shadow: 0 2px 6px rgba(var(--shade-rgb), .3);   /* matches the
        navbar logo's tight, dark "pop" shadow instead of a soft same-hue glow */
    }
    
    .hero p {
      font-size: clamp(1.125rem, 2vw + .5rem, 1.375rem);
      color: var(--muted);
      margin-bottom: 2rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      padding: 1.125rem 2.25rem;
      font-weight: 700;
      font-size: 1.0625rem;
      border-radius: 50px;
      transition: outline-color var(--transition-fast), transform var(--transition-fast);
      line-height: 1.2;
      border: none;
      cursor: pointer;
    }
    
    .btn:focus-visible {
      outline: 3px solid rgba(var(--brand-rgb), .55);
      outline-offset: 3px;
    }
    
    .btn:active {
      transform: translateY(0) scale(.98);
    }
    
    /* Button icons ride a touch lighter for contrast on the fills */
    .btn i {
      font-size: 0.95em;
      opacity: 0.95;
    }
    
    .btn-primary {
      background: var(--grad-cta);
      color: var(--white);
      box-shadow: var(--glow-brand);
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--glow-brand-lg);
    }
    
    /* Solid white pill + defined border + layered shadow = clear pop
       against the site's soft-pink background. */
    .btn-secondary {
      background: var(--white);
      color: var(--brand);
      border: 2px solid rgba(var(--brand-rgb), .55);
      box-shadow: var(--glow-brand-xs), inset 0 -2px 0 rgba(var(--brand-rgb), .1);
    }
    
    .btn-secondary:hover {
      background: var(--white);
      border-color: var(--brand);
      transform: translateY(-2px);
      box-shadow: var(--glow-brand-lg), inset 0 -2px 0 rgba(var(--brand-rgb), .12);
    }
    
    /* ===== FEATURES SECTION ===== */
    .features {
      padding: var(--space-section-lg) 0;
    }
    
    .features-grid {
      --gg: clamp(1.5rem, 3vw, 2rem);
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--gg);
    }
    
    @media (min-width: 640px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
    }
    
    @media (min-width: 1024px) {
      .features-grid { grid-template-columns: repeat(3, 1fr); }
    }
    
    /* When the grid holds exactly 3 cards and we're at the 2-column stage,
       center the orphan below the pair — a tidy pyramid instead of a 2+1. */
    @media (min-width: 640px) and (max-width: 1023.98px) {
      .features-grid > :nth-child(3):last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - var(--gg) / 2);
      }
    }
    
    .feature-card {
      background: var(--card);
      backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: clamp(2rem, 4vw, 2.5rem);
      text-align: center;
      box-shadow: var(--shadow);
    }
    
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }
    
    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: var(--grad-cta);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--glow-brand-md);
    }
    
    .feature-icon i {
      font-size: 2rem;
      color: var(--white);
    }
    
    .feature-card h3 {
      font-size: clamp(1.125rem, 2vw + .5rem, 1.375rem);
      color: var(--ink);
      margin-bottom: .75rem;
    }
    
    .feature-card p {
      color: var(--muted);
      margin: 0;
      font-weight: 600;
      font-size: clamp(.875rem, 1.1vw + .4rem, .9375rem);
    }
    
    /* ===== ABOUT SECTION ===== */
    .about {
      padding: var(--space-section-lg) 0;
    }
    
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(2rem, 5vw, 3rem);
      align-items: center;
    }
    
    @media (min-width: 768px) {
      .about-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    .about-image {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--glow-brand-xl);
    }
    
    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 400px;
    }
    
    .about-content h2 {
      font-family: Pacifico, cursive;
      font-size: clamp(2rem, 4vw + .5rem, 3rem);
      color: var(--brand);
      margin-bottom: 1rem;
    }
    
    .about-content p {
      color: var(--muted);
      margin-bottom: 1.25rem;
      font-size: clamp(.9375rem, 1.2vw + .4rem, 1.0625rem);
    }
    
    .about-content p:last-of-type {
      margin-bottom: 2rem;
    }
    
    /* ===== MENU SECTION ===== */
    .menu {
      padding: var(--space-section-lg) 0;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: clamp(2rem, 5vw, 3rem);
    }
    
    .section-header h2 {
      font-family: Pacifico, cursive;
      font-size: clamp(2rem, 4vw + .5rem, 3rem);
      color: var(--brand);
      margin-bottom: .75rem;
    }
    
    .section-header p {
      color: var(--muted);
      font-size: clamp(.9375rem, 1.2vw + .4rem, 1.0625rem);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: clamp(1.5rem, 3vw, 2rem);
    }
    
    .menu-item {
      background: var(--card);
      backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .menu-item:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }
    
    .menu-item-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }
    
    .menu-item-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s var(--ease-smooth);
    }
    
    .menu-item:hover .menu-item-image img {
      transform: scale(1.08);
    }
    
    .menu-item-content {
      padding: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .menu-item-content h3 {
      font-size: clamp(1.0625rem, 1.5vw + .5rem, 1.25rem);
      color: var(--ink);
      margin-bottom: .5rem;
    }
    
    .menu-item-content p {
      color: var(--muted);
      margin: 0;
      font-weight: 600;
      font-size: clamp(.8125rem, 1.1vw + .4rem, .9375rem);
    }


    /* ============================================================
       ADDITIONS — new components (contact form, route schedule,
       testimonials, about stats/founder, skip link). Built in the
       exact same idiom as the originals: var(--card) glass cards,
       var(--brand) accents, Pacifico headers, --transition-* timing.
       ============================================================ */

    /* Skip link (accessibility) */
    .skip-link {
      position: fixed;
      top: 0.5rem;
      left: 0.5rem;
      z-index: 200;
      padding: 0.65rem 1rem;
      border-radius: 12px;
      background: var(--brand);
      color: var(--white);
      font-weight: 700;
      box-shadow: var(--shadow-md);
      transform: translateY(-160%);
      transition: transform var(--transition-fast);
    }
    .skip-link:focus { transform: translateY(0); }

    :where(a, button, input, textarea, select):focus-visible {
      outline: 3px solid rgba(var(--brand-rgb), .55);
      outline-offset: 2px;
    }

    /* Generic section padding for the added sections */
    .section-pad { padding: var(--space-section-md) 0; }
    .section-pad-sm { padding: var(--space-section-sm) 0; }

    /* ===== TESTIMONIALS (static cards) ===== */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: clamp(1.5rem, 3vw, 2rem);
    }
    .testimonial-card {
      background: var(--card);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: 16px;
      padding: clamp(1.5rem, 3vw, 2rem);
      box-shadow: 0 3px 11px rgba(var(--shade-rgb), .06);   /* bespoke: deliberately whisper-quiet, below the glow tokens' alpha floor */
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }
    .testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .testimonial-card .stars { color: var(--star); display: flex; gap: 0.15rem; }
    .testimonial-card blockquote { color: var(--ink); font-size: clamp(0.95rem, 1.1vw + 0.4rem, 1.0625rem); line-height: 1.5; margin: 0; }
    .testimonial-card figcaption { color: var(--muted); font-weight: 700; font-size: 0.9rem; }
    .testimonial-card figcaption span { color: var(--brand); font-weight: 600; }

    /* ===== ROUTE SCHEDULE (timeline) =====
       Per-item architecture: every stop owns its dot (::before) and the
       line segment down to the NEXT dot (::after). The last stop draws no
       segment, so the line can never overshoot, and each dot's white halo
       masks the joins. Alignment is tied to the time row's line box. */
    .schedule-card {
      background: var(--card);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: clamp(1.5rem, 4vw, 2.25rem);
    }
    .schedule-card > h2 {
      font-family: Pacifico, cursive;
      font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
      color: var(--brand);
      display: inline-flex; align-items: center; gap: 0.6rem;
      margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
      text-shadow: 0 2px 8px rgba(var(--brand-rgb), .2);
    }

    .stop-list {
      list-style: none;
      margin: 0 auto;           /* centered in the card when vertical */
      padding: 0;
      max-width: 420px;         /* cinched width so it sits under the heading */
      --dot: 18px;              /* dot diameter */
      --rail: 3px;              /* line thickness */
      --gutter: 2.5rem;         /* marker column width */
      --time-line: 1.225rem;    /* .stop-time line box (0.875rem × 1.4) */
    }

    .stop {
      position: relative;
      padding: 0 0 clamp(1.1rem, 2.5vw, 1.5rem) var(--gutter);
    }
    .stop:last-child { padding-bottom: 0; }

    /* Dot — vertically centered on the time text's line box */
    .stop::before {
      content: "";
      position: absolute;
      left: 0;
      top: calc((var(--time-line) - var(--dot)) / 2);
      width: var(--dot);
      height: var(--dot);
      border-radius: 50%;
      background: var(--white);
      border: 3px solid rgba(var(--brand-rgb), .45);
      box-shadow: 0 0 0 4px #fff;   /* solid halo fully masks the rail joins */
      z-index: 1;
    }

    /* Rail segment — from below this dot to the NEXT stop's dot */
    .stop::after {
      content: "";
      position: absolute;
      left: calc((var(--dot) - var(--rail)) / 2);
      top: calc((var(--time-line) - var(--dot)) / 2 + var(--dot));
      bottom: calc(-1 * (var(--time-line) - var(--dot)) / 2);
      width: var(--rail);
      border-radius: var(--rail);
      background: rgba(var(--brand-rgb), .25);
    }
    .stop:last-child::after { display: none; }

    /* — Completed stops: candy-filled dot with a tiny check, solid rail — */
    .stop.is-done::before {
      content: "\f00c";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 9px;
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--grad-cta);
      border-color: transparent;
    }
    .stop.is-done::after { background: linear-gradient(180deg, rgba(var(--brand-rgb),.55), rgba(var(--brand-rgb),.25)); }
    .stop.is-done .stop-place { color: var(--muted); }
    .stop.is-done .stop-note  { opacity: 0.75; }

    /* — Live stop: pulsing green dot, emphasized text — */
    .stop.is-live::before {
      background: var(--live);
      border-color: transparent;
      box-shadow: 0 0 0 4px #fff, 0 0 10px rgba(var(--live-rgb), .65);
      animation: stopPulse 2s ease-in-out infinite;
    }
    .stop.is-live .stop-time  { color: var(--live-deep); }
    .stop.is-live .stop-place { font-size: 1.125rem; }
    .stop.is-live .stop-note  { color: var(--live-deep); font-weight: 600; }

    @keyframes stopPulse {
      0%, 100% { box-shadow: 0 0 0 4px #fff, 0 0 0 0 rgba(var(--live-rgb), .55); }
      50%      { box-shadow: 0 0 0 4px #fff, 0 0 0 8px rgba(var(--live-rgb), 0); }
    }

    @media (prefers-reduced-motion: reduce) {
      .stop.is-live::before { animation: none; }
    }

    /* — Upcoming stops: hollow dots (default) — */

    .stop-time {
      font-family: Poppins, Inter, sans-serif;
      font-weight: 700;
      color: var(--brand);
      font-size: 0.875rem;
      line-height: 1.4;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin: 0;
    }
    .stop-place {
      font-weight: 700;
      color: var(--ink);
      font-size: 1.0625rem;
      line-height: 1.35;
      margin: 0.15rem 0 0.1rem;
    }
    .stop-place .badge-now {
      margin-left: 0.5rem;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--live-deep);
      background: rgba(var(--live-rgb), .18);
      border: 1px solid rgba(var(--live-rgb), .3);
      padding: 0.15rem 0.6rem;
      border-radius: 50px;
      vertical-align: middle;
      white-space: nowrap;
    }
    .stop-note {
      color: var(--muted);
      font-size: 0.875rem;
      line-height: 1.4;
      margin: 0;
    }

    /* ===== ABOUT — stats + founder note ===== */
    .stats-band {
      background: var(--card);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: clamp(1.75rem, 4vw, 2.5rem);
      display: grid; gap: clamp(1.25rem, 3vw, 2rem); text-align: center;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .stat .num { font-family: Pacifico, cursive; color: var(--brand); font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1; text-shadow: 0 2px 8px rgba(var(--brand-rgb), .2); }
    .stat .label { color: var(--muted); font-weight: 600; font-size: 0.875rem; margin-top: 0.5rem; }

    .founder-note {
      background: var(--card);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: clamp(1.75rem, 4vw, 2.5rem);
      max-width: 720px; margin: 0 auto; text-align: center;
      display: grid; gap: 1rem;
    }
    .founder-note .mark { color: var(--brand); font-size: 1.75rem; }
    .founder-note blockquote { font-size: clamp(1rem, 1.4vw + 0.5rem, 1.25rem); line-height: 1.55; color: var(--ink); margin: 0; }
    .founder-note .sign { font-family: Pacifico, cursive; color: var(--brand); font-size: 1.35rem; }

    /* ===== CTA BAND (about/contact) ===== */
    .cta-band {
      background: linear-gradient(135deg, rgba(var(--rose-rgb), .3), rgba(var(--veil-rgb), .3));
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 2px solid rgba(var(--brand-rgb), .3);
      border-radius: var(--radius-lg);
      box-shadow: var(--glow-brand-md), var(--inset-top);
      padding: clamp(2rem, 5vw, 3.25rem);
      text-align: center;
      display: grid; gap: 1rem; justify-items: center;
    }
    .cta-band h2 { font-family: Pacifico, cursive; color: var(--brand); font-size: clamp(1.75rem, 4vw, 2.6rem); text-shadow: 0 2px 8px rgba(var(--brand-rgb), .2); }
    .cta-band p { color: var(--ink); max-width: 52ch; }
    .cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

    /* ===== CONTACT FORM ===== */
    .contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); align-items: start; }
    @media (min-width: 900px) { .contact-grid { grid-template-columns: 1.35fr 0.65fr; } }

    .contact-card {
      background: var(--card);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: clamp(1.5rem, 4vw, 2.25rem);
    }

    .form-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
    @media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }

    .form-field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
    .form-field label { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
    .form-field .req { color: var(--brand); }

    .form-control {
      width: 100%;
      padding: 0.95rem 1.1rem;
      font-family: Inter, sans-serif;
      font-size: 1rem;
      color: var(--ink);
      background: rgba(255, 255, 255, .9);
      border: 2px solid rgba(var(--brand-rgb), .2);
      border-radius: 16px;
      transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), outline-color var(--transition-fast);
      line-height: 1.3;
    }
    .form-control::placeholder { color: var(--muted); opacity: 0.6; }
    .form-control:focus {
      outline: none;
      border-color: var(--brand);
      background: var(--white);
      box-shadow: var(--glow-brand-sm);
    }
    textarea.form-control { min-height: 8.5rem; resize: vertical; }
    select.form-control { appearance: none; cursor: pointer; }
    .form-control[aria-invalid="true"] { border-color: var(--error); box-shadow: 0 0 0 3px rgba(var(--error-rgb), .18); }

    .field-error { display: flex; align-items: center; gap: 0.4rem; color: var(--error); font-size: 0.875rem; font-weight: 600; }
    .form-alert {
      display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem;
      padding: 0.85rem 1.1rem; border-radius: 12px;
      color: var(--error); font-weight: 600;
      background: rgba(var(--error-rgb), .08); border: 1px solid rgba(var(--error-rgb), .3);
    }
    .form-hint { color: var(--muted); font-size: 0.875rem; margin-top: 0.5rem; }
    .form-actions { margin-top: 0.5rem; }
    .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

    .contact-aside { display: grid; gap: clamp(1.25rem, 3vw, 1.75rem); }
    .aside-card {
      background: var(--card);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      padding: clamp(1.5rem, 4vw, 2rem);
    }
    .aside-card h2 { font-family: Pacifico, cursive; color: var(--brand); font-size: 1.4rem; margin-bottom: 0.9rem; text-shadow: 0 2px 8px rgba(var(--brand-rgb), .2); }
    .aside-card p { color: var(--muted); }
    .info-list { list-style: none; display: grid; gap: 0.85rem; }
    .info-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
    .info-list i { color: var(--brand); width: 1.3rem; text-align: center; flex: none; margin-top: 0.2rem; }
    .info-list a { color: var(--ink); text-decoration: none; transition: color var(--transition-fast); }
    .info-list a:hover { color: var(--brand); }
    .info-list .muted { color: var(--muted); }
    .aside-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
    .aside-social a {
      width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
      border-radius: 50%; color: var(--brand); font-size: 1.05rem;
      transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
    }
    .aside-social a:hover { background: var(--grad-cta); color: var(--white); transform: translateY(-2px); }

    .success-card {
      background: var(--card);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--card-border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: clamp(2rem, 5vw, 3rem);
      text-align: center; display: grid; gap: 1rem; justify-items: center;
    }
    .success-icon {
      width: 66px; height: 66px; display: grid; place-items: center; border-radius: 50%;
      font-size: 1.8rem; color: var(--live-deep); background: rgba(var(--live-rgb), .16);
    }
    .success-card h2 { font-family: Pacifico, cursive; color: var(--brand); font-size: clamp(1.6rem, 3vw, 2.2rem); text-shadow: 0 2px 8px rgba(var(--brand-rgb), .2); }
    .success-card p { color: var(--muted); max-width: 46ch; }
    .success-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 0.5rem; }

    /* Hero CTA reuse on non-index pages */
    .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

    /* ============================================================
       BRAND LOCKUP — "Sweet Wheels" over a small "DESSERT TRUCK"
       sub-line. Shared by the header brand, drawer masthead, and
       footer brand.
       ============================================================ */
    .brand-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 3px;
    }
    
    .brand-name {
      line-height: 1;
    }
    
    .brand-sub {
      font-family: Poppins, Inter, sans-serif;
      font-size: clamp(0.5rem, 0.6vw + 0.3rem, 0.625rem);
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--accent);
      line-height: 1;
      margin-left: 2px;
    }
    
    .footer-brand .brand-sub {
      letter-spacing: 0.3em;
    }
    
    /* ============================================================
       PAGE HERO — one consistent header for every inner page
       (About, Find Us, Contact): eyebrow pill, Pacifico title,
       lead, and a little sprinkle divider.
       ============================================================ */
    .page-hero {
      padding: var(--space-section-md) 0 clamp(1.5rem, 4vw, 2.5rem);
      text-align: center;
    }
    
    .page-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, rgba(var(--rose-rgb),.25), rgba(var(--veil-rgb),.25));
      border: 1px solid rgba(var(--brand-rgb),.25);
      padding: 0.45rem 1.1rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.875rem);
      color: var(--ink);
      box-shadow: var(--glow-brand-sm);
      margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
      line-height: 1.2;
    }
    
    .page-hero-eyebrow i {
      color: var(--brand);
    }
    
    .page-hero h1 {
      font-family: Pacifico, cursive;
      font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
      color: var(--brand);
      margin-bottom: 0.75rem;
      line-height: 1.2;
      text-shadow: 0 2px 6px rgba(var(--shade-rgb), .3);   /* same tight,
        dark "pop" shadow as the navbar logo and home hero */
    }
    
    .page-hero p {
      font-size: clamp(0.9375rem, 1.2vw + 0.4rem, 1.0625rem);
      color: var(--muted);
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.5;
    }
    
    .page-hero-sprinkles {
      display: flex;
      gap: 0.6rem;
      justify-content: center;
      margin-top: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .page-hero-sprinkles i {
      font-size: 0.45rem;
      color: var(--brand);
    }
    
    .page-hero-sprinkles i:nth-child(2) {
      color: var(--accent);
      transform: translateY(-3px);
      font-size: 0.55rem;
    }
    
    .page-hero-sprinkles i:nth-child(3) {
      color: var(--star);
    }

    /* ============================================================
       FOOTER GLOW-UP — emblem badge, hours column, springier
       interactions, and a balanced responsive layout:
         320–639   : single column, everything center-aligned
         640–1023  : brand spans full width, 2 columns, hours spans
         1024+     : 4 balanced columns
       ============================================================ */
    footer {
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,232,241,.7) 100%);
      border-top: 2px dashed rgba(var(--brand-rgb),.3);
    }
    
    .footer-emblem {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--grad-cta);
      border: 4px solid #fff;
      border-radius: 50%;
      color: var(--white);
      font-size: 1.5rem;
      box-shadow: var(--glow-brand);
      z-index: 1;
    }
    
    /* ---------- Base (320–639): one column, center aligned ---------- */
    .footer-grid {
      grid-template-columns: 1fr;
      gap: clamp(1.75rem, 5vw, 2.5rem);
      row-gap: clamp(2.5rem, 7vw, 3.25rem);
      text-align: center;
      justify-items: center;
    }
    
    .footer-brand-section {
      align-items: center;
    }
    
    .footer-brand {
      justify-content: center;
    }
    
    .footer-brand .brand-text {
      align-items: center;
    }
    
    .footer-brand .brand-sub {
      margin-left: 0;
      letter-spacing: 0.3em;
    }
    
    .footer-tagline {
      margin-inline: auto;
      max-width: 300px;
    }
    
    .footer-social {
      justify-content: center;
    }
    
    /* Section headings get a little candy underline */
    .footer-section h4 {
      position: relative;
      padding-bottom: 0.55rem;
      margin-bottom: 0.9rem;
    }
    
    .footer-section h4::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 30px;
      height: 3px;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--brand), var(--accent));
    }
    
    .footer-links {
      align-items: center;
    }
    
    .footer-links a {
      justify-content: center;
      transition: color var(--transition-fast), transform var(--transition-fast);
    }
    
    .footer-links a:hover {
      transform: translateX(4px);
    }
    
    .footer-links a i {
      transition: transform var(--transition-fast);
    }
    
    .footer-links a:hover i {
      transform: scale(1.2);
    }
    
    .footer-social a {
      border: 2px solid rgba(var(--brand-rgb),.25);
      transition: transform 0.3s var(--ease-spring), border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
    }
    
    .footer-social a:hover {
      transform: translateY(-4px) rotate(5deg) scale(1.08);
      border-color: transparent;
      box-shadow: var(--glow-brand-md);
    }
    
    /* Hours: a tidy centered block on mobile */
    .footer-hours {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin: 0 auto;
      padding: 0;
      width: 100%;
      max-width: 300px;
    }
    
    .footer-hours li {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.9375rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px dashed rgba(var(--brand-rgb),.2);
    }
    
    .footer-hours li:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    
    .footer-hours .days {
      color: var(--muted);
      font-weight: 600;
    }
    
    .footer-hours .time {
      color: var(--ink);
      font-weight: 700;
      text-align: right;
    }
    
    .footer-hours-note {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 0.9rem;
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--brand);
    }
    
    .footer-bottom {
      border-top: 1px dashed rgba(var(--brand-rgb),.3);
    }
    
    /* ---------- 640–1023: brand banner + 2 columns, hours wide ---------- */
    @media (min-width: 640px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: clamp(2.75rem, 5vw, 3.5rem);
        text-align: left;
        justify-items: stretch;
      }
      
      .footer-brand-section {
        align-items: flex-start;
      }
      
      .footer-brand {
        justify-content: flex-start;
      }
      
      .footer-brand .brand-text {
        align-items: flex-start;
      }
      
      .footer-tagline {
        margin-inline: 0;
        max-width: 340px;
      }
      
      .footer-social {
        justify-content: flex-start;
      }
      
      .footer-section h4::after {
        left: 0;
        transform: none;
      }
      
      .footer-links {
        align-items: flex-start;
      }
      
      .footer-links a {
        justify-content: flex-start;
      }
      
      .footer-hours {
        margin: 0;
        max-width: 440px;
      }
      
      .footer-hours-note {
        justify-content: flex-start;
      }
    }
    
    /* ---------- 1024+: four balanced columns ---------- */
    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1.25fr 0.6fr 0.8fr 1.25fr;
        gap: clamp(2rem, 3.5vw, 3rem);
      }
      
      .footer-hours {
        max-width: none;
      }
    }

    /* ============================================================
       SITE CHROME — candy scrollbar + selection color.
       Standard properties cover Firefox and Chromium 121+;
       ::-webkit-scrollbar pseudos take over in WebKit/Chromium
       for the full gradient treatment.
       ============================================================ */
    html {
      scrollbar-width: thin;
      scrollbar-color: var(--brand-light) var(--blush);
    }
    
    ::-webkit-scrollbar {
      width: 13px;
      height: 13px;
    }
    
    ::-webkit-scrollbar-track {
      background: var(--blush);
    }
    
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--cta-start), var(--cta-end));
      border-radius: 50px;
      border: 3px solid var(--blush);      /* inset pill effect */
      background-clip: padding-box;
      min-height: 48px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, var(--brand-light), var(--accent));
      background-clip: padding-box;
    }
    
    ::-webkit-scrollbar-thumb:active {
      background: linear-gradient(180deg, var(--brand), var(--accent-deep));
      background-clip: padding-box;
    }
    
    ::-webkit-scrollbar-corner {
      background: var(--blush);
    }
    
    ::selection {
      background: rgba(var(--brand-rgb), .35);
      color: var(--ink);
    }

    /* ============================================================
       CARD LANGUAGE — one hover behavior for every card family:
       same springy easing, tokenized lift, consistent shadows.
       (Overrides the per-card one-offs above by cascade order.)
       ============================================================ */
    .feature-card,
    .menu-item,
    .special-card,
    .testimonial-card,
    .gallery-item,
    .schedule-card,
    .contact-card,
    .aside-card,
    .stats-band,
    .founder-note,
    .hero-intro,
    .spinner-info,
    .map-container {
      /* transform stays springy (cheap, composited); box-shadow/border-color
         use the monotonic ease so the browser never paints a shadow larger
         than its final size mid-bounce. */
      transition:
        transform 0.3s var(--ease-spring),
        box-shadow 0.3s var(--ease-smooth),
        border-color 0.3s var(--ease-smooth);
      will-change: transform;
    }
    
    .feature-card:hover,
    .menu-item:hover,
    .testimonial-card:hover {
      transform: translateY(var(--lift-md));
      box-shadow: var(--shadow-lg);
    }
    
    .special-card:hover {
      transform: translateY(var(--lift-md)) scale(1.01);
      box-shadow: var(--shadow-md);
    }
    
    .gallery-item:hover {
      transform: translateY(var(--lift-sm)) scale(1.02);
      box-shadow: var(--shadow-md);
    }
    
    .hero-intro:hover,
    .spinner-info:hover,
    .map-container:hover {
      transform: translateY(var(--lift-sm));
    }
    
    @media (prefers-reduced-motion: reduce) {
      .feature-card, .menu-item, .special-card, .testimonial-card,
      .gallery-item, .schedule-card, .contact-card, .aside-card,
      .stats-band, .founder-note, .hero-intro, .spinner-info, .map-container {
        transition: none;
      }
      .feature-card:hover, .menu-item:hover, .special-card:hover,
      .testimonial-card:hover, .gallery-item:hover,
      .hero-intro:hover, .spinner-info:hover, .map-container:hover {
        transform: none;
      }
    }

    /* ============================================================
       EVEN GRIDS — explicit tracks per breakpoint so item counts
       break down evenly (8 gallery shots: 2×4 → 4×2; 6 menu
       items: 1 → 2×3 → 3×2). auto-fit raggedness eliminated.
       ============================================================ */
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    @media (min-width: 640px) {
      .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    /* About values: force an even 2x2 (never a 3+1 row) */
    .features-grid--quad {
      grid-template-columns: 1fr;
    }
    
    @media (min-width: 640px) {
      .features-grid--quad {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .features-grid--quad {
        grid-template-columns: repeat(2, 1fr);   /* stays 2x2, never 3-up */
      }
    }
    
    .menu-grid {
      grid-template-columns: 1fr;
    }
    
    @media (min-width: 640px) {
      .menu-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (min-width: 1024px) {
      .menu-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    /* ============================================================
       TIMELINE — horizontal stepper at 1024+ (vertical below).
       Same per-item dot/segment architecture, rotated: each stop's
       ::after now runs from its dot to the next column's dot,
       spanning the column gap; the last stop draws nothing.
       ============================================================ */
    @media (min-width: 1024px) {
      .stop-list {
        --hgap: 1.25rem;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
        gap: 0 var(--hgap);
        max-width: none;          /* span the full card horizontally */
        margin: 0.5rem 0 0;
      }
      
      .stop {
        padding: calc(var(--dot) + 2rem) 0.5rem 0;   /* more breathing room below the line */
        text-align: center;
      }
      
      .stop::before {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
      }
      
      .stop::after {
        top: calc(var(--dot) / 2 - var(--rail) / 2);
        bottom: auto;
        left: calc(50% + var(--dot) / 2 + 3px);
        width: calc(100% + var(--hgap) - var(--dot) - 6px);
        height: var(--rail);
      }
      
      .stop.is-done::after {
        background: linear-gradient(90deg, rgba(var(--brand-rgb),.55), rgba(var(--brand-rgb),.25));
      }
      
      .stop-place .badge-now {
        display: inline-block;
        margin: 0.35rem 0 0;
      }
    }
    
    /* ============================================================
       FEATURE CARDS — photo backgrounds with a candy-glass
       overlay for legibility (WCAG-safe ink on ~90% white veil).
       Image supplied per-card via --card-img inline custom prop.
       ============================================================ */
    .feature-card--photo {
      background-image:
        linear-gradient(165deg,
          rgba(255,255,255,.75) 0%,
          rgba(255,240,247,.70) 55%,
          rgba(255,232,241,.65) 100%),
        var(--card-img);
      background-size: cover;
      background-position: center;
    }
    
    /* ============================================================
       TESTIMONIAL CAROUSEL — scroll-snap track with candy
       prev/next buttons, progress dots, and avatar chips.
       Native scrolling = touch, wheel, and keyboard all work.
       ============================================================ */
    .testi-carousel {
      position: relative;
    }
    
    /* Viewport clips the track — no scrollbar ever. */
    .testi-viewport {
      overflow: hidden;
      padding: 0.75rem 0.4rem 1.35rem;   /* tight horizontally so adjacent
        clone cards (used for the infinite loop) never peek past the edge */
    }
    
    .testi-track {
      display: flex;
      gap: clamp(1rem, 2.5vw, 1.5rem);
      will-change: transform;
    }
    
    /* transition only while actively moving (JS toggles this) */
    .testi-track.is-animating {
      transition: transform 0.55s var(--ease-smooth);
    }
    
    .testi-track > .testimonial-card {
      flex: 0 0 auto;   /* exact width set by JS per slides-in-view */
    }
    
    .testi-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--grad-cta);
      color: var(--white);
      border: 3px solid #fff;
      border-radius: 50%;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: var(--glow-brand);
      transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth);
      z-index: 2;
    }
    
    .testi-btn.prev { left: -6px; }
    .testi-btn.next { right: -6px; }
    
    /* More breathing room once the grid layout kicks in */
    @media (min-width: 1024px) {
      .testi-btn.prev { left: -22px; }
      .testi-btn.next { right: -22px; }
    }
    
    /* Past the 1240px container, there's real margin to the browser
       edge on wide monitors — move the arrows out into it. */
    @media (min-width: 1340px) {
      .testi-btn.prev { left: -58px; }
      .testi-btn.next { right: -58px; }
    }
    
    .testi-btn:hover:not(:disabled) {
      transform: translateY(-50%) scale(1.12);
      box-shadow: var(--glow-brand-md);
    }
    
    .testi-btn:active:not(:disabled) {
      transform: translateY(-50%) scale(1.02);
    }
    
    .testi-btn:disabled {
      opacity: 0.35;
      cursor: default;
    }
    
    .testi-dots {
      display: flex;
      gap: 0.5rem;
      justify-content: center;
      margin-top: 0.6rem;
    }
    
    .testi-dot {
      width: 10px;
      height: 10px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgba(var(--brand-rgb), .28);
      cursor: pointer;
      transition: transform 0.3s var(--ease-spring), background 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
    }
    
    .testi-dot:hover {
      background: rgba(var(--brand-rgb), .5);
      transform: scale(1.15);
    }
    
    .testi-dot[aria-current="true"] {
      background: var(--grad-cta);
      transform: scale(1.35);
      box-shadow: var(--glow-brand-xs);
    }
    
    .testimonial-card figcaption {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }
    
    .testi-avatar {
      flex: none;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--grad-cta);
      color: var(--white);
      font-family: Poppins, Inter, sans-serif;
      font-weight: 800;
      font-size: 1.05rem;
      border-radius: 50%;
      box-shadow: var(--glow-brand);
    }
    
    @media (prefers-reduced-motion: reduce) {
      .testi-track { scroll-behavior: auto; }
      .testi-btn, .testi-dot { transition: none; }
    }

    /* ============================================================
       PYRAMID GRIDS — for a 3-item grid, center the odd card so it
       reads as a pyramid (2 over 1) or inverted pyramid (1 over 2)
       instead of a lopsided 2+1. Single column below 640; the span
       rules only fire when there are exactly 3 children.
       ============================================================ */
    .grid-pyramid,
    .grid-pyramid--down {
      --gg: clamp(1.5rem, 3vw, 2rem);
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--gg);
    }
    
    @media (min-width: 640px) {
      .grid-pyramid,
      .grid-pyramid--down {
        grid-template-columns: repeat(2, 1fr);
      }
      
      /* Pyramid: 2 on top, 3rd centered below */
      .grid-pyramid > :nth-child(3):last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - var(--gg) / 2);
      }
      
      /* Inverted: 1st centered on top, other 2 below */
      .grid-pyramid--down > :first-child:nth-last-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        width: calc(50% - var(--gg) / 2);
      }
    }

    /* ============================================================
       GLASS FALLBACK — some screenshot/capture tools and older
       engines drop backdrop-filter entirely. Without it, translucent
       glass reads as washed-out. When it's unsupported, make the
       glassy surfaces opaque so they still look intentional.
       ============================================================ */
    @supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
      .cta-band {
        background: linear-gradient(135deg, #ffe4f0, #efe9ff);
      }
      
      header {
        background: linear-gradient(135deg, #ff9ec9, #c9b8ff);
      }
      
      .nav-overlay {
        background: rgba(58, 32, 48, .6);
      }
      
      /* var(--card) surfaces are already ~93% opaque; nudge to fully solid */
      .feature-card, .menu-item, .special-card, .testimonial-card,
      .schedule-card, .contact-card, .aside-card, .success-card,
      .stats-band, .founder-note, .hero-intro, .spinner-info,
      .map-container, .newsletter-card {
        background-color: #fff;
      }
    }

    /* ============================================================
       ATMOSPHERE — Pass 1. A document-height decorative layer
       (glow pools + sprinkle dots), hero staging (glow bloom,
       floating treats, scalloped divider), faint treat watermarks
       to break up sections, and two veiled photo bands.
       Everything is screenshot-safe: sized to the document, never
       viewport-fixed.
       ============================================================ */
    body {
      position: relative;
    }
    
    body::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background-image:
        radial-gradient(ellipse 55% 28% at 12% 6%,  rgba(var(--rose-rgb), .35), transparent 70%),
        radial-gradient(ellipse 48% 24% at 88% 34%, rgba(var(--veil-rgb), .32), transparent 70%),
        radial-gradient(ellipse 60% 26% at 8% 72%,  rgba(var(--brand-rgb), .12), transparent 70%),
        radial-gradient(circle, rgba(var(--brand-rgb), .05) 1px, transparent 1.6px);
      background-size: 100% 100%, 100% 100%, 100% 100%, 26px 26px;
      background-repeat: no-repeat, no-repeat, no-repeat, repeat;
    }
    
    /* ---------- Hero staging ---------- */
    .hero {
      position: relative;
      overflow: visible;
    }
    
    /* glow bloom behind the headline */
    .hero::before {
      content: "";
      position: absolute;
      top: 8%;
      left: 50%;
      transform: translateX(-50%);
      width: min(720px, 92%);
      height: 72%;
      z-index: -1;
      background: radial-gradient(ellipse 50% 50% at 50% 42%, rgba(255,255,255,.55), rgba(var(--rose-rgb), .25) 55%, transparent 75%);
      pointer-events: none;
    }
    
    /* floating treat icons */
    .hero-treats {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: -1;
    }
    
    .hero-treats i {
      position: absolute;
      color: var(--brand);
      opacity: .32;
      animation: treatFloat 7s ease-in-out infinite alternate;
    }
    
    .hero-treats i:nth-child(1) { top: 14%; left: 8%;  font-size: clamp(2.1rem, 4.4vw, 3.3rem); rotate: -12deg; }
    .hero-treats i:nth-child(2) { top: 62%; left: 15%; font-size: clamp(1.6rem, 3.3vw, 2.6rem);  rotate: 9deg;  color: var(--accent); animation-delay: -2.2s; }
    .hero-treats i:nth-child(3) { top: 18%; right: 9%; font-size: clamp(2rem, 4.1vw, 3.1rem); rotate: 14deg; color: var(--accent); animation-delay: -4s; }
    .hero-treats i:nth-child(4) { top: 66%; right: 14%; font-size: clamp(1.6rem, 3.5vw, 2.7rem); rotate: -8deg; animation-delay: -5.5s; }
    .hero-treats i:nth-child(5) { top: 40%; left: 4%;  font-size: clamp(1.3rem, 2.5vw, 1.9rem);   rotate: 6deg;  opacity: .22; animation-delay: -1s; }
    .hero-treats i:nth-child(6) { top: 44%; right: 4%; font-size: clamp(1.3rem, 2.5vw, 1.9rem);   rotate: -14deg; opacity: .22; color: var(--accent); animation-delay: -3.4s; }
    
    @keyframes treatFloat {
      from { translate: 0 -7px; }
      to   { translate: 0 9px; }
    }
    
    @media (max-width: 639.98px) {
      .hero-treats i:nth-child(5),
      .hero-treats i:nth-child(6) { display: none; }
    }
    
    /* soft glow behind inner page heroes too */
    .page-hero {
      position: relative;
    }
    
    .page-hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: min(560px, 90%);
      height: 100%;
      z-index: -1;
      background: radial-gradient(ellipse 50% 55% at 50% 45%, rgba(255,255,255,.45), rgba(var(--rose-rgb), .2) 55%, transparent 75%);
      pointer-events: none;
    }
    
    /* ---------- Treat watermarks: faint oversized glyphs, reusable ----------
       Apply .watermark plus a placement class (--tr/--bl/--tl/--br) to any
       section; the glyph itself is set per-page via --wm-icon. */
    .watermark {
      position: relative;
      isolation: isolate;
      overflow: clip;
    }
    
    .watermark::before {
      content: var(--wm-icon, "\f564");   /* cookie-bite default */
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      z-index: -1;
      color: var(--wm-color, var(--brand));
      opacity: .1;
      font-size: clamp(10rem, 22vw, 19rem);
      filter: blur(1.5px);   /* softens the vector edge so any partial
        overlap reads as a glow, never a hard silhouette/"shadow" */
      pointer-events: none;
    }
    
    /* Pulled well inward from every edge — with the section's own
       overflow:clip, this guarantees the full glyph (including its
       font-metric bounding box, which is taller than font-size) stays
       clear of both the clip boundary and any foreground card edge. */
    .watermark--tr::before { right: 2%;  top: 14%;    rotate: 14deg; }
    .watermark--tl::before { left: 2%;   top: 14%;    rotate: -12deg; }
    .watermark--bl::before { left: 2%;   bottom: 12%; rotate: -10deg; }
    .watermark--br::before { right: 2%;  bottom: 12%; rotate: 11deg; }
    
    /* legacy hooks kept working via the same mechanism */
    .specials-section,
    .menu {
      position: relative;
      isolation: isolate;
      overflow: clip;
    }
    
    .menu::before {
      content: "\f564";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      z-index: -1;
      color: var(--brand);
      opacity: .1;
      font-size: clamp(10rem, 22vw, 19rem);
      filter: blur(1.5px);
      pointer-events: none;
      right: 2%;
      top: 14%;
      rotate: 14deg;
    }
    
    .specials-section::before {
      content: "\f1fd";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      z-index: -1;
      color: var(--accent);
      opacity: .1;
      font-size: clamp(10rem, 22vw, 19rem);
      filter: blur(1.5px);
      pointer-events: none;
      left: 2%;
      bottom: 12%;
      rotate: -10deg;
    }
    
    @media (prefers-reduced-motion: reduce) {
      .hero-treats i { animation: none; }
    }

    /* ============================================================
       PASS 2 — section anatomy & content chips.
       Section eyebrows (matching the page-hero pill), menu price
       chips, gallery hover captions, and one unified image
       treatment (hairline inner ring on every photo wrapper).
       ============================================================ */
    
    /* ---------- Section eyebrows ---------- */
    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, rgba(var(--rose-rgb),.25), rgba(var(--veil-rgb),.25));
      border: 1px solid rgba(var(--brand-rgb),.25);
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: clamp(0.75rem, 0.9vw + 0.35rem, 0.8125rem);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--ink);
      box-shadow: var(--glow-brand-xs);
      margin-bottom: 0.9rem;
      line-height: 1.2;
    }
    
    .section-eyebrow i {
      color: var(--brand);
    }
    
    /* ---------- Menu price chips ---------- */
    .menu-item-image {
      position: relative;
    }
    
    .price-chip {
      position: absolute;
      top: 0.7rem;
      right: 0.7rem;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      padding: 0.35rem 0.8rem;
      background: var(--grad-cta);
      color: var(--white);
      font-family: Poppins, Inter, sans-serif;
      font-weight: 800;
      font-size: 0.8125rem;
      letter-spacing: 0.02em;
      border-radius: 50px;
      border: 2px solid rgba(255,255,255,.85);
      box-shadow: var(--glow-brand-sm);
    }
    
    /* ---------- Gallery hover captions ---------- */
    .gallery-item figcaption {
      position: absolute;
      inset: auto 0 0 0;
      padding: 1.6rem 0.9rem 0.7rem;
      background: linear-gradient(180deg, transparent, rgba(58, 32, 48, .72));
      color: var(--white);
      font-weight: 600;
      font-size: 0.875rem;
      line-height: 1.3;
      pointer-events: none;
    }
    
    @media (hover: hover) {
      .gallery-item figcaption {
        opacity: 0;
        translate: 0 8px;
        transition: opacity 0.3s var(--ease-smooth), translate 0.3s var(--ease-smooth);
      }
      
      .gallery-item:hover figcaption,
      .gallery-item:focus-within figcaption {
        opacity: 1;
        translate: 0 0;
      }
    }
    
    /* ---------- Unified image treatment: hairline inner ring ---------- */
    .menu-item-image::after,
    .special-image::after,
    .gallery-item::after,
    .about-image::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 1.5px solid rgba(255, 255, 255, .45);
      border-radius: inherit;
      pointer-events: none;
      z-index: 1;
    }
    
    .about-image {
      position: relative;
    }
    
    @media (prefers-reduced-motion: reduce) {
      .gallery-item figcaption { transition: none; }
    }

    /* ============================================================
       PASS 3 — motion narrative. Scroll reveals (rise + fade),
       stat count-ups, and wheel confetti. All gated on
       prefers-reduced-motion via the .motion-ok flag JS adds.
       ============================================================ */
    
    /* Reveal-on-scroll: hidden only when JS is active AND motion is OK. */
    .motion-ok [data-reveal] {
      opacity: 0;
      translate: 0 24px;
      transition: opacity 0.6s var(--ease-smooth), translate 0.6s var(--ease-smooth);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, translate;
    }
    
    .motion-ok [data-reveal].is-revealed {
      opacity: 1;
      translate: 0 0;
    }
    
    /* Stagger children of a revealed group (grids, card rows) */
    .motion-ok [data-reveal-group].is-revealed > * {
      animation: revealPop 0.6s var(--ease-smooth) both;
    }
    .motion-ok [data-reveal-group].is-revealed > :nth-child(1) { animation-delay: 0.05s; }
    .motion-ok [data-reveal-group].is-revealed > :nth-child(2) { animation-delay: 0.12s; }
    .motion-ok [data-reveal-group].is-revealed > :nth-child(3) { animation-delay: 0.19s; }
    .motion-ok [data-reveal-group].is-revealed > :nth-child(4) { animation-delay: 0.26s; }
    .motion-ok [data-reveal-group].is-revealed > :nth-child(5) { animation-delay: 0.33s; }
    .motion-ok [data-reveal-group].is-revealed > :nth-child(6) { animation-delay: 0.40s; }
    
    /* Pre-reveal state for grouped children */
    .motion-ok [data-reveal-group] > * { opacity: 0; }
    .motion-ok [data-reveal-group].is-revealed > * { opacity: 1; }
    
    @keyframes revealPop {
      from { opacity: 0; translate: 0 22px; scale: 0.98; }
      to   { opacity: 1; translate: 0 0;   scale: 1; }
    }
    
    /* ---------- Confetti (wheel win-moment) ---------- */
    .confetti-piece {
      position: fixed;
      top: -12px;
      width: 10px;
      height: 14px;
      z-index: 9999;
      pointer-events: none;
      border-radius: 2px;
      will-change: transform, opacity;
      animation: confettiFall linear forwards;
    }
    
    @keyframes confettiFall {
      0%   { transform: translateY(-20px) rotate(0deg);   opacity: 1; }
      100% { transform: translateY(102vh) rotate(720deg); opacity: 0.9; }
    }
    
    /* Winner status flourish */
    #status.is-win {
      animation: winPulse 0.6s var(--ease-spring);
    }
    
    @keyframes winPulse {
      0%   { transform: scale(0.8); }
      60%  { transform: scale(1.12); }
      100% { transform: scale(1); }
    }

    /* ============================================================
       STACKING FIX — every parent of a z-index:-1 decorative pseudo
       must create its own stacking context, or the pseudo escapes to
       the root context and paints BEHIND the body's background
       (invisible). isolation:isolate scopes them correctly, so the
       atmosphere layer, hero glow + treats, page-hero glow, and the
       menu/specials watermarks all actually render.
       ============================================================ */
    body,
    .hero,
    .page-hero,
    .menu,
    .specials-section {
      isolation: isolate;
    }
    
    /* ============================================================
       XS-FIRST PASS (320–479px) — ergonomic refinements for the
       smallest screens: more usable width, full-width tap-friendly
       CTAs, compact 2×2 stats, and tighter gallery captions.
       ============================================================ */
    @media (max-width: 479.98px) {
      .container {
        padding-inline: 1rem;
      }
      
      /* CTA buttons: full-width tap targets, centered content */
      .hero-cta .btn,
      .cta-actions .btn,
      .success-actions .btn,
      .form-actions .btn {
        width: 100%;
        max-width: 22rem;
        justify-content: center;
      }
      
      .hero-cta,
      .cta-actions,
      .success-actions {
        flex-direction: column;
        align-items: center;
      }
      
      /* stats read as a compact 2×2 instead of a tall single column */
      .stats-band {
        grid-template-columns: repeat(2, 1fr);
      }
      
      /* gallery tiles are small here — captions stay quiet */
      .gallery-item figcaption {
        font-size: 0.72rem;
        padding: 1.1rem 0.55rem 0.45rem;
      }
    }
