/* ============================================================
   LA BOCCA JUICE — main stylesheet
   Playful · summery · premium · mobile-first.
   Animates transform/opacity only. Respects reduced-motion.
   ============================================================ */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cta-orange); text-decoration: none; }
a:hover { color: var(--mango-orange); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    line-height: 1.12;
    margin: 0 0 0.5em;
    font-weight: 700;
    letter-spacing: -0.01em;
}
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--cta-orange); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Section rhythm */
.section { padding: 72px 0; }
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cta-orange);
    margin-bottom: 0.6rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.section-lead { font-size: 1.06rem; color: var(--color-muted); max-width: 620px; }
.section-lead.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    min-height: 48px;
    padding: 16px 30px;
    border-radius: var(--radius-btn);
    border: 2px solid transparent;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary   { background: var(--cta-orange); color: #fff; }
.btn-primary:hover { background: #ff9a1f; color: #fff; }
.btn-secondary { background: var(--banana-yellow); color: var(--chocolate-brown); }
.btn-secondary:hover { background: #ffdd6e; color: var(--chocolate-brown); }
.btn-outline   { background: transparent; border-color: var(--chocolate-brown); color: var(--chocolate-brown); }
.btn-outline:hover { background: var(--chocolate-brown); color: var(--cream); }
.btn-block { width: 100%; }

/* ============================================================
   HEADER + NAV
   ============================================================ */
.site-header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(255, 248, 238, 0.92);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid rgba(93,64,55,0.08);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; min-height: var(--header-height);
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img, .header-logo-img { height: 52px; width: auto; }

.header-nav-wrap { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav-links { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }
.nav-links a {
    display: inline-block;
    padding: 10px 14px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--chocolate-brown);
    border-radius: 12px;
    transition: background var(--transition), color var(--transition);
}
.nav-links a:hover, .nav-links .current-menu-item > a { background: var(--light-yellow); color: var(--chocolate-brown); }

.header-order-btn { flex-shrink: 0; }

/* Hamburger */
.hamburger {
    display: none;
    width: 48px; height: 48px;
    border: 0; background: transparent;
    padding: 10px; border-radius: 12px;
    flex-direction: column; justify-content: center; gap: 5px;
    z-index: 210;
}
.hamburger span {
    display: block; height: 3px; width: 26px; border-radius: 3px;
    background: var(--chocolate-brown);
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 64px 0 80px;
    background:
        radial-gradient(1100px 460px at 85% -8%, var(--light-yellow), transparent 60%),
        radial-gradient(900px 420px at 0% 110%, var(--light-mint), transparent 60%),
        var(--cream);
    overflow: hidden;
}
.hero-inner {
    display: grid; grid-template-columns: 1.05fr 1fr;
    align-items: center; gap: 40px;
}
.hero-text .section-eyebrow { color: var(--strawberry-pink); }
.hero-title { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 0.4rem; }
.hero-subtitle { font-size: 1.18rem; color: var(--color-muted); max-width: 32ch; margin-bottom: 1.6rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media { position: relative; display: flex; justify-content: center; }
.hero-logo {
    width: min(440px, 88%); height: auto;
    filter: drop-shadow(0 24px 40px rgba(93,64,55,0.22));
    animation: floaty 6s ease-in-out infinite;
}

/* Floating background fruit/mascot shapes (GPU only) */
.floaties { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.floaty {
    position: absolute; opacity: 0.85;
    animation: floaty 7s ease-in-out infinite;
    will-change: transform;
}
.floaty img { width: 100%; height: auto; }
.floaty.f1 { width: 64px; top: 12%; left: 6%;  animation-delay: 0s;   }
.floaty.f2 { width: 48px; top: 68%; left: 12%; animation-delay: 1.2s; }
.floaty.f3 { width: 56px; top: 18%; right: 8%; animation-delay: 0.6s; }
.floaty.f4 { width: 40px; top: 78%; right: 14%;animation-delay: 1.8s; }
.hero > .container { position: relative; z-index: 1; }

@keyframes floaty {
    0%,100% { transform: translateY(0) rotate(-2deg); }
    50%     { transform: translateY(-14px) rotate(2deg); }
}

/* Decorative banana mascots dropped into sections */
.mascot-peek {
    position: absolute; width: 70px; pointer-events: none; z-index: 2;
    animation: bobble 5s ease-in-out infinite;
}
@keyframes bobble {
    0%,100% { transform: translateY(0) rotate(-4deg); }
    50%     { transform: translateY(-10px) rotate(4deg); }
}

/* ============================================================
   SIGNATURE — RAINBOW SMOOTHIE (pure CSS drink)
   ============================================================ */
.signature {
    background:
        radial-gradient(700px 360px at 10% 0%, var(--light-mint), transparent 65%),
        var(--cream);
    position: relative;
}
.signature-inner {
    display: grid; grid-template-columns: 0.85fr 1.15fr;
    gap: 48px; align-items: center;
}
.signature-copy .section-title { color: var(--chocolate-brown); }
.signature-copy .section-eyebrow { color: #36b890; }

/* The glass */
.drink { display: flex; justify-content: center; }
.glass {
    position: relative;
    width: 170px; height: 320px;
    border: 6px solid rgba(93,64,55,0.18);
    border-top: 0;
    border-radius: 16px 16px 60px 60px;
    background: rgba(255,255,255,0.45);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    animation: floaty 6s ease-in-out infinite;
}
.glass .layer { position: absolute; left: 0; right: 0; }
.glass .layer.l1 { top: 0;    height: 26%; background: linear-gradient(180deg, #FFB74D, #ff9e2e); }
.glass .layer.l2 { top: 26%;  height: 26%; background: linear-gradient(180deg, #FF6F91, #ff4f78); }
.glass .layer.l3 { top: 52%;  height: 24%; background: linear-gradient(180deg, #8DE1C2, #5ed3a9); }
.glass .layer.l4 { top: 76%;  height: 24%; background: linear-gradient(180deg, #9C6BE3, #7b46c9); }
.glass .shine {
    position: absolute; top: 10px; left: 14px; width: 22px; height: 78%;
    background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
    border-radius: 999px; filter: blur(1px);
}
.straw {
    position: absolute; top: -42px; left: 50%; width: 14px; height: 150px;
    background: repeating-linear-gradient(45deg, var(--strawberry-pink) 0 10px, #fff 10px 20px);
    border-radius: 8px; transform: rotate(12deg); transform-origin: bottom center;
    box-shadow: var(--shadow-sm);
}

/* ============================================================
   WHAT WE SERVE — category teaser tiles
   ============================================================ */
.serve { background: var(--cream); }
.serve-head { text-align: center; margin-bottom: 40px; }
.tiles-grid {
    display: grid; gap: 18px;
    grid-template-columns: repeat(4, 1fr);
}
.cat-tile {
    display: flex; align-items: flex-end;
    min-height: 132px;
    padding: 18px;
    border-radius: var(--radius-card);
    color: var(--chocolate-brown);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    will-change: transform;
    position: relative; overflow: hidden;
}
.cat-tile:hover { transform: translateY(-6px) rotate(-1.2deg); box-shadow: var(--shadow-lg); color: var(--chocolate-brown); }
.cat-tile .tile-name { position: relative; z-index: 1; }
.cat-tile.light-text, .cat-tile.light-text:hover { color: #fff; }

/* category colour classes (shared by menu page + teaser) */
.c-juice        { background: var(--mango-orange); }
.c-crepe        { background: var(--strawberry-pink); }
.c-waffles      { background: var(--chocolate-brown); }
.c-pudding      { background: var(--soft-brown); }
.c-ice-creams   { background: var(--mint-green); }
.c-ashta-plates { background: var(--light-orange); }
.c-hot-drinks   { background: var(--light-pink); }
.c-cold-drinks  { background: var(--light-mint); }

/* ============================================================
   OUR STORY (home short)
   ============================================================ */
.story {
    background:
        radial-gradient(800px 380px at 100% 0%, var(--light-orange), transparent 60%),
        var(--cream);
    position: relative;
}
.story-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.story-inner p { font-size: 1.12rem; }

/* ============================================================
   OPEN LATE (chocolate accent)
   ============================================================ */
.open-late {
    background: var(--chocolate-brown);
    color: var(--cream);
    border-radius: 36px;
    margin: 0 20px;
    position: relative;
    overflow: hidden;
}
.open-late .container { position: relative; z-index: 1; padding-top: 64px; padding-bottom: 64px; }
.open-late h2 { color: var(--banana-yellow); font-size: clamp(2rem, 5vw, 3rem); }
.open-late p { color: rgba(251,239,227,0.92); font-size: 1.1rem; max-width: 620px; }
.open-late .hours-pills { display: flex; gap: 14px; flex-wrap: wrap; margin: 22px 0 26px; }
.hours-pill {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,213,79,0.4);
    border-radius: var(--radius-pill);
    padding: 12px 22px;
}
.hours-pill .label { display: block; font-family: var(--font-heading); color: var(--banana-yellow); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.hours-pill .time  { font-weight: 600; }
.open-late .moon { position: absolute; right: 6%; top: 16%; font-size: 4rem; opacity: 0.5; }

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--cream); }
.location-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: stretch; }
.map-frame {
    position: relative; width: 100%; aspect-ratio: 16 / 11;
    border-radius: var(--radius-card); overflow: hidden;
    box-shadow: var(--shadow-md); background: var(--light-mint);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.location-card {
    background: var(--white); border-radius: var(--radius-card);
    padding: 30px; box-shadow: var(--shadow-sm); align-self: center;
}
.location-card h3 { font-size: 1.5rem; }
.location-card address { font-style: normal; color: var(--color-muted); margin-bottom: 1rem; }
.location-card .meta-row { margin-bottom: 0.85rem; }
.location-card .meta-row strong { color: var(--chocolate-brown); display:block; font-family: var(--font-heading); }

/* ============================================================
   FOOTER (chocolate brown)
   ============================================================ */
.site-footer { background: var(--color-footer-bg); color: var(--color-footer-text); margin-top: 72px; }
.footer-main { padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-brand img { height: 64px; width: auto; margin-bottom: 14px; }
.footer-tagline { color: rgba(251,239,227,0.8); max-width: 30ch; }
.site-footer address { font-style: normal; color: rgba(251,239,227,0.85); line-height: 1.9; }
.site-footer a { color: var(--banana-yellow); }
.site-footer a:hover { color: #fff; }
.footer-col h4 { color: var(--banana-yellow); font-size: 1.05rem; letter-spacing: 0.04em; margin-bottom: 0.9rem; }
.footer-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-social-icons { display: flex; gap: 12px; margin-top: 6px; }
.footer-social-icons a {
    width: 44px; height: 44px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.10); color: var(--cream);
    transition: transform var(--transition), background var(--transition);
}
.footer-social-icons a:hover { transform: translateY(-3px); background: var(--banana-yellow); color: var(--chocolate-brown); }
.footer-bottom { border-top: 1px solid rgba(251,239,227,0.15); padding: 18px 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 0.85rem; color: rgba(251,239,227,0.7); }
.footer-love { font-family: var(--font-heading); color: var(--banana-yellow); }

/* ============================================================
   MENU PAGE — hero + 8-tile grid
   ============================================================ */
.menu-hero {
    position: relative;
    margin: 22px 20px 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 21 / 9;
    box-shadow: var(--shadow-md);
}
.menu-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.menu-hero .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(93,64,55,0.05), rgba(93,64,55,0.5));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; color: #fff; padding: 20px;
}
.menu-hero .overlay h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 3.6rem); margin: 0; text-shadow: 0 2px 18px rgba(0,0,0,0.35); }
.menu-hero .overlay p { color: #fff; font-size: 1.15rem; margin: 0.3rem 0 0; }

.menu-grid-section { padding: 48px 0 96px; }
.menu-tiles {
    display: grid; gap: 18px;
    grid-template-columns: repeat(4, 1fr);
}
.menu-tile {
    display: flex; align-items: center; justify-content: center; text-align: center;
    min-height: 150px; padding: 22px;
    border-radius: var(--radius-card);
    font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem;
    color: var(--chocolate-brown);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    will-change: transform;
}
.menu-tile:hover { transform: translateY(-6px) rotate(1.4deg); box-shadow: var(--shadow-lg); color: var(--chocolate-brown); }
.menu-tile.light-text, .menu-tile.light-text:hover { color: #fff; }

/* ============================================================
   CATEGORY (taxonomy) PAGE
   ============================================================ */
.cat-page { padding: 30px 0 100px; }
.cat-back {
    display: inline-flex; align-items: center; gap: 6px;
    margin: 8px 0 18px; min-height: 44px;
    font-family: var(--font-heading); font-weight: 600; color: var(--chocolate-brown);
}
.cat-back:hover { color: var(--cta-orange); }
.cat-head { text-align: center; margin-bottom: 28px; }
.cat-head h1 { font-size: clamp(2rem, 5vw, 3rem); }

/* Sweet/Salty toggle */
.variant-toggle { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; }
.variant-btn {
    min-height: 48px; padding: 12px 28px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--strawberry-pink);
    background: #fff; color: var(--strawberry-pink);
    font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
    transition: background var(--transition), color var(--transition);
}
.variant-btn.active { background: var(--strawberry-pink); color: #fff; }

/* Centered item rows */
.item-list { max-width: 680px; margin: 0 auto; }
.menu-row {
    text-align: center;
    padding: 0 0 64px;
    transition: opacity 0.3s ease;
}
.menu-row .item-photo {
    width: 230px; height: 230px; max-width: 70vw;
    margin: 0 auto 18px; border-radius: 50%;
    object-fit: cover; box-shadow: var(--shadow-md);
}
.menu-row .item-name { font-size: 1.6rem; margin-bottom: 0.35rem; }
.menu-row .item-ingredients { color: var(--color-muted); margin-bottom: 0.5rem; }
.menu-row .item-price { font-family: var(--font-heading); font-weight: 600; font-size: 1.25rem; color: var(--cta-orange); margin: 0; }
.squiggle { display: block; margin: 0 auto 64px; width: 120px; height: 18px; }
.menu-row.is-hidden { display: none; }

.cat-empty { text-align:center; color: var(--color-muted); padding: 40px 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.page-hero {
    text-align: center; padding: 64px 0 40px;
    background: radial-gradient(800px 360px at 50% -10%, var(--light-yellow), transparent 60%), var(--cream);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--color-muted); font-size: 1.12rem; max-width: 640px; margin: 0 auto; }

.about-block { padding: 36px 0; }
.about-block .container { max-width: 820px; }
.about-block.wash-pink   { background: linear-gradient(180deg, var(--light-pink), transparent); }
.about-block.wash-mint   { background: linear-gradient(180deg, var(--light-mint), transparent); }
.about-block.wash-orange { background: linear-gradient(180deg, var(--light-orange), transparent); }
.about-block h2 { font-size: 1.7rem; }
.about-block p { font-size: 1.06rem; }
.about-mascot { text-align: center; padding: 12px 0; }
.about-mascot img { width: 180px; margin: 0 auto; display: inline-block; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 48px 0 24px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.contact-info h2, .contact-form-area h2 { font-size: 1.6rem; }
.contact-block { margin-bottom: 1.4rem; }
.contact-block h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.contact-block address { font-style: normal; color: var(--color-muted); }
.contact-form-area { background: var(--white); border-radius: var(--radius-card); padding: 30px; box-shadow: var(--shadow-sm); }
.cf7-note { background: var(--light-yellow); border-radius: var(--radius-sm); padding: 14px 16px; color: var(--chocolate-brown); font-size: 0.92rem; }
.lb-form label { display:block; font-weight:600; margin: 0 0 6px; font-size: 0.92rem; color: var(--chocolate-brown); }
.lb-form input, .lb-form textarea, .lb-form select {
    width: 100%; padding: 13px 15px; margin-bottom: 16px;
    border: 1.5px solid rgba(93,64,55,0.18); border-radius: 12px;
    font-family: inherit; font-size: 0.98rem; background: var(--cream); color: var(--color-text);
}
.lb-form input:focus, .lb-form textarea:focus, .lb-form select:focus { outline: none; border-color: var(--cta-orange); }
.contact-social { display:flex; gap: 10px; margin-top: 8px; }
.contact-social a {
    width:44px; height:44px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center;
    background: var(--light-yellow); color: var(--chocolate-brown);
    transition: transform var(--transition);
}
.contact-social a:hover { transform: translateY(-3px); background: var(--banana-yellow); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 40px 0 90px; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white); border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm); margin-bottom: 14px; overflow: hidden;
}
.faq-question {
    width: 100%; text-align: left; border: 0; background: transparent;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 22px; min-height: 56px;
    font-family: var(--font-heading); font-weight: 600; font-size: 1.06rem; color: var(--chocolate-brown);
}
.faq-icon { transition: transform var(--transition); color: var(--cta-orange); }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer p { padding: 0 22px 20px; margin: 0; color: var(--color-text); }

/* ============================================================
   FRANCHISE
   ============================================================ */
.franchise-why { padding: 56px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.why-card { background: var(--white); border-radius: var(--radius-card); padding: 30px; box-shadow: var(--shadow-sm); text-align: center; }
.why-card .ic { font-size: 2.4rem; display:block; margin-bottom: 10px; }
.how-it-works { padding: 56px 0; background: linear-gradient(180deg, var(--light-mint), transparent); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.step-card { background: var(--white); border-radius: var(--radius-card); padding: 26px 20px; box-shadow: var(--shadow-sm); text-align: center; position: relative; }
.step-num {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--cta-orange); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; margin-bottom: 12px;
}
.franchise-form-section { padding: 56px 0 90px; }
.franchise-form-wrap { max-width: 720px; margin: 0 auto; background: var(--white); border-radius: var(--radius-card); padding: 34px; box-shadow: var(--shadow-md); }
.franchise-disclaimer { font-style: italic; font-size: 0.86rem; color: var(--color-muted); background: var(--light-yellow); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 24px; }

/* ============================================================
   ORDER MODAL
   ============================================================ */
.lb-modal {
    position: fixed; inset: 0; z-index: 1000;
    display: none; align-items: center; justify-content: center;
    padding: 20px;
}
.lb-modal.open { display: flex; }
.lb-modal-overlay { position: absolute; inset: 0; background: rgba(45,28,22,0.6); opacity: 0; transition: opacity 0.25s ease; }
.lb-modal.open .lb-modal-overlay { opacity: 1; }
.lb-modal-card {
    position: relative; z-index: 1;
    width: 100%; max-width: 460px;
    background: var(--cream); border-radius: 26px;
    padding: 34px 28px 30px; box-shadow: var(--shadow-lg);
    transform: scale(0.92); opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.lb-modal.open .lb-modal-card { transform: scale(1); opacity: 1; }
.lb-modal-close {
    position: absolute; top: 12px; right: 12px;
    width: 44px; height: 44px; border-radius: 50%; border: 0;
    background: rgba(93,64,55,0.08); color: var(--chocolate-brown);
    font-size: 1.5rem; line-height: 1; display:flex; align-items:center; justify-content:center;
}
.lb-modal-close:hover { background: rgba(93,64,55,0.16); }
.lb-modal h2 { text-align: center; font-size: 1.7rem; margin-bottom: 0.3rem; }
.lb-modal .modal-sub { text-align: center; color: var(--color-muted); margin-bottom: 22px; }
.lb-step { display: none; }
.lb-step.active { display: block; }
.lb-choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lb-choice {
    border: 2px solid var(--mango-orange); background: #fff; border-radius: 20px;
    padding: 26px 14px; text-align: center; min-height: 110px;
    font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: var(--chocolate-brown);
    transition: transform var(--transition), box-shadow var(--transition);
}
.lb-choice .emoji { display:block; font-size: 2.2rem; margin-bottom: 8px; }
.lb-choice:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lb-partners { display: grid; gap: 12px; }
.lb-partner {
    display: flex; align-items: center; justify-content: center;
    min-height: 54px; padding: 14px; border-radius: 16px;
    background: var(--banana-yellow); color: var(--chocolate-brown);
    font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
    transition: transform var(--transition), box-shadow var(--transition);
}
.lb-partner:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--chocolate-brown); }
.lb-back {
    background: transparent; border: 0; color: var(--chocolate-brown);
    font-family: var(--font-heading); font-weight: 600; min-height: 44px;
    margin-top: 16px; display: inline-flex; align-items: center; gap: 6px;
}
.lb-back:hover { color: var(--cta-orange); }

/* ============================================================
   ALLERGY POPUP (menu page first visit)
   ============================================================ */
.allergy-modal {
    position: fixed; inset: 0; z-index: 900;
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.allergy-modal.open { display: flex; }
.allergy-overlay { position: absolute; inset: 0; background: rgba(45,28,22,0.55); }
.allergy-card {
    position: relative; z-index: 1; width: 100%; max-width: 420px;
    background: var(--white); border-radius: 24px; padding: 30px 26px;
    box-shadow: var(--shadow-lg); border-top: 8px solid var(--banana-yellow);
    text-align: center;
}
.allergy-card .mascot { width: 84px; margin: -64px auto 8px; }
.allergy-card h3 { font-size: 1.6rem; }
.allergy-card p { color: var(--color-text); }

/* ============================================================
   STICKY ORDER (menu page)
   ============================================================ */
.sticky-order-fab {
    position: fixed; right: 22px; bottom: 22px; z-index: 150;
    box-shadow: var(--shadow-lg);
}
.sticky-order-bar { display: none; }

/* ============================================================
   GENERIC PAGE / 404
   ============================================================ */
.default-page-content { padding: 56px 0 80px; }
.default-page-content .container { max-width: 800px; }
.entry-title { font-size: clamp(2rem,5vw,3rem); }
.error-404 { text-align: center; padding: 90px 20px; }
.error-404 img { width: 160px; margin: 0 auto 20px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-text { order: 2; }
    .hero-media { order: 1; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .signature-inner { grid-template-columns: 1fr; }
    .location-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Mobile nav drawer */
    .hamburger { display: flex; }
    .header-nav-wrap {
        position: fixed; inset: 0; top: 0;
        background: var(--cream);
        flex-direction: column; justify-content: center; align-items: center;
        gap: 8px; padding: 80px 24px 40px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 195; margin-left: 0;
    }
    .header-nav-wrap.menu-open { transform: translateX(0); }
    .site-nav { width: 100%; }
    .nav-links { flex-direction: column; width: 100%; gap: 4px; }
    .nav-links a { display: block; text-align: center; padding: 16px; font-size: 1.25rem; }
    .header-order-btn { margin-top: 12px; }
    .header-order-btn .btn { padding: 16px 30px; font-size: 1.1rem; }

    .tiles-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-tiles { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .menu-hero { aspect-ratio: 4 / 3; }
    .open-late { margin: 0 12px; border-radius: 28px; }

    /* mobile sticky order bar instead of FAB */
    .sticky-order-fab { display: none; }
    .sticky-order-bar {
        display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
        background: var(--cream); padding: 10px 14px;
        box-shadow: 0 -6px 20px rgba(93,64,55,0.14);
    }
    .sticky-order-bar .btn { width: 100%; }
    body.has-sticky-bar { padding-bottom: 76px; }
}

@media (max-width: 460px) {
    .lb-choice-row { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .hero-logo, .floaty, .glass, .mascot-peek { animation: none !important; }
    .fade-up { opacity: 1; transform: none; }
}
