:root {
    color-scheme: light;
    --bg: #fbf7f2;
    --surface: #ffffff;
    --ink: #49342f;
    --muted: #8d7d76;
    --rose: #bf6c70;
    --rose-soft: #f0dddd;
    --sage: #9cab92;
    --line: #eadfd8;
    --shadow: 0 24px 70px rgba(73, 52, 47, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(240, 221, 221, 0.85), transparent 34rem),
        radial-gradient(circle at bottom right, rgba(156, 171, 146, 0.28), transparent 32rem),
        var(--bg);
    color: var(--ink);
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: var(--rose);
    font-weight: 700;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-shell {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0 56px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 48px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--rose-soft), #fff7ef);
    box-shadow: inset 0 0 0 1px rgba(191, 108, 112, 0.18);
}

.brand-mark svg {
    width: 25px;
    height: 25px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.nav-links a {
    padding: 9px 13px;
    border: 1px solid rgba(234, 223, 216, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--muted);
    font-size: 14px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 34px;
    align-items: center;
}

.hero-card,
.content-card {
    border: 1px solid rgba(234, 223, 216, 0.92);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-copy {
    padding: 44px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--rose-soft);
    color: var(--rose);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
}

h1 {
    max-width: 720px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 8vw, 82px);
    letter-spacing: -0.055em;
}

h2 {
    margin-top: 34px;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.035em;
}

h3 {
    margin-top: 26px;
    font-size: 22px;
}

p {
    margin: 14px 0 0;
}

.lead {
    max-width: 650px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 23px);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--rose);
    color: #fff;
    font-weight: 800;
}

.button.secondary {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
}

.feature-panel {
    padding: 28px;
}

.feature-list {
    display: grid;
    gap: 14px;
}

.feature {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
}

.feature strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
}

.feature span,
li {
    color: var(--muted);
}

.content-card {
    padding: clamp(26px, 5vw, 54px);
}

.content-card h1 {
    font-size: clamp(42px, 6vw, 68px);
}

.content-card ul {
    padding-left: 20px;
}

.meta {
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.footer {
    margin-top: 38px;
    color: var(--muted);
    font-size: 14px;
}

.footer a {
    color: var(--muted);
}

@media (max-width: 780px) {
    .site-shell {
        width: min(100% - 28px, 1080px);
        padding-top: 22px;
    }

    .nav {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px;
    }

    .nav-links {
        justify-content: flex-start;
    }

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

    .hero-copy {
        padding: 28px;
    }
}
