:root {
    --go-forest: #1E5E3A;
    --go-green: #4CAF50;
    --go-lime: #8BC34A;
    --go-mint: #DCEFD3;
    --go-citrus: #FFC857;
    --go-cream: #FFF8EC;
    --go-white: #FFFFFF;
    --go-ink: #102018;
    --go-muted: #647067;
    --go-tomato: #F97316;
    --go-shadow: 0 24px 70px rgba(16, 32, 24, .14);
    --go-soft-shadow: 0 14px 34px rgba(16, 32, 24, .10);
    --radius: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--go-ink);
    background: linear-gradient(180deg, #fffdf8 0%, var(--go-cream) 40%, #ffffff 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
    padding-bottom: 74px;
}

img, picture { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
input, select, textarea {
    width: 100%;
    border: 1px solid rgba(30, 94, 58, .18);
    border-radius: 14px;
    padding: 12px 14px;
    min-height: 46px;
    background: var(--go-white);
    color: var(--go-ink);
}
textarea { resize: vertical; }
:focus-visible {
    outline: 3px solid rgba(255, 200, 87, .85);
    outline-offset: 3px;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}
.narrow { max-width: 820px; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 2000;
    transform: translateY(-130%);
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--go-forest);
    color: #fff;
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3 {
    margin: 0;
    line-height: 1.05;
    color: var(--go-ink);
    letter-spacing: 0;
    overflow-wrap: anywhere;
    max-width: 100%;
    white-space: normal;
}
h1 { font-size: clamp(2.45rem, 7vw, 5.8rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3.4rem); }
h3 { font-size: 1.08rem; }
p { margin: 0; color: var(--go-muted); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 248, 236, .84);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(30, 94, 58, .08);
    transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 28px rgba(16, 32, 24, .08);
}
.header-inner {
    position: relative;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand-link { flex: 0 1 auto; }
.brand-link img { width: min(210px, 48vw); height: auto; }
.site-nav {
    display: none;
    position: fixed;
    inset: 74px 16px auto 16px;
    padding: 16px;
    border-radius: 18px;
    background: var(--go-white);
    box-shadow: var(--go-shadow);
    flex-direction: column;
    gap: 8px;
}
.site-nav.is-open { display: flex; }
.site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--go-forest);
    font-weight: 800;
}
.site-nav a.active,
.site-nav a:hover { background: var(--go-mint); }
.phone-link { color: var(--go-muted) !important; }
.nav-toggle {
    position: fixed;
    right: 18px;
    top: 13px;
    z-index: 1200;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--go-forest);
    display: grid;
    place-content: center;
    gap: 4px;
    cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--go-soft-shadow); }
.btn:disabled { cursor: wait; opacity: .72; transform: none; box-shadow: none; }
.btn-leaf { background: var(--go-forest); color: #fff; }
.btn-outline { border-color: rgba(30, 94, 58, .25); background: rgba(255,255,255,.82); color: var(--go-forest); }
.btn-citrus { background: var(--go-citrus); color: #1f351e; }
.btn-quiet { background: rgba(30, 94, 58, .08); color: var(--go-forest); }
.btn-small { min-height: 40px; padding: 9px 13px; font-size: .9rem; }
.btn-nav { background: var(--go-forest) !important; color: #fff !important; padding-inline: 18px !important; }

.hero, .page-hero {
    position: relative;
    overflow: hidden;
    padding: 38px 0 42px;
}
.hero::before, .page-hero::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto auto;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 200, 87, .32), transparent 62%);
    pointer-events: none;
}
.hero-grid, .split-grid {
    display: grid;
    gap: 28px;
    align-items: center;
}
.hero-grid > *, .split-grid > *, .order-grid > *, .contact-grid > *, .header-inner > * {
    min-width: 0;
}
.hero-copy { max-width: 680px; }
.eyebrow, .section-kicker, .product-kicker {
    color: var(--go-forest);
    text-transform: uppercase;
    font-weight: 950;
    font-size: .78rem;
    letter-spacing: .08em;
    overflow-wrap: anywhere;
}
.hero-lede, .page-hero p {
    max-width: 720px;
    margin-top: 16px;
    font-size: 1.08rem;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.soft-note, .center-note {
    margin-top: 14px;
    font-size: .92rem;
    color: #536458;
}
.badge-cloud {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.badge-cloud span, .area-strip span, .tag-row span {
    border-radius: 999px;
    background: rgba(220, 239, 211, .9);
    color: var(--go-forest);
    padding: 8px 12px;
    font-weight: 850;
    font-size: .9rem;
}
.hero-visual {
    position: relative;
    min-height: 330px;
    border-radius: 34px;
}
.hero-visual img, .rounded-photo {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--go-shadow);
    object-fit: cover;
}
.hero-visual img {
    aspect-ratio: 1.1;
    min-height: 330px;
}
.ingredient-chip {
    position: absolute;
    z-index: 2;
    background: var(--go-white);
    color: var(--go-forest);
    font-weight: 950;
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: var(--go-soft-shadow);
    animation: floaty 4s ease-in-out infinite;
}
.chip-a { top: 12%; left: -8px; }
.chip-b { right: 3%; top: 18%; animation-delay: .8s; }
.chip-c { bottom: 10%; left: 10%; animation-delay: 1.4s; }

.section { padding: 54px 0; }
.section-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 26px;
}
.section-heading p:not(.section-kicker) { max-width: 680px; }
.strip-section { padding: 28px 0; background: rgba(255, 255, 255, .66); }
.area-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: thin;
}
.area-strip span { flex: 0 0 auto; }
.center-note { text-align: center; }

.product-grid {
    display: grid;
    gap: 18px;
}
.product-card {
    overflow: hidden;
    border: 1px solid rgba(30, 94, 58, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 44px rgba(16, 32, 24, .08);
}
.product-media { background: linear-gradient(135deg, var(--go-mint), #fff); }
.product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.image-placeholder {
    min-height: 220px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--go-mint), var(--go-citrus));
}
.image-placeholder span {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.8);
    color: var(--go-forest);
    font-weight: 950;
}
.product-body {
    display: grid;
    gap: 11px;
    padding: 17px;
}
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tag-row span {
    padding: 5px 9px;
    font-size: .76rem;
}
.product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.product-actions strong { color: var(--go-forest); font-size: .92rem; }
.source-note { color: #778178; }

.category-band { background: linear-gradient(180deg, rgba(220,239,211,.42), rgba(255,248,236,.3)); }
.category-grid, .card-grid, .delivery-grid, .story-grid, .step-grid, .mini-card-grid {
    display: grid;
    gap: 16px;
}
.category-card, .plan-card, .delivery-card, .story-card, .step-card, .contact-card, .contact-form, .desktop-cart {
    border: 1px solid rgba(30, 94, 58, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    padding: 20px;
    box-shadow: 0 16px 42px rgba(16, 32, 24, .08);
}
.category-card span, .plan-card h2, .delivery-card h3 { color: var(--go-forest); font-weight: 950; }
.mini-card-grid div {
    min-height: 112px;
    display: grid;
    align-content: center;
    gap: 6px;
    border-radius: 18px;
    padding: 18px;
    background: var(--go-white);
    border: 1px solid rgba(30,94,58,.1);
}
.mini-card-grid strong { color: var(--go-forest); }
.step-card span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--go-citrus);
    font-weight: 950;
    color: #24351e;
    margin-bottom: 14px;
}
.cta-panel {
    display: grid;
    gap: 18px;
    align-items: center;
    border-radius: 30px;
    padding: 26px;
    background: linear-gradient(135deg, var(--go-forest), #2e7d47);
    color: #fff;
    box-shadow: var(--go-shadow);
}
.cta-panel h2, .cta-panel p { color: #fff; }

.menu-toolbar {
    position: sticky;
    top: 74px;
    z-index: 20;
    display: grid;
    gap: 12px;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 22px;
    background: rgba(255, 248, 236, .92);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 32px rgba(16, 32, 24, .08);
}
.search-box {
    display: grid;
    gap: 8px;
    color: var(--go-forest);
    font-weight: 900;
}
.filter-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 3px;
}
.filter-chip {
    flex: 0 0 auto;
    min-height: 42px;
    border: 1px solid rgba(30, 94, 58, .18);
    border-radius: 999px;
    padding: 8px 13px;
    background: var(--go-white);
    color: var(--go-forest);
    font-weight: 850;
    cursor: pointer;
}
.filter-chip.active { background: var(--go-forest); color: #fff; }
.empty-state {
    margin-top: 18px;
    padding: 22px;
    border-radius: 18px;
    background: var(--go-mint);
    color: var(--go-forest);
    font-weight: 850;
}

.order-layout { overflow: visible; }
.order-grid {
    display: grid;
    gap: 22px;
    align-items: start;
}
.order-products, .desktop-cart {
    min-width: 0;
    min-height: 0;
}
.desktop-cart {
    position: sticky;
    top: 110px;
    display: none;
    align-self: start;
}
.cart-empty {
    padding: 14px;
    border-radius: 14px;
    background: rgba(220,239,211,.7);
    color: var(--go-forest);
    font-weight: 850;
}
.cart-items { display: grid; gap: 10px; margin: 14px 0; }
.cart-line {
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
    background: var(--go-white);
    border: 1px solid rgba(30, 94, 58, .1);
}
.cart-line strong { color: var(--go-forest); }
.qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qty-controls button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--go-mint);
    color: var(--go-forest);
    font-weight: 950;
    cursor: pointer;
}
.order-details {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}
.honeypot-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.order-details label, .contact-form label {
    display: grid;
    gap: 7px;
    color: var(--go-forest);
    font-weight: 850;
}
.field-pair { display: grid; gap: 10px; }
.cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sticky-cart-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 82px;
    z-index: 920;
    min-height: 56px;
    border: 0;
    border-radius: 999px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--go-forest);
    color: #fff;
    box-shadow: var(--go-shadow);
    cursor: pointer;
}
.sticky-cart-bar [data-cart-count], .mobile-cta [data-cart-count] {
    min-width: 24px;
    min-height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--go-citrus);
    color: #1f351e;
    font-weight: 950;
}
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: none;
    background: rgba(16, 32, 24, .34);
}
.cart-drawer.is-open { display: block; }
.cart-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 88vh;
    overflow: auto;
    padding: 22px;
    border-radius: 28px 28px 0 0;
    background: var(--go-cream);
    box-shadow: 0 -20px 70px rgba(16,32,24,.22);
    animation: drawerIn .24s ease;
}
.cart-close {
    float: right;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--go-white);
    color: var(--go-forest);
    font-weight: 950;
    cursor: pointer;
}

.contact-grid { display: grid; gap: 18px; }
.contact-form { display: grid; gap: 13px; }
.legal-copy h2 { margin-top: 26px; margin-bottom: 8px; font-size: 1.35rem; }
.legal-copy p { margin-bottom: 12px; }

.site-footer {
    padding: 48px 0 96px;
    background: #143d29;
    color: #e8f4e8;
}
.footer-grid {
    display: grid;
    gap: 24px;
}
.site-footer h2 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.site-footer p, .site-footer a, .site-footer li { color: #d7ead6; }
.footer-logo { width: 170px; height: auto; margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.demo-note { font-size: .9rem; }
.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    min-height: 66px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid rgba(30, 94, 58, .14);
    box-shadow: 0 -12px 30px rgba(16, 32, 24, .10);
}
.mobile-cta a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: var(--go-forest);
    font-weight: 900;
    font-size: .82rem;
}
.toast {
    position: fixed;
    left: 50%;
    bottom: 154px;
    z-index: 1800;
    transform: translate(-50%, 20px);
    opacity: 0;
    pointer-events: none;
    background: var(--go-forest);
    color: #fff;
    border-radius: 999px;
    padding: 12px 16px;
    box-shadow: var(--go-shadow);
    transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.email-modal {
    position: fixed;
    inset: 0;
    z-index: 1900;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(16, 32, 24, .44);
}
.email-modal.is-open { display: flex; }
.email-modal-panel {
    width: min(640px, 100%);
    max-height: min(760px, calc(100vh - 36px));
    overflow: auto;
    border-radius: 24px;
    padding: 22px;
    background: var(--go-cream);
    box-shadow: var(--go-shadow);
}
.email-modal-panel h2 {
    margin-top: 8px;
    font-size: clamp(1.45rem, 4vw, 2.15rem);
}
.email-modal-panel p:not(.section-kicker) { margin-top: 10px; }
.email-modal-panel pre {
    max-height: 280px;
    overflow: auto;
    margin: 16px 0;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(30, 94, 58, .14);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    color: var(--go-ink);
    font: .9rem/1.45 ui-monospace, SFMono-Regular, Consolas, monospace;
}
.reveal { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes drawerIn {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (min-width: 390px) {
    .container { width: min(calc(100% - 36px), var(--container)); }
}
@media (min-width: 430px) {
    .hero { padding-top: 50px; }
}
@media (min-width: 768px) {
    body { padding-bottom: 0; }
    .hero-grid, .split-grid, .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .category-grid, .card-grid, .delivery-grid, .story-grid, .step-grid, .mini-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .field-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .mobile-cta { display: none; }
    .sticky-cart-bar { left: auto; right: 24px; bottom: 24px; width: 340px; }
    .site-footer { padding-bottom: 48px; }
}
@media (min-width: 1024px) {
    .nav-toggle { display: none; position: static; }
    .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    .site-nav a { padding: 9px 10px; font-size: .94rem; }
    .hero { padding: 70px 0 64px; }
    .hero-grid { grid-template-columns: .95fr 1.05fr; }
    .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .order-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 390px); }
    .desktop-cart {
        display: block;
        top: 92px;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding: clamp(16px, 1.35vw, 20px);
    }
    .desktop-cart h2 {
        margin-bottom: 12px;
        font-size: clamp(1.45rem, 2vw, 2rem);
        line-height: 1;
    }
    .desktop-cart .cart-empty {
        padding: 12px;
        font-size: .92rem;
    }
    .desktop-cart .cart-items {
        gap: 8px;
        margin: 12px 0;
    }
    .desktop-cart .cart-line {
        gap: 6px;
        padding: 10px;
    }
    .desktop-cart .order-details {
        gap: 9px;
        margin-top: 12px;
    }
    .desktop-cart .order-details label {
        gap: 5px;
        font-size: .86rem;
    }
    .desktop-cart input,
    .desktop-cart select,
    .desktop-cart textarea {
        min-height: 44px;
        padding: 10px 12px;
        font-size: .94rem;
    }
    .desktop-cart textarea {
        min-height: 78px;
    }
    .desktop-cart .field-pair {
        gap: 9px;
    }
    .desktop-cart .cart-actions {
        gap: 7px;
    }
    .desktop-cart .btn {
        min-height: 44px;
        padding: 10px 14px;
        font-size: .9rem;
    }
    .sticky-cart-bar { display: none; }
    .footer-grid { grid-template-columns: 1.2fr .9fr .7fr 1fr; }
    .cart-panel { left: auto; width: 440px; top: 0; border-radius: 28px 0 0 28px; animation: drawerSide .24s ease; }
}
@media (min-width: 1280px) {
    .container { width: min(calc(100% - 64px), var(--container)); }
    .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1440px) {
    :root { --container: 1240px; }
}
@media (max-width: 389px) {
    h1 { font-size: 2.24rem; }
    .hero-actions .btn { width: 100%; }
    .product-grid { grid-template-columns: 1fr; }
    .sticky-cart-bar { bottom: 78px; }
}
@media (max-width: 767px) {
    h1 { font-size: 2.18rem; line-height: 1.18; }
    .hero-copy, .page-hero .container { width: min(340px, calc(100vw - 36px)); max-width: calc(100vw - 36px); overflow: hidden; }
    .page-hero .container { margin-left: 18px; margin-right: auto; }
    .hero-copy h1, .page-hero h1 { max-width: 340px; }
    .product-grid { grid-template-columns: minmax(0, 1fr); }
    .nav-toggle { left: calc(min(100vw, 390px) - 66px); right: auto; }
    .mobile-cta { width: min(100vw, 390px); right: auto; }
    .sticky-cart-bar { max-width: 366px; right: auto; }
    .mobile-cta a { font-size: .76rem; }
}
@keyframes drawerSide {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
@media print {
    .site-header, .mobile-cta, .sticky-cart-bar, .site-footer, .cart-close, .btn, .menu-toolbar { display: none !important; }
    body { background: #fff; color: #000; padding: 0; }
    .cart-panel, .desktop-cart { position: static; display: block; box-shadow: none; background: #fff; max-height: none; }
}
