:root {
    --ink: #162013;
    --text: #3f473c;
    --muted: #737b70;
    --cream: #fbf7ef;
    --cream-2: #f2eadc;
    --card: #ffffff;
    --line: #e4dccd;
    --green: #1f3a2f;
    --green-2: #2f5b48;
    --gold: #c7963b;
    --blue: #020486;
    --shadow: 0 18px 50px rgba(22,32,19,.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--cream);
    color: var(--text);
}

a {
    color: inherit;
}

.site-shell {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251,247,239,.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.brand strong {
    display: block;
    color: var(--ink);
    font-size: 1.05rem;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    margin-top: .1rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: .4rem;
}

    .site-nav a {
        text-decoration: none;
        font-weight: 750;
        color: var(--text);
        padding: .7rem .9rem;
        border-radius: 999px;
    }

        .site-nav a:hover {
            background: white;
        }

.nav-cta {
    background: var(--green) !important;
    color: white !important;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #fffaf1;
    padding: 2rem 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

    .footer-grid strong {
        color: var(--ink);
    }

    .footer-grid p {
        margin: .35rem 0;
        color: var(--muted);
    }

    .footer-grid a {
        color: var(--green);
        font-weight: 750;
    }

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    padding: .95rem 1.25rem;
    text-decoration: none;
    font-weight: 850;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 14px 35px rgba(31,58,47,.22);
}

.btn-secondary {
    background: white;
    color: var(--ink);
    border: 1px solid var(--line);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .45rem .75rem;
    background: #fff3d6;
    color: #8a5b00;
    border: 1px solid #f3d494;
    font-weight: 850;
    font-size: .82rem;
}

@media (max-width: 700px) {
    .nav-wrap {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0;
    }

    .site-nav {
        justify-content: space-between;
        overflow-x: auto;
    }

    .footer-grid {
        flex-direction: column;
    }
}
