:root {
    color-scheme: light;
    --bg: #f8f4ed;
    --paper: #fffaf2;
    --ink: #24302a;
    --muted: #6d786f;
    --accent: #b45f36;
    --accent-dark: #7a3d24;
    --line: #e4d8c7;
    --forest: #314b3b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.hero {
    min-height: 680px;
    background:
        linear-gradient(120deg, rgba(36, 48, 42, 0.9), rgba(49, 75, 59, 0.52)),
        radial-gradient(circle at top right, rgba(236, 188, 124, 0.45), transparent 34%),
        linear-gradient(135deg, #213227 0%, #5a6d55 48%, #c99b62 100%);
    color: #fffaf2;
    padding: 28px clamp(20px, 5vw, 72px) 80px;
    display: flex;
    flex-direction: column;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255, 250, 242, 0.84);
    font-size: 0.95rem;
}

.nav-links a,
.footer a {
    text-decoration: none;
}

.nav-links a:hover,
.footer a:hover {
    text-decoration: underline;
}

.hero-content {
    max-width: 820px;
    margin-top: auto;
    padding-top: 120px;
}

.eyebrow,
.section-label {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #f2c98f;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 920px;
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 7vw, 6.8rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.2;
}

.lead {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(255, 250, 242, 0.88);
    font-size: 1.2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: #fffaf2;
    color: var(--forest);
    font-weight: 700;
    text-decoration: none;
}

.section,
.feature {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    padding: 88px 0 68px;
}

.intro p:last-child,
.split p {
    color: var(--muted);
    font-size: 1.08rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-bottom: 82px;
}

.card,
.quote-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--paper);
    box-shadow: 0 18px 45px rgba(64, 48, 34, 0.06);
}

.card {
    padding: 28px;
}

.card span {
    display: inline-block;
    margin-bottom: 34px;
    color: var(--accent);
    font-weight: 800;
}

.card p,
.quote-card p,
.checklist,
.resources a {
    color: var(--muted);
}

.feature {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: stretch;
    padding: 64px;
    border-radius: 36px;
    background: var(--forest);
    color: #fffaf2;
}

.feature-text p {
    color: rgba(255, 250, 242, 0.82);
}

.feature .section-label {
    color: #f2c98f;
}

.quote-card {
    display: flex;
    align-items: flex-end;
    padding: 32px;
    background: rgba(255, 250, 242, 0.1);
    border-color: rgba(255, 250, 242, 0.22);
}

.quote-card p {
    margin-bottom: 0;
    color: #fffaf2;
    font-size: 1.3rem;
    line-height: 1.4;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    padding: 88px 0;
}

.checklist {
    margin: 0;
    padding: 0;
    list-style: none;
}

.checklist li {
    padding: 18px 0 18px 34px;
    border-bottom: 1px solid var(--line);
    position: relative;
}

.checklist li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 26px;
}

.resources {
    padding-bottom: 84px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.resource-grid a {
    min-height: 92px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper);
    font-weight: 700;
    text-decoration: none;
}

.resource-grid a:hover {
    border-color: rgba(180, 95, 54, 0.55);
    color: var(--accent-dark);
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 26px clamp(20px, 5vw, 72px);
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.footer p {
    margin-bottom: 0;
}

@media (max-width: 860px) {
    .intro,
    .cards,
    .feature,
    .split,
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 620px;
    }

    .feature {
        padding: 36px 24px;
    }
}

@media (max-width: 620px) {
    .topbar,
    .footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        gap: 12px;
    }

    .hero {
        padding-inline: 20px;
    }
}
