* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    --ink: #0f172a;
    --slate: #1f2937;
    --muted: #5f6b7a;
    --line: #e6e8ec;
    --paper: #ffffff;
    --canvas: #f6f5f2;
    --accent: #2a3a55;
    --accent-soft: #d7dee8;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--canvas);
    color: var(--ink);
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.site-header {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
}

.brand img {
    width: 48px;
    height: 48px;
}

.brand span {
    font-weight: 700;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 600;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
    border-bottom-color: var(--accent);
    color: var(--ink);
}

.hero {
    padding: 72px 0 54px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 14px;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--ink);
}

h1 {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.08;
    margin-bottom: 16px;
}

.lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--slate);
    max-width: 700px;
}

.section {
    padding: 54px 0;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-title {
    font-size: 28px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--muted);
    max-width: 520px;
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.block {
    padding: 4px 0;
}

.block h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.block p,
.block li {
    color: var(--slate);
    line-height: 1.7;
    font-size: 15px;
}

.block ul {
    padding-left: 18px;
    margin-top: 10px;
}

.subtle-rule {
    height: 1px;
    background: var(--line);
    margin: 22px 0;
    border: none;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.band {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.list {
    display: grid;
    gap: 16px;
    color: var(--slate);
    line-height: 1.6;
    font-size: 15px;
}

.list strong {
    color: var(--ink);
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    color: var(--paper);
    background: var(--accent);
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.cta.secondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.site-footer {
    padding: 36px 0 52px;
    color: var(--muted);
    font-size: 14px;
}

.footer-grid {
    display: grid;
    gap: 20px;
    align-items: start;
}

.footer-grid p {
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--ink);
}

.page-title {
    padding: 54px 0 24px;
}

.page-title h1 {
    font-size: clamp(28px, 4vw, 44px);
}

.content {
    display: grid;
    gap: 18px;
    color: var(--slate);
    font-size: 15px;
    line-height: 1.7;
}

.content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.content a:hover {
    text-decoration: underline;
}

@media (max-width: 720px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 12px;
        font-size: 13px;
    }

    .cta-row {
        width: 100%;
    }

    .hero {
        padding: 56px 0 44px;
    }
}

