:root {
    --bg: #f7efe8;
    --bg-accent: #f6dcc8;
    --surface: rgba(255, 250, 246, 0.94);
    --surface-strong: #fffdfb;
    --ink: #1f1e1d;
    --muted: #635d57;
    --accent: #d47c4d;
    --accent-strong: #a85d36;
    --line: #ead7c8;
    --line-strong: #e3c3ad;
    --shadow: 0 20px 40px rgba(106, 63, 38, 0.08);
    --shadow-soft: 0 12px 28px rgba(106, 63, 38, 0.05);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: "Segoe UI", system-ui, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(246, 220, 200, 0.9), transparent 26%),
        radial-gradient(circle at top right, rgba(255, 233, 214, 0.75), transparent 24%),
        linear-gradient(180deg, #f7efe8 0%, #fcfaf7 100%);
}

a {
    color: var(--accent-strong);
}

.site-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 20px 56px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    margin-bottom: 20px;
    padding-top: 8px;
}

.site-header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 246, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8bb8f 0%, #d47c4d 100%);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-copy strong {
    display: block;
    font-size: 1rem;
}

.brand-copy span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: white;
    color: var(--accent-strong);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.nav-link:hover {
    transform: translateY(-1px);
    border-color: var(--line-strong);
    background: #fff7f1;
}

.nav-link.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.hero,
.section-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.hero {
    padding: 42px 34px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f7e5d8;
    color: var(--accent-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
}

h1 {
    margin-bottom: 14px;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 0.98;
}

h2 {
    margin-bottom: 12px;
    font-size: clamp(1.35rem, 2.3vw, 1.7rem);
}

h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.lead {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.75;
}

.section-stack {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.section-card {
    padding: 26px 24px;
}

.section-card p,
.section-card li,
.hero p {
    color: var(--muted);
    line-height: 1.72;
}

.section-card ul,
.section-card ol {
    margin: 0;
    padding-left: 22px;
}

.button-row,
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button-row {
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.16s ease, filter 0.16s ease;
}

.button:hover {
    transform: translateY(-1px);
    filter: brightness(0.99);
}

.button-primary {
    background: var(--accent);
    color: white;
}

.button-secondary {
    border: 1px solid var(--line);
    background: white;
    color: var(--accent-strong);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.mini-card,
.info-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface-strong);
}

.mini-card {
    padding: 20px;
}

.info-card {
    padding: 18px;
}

.callout {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #f1d9c8;
    background: #fbefe6;
    color: #714630;
}

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

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef7f1;
    color: #2d7a50;
    font-size: 0.9rem;
    font-weight: 700;
}

.site-footer {
    margin-top: 24px;
    padding: 20px 10px 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 760px) {
    .site-shell {
        padding: 18px 14px 40px;
    }

    .site-header-inner {
        padding: 14px;
        border-radius: 20px;
    }

    .hero,
    .section-card {
        border-radius: 22px;
    }

    .hero {
        padding: 30px 22px;
    }

    .section-card {
        padding: 22px 18px;
    }
}
