@import url('https://fonts.googleapis.com/css?family=Tangerine');

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Fredoka:wght@300;400;500;600&family=Patrick+Hand&display=swap');

/* =========================================================
   ROOT / GLOBAL
========================================================= */
:root {
    --sage: #3f6a57;
    --terra: #e08a5b;
    --terra-dark: #b86b49;
    --ink: #1b1b1b;
    --paper: #f7f3e8;
    --paper-soft: #fbf6ea;
    --paper-deep: #efe3cf;
    --glass: rgba(255,255,255,.45);
    --glass-soft: rgba(255,255,255,.35);
    --border: rgba(0,0,0,.10);
    --shadow-soft: 0 10px 24px rgba(0,0,0,.06);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--paper-soft);
    color: var(--ink);
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    margin: 0;
}

header,
footer {
    background-color: #E9E5CA;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

section {
    scroll-margin-top: 90px;
}

/* =========================================================
   NAVBAR (BRANDED)
========================================================= */
.navbar .container {
    max-width: 1200px;
}

.navbar-custom {
    background: rgba(247, 243, 232, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(63,106,87,.08);
    box-shadow: 0 4px 12px rgba(0,0,0,.04), 0 1px 0 rgba(255,255,255,.8) inset;
    padding: 0.6rem 0;
    transition: background .3s ease, box-shadow .3s ease;
}

    /* Scrolled state - slightly more opaque */
    .navbar-custom.scrolled {
        background: rgba(247, 243, 232, 0.96);
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
    }

    /* Brand */
    .navbar-custom .navbar-brand {
        font-weight: 700;
        color: var(--sage);
        font-size: 1.15rem;
        letter-spacing: .02em;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: opacity .2s ease;
    }

        .navbar-custom .navbar-brand:hover {
            opacity: .8;
        }

        .navbar-custom .navbar-brand img {
            height: 30px;
            width: auto;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
        }

    /* Links */
    .navbar-custom .nav-link {
        color: rgba(0,0,0,.6);
        font-weight: 500;
        font-size: .95rem;
        margin: 0 .25rem;
        padding: .45rem .65rem !important;
        border-radius: 8px;
        position: relative;
        transition: color .2s ease, background .2s ease;
        letter-spacing: .01em;
    }

        .navbar-custom .nav-link:hover {
            color: var(--sage);
            background: rgba(63,106,87,.06);
        }

        /* Underline animation */
        .navbar-custom .nav-link::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 4px;
            width: 0%;
            height: 2px;
            background: var(--terra);
            border-radius: 999px;
            transform: translateX(-50%);
            transition: width .2s ease;
        }

        .navbar-custom .nav-link:hover::after {
            width: 60%;
        }

    /* CTA button */
    .navbar-custom .btn {
        border-radius: 999px;
        padding: .5rem 1.25rem;
        font-weight: 600;
        font-size: .9rem;
        background: var(--sage);
        border: none;
        color: #fff;
        box-shadow: 0 4px 12px rgba(63,106,87,.25), 0 1px 0 rgba(255,255,255,.2) inset;
        transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
        letter-spacing: .02em;
    }

        .navbar-custom .btn:hover {
            background: #2d5240;
            transform: translateY(-1px);
            box-shadow: 0 8px 18px rgba(63,106,87,.3);
            color: #fff;
        }

    /* Toggler */
    .navbar-custom .navbar-toggler {
        border: 1.5px solid rgba(63,106,87,.2);
        border-radius: 10px;
        padding: .4rem .6rem;
        transition: background .2s ease;
    }

        .navbar-custom .navbar-toggler:hover {
            background: rgba(63,106,87,.06);
        }

        .navbar-custom .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(63,106,87,.15);
        }

/* =========================================================
   HERO / GENERAL SITE
========================================================= */
.hero-showcase {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 0;
    background: radial-gradient(circle at top left, rgba(224,138,91,.28), transparent 32%), radial-gradient(circle at bottom right, rgba(63,106,87,.18), transparent 30%), linear-gradient(135deg, #f7f3e8 0%, #fbf6ea 45%, #efe3cf 100%);
}

.hero-wave {
    position: relative;
    margin-bottom: -2px;
    line-height: 0;
    z-index: 2;
}

    .hero-wave svg {
        display: block;
        width: 100%;
        height: auto;
    }

.hero-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)), url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b86b49' fill-opacity='0.13'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .9;
    pointer-events: none;
}

.hero-copy,
.hero-visual-wrap {
    position: relative;
    z-index: 2;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: .55rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(0,0,0,.08);
    color: var(--sage);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.hero-title {
    color: var(--sage);
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    font-weight: 600;
    line-height: 1.02;
    margin-bottom: 1.1rem;
    max-width: 10ch;
}

.hero-text {
    color: rgba(0,0,0,.72);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 1.75rem;
    text-shadow: none;
}

.hero-actions {
    margin-bottom: 1.5rem;
}

.hero-btn {
    border-radius: 999px;
    padding: .95rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

    .hero-btn:hover {
        transform: translateY(-2px);
    }

.hero-btn-primary {
    background: var(--sage);
    border: 1px solid var(--sage);
    color: #fff;
}

    .hero-btn-primary:hover {
        background: #355847;
        border-color: #355847;
        color: #fff;
    }

.hero-btn-secondary {
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(0,0,0,.1);
    color: var(--ink);
}

    .hero-btn-secondary:hover {
        background: rgba(255,255,255,.9);
        color: var(--ink);
    }

.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .65rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.58);
    border: 1px solid rgba(0,0,0,.08);
    color: var(--terra-dark);
    font-weight: 600;
    font-size: .95rem;
    backdrop-filter: blur(6px);
}

.hero-visual-wrap {
    position: relative;
    min-height: 560px;
}

.hero-main-card {
    position: relative;
    width: min(100%, 500px);
    margin-left: auto;
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255,255,255,.58);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 24px 55px rgba(0,0,0,.14);
    transform: rotate(-2deg);
}

.hero-main-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    aspect-ratio: 500 / 560;
}

.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
    backdrop-filter: blur(10px);
}

.hero-card-top {
    top: 1.5rem;
    left: 0;
    padding: 1rem 1.1rem;
    max-width: 220px;
}

.hero-card-bottom {
    right: 1rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .8rem;
    max-width: 290px;
}

.hero-thumb-img {
    width: 74px;
    height: 74px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}

.hero-mini-label {
    color: var(--terra-dark);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .2rem;
}

.hero-mini-title {
    color: var(--sage);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
}

.hero-sticker {
    position: absolute;
    left: 2rem;
    bottom: 5.2rem;
    z-index: 3;
    background: var(--terra);
    color: #fff;
    font-weight: 700;
    padding: .8rem 1rem;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0,0,0,.14);
    transform: rotate(-8deg);
}

.hero-bg-blur {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: .55;
    pointer-events: none;
}

.hero-blur-1 {
    width: 240px;
    height: 240px;
    background: rgba(224,138,91,.35);
    top: 2rem;
    right: 18%;
}

.hero-blur-2 {
    width: 220px;
    height: 220px;
    background: rgba(63,106,87,.22);
    bottom: 2rem;
    left: 8%;
}

.hero-deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

/* Decorative images - prevent reflow */
.hero-deco,
.menu-deco,
[aria-hidden="true"] img {
    aspect-ratio: auto;
}

.hero-deco-bear {
    width: 100px;
    bottom: 2rem;
    right: 42%;
    transform: rotate(6deg);
    z-index: 3;
}

.hero-deco-flower {
    width: 120px;
    top: 4.5rem;
    right: 5%;
    transform: rotate(10deg);
}

.hero-deco-arrow-top {
    width: 80px;
    top: 3rem;
    left: 52%;
    transform: rotate(-15deg);
    opacity: 0.7;
    z-index: 3;
}

.hero-deco-arrow-lower {
    display: block;
    width: 65px;
    margin-top: 0.5rem;
    opacity: 0.65;
    transform: rotate(5deg);
}

.hero-deco-boba {
    width: 85px;
    left: 43%;
    bottom: 5rem;
    transform: rotate(-10deg);
}

#social-footer {
    font-size: 30px;
    padding: 10px;
}

.section-main-head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

    .section-main-head h2 {
        color: var(--sage);
        font-size: clamp(3rem, 7vw, 5.8rem);
        font-family: "DM Serif Display", Georgia, serif;
        font-weight: 300;
        line-height: 1.05;
        text-align: center;
        width: 50%;
        letter-spacing: .04em;
    }

/* =========================================================
   SHARED SECTION TITLE PATTERN
========================================================= */
.section-title,
.plants-title,
.gallery-title,
.about-title,
.location-title {
    color: var(--sage);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 300;
    line-height: 1.05;
    font-family: "DM Serif Display", Georgia, serif;
    letter-spacing: .04em;
    margin: .25rem 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .75rem;
}

.kicker {
    color: var(--terra-dark);
    letter-spacing: .22em;
    font-weight: 500;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    text-transform: uppercase;
    font-family: "Patrick Hand", system-ui, sans-serif;
}

.plants-sun,
.gallery-sun,
.about-sun,
.location-sun,
.sunburst {
    color: var(--terra);
}

.plants-rule-wrap,
.gallery-rule-wrap,
.about-rule-wrap,
.location-rule-wrap,
.menu-rule-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.plants-rule,
.gallery-rule,
.about-rule,
.location-rule,
.menu-rule {
    height: 1px;
    width: min(280px, 28vw);
    background: linear-gradient(90deg, transparent 0%, var(--terra) 40%, var(--terra) 60%, transparent 100%);
    opacity: .6;
    border-radius: 999px;
}

.plants-dot,
.gallery-dot,
.about-dot,
.location-dot,
.menu-dot {
    width: 8px;
    height: 8px;
    background: var(--terra);
    transform: rotate(45deg);
    border-radius: 2px;
    opacity: .8;
}

.plants-subtitle,
.gallery-subtitle,
.about-subtitle,
.location-subtitle {
    font-family: "Patrick Hand", system-ui, sans-serif;
    color: rgba(0,0,0,.55);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    letter-spacing: .02em;
}

/* =========================================================
   SECTION DIVIDERS
========================================================= */

.divider-paper {
    fill: var(--paper-soft);
}

.divider-paper-deep {
    fill: var(--paper-deep);
}

.divider-dark {
    fill: #1b1b1b;
}

.divider-sage-light {
    fill: #eef3f0;
}

/* =========================================================
   MENU - STACKED PANEL VERSION
========================================================= */
.menu-board {
    background: var(--paper-soft);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.menu-icon {
    display: flex;
    width: 8%;
    opacity: .7;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.08));
}

.menu-panel {
    position: relative;
    background: var(--paper-soft);
    border-radius: 28px;
    padding: 3rem 3rem 2.5rem;
    overflow: hidden;
}

    .menu-panel + .menu-panel {
        margin-top: 2rem;
    }

.menu-main-title {
    color: var(--sage);
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: .75rem;
    justify-content: center;
    align-items: center;
}

.menu-title-sun,
.mini-sun {
    color: var(--terra);
}

.menu-main-subnav {
    color: var(--sage);
    font-size: clamp(1.6rem, 3vw, 2.7rem);
    font-style: italic;
    font-weight: 300;
}

.menu-main-rule {
    border-top: 5px solid var(--sage);
    margin: 1.5rem 0 0;
}

.menu-section-heading {
    color: var(--sage);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    margin-bottom: .2rem;
}

.menu-section-divider {
    border-bottom: 6px solid var(--sage);
    width: 100%;
    max-width: 650px;
    margin-bottom: 1.5rem;
}

#tester {
    background-color: purple;
}

.short-divider {
    max-width: 420px;
}

.center-divider {
    max-width: 760px;
}

.menu-wide-divider {
    border-bottom: 6px solid var(--sage);
    width: 100%;
    margin: 3rem 0;
}

.menu-entry {
    margin-bottom: 2.2rem;
}

.menu-entry-title {
    color: var(--sage);
    font-size: clamp(1.9rem, 2.6vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
}

.menu-entry-desc {
    color: var(--terra);
    font-size: clamp(1.15rem, 1.8vw, 1.8rem);
    font-weight: 300;
    line-height: 1.2;
}

/* dotted price rows */
.menu-line-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

    .menu-line-item h6 {
        color: var(--terra);
        font-size: clamp(1.15rem, 1.8vw, 1.8rem);
        font-weight: 300;
        line-height: 1.2;
    }

.menu-line-name {
    color: var(--sage);
    font-size: clamp(1.7rem, 2.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    max-width: 65%;
}

.menu-line-dots {
    flex: 1;
    border-bottom: 6px dotted var(--sage);
    transform: translateY(.15em);
}

.menu-line-price {
    color: var(--sage);
    font-size: clamp(1.7rem, 2.5vw, 2.8rem);
    font-weight: 400;
}

/* =========================================================
   ANTOJITOS - TWO COLUMN LAYOUT (dynamic, any item count)
========================================================= */
.menu-block--columns {
    column-count: 2;
    column-gap: 3rem;
}

    .menu-block--columns .menu-line-item {
        break-inside: avoid;
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
    }

/* =========================================================
   TOPPINGS CARD - REDESIGNED
========================================================= */
.toppings-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(160deg, var(--paper-deep) 0%, #e8d5b7 100%);
    border-radius: 42px;
    padding: 2.5rem 2rem;
    max-width: 430px;
    margin: 6rem auto 0;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04), inset 0 1px 0 rgba(255,255,255,.6);
    border: 1.5px solid rgba(255,255,255,.5);
}

.toppings-card-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(160deg, var(--paper-deep) 0%, #e8d5b7 100%);
    border-radius: 42px;
    padding: 2.5rem 2rem;
    width: 98%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.04), inset 0 1px 0 rgba(255,255,255,.6);
    border: 1.5px solid rgba(255,255,255,.5);
}

#panel-1-imgs-mobile {
    display: none;
}

.toppings-price {
    color: var(--sage);
    font-size: clamp(2.6rem, 3.5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.02em;
}

.toppings-subtext {
    color: var(--terra-dark);
    font-size: clamp(1.2rem, 1.6vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: .85;
}

.toppings-label {
    color: var(--sage);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}

    .toppings-label::after {
        content: "";
        display: block;
        width: 40px;
        height: 3px;
        background: var(--terra);
        border-radius: 999px;
        margin: .4rem auto 0;
    }

.toppings-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .9rem;
    background: rgba(255,255,255,.45);
    border-radius: 16px;
    padding: .6rem 1rem;
    width: 100%;
    border: 1px solid rgba(255,255,255,.6);
}

.toppings-item {
    color: var(--sage);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
}

.topping-art {
    width: 64px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,.1));
}

.sweetness-title {
    color: var(--sage);
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: .75rem;
    letter-spacing: .04em;
}

.sweetness-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    height: 52px;
    background: rgba(255,255,255,.7);
    border-radius: 14px;
    color: var(--sage);
    font-size: 1.2rem;
    font-weight: 600;
    margin: .25rem;
    border: 1.5px solid rgba(255,255,255,.8);
    box-shadow: 0 4px 8px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.9);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .sweetness-pill:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0,0,0,.1);
    }

/* =========================================================
   DESSERT BLOB - REDESIGNED
========================================================= */
.dessert {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.dessert-blob {
    position: relative;
    background: linear-gradient(135deg, #f9d5e0 0%, #f2c2d0 50%, #e8b4c4 100%);
    border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
    padding: 3rem 3.5rem;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 24px 48px rgba(232,138,169,.25), 0 8px 16px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.5);
    border: 1.5px solid rgba(255,255,255,.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-radius .8s ease;
}

    .dessert-blob:hover {
        border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
    }

.dessert-blob-eyebrow {
    color: var(--terra-dark);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: .5rem;
    opacity: .8;
}

.dessert-blob-title {
    color: var(--sage);
    font-size: clamp(2rem, 2.8vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.dessert-blob-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sage);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 999px;
    padding: .4rem 1.2rem;
    margin-top: .5rem;
    box-shadow: 0 6px 14px rgba(63,106,87,.25);
}

.deco-strawberry-dessert {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.12));
    margin-top: 1rem;
}

.deco-cat {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.1));
}

/* bagel / bun row */
.bagel-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.bagel-note {
    color: var(--sage);
    font-size: 1.4rem;
    font-weight: 300;
    padding-left: .25rem;
}

.bagel-price {
    color: var(--sage);
    font-size: 2.4rem;
    font-weight: 400;
    margin-top: .5rem;
}

/* kids panel */
.kids-panel {
    text-align: center;
    min-height: 900px;
}

.kids-line-name {
    font-weight: 600;
}

.kids-line-dots {
    max-width: 420px;
}

.kids-note-en {
    color: var(--sage);
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 300;
    line-height: 1.45;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.kids-note-es {
    color: var(--terra);
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 300;
    line-height: 1.45;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.kids-center-divider {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .kids-center-divider::before,
    .kids-center-divider::after {
        content: "";
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--terra) 30%, var(--terra) 70%, transparent 100%);
        border-radius: 999px;
    }

    .kids-center-divider::before {
        background: linear-gradient(90deg, transparent 0%, var(--terra) 100%);
    }

    .kids-center-divider::after {
        content: "";
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, var(--terra) 0%, transparent 100%);
        border-radius: 999px;
        top: unset;
        left: unset;
        transform: none;
        padding: 0;
        font-size: unset;
        color: unset;
        position: relative;
    }

.kids-divider-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
}

.kids-footer-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--terra);
    font-size: clamp(1.6rem, 2vw, 2.3rem);
    font-weight: 500;
    margin-top: 6rem;
}

/* menu decorative art */
.menu-deco {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.deco-flower-top-right {
    top: 1.25rem;
    right: 2rem;
    width: 92px;
}

.deco-hamster-2 {
    width: 8%;
}

.deco-hamster-under-toppings {
    right: 2rem;
    top: 45rem;
    width: 150px;
}

.deco-flower-under-toppings {
    width: 30%;
    height: 30%;
}

.deco-boba {
    width: 25%;
}

.deco-boba-small {
    right: 1rem;
    top: 28rem;
    width: 72px;
}

.deco-boba-small-mobile {
    display: none;
}

.deco-flowers-bottom-left {
    left: 1rem;
    bottom: 0rem;
    width: 100px;
    z-index: 1;
}

.deco-cat {
    width: 20%;
}

.deco-strawberry-dessert {
    width: 15%;
}

.deco-flowers-top-left {
    left: 1rem;
    top: 1rem;
    width: 10%;
    z-index: -2;
}

.deco-flowers-bottom-right {
    width: 120px;
}

.menu-panel > .row,
.menu-panel > header,
.menu-panel > .dessert-blob,
.menu-panel > .kids-line-wrap,
.menu-panel > .kids-note-en,
.menu-panel > .kids-note-es,
.menu-panel > .kids-center-divider,
.menu-panel > .kids-footer-note {
    position: relative;
    z-index: 2;
}

/* =========================================================
   PLANTS
========================================================= */
.plants-board {
    background: var(--paper-soft);
    position: relative;
}

/* Pricing row */
.plants-pricing-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.plants-pricing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(160deg, var(--paper-deep) 0%, #e8d5b7 100%);
    border-radius: 28px;
    padding: 1.5rem 2rem;
    min-width: 180px;
    box-shadow: 0 16px 32px rgba(0,0,0,.07), inset 0 1px 0 rgba(255,255,255,.6);
    border: 1.5px solid rgba(255,255,255,.5);
    transition: transform .2s ease, box-shadow .2s ease;
    margin: 20px
}

    .plants-pricing-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 24px 48px rgba(0,0,0,.10);
    }

.plants-pricing-card--featured {
    background: linear-gradient(160deg, rgba(63,106,87,.12) 0%, rgba(63,106,87,.06) 100%);
    border-color: rgba(63,106,87,.2);
}

.plants-pricing-icon {
    font-size: 2rem;
    margin-bottom: .5rem;
}

.plants-pricing-label {
    font-family: "Patrick Hand", system-ui, sans-serif;
    color: var(--terra-dark);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.plants-pricing-price {
    color: var(--sage);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: .25rem;
}

.plants-pricing-note {
    font-family: "Patrick Hand", system-ui, sans-serif;
    color: rgba(0,0,0,.55);
    font-size: .9rem;
    text-align: center;
}

.plants-pricing-divider {
    color: var(--terra);
    font-size: 1.5rem;
    opacity: .5;
}

/* Plant cards */
.plant-card {
    border-radius: 24px;
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,.4) 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,.05), inset 0 1px 0 rgba(255,255,255,.8);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .plant-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,.10);
    }

.plant-img-wrap {
    position: relative;
    overflow: hidden;
}

.plant-img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    border: none;
    background: rgba(255,255,255,.35);
    transition: transform .4s ease;
    aspect-ratio: 4 / 3;
}

.plant-card:hover .plant-img {
    transform: scale(1.04);
}

.plant-img-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--sage);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(63,106,87,.3);
}

.plant-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.plant-name {
    color: var(--sage);
    font-family: "Fredoka", sans-serif;
    letter-spacing: .06em;
    font-weight: 600;
    font-size: 1.6rem;
    margin: 0 0 .75rem;
    border-bottom: 2px solid rgba(63,106,87,.12);
    padding-bottom: .5rem;
}

.plant-care-row {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.plant-care-item {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.plant-care-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

.plant-care-text {
    font-family: "Patrick Hand", system-ui, sans-serif;
    color: rgba(0,0,0,.72);
    font-size: 1.05rem;
    line-height: 1.4;
}

.plant-label {
    font-weight: 700;
}

/* CTA */
.plants-cta {
    border-radius: 20px;
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,.4) 100%);
    padding: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.plants-cta-title {
    color: var(--sage);
    font-weight: 800;
    letter-spacing: .04em;
    font-size: 1.1rem;
}

.plants-cta-text {
    color: rgba(0,0,0,.65);
}

/* =========================================================
   GALLERY
========================================================= */
.gallery-board {
    background: var(--paper-soft);
    overflow-x: hidden;
}

/* Filter pills */
.gallery-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.6);
    border: 1.5px solid var(--border);
    color: var(--sage);
    font-weight: 700;
    font-size: .9rem;
    padding: .5rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all .2s ease;
    font-family: "Fredoka", sans-serif;
}

    .gallery-filter-btn:hover {
        background: rgba(255,255,255,.9);
        border-color: var(--sage);
    }

    .gallery-filter-btn.active {
        background: var(--sage);
        color: #fff;
        border-color: var(--sage);
    }

.gallery-filter-count {
    background: rgba(255,255,255,.25);
    border-radius: 999px;
    padding: .1rem .45rem;
    font-size: .8rem;
}

.gallery-filter-btn.active .gallery-filter-count {
    background: rgba(255,255,255,.2);
}

/* Gallery grid - base (medium) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
    transition: gap .3s ease;
}

    /* Size: small */
    .gallery-grid.size-small {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 140px;
        gap: 8px;
    }

/* Ensure full height chain for gallery grid items */
.gallery-grid-item {
    min-height: 0;
    min-width: 0;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

        .gallery-grid.size-small .gallery-grid-item {
            grid-column: span 2;
            grid-row: span 1;
        }

        .gallery-grid.size-small .gallery-grid-item--feature {
            grid-column: span 4;
            grid-row: span 2;
        }

        .gallery-grid.size-small .gallery-grid-item--large {
            grid-column: span 4;
            grid-row: span 1;
        }

    /* Size: medium (default) */
    .gallery-grid.size-medium {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 200px;
        gap: 12px;
    }

        .gallery-grid.size-medium .gallery-grid-item {
            grid-column: span 3;
            grid-row: span 1;
        }

        .gallery-grid.size-medium .gallery-grid-item--feature {
            grid-column: span 6;
            grid-row: span 2;
        }

        .gallery-grid.size-medium .gallery-grid-item--large {
            grid-column: span 6;
            grid-row: span 1;
        }

    /* Size: large */
    .gallery-grid.size-large {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 280px;
        gap: 16px;
    }

        .gallery-grid.size-large .gallery-grid-item {
            grid-column: span 4;
            grid-row: span 1;
        }

        .gallery-grid.size-large .gallery-grid-item--feature {
            grid-column: span 8;
            grid-row: span 2;
        }

        .gallery-grid.size-large .gallery-grid-item--large {
            grid-column: span 8;
            grid-row: span 1;
        }


/* Handle orphaned last item in gallery grid */
.gallery-grid-item:last-child:nth-child(4n + 2),
.gallery-grid-item:last-child:nth-child(4n + 3) {
    grid-column: span 6;
}

.gallery-grid-item:last-child:nth-child(4n + 1) {
    grid-column: span 12;
}

/* Size toggle buttons */
.gallery-size-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,.6);
    border: 1.5px solid var(--border);
    border-radius: 999px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto .5rem;
}

.gallery-size-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--sage);
    cursor: pointer;
    transition: all .2s ease;
    opacity: .5;
}

    .gallery-size-btn:hover {
        opacity: .8;
        background: rgba(255,255,255,.6);
    }

    .gallery-size-btn.active {
        background: var(--sage);
        color: #fff;
        opacity: 1;
    }

/* Gallery tiles */
.gallery-tile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--glass-soft);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    will-change: transform;
}

    .gallery-tile:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

.gallery-grid-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gallery-tile:hover .gallery-grid-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.65) 100%);
    opacity: 0;
    transition: opacity .25s ease;
}

.gallery-tile:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tile--feature .gallery-overlay {
    opacity: .98;
    padding: 20px;
}

.gallery-chip {
    align-self: flex-start;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.6);
    color: var(--sage);
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .3rem .7rem;
    margin-bottom: 8px;
    transform: translateY(4px);
    transition: transform .2s ease;
}

.gallery-tile:hover .gallery-chip {
    transform: translateY(0);
}

.gallery-caption {
    color: #fff;
}

.gallery-caption-title {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
}

.gallery-caption-sub {
    opacity: .85;
    font-size: .9rem;
    margin-top: 2px;
}

/* CTA */
.gallery-cta {
    border-radius: 20px;
    border: 1px solid var(--border);
    background: linear-gradient(160deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,.4) 100%);
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.gallery-cta-title {
    color: var(--sage);
    font-weight: 900;
    letter-spacing: .04em;
    font-size: 1.05rem;
}

.gallery-cta-text {
    color: rgba(0,0,0,.65);
}

/* Modal */
.gallery-modal {
    background: var(--paper-soft);
    border-radius: 22px;
}

#galleryModalImg {
    transition: filter .18s ease, opacity .18s ease;
}

    #galleryModalImg.is-loading {
        filter: blur(10px);
        opacity: .85;
    }

/* Hidden filtered items */
.gallery-grid-item.hidden {
    display: none;
}

/* =========================================================
   ABOUT
========================================================= */
/* =========================================================
   ABOUT - REDESIGNED
========================================================= */
.about-board {
    background: var(--paper-deep);
    position: relative;
}

.about-card {
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.6);
    background: linear-gradient(160deg, rgba(255,255,255,.75) 0%, rgba(255,255,255,.45) 100%);
    padding: 28px;
    box-shadow: 0 16px 40px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
}

/* Story card — slightly warmer */
.about-card--story {
    background: linear-gradient(160deg, rgba(255,255,255,.8) 0%, rgba(247,243,232,.6) 100%);
}

/* Values card — slight sage tint */
.about-card--values {
    background: linear-gradient(160deg, rgba(63,106,87,.06) 0%, rgba(255,255,255,.5) 100%);
}

.about-card-title {
    color: var(--sage);
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: .02em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(63,106,87,.12);
}

.about-text {
    font-family: "Patrick Hand", system-ui, sans-serif;
    color: rgba(0,0,0,.72);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 0 14px;
}

.about-highlight {
    color: var(--terra-dark);
    font-weight: 700;
}

/* Pills */
.about-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.about-pill {
    background: rgba(63,106,87,.08);
    border: 1.5px solid rgba(63,106,87,.18);
    color: var(--sage);
    font-weight: 600;
    font-size: .85rem;
    padding: .45rem .9rem;
    border-radius: 999px;
    letter-spacing: .02em;
    transition: background .2s ease;
}

    .about-pill:hover {
        background: rgba(63,106,87,.14);
    }

/* Feature items */
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.7);
    margin-bottom: 10px;
    transition: background .2s ease, transform .2s ease;
}

    .about-feature:hover {
        background: rgba(255,255,255,.75);
        transform: translateX(4px);
    }

.about-feature-emoji {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
}

.about-feature-body {
    flex: 1;
}

.about-feature-title {
    font-weight: 700;
    color: var(--sage);
    font-size: 1rem;
    margin-bottom: 2px;
}

.about-feature-text {
    color: rgba(0,0,0,.62);
    font-size: .95rem;
    line-height: 1.45;
    font-family: "Patrick Hand", system-ui, sans-serif;
}

/* CTA */
.about-cta {
    border-radius: 16px;
    border: 1.5px dashed rgba(63,106,87,.2);
    background: rgba(63,106,87,.04);
    padding: 16px;
    margin-top: 16px;
}

.about-cta-title {
    color: var(--sage);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.about-cta-text {
    color: rgba(0,0,0,.58);
    font-size: .9rem;
    font-family: "Patrick Hand", system-ui, sans-serif;
}

/* Quote */
.about-quote {
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.6);
    background: linear-gradient(135deg, rgba(224,138,91,.08) 0%, rgba(255,255,255,.5) 100%);
    padding: 28px 32px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.04);
    position: relative;
    overflow: hidden;
}

    .about-quote::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b86b49' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

.about-quote-mark {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 5rem;
    line-height: .7;
    color: var(--terra);
    opacity: .25;
    flex-shrink: 0;
    user-select: none;
}

.about-quote-text {
    color: var(--sage);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    line-height: 1.5;
    font-weight: 400;
    font-style: italic;
    letter-spacing: .01em;
}

/* =========================================================
   LOCATION
========================================================= */
.location-board {
    background: var(--paper-deep);
    position: relative;
}

.location-card {
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.6);
    background: linear-gradient(160deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.48) 100%);
    padding: 24px;
    box-shadow: 0 16px 40px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.9);
    height: 100%;
}

/* Info blocks */
.info-block {
    margin-bottom: 4px;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--sage);
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: .02em;
    margin-bottom: 8px;
}

    .info-label::before {
        content: "";
        display: inline-block;
        width: 4px;
        height: 18px;
        background: var(--terra);
        border-radius: 999px;
        flex-shrink: 0;
    }

.info-value {
    color: rgba(0,0,0,.75);
    font-size: 1rem;
    font-family: "Patrick Hand", system-ui, sans-serif;
    line-height: 1.5;
}

.info-note {
    color: rgba(0,0,0,.45);
    font-size: .88rem;
    margin-top: 4px;
    font-family: "Patrick Hand", system-ui, sans-serif;
}

.info-divider {
    border: none;
    border-top: 1px solid rgba(63,106,87,.1);
    margin: 16px 0;
}

/* Hours table */
.hours-table {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.5);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: background .15s ease;
}

    .hours-row:last-child {
        border-bottom: none;
    }

    .hours-row:hover {
        background: rgba(63,106,87,.04);
    }

    .hours-row.is-today {
        background: rgba(63,106,87,.08);
        border-left: 3px solid var(--sage);
        padding-left: 9px;
    }

.hours-day {
    font-weight: 700;
    color: rgba(0,0,0,.65);
    font-size: .9rem;
    width: 36px;
    font-family: "Patrick Hand", system-ui, sans-serif;
}

.hours-row.is-today .hours-day {
    color: var(--sage);
}

.hours-time {
    color: rgba(0,0,0,.65);
    font-weight: 500;
    font-size: .9rem;
    font-family: "Patrick Hand", system-ui, sans-serif;
}

.hours-row.is-today .hours-time {
    color: var(--sage);
    font-weight: 700;
}

.hours-today-badge {
    font-size: .7rem;
    background: var(--sage);
    color: #fff;
    border-radius: 999px;
    padding: .15rem .5rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Contact list */
.contact-list {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.5);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: background .15s ease;
}

    .contact-item:last-child {
        border-bottom: none;
    }

    .contact-item:hover {
        background: rgba(63,106,87,.04);
    }

.contact-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(63,106,87,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

.contact-key {
    font-weight: 600;
    color: rgba(0,0,0,.55);
    font-size: .8rem;
    font-family: "Patrick Hand", system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: .04em;
    min-width: 64px;
}

.contact-val {
    flex: 1;
    font-family: "Patrick Hand", system-ui, sans-serif;
}

.contact-link {
    color: var(--terra-dark);
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

    .contact-link:hover {
        color: var(--sage);
        text-decoration: underline;
    }

/* Map frame */
.map-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* Location pills */
.location-pill {
    background: rgba(255,255,255,.7);
    border: 1.5px solid rgba(63,106,87,.15);
    color: var(--sage);
    font-weight: 600;
    font-size: .82rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    letter-spacing: .02em;
}

/* Location note */
.location-note {
    color: rgba(0,0,0,.58);
    background: rgba(63,106,87,.05);
    border: 1px solid rgba(63,106,87,.1);
    border-radius: 14px;
    padding: 12px 16px;
    font-family: "Patrick Hand", system-ui, sans-serif;
    font-size: .95rem;
    line-height: 1.5;
}

/* =========================================================
   CONTACT
========================================================= */
.contact-board {
    background: var(--paper-soft);
    position: relative;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.10), 0 8px 20px rgba(0,0,0,.06);
    border: 1px solid rgba(255,255,255,.6);
}

/* Left panel */
.contact-panel-left {
    background: linear-gradient(160deg, var(--sage) 0%, #2d5240 100%);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

    .contact-panel-left::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

.contact-panel-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-panel-kicker {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.85);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .35rem .85rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.contact-panel-title {
    color: #fff;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.contact-panel-text {
    color: rgba(255,255,255,.72);
    font-family: "Patrick Hand", system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.contact-panel-items {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    flex: 1;
}

.contact-panel-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-panel-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-panel-item-label {
    color: rgba(255,255,255,.55);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-panel-item-value {
    color: rgba(255,255,255,.9);
    font-family: "Patrick Hand", system-ui, sans-serif;
    font-size: .95rem;
    line-height: 1.4;
}

.contact-panel-link {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.3);
    transition: border-color .2s ease;
}

    .contact-panel-link:hover {
        border-color: rgba(255,255,255,.8);
        color: #fff;
    }

.contact-panel-deco {
    width: 80px;
    height: auto;
    opacity: .15;
    margin-top: auto;
    padding-top: 2rem;
    filter: brightness(10);
}

/* Right panel */
.contact-panel-right {
    background: #fff;
    padding: 3rem;
}

/* Status message */
.contact-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-family: "Patrick Hand", system-ui, sans-serif;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

    .contact-status span {
        width: auto;
        height: 24px;
        border-radius: 999px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: .85rem;
        flex-shrink: 0;
    }

.contact-status--success {
    background: rgba(63,106,87,.08);
    color: var(--sage);
    border: 1px solid rgba(63,106,87,.2);
}

    .contact-status--success span {
        background: var(--sage);
        color: #fff;
    }

.contact-status--error {
    background: rgba(184,107,73,.08);
    color: var(--terra-dark);
    border: 1px solid rgba(184,107,73,.2);
}

    .contact-status--error span {
        background: var(--terra-dark);
        color: #fff;
        padding: 20px
    }

/* Form fields */
.contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-label {
    color: rgba(0,0,0,.65);
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .02em;
}

.contact-input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 12px;
    font-family: "Fredoka", sans-serif;
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper-soft);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    outline: none;
}

    .contact-input::placeholder {
        color: rgba(0,0,0,.35);
    }

    .contact-input:focus {
        border-color: var(--sage);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(63,106,87,.1);
    }

.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Submit button */
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sage);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: .85rem 1.75rem;
    font-family: "Fredoka", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 6px 16px rgba(63,106,87,.25);
    align-self: flex-start;
}

    .contact-submit:hover {
        background: #2d5240;
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(63,106,87,.3);
    }

    .contact-submit:active {
        transform: translateY(0);
    }

/* =========================================================
   FLOATING BUTTON
========================================================= */
.floating-order-btn {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1050;
    border-radius: 999px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

    .floating-order-btn.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }


/* =========================================================
   ERROR PAGE
========================================================= */
.error-board {
    min-height: 70vh;
    padding: 6rem 1.5rem;
    background: radial-gradient(circle at top left, rgba(224,138,91,.28), transparent 32%), radial-gradient(circle at bottom right, rgba(63,106,87,.18), transparent 30%), linear-gradient(135deg, #f7f3e8 0%, #fbf6ea 45%, #efe3cf 100%);
}

.error-card {
    max-width: 560px;
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    box-shadow: 0 24px 55px rgba(0,0,0,.10);
}

.error-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: .5rem 1rem;
    border-radius: 999px;
    background: rgba(224,138,91,.12);
    border: 1px solid rgba(224,138,91,.25);
    color: var(--terra-dark);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.error-title {
    color: var(--sage);
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.error-text {
    color: rgba(0,0,0,.68);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 440px;
    margin: 0 auto 2rem;
}

.error-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.error-request-id {
    color: rgba(0,0,0,.4);
    font-size: .82rem;
    margin-top: 1rem;
}

.error-dev-note {
    margin-top: 2rem;
    padding: 1.25rem;
    border-radius: 16px;
    border: 1.5px dashed rgba(224,138,91,.3);
    background: rgba(224,138,91,.05);
    text-align: left;
    font-size: .9rem;
    color: rgba(0,0,0,.65);
}

    .error-dev-note strong {
        color: var(--terra-dark);
    }

    .error-dev-note p {
        margin: .5rem 0 0;
    }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991.98px) {
    .navbar-custom {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(247, 243, 232, 0.98);
    }

        .navbar-custom .navbar-collapse {
            margin-top: .75rem;
            padding: .75rem;
            background: rgba(255,255,255,.7);
            border-radius: 16px;
            border: 1px solid rgba(0,0,0,.06);
            box-shadow: 0 8px 24px rgba(0,0,0,.06);
        }

        .navbar-custom .nav-link {
            padding: .6rem .75rem !important;
            border-radius: 10px;
            margin: .15rem 0;
        }

        .navbar-custom .btn {
            width: 100%;
            text-align: center;
            margin-top: .5rem;
        }

        .navbar-custom .nav-link::after {
            display: none;
        }

    .hero-showcase {
        padding: 5.5rem 0 4.5rem;
    }

    .hero-title {
        max-width: none;
    }

    .hero-visual-wrap {
        min-height: auto;
        margin-top: 1rem;
    }

    .hero-main-card {
        width: 100%;
        transform: none;
    }

    .hero-main-img {
        height: 420px;
    }

    .hero-card-top {
        top: 1rem;
        left: 1rem;
    }

    .hero-card-bottom {
        right: 1rem;
        bottom: 1rem;
    }

    .hero-sticker {
        left: 1rem;
        bottom: 4.5rem;
    }

    .hero-deco-bear {
        display: none;
    }

    .hero-deco-arrow-top {
        display: none;
    }

    .hero-deco-arrow-lower {
        display: none;
    }

    .hero-deco-flower {
        width: 82px;
        top: 1rem;
        right: 1rem;
    }

    .hero-deco-boba {
        width: 72px;
        left: 37rem;
        top: 20rem;
    }

    .hero-wave svg {
        height: 100px;
        margin-bottom: -70px;
    }

    .plant-card {
        padding: 14px;
    }

    .plant-line {
        font-size: 1.08rem;
    }

    .menu-panel {
        padding: 2rem 1.25rem;
    }

    .deco-boba-small {
        display: none;
    }

    .deco-boba-small-mobile {
        display: flex;
        width: 25%;
    }

    .toppings-card, #panel-1-imgs img {
        margin-top: 2rem;
        display: none;
    }

    .toppings-card-mobile {
        display: grid;
        place-items: center;
        background: var(--paper-deep);
        border-radius: 42px;
        padding: 2.5rem 2rem;
        width: 98%;
        position: relative;
        box-shadow: var(--shadow-soft);
    }

    #panel-1-imgs-mobile {
        display: flex;
        margin-top: 0rem;
        justify-content: space-between;
    }

        #panel-1-imgs-mobile img {
            width: 20vw;
            justify-content: unset;
        }

    .dessert {
        align-items: center;
    }

    .dessert-blob {
        margin-left: 0;
        max-width: 100%;
    }

    .dessert-blob-title {
        font-size: 4vw;
    }

    .menu-line-item {
        align-items: center;
    }

    .menu-line-name {
        max-width: 65%;
    }

    .menu-block--columns {
        column-count: 1;
    }

    .kids-panel {
        min-height: auto;
    }

    .deco-hamster-2 {
        width: 17%;
    }

    .deco-flowers-bottom-right {
        width: 17%;
    }

    .gallery-size-toggle button {
        display: none;
    }

    .gallery-grid,
    .gallery-grid.size-small,
    .gallery-grid.size-medium,
    .gallery-grid.size-large {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
    }

        .gallery-grid .gallery-grid-item,
        .gallery-grid.size-small .gallery-grid-item,
        .gallery-grid.size-medium .gallery-grid-item,
        .gallery-grid.size-large .gallery-grid-item {
            grid-column: span 3;
            grid-row: span 1;
        }

        .gallery-grid .gallery-grid-item--feature,
        .gallery-grid.size-small .gallery-grid-item--feature,
        .gallery-grid.size-medium .gallery-grid-item--feature,
        .gallery-grid.size-large .gallery-grid-item--feature {
            grid-column: span 6;
            grid-row: span 2;
        }

        .gallery-grid .gallery-grid-item--large,
        .gallery-grid.size-small .gallery-grid-item--large,
        .gallery-grid.size-medium .gallery-grid-item--large,
        .gallery-grid.size-large .gallery-grid-item--large {
            grid-column: span 6;
        }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-panel-left {
        padding: 2.5rem 2rem;
    }

    .contact-panel-deco {
        display: none;
    }

    .contact-panel-right {
        padding: 2rem;
    }

    .contact-submit {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-showcase {
        padding: 4.75rem 0 4rem;
    }

    .hero-kicker {
        font-size: .8rem;
        letter-spacing: .06em;
    }

    .hero-title {
        font-size: clamp(2.3rem, 10vw, 3.4rem);
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        display: grid !important;
    }

    .hero-main-img {
        height: 340px;
    }

    .hero-card-top {
        padding: 1rem;
        transform: rotate(-2deg);
    }

    .hero-card-bottom {
        position: static;
        max-width: none;
        margin-top: 1rem;
    }

    .hero-card-bottom {
        /* flex-direction: row; */
    }

    .hero-sticker {
        /* position: static;
    display: inline-block; */
        transform: rotate(-4deg);
        margin-top: 1rem;
        bottom: 10rem;
        padding: .4rem;
    }

    .hero-deco-flower,
    .hero-deco-boba,
    .hero-bg-blur {
        display: none;
    }

    .hero-wave svg {
        height: 100px;
        margin-bottom: -70px;
    }

    .menu-main-subnav {
        line-height: 1.35;
    }

    .menu-line-item {
        gap: .6rem;
    }

    .menu-line-dots {
        border-bottom-width: 4px;
    }

    .toppings-row {
        align-items: flex-start;
    }

    .topping-art {
        width: 52px;
    }

    .deco-cat {
        width: 60%;
    }

    .gallery-grid,
    .gallery-grid.size-small,
    .gallery-grid.size-medium,
    .gallery-grid.size-large {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 8px;
    }

        .gallery-grid .gallery-grid-item,
        .gallery-grid.size-small .gallery-grid-item,
        .gallery-grid.size-medium .gallery-grid-item,
        .gallery-grid.size-large .gallery-grid-item {
            grid-column: span 1;
            grid-row: span 1;
        }

        .gallery-grid .gallery-grid-item--feature,
        .gallery-grid.size-small .gallery-grid-item--feature,
        .gallery-grid.size-medium .gallery-grid-item--feature,
        .gallery-grid.size-large .gallery-grid-item--feature {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-grid .gallery-grid-item--large,
        .gallery-grid.size-small .gallery-grid-item--large,
        .gallery-grid.size-medium .gallery-grid-item--large,
        .gallery-grid.size-large .gallery-grid-item--large {
            grid-column: span 2;
        }

    .error-card {
        padding: 2rem 1.5rem;
    }

    .error-actions {
        flex-direction: column;
    }

        .error-actions .hero-btn {
            width: 100%;
            text-align: center;
        }
}

@media (max-width: 440px) {
    .deco-strawberry-dessert {
        width: 40%;
    }

    .deco-hamster-2 {
        margin: .5rem;
        width: 15%;
        height: 15%;
    }

    .deco-flowers-bottom-right {
        margin: .5rem;
        width: 15%;
        height: 15%;
    }
}

/* =========================================================
   PRINT
========================================================= */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    body * {
        visibility: hidden;
    }

    #menu,
    #menu * {
        visibility: visible;
    }

    #menu {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        padding: 0 !important;
        margin: 0 !important;
    }

    .navbar,
    .floating-order-btn {
        display: none !important;
    }

    .menu-board {
        background: #fff !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
    }

    .menu-panel,
    .menu-block,
    .toppings-card,
    .dessert-blob {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .menu-deco {
        display: none !important;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
/* =========================================================
   MISSION STATEMENT (About section)
========================================================= */
.about-mission {
    border-radius: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.55);
    padding: 22px 28px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}

.about-mission-label {
    width: 100%;
    color: var(--terra-dark);
    font-family: "Patrick Hand", system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.about-mission .about-quote-text {
    flex: 1;
    font-style: italic;
    font-size: 1.08rem;
    line-height: 1.7;
}

.about-mission-sig {
    width: 100%;
    text-align: right;
    color: var(--sage);
    font-family: "Patrick Hand", system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 8px;
}
