
  :root {
    --cream: #f5f0e8;
    --tan: #d4b896;
    --brown: #6b3a2a;
    --dark-brown: #3b1f10;
    --gold: #c8973a;
    --gold-light: #e0b96a;
    --text: #2a1508;
    --card-bg: #fdf8f2;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: rgba(200,151,58,0.15); }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    /* iOS notch / Dynamic Island safe area */
    padding-top: calc(18px + env(safe-area-inset-top));
    padding-left: calc(60px + env(safe-area-inset-left));
    padding-right: calc(60px + env(safe-area-inset-right));
    background: rgba(245, 240, 232, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* required for Safari */
    border-bottom: 1px solid rgba(200, 151, 58, 0.2);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 0.12em;
    color: var(--dark-brown);
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--brown); text-decoration: none;
    transition: color 0.3s;
  }
  /* ===== HOVER: only fires on devices with a real pointer (mouse/trackpad)
     Prevents hover styles getting permanently stuck after a tap on iOS & Android ===== */
  @media (hover: hover) and (pointer: fine) {
    .nav-links a:hover                              { color: var(--gold); }
    .drawer-close:hover                             { background: rgba(200,151,58,0.18); border-color: var(--gold); }
    .drawer-nav-item:hover                          { padding-left: 6px; }
    .drawer-nav-item:hover .drawer-nav-num          { color: var(--gold); }
    .drawer-nav-item:hover .drawer-nav-text         { color: var(--gold); letter-spacing: 0.04em; }
    .drawer-nav-item:hover .drawer-nav-arrow        { color: var(--gold); opacity: 1; transform: translateX(0); }
    .drawer-nav-item:hover::after                   { width: 100%; }
    .drawer-order-btn:hover                         { background: var(--cream); }
    .hero-cta:hover                                 { background: var(--gold); color: var(--dark-brown); gap: 24px; }
    .tab-btn:hover:not(.active)                     { background: var(--tan); color: var(--dark-brown); }
    .menu-card:hover                                { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(59,31,16,0.15); }
    .menu-card:hover .menu-card-img                 { transform: scale(1.06); }
    .stat-box:hover                                 { background: rgba(200,151,58,0.15); }
    .contact-btn:hover                              { background: var(--dark-brown); color: var(--cream); border-color: var(--dark-brown); }
    .checkbox-label:hover                           { border-color: var(--gold); background: rgba(200,151,58,0.1); }
    .form-submit:hover                              { background: var(--cream); }
    .faq-trigger:hover                              { background: rgba(255,255,255,0.02); }
    .review-card:hover                              { box-shadow: 0 8px 30px rgba(59,31,16,0.12); transform: translateY(-3px); }
    .img-overlay-close:hover                        { color: var(--cream); }
    .footer-col ul li a:hover                       { color: var(--gold); }
    .footer-bottom a:hover                          { color: var(--gold); }
  }

  /* ===== WIDE DESKTOP (1440px+): cap inner content width for readability ===== */
  @media (min-width: 1440px) {
    nav {
      padding-left:  calc((100vw - 1440px) / 2 + 60px);
      padding-right: calc((100vw - 1440px) / 2 + 60px);
    }
    .hero-left        { padding-left:  calc((100vw - 1440px) / 2 + 80px); }
    .menu-section     { padding-left:  calc((100vw - 1440px) / 2 + 80px); padding-right: calc((100vw - 1440px) / 2 + 80px); }
    .about-strip      { padding-left:  calc((100vw - 1440px) / 2 + 80px); padding-right: calc((100vw - 1440px) / 2 + 80px); }
    .order-section    { padding-left:  calc((100vw - 1440px) / 2 + 80px); padding-right: calc((100vw - 1440px) / 2 + 80px); }
    footer            { padding-left:  calc((100vw - 1440px) / 2 + 80px); padding-right: calc((100vw - 1440px) / 2 + 80px); }
    .divider          { margin-left:   calc((100vw - 1440px) / 2 + 80px); margin-right:  calc((100vw - 1440px) / 2 + 80px); }
    #reviews .section-header { padding-left: calc((100vw - 1440px) / 2 + 80px); padding-right: calc((100vw - 1440px) / 2 + 80px); }
  }

  /* HAMBURGER */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 40px; height: 40px;
    cursor: pointer;
    background: none; border: none;
    padding: 4px;
    z-index: 200;
  }
  .nav-hamburger span {
    display: block;
    height: 1.5px;
    background: var(--dark-brown);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    transform-origin: center;
  }
  .nav-hamburger span:nth-child(1) { width: 22px; }
  .nav-hamburger span:nth-child(2) { width: 16px; }
  .nav-hamburger span:nth-child(3) { width: 22px; }
  .nav-hamburger.open span { background: var(--gold); }
  .nav-hamburger.open span:nth-child(1) { width: 22px; transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { width: 22px; transform: translateY(-6.5px) rotate(-45deg); }

  /* MOBILE DRAWER — PREMIUM */
  .nav-drawer {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 150;
    background: #f5f0e8;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.55s cubic-bezier(.77,0,.18,1);
    overflow: hidden;
  }
  .nav-drawer.open { display: flex; clip-path: inset(0 0 0% 0); }

  /* gold top accent line */
  .nav-drawer::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    flex-shrink: 0;
  }

  /* big decorative BB watermark */
  .nav-drawer::after {
    content: 'BB';
    position: absolute;
    right: -10px; bottom: -30px;
    font-family: 'Playfair Display', serif;
    font-size: 22rem; font-weight: 700;
    color: rgba(255,255,255,0.025);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  .drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(200,151,58,0.12);
    flex-shrink: 0;
  }
  .drawer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700;
    letter-spacing: 0.14em;
    color: #3b1f10;
    text-decoration: none;
  }
  .drawer-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(200,151,58,0.3);
    background: rgba(200,151,58,0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem;
    cursor: pointer; transition: all 0.25s;
    flex-shrink: 0;
  }

  .drawer-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4px 40px;
    position: relative; z-index: 1;
  }

  .drawer-nav-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(200,151,58,0.12);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: padding-left 0.3s ease;
    -webkit-tap-highlight-color: rgba(200,151,58,0.15);
  }
  .drawer-nav-item:last-child { border-bottom: none; }

  .drawer-nav-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem; font-weight: 700;
    letter-spacing: 0.22em;
    color: rgba(200,151,58,0.7);
    min-width: 20px;
    transition: color 0.3s;
  }

  /* thin gold rule between number and text */
  .drawer-nav-item::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.4s ease;
  }

  .drawer-nav-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; font-weight: 600;
    color: #3b1f10;
    letter-spacing: 0.02em;
    line-height: 1;
    transition: color 0.3s, letter-spacing 0.3s;
  }

  .drawer-nav-arrow {
    margin-left: auto;
    color: rgba(200,151,58,0.45);
    font-size: 0.85rem;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-6px);
  }

  .drawer-bottom {
    padding: 24px 40px calc(44px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative; z-index: 1;
    border-top: 1px solid rgba(200,151,58,0.1);
  }
  .drawer-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: var(--dark-brown) !important;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem; font-weight: 800;
    letter-spacing: 0.28em; text-transform: uppercase;
    padding: 18px 32px;
    transition: all 0.3s;
  }
  .drawer-order-btn svg { flex-shrink: 0; }

  .drawer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem; font-weight: 300;
    color: rgba(107,58,42,0.6);
    text-align: center;
    letter-spacing: 0.08em;
    font-style: italic;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    min-height: 100dvh; /* iOS Safari: adjusts when address bar shows/hides */
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 80px 80px;
    position: relative; z-index: 2;
  }
  .hero-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-tag::before {
    content: ''; display: inline-block;
    width: 40px; height: 1px; background: var(--gold);
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 700; line-height: 1.05;
    color: var(--dark-brown); margin-bottom: 28px;
  }
  .hero-title em { font-style: italic; color: var(--brown); }
  .hero-subtitle {
    font-size: 1.15rem; font-weight: 300;
    color: var(--brown); line-height: 1.7;
    max-width: 400px; margin-bottom: 48px;
  }
  .hero-cta {
    display: inline-flex; align-items: center; gap: 16px;
    background: var(--dark-brown); color: var(--cream);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    padding: 18px 40px; transition: all 0.4s ease;
    width: fit-content;
  }

  .delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(107,58,42,0.2);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(107,58,42,0.6);
    background: transparent;
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
  }
  .delivery-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 0 2px rgba(76,175,80,0.25);
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 2px rgba(76,175,80,0.25); }
    50%       { box-shadow: 0 0 0 5px rgba(76,175,80,0.1); }
  }

  .hero-right {
    position: relative; overflow: hidden;
    background: #1e0d05;
  }
  .hero-img-grid {
    position: absolute; inset: 0;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    opacity: 0.88;
    overflow: hidden;
  }
  .hero-img-grid img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.82) contrast(1.08);
  }

  .logo-circle-hero {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 170px; height: 170px;
    border-radius: 50%;
    background: rgba(245,240,232,0.97);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 2px solid var(--gold);
  }
  .bb-monogram {
    font-family: 'Bodoni Moda', serif;
    font-size: 3.2rem; font-weight: 700;
    color: #c8b89a; line-height: 1;
  }
  .bb-name {
    font-family: 'Playfair Display', sans-serif;
    font-size: 0.5rem; letter-spacing: 0.35em;
    color: #553324; text-transform: uppercase;
    margin-top: 2px;
  }
  .hero-overlay-text {
    position: absolute; bottom: 50px; left: 40px;
    z-index: 10; color: var(--cream);
  }
  .hero-overlay-text .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; font-weight: 700;
    opacity: 0.15; line-height: 1;
  }
  .hero-overlay-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; letter-spacing: 0.3em;
    text-transform: uppercase; opacity: 1;
    margin-top: -10px;
  }

  /* MARQUEE */
  .marquee-strip {
    background: var(--gold); padding: 16px 0; overflow: hidden;
  }
  .marquee-inner {
    display: flex;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
    will-change: transform;
  }
  .marquee-item {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem; font-weight: 600;
    color: var(--dark-brown); padding: 0 36px;
    letter-spacing: 0.05em;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* DIVIDER */
  .divider {
    display: flex; align-items: center; gap: 20px;
    margin: 0 80px; padding: 60px 0 40px;
  }
  .divider-line {
    flex: 1; height: 1px;
    background: linear-gradient(to right, transparent, var(--tan), transparent);
  }
  .divider-diamond {
    width: 8px; height: 8px;
    background: var(--gold); transform: rotate(45deg);
  }

  /* SECTION HEADER */
  .section-header { text-align: center; margin-bottom: 50px; }
  .section-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700; color: var(--dark-brown); line-height: 1.15;
  }
  .section-title em { font-style: italic; color: var(--brown); }

  /* MENU */
  .menu-section { padding: 40px 80px 100px; }
  /* The menu section uses .reveal but must always show the active panel —
     ensure the panel content itself is never invisible */
  #menu .menu-panel.active { opacity: 1 !important; transform: none !important; }
  .category-tabs {
    display: flex; justify-content: center; gap: 0;
    margin-bottom: 50px;
    border: 1px solid var(--tan);
    width: fit-content; margin: 0 auto 50px;
    flex-wrap: wrap;
  }
  .tab-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    padding: 14px 28px; border: none;
    background: transparent; color: var(--brown);
    cursor: pointer; transition: all 0.3s;
    border-right: 1px solid var(--tan);
  }
  .tab-btn:last-child { border-right: none; }
  .tab-btn.active { background: var(--dark-brown); color: var(--cream); }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
  }
  .menu-panel { display: none; }
  .menu-panel.active { display: block; }
  .ganache-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
  }

  .menu-card {
    background: var(--card-bg); overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(212,184,150,0.3);
    border-radius: 2px;
  }
  .menu-card-img-wrap { overflow: hidden; position: relative; }

  /* NAME ROW — name on left, badge on right */
  .menu-card-name-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
  }
  .menu-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 600;
    color: var(--dark-brown);
  }
  /* INLINE BADGE — sits right of product name */
  .card-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 9px;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
  }
  .card-badge.dark {
    background: var(--dark-brown);
    color: var(--cream);
    border: none;
  }
  .card-badge.gold {
    background: var(--gold);
    color: var(--dark-brown);
    border: none;
  }
  .menu-card-img {
    width: 100%; height: 220px;
    object-fit: cover; display: block;
    background: linear-gradient(135deg, #3b1f10 0%, #6b3a2a 50%, #c8973a 100%);
    transition: transform 0.6s ease;
  }
  .menu-card-body { padding: 22px 24px 26px; border-top: 2px solid var(--gold); }
  .menu-card-desc {
    font-size: 0.9rem; color: var(--brown);
    line-height: 1.65; margin-bottom: 16px; font-weight: 300;
  }
  .menu-card-footer { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
  .menu-card-footer .menu-card-weight { margin-left: auto; }
  .menu-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700; color: var(--gold);
  }
  /* WEIGHT BADGE */
  .menu-card-weight {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(107,58,42,0.65);
    border: 1px solid rgba(212,184,150,0.55);
    padding: 3px 8px;
    border-radius: 2px;
    background: rgba(212,184,150,0.1);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .menu-card-weight::before {
    content: '';
    display: inline-block;
    width: 9px; height: 9px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b3a2a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4z'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cpath d='M16 10a4 4 0 01-8 0'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    flex-shrink: 0;
  }
  .minimum-order-box{
    width: calc(100% - 40px);
    max-width: 1100px;
    margin: 10px auto 50px auto;
    padding: 14px 18px;
    border: 1px solid rgba(200, 151, 58, 0.35);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    text-align: center;
    color: #c8973a;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-sizing: border-box;
}

@media (max-width: 768px){
    .minimum-order-box{
        width: calc(100% - 24px);
        margin: 5px auto 35px auto;
        padding: 12px 14px;
        font-size: 13px;
        border-radius: 12px;
    }
}


  /* ABOUT */
  .about-strip {
    background: var(--dark-brown); padding: 100px 80px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    position: relative; overflow: hidden;
  }
  .about-strip::before {
    content: 'BB';
    position: absolute; right: -20px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 18rem; font-weight: 700;
    color: rgba(255,255,255,0.03); line-height: 1;
    pointer-events: none;
  }
  .about-text .section-tag { color: var(--gold-light); }
  .about-text .section-title { color: var(--cream); text-align: left; margin-bottom: 24px; }
  .about-text p {
    color: rgba(245,240,232,0.7); font-size: 1.1rem;
    line-height: 1.8; font-weight: 300; margin-bottom: 16px;
    text-align: justify;
  }
  .stats-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; background: rgba(200,151,58,0.2);
  }
  .stat-box {
    background: rgba(245,240,232,0.05); padding: 40px 30px;
    text-align: center; transition: background 0.3s;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1;
  }
  .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--tan); margin-top: 8px;
  }

  /* ORDER */
  .order-section {
    padding: 100px 80px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
  }
  .order-left .section-tag { text-align: left; }
  .order-left .section-title { text-align: left; margin-bottom: 24px; }
  .order-left p {
    font-size: 1.1rem; line-height: 1.8;
    color: var(--brown); font-weight: 300; margin-bottom: 40px;
  }
  .contact-btns { display: flex; flex-direction: column; gap: 12px; }
  .contact-btn {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 28px; border: 1px solid var(--tan);
    text-decoration: none; color: var(--dark-brown);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    transition: all 0.3s; background: var(--card-bg);
    cursor: pointer;
  }
  .contact-btn-icon { font-size: 1.2rem; }
  .order-right { background: var(--dark-brown); padding: 50px; }
  .order-right h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; color: var(--cream); margin-bottom: 8px;
  }
  .order-right p { font-size: 0.9rem; color: var(--tan); margin-bottom: 32px; font-weight: 300; }

  /* FORM */
  .form-row { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
  .form-input {
    width: 100%; padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,184,150,0.2);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    -webkit-appearance: none; /* removes iOS native input styling */
    border-radius: 0;         /* iOS adds border-radius to inputs by default */
    outline: none; transition: border-color 0.3s;
  }
  .form-input::placeholder { color: rgba(245,240,232,0.3); }
  .form-input:focus { border-color: var(--gold); }
  .form-input.input-error { border-color: #e05c5c; }
  textarea.form-input { resize: vertical; min-height: 100px; }
  .form-error-msg {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #e07a5f; margin-top: 5px;
    display: none;
  }
  .form-error-msg.visible { display: block; }

  /* CHECKBOX STYLES */
  .checkbox-group {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; margin-bottom: 12px;
  }
  .checkbox-label {
    display: flex; align-items: center; gap: 10px;
    color: var(--cream); font-size: 0.88rem;
    cursor: pointer; padding: 8px 12px;
    border: 1px solid rgba(212,184,150,0.2);
    transition: all 0.2s;
  }
  .checkbox-label input[type="checkbox"] {
    appearance: none; width: 16px; height: 16px;
    border: 1px solid rgba(212,184,150,0.5);
    background: transparent; cursor: pointer;
    position: relative; flex-shrink: 0;
    transition: all 0.2s;
  }
  .checkbox-label input[type="checkbox"]:checked {
    background: var(--gold); border-color: var(--gold);
  }
  .checkbox-label input[type="checkbox"]:checked::after {
    content: '✓'; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-size: 10px; color: var(--dark-brown); font-weight: 700;
  }
  .checkbox-group-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--tan); margin-bottom: 8px;
  }

  .form-submit {
    width: 100%; padding: 16px;
    background: var(--gold); color: var(--dark-brown);
    border: none; font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s; margin-top: 12px;
  }

  /* ===== REVIEWS SECTION ===== */
  #reviews {
    padding: 80px 0;
    background: var(--cream);
    overflow: hidden;
  }
  #reviews .section-header { padding: 0 80px; margin-bottom: 40px; }

  .reviews-marquee-strip {
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 16px 0;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
  }
  .reviews-marquee-strip::-webkit-scrollbar { display: none; }
  .reviews-marquee-strip.is-dragging { cursor: grabbing; }
  .reviews-marquee-strip::before,
  .reviews-marquee-strip::after {
    content: '';
    position: absolute; top: 0; bottom: 0;
    width: 100px; z-index: 2; pointer-events: none;
  }
  .reviews-marquee-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--cream) 40%, transparent);
  }
  .reviews-marquee-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--cream) 40%, transparent);
  }

  .reviews-inner {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 4px 120px;
  }
  .reviews-marquee-strip.is-dragging .review-card { cursor: grabbing !important; }

  .review-card {
    display: inline-flex;
    flex-direction: column;
    width: 280px;
    min-height: 160px;
    background: var(--card-bg);
    border: 1px solid rgba(212,184,150,0.35);
    border-top: 3px solid var(--gold);
    padding: 20px 22px;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
    position: relative;
    z-index: 3;
  }
  .review-card.has-image {
    cursor: pointer;
  }
  .review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    flex-shrink: 0;
  }
  .review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--brown);
    font-weight: 400;
    flex: 1;
    margin-bottom: 14px;
  }
  .review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
  }
  .review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #3b1f10;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem; font-weight: 700;
    color: #f5f0e8;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(59,31,16,0.25);
    border: 2px solid rgba(200,151,58,0.3);
  }
  .review-meta { display: flex; flex-direction: column; }
  .review-name-row {
    display: flex; align-items: center; gap: 5px;
  }
  .review-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark-brown);
  }
  .verified-badge {
    display: inline-flex; align-items: center; gap: 3px;
    background: rgba(200,151,58,0.12);
    border: 1px solid rgba(200,151,58,0.4);
    border-radius: 20px;
    padding: 1px 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.42rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
  }
  .verified-badge svg {
    width: 8px; height: 8px; flex-shrink: 0;
  }
  .review-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(107,58,42,0.45);
    margin-top: 2px;
  }
  .review-img-wrap {
    width: 100%;
    height: 120px;
    border-radius: 2px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #c8973a 0%, #6b3a2a 100%);
    overflow: hidden;
    flex-shrink: 0;
  }
  .review-img-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
    transition: opacity 0.3s;
  }
  .review-img-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  /* IMAGE ZOOM OVERLAY */
  .img-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 8, 2, 0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); /* required for Safari */
    display: none;
  }
  .img-overlay:not([hidden]) { display: flex; }
  .img-overlay.open { display: flex; }
  .img-overlay img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border: 2px solid var(--gold);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  }
  .img-overlay-close {
    position: absolute;
    top: 28px; right: 36px;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    transition: color 0.2s;
  }

  /* FOOTER */
  footer {
    background: #1a0c06; padding: 60px 80px 40px;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  }
  .footer-brand .nav-logo { color: var(--cream); font-size: 1.5rem; display: block; margin-bottom: 16px; }
  .footer-brand p { font-size: 0.9rem; color: var(--tan); line-height: 1.7; font-weight: 300; max-width: 280px; }
  .footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    text-decoration: none; color: var(--tan);
    font-size: 0.95rem; font-weight: 300; transition: color 0.3s;
  }
  .footer-bottom {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(212,184,150,0.15);
    padding-top: 30px;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 10px;
  }
  .footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; letter-spacing: 0.1em;
    color: rgba(212,184,150,0.4); text-transform: uppercase;
  }
  .footer-bottom a { color: rgba(200,151,58,0.6); text-decoration: none; transition: color 0.3s; }

  /* ===== MOBILE MENU SCROLL INDICATORS ===== */

  /* Wrapper that holds grid + dots together */
  .menu-panel-inner {
    position: relative;
  }

  /* Swipe hint — feathered right edge nudge, only on mobile */
  .menu-panel-inner::after {
    content: '';
    display: none;
  }

  /* Dot pagination row */
  .menu-dots {
    display: none; /* hidden on desktop */
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    min-height: 18px;
  }
  .menu-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--tan);
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
  }
  .menu-dot.active {
    background: var(--gold);
    width: 18px;
    border-radius: 3px;
  }

  /* Swipe nudge — gold feathered arrow that fades in then out on first view */
  .swipe-nudge {
    display: none; /* shown only on mobile via media query */
    position: absolute;
    right: 0;
    top: 0;
    bottom: 12px; /* above the padding-bottom of the grid */
    width: 52px;
    pointer-events: none;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(to right, transparent 0%, rgba(253,248,242,0.72) 35%, rgba(253,248,242,0.97) 100%);
    z-index: 4;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .swipe-nudge.visible {
    opacity: 1;
  }
  .swipe-nudge.hidden {
    opacity: 0;
    pointer-events: none;
  }
  .swipe-nudge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding-right: 4px;
    animation: nudge-bounce 1.4s ease-in-out infinite;
  }
  .swipe-nudge-chevrons {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .swipe-nudge-chevrons span {
    display: block;
    width: 8px; height: 8px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(-45deg);
    opacity: 0.5;
  }
  .swipe-nudge-chevrons span:nth-child(2) { opacity: 0.8; }
  .swipe-nudge-chevrons span:nth-child(3) { opacity: 1; }
  .swipe-nudge-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.38rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin-top: 6px;
  }
  @keyframes nudge-bounce {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(4px); }
  }

  @media (max-width: 900px) {
    .menu-dots   { display: flex; }
    .swipe-nudge { display: flex; }
  }

  /* ===== TABLET (max 900px) ===== */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .nav-drawer { display: flex; }

    .hero { grid-template-columns: 1fr; }
    .hero-right { height: 100vw; min-height: 360px; max-height: 560px; }
    .hero-left { padding: 110px 28px 60px; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .hero-subtitle { font-size: 1rem; max-width: 100%; }

    .menu-section { padding: 40px 20px 80px; }
    .about-strip, .order-section { padding: 60px 24px; grid-template-columns: 1fr; gap: 40px; }
    /* Horizontal scroll for menu cards on tablet/mobile */
    .menu-grid,
    .ganache-grid {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      gap: 16px;
      padding-bottom: 12px;
      /* proximity instead of mandatory: only snaps when the finger is near a
         snap point, so fast swipes glide naturally instead of jumping */
      scroll-snap-type: x proximity;
      /* prevent vertical page scroll fighting horizontal card scroll on iOS */
      overscroll-behavior-x: contain;
      /* offset the snap so the leading edge of each card aligns with the
         left padding of the section (16 px on mobile, 20 px on tablet) */
      scroll-padding-left: 16px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .menu-grid::-webkit-scrollbar,
    .ganache-grid::-webkit-scrollbar { display: none; }
    .menu-grid .menu-card,
    .ganache-grid .menu-card {
      flex: 0 0 85vw;
      max-width: 340px;
      scroll-snap-align: start;
      /* never allow a single swipe to skip past this card */
      scroll-snap-stop: always;
    }
    footer { grid-template-columns: 1fr; padding: 40px 24px; }
    .divider { margin: 0 24px; }
    #reviews .section-header { padding: 0 24px; }
    .checkbox-group { grid-template-columns: 1fr; }

    /* Category tabs — fix: desktop uses width:fit-content + margin:auto which
       centers the overflowing bar, clipping Fudgy Brownies on the left.
       Override to full-width, left-aligned, scrollable on mobile. */
    .category-tabs {
      width: 100% !important;
      max-width: 100% !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      touch-action: pan-x;
      scrollbar-width: none;
      border: 1px solid var(--tan);
      border-radius: 0;
      scroll-snap-type: x mandatory;
      justify-content: flex-start;
    }
    .category-tabs::-webkit-scrollbar { display: none; }
    .tab-btn {
      flex: 0 0 auto;
      white-space: nowrap;
      font-size: 0.6rem;
      padding: 12px 20px;
      min-width: 44px;
      touch-action: manipulation;
      cursor: pointer;
      -webkit-tap-highlight-color: rgba(200,151,58,0.18);
      scroll-snap-align: start;
    }

    .order-right { padding: 32px 24px; }
  }

  /* ===== MOBILE (max 600px) ===== */
  @media (max-width: 600px) {
    nav { padding: 14px 18px; }
    .nav-logo { font-size: 1.05rem; letter-spacing: 0.08em; }

    .hero-left { padding: 90px 20px 48px; }
    .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 32px; }
    .hero-cta { padding: 14px 28px; font-size: 0.62rem; }
    .hero-right { height: 100vw; min-height: 320px; }
    .logo-circle-hero { width: 120px; height: 120px; }
    .bb-monogram { font-size: 2.2rem; }

    /* ── Mobile section headers: left-aligned, refined sizing ── */
    .section-header {
      text-align: left;
      margin-bottom: 32px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }
    .section-tag {
      font-size: 0.58rem;
      letter-spacing: 0.3em;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-tag::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }
    .section-title {
      font-size: clamp(1.55rem, 6.5vw, 2rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    .menu-section { padding: 32px 16px 60px; }
    .menu-grid .menu-card,
    .ganache-grid .menu-card { flex: 0 0 88vw; }
    /* tighten scroll-padding to match the narrower mobile section padding */
    .menu-grid,
    .ganache-grid { scroll-padding-left: 16px; }
    .menu-card-img { height: 180px; }
    .menu-card-body { padding: 16px 18px 20px; }
    .menu-card-name { font-size: 1.1rem; }
    .menu-card-price { font-size: 1.4rem; }

    .about-strip { padding: 48px 20px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-num { font-size: 2.2rem; }

    .order-section { padding: 48px 20px; }
    .order-right { padding: 28px 20px; }
    .order-right h3 { font-size: 1.4rem; }
    .contact-btn { padding: 14px 20px; font-size: 0.6rem; }

    #reviews { padding: 60px 0; }
    #reviews .section-header { padding: 0 20px; margin-bottom: 28px; text-align: left; align-items: flex-start; }

    .faq-trigger { padding: 20px 20px; }
    .faq-inner { padding: 0 20px 40px; }
    .faq-trigger-title { font-size: 1rem; margin-left: 8px; }
    .faq-trigger-meta { display: none; }

    footer { padding: 40px 20px 28px; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

    .divider { margin: 0 20px; padding: 40px 0 28px; }
    .delivery-badge { font-size: 0.56rem; padding: 5px 12px; }
    /* iOS Safari auto-zooms when input font-size < 16px — this prevents it */
    .form-input, textarea.form-input { font-size: 16px; }
  }

  /* ===== FAQ MOBILE HINT BADGE ===== */
  .faq-hint-badge {
    display: none; /* mobile only */
  }
  @media (max-width: 700px) {
    .faq-hint-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(200,151,58,0.12);
      border: 1px solid rgba(200,151,58,0.4);
      border-radius: 50px;
      padding: 4px 10px 4px 8px;
      pointer-events: none;
      animation: faq-hint-float 3.2s ease-in-out infinite;
      flex-shrink: 0;
      opacity: 1;
      transition: opacity 0.35s ease, width 0.35s ease, padding 0.35s ease;
      overflow: hidden;
    }
    .faq-hint-badge.hidden {
      opacity: 0;
      width: 0 !important;
      padding: 0 !important;
      border-color: transparent;
      gap: 0;
      animation: none;
    }
    .faq-hint-icon {
      display: flex;
      flex-direction: column;
      gap: 2px;
      align-items: center;
      flex-shrink: 0;
    }
    .faq-hint-chevron {
      display: block;
      width: 6px;
      height: 4px;
      border-right: 1.5px solid var(--gold);
      border-bottom: 1.5px solid var(--gold);
      transform: rotate(45deg);
      animation: faq-chevron-bounce 1.6s ease-in-out infinite;
    }
    .faq-hint-chevron:nth-child(2) {
      animation-delay: 0.18s;
      opacity: 0.5;
    }
    .faq-hint-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.48rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      white-space: nowrap;
    }
    @keyframes faq-hint-float {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-2px); }
    }
    @keyframes faq-chevron-bounce {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.3; }
    }
  }

  /* ===== FAQ SECTION — PREMIUM REDESIGN ===== */
  .faq-section {
    background: var(--dark-brown);
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .faq-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,151,58,0.4), transparent);
  }
  .faq-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,151,58,0.4), transparent);
  }

  /* Collapsed trigger bar */
  .faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 60px;
    cursor: pointer;
    user-select: none;
    transition: background 0.4s;
  }
  @media (max-width: 700px) { .faq-trigger { padding: 22px 24px; } }

  .faq-trigger-left {
    display: flex; align-items: center; gap: 20px;
  }
  .faq-trigger-line {
    width: 32px; height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
  }
  .faq-trigger-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; font-weight: 800;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold);
  }
  .faq-trigger-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600; color: var(--cream);
    letter-spacing: 0.01em;
    margin-left: 16px;
  }
  .faq-trigger-right {
    display: flex; align-items: center; gap: 20px;
  }
  .faq-trigger-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(200,151,58,0.45);
  }
  .faq-toggle-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(200,151,58,0.3);
    background: rgba(200,151,58,0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    transition: background 0.3s, border-color 0.3s, transform 0.45s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
  }
  .faq-toggle-btn.open { transform: rotate(45deg); }
  @media (hover: hover) and (pointer: fine) {
    .faq-trigger:hover .faq-toggle-btn {
      background: rgba(200,151,58,0.14);
      border-color: rgba(200,151,58,0.55);
    }
  }

  /* Body */
  .faq-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.7s cubic-bezier(.4,0,.2,1), opacity 0.5s ease;
    background: #fdf8f2;
    border-top: 1px solid rgba(107,58,42,0.1);
  }
  .faq-body.open { max-height: 2000px; opacity: 1; }

  .faq-inner {
    padding: 0 60px 60px;
    max-width: 1100px;
    margin: 0 auto;
  }
  @media (max-width: 700px) { .faq-inner { padding: 0 24px 48px; } }

  /* Section intro */
  .faq-intro {
    display: flex; align-items: center; gap: 16px;
    padding: 32px 0 32px 0;
    border-bottom: 1px solid rgba(107,58,42,0.1);
    margin-bottom: 0;
  }
  .faq-intro-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(107,58,42,0.15), transparent);
  }
  .faq-intro-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(107,58,42,0.35);
    white-space: nowrap;
  }

  /* Category groups */
  .faq-category {
    border-bottom: 1px solid rgba(107,58,42,0.08);
  }
  .faq-category:last-child { border-bottom: none; }

  .faq-cat-header {
    display: flex; align-items: center; gap: 16px;
    padding: 28px 0 18px;
  }
  .faq-cat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--dark-brown);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
    box-shadow: 0 4px 14px rgba(59,31,16,0.2);
  }
  .faq-cat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 700;
    color: rgba(107,58,42,0.35);
    line-height: 1;
    letter-spacing: -0.02em;
    min-width: 48px;
  }
  .faq-cat-info { display: flex; flex-direction: column; gap: 3px; }
  .faq-cat-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold);
  }
  .faq-cat-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--dark-brown); letter-spacing: 0.01em;
  }

  /* Individual items */
  .faq-items { padding-bottom: 8px; }
  .faq-item {
    border-top: 1px solid rgba(107,58,42,0.06);
    border-radius: 6px;
    transition: background 0.25s;
    margin-bottom: 1px;
  }
  .faq-item:first-child { border-top: none; }
  .faq-item.active { background: rgba(200,151,58,0.07); border-radius: 8px; }

  .faq-question {
    width: 100%; display: flex; align-items: center; gap: 12px;
    background: transparent; border: none;
    padding: 16px 12px; cursor: pointer; text-align: left;
    transition: padding-left 0.2s, background 0.2s;
    border-radius: 8px;
  }
  .faq-item.active .faq-question { padding-left: 18px; }
  @media (hover: hover) and (pointer: fine) {
    .faq-question:hover { background: rgba(107,58,42,0.04); padding-left: 18px; }
  }

  .faq-q-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem; font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(107,58,42,0.55);
    min-width: 22px; text-align: right;
    flex-shrink: 0;
  }
  .faq-item.active .faq-q-num { color: var(--gold); }

  .faq-q-icon {
    font-size: 0.9rem; flex-shrink: 0;
    opacity: 0.45; transition: opacity 0.25s, transform 0.25s;
  }
  .faq-item.active .faq-q-icon { opacity: 1; transform: scale(1.15); }
  @media (hover: hover) and (pointer: fine) {
    .faq-question:hover .faq-q-icon { opacity: 1; transform: scale(1.15); }
  }

  .faq-q-text {
    flex: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-weight: 500;
    color: rgba(42,21,8,0.65);
    line-height: 1.5;
    transition: color 0.25s;
  }
  .faq-item.active .faq-q-text { color: var(--dark-brown); font-weight: 600; }
  @media (hover: hover) and (pointer: fine) {
    .faq-question:hover .faq-q-text { color: var(--dark-brown); font-weight: 600; }
  }

  .faq-arrow {
    width: 22px; height: 22px; flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(107,58,42,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(107,58,42,0.3);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1),
                color 0.25s, border-color 0.25s, background 0.25s;
  }
  .faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--gold);
    border-color: rgba(200,151,58,0.45);
    background: rgba(200,151,58,0.1);
  }

  /* Answer */
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .faq-item.active .faq-answer { max-height: 400px; }

  .faq-answer-inner {
    padding: 4px 16px 20px 62px;
    border-left: 2px solid rgba(200,151,58,0.25);
    margin-left: 34px;
    position: relative;
  }
  .faq-answer-inner::before {
    content: '';
    position: absolute; top: 0; left: -2px;
    width: 2px; height: 16px;
    background: var(--gold);
  }
  .faq-answer-inner p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.02rem; line-height: 1.85;
    color: rgba(42,21,8,0.6);
    margin: 0 0 8px 0;
  }
  .faq-answer-inner p:last-child { margin-bottom: 0; }
  .faq-answer-inner strong { color: var(--dark-brown); font-weight: 600; }
  .faq-list { list-style: none; padding: 4px 0 0; margin: 0; }
  .faq-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; line-height: 1.85;
    color: rgba(42,21,8,0.55);
    padding: 2px 0 2px 16px;
    position: relative;
  }
  .faq-list li::before {
    content: '–'; position: absolute; left: 0;
    color: var(--gold); font-weight: 600;
  }

  /* Footer note */
  .faq-footer-note {
    margin-top: 36px;
    padding: 22px 28px;
    border: 1px solid rgba(107,58,42,0.1);
    border-radius: 10px;
    background: rgba(59,31,16,0.03);
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
  }
  .faq-footer-note-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; color: rgba(42,21,8,0.45); font-style: italic;
  }
  .faq-footer-note-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--dark-brown); text-decoration: none;
    border-bottom: 1px solid rgba(59,31,16,0.25);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
  }
  @media (hover: hover) and (pointer: fine) {
    .faq-footer-note-link:hover { color: var(--gold); border-color: var(--gold); }
  }
  @media (max-width: 600px) {
    .faq-footer-note { flex-direction: column; align-items: flex-start; padding: 18px; }
    .faq-trigger-title { display: none; }
    .faq-trigger-meta { display: none; }
  }

  /* ===== INGREDIENTS PANEL ===== */
  .ingredients-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    cursor: pointer;
    border: 1px solid rgba(107,58,42,0.25);
    padding: 5px 12px;
    border-radius: 2px;
    background: transparent;
    transition: all 0.2s;
    user-select: none;
  }
  @media (hover: hover) and (pointer: fine) {
    .ingredients-toggle:hover {
      background: var(--dark-brown);
      color: var(--cream);
      border-color: var(--dark-brown);
    }
  }
  .ingredients-toggle .ing-arrow {
    display: inline-block;
    transition: transform 0.25s;
    font-size: 0.65rem;
  }
  .ingredients-toggle.open .ing-arrow { transform: rotate(180deg); }

  .ingredients-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 0;
  }
  .ingredients-panel.open {
    max-height: 400px;
    opacity: 1;
    margin-top: 8px;
  }
  .ingredients-inner {
    background: rgba(59,31,16,0.04);
    border-left: 2px solid var(--gold);
    padding: 10px 14px 12px;
    border-radius: 0 2px 2px 0;
  }
  .ing-list {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.88rem;
    color: var(--brown);
    line-height: 1.7;
    font-weight: 400;
    margin: 0 0 8px 0;
  }
  .ing-no-pres {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #4caf50;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .ing-no-pres::before {
    content: '✓';
    font-size: 0.65rem;
  }
  .ing-nutrition {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(107,58,42,0.5);
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.6;
  }
  .ing-customize {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.2s;
  }
  @media (hover: hover) and (pointer: fine) {
    .ing-customize:hover { color: var(--dark-brown); }
  }

  /* ===== ACCESSIBILITY: FOCUS VISIBLE STYLES ===== */
  :focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }
  .tab-btn:focus-visible,
  .faq-question:focus-visible,
  .ingredients-toggle:focus-visible,
  .contact-btn:focus-visible,
  .hero-cta:focus-visible,
  .form-submit:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  /* ===== ACCESSIBILITY: RESPECT REDUCED MOTION PREFERENCE ===== */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .marquee-inner { animation: none !important; }
  }

  /* ===== EXTRACTED FROM INLINE STYLES ===== */
  /* Previously: style="margin-top:14px;" on every .menu-card-footer */
  .menu-card-footer { margin-top: 14px; }

  /* Previously: style="scroll-margin-top: 80px;" on #menu */
  #menu { scroll-margin-top: 80px; }

  /* Previously: style="scroll-margin-top: calc(50vh - 80px)" on #faq-bar */
  #faq-bar { scroll-margin-top: calc(50vh - 80px); }

  /* Previously: style="display:flex;flex-direction:column;align-items:flex-start;gap:0;" on hero CTA wrapper */
  .hero-cta-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }

  /* Previously: style="background:linear-gradient(270deg,rgba(200,151,58,0.25),transparent)" on second faq-intro-line */
  .faq-intro-line--rtl { background: linear-gradient(270deg, rgba(200,151,58,0.25), transparent); }

  /* Previously: style="color:var(--gold);letter-spacing:0.08em;" on footer credit anchor */
  .footer-credit-link { color: var(--gold); letter-spacing: 0.08em; text-decoration: none; transition: color 0.3s; }
  @media (hover: hover) and (pointer: fine) {
    .footer-credit-link:hover { color: var(--gold-light); }
  }
