:root {
    --bg: #fbf7ef;
    --surface: #ffffff;
    --text: #12301f;
    --muted: #476b56;
    --brand: #2c6b3f;
    --brand-2: #7fb18d;
    --peach: #f7c7a3;
    --butter: #f2e3a0;
    --border: rgba(18, 48, 31, 0.12);
    --shadow: 0 10px 30px rgba(18, 48, 31, 0.10);
    --radius: 18px;
    --header-h: 72px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(900px 500px at 15% 10%, rgba(127, 177, 141, 0.25), transparent 60%), radial-gradient(900px 500px at 80% 20%, rgba(247, 199, 163, 0.22), transparent 55%), var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.page-main {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 40px;
}

/* GLOBAL TYPOGRAPHY */
.kicker {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid var(--border);
    background: rgba(242, 227, 160, 0.35);
    border-radius: 999px;
    color: var(--muted);
    font-weight: 650;
    margin: 0 0 14px;
}

.subhead {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    max-width: 720px;
}

.micro {
    margin: 12px 0 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* SECTIONS */
.section {
    padding: 22px 0 34px;
}

.section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

    .section__head h1,
    .section__head h2,
    .section__head h3 {
        margin: 0;
    }

    .section__head p {
        margin: 0;
        color: var(--muted);
    }

.grid {
    display: grid;
    gap: 16px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 18px;
}

.tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(127, 177, 141, 0.14);
    font-weight: 750;
    text-align: center;
    min-height: 60px;
}

    .tile:hover {
        background: rgba(247, 199, 163, 0.20);
    }

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-weight: 750;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-small {
    padding: 10px 12px;
    border-radius: 12px;
}

.btn-primary {
    background: linear-gradient(180deg, rgba(44, 107, 63, 0.95), rgba(44, 107, 63, 0.80));
    color: #fff;
    border-color: rgba(44, 107, 63, 0.25);
}

    .btn-primary:hover {
        filter: brightness(1.02);
        transform: translateY(-1px);
    }

.btn-ghost {
    background: rgba(255, 255, 255, 0.65);
    color: var(--text);
}

    .btn-ghost:hover {
        background: rgba(242, 227, 160, 0.25);
    }

.link {
    color: var(--brand);
    font-weight: 750;
    display: inline-flex;
    gap: 8px;
    margin-top: 10px;
}

.band {
    border-top: 1px solid var(--border);
}

.band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(90deg, rgba(247, 199, 163, 0.22), rgba(127, 177, 141, 0.20));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
}

/* AGE GATE */
.agegate {
    position: fixed;
    inset: 0;
    background: rgba(18, 48, 31, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.agegate--open {
    display: flex;
}

.agegate__card {
    width: min(520px, 100%);
}

@media (min-width: 921px) {
    .mobile-menu {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
    }
}

/* GLOBAL RESPONSIVE */

@media (max-width: 920px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .band__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .section__head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container,
    .page-main {
        width: min(1120px, calc(100% - 24px));
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 20px 0 28px;
    }

    .page-main {
        padding-top: calc(var(--header-h) + 20px);
        padding-bottom: 28px;
    }
}
