:root {
    --leaf: #1b4332;
    --leaf-2: #2d6a4f;
    --gold: #c9a227;
    --cream: #f6f1e6;
    --ink: #24180f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Outfit, sans-serif;
    color: var(--ink);
    background: var(--cream);
}

h1, h2, h3 { font-family: Fraunces, Georgia, serif; }

.nav-landing {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 7vw;
    background: rgba(246,241,230,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e6dcc6;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
}

.brand img {
    height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    background: transparent;
    border-radius: 12px;
    padding: 0;
}

.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 500; }

.btn-leaf, .btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
}

.btn-leaf { background: var(--leaf); color: #fff; }
.btn-gold { background: var(--gold); color: #1c120c; }

.hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    padding: 72px 7vw 40px;
    align-items: center;
}

.hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.05; margin: 0 0 16px; }
.hero p { font-size: 1.15rem; color: #5c4a38; max-width: 560px; }
.hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-card {
    background: #fffdf8;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 24px 50px rgba(36,24,15,.1);
}

.section { padding: 72px 7vw; }
.section.alt { background: #fffdf8; }
.section h2 { font-size: 2.3rem; margin-bottom: 10px; }
.lead { color: #6a5846; margin-bottom: 32px; }

.grid-5, .grid-3, .grid-2 {
    display: grid;
    gap: 18px;
}
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

.benefit, .step, .feature {
    background: #fffdf8;
    border: 1px solid #eadfca;
    border-radius: 22px;
    padding: 22px;
}

.benefit i, .feature i { color: var(--leaf-2); font-size: 1.5rem; }
.kpi-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kpi-mini div { background: #f3ecdd; border-radius: 16px; padding: 14px; }
.kpi-mini strong { display: block; font-family: Fraunces, serif; font-size: 1.3rem; }

.cta-band {
    margin: 0 7vw 72px;
    background: linear-gradient(135deg, var(--leaf), #0f2419);
    color: #fff;
    border-radius: 32px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.form-card { background: #fffdf8; border-radius: 24px; padding: 28px; box-shadow: 0 18px 40px rgba(36,24,15,.08); }
.form-card .form-hint { color: #6a5846; font-size: .95rem; margin: 0 0 18px; }
.form-card .form-label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
.form-card .form-optional { font-weight: 400; color: #6a5846; }
.form-card input, .form-card textarea {
    width: 100%;
    border: 1px solid #e4d8c4;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    font-family: inherit;
}
.form-card .btn-leaf { width: 100%; }

footer.landing-foot {
    padding: 28px 7vw 40px;
    color: #6a5846;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 980px) {
    .hero, .grid-5, .grid-3, .grid-2, .cta-band { grid-template-columns: 1fr; display: grid; }
    .nav-links a:not(.btn-leaf):not(.btn-gold) { display: none; }
}

.hero > * {
    animation: fade-up .8s ease both;
}
.hero > :last-child { animation-delay: .18s; }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-stagger.is-visible > * {
    opacity: 1;
    transform: none;
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .14s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .23s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .41s; }

@keyframes fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero > *,
    .reveal,
    .reveal-stagger > * {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
}
