
    :root {
      --c-bg: #FDFBF7;
      --c-dark: #1A1A1A;
      --c-primary: #2B4A3B;
      --c-accent: #EAE4D9;
      --c-gold: #B79358;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    /* On mobile, disable smooth scroll so GSAP pin engages instantly on first swipe */
    @media screen and (max-width: 767px) {
      html {
        scroll-behavior: auto;
      }
    }

    body {
      background: #080f0a;
      color: #e8e0d0;
      font-family: 'Inter', sans-serif;
    }

    /* ── Menu Body Global Background Removed ──────────── */
    /* Allowing natural transparent flow through the grid */

    /* ── Noise ─────────────────────────────────────────────────────── */
    .noise-overlay {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9000;
      opacity: 0.22;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }

    /* ── Loader ─────────────────────────────────────────────────────── */
    .loader {
      position: fixed;
      inset: 0;
      background: var(--c-bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 10000;
    }

    .loader-text {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(2.5rem, 8vw, 5rem);
      color: var(--c-primary);
      letter-spacing: -0.02em;
    }

    .loader-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: var(--c-primary);
    }

    /* ── Navbar ─────────────────────────────────────────────────────── */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 2.25rem 5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 500;
      border-bottom: 1px solid transparent;
      /* Slower, more editorial transition duration (0.8s) */
      transition: 
        padding 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        backdrop-filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    #navbar.is-scrolled {
      background-color: rgba(8, 15, 10, 0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom-color: rgba(183, 147, 88, 0.12);
      padding-top: 1.25rem;
      padding-bottom: 1.25rem;
    }

    .nav-logo {
      font-family: 'Instrument Serif', serif;
      font-size: 1.5rem;
      letter-spacing: -0.01em;
      text-decoration: none;
      flex: 1;
      display: flex;
      align-items: center;
      color: #fff;
      transition: color 0.4s var(--expo);
    }

    .is-scrolled .nav-logo {
      color: rgba(232, 224, 208, 0.9);
    }

    .nav-menu {
      display: flex;
      gap: 2.5rem;
      align-items: center;
      justify-content: center;
      flex: 2;
    }

    .nav-actions {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      justify-content: flex-end;
      flex: 1;
    }

    .nav-link {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.75);
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: currentColor;
      transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-link:hover::before {
      width: 100%;
    }

    .nav-link:hover {
      color: #fff;
    }

    .is-scrolled .nav-link {
      color: rgba(26, 26, 26, 0.6);
    }

    .is-scrolled .nav-link:hover {
      color: var(--c-primary);
    }

    /* Primary CTA in Navbar */
    .nav-cta {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1.4rem;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border-radius: 9999px;
      text-decoration: none;
      border: 1.5px solid rgba(255, 255, 255, 0.35);
      color: #fff;
      transition: all 0.35s var(--expo);
    }

    .nav-cta:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
    }

    .is-scrolled .nav-cta {
      border: 1.5px solid var(--c-primary);
      color: var(--c-primary);
      background: transparent;
    }

    .is-scrolled .nav-cta:hover {
      background: var(--c-primary);
      color: #FDFBF7;
    }

    /* Shimmer beam sweep — for the nav-cta and other premium buttons */
    .s4-beam {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 45%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.15) 55%, transparent 100%);
      transform: translateX(-110%) skewX(-18deg);
      pointer-events: none;
      z-index: 8;
      opacity: 0;
      transition: opacity 0.1s;
    }

    .nav-cta:hover .s4-beam,
    .btn-primary:hover .s4-beam,
    .hero-btn-primary:hover .s4-beam,
    .loc-beam-container:hover .s4-beam {
      opacity: 1;
      animation: s4-shimmer 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes s4-shimmer {
      from { transform: translateX(-110%) skewX(-18deg); }
      to { transform: translateX(220%) skewX(-18deg); }
    }

    .nav-btn:hover .s4-beam,
    .pdf-btn:hover .s4-beam {
      opacity: 1;
      animation: s4-shimmer 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.25rem;
    }

    /* Mobile menu */
    #mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 490;
      background: rgba(6, 11, 7, 0.98);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.4s ease, visibility 0.4s ease, backdrop-filter 0.4s ease;
    }

    #mobile-menu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .mobile-link {
      font-family: 'Instrument Serif', serif;
      font-size: 2.2rem;
      color: var(--c-dark);
      text-decoration: none;
      letter-spacing: -0.01em;
      opacity: 0;
      transform: translateY(20px) scale(0.98);
      transition: opacity 0.4s var(--expo), transform 0.5s var(--expo), color 0.3s ease;
    }
    
    #mobile-menu.open .mobile-link {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    
    /* Elegant sequential stagger for the 4 menu links */
    #mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
    #mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.18s; }
    #mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.26s; }
    #mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.34s; }

    .mobile-link:hover {
      color: var(--c-primary);
    }

    .mobile-close {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--c-dark);
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    
    #mobile-menu.open .mobile-close {
      opacity: 1;
      transition-delay: 0.4s;
    }

    /* ── Hero ────────────────────────────────────────────────────────── */
    /* ── Hero ────────────────────────────────────────────────────────── */
    #hero-pin-wrapper {
      position: relative;
      width: 100%;
    }

    #hero-viewport {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      /* GPU layer promotion — prevents flickering during GSAP pin/unpin */
      will-change: transform;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }
    
    /* Remove white gradient fade from components.css for the dark menu page */
    #hero-viewport::after {
      display: none !important;
    }
    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 2rem;
      pointer-events: none;
    }

    .hero-content > * {
      pointer-events: auto;
    }

    /* ── BASE HERO STRUCTURE ── */
    /* Hero Scroll Indicator */
    .hero-scroll {
      position: absolute;
      bottom: 3rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 20;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.8);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      pointer-events: none;
      opacity: 0;
    }

    .hero-scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
      position: relative;
    }

    #hero-pin-wrapper {
      position: relative;
      width: 100%;
    }

    /* Gradient fade from hero bottom into the dark menu body — stronger and taller */
    #hero-pin-wrapper::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 45vh;
      background: linear-gradient(to top, #080f0a 0%, rgba(8, 15, 10, 0.92) 30%, rgba(8, 15, 10, 0.55) 60%, transparent 100%);
      z-index: 5;
      pointer-events: none;
    }

    /* Bridge element — appears as text exits, bridges hero to cat-nav */
    #hero-bridge {
      position: absolute;
      bottom: 14%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 15;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.85rem;
      opacity: 0;
      pointer-events: none;
    }
    .hero-bridge-label {
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.42em;
      text-transform: uppercase;
      color: rgba(183, 147, 88, 0.6);
    }
    .hero-bridge-line {
      width: 1px;
      height: 56px;
      background: linear-gradient(to bottom, rgba(183, 147, 88, 0.55), transparent);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      /* Deep green to near-black gradient, smooth blend, no washed-out look */
      background: radial-gradient(ellipse at 50% 55%, #08110a 0%, #030504 60%, #010201 100%);
    }

    /* ── CINEMATIC PRODUCT INTEGRATION ── */
    .product-glow {
      position: absolute;
      top: 55%; /* Keep aligned with product center */
      left: 50%; /* Re-centered */
      transform: translate(-50%, -50%);
      width: 45vw;
      height: 45vw;
      max-width: 600px;
      max-height: 600px;
      /* Soft, diffused, low intensity radial glow */
      background: radial-gradient(circle at center, rgba(38, 66, 52, 0.08) 0%, transparent 65%);
      filter: blur(80px);
      pointer-events: none;
      z-index: -1;
    }

    /* Subtle shadow at the base of the product for grounding */
    .product-shadow {
      position: absolute;
      bottom: 20%;
      left: 50%; /* Re-centered */
      transform: translateX(-50%);
      width: 14vw;
      height: 2.5vw;
      max-width: 220px;
      background: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 70%);
      filter: blur(10px);
      z-index: 0;
      pointer-events: none;
    }

    #video-frame {
      position: absolute;
      top: 55%; /* Moved SLIGHTLY DOWN for text readability above */
      left: 50%; /* Kept centered horizontally */
      transform: translate(-50%, -50%);
      width: 25vw; /* Perfectly balanced width, not over-enlarged */
      max-width: 400px;
      aspect-ratio: 9/16;
      z-index: 1;
      overflow: hidden;
      /* Extremely soft feathering, zero visible edges */
      mask-image: radial-gradient(ellipse at center, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.85) 45%, 
        rgba(0, 0, 0, 0.05) 75%, 
        rgba(0, 0, 0, 0) 85%
      );
      -webkit-mask-image: radial-gradient(ellipse at center, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.85) 45%, 
        rgba(0, 0, 0, 0.05) 75%, 
        rgba(0, 0, 0, 0) 85%
      );
      opacity: 0.95;
    }
    
    #video-frame:hover {
      transform: translate(-50%, -50%) !important;
    }

    #seq-canvas {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: blur(10px);
      opacity: 0;
      transform: scale(1.05); /* Slight zoom for entrance */
    }

    #seq-canvas.ready {
      filter: blur(0) contrast(1.1) brightness(1.05); /* Highlight & reflection enhancement */
      opacity: 1;
      transform: scale(1);
      transition: filter 2.5s cubic-bezier(0.16, 1, 0.3, 1), 
                  opacity 2s ease,
                  transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-video-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      /*
        The overlay serves two purposes:
        1. Vignette the cup edges (radial, keeps the cup vivid at center)
        2. Darken the upper zone where the text lives (linear, top-to-mid)
        The two gradients stack multiplicatively — each reinforcing the
        area where it needs to act without fighting the other zone.
      */
      background:
        /* Upper text zone: progressive dark curtain from top */
        linear-gradient(
          to bottom,
          rgba(4, 7, 4, 0.72) 0%,
          rgba(4, 7, 4, 0.55) 18%,
          rgba(4, 7, 4, 0.30) 36%,
          rgba(4, 7, 4, 0.05) 52%,
          transparent 64%
        ),
        /* Radial edge vignette — frames the cup, keeps it cinematic */
        radial-gradient(ellipse at 50% 62%,
          transparent 28%,
          rgba(1, 2, 1, 0.35) 60%,
          rgba(1, 2, 1, 0.90) 100%
        );
    }

    .hero-grain {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 3;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      background-size: 180px 180px;
    }

    .hero-title-sep { display: none; }
    
    .line {
      display: block;
      overflow: visible;
      padding-bottom: 4px;
    }

    .line-inner {
      display: block;
      transform: translateY(115%);
      will-change: transform;
      opacity: 0;
    }

    /* ── HERO KICKER: editorial label with flanking lines ─────────────
       The classic hospitality label: no bullet, just measured lines
       flanking the brand descriptor. Gold — restrained at 0.72 alpha.
    ─────────────────────────────────────────────────────────────────── */
    .hero-kicker {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.52em;
      text-transform: uppercase;
      color: rgba(183, 147, 88, 0.80);
      margin-bottom: 3rem;
      opacity: 0;
      transform: translateY(10px);
    }

    /* Flanking lines instead of a bullet */
    .kicker-line {
      width: 28px;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(183, 147, 88, 0.55));
      flex-shrink: 0;
    }

    .kicker-line:last-of-type,
    .kicker-line + .kicker-line {
      background: linear-gradient(to left, transparent, rgba(183, 147, 88, 0.55));
    }

    /* ── SHIMMER BEAM BUTTON (conic-gradient advanced) ──────────────── */
    .loc-beam-container {
      position: relative;
      display: inline-flex;
      border-radius: 9999px;
      overflow: hidden;
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 10;
    }

    .loc-beam-container:hover {
      transform: scale(1.03) translateY(-2px);
    }

    .loc-beam-border {
      position: absolute;
      width: 400%;
      height: 400%;
      top: -150%;
      left: -150%;
      background: conic-gradient(from 0deg at 50% 50%, transparent 20%, rgba(183,147,88,0.3) 45%, rgba(255,255,255,0.85) 60%, rgba(183,147,88,0.3) 75%, transparent 100%);
      filter: blur(1.5px);
      opacity: 1;
      animation: rotate-beam 4s linear infinite;
      z-index: 0;
      pointer-events: none;
    }

    @keyframes rotate-beam {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* ── HERO TITLE ────────────────────────────────────────────────────
       Scale: controlled editorial range. Not max at 8.5rem — that reads
       as oversized at mid-viewport. 7rem cap gives the composition more
       air and authority.
       Line-height: 0.96 instead of 0.95 — opens the counter shapes.
    ─────────────────────────────────────────────────────────────────── */
    .hero-title {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(3.8rem, 9.5vw, 8.2rem);
      line-height: 0.96;
      letter-spacing: -0.025em;
      color: rgba(244, 242, 237, 0.97);
      margin-bottom: 0;
    }

    .hero-title .line-inner {
      display: inline-block;
      opacity: 0;
      transform: translateY(10px);
      will-change: transform, opacity;
    }

    /* em: warm amber-gold lifted to high-value cream-gold so it reads
       above the warm image tones. Golden but bright — not orange-brown. */
    .hero-title em {
      font-style: italic;
      color: rgba(230, 210, 160, 0.96);
      font-weight: 400;
      -webkit-text-fill-color: rgba(230, 210, 160, 0.96);
    }

    /* ── HERO SUBTITLE ─────────────────────────────────────────────────
       Raised from 0.52 → 0.72 opacity: still clearly subordinate to
       the headline but no longer invisible.
       Letter-spacing slightly increased: thinner weight reads better
       with more air between letters.
    ─────────────────────────────────────────────────────────────────── */
    .hero-sub {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(210, 202, 185, 0.80);
      letter-spacing: 0.025em;
      max-width: 460px;
      line-height: 1.75;
      margin: 2.25rem auto 3.5rem;
      opacity: 0;
      transform: translateY(10px);
    }

    /* ── CTA WRAP ───────────────────────────────────────────────────────
       Row layout. Generous gap. Aligned center under the text block.
    ─────────────────────────────────────────────────────────────────── */
    .hero-cta-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      opacity: 0;
      transform: translateY(10px);
    }

    /* ── PRIMARY CTA ────────────────────────────────────────────────────
       Dark charcoal surface + gold border.
       This reads as an object of quality: solid, dark, warm-edged.
       Not the aggressive green — that color is for brand, not buttons.
       The border is a refined gold line — brand DNA without being loud.
       Inset top highlight: simulates a physical premium surface catch.
    ─────────────────────────────────────────────────────────────────── */
    .hero-btn-primary {
      background: rgba(18, 22, 18, 0.95);
      color: rgba(228, 221, 208, 0.98);
      padding: 1.15rem 2.9rem;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.625rem;
      border-radius: 99px;
      transition: all 0.42s var(--expo);
      position: relative;
      overflow: hidden;
      /* Inset shadow for tactile depth */
      box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
      width: 100%;
      height: 100%;
    }

    .hero-btn-primary:active {
      transform: scale(0.98);
    }

    /* ── SECONDARY CTA ──────────────────────────────────────────────────
       Pure ghost: no border, no fill. Just type + underline.
       In luxury hospitality hierarchy, the secondary choice should be
       understated — it earns attention through restraint.
       An animated center-grow underline signals interactivity tastefully.
    ─────────────────────────────────────────────────────────────────── */
    .hero-btn-secondary {
      background: transparent;
      color: rgba(210, 202, 185, 0.50);
      padding: 1.05rem 0.25rem;
      font-size: 0.60rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      border-radius: 0;
      position: relative;
      transition: color 0.38s var(--expo);
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
    }

    /* Center-growing underline — the tactile signal */
    .hero-btn-secondary::after {
      content: '';
      position: absolute;
      bottom: 0.65rem;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background: rgba(183, 147, 88, 0.55);
      transition: width 0.45s var(--expo);
    }

    .hero-btn-secondary:hover {
      color: rgba(228, 221, 208, 0.85);
    }

    .hero-btn-secondary:hover::after {
      width: 100%;
    }
    /* ── BASE HERO STRUCTURE ── */

    /* ── Editorial Menu Layout ───────────────────── */
    .menu-main-wrapper {
      max-width: 1200px;
      margin: -6vh auto 0;
      display: block;
      padding: 0 32px;
      position: relative;
      z-index: 20;
    }

    /* ── Cat-nav entrance animation: plays when pill docks below navbar ── */
    @keyframes cat-nav-inner-reveal {
      from {
        opacity: 0;
        transform: translateY(-10px) scaleX(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scaleX(1);
      }
    }

    /* ── Category Nav wrapper — sits in normal flow, always transparent ── */
    #cat-nav {
      width: 100%;
      background: transparent;
      padding: 0.5rem 0;
      margin-bottom: 4rem;
      /* Not sticky — fixed when pinned via .is-pinned class below */
      position: relative;
      z-index: 400;
      display: flex;
      justify-content: center;
      pointer-events: none;
    }

    /* ── PINNED: truly fixed below the navbar ──────────────────────────
       overflow-x:hidden on html/body breaks position:sticky, so we use
       position:fixed instead. The wrapper becomes full-viewport-width,
       the pill (.cat-nav-inner) stays centered inside it.
    ───────────────────────────────────────────────────────────────── */
    #cat-nav.is-pinned {
      position: fixed;
      top: 72px;          /* height of scrolled navbar */
      left: 0;
      width: 100vw;
      padding: 0.6rem 0;
      background: transparent;
    }

    /* Pill: only the inner track shows the dark background */
    #cat-nav.is-pinned .cat-nav-inner {
      background: rgba(6, 11, 7, 0.92);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-radius: 9999px;
      box-shadow:
        0 1px 0 rgba(183, 147, 88, 0.08),
        0 10px 28px -4px rgba(0, 0, 0, 0.50),
        0 4px 10px -2px rgba(0, 0, 0, 0.30);
      /* Entrance animation: slide-down + fade + scale-in */
      animation: cat-nav-inner-reveal 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    /* Inner track — the pill container for buttons */
    .cat-nav-inner {
      display: flex;
      flex-direction: row;
      justify-content: center;
      flex-wrap: nowrap;
      width: fit-content;       /* pill is exactly as wide as the buttons */
      gap: 0;
      padding: 0.85rem 2rem;
      margin: 0;
      position: relative;
      pointer-events: auto;
      transition:
        background 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        border-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Gold axis line removed */
    .cat-nav-inner::after {
      display: none;
    }

    .cat-btn {
      background: transparent;
      border: none;
      color: rgba(232, 224, 208, 0.35);
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      text-align: center;
      /* Breathing padding — generous horizontal, measured vertical */
      padding: 0.55rem 1.75rem;
      cursor: pointer;
      position: relative;
      overflow: visible;
      transition:
        color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        letter-spacing 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Hover state: label brightens, tracking opens slightly */
    .cat-btn:hover {
      color: rgba(232, 224, 208, 0.70);
      letter-spacing: 0.30em;
    }

    /* Active state treatment:
       1. Full gold color — clear hierarchy
       2. Slightly wider tracking — editorial weight
       3. Gold underline — grows from center (premium) */
    .cat-btn.active {
      color: rgba(183, 147, 88, 0.95);
      letter-spacing: 0.30em;
    }

    /* Underline: grows from center toward edges (more editorial than left-to-right) */
    .cat-btn::before {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(183, 147, 88, 0.9) 20%,
        rgba(183, 147, 88, 1.0) 50%,
        rgba(183, 147, 88, 0.9) 80%,
        transparent
      );
      transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cat-btn.active::before {
      width: calc(100% - 3.5rem); /* matches the horizontal padding */
    }

    .cat-btn:hover::before {
      width: calc(60% - 1.75rem);
    }

    /* Active indicator dot above label — gold pip for premium clarity */
    .cat-btn::after {
      content: '';
      position: absolute;
      top: 0px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(183, 147, 88, 0.85);
      opacity: 0;
      transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cat-btn.active::after {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }



    /* ── HERO TEXT SCRIM ────────────────────────────────────────────────
       A dedicated backing layer sits directly behind the hero content
       block. It provides the dark substrate that the text strictly needs
       without touching the cup below.
       Technique: feathered vertical gradient, centered upper-half only.
       z-index 9 (below text at z 10, above cup at z 1).
    ─────────────────────────────────────────────────────────────────── */
    .hero-text-scrim {
      position: absolute;
      inset: 0;
      z-index: 9;
      pointer-events: none;
      background:
        radial-gradient(
          ellipse 80% 65% at 50% 38%,
          rgba(4, 8, 5, 0.48) 0%,
          rgba(4, 8, 5, 0.22) 48%,
          transparent 72%
        );
    }

    /* ─────────────────────────────────────────────────────────────────
       The kicker-line inside the hero uses the cardápio dark bg token,
       not the homepage light token — gradient goes dark side first.
    ───────────────────────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .menu-main-wrapper {
        margin-top: 0;
        padding: 0 24px;
      }

      #cat-nav {
        position: sticky;
        top: 72px;
        margin-bottom: 3rem;
      }

      #cat-nav.is-pinned .cat-nav-inner {
        border-radius: 9999px;
        padding: 0.65rem 1.5rem;
      }

      .cat-nav-inner {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        padding: 0.75rem 1.5rem;
        margin: 0;
      }

      .cat-nav-inner::-webkit-scrollbar {
        display: none;
      }

      .cat-nav-inner::after {
        display: none;
      }

      .cat-btn {
        white-space: nowrap;
        font-size: 0.65rem;
        padding: 0.45rem 1.25rem;
      }

      .menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }

    /* ── Menu Sections ───────────────────────────────────────────────── */
    #menu-body {
      position: relative;
      flex-grow: 1;
      padding-top: 0;
      padding-bottom: 2rem;
      min-width: 0; /* Prevents flexbox overflow */
    }

    /* Subtle noise texture over the whole menu body */
    #menu-body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    }

    .menu-section {
      padding: 0 0 2rem 0;
      border-bottom: none;
      display: none;
      opacity: 0;
      transition: opacity 0.35s ease;
      position: relative;
      z-index: 1;
    }

    .menu-section.is-active {
      display: block;
      opacity: 1;
    }

    .menu-section:last-of-type {
      border-bottom: none;
    }

    .menu-container {
      max-width: none;
      margin: 0;
      padding: 0;
    }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: 2rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid rgba(183, 147, 88, 0.15);
    }

    .section-kicker {
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(183, 147, 88, 0.65);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      letter-spacing: -0.02em;
      line-height: 1;
      color: #e8e0d0;
    }

    .section-title em {
      font-style: italic;
      color: rgba(183, 147, 88, 0.85);
    }

    .section-count {
      font-size: 0.48rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(232, 224, 208, 0.2);
      white-space: nowrap;
    }

    /* Menu item grid — 2 columns on desktop */
    .menu-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 5rem;
      row-gap: 2rem;
    }

    .menu-item {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: start;
      gap: 0.25rem 1rem;
      padding: 0 0 1.25rem;
      margin-bottom: 1.25rem;
      border-bottom: 1px solid rgba(183, 147, 88, 0.05);
      cursor: default;
    }

    .menu-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    
    /* Desktop (2 columns): If the second-to-last item is on the left (odd), it forms the last row alongside the last item, so remove its border too. */
    @media (min-width: 1025px) {
      .menu-grid .menu-item:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
      }
    }

    /* Dotted fill line gracefully removed */
    .menu-item .item-dots {
      display: none;
    }

    .menu-item:hover .item-name {
      color: rgba(183, 147, 88, 1);
    }

    .menu-item:hover .item-desc {
      color: rgba(232, 224, 208, 0.85);
    }

    .item-body {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      min-width: 0;
    }

    .item-name {
      font-family: 'Instrument Serif', serif;
      font-size: 1.25rem;
      letter-spacing: 0em;
      color: #e8e0d0;
      margin: 0;
      line-height: 1.2;
      /* Perfectly synced premium transition */
      transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      white-space: normal;
    }

    .item-desc {
      font-size: 0.8rem;
      font-weight: 300;
      color: rgba(232, 224, 208, 0.5);
      line-height: 1.4;
      white-space: normal;
      transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .item-badges {
      display: flex;
      gap: 0.3rem;
      flex-wrap: wrap;
      margin-top: 0.3rem;
    }

    .badge {
      font-size: 0.42rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0.15rem 0.5rem;
      border-radius: 9999px;
    }

    .badge-new {
      background: rgba(183, 147, 88, 0.12);
      color: rgba(183, 147, 88, 0.8);
    }

    .badge-veg {
      background: rgba(80, 160, 100, 0.12);
      color: rgba(100, 200, 120, 0.75);
    }

    .badge-hot {
      background: rgba(200, 80, 40, 0.12);
      color: rgba(220, 110, 70, 0.8);
    }

    .item-price {
      font-family: 'Instrument Serif', serif;
      font-size: 1.2rem;
      font-style: italic;
      letter-spacing: 0em;
      color: rgba(183, 147, 88, 0.95);
      white-space: nowrap;
      text-align: right;
      padding-right: 0.35rem; /* Prevent italic font bounding box cutoff */
      line-height: 1.1;
    }

    .item-price-sub {
      font-family: 'Inter', sans-serif;
      font-size: 0.48rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      color: rgba(232, 224, 208, 0.25);
      text-transform: uppercase;
      text-align: right;
      margin-top: 0.05rem;
    }

    /* Dividers */
    .cat-divider {
      height: 1px;
      margin: 0;
      background: linear-gradient(to right, transparent, rgba(183, 147, 88, 0.1) 30%, rgba(183, 147, 88, 0.1) 70%, transparent);
    }

    @media (max-width: 860px) {
      .menu-grid {
        grid-template-columns: 1fr;
      }
      .menu-item:nth-last-child(2):nth-child(odd) {
        border-bottom: 1px solid rgba(183, 147, 88, 0.07);
      }
      .menu-item:last-child {
        border-bottom: none;
      }
    }

    /* ── PDF Section ─────────────────────────────────────────────────── */
    #pdf-section {
      padding: 4rem 2rem;
      text-align: center;
      background: linear-gradient(160deg, #0c1710 0%, #080f0a 100%);
      border-top: none; /* Removed blank line/border */
      position: relative;
      overflow: hidden;
    }

    #pdf-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(183, 147, 88, 0.04) 1px, transparent 1px);
      background-size: 36px 36px;
      pointer-events: none;
      opacity: 1;
    }

    .pdf-label {
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(183, 147, 88, 0.5);
      margin-bottom: 1.25rem;
    }

    .pdf-heading {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(2rem, 4.5vw, 3.5rem);
      letter-spacing: -0.03em;
      line-height: 1;
      color: #e8e0d0;
      margin-bottom: 0.75rem;
    }

    .pdf-heading em {
      font-style: italic;
      color: rgba(183, 147, 88, 0.8);
    }

    .pdf-sub {
      font-size: 0.85rem;
      font-weight: 300;
      color: rgba(232, 224, 208, 0.35);
      margin-bottom: 2.5rem;
    }

    .pdf-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem 2.5rem;
      background: transparent;
      border: 1px solid rgba(183, 147, 88, 0.4);
      color: rgba(183, 147, 88, 0.9);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 9999px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .pdf-btn:hover {
      background: rgba(183, 147, 88, 0.1);
      border-color: rgba(183, 147, 88, 0.7);
      transform: translateY(-2px);
    }

    .pdf-btn svg {
      flex-shrink: 0;
    }

    /* ── Footer ──────────────────────────────────────────────────────── */
    footer {
      padding: 3.5rem 4rem 3rem;
      border-top: 1px solid rgba(183, 147, 88, 0.1);
      background: #080f0a;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .footer-logo {
      font-family: 'Instrument Serif', serif;
      font-size: 1.6rem;
      letter-spacing: -0.01em;
      color: rgba(232, 224, 208, 0.8);
      text-decoration: none;
    }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .footer-link {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: rgba(183, 147, 88, 0.08);
      border: 1px solid rgba(183, 147, 88, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(183, 147, 88, 0.6);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-link:hover {
      background: rgba(183, 147, 88, 0.15);
      color: rgba(183, 147, 88, 0.9);
      transform: translateY(-2px);
    }

    .footer-copy {
      font-size: 0.55rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(232, 224, 208, 0.2);
    }

    /* ── Reveal animations ───────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(15px);
      transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }


    /* ════════════════════════════════════════════════════════════════════════
       MOBILE REDESIGN — Giardini Cardápio
       Philosophy: "Luxury in your hand" — every element composed for the thumb.
       Three clear breakpoints:
         > 1024px  — desktop (untouched)
           1024px  — tablet/small laptop adjustments
            767px  — smartphone (primary mobile redesign)
            430px  — compact phone fine-tuning
    ════════════════════════════════════════════════════════════════════════ */

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       TABLET (max-width: 1024px)
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    @media (max-width: 1024px) {
      /* Hero */
      .hero-content {
        padding-bottom: 5rem;
        gap: 1.75rem;
      }
      .hero-right { display: none; }


      /* Menu wrapper */
      .menu-main-wrapper {
        margin-top: 0;
        padding: 0 24px;
      }

      /* Cat Nav */
      #cat-nav {
        position: sticky;
        top: 68px;
        margin-bottom: 3rem;
      }
      /* is-pinned backgound: handled by .cat-nav-inner pill — no override here */
      .cat-nav-inner {
        justify-content: center;
        flex-wrap: wrap;
        padding: 0.85rem 24px;
        margin: 0;
      }
      .cat-btn {
        white-space: nowrap;
        font-size: 0.65rem;
        padding: 0.5rem 1.25rem;
      }

      /* Menu grid: single column on tablet */
      .menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SMARTPHONE (max-width: 767px)
       The primary mobile experience.
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    @media (max-width: 767px) {

      /* ── M1. NAVBAR ────────────────────────────────────────────
         Clean three-zone bar: logo left, CTA pill right,
         hamburger further right. No cramped text links.
         Height locked at 60px via padding.
      ────────────────────────────────────────────────────────── */
      #navbar {
        padding: 1rem 1.25rem;
        background-color: #08110a !important; /* solid green */
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: 1px solid rgba(183, 147, 88, 0.08);
      }

      /* Remove desktop padding transitions — not needed on mobile */
      #navbar.is-scrolled {
        padding-top: 1rem;
        padding-bottom: 1rem;
        background-color: #08110a !important; /* solid green */
      }

      /* Logo: slightly smaller but still authoritative */
      #navbar .nav-logo {
        font-size: 1.3rem;
        flex: unset;
        animation: none;
        text-shadow: none;
      }
      
      /* Mantém logo e menu hamburguer na cor sólida branca mesmo ao rolar a página */
      #navbar .nav-logo,
      #navbar.is-scrolled .nav-logo,
      #navbar .nav-hamburger,
      #navbar.is-scrolled .nav-hamburger {
        color: #ffffff !important;
      }

      /* Hide desktop center nav — hamburger takes over */
      .nav-menu { display: none; }

      /* Actions: only hamburger on mobile (CTA hidden to reduce noise) */
      .nav-actions {
        gap: 0.85rem;
        flex: unset;
      }

      /* Hide the "Reservar" CTA from navbar on mobile
         (there is a CTA in hero and a WhatsApp in footer) */
      .nav-cta { display: none; }

      /* Hamburger: elegante, minimalista e sem bordas pesadas */
      .nav-hamburger {
        display: flex;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: flex-end; /* Aligns icon closely to the right edge */
        background: transparent;
        border: none;
        color: rgba(236, 230, 218, 0.95);
        outline: none;
        cursor: pointer;
      }

      /* ── M2. MOBILE MENU (fullscreen overlay) ──────────────────
         Full screen takeover with larger serif links
      ────────────────────────────────────────────────────────── */
      #mobile-menu {
        background: #060b07;
        gap: 2rem;
        padding: 2rem;
      }
      .mobile-link {
        font-size: 2.6rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
      }
      .mobile-close {
        top: 1.25rem;
        right: 1.25rem;
        font-size: 1.4rem;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
      }


      /* ════════════════════════════════════════════════════════
         M3 — HERO MOBILE: «Cartaz Central Premium»
         ────────────────────────────────────────────────────────
         Conceito: Composição vertical centralizada com o vídeo
         posicionado de forma proeminente abaixo do texto.

         → Layout: Kicker → Título → Sep → Sub → CTA → Video
         → Video grande e visível, centralizado abaixo dos CTAs
         → Sem zonas mortas ou overlap confuso
         → "Descubra" fecha a seção com elegância
         ════════════════════════════════════════════════════════ */

      /* ── Viewport: altura total da tela ── */
      #hero-viewport {
        height: 100svh;
        min-height: 640px;
        max-height: 960px;
      }

      /* ── ZONA DE CONTEÚDO: ancorada na zona superior ── */
      .hero-content {
        justify-content: flex-start;  /* Texto na metade superior */
        align-items: center;          /* CENTRALIZA no eixo X */
        text-align: center;
        padding-top: 5.5rem;          /* Abaixo da navbar fixa */
        padding-bottom: 0;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        gap: 0;
      }

      /* ── Kicker: simétrico, centralizado ── */
      .hero-kicker {
        font-size: 0.44rem;
        letter-spacing: 0.45em;
        gap: 0.8rem;
        margin-bottom: 1rem;
        justify-content: center;
        color: rgba(183, 147, 88, 0.70);
        opacity: 1;
      }
      /* Restaura a simetria (as duas linhas aparecem) */
      .kicker-line:last-of-type { display: block; }

      /* ── Headline: dramático, centralizado ── */
      .hero-title {
        font-size: clamp(3rem, 12vw, 4.5rem);
        line-height: 0.94;
        letter-spacing: -0.03em;
        text-align: center;
        margin-bottom: 0;
      }

      /* Divisória central entre título e subtítulo */
      .hero-title-sep {
        display: block !important;
        width: 32px;
        height: 1px;
        background: rgba(183, 147, 88, 0.45);
        margin: 1.2rem auto;
      }

      /* ── Subtítulo: conciso, centrado ── */
      .hero-sub {
        font-size: 0.78rem;
        font-weight: 300;
        line-height: 1.65;
        max-width: 260px;
        text-align: center;
        margin: 0 auto 1.6rem auto;
        color: rgba(210, 202, 185, 0.75);
        letter-spacing: 0.015em;
      }

      /* ── CTA: premium, centralizado ── */
      .hero-cta-wrap {
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        gap: 0.65rem !important;
        width: 100%;
        margin-bottom: 0;             /* O vídeo fica logo abaixo */
      }

      .loc-beam-container {
        width: auto;
        max-width: none;
        flex-shrink: 0;
      }

      .hero-btn-primary {
        padding: 0.95rem 2.6rem;
        font-size: 0.56rem;
        letter-spacing: 0.25em;
        justify-content: center;
        white-space: nowrap;
      }

      /* Reservar Mesa abaixo do Ver Cardápio */
      .hero-btn-secondary {
        display: inline-flex !important;
        font-size: 0.55rem !important;
      }

      /* ── VIDEO FRAME: grande, proeminente, abaixo do texto ──
         NOTA: GSAP controla o inline transform, mantendo translate(-50%, -50%)
         do CSS base. Por isso, o top precisa ser alto o suficiente
         para compensar o -50% da altura do elemento (≈346px em 390px width).
         Com top:95%, centro do elemento fica em ~95%*h - 50%*elemH,
         posicionando o topo visível do copo abaixo dos CTAs.
      ── */
      #video-frame {
        width: 100vw;                /* Largura total */
        max-width: 460px;
        top: 105%;                   /* Well below the CTA buttons */
        left: 50%;
        /* transform é controlado por GSAP (inline), não override aqui */
        opacity: 0.90;              /* Bem visível */
        will-change: auto;
        aspect-ratio: 9/16;
        /* Máscara: dissolve na parte superior (topo do copo visível) e inferior */
        mask-image: radial-gradient(ellipse 90% 55% at 50% 20%,
          rgba(0,0,0,1)    0%,
          rgba(0,0,0,0.92) 20%,
          rgba(0,0,0,0.55) 40%,
          rgba(0,0,0,0.10) 60%,
          rgba(0,0,0,0)    80%
        );
        -webkit-mask-image: radial-gradient(ellipse 90% 55% at 50% 20%,
          rgba(0,0,0,1)    0%,
          rgba(0,0,0,0.92) 20%,
          rgba(0,0,0,0.55) 40%,
          rgba(0,0,0,0.10) 60%,
          rgba(0,0,0,0)    80%
        );
      }

      /* Hover fix for mobile — base CSS has translate(-50%, -50%) on hover */
      #video-frame:hover {
        transform: translate(-50%, -50%) !important;
      }

      /* Glow acompanhando o vídeo */
      .product-glow {
        top: 105%;
        left: 50%;
        width: 120vw;
        max-width: 500px;
        height: 120vw;
        max-height: 500px;
        background: radial-gradient(circle at center,
          rgba(38, 66, 52, 0.14) 0%,
          rgba(183, 147, 88, 0.04) 45%,
          transparent 70%
        );
        filter: blur(60px);
      }

      /* ── SCRIM INFERIOR: ponte tonal até a próxima seção ── */
      #hero-pin-wrapper::after {
        height: 40vh;
        background: linear-gradient(
          to top,
          #080f0a            0%,
          rgba(8,15,10,0.95) 15%,
          rgba(8,15,10,0.60) 45%,
          rgba(8,15,10,0.15) 75%,
          transparent        100%
        );
      }

      /* ── SCRIM SUPERIOR: proteção de contraste p/ a navbar ── */
      #hero-viewport::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 140px;
        background: linear-gradient(
          to bottom,
          rgba(5, 9, 6, 0.88) 0%,
          rgba(5, 9, 6, 0.45) 45%,
          transparent         100%
        );
        z-index: 4;
        pointer-events: none;
      }

      /* ── "DESCUBRA": indicador de scroll na base ── */
      .hero-scroll {
        display: flex;
        position: absolute;
        bottom: 1.8rem;
        left: 50%;
        right: auto;
        opacity: 1 !important;
        color: rgba(255, 255, 255, 0.32);
        font-size: 0.38rem;
        letter-spacing: 0.42em;
        gap: 0.4rem;
        transform: translateX(-50%);
        animation: none;
      }

      /* Linha delicada */
      .hero-scroll-line {
        height: 20px;
        background: linear-gradient(
          to bottom,
          rgba(183, 147, 88, 0.40),
          transparent
        );
      }

      /* ── Ocultos no mobile ── */
      #hero-bridge { display: none; }
      #lateral-vignette { display: none; }
      #custom-cursor, #custom-cursor-ring { display: none; }







      /* ── M4. MENU WRAPPER & BODY ────────────────────────────────
         Clean horizontal margins, no overlap.
      ────────────────────────────────────────────────────────── */
      .menu-main-wrapper {
        margin-top: 0;
        padding: 0 20px;
      }

      #menu-body {
        padding-bottom: 4rem;
      }

      /* Decorative vertical margin line — remove on mobile */
      #menu-body::after { display: none; }

      /* ── M5. CATEGORY NAV ───────────────────────────────────────
         Horizontal scroll rail. Fine bottom border. No box.
         Sticky under navbar with 60px offset.
         Larger tap targets (min 44px height per rail).
      ────────────────────────────────────────────────────────── */
      #cat-nav {
        top: 58px; /* Match the mobile navbar height */
        margin-bottom: 2rem;
        background: transparent;
      }

      /* is-pinned background: handled by .cat-nav-inner pill — no override here */

      .cat-nav-inner {
        padding: 0.8rem 20px;
        margin: 0 -20px;
        gap: 0.25rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        /* Fade out edges for premium scroll hint */
        mask-image: linear-gradient(
          to right,
          transparent 0%,
          black 6%,
          black 94%,
          transparent 100%
        );
        -webkit-mask-image: linear-gradient(
          to right,
          transparent 0%,
          black 6%,
          black 94%,
          transparent 100%
        );
      }
      .cat-nav-inner::-webkit-scrollbar { display: none; }

      .cat-btn {
        padding: 0.75rem 1.4rem;
        font-size: 0.65rem;
        letter-spacing: 0.25em;
        white-space: nowrap;
        min-height: 46px;   /* Finger-friendly tap target */
        display: inline-flex;
        align-items: center;
      }

      /* Active underline shorter on mobile */
      .cat-btn.active::before {
        width: calc(100% - 2.8rem);
      }

      /* ── M6. MENU SECTIONS ──────────────────────────────────────
         Single column. Generous but controlled vertical space.
      ────────────────────────────────────────────────────────── */
      .menu-section {
        padding: 0 0 1.5rem 0;
      }

      .menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
        row-gap: 0;
      }

      /* ── M7. SECTION HEADER ─────────────────────────────────────
         Simpler on mobile: kicker + title in a row, no inline count.
         Ghost watermark hidden — too heavy on mobile.
      ────────────────────────────────────────────────────────── */
      .section-header {
        flex-direction: row;    /* Keep kicker and title same row */
        align-items: flex-end;
        justify-content: flex-start;
        gap: 0;
        flex-wrap: wrap;
        margin-bottom: 2rem;
        padding-bottom: 1.2rem;
        border-bottom: 1px solid rgba(183, 147, 88, 0.12); /* Clean subtle border */
      }

      .section-header > div { flex: 1; }

      /* Ghost watermark: hidden on mobile — visual noise */
      .section-watermark { display: none; }

      /* Count: hidden on mobile */
      .section-count { display: none; }

      .section-kicker {
        font-size: 0.48rem;
        letter-spacing: 0.38em;
        margin-bottom: 0.4rem;
        /* Disable kicker expand animation — starts with opacity 0 and
           the animation is nice desktop only; on mobile just show it */
        animation: kickerExpand 0.7s var(--expo) 0.1s both;
      }
      .section-header:not(.is-visible) .section-kicker {
        animation: none;
        opacity: 1; /* Always visible on mobile, no delay */
      }
      .section-header.is-visible .section-kicker {
        animation: kickerExpand 0.7s var(--expo) 0.1s both;
      }

      .section-title {
        font-size: clamp(1.4rem, 5.5vw, 1.8rem);
        line-height: 1.05;
        letter-spacing: -0.025em;
      }

      /* ── M8. MENU ITEMS ─────────────────────────────────────────
         Clean two-column grid: name+desc left, price right.
         Better vertical rhythm with consistent bottom border.
         Protected right edge so italic prices don't clip.
      ────────────────────────────────────────────────────────── */
      .menu-item {
        /* Redefine grid specifically for mobile to balance left/right strongly */
        grid-template-columns: 1fr auto;
        gap: 0.5rem 1.5rem; /* Wider horizontal gap pushes price safely */
        padding: 1.5rem 0.25rem 1.5rem 0; /* Right padding protects the edge */
        margin-bottom: 0;
        border-bottom: 1px solid rgba(183, 147, 88, 0.08);
        border-radius: 0;
        align-items: flex-start;
      }

      /* Remove last-child border — cleaner end of section */
      .menu-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }

      /* On touch: no hover decorations — clean tap */
      .menu-item:hover .item-name {
        transform: none;
      }

      /* Item name: comfortable reading size */
      .item-name {
        font-size: 1.15rem;
        line-height: 1.25;
        letter-spacing: -0.015em;
      }
      /* Item description: tighter */
      .item-desc {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-top: 0.25rem;
        color: rgba(210, 202, 185, 0.65);
      }

      /* Price: clear, readable, clip-safe */
      .item-price {
        font-size: 1.15rem;
        padding-top: 0; /* Perfect alignment with title baseline */
        padding-right: 0.15rem; /* Buffer to prevent right-leaning italics from trimming */
      }

      /* Badge: visible and compact */
      .item-badges {
        margin-top: 0.35rem;
        gap: 0.25rem;
      }
      .badge {
        font-size: 0.38rem;
        padding: 0.1rem 0.45rem;
      }

      /* ── M9. PDF SECTION ────────────────────────────────────────
         Full-width centered block.
         Comfortable padding, perfectly scaled for mobile readability.
      ────────────────────────────────────────────────────────── */
      #pdf-section {
        padding: 5rem 1.5rem 6rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .pdf-label {
        font-size: 0.48rem;
        letter-spacing: 0.40em;
        margin-bottom: 1.5rem;
        gap: 0.8rem;
      }
      .pdf-label::before,
      .pdf-label::after {
        width: 20px;
      }

      .pdf-heading {
        font-size: clamp(1.65rem, 7.5vw, 2.2rem);
        line-height: 1.05;
        letter-spacing: -0.035em;
        margin-bottom: 1.25rem;
      }

      .pdf-sub {
        font-size: 0.82rem;
        line-height: 1.6;
        margin-bottom: 2.75rem;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        color: rgba(210, 202, 185, 0.75);
      }

      /* PDF button: elegant pill shape, not stretched 100% horizontally */
      .pdf-btn {
        width: auto;
        display: inline-flex;
        justify-content: center;
        padding: 1rem 3rem;
        font-size: 0.6rem;
        letter-spacing: 0.25em;
      }

      /* ── M10. FOOTER ────────────────────────────────────────────
         Stacked: logo → social icons → copyright.
         Centered alignment. Generous padding to close page softly.
      ────────────────────────────────────────────────────────── */
      footer {
        padding: 3.5rem 1.5rem 3.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.75rem;
        border-top: 1px solid rgba(183, 147, 88, 0.08); /* Finer border */
      }

      .footer-logo {
        font-size: 1.6rem;
        margin-bottom: 0.5rem; /* Breaks rhythm nicely before icons */
      }

      .footer-links {
        gap: 1.25rem;
      }

      .footer-link {
        width: 3rem;  /* Larger tap target */
        height: 3rem;
      }

      .footer-copy {
        font-size: 0.52rem;
        letter-spacing: 0.15em;
        color: rgba(228, 221, 208, 0.25);
        margin-top: 0.5rem;
      }

      /* ── M11. BODY TEXTURE & GLOW OVERRIDES ─────────────────────
         Reduce grain & atmospheric glows on mobile to prioritize
         text clarity and absolute contrast.
      ────────────────────────────────────────────────────────── */
      body::before {
        opacity: 0.35; /* Reduce dot-grid density on mobile significantly */
        animation: none; /* Disable moving texture — saves battery */
      }
      
      .ambient-glow {
        opacity: 0.3; /* Ensure gradients don't dilute the dark background locally */
      }

      /* ── M12. REVEAL ANIMATIONS — faster on mobile ──────────────
         Mobile users scroll faster; shorter delay feels snappier.
      ────────────────────────────────────────────────────────── */
      .reveal {
        transform: translateY(12px);
        transition:
          opacity 0.45s var(--expo),
          transform 0.45s var(--expo),
          clip-path 0.48s var(--expo);
      }
      /* Disable stagger delays on mobile — all items appear together */
      .menu-grid .reveal:nth-child(n) { transition-delay: 0s; }
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       COMPACT PHONE (max-width: 430px)
       Fine-tuning for small screens (SE, 12 Mini, etc.)
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    @media (max-width: 430px) {

      /* Título: impactante mesmo no SE */
      .hero-title {
        font-size: clamp(2.8rem, 13vw, 3.8rem);
        line-height: 0.92;
        letter-spacing: -0.03em;
      }

      /* Divisória pós-headline: mesma aparência, margem menor */
      .hero-title-sep {
        margin: 1rem auto;
        width: 28px;
      }

      /* Subtítulo: compacto para telas menores */
      .hero-sub {
        font-size: 0.75rem;
        max-width: 240px;
        margin: 0 auto 1.4rem auto;
        line-height: 1.6;
      }

      /* Hero content: ancorado na zona superior */
      .hero-content {
        padding-top: 5rem;
        padding-bottom: 0;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
      }

      /* CTA: mais compacto no SE */
      .hero-btn-primary {
        padding: 0.9rem 2.4rem;
        font-size: 0.55rem;
        letter-spacing: 0.22em;
      }

      /* Vídeo: ajustado para telas compactas */
      #video-frame {
        width: 95vw;
        max-width: 380px;
        top: 98%;
      }

      .product-glow {
        top: 98%;
      }

      /* Indicador Descubra */
      .hero-scroll {
        bottom: 1.5rem;
      }




      /* Navbar logo even smaller */
      .nav-logo { font-size: 1.2rem; }

      /* Menu wrapper: tighter horizontal margins */
      .menu-main-wrapper {
        padding: 0 16px;
      }

      /* ── CATEGORY NAV: Premium Horizontal Rail ── */
      #cat-nav {
        top: 58px; /* Safely nested under sticky navbar */
        margin-bottom: 2.5rem;
      }
      
      /* is-pinned background: handled by .cat-nav-inner pill — no override here */

      .cat-nav-inner {
        padding: 0.8rem 24px;   /* Extra touch padding */
        margin: 0 -16px;        /* Bleeds slightly to edges */
        justify-content: flex-start !important; /* Overrides accidental wrapping */
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.5rem;
        /* Cinematic left/right edge fade mask for scrolling hint */
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
      }
      
      .cat-nav-inner::-webkit-scrollbar {
        display: none;
      }
      
      .cat-btn {
        flex-shrink: 0;         /* Prevent text squishing */
        white-space: nowrap;    /* Keep label on one elegant line */
        font-size: 0.65rem;
        padding: 0.6rem 1.4rem;
        color: rgba(228, 221, 208, 0.35); /* Tonal inactive state */
      }
      
      .cat-btn.active {
        color: rgba(183, 147, 88, 1);    /* Dominant contrast */
        letter-spacing: 0.28em;
      }

      /* Item sizes: comfortable minimum */
      .item-name  { font-size: 1.05rem; }
      .item-price { font-size: 1.05rem; }
      .item-desc  { font-size: 0.78rem; }

      /* Section title: tightly clipped */
      .section-title {
        font-size: clamp(1.3rem, 5.5vw, 1.6rem);
      }

      /* Footer: tighter */
      footer {
        padding: 2.5rem 1.25rem 2.5rem;
        gap: 1.25rem;
      }

      /* Mobile menu links: smaller on compact */
      .mobile-link {
        font-size: 2.2rem;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════
       FINAL CREATIVE POLISH
    ═════════════════════════════════════════════════════════════════════ */

    /* ── 1. Dot-grid texture over entire menu body ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
        radial-gradient(circle, rgba(183, 147, 88, 0.06) 1px, transparent 1px);
      background-size: 28px 28px;
      opacity: 0.6;
    }

    /* ── 2. Soft ambient floating orb (animated) removed to prevent light artifact ─── */
    body::after {
      display: none;
    }

    @keyframes ambientFloat {
      0%   { transform: translateX(-50%) translateY(0) scale(1); }
      50%  { transform: translateX(-52%) translateY(-5%) scale(1.05); }
      100% { transform: translateX(-48%) translateY(3%) scale(0.97); }
    }

    /* ── 3. Section header gold shimmer line ─── */
    .section-header::after {
      content: '';
      display: block;
      width: 100%;
      height: 1px;
      position: absolute;
      bottom: -1px;
      left: 0;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(183, 147, 88, 0.4) 30%,
        rgba(183, 147, 88, 0.7) 50%,
        rgba(183, 147, 88, 0.4) 70%,
        transparent 100%);
      background-size: 200% 100%;
      animation: shimmerLine 4s ease-in-out infinite;
    }

    .section-header {
      position: relative;
    }

    @keyframes shimmerLine {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    /* ── 4. Item hover: aesthetic clean look ─── */
    .menu-item {
      position: relative;
    }

    /* Transitions for menu items handled in .item-name and .item-desc */

    /* ── 5. Enhanced reveal animation with stagger ─── */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition:
        opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Auto-stagger for items inside a visible grid */
    .menu-grid .reveal:nth-child(1)  { transition-delay: 0.0s; }
    .menu-grid .reveal:nth-child(2)  { transition-delay: 0.04s; }
    .menu-grid .reveal:nth-child(3)  { transition-delay: 0.08s; }
    .menu-grid .reveal:nth-child(4)  { transition-delay: 0.12s; }
    .menu-grid .reveal:nth-child(5)  { transition-delay: 0.16s; }
    .menu-grid .reveal:nth-child(6)  { transition-delay: 0.20s; }
    .menu-grid .reveal:nth-child(7)  { transition-delay: 0.06s; }
    .menu-grid .reveal:nth-child(8)  { transition-delay: 0.10s; }

    /* ── 6. Cat-nav simple highlight ─── */
    .cat-btn {
      position: relative;
    }

    .cat-btn.active {
      color: #e8e0d0;
    }
    
    .cat-btn:hover {
      color: #fff;
    }

    /* ── 7. Section bottom ambient warm glow removed for a cleaner editorial look ─── */
    .menu-section::after {
      display: none;
    }

    /* Remove the global section divider for the last section to ensure a clean ending */
    .menu-section:last-of-type,
    .menu-section:last-of-type::after {
      border-bottom: none !important;
      background: none !important;
    }

    /* ── 8. Loader dark theme fix ─── */
    .loader {
      background: #080f0a !important;
    }

    .loader-text {
      color: rgba(183, 147, 88, 0.9) !important;
    }

    .loader-bar {
      background: rgba(183, 147, 88, 0.7) !important;
    }

    /* ── 9. PDF section extra atmospheric detail ─── */
    #pdf-section .pdf-heading {
      position: relative;
    }

    #pdf-section .pdf-heading::before {
      content: '—';
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 0.4em;
      color: rgba(183, 147, 88, 0.4);
      margin-bottom: 1.2rem;
      font-weight: 300;
    }

    /* ── 10. Category title entrance line sweep ─── */
    .section-title {
      background: linear-gradient(90deg, #e8e0d0 0%, rgba(183,147,88,0.85) 50%, #e8e0d0 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: titleSweep 6s ease-in-out infinite alternate;
    }

    .section-title em {
      -webkit-text-fill-color: transparent;
    }

    @keyframes titleSweep {
      0%  { background-position: 200% center; }
      100%{ background-position: 0% center; }
    }

    /* ── 11. Nav links dark scroll state ─── */
    .is-scrolled .nav-link {
      color: rgba(232, 224, 208, 0.5);
    }
    .is-scrolled .nav-link:hover {
      color: rgba(183, 147, 88, 0.9);
    }
    .is-scrolled .nav-cta {
      border-color: rgba(183, 147, 88, 0.4);
      color: rgba(183, 147, 88, 0.9);
    }
    .is-scrolled .nav-cta:hover {
      background: rgba(183, 147, 88, 0.1);
      color: rgba(183, 147, 88, 1);
    }

    /* ── 12. Menu section fade-in when tab switches ─── */
    @keyframes sectionFadeIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .menu-section.is-active {
      animation: sectionFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    /* ══════════════════════════════════════════════════════════════════
       FINAL CREATIVE POLISH — Giardini Menu v4
       Textura, movimento, microinterações, atmosfera.
    ══════════════════════════════════════════════════════════════════ */

    /* ── A. Textura linho/papel no menu body ─────────────────────────
       A two-layer grain that simulates a fine printed menu paper.
       Layer 1: macro grain (large cells, very faint)
       Layer 2: micro grain (tight, standard noise)
    ─────────────────────────────────────────────────────────────────── */
    .menu-main-wrapper::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.35' numOctaves='6' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.08'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 512px 512px, 180px 180px;
      mix-blend-mode: overlay;
      opacity: 0.7;
    }

    /* ── B. Orbes de luz âmbar flutuantes ────────────────────────────
       Two slow-drifting radial glow orbs. They move independently
       creating a sense of breathing life in the dark space.
    ─────────────────────────────────────────────────────────────────── */
    .menu-main-wrapper {
      position: relative;
      isolation: isolate;
    }

    @keyframes orbDrift1 {
      0%   { transform: translate(0, 0) scale(1); }
      33%  { transform: translate(4%, -3%) scale(1.06); }
      66%  { transform: translate(-3%, 5%) scale(0.96); }
      100% { transform: translate(0, 0) scale(1); }
    }
    @keyframes orbDrift2 {
      0%   { transform: translate(0, 0) scale(1); }
      33%  { transform: translate(-5%, 4%) scale(1.08); }
      66%  { transform: translate(4%, -2%) scale(0.95); }
      100% { transform: translate(0, 0) scale(1); }
    }

    #menu-orb-1, #menu-orb-2 {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
      filter: blur(90px);
    }
    #menu-orb-1 {
      width: 55vw;
      height: 55vw;
      max-width: 700px;
      max-height: 700px;
      /* Warm amber — top-left:
         gives the sense of indirect warm lighting */
      background: radial-gradient(circle, rgba(183, 147, 88, 0.055) 0%, transparent 70%);
      top: 8%;
      left: -12%;
      animation: orbDrift1 22s ease-in-out infinite;
    }
    #menu-orb-2 {
      width: 50vw;
      height: 50vw;
      max-width: 620px;
      max-height: 620px;
      /* Cool green-dark — bottom-right:
         subtle counterpoint to the amber */
      background: radial-gradient(circle, rgba(43, 74, 59, 0.07) 0%, transparent 70%);
      bottom: 15%;
      right: -8%;
      animation: orbDrift2 28s ease-in-out infinite;
    }

    /* ── C. Hover: indicador de seleção esquerdo ─────────────────────
       A thin gold vertical bar grows from 0 to full height
       on the left edge of each menu-item on hover.
       Reads as a cursor/selection indicator.
    ─────────────────────────────────────────────────────────────────── */
    .menu-item {
      padding-left: 14px;
    }

    .menu-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 4px;
      width: 1.5px;
      height: 0;
      background: linear-gradient(
        to bottom,
        rgba(183, 147, 88, 0.9),
        rgba(183, 147, 88, 0.3)
      );
      border-radius: 1px;
      transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .menu-item:hover::before {
      /* Height matches the approx padding-bottom of the item */
      height: calc(100% - 8px);
    }

    /* On hover, price also gets a very thin gold glow */
    .menu-item:hover .item-price {
      text-shadow: 0 0 18px rgba(183, 147, 88, 0.35);
      color: rgba(183, 147, 88, 1);
      transition: color 0.35s ease, text-shadow 0.35s ease;
    }

    /* Item name gets a very slight lift on hover */
    .menu-item:hover .item-name {
      transform: translateX(2px);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .item-name {
      transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ── D. Section ghost number ──────────────────────────────────────
       The section count ("06 itens") is already in the header.
       We add a large ghost counter behind the header.
       It fades in with the section, very faintly.
    ─────────────────────────────────────────────────────────────────── */
    .section-count {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(3.5rem, 8vw, 7rem);
      font-weight: 400;
      font-style: italic;
      letter-spacing: -0.03em;
      color: rgba(183, 147, 88, 0.048);
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      user-select: none;
      line-height: 1;
      white-space: nowrap;
    }

    /* ── E. Loader: shimmer sweep na barra de progresso ──────────────
       The progress bar has a light beam sweeping across it.
    ─────────────────────────────────────────────────────────────────── */
    .loader-bar {
      position: relative;
      overflow: hidden;
    }

    .loader-bar::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
      );
      animation: loaderShimmer 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

    @keyframes loaderShimmer {
      to { left: 200%; }
    }

    /* Loader tagline */
    .loader-tagline {
      font-size: 0.52rem;
      font-weight: 500;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: rgba(183, 147, 88, 0.35);
      margin-top: 1.8rem;
      animation: loaderTaglinePulse 2.5s ease-in-out infinite;
    }

    @keyframes loaderTaglinePulse {
      0%, 100% { opacity: 0.35; }
      50%       { opacity: 0.65; }
    }

    /* ── F. Tab switch: transição com scale leve ─────────────────────
       When a menu section becomes active, it scales from 0.985
       to 1.0 during the fade-in — gives a sense of depth/emergence.
    ─────────────────────────────────────────────────────────────────── */
    @keyframes sectionFadeIn {
      from {
        opacity: 0;
        transform: translateY(14px) scale(0.985);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* ── G. Footer ambient vinheta superior ─────────────────────────
       A subtle warm fade at the very top of the footer,
       so it emerges gently from the PDF section.
    ─────────────────────────────────────────────────────────────────── */
    footer {
      position: relative;
    }
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(
        to right,
        transparent,
        rgba(183, 147, 88, 0.14) 30%,
        rgba(183, 147, 88, 0.22) 50%,
        rgba(183, 147, 88, 0.14) 70%,
        transparent
      );
    }

    /* The footer logo has a very slow warm shimmer */
    .footer-logo {
      background: linear-gradient(
        90deg,
        rgba(232, 224, 208, 0.80) 0%,
        rgba(183, 147, 88, 0.72) 50%,
        rgba(232, 224, 208, 0.80) 100%
      );
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: footerLogoSweep 8s ease-in-out infinite alternate;
    }
    @keyframes footerLogoSweep {
      from { background-position: 0% center; }
      to   { background-position: 200% center; }
    }

    /* ── H. Cat-nav: pulse sutil no active dot ───────────────────────
       The ::after dot on active cat-btn gets a slow pulse ring.
    ─────────────────────────────────────────────────────────────────── */
    @keyframes dotPulse {
      0%   { box-shadow: 0 0 0 0 rgba(183, 147, 88, 0.45); }
      70%  { box-shadow: 0 0 0 5px rgba(183, 147, 88, 0); }
      100% { box-shadow: 0 0 0 0 rgba(183, 147, 88, 0); }
    }

    .cat-btn.active::after {
      animation: dotPulse 2.2s ease-out infinite;
    }

    /* ── I. Section-header: line expande ao revelar ──────────────────
       The bottom gold line of the section-header expands from
       center outward when the section becomes visible.
    ─────────────────────────────────────────────────────────────────── */
    .section-header::after {
      transition: opacity 0.8s ease;
    }
    .section-header:not(.is-visible)::after {
      opacity: 0;
    }
    .section-header.is-visible::after {
      opacity: 1;
    }

    /* ── J. Scrollbar styling ────────────────────────────────────────
       Dark, refined scrollbar for the whole page.
    ─────────────────────────────────────────────────────────────────── */
    ::-webkit-scrollbar {
      width: 4px;
    }
    ::-webkit-scrollbar-track {
      background: #070c08;
    }
    ::-webkit-scrollbar-thumb {
      background: rgba(183, 147, 88, 0.28);
      border-radius: 2px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: rgba(183, 147, 88, 0.50);
    }

    /* ══════════════════════════════════════════════════════════════════
       GIARDINI MENU — BRAND HARMONIZATION v6
       Reference: hero_premium.html editorial clarity + restraint
       Goal: darker Giardini face — controlled, premium, immersive
    ══════════════════════════════════════════════════════════════════ */

    /* ── 1. BODY FOUNDATION ────────────────────────────────────────────
       Remove the green-dominant base. Use a warmer, more neutral dark
       that reads as "warm charcoal" not "green cave".
       Green is reserved for accent moments only.
    ─────────────────────────────────────────────────────────────────── */
    :root {
      --menu-bg:    #090b09;      /* near-black, barely warm */
      --menu-ink:   #e4ddd0;      /* warm parchment — primary text */
      --menu-dim:   rgba(228, 221, 208, 0.42);  /* secondary text */
      --menu-ghost: rgba(228, 221, 208, 0.18);  /* placeholder / dividers */
      --menu-gold:  #b79358;      /* gold accent — price + active */
      --menu-green: #2B4A3B;      /* brand green — used sparingly */
      --expo: cubic-bezier(0.16, 1, 0.3, 1);
    }

    body {
      background: var(--menu-bg);
      color: var(--menu-ink);
    }

    /* ── 2. BACKGROUND TEXTURE ─────────────────────────────────────────
       Fine linen-paper pattern: dot-grid only (no noisy crosshatch).
       Subtle enough to give depth without visual noise.
       The body-after block adds a centered warm amber pool — like
       a soft table lamp illuminating the menu from above.
    ─────────────────────────────────────────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background-image:
        radial-gradient(circle, rgba(183, 147, 88, 0.042) 1px, transparent 1px);
      background-size: 32px 32px;
      opacity: 0.65;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      /* Centered amber pool — simulates warm editorial lighting */
      background:
        radial-gradient(ellipse 70% 55% at 50% 18%,
          rgba(183, 147, 88, 0.05) 0%, transparent 65%),
        radial-gradient(ellipse 55% 45% at 15% 75%,
          rgba(43, 74, 59, 0.04) 0%, transparent 60%);
    }

    /* ── 3. ITEM NAME HIERARCHY FIX ────────────────────────────────────
       Names should be the primary read. Elevate to near-white.
       Descriptions stay dim — clear reading hierarchy.
    ─────────────────────────────────────────────────────────────────── */
    .item-name {
      color: rgba(236, 230, 218, 0.95);
      font-size: 1.15rem;
      letter-spacing: -0.005em;
      line-height: 1.25;
      transition: color 0.4s var(--expo), transform 0.35s var(--expo);
    }

    .item-desc {
      color: rgba(228, 221, 208, 0.40);
      font-size: 0.78rem;
      line-height: 1.45;
      transition: color 0.4s var(--expo);
    }

    .item-price {
      color: rgba(183, 147, 88, 0.88);
      font-size: 1.15rem;
      transition: color 0.3s ease, transform 0.35s var(--expo);
    }

    /* Hover: pure typographic refinement, no blocks or backgrounds */
    .menu-item:hover .item-name {
      color: rgba(183, 147, 88, 0.95); /* turns premium gold */
    }
    .menu-item:hover .item-desc {
      color: rgba(228, 221, 208, 0.60);
    }
    .menu-item:hover .item-price {
      color: rgba(183, 147, 88, 1);
    }

    /* ── 4. MENU ITEM HOVER — Minimalist Typography ────────────────────
       Removed the boxy background/border. Hover is purely on the text.
    ─────────────────────────────────────────────────────────────────── */
    .menu-item {
      border-radius: 3px;
    }

    .menu-item::before { display: none; } /* remove old pseudo left-bar */

    /* ── 5. SECTION HEADER — more editorial, homepage-aligned ──────────
       Kicker: smaller, gold, disciplined tracking.
       Title: warmer near-white, clean.
       Divider: sharper gold line with a clean shimmer loop.
    ─────────────────────────────────────────────────────────────────── */
    .section-kicker {
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: 0.42em;
      text-transform: uppercase;
      color: rgba(183, 147, 88, 0.55);
      margin-bottom: 0.4rem;
    }

    .section-title {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(1.65rem, 2.8vw, 2.4rem);
      letter-spacing: -0.025em;
      line-height: 1;
      color: rgba(236, 230, 218, 0.95);
      /* Remove the sweeping gradient animation — too much motion in body */
      background: none;
      -webkit-text-fill-color: initial;
      animation: none;
    }

    .section-title em {
      font-style: italic;
      color: rgba(183, 147, 88, 0.78);
      -webkit-text-fill-color: initial;
    }

    .section-header {
      position: relative;
      padding-bottom: 1.25rem;
      margin-bottom: 2rem;
      border-bottom: 1px solid rgba(183, 147, 88, 0.10);
    }

    /* Refined shimmer on the divider — slower, more editorial */
    @keyframes shimmerLine {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    .section-header::after {
      content: '';
      display: block;
      width: 100%;
      height: 1px;
      position: absolute;
      bottom: -1px;
      left: 0;
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(183, 147, 88, 0.28) 25%,
        rgba(183, 147, 88, 0.55) 50%,
        rgba(183, 147, 88, 0.28) 75%,
        transparent 100%);
      background-size: 200% 100%;
      animation: shimmerLine 6s ease-in-out infinite;
      transition: opacity 0.8s ease;
    }

    .section-header:not(.is-visible)::after { opacity: 0; }
    .section-header.is-visible::after       { opacity: 1; }

    /* Ghost count: editorial watermark, perfectly layered */
    .section-count {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 400;
      font-style: italic;
      letter-spacing: -0.03em;
      color: rgba(183, 147, 88, 0.038);
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      user-select: none;
      line-height: 1;
      white-space: nowrap;
      mix-blend-mode: screen;
    }

    /* ── 6. CAT-NAV — premium editorial rail ───────────────────────────
       Cleaner, more integrated. The rail sits above the content with
       transparent atmosphere. Pinned state uses blur + very dark surface.
       Active state: gold color + underline only — no pill, no rectangle.
    ─────────────────────────────────────────────────────────────────── */
    #cat-nav {
      background: transparent;
      padding: 0;
      margin-bottom: 4rem;
      position: sticky;
      top: 76px;
      z-index: 400;
      transition:
        background 0.55s var(--expo),
        box-shadow 0.55s var(--expo);
    }

    /* is-pinned background: handled by .cat-nav-inner pill at the top of this file */

    .cat-nav-inner {
      display: flex;
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
      padding: 1rem 2rem;
      position: relative;
    }

    /* Bottom axis line removed as requested */
    .cat-nav-inner::after {
      display: none;
    }

    .cat-btn {
      background: transparent;
      border: none;
      color: rgba(228, 221, 208, 0.30);
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 0.6rem 1.6rem;
      cursor: pointer;
      position: relative;
      overflow: visible;
      border-radius: 0;
      transition:
        color 0.38s var(--expo),
        letter-spacing 0.38s var(--expo);
    }

    .cat-btn:hover {
      color: rgba(228, 221, 208, 0.72);
      letter-spacing: 0.28em;
    }

    .cat-btn.active {
      color: rgba(183, 147, 88, 0.95);
      letter-spacing: 0.28em;
    }

    /* Centered-grow underline for active */
    .cat-btn::before {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background: linear-gradient(90deg,
        transparent,
        rgba(183, 147, 88, 0.9) 25%,
        rgba(183, 147, 88, 1) 50%,
        rgba(183, 147, 88, 0.9) 75%,
        transparent
      );
      transition: width 0.42s var(--expo);
    }

    .cat-btn.active::before {
      width: calc(100% - 3.2rem);
    }

    .cat-btn:hover::before {
      width: calc(55% - 1.6rem);
    }

    /* Active pip — pulsing dot above label */
    .cat-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%) translateY(0);
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(183, 147, 88, 0.85);
      opacity: 0;
      transition: opacity 0.38s ease;
    }

    .cat-btn.active::after {
      opacity: 1;
      animation: dotPulse 2.4s ease-out infinite;
    }

    /* ── 7. SECTION TRANSITION — refined clip-path reveal ──────────────
    ─────────────────────────────────────────────────────────────────── */
    @keyframes sectionReveal {
      from {
        opacity: 0;
        transform: translateY(16px) scale(0.984);
        clip-path: inset(0 0 5% 0);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
        clip-path: inset(0 0 0% 0);
      }
    }

    .menu-section.is-active {
      animation: sectionReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    /* ── 8. REVEAL STAGGER — homepage-aligned rhythm ───────────────────
    ─────────────────────────────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition:
        opacity 0.6s var(--expo),
        transform 0.6s var(--expo);
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .menu-grid .reveal:nth-child(1) { transition-delay: 0.00s; }
    .menu-grid .reveal:nth-child(2) { transition-delay: 0.04s; }
    .menu-grid .reveal:nth-child(3) { transition-delay: 0.08s; }
    .menu-grid .reveal:nth-child(4) { transition-delay: 0.12s; }
    .menu-grid .reveal:nth-child(5) { transition-delay: 0.16s; }
    .menu-grid .reveal:nth-child(6) { transition-delay: 0.20s; }
    .menu-grid .reveal:nth-child(7) { transition-delay: 0.07s; }
    .menu-grid .reveal:nth-child(8) { transition-delay: 0.11s; }

    /* ── 9. PDF SECTION — structured service block ─────────────────────
       Redesigned as a composed premium tier:
       - Tight centering with max-width frame
       - Left-aligned editorial pair (label + heading)
       - CTA row at bottom with clear hierarchy
       - No more floating void atmosphere
    ─────────────────────────────────────────────────────────────────── */
    #pdf-section {
      padding: 5rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(8, 15, 10, 0) 0%, rgba(6, 10, 7, 0.85) 30%, rgba(4, 8, 5, 0.95) 100%),
        #080f0a;
      border-top: 1px solid rgba(183, 147, 88, 0.10);
    }

    /* Refined dot-grid — finer, more restrained */
    #pdf-section::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        radial-gradient(circle, rgba(183, 147, 88, 0.045) 1px, transparent 1px);
      background-size: 40px 40px;

    }

    /* Centered editorial frame */
    #pdf-section > * {
      position: relative;
      z-index: 1;
    }

    .pdf-label {
      font-size: 0.60rem;
      font-weight: 700;
      letter-spacing: 0.48em;
      text-transform: uppercase;
      color: rgba(183, 147, 88, 0.65);
      margin-bottom: 1.85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.85rem;
    }

    /* Editorial rule flanking the label — like homepage kicker-line */
    .pdf-label::before,
    .pdf-label::after {
      content: '';
      height: 1px;
      width: 36px;
      background: rgba(183, 147, 88, 0.45);
      flex-shrink: 0;
    }

    .pdf-heading {
      font-family: 'Instrument Serif', serif;
      font-size: clamp(2.4rem, 5.5vw, 4.2rem);
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: rgba(236, 230, 218, 0.95);
      margin-bottom: 1.25rem;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .pdf-heading em {
      font-style: italic;
      color: rgba(183, 147, 88, 0.78);
    }

    .pdf-sub {
      font-size: 0.98rem;
      font-weight: 300;
      color: rgba(228, 221, 208, 0.55);
      margin-bottom: 3.5rem;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.65;
    }

    .pdf-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.9rem;
      padding: 1.25rem 3.2rem;
      background: transparent;
      border: 1px solid rgba(183, 147, 88, 0.50);
      color: rgba(183, 147, 88, 0.95);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 9999px;
      transition: all 0.38s var(--expo);
      position: relative;
      overflow: hidden;
    }

    .pdf-btn svg {
      width: 16px !important;
      height: 16px !important;
    }

    .pdf-btn:hover {
      background: rgba(183, 147, 88, 0.08);
      border-color: rgba(183, 147, 88, 0.75);
      color: rgba(183, 147, 88, 1);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px -6px rgba(183, 147, 88, 0.12);
    }

    /* ── 10. FOOTER — structured closure ───────────────────────────────
       More deliberate ending. Three-zone layout with clear structure.
       Less atmospheric fog, more architectural finality.
    ─────────────────────────────────────────────────────────────────── */
    footer {
      padding: 2.75rem 4rem;
      background: #040804;
      border-top: 1px solid rgba(183, 147, 88, 0.10);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
      position: relative;
    }

    /* Thin gold top-edge rule — clean editorial closure */
    footer::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(
        to right,
        transparent,
        rgba(183, 147, 88, 0.18) 25%,
        rgba(183, 147, 88, 0.30) 50%,
        rgba(183, 147, 88, 0.18) 75%,
        transparent
      );
    }

    /* Footer logo: steady warm tone — no animation */
    .footer-logo {
      font-family: 'Instrument Serif', serif;
      font-size: 1.5rem;
      letter-spacing: -0.01em;
      color: rgba(228, 221, 208, 0.72);
      text-decoration: none;
      background: none;
      -webkit-background-clip: initial;
      background-clip: initial;
      -webkit-text-fill-color: initial;
      animation: none;
      transition: color 0.3s ease;
    }

    .footer-logo:hover {
      color: rgba(228, 221, 208, 0.92);
    }

    .footer-copy {
      font-size: 0.52rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(228, 221, 208, 0.18);
    }

    .footer-links {
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .footer-link {
      width: 2.25rem;
      height: 2.25rem;
      border-radius: 50%;
      background: rgba(183, 147, 88, 0.06);
      border: 1px solid rgba(183, 147, 88, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(183, 147, 88, 0.52);
      text-decoration: none;
      transition: all 0.32s var(--expo);
      animation: none; /* remove orbit glow animation */
    }

    .footer-link:hover {
      background: rgba(183, 147, 88, 0.12);
      border-color: rgba(183, 147, 88, 0.28);
      color: rgba(183, 147, 88, 0.88);
      transform: translateY(-2px);
    }

    /* ── 11. SCROLLBAR — homepage style (more refined) ─────────────────
    ─────────────────────────────────────────────────────────────────── */
    ::-webkit-scrollbar       { width: 4px; }
    ::-webkit-scrollbar-track { background: #050a06; }
    ::-webkit-scrollbar-thumb {
      background: rgba(183, 147, 88, 0.22);
      border-radius: 2px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: rgba(183, 147, 88, 0.42);
    }

    /* ── 12. LOADER — warm dark theme ──────────────────────────────────
    ─────────────────────────────────────────────────────────────────── */
    .loader {
      background: #060a06 !important;
    }

    .loader-text {
      color: rgba(183, 147, 88, 0.88) !important;
    }

    .loader-track {
      width: 160px;
      height: 1px;
      background: rgba(183, 147, 88, 0.15);
      margin-top: 1.8rem;
      border-radius: 2px;
      position: relative;
      overflow: hidden;
    }

    .loader-bar {
      position: absolute !important;
      top: 0;
      bottom: auto !important; /* overrides layout.css */
      left: 0;
      height: 100% !important;
      background: rgba(183, 147, 88, 0.8) !important;
    }

    .loader-bar::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      animation: loaderShimmer 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

    @keyframes loaderShimmer { to { left: 200%; } }

    .loader-tagline {
      font-size: 0.50rem;
      font-weight: 500;
      letter-spacing: 0.40em;
      text-transform: uppercase;
      color: rgba(183, 147, 88, 0.30);
      margin-top: 1.5rem;
    }

    /* ── 13. AMBIENT ORBS — more restrained, less green saturated ──────
    ─────────────────────────────────────────────────────────────────── */
    #menu-orb-1 {
      background: radial-gradient(circle, rgba(183, 147, 88, 0.042) 0%, transparent 70%);
    }
    #menu-orb-2 {
      background: radial-gradient(circle, rgba(43, 74, 59, 0.048) 0%, transparent 70%);
    }

    /* ── 14. PARTICLE CANVAS — refined subtle motes ────────────────────
    ─────────────────────────────────────────────────────────────────── */
    #particle-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: 0.45;
    }

    /* ── 15. BADGE REFINEMENT ──────────────────────────────────────────
    ─────────────────────────────────────────────────────────────────── */
    .badge {
      font-size: 0.40rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 0.12rem 0.5rem;
      border-radius: 9999px;
    }

    .badge-new {
      background: rgba(183, 147, 88, 0.10);
      color: rgba(183, 147, 88, 0.75);
    }

    .badge-veg {
      background: rgba(80, 155, 100, 0.10);
      color: rgba(100, 190, 115, 0.70);
    }

    .badge-hot {
      background: rgba(200, 80, 40, 0.10);
      color: rgba(220, 115, 80, 0.75);
    }

    /* ── 16. MOBILE NAV — dark-themed scrollbar ────────────────────────
    ─────────────────────────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .cat-nav-inner {
        justify-content: center;
        flex-wrap: wrap;
        padding: 0.8rem 24px;
        margin: 0;
      }
      .cat-btn {
        white-space: nowrap;
        font-size: 0.62rem;
        padding: 0.45rem 1.2rem;
      }
    }

    @media (max-width: 767px) {
      footer {
        padding: 2.5rem 1.5rem 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
      }
      #pdf-section {
        padding: 4.5rem 1.5rem;
      }
    }

    /* ══════════════════════════════════════════════════════════════
       REFINAMENTO FINAL — v7 "Textura, Profundidade & Vida"
       Adicionado em: 2026-03
    ══════════════════════════════════════════════════════════════ */

    /* ── 1. TEXTURA DE FUNDO: Linho Premium ──────────────────────
       Três camadas sobrepostas:
       A) Microruído fractal (simula fibra de linho/papel premium)
       B) Grade de pontos dourados em diagonal (R$ 45° offset)
       C) Vinhetas laterais em gradiente radial para dar
          "moldura" editorial ao conteúdo central.
    ──────────────────────────────────────────────────────────── */
    body::before {
      /* Layer A: linho fractal + dots dourados sobrepostos */
      background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='linho'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62 0.68' numOctaves='5' seed='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.055'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23linho)'/%3E%3C/svg%3E"),
        radial-gradient(circle, rgba(183,147,88,0.038) 1px, transparent 1px);
      background-size: 600px 600px, 32px 32px;
      opacity: 0.9;
      animation: textureShift 80s linear infinite;
    }
    @keyframes textureShift {
      from { background-position: 0 0, 0 0; }
      to   { background-position: 600px 300px, 32px 32px; }
    }

    /* ── 2. VINHETAS LATERAIS ANIMADAS ───────────────────────────
       Duas faixas verticais nas laterais que respiram suavemente,
       reforçando o enquadramento editorial da coluna de conteúdo.
    ──────────────────────────────────────────────────────────── */
    #lateral-vignette {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(to right,
          rgba(4, 7, 4, 0.55) 0%,
          rgba(4, 7, 4, 0.18) 8%,
          transparent 22%,
          transparent 78%,
          rgba(4, 7, 4, 0.18) 92%,
          rgba(4, 7, 4, 0.55) 100%
        );
      animation: vignetteBreath 12s ease-in-out infinite alternate;
    }
    @keyframes vignetteBreath {
      from { opacity: 0.7; }
      to   { opacity: 1.0; }
    }

    /* ── 3. CUSTOM CURSOR ──────────────────────────────────────── */
    html { cursor: none; }
    @media (pointer: coarse) { html { cursor: auto; } }

    #custom-cursor {
      position: fixed;
      top: 0; left: 0;
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(183, 147, 88, 0.85);
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
      transition: transform 0.08s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease, opacity 0.25s ease;
      mix-blend-mode: screen;
    }
    #custom-cursor-ring {
      position: fixed;
      top: 0; left: 0;
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(183, 147, 88, 0.28);
      pointer-events: none;
      z-index: 99998;
      transform: translate(-50%, -50%);
      transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                  width 0.3s ease, height 0.3s ease,
                  border-color 0.3s ease, opacity 0.3s ease;
    }
    body:has(a:hover) #custom-cursor,
    body:has(button:hover) #custom-cursor {
      width: 16px; height: 16px;
      background: rgba(183, 147, 88, 1);
    }
    body:has(a:hover) #custom-cursor-ring,
    body:has(button:hover) #custom-cursor-ring {
      width: 52px; height: 52px;
      border-color: rgba(183, 147, 88, 0.55);
    }
    @media (pointer: coarse) {
      #custom-cursor, #custom-cursor-ring { display: none; }
    }

    /* ── 4. MENU ITEM: CLIP-PATH REVEAL ─────────────────────────
       Items surgem com clip-path de baixo para cima ao revelar,
       criando uma sensação de conteúdo "emergindo" da page.
    ──────────────────────────────────────────────────────────── */
    .menu-item.reveal {
      clip-path: inset(0 0 100% 0);
      transition:
        opacity 0.55s var(--expo),
        transform 0.55s var(--expo),
        clip-path 0.6s var(--expo);
    }
    .menu-item.reveal.is-visible {
      clip-path: inset(0 0 0% 0);
    }

    /* ── 5. ITEM HOVER: GLOW HALO NO PREÇO ────────────────────── */
    .item-price {
      position: relative;
    }
    .item-price::after {
      content: '';
      position: absolute;
      inset: -4px -8px;
      border-radius: 4px;
      background: radial-gradient(ellipse at center, rgba(183,147,88,0.10) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    .menu-item:hover .item-price::after {
      opacity: 1;
    }

    /* ── 6. MENU ITEM: LINHA DE SEPARAÇÃO ANIMADA ───────────────
       O border-bottom do item se ilumina ao hover.
    ──────────────────────────────────────────────────────────── */
    .menu-item {
      transition:
        border-color 0.4s ease,
        background 0.4s ease;
    }
    .menu-item:hover {
      border-bottom-color: rgba(183, 147, 88, 0.18) !important;
    }

    /* ── 7. SECTION HEADER: WATERMARK LETRA GIGANTE ─────────────
       Cada seção tem uma letra inicial gigante, fantasma,
       que se revela atrás do título como marca d'água editorial.
    ──────────────────────────────────────────────────────────── */
    .section-header .section-watermark {
      position: absolute;
      left: -0.05em;
      top: 50%;
      transform: translateY(-55%);
      font-family: 'Instrument Serif', serif;
      font-size: clamp(6rem, 16vw, 14rem);
      font-style: italic;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(183, 147, 88, 0.04);
      pointer-events: none;
      user-select: none;
      letter-spacing: -0.04em;
      white-space: nowrap;
      overflow: hidden;
      animation: watermarkPulse 8s ease-in-out infinite alternate;
    }
    @keyframes watermarkPulse {
      from { -webkit-text-stroke-color: rgba(183,147,88,0.04); }
      to   { -webkit-text-stroke-color: rgba(183,147,88,0.09); }
    }

    /* ── 8. CAT-NAV: SHIMMER ATIVO ANIMADO ─────────────────────
       A linha inferior do cat-btn ativo tem um brilho deslizante.
    ──────────────────────────────────────────────────────────── */
    .cat-btn.active::before {
      background: linear-gradient(90deg,
        transparent 0%,
        rgba(183,147,88,0.5) 20%,
        rgba(255, 230, 150, 1) 50%,
        rgba(183,147,88,0.5) 80%,
        transparent 100%);
      background-size: 200% 100%;
      animation: catActiveShimmer 2.8s ease-in-out infinite;
    }
    @keyframes catActiveShimmer {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    /* ── 9. SCROLL INDICATOR: FLOAT ANIMATION ───────────────────
       O "Descubra" do hero flutua suavemente para baixo e para cima.
    ──────────────────────────────────────────────────────────── */
    .hero-scroll {
      animation: heroScrollFloat 3.5s ease-in-out infinite;
    }
    @keyframes heroScrollFloat {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    /* ── 10. HERO-SCROLL-LINE: RUNNING DOT ──────────────────────
       Uma bolinha desce pela linha do scroll indicator.
    ──────────────────────────────────────────────────────────── */
    .hero-scroll-line {
      position: relative;
    }
    .hero-scroll-line::after {
      content: '';
      position: absolute;
      top: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 3px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      animation: dotSlide 2.2s ease-in-out infinite;
    }
    @keyframes dotSlide {
      0%   { top: -4px; opacity: 1; }
      80%  { top: 46px;  opacity: 0; }
      100% { top: 46px;  opacity: 0; }
    }

    /* ── 11. NOISE OVERLAY: SLOW DRIFT ──────────────────────────
       O ruído se desloca lentamente para dar a sensação de
       textura viva, como fibras de papel em movimento.
    ──────────────────────────────────────────────────────────── */
    .noise-overlay {
      animation: noiseDrift 12s steps(2) infinite;
    }
    @keyframes noiseDrift {
      0%   { transform: translate(0,    0);    }
      25%  { transform: translate(-1%,  1%);   }
      50%  { transform: translate(1%,  -1%);   }
      75%  { transform: translate(-1%, -1%);   }
      100% { transform: translate(0,    0);    }
    }

    /* ── 12. FOOTER SOCIAL ICONS: GLOW HOVER ────────────────────
       Cada ícone do footer emite um halo dourado ao hover.
    ──────────────────────────────────────────────────────────── */
    .footer-link:hover {
      box-shadow:
        0 0 14px rgba(183, 147, 88, 0.22),
        0 0  6px rgba(183, 147, 88, 0.30);
    }

    /* ── 13. PDF BUTTON: GLOW PULSE ON HOVER ────────────────────
       O botão de download tem uma aura pulsante ao hover.
    ──────────────────────────────────────────────────────────── */
    .pdf-btn:hover {
      box-shadow:
        0 0 32px rgba(183, 147, 88, 0.18),
        0 0  8px rgba(183, 147, 88, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.06);
    }

    /* ── 14. SEÇÃO: FADE IN COM BLUR ──────────────────────────── */
    @keyframes sectionRevealBlur {
      from {
        opacity: 0;
        transform: translateY(18px) scale(0.984);
        filter: blur(4px);
        clip-path: inset(2% 0 2% 0);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
        clip-path: inset(0% 0 0% 0);
      }
    }
    .menu-section.is-active {
      animation: sectionRevealBlur 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    /* ── 15. NAV LOGO: BREATHING GLOW ───────────────────────────
       O logo da nav tem um brilho suave pulsante, como
       uma vela iluminando o nome do estabelecimento.
    ──────────────────────────────────────────────────────────── */
    .nav-logo {
      text-shadow:
        0 0 24px rgba(183, 147, 88, 0),
        0 0  0px rgba(183, 147, 88, 0);
      animation: logoGlow 6s ease-in-out infinite alternate;
    }
    @keyframes logoGlow {
      from {
        text-shadow:
          0 0 20px rgba(183,147,88,0.0),
          0 0  8px rgba(183,147,88,0.0);
      }
      to {
        text-shadow:
          0 0 28px rgba(183,147,88,0.18),
          0 0 10px rgba(183,147,88,0.08);
      }
    }

    /* ── 16. KICKER LABEL: LETTER TRACKING ANIMATION ─────────── */
    .section-kicker {
      animation: kickerExpand 0.8s var(--expo) both;
    }
    @keyframes kickerExpand {
      from { letter-spacing: 0.1em; opacity: 0; }
      to   { letter-spacing: 0.42em; opacity: 1; }
    }
    /* Só ativa quando o header está visível */
    .section-header:not(.is-visible) .section-kicker {
      animation: none;
      opacity: 0;
    }
    .section-header.is-visible .section-kicker {
      animation: kickerExpand 0.8s var(--expo) 0.15s both;
    }

    /* ── 17. ORB: INTENSIDADE DINÂMICA COM SCROLL ───────────────
       Os orbs ficam levemente mais visíveis quando o usuário
       rola a página (controlado via CSS class no body, adicionado em JS).
    ──────────────────────────────────────────────────────────── */
    body.is-scrolled-deep #menu-orb-1 {
      opacity: 1.3;
      filter: blur(80px);
    }
    body.is-scrolled-deep #menu-orb-2 {
      opacity: 1.3;
    }

    /* ── 18. MENU BODY: LINHA DECORATIVA VERTICAL ESQUERDA ──────
       Uma linha áurea à esquerda do menu body — como a margem
       de um diário premium ou de um menu impresso encadernado.
    ──────────────────────────────────────────────────────────── */
    #menu-body::after {
      content: '';
      position: absolute;
      top: 0;
      left: -20px;
      width: 1px;
      height: 100%;
      background: linear-gradient(to bottom,
        transparent 0%,
        rgba(183,147,88,0.10) 15%,
        rgba(183,147,88,0.18) 50%,
        rgba(183,147,88,0.10) 85%,
        transparent 100%
      );
      pointer-events: none;
    }

    /* ── 19. ITEM BODY: SLIGHT TRANSLATE ON REVEAL ───────────── */
    .menu-item.reveal.is-visible .item-body {
      animation: itemBodySlide 0.5s var(--expo) both;
    }
    @keyframes itemBodySlide {
      from { transform: translateX(-6px); opacity: 0.5; }
      to   { transform: translateX(0);    opacity: 1;   }
    }

    /* ── 20. HERO KICKER: FLANKING LINES GROW ANIMATION ─────── */
    .kicker-line {
      animation: kickerLineGrow 1.2s var(--expo) 0.8s both;
    }
    .kicker-line:last-of-type {
      animation: kickerLineGrow 1.2s var(--expo) 1.0s both;
    }
    @keyframes kickerLineGrow {
      from { width: 0; opacity: 0; }
      to   { width: 28px; opacity: 1; }
    }

    /* ── A11Y: Reduz animações para quem prefere ─────────────── */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      #lateral-vignette { animation: none; opacity: 0.85; }
    }

    /* ══════════════════════════════════════════════════════════════
       PRECISION ALIGNMENT: BREAKPOINT REFINEMENTS
    ══════════════════════════════════════════════════════════════ */
    
    /* 1. 1280 x 800 (13" Landscape Laptop) */
    @media screen and (max-width: 1280px) and (max-height: 800px) {
      .hero-scroll {
        bottom: 2rem;
      }
    }

    /* 2. 1024 x 768 (Landscape Tablet) */
    @media screen and (max-width: 1024px) and (max-height: 768px) {
      /* Force hero viewport back to block and transparent to undo components.css leaks */
      #hero-viewport {
        display: block !important;
        background: transparent !important;
      }
      
      /* Fix navbar colors to properly contrast with the dark hero image */
      #navbar:not(.is-scrolled) {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: 1px solid transparent !important;
      }
      #navbar:not(.is-scrolled) .nav-logo, 
      #navbar:not(.is-scrolled) .nav-link, 
      #navbar:not(.is-scrolled) .nav-hamburger {
        color: #e8e0d0 !important;
        text-shadow: none !important;
      }
      
      /* Ensure scrolled navbar is dark green (menu style) and not white (home style) */
      #navbar.is-scrolled {
        background-color: rgba(8, 15, 10, 0.98) !important;
        backdrop-filter: blur(14px) !important;
        -webkit-backdrop-filter: blur(14px) !important;
        border-bottom: 1px solid rgba(183, 147, 88, 0.12) !important;
      }
      #navbar.is-scrolled .nav-logo, 
      #navbar.is-scrolled .nav-link, 
      #navbar.is-scrolled .nav-hamburger {
        color: #e8e0d0 !important;
      }
      
      /* Fix the video figure placement so it centers properly again */
      #video-frame {
        position: absolute !important;
        top: 55% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 32vw !important;
        max-width: 360px !important;
        opacity: 0.95 !important;
        margin: 0 !important;
        mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 45%, rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0) 85%) !important;
        -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 45%, rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0) 85%) !important;
      }
      
      .hero-content {
        position: absolute !important;
        inset: 0 !important;
        padding-top: 10vh !important;
      }

      .hero-kicker {
        position: relative;
        top: 1.5rem;
      }
      .hero-scroll {
        bottom: 1.25rem;
      }
    }

    /* 3. 900 x 700 (Small Landscape Tablet/Netbook) */
    @media screen and (max-width: 900px) and (max-height: 700px) {
      .hero-kicker {
        position: relative;
        top: 2.25rem;
      }
      .hero-scroll {
        bottom: 0.5rem;
      }
      .hero-cta-wrap {
        position: relative;
        top: 0.5rem;
      }
      
      /* Restore Reservar CTA to the top right of the navbar */
      .nav-cta {
        display: inline-flex !important;
      }
    }

    /* 4. 430 x 932 (iPhone Pro Max Tall Viewport) */
    @media screen and (max-width: 430px) and (min-height: 900px) {
      .hero-content {
        padding-top: 24vh; /* Desce todos os elementos mais um pouco conforme pedido */
        align-items: center !important;
        text-align: center !important;
      }
      .hero-kicker {
        font-size: 0.65rem;
        letter-spacing: 0.48em;
        justify-content: center !important;
      }
      .hero-title {
        font-size: clamp(4.2rem, 18vw, 5.2rem);
        letter-spacing: -0.04em;
        text-align: center !important;
      }
      .hero-title::after {
        width: 40px;
        margin: 1.5rem auto;
      }
      .hero-sub {
        font-size: 1.05rem;
        max-width: 360px;
        margin: 0 auto 2.5rem auto !important;
        text-align: center !important;
      }
      .hero-cta-wrap {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1rem !important;
      }
      .hero-btn-primary {
        padding: 1.35rem 3.6rem;
        font-size: 0.78rem;
      }
      .hero-btn-secondary {
        display: inline-flex !important;
        font-size: 0.65rem !important;
      }
      #video-frame {
        width: 98vw;
        max-width: 420px;
        top: 52%; /* Acompanha a descida do texto e CTAs */
      }
      .hero-scroll {
        bottom: 8vh;
        font-size: 0.48rem;
      }
    }

    /* ══════════════════════════════════════════════════════════════
       5. STRICT MOBILE PERFORMANCE OPTIMIZATIONS (Max-width: 767px)
       Aggressively strips out all heavy compositor hits: masks, blurs,
       blend modes, and will-change hints to guarantee 60fps load.
    ══════════════════════════════════════════════════════════════ */
    @media screen and (max-width: 767px) {
      /* 1. Remove all expensive background decorators entirely */
      .hero-grain,
      .product-glow,
      .product-shadow {
        display: none !important;
      }

      /* 2. Simplify overlay without blur or heavy radial steps, but fading top AND bottom gracefully */
      .hero-video-overlay {
        background: linear-gradient(
          to bottom, 
          #010201 0%, 
          rgba(1, 2, 1, 0.95) 12%, 
          transparent 35%, 
          transparent 65%, 
          rgba(1, 2, 1, 0.95) 88%, 
          #010201 100%
        ) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
      }

      /* 3. Absolute lowest cost video frame rendering */
      #video-frame {
        mask-image: none !important;
        -webkit-mask-image: none !important;
        mix-blend-mode: normal !important;
        background: transparent !important; /* Igualar o fundo perfeitamente ao do site */
        box-shadow: none !important;
        will-change: auto !important; /* Remove heavy layer hint */
        border: none !important;
        border-radius: 0 !important;
      }

      /* 4. Suppress hover scale trap (mobile repaints heavily on tap) */
      #video-frame:hover {
        transform: translate(-50%, -50%) !important;
        box-shadow: none !important;
      }
      
      /* 5. Pure zero-cost canvas render */
      #seq-canvas {
        filter: none !important;
        transform: scale(1) !important;
      }
      
      #seq-canvas.ready {
        filter: none !important;
        transform: scale(1) !important;
        transition: opacity 0.5s linear !important;
      }
    }

    /* ══════════════════════════════════════════════════════════════════════
       MOBILE UX & PERFORMANCE REFINEMENT — Giardini Menu Page
       ══════════════════════════════════════════════════════════════════════
       Fluid responsive system:
         320–374 px = small mobile
         375–429 px = standard mobile
         430–767 px = large mobile

       This block sits at the END of the file to override all earlier
       global "creative polish" rules that accidentally override mobile
       optimizations due to CSS cascade order.
       ══════════════════════════════════════════════════════════════════════ */
    @media (max-width: 767px) {

      /* ═════════════════════════════════════════════════════════════════
         A. PERFORMANCE — Strip ALL GPU-costly layers on mobile
         ═════════════════════════════════════════════════════════════════ */

      /* 1. Particle canvas — kill entirely (JS also gated) */
      #particle-canvas {
        display: none !important;
      }

      /* 2. Ambient floating orbs — GPU blur compositing @ 90px blur */
      #menu-orb-1,
      #menu-orb-2 {
        display: none !important;
      }

      /* 3. Noise overlay — stop drift animation, reduce intensity */
      .noise-overlay {
        animation: none !important;
        opacity: 0.10 !important;
      }

      /* 4. Body texture — kill fractal-noise SVG + 80s shift animation.
            Replace with simple dot-grid only (zero-cost) */
      body::before {
        animation: none !important;
        opacity: 0.35 !important;
        background-image:
          radial-gradient(circle, rgba(183,147,88,0.035) 1px, transparent 1px) !important;
        background-size: 32px 32px !important;
      }

      /* 5. Body::after ambient lighting (radial gradients) */
      body::after {
        display: none !important;
      }

      /* 6. Linen paper texture overlay (2 heavy SVG filters stacked) */
      .menu-main-wrapper::before {
        display: none !important;
      }

      /* 7. Section header shimmer line — make static */
      .section-header::after {
        animation: none !important;
        background-size: 100% 100% !important;
      }

      /* 8. Cat-btn active shimmer line — make static */
      .cat-btn.active::before {
        animation: none !important;
        background-size: 100% 100% !important;
      }

      /* 9. Cat-btn active dot pulse — stop animation */
      .cat-btn.active::after {
        animation: none !important;
      }

      /* 10. Menu item clip-path reveal — expensive compositing */
      .menu-item.reveal {
        clip-path: none !important;
      }
      .menu-item.reveal.is-visible {
        clip-path: none !important;
      }

      /* 11. Section tab switch — no blur filter, simple fade */
      .menu-section.is-active {
        animation: mobileMenuSectionFade 0.35s ease both !important;
      }

      /* 12. Nav logo glow breathing — 6s infinite */
      .nav-logo {
        animation: none !important;
        text-shadow: none !important;
      }

      /* 13. Hero scroll float — overrides global rule that cascades
             over the earlier mobile media query */
      .hero-scroll {
        animation: none !important;
      }

      /* 14. Hero scroll line dot slide — 2.2s infinite */
      .hero-scroll-line::after {
        display: none !important;
      }

      /* 15. Menu item body slide on reveal */
      .menu-item.reveal.is-visible .item-body {
        animation: none !important;
      }

      /* 16. Kicker flanking line grow animation */
      .kicker-line {
        animation: none !important;
        opacity: 1 !important;
      }

      /* 17. Section kicker expand tracking — overrides global */
      .section-kicker {
        animation: none !important;
        opacity: 1 !important;
      }
      .section-header.is-visible .section-kicker {
        animation: none !important;
        opacity: 1 !important;
      }

      /* 18. Pinned cat-nav: solid bg, no backdrop-filter */
      #cat-nav.is-pinned .cat-nav-inner {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(6, 11, 7, 0.97) !important;
      }

      /* 19. Hero entrance GSAP blur filters — strip on mobile.
             Opacity + translateY still fire; blur is skipped. */
      #el-kicker, #el-h1a, #el-h1b, #el-h1-sep,
      #el-body, #el-cta, #el-scroll {
        filter: none !important;
        -webkit-filter: none !important;
      }

      /* 20. Desktop hover effects — disable on touch */
      .menu-item::before {
        display: none !important;
      }
      .menu-item:hover .item-name {
        transform: none !important;
      }
      .menu-item:hover .item-price::after {
        opacity: 0 !important;
      }
      .menu-item:hover {
        border-bottom-color: rgba(183, 147, 88, 0.08) !important;
      }

      /* 21. Lateral vignette breathing — kill on mobile */
      #lateral-vignette {
        animation: none !important;
      }

      /* 22. Reveal: simpler, faster — overrides global rules */
      .reveal {
        transform: translateY(10px) !important;
        transition-duration: 0.35s !important;
      }
      .menu-grid .reveal:nth-child(n) {
        transition-delay: 0s !important;
      }


      /* ═════════════════════════════════════════════════════════════════
         B. TYPOGRAPHY — Override global sweeping animations
         ═════════════════════════════════════════════════════════════════ */

      /* Section title: strip gradient sweep, solid color */
      .section-title {
        font-size: clamp(1.3rem, 5vw, 1.7rem) !important;
        line-height: 1.08 !important;
        background: none !important;
        -webkit-text-fill-color: rgba(236, 230, 218, 0.95) !important;
        animation: none !important;
      }
      .section-title em {
        -webkit-text-fill-color: rgba(183, 147, 88, 0.78) !important;
      }

      /* Section kicker: fluid */
      .section-kicker {
        font-size: clamp(0.42rem, 1.3vw, 0.50rem) !important;
        letter-spacing: 0.34em !important;
        margin-bottom: 0.35rem !important;
      }

      /* Item name: fluid across all phones */
      .item-name {
        font-size: clamp(1rem, 3vw, 1.15rem) !important;
        line-height: 1.25 !important;
      }

      /* Item desc: comfortable reading */
      .item-desc {
        font-size: clamp(0.72rem, 2.1vw, 0.82rem) !important;
        line-height: 1.5 !important;
      }

      /* Item price: fluid */
      .item-price {
        font-size: clamp(1rem, 3vw, 1.15rem) !important;
      }


      /* ═════════════════════════════════════════════════════════════════
         C. SPACING & RHYTHM — Tighter mobile vertical rhythm
         ═════════════════════════════════════════════════════════════════ */

      /* Menu wrapper: fluid horizontal padding */
      .menu-main-wrapper {
        padding: 0 clamp(1rem, 4.5vw, 1.5rem) !important;
      }

      /* Menu items: consistent padding, no hover left-pad */
      .menu-item {
        padding: clamp(1rem, 3vw, 1.4rem) 0 !important;
        padding-left: 0 !important;
        gap: 0.3rem 1rem !important;
        border-radius: 0 !important;
      }

      /* Section header: clean spacing */
      .section-header {
        margin-bottom: clamp(1.25rem, 4vw, 1.75rem) !important;
        padding-bottom: 1rem !important;
      }


      /* ═════════════════════════════════════════════════════════════════
         D. DUAL-PRICE ITEMS (Tapioca/Cuscuz section)
         ═════════════════════════════════════════════════════════════════ */

      /* Dual-price items: tighter horizontal gap */
      .menu-item[style*="grid-template-columns:1fr auto auto"] {
        gap: 0.3rem 0.5rem !important;
      }

      /* Dual-price column labels: smaller to fit */
      div[style*="grid-template-columns:1fr auto auto"] span[style*="font-size:0.55rem"] {
        font-size: 0.45rem !important;
        letter-spacing: 0.15em !important;
      }

      /* Dual-price: reduce min-width on 2nd price column */
      .menu-item[style*="grid-template-columns"] .item-price[style*="min-width:4.5rem"] {
        min-width: 3.2rem !important;
      }


      /* ═════════════════════════════════════════════════════════════════
         E. TOUCH TARGETS — 44px minimum
         ═════════════════════════════════════════════════════════════════ */

      .cat-btn {
        min-height: 44px !important;
      }

      .hero-btn-primary {
        min-height: 48px !important;
      }

      .hero-btn-secondary {
        min-height: 44px !important;
        padding: 0.8rem 0.5rem !important;
      }

      .pdf-btn {
        min-height: 48px !important;
        padding: 1rem clamp(2rem, 6vw, 3rem) !important;
      }

      .footer-link {
        width: 2.75rem !important;
        height: 2.75rem !important;
      }


      /* ═════════════════════════════════════════════════════════════════
         F. FOOTER — Centered mobile layout
         ═════════════════════════════════════════════════════════════════
         Overrides the global footer rule (space-between) and the
         earlier 767px block that uses align-items: flex-start. */

      footer {
        align-items: center !important;
        text-align: center !important;
      }


      /* ═════════════════════════════════════════════════════════════════
         G. PDF SECTION — Fluid mobile typography
         ═════════════════════════════════════════════════════════════════ */

      .pdf-heading {
        font-size: clamp(1.6rem, 6.5vw, 2.2rem) !important;
      }

      .pdf-sub {
        font-size: clamp(0.78rem, 2.2vw, 0.88rem) !important;
        max-width: 280px !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }

      .pdf-label {
        font-size: 0.48rem !important;
      }

      .pdf-label::before,
      .pdf-label::after {
        width: 20px !important;
      }
    }

    /* Simple fade-in for mobile section tab switches (no blur filter) */
    @keyframes mobileMenuSectionFade {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ═════════════════════════════════════════════════════════════════════
       SMALL MOBILE REFINEMENTS (320–374px)
       ═════════════════════════════════════════════════════════════════════ */
    @media (max-width: 374px) {
      .menu-main-wrapper {
        padding: 0 0.85rem !important;
      }

      .cat-nav-inner {
        padding: 0.7rem 14px !important;
        margin: 0 -14px !important;
      }

      .cat-btn {
        font-size: 0.55rem !important;
        padding: 0.6rem 0.9rem !important;
      }

      /* Dual-price: tighter on tiny screens */
      .menu-item[style*="grid-template-columns:1fr auto auto"] {
        gap: 0.25rem 0.35rem !important;
      }

      .menu-item[style*="grid-template-columns"] .item-price[style*="min-width:4.5rem"] {
        min-width: 2.8rem !important;
      }

      .section-title {
        font-size: clamp(1.2rem, 4.5vw, 1.5rem) !important;
      }
    }

    /* ══════════════════════════════════════════════════════════════════════
       ██████  DEFINITIVE MOBILE POLISH — v8 «Luxury in Hand»  ██████
       ──────────────────────────────────────────────────────────────────────
       Scope: 320px → 767px ONLY
       Desktop / Tablet ≥768px: UNTOUCHED
       Priority: placed LAST in cascade to override all earlier blocks
       ══════════════════════════════════════════════════════════════════════ */
    @media screen and (max-width: 767px) {

      /* ═══════════════════════════════════════════════════════════════════
         1. LATERAL VIGNETTE — Remove blue glow edges on mobile
         ═══════════════════════════════════════════════════════════════════ */
      #lateral-vignette {
        display: none !important;
      }

      /* ═══════════════════════════════════════════════════════════════════
         2. NAVBAR — Balanced, compact, premium
         ═══════════════════════════════════════════════════════════════════ */
      #navbar {
        padding: 0.75rem 1.25rem !important;
        height: 56px !important;
        display: flex !important;
        align-items: center !important;
        background-color: rgba(8, 15, 10, 0.98) !important;
        border-bottom: 1px solid rgba(183, 147, 88, 0.08) !important;
      }

      #navbar.is-scrolled {
        padding: 0.75rem 1.25rem !important;
        height: 56px !important;
      }

      #navbar .nav-logo {
        font-size: 1.25rem !important;
      }

      .nav-hamburger {
        width: 44px !important;
        height: 44px !important;
      }

      .nav-hamburger iconify-icon {
        font-size: 1.6rem !important;
      }

      /* Hide "Reservar" CTA on mobile nav */
      .nav-cta {
        display: none !important;
      }

      /* ═══════════════════════════════════════════════════════════════════
         3. HERO — Centered cinematic composition
         ═══════════════════════════════════════════════════════════════════
         Strategy: vertically center text+CTA in the viewport.
         Video frame overlaps behind CTA area as the visual anchor.
         Tight vertical rhythm, no dead zones.
      */

      #hero-viewport {
        height: 100svh !important;
        min-height: 580px !important;
        max-height: 900px !important;
      }

      /* Hero content: true vertical centering, pushed lower */
      .hero-content {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 140px 1.5rem 60px !important; /* Huge top padding to push content down */
        gap: 0 !important;
      }

      /* Kicker — refined micro-label, moved independently and larger */
      .hero-kicker {
        font-size: 0.56rem !important; /* Increased size */
        letter-spacing: 0.38em !important;
        gap: 0.6rem !important;
        margin-bottom: 0.85rem !important;
        margin-top: 0 !important;
        transform: translateY(-160px) !important; /* Pushed much higher to create bigger gap */
        color: rgba(183, 147, 88, 0.68) !important;
      }

      .kicker-line {
        width: 20px !important;
      }

      /* Title: bold, cinematic, larger scale */
      .hero-title {
        font-size: clamp(4.2rem, 15vw, 5.2rem) !important; /* Slightly larger */
        line-height: 0.95 !important;
        letter-spacing: -0.03em !important;
        margin-bottom: 0 !important;
      }

      /* Gold separator — delicate pause */
      .hero-title-sep {
        display: block !important;
        width: 26px !important;
        height: 1px !important;
        background: rgba(183, 147, 88, 0.35) !important;
        margin: 0.75rem auto 0.65rem !important;
      }

      /* Subtitle — clean 2-line max, larger */
      .hero-sub {
        font-size: 1.02rem !important; /* Increased slightly more */
        line-height: 1.55 !important;
        max-width: 340px !important; /* Increased width to handle larger text */
        margin: 0 auto 1.5rem auto !important;
        color: rgba(210, 202, 185, 0.72) !important;
        letter-spacing: 0.005em !important;
      }

      /* CTA stack — tighter vertical rhythm */
      .hero-cta-wrap {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
        width: 100% !important;
        margin-bottom: 0 !important;
      }

      .hero-btn-primary {
        padding: 1.05rem 3.0rem !important; /* Slightly larger hit area */
        font-size: 0.64rem !important; /* Increased size slightly */
        letter-spacing: 0.22em !important;
      }

      /* Trigger shimmer beam only on click (tap) on mobile */
      .hero-btn-primary:active .s4-beam {
        opacity: 1 !important;
        animation: s4-shimmer 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
      }

      .hero-btn-secondary {
        font-size: 0.58rem !important; /* Increased size slightly */
        padding: 0.7rem 0.5rem !important;
        color: rgba(210, 202, 185, 0.45) !important;
      }

      /* Video frame (cup): stronger visual presence, overlaps behind CTAs */
      #video-frame {
        top: 50% !important;
        left: 50% !important;
        width: 78vw !important;
        max-width: 340px !important;
        opacity: 0.65 !important;
        z-index: 0 !important;
        mask-image: radial-gradient(ellipse at center,
          rgba(0,0,0,1) 0%,
          rgba(0,0,0,0.75) 40%,
          rgba(0,0,0,0.35) 62%,
          transparent 78%
        ) !important;
        -webkit-mask-image: radial-gradient(ellipse at center,
          rgba(0,0,0,1) 0%,
          rgba(0,0,0,0.75) 40%,
          rgba(0,0,0,0.35) 62%,
          transparent 78%
        ) !important;
      }

      /* Text scrim: positioned behind text, lets cup glow through below */
      .hero-text-scrim {
        background: radial-gradient(
          ellipse 100% 55% at 50% 32%,
          rgba(4, 8, 5, 0.52) 0%,
          rgba(4, 8, 5, 0.22) 50%,
          transparent 72%
        ) !important;
      }

      /* Video overlay: soft cinematic vignette */
      .hero-video-overlay {
        background: linear-gradient(
          to bottom,
          rgba(8, 15, 10, 0.88) 0%,
          rgba(8, 15, 10, 0.45) 22%,
          transparent 42%,
          transparent 58%,
          rgba(8, 15, 10, 0.45) 78%,
          rgba(8, 15, 10, 0.88) 100%
        ) !important;
      }

      /* Scroll indicator: pulled closer, part of the composition */
      .hero-scroll {
        bottom: 1.8rem !important;
        font-size: 0.34rem !important;
        letter-spacing: 0.38em !important;
        color: rgba(255, 255, 255, 0.25) !important;
        gap: 0.3rem !important;
      }

      .hero-scroll-line {
        height: 16px !important;
      }

      /* Hero bottom gradient: shorter for tighter transition to menu */
      #hero-pin-wrapper::after {
        height: 25vh !important;
        background: linear-gradient(
          to top,
          #080f0a 0%,
          rgba(8, 15, 10, 0.95) 20%,
          rgba(8, 15, 10, 0.50) 50%,
          transparent 100%
        ) !important;
      }

      /* Bridge: hidden on mobile */
      #hero-bridge {
        display: none !important;
      }

      /* ═══════════════════════════════════════════════════════════════════
         4. CATEGORY NAV — Horizontal scroll rail, no wrapping
         ═══════════════════════════════════════════════════════════════════ */
      #cat-nav {
        top: 56px !important;  /* match mobile navbar height */
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
        overflow: visible !important;
      }

      #cat-nav.is-pinned {
        top: 56px !important;
      }

      /* ID selector for maximum specificity */
      #cat-nav-inner,
      .cat-nav-inner {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        justify-content: flex-start !important;
        padding: 0.65rem 1.25rem !important;
        margin: 0 !important;
        gap: 0.15rem !important;
        width: 100% !important;
        /* Edge fade for scroll hint */
        mask-image: linear-gradient(
          to right,
          transparent 0%,
          black 4%,
          black 96%,
          transparent 100%
        ) !important;
        -webkit-mask-image: linear-gradient(
          to right,
          transparent 0%,
          black 4%,
          black 96%,
          transparent 100%
        ) !important;
      }

      #cat-nav-inner::-webkit-scrollbar,
      .cat-nav-inner::-webkit-scrollbar {
        display: none !important;
      }

      #cat-nav.is-pinned #cat-nav-inner,
      #cat-nav.is-pinned .cat-nav-inner {
        background: rgba(8, 15, 10, 0.97) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-radius: 0 !important;
        box-shadow: 0 1px 0 rgba(183, 147, 88, 0.06) !important;
      }

      .cat-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 0.58rem !important;
        letter-spacing: 0.20em !important;
        padding: 0.6rem 1.1rem !important;
        min-height: 40px !important;
      }

      .cat-btn.active {
        color: rgba(183, 147, 88, 0.95) !important;
        letter-spacing: 0.22em !important;
      }

      .cat-btn.active::before {
        background: rgba(183, 147, 88, 0.75) !important;
        background-size: 100% 100% !important;
      }

      /* ═══════════════════════════════════════════════════════════════════
         5. MENU SECTIONS — Refined vertical rhythm
         ═══════════════════════════════════════════════════════════════════ */
      .menu-main-wrapper {
        margin-top: 0 !important;
        padding: 0 1.25rem !important;
      }

      #menu-body {
        padding-bottom: 2.5rem !important;
      }

      .menu-section {
        padding: 0 0 1rem 0 !important;
      }

      /* Section header: tighter, cleaner */
      .section-header {
        margin-bottom: 1.25rem !important;
        padding-bottom: 0.85rem !important;
        gap: 0 !important;
      }

      .section-kicker {
        font-size: 0.44rem !important;
        letter-spacing: 0.32em !important;
        margin-bottom: 0.3rem !important;
        color: rgba(183, 147, 88, 0.55) !important;
      }

      .section-title {
        font-size: clamp(1.25rem, 5vw, 1.65rem) !important;
        line-height: 1.08 !important;
      }

      /* Ghost count: hidden on mobile */
      .section-count {
        display: none !important;
      }

      /* Section watermark: hidden on mobile */
      .section-watermark {
        display: none !important;
      }

      /* ═══════════════════════════════════════════════════════════════════
         6. MENU ITEMS — Balanced density, readable, elegant
         ═══════════════════════════════════════════════════════════════════ */
      .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
      }

      .menu-item {
        grid-template-columns: 1fr auto !important;
        gap: 0.25rem 1rem !important;
        padding: 1.4rem 0 !important; /* Increased vertical spacing */
        padding-left: 0 !important;
        margin-bottom: 0 !important;
        border-bottom: 1px solid rgba(183, 147, 88, 0.06) !important;
        border-radius: 0 !important;
      }

      .menu-item:last-child {
        border-bottom: none !important;
        padding-bottom: 0.8rem !important;
      }

      .item-name {
        font-size: clamp(1.1rem, 3.2vw, 1.25rem) !important; /* Increased size & hierarchy */
        line-height: 1.25 !important;
        letter-spacing: -0.005em !important;
      }

      .item-desc {
        font-size: clamp(0.80rem, 2.4vw, 0.88rem) !important; /* Larger text */
        line-height: 1.5 !important; /* Better rhythm */
        margin-top: 0.35rem !important; /* Slightly more space */
        color: rgba(228, 221, 208, 0.65) !important; /* Much better contrast */
      }

      .item-price {
        font-size: clamp(1.1rem, 3.2vw, 1.25rem) !important; /* Matches item-name hierarchy */
        padding-right: 0.1rem !important;
        padding-top: 0 !important;
        color: rgba(183, 147, 88, 0.88) !important;
      }

      .item-badges {
        margin-top: 0.4rem !important;
        gap: 0.35rem !important;
      }

      .badge {
        font-size: 0.45rem !important; /* Increased */
        padding: 0.25rem 0.55rem !important; /* Better tap target/visibility */
        letter-spacing: 0.2em !important;
      }

      /* Disable hover effects on mobile */
      .menu-item:hover .item-name {
        transform: none !important;
        color: rgba(236, 230, 218, 0.95) !important;
      }

      .menu-item::before {
        display: none !important;
      }

      /* ═══════════════════════════════════════════════════════════════════
         7. DUAL-PRICE ITEMS (Tapioca/Cuscuz)
         ═══════════════════════════════════════════════════════════════════ */
      /* Restore the 3 column layout since generic menu-item forced it to 2 columns */
      div[style*="grid-template-columns:1fr auto auto"],
      .menu-item[style*="grid-template-columns:1fr auto auto"] {
        grid-template-columns: 1fr auto auto !important;
        gap: 0.25rem 1rem !important;
      }

      /* Dual-price header row: restore visibility and tighten gap */
      div[style*="grid-template-columns:1fr auto auto"]:not(.menu-item) {
        border-bottom: 1px solid rgba(183, 147, 88, 0.15) !important;
        padding-bottom: 0.6rem !important;
        margin-bottom: 0.75rem !important;
      }

      /* Make Cuscuz/Tapioca labels readable (were dark-on-dark) */
      div[style*="grid-template-columns:1fr auto auto"]:not(.menu-item) span {
        color: rgba(183, 147, 88, 0.65) !important; /* Premium gold tint */
        font-size: 0.45rem !important;
        letter-spacing: 0.2em !important;
      }

      .menu-item[style*="grid-template-columns"] .item-price[style*="min-width:4.5rem"] {
        min-width: 3.5rem !important;
        text-align: right !important;
      }

      /* ═══════════════════════════════════════════════════════════════════
         8. PDF SECTION — Intentional, compact, premium
         ═══════════════════════════════════════════════════════════════════ */
      #pdf-section {
        padding: 3.5rem 1.5rem 4rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
      }

      .pdf-label {
        font-size: 0.45rem !important;
        letter-spacing: 0.38em !important;
        margin-bottom: 1.25rem !important;
      }

      .pdf-label::before,
      .pdf-label::after {
        width: 18px !important;
      }

      .pdf-heading {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.03em !important;
        margin-bottom: 1rem !important;
      }

      #pdf-section .pdf-heading::before {
        font-size: 0.5rem !important;
        margin-bottom: 0.8rem !important;
      }

      .pdf-sub {
        font-size: 0.78rem !important;
        line-height: 1.55 !important;
        margin-bottom: 2rem !important;
        max-width: 260px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        color: rgba(210, 202, 185, 0.55) !important;
      }

      .pdf-btn {
        padding: 0.9rem 2.5rem !important;
        font-size: 0.55rem !important;
        letter-spacing: 0.20em !important;
        min-height: 46px !important;
      }

      /* ═══════════════════════════════════════════════════════════════════
         9. FOOTER — Centered, complete, restrained
         ═══════════════════════════════════════════════════════════════════ */
      footer {
        padding: 2.5rem 1.5rem 2rem !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1rem !important;
      }

      .footer-logo {
        font-size: 1.45rem !important;
        margin-bottom: 0.25rem !important;
        /* Remove sweep animation, solid warm */
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
        -webkit-text-fill-color: rgba(228, 221, 208, 0.75) !important;
        animation: none !important;
      }

      .footer-links {
        gap: 1rem !important;
      }

      .footer-link {
        width: 2.75rem !important;
        height: 2.75rem !important;
        border: 1px solid rgba(183, 147, 88, 0.12) !important;
        background: rgba(183, 147, 88, 0.05) !important;
        color: rgba(183, 147, 88, 0.55) !important;
      }

      .footer-copy {
        font-size: 0.48rem !important;
        letter-spacing: 0.14em !important;
        color: rgba(228, 221, 208, 0.20) !important;
        margin-top: 0.25rem !important;
      }

      /* ═══════════════════════════════════════════════════════════════════
         10. CONTRAST & VISIBILITY REFINEMENTS
         ═══════════════════════════════════════════════════════════════════ */

      /* Mobile menu links: warm white for dark bg */
      .mobile-link {
        color: rgba(228, 221, 208, 0.85) !important;
      }

      .mobile-close {
        color: rgba(228, 221, 208, 0.60) !important;
      }

      /* Loader: solid dark bg */
      .loader {
        background: #060a06 !important;
      }

      /* ═══════════════════════════════════════════════════════════════════
         11. PERFORMANCE — Eliminate all GPU-heavy decorations
         ═══════════════════════════════════════════════════════════════════ */

      /* Noise: static, minimal */
      .noise-overlay {
        animation: none !important;
        opacity: 0.08 !important;
      }

      /* Body textures: simplified */
      body::before {
        animation: none !important;
        opacity: 0.25 !important;
      }

      body::after {
        display: none !important;
      }

      /* Menu wrapper paper texture */
      .menu-main-wrapper::before {
        display: none !important;
      }

      /* Particles & orbs: killed */
      #particle-canvas,
      #menu-orb-1,
      #menu-orb-2 {
        display: none !important;
      }

      /* Custom cursor: not on touch */
      #custom-cursor,
      #custom-cursor-ring {
        display: none !important;
      }

      /* Simplify reveals */
      .reveal {
        transform: translateY(8px) !important;
        transition-duration: 0.3s !important;
      }

      .menu-grid .reveal:nth-child(n) {
        transition-delay: 0s !important;
      }

      /* Section animation: simple fade only */
      .menu-section.is-active {
        animation: mobileMenuSectionFade 0.3s ease both !important;
      }

      /* Strip clip-path from items */
      .menu-item.reveal,
      .menu-item.reveal.is-visible {
        clip-path: none !important;
      }

      /* No body slide on item reveal */
      .menu-item.reveal.is-visible .item-body {
        animation: none !important;
      }

      /* Section header shimmer: static */
      .section-header::after {
        animation: none !important;
      }

      /* Cat active shimmer/pulse: static */
      .cat-btn.active::before {
        animation: none !important;
      }

      .cat-btn.active::after {
        animation: none !important;
      }

      /* Strip GSAP blur filters */
      #el-kicker, #el-h1a, #el-h1b, #el-h1-sep,
      #el-body, #el-cta, #el-scroll {
        filter: none !important;
        -webkit-filter: none !important;
      }

      /* Nav logo: no glow breathing */
      .nav-logo {
        animation: none !important;
        text-shadow: none !important;
      }

      /* Hero scroll: no float */
      .hero-scroll {
        animation: none !important;
      }

      .hero-scroll-line::after {
        display: none !important;
      }

      /* Kicker lines: instant */
      .kicker-line {
        animation: none !important;
        opacity: 1 !important;
      }

      /* Section kicker: instant */
      .section-kicker {
        animation: none !important;
        opacity: 1 !important;
      }

      .section-header.is-visible .section-kicker {
        animation: none !important;
        opacity: 1 !important;
      }

      /* Section title: solid color, no sweep */
      .section-title {
        background: none !important;
        -webkit-text-fill-color: rgba(236, 230, 218, 0.95) !important;
        animation: none !important;
      }

      .section-title em {
        -webkit-text-fill-color: rgba(183, 147, 88, 0.78) !important;
      }
    }

    /* ═══════ COMPACT PHONES (320–430px) — micro-adjustments ═══════ */
    @media screen and (max-width: 430px) {

      .hero-title {
        font-size: clamp(3.8rem, 14vw, 4.6rem) !important; /* Proportional scale */
      }

      .hero-sub {
        font-size: 0.94rem !important;
        max-width: 310px !important;
      }

      .hero-btn-primary {
        padding: 0.95rem 2.8rem !important;
        font-size: 0.58rem !important;
      }

      #video-frame {
        width: 72vw !important;
        max-width: 300px !important;
        opacity: 0.58 !important;
      }

      .cat-btn {
        font-size: 0.54rem !important;
        letter-spacing: 0.18em !important;
        padding: 0.55rem 0.9rem !important;
      }

      .item-name {
        font-size: clamp(1.05rem, 3vw, 1.15rem) !important;
      }

      .item-price {
        font-size: clamp(1.05rem, 3vw, 1.15rem) !important;
      }

      .menu-main-wrapper {
        padding: 0 1rem !important;
      }

      .section-title {
        font-size: clamp(1.15rem, 4.5vw, 1.45rem) !important;
      }

      footer {
        padding: 2rem 1.25rem 1.5rem !important;
      }
    }

    /* ═══════ TINY PHONES (320–374px) ═══════ */
    @media screen and (max-width: 374px) {
      .hero-title {
        font-size: clamp(3.4rem, 14vw, 4rem) !important;
      }

      .hero-kicker {
        font-size: 0.50rem !important;
        transform: translateY(-130px) !important;
      }

      .hero-sub {
        font-size: 0.88rem !important;
        max-width: 280px !important;
      }

      .menu-main-wrapper {
        padding: 0 0.85rem !important;
      }

      .cat-btn {
        font-size: 0.50rem !important;
        padding: 0.5rem 0.75rem !important;
      }

      .item-name {
        font-size: 1.0rem !important;
      }

      .item-price {
        font-size: 1.0rem !important;
      }

      .item-desc {
        font-size: 0.70rem !important;
      }

      .pdf-heading {
        font-size: clamp(1.35rem, 5.5vw, 1.8rem) !important;
      }

      .section-title {
        font-size: clamp(1.1rem, 4.2vw, 1.35rem) !important;
      }
    }

    /* ═══════ TALL PHONES (iPhone Pro Max, etc) ═══════ */
    @media screen and (max-width: 430px) and (min-height: 850px) {
      .hero-content {
        padding: 160px 1.5rem 70px !important; /* Push down even more on tall screens */
      }

      #video-frame {
        top: 52% !important;
        opacity: 0.55 !important;
      }

      .hero-scroll {
        bottom: 2.2rem !important;
      }
    }