:root {
    --ink: #132226;
    --muted: #657174;
    --paper: #f6f7f2;
    --surface: #ffffff;
    --line: #dfe5dd;
    --green: #116466;
    --rust: #c84b31;
    --ochre: #d9a441;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
}
a { color: inherit; }
.site-header, .site-footer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
    width: 42px; height: 42px; display: grid; place-items: center;
    border-radius: 8px; background: var(--green); color: white; font-weight: 900;
}
.brand small { display: block; color: var(--muted); font-size: 13px; }
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a, .footer-links a { color: var(--muted); text-decoration: none; font-weight: 700; }
nav a:hover, .footer-links a:hover { color: var(--green); }
.hero {
    max-width: 1180px;
    margin: 20px auto 40px;
    padding: 58px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 42px;
    align-items: center;
}
.hero h1, .page-title h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    margin: 0 0 20px;
    max-width: 900px;
}
.hero p, .page-title p { color: var(--muted); font-size: 18px; max-width: 760px; }
.eyebrow {
    color: var(--rust);
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 850;
    font-size: 13px;
}
.metric-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.metric-board div {
    min-height: 138px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.metric-board strong { color: var(--green); font-size: 38px; line-height: 1; }
.metric-board span { font-weight: 800; }
.section, .page-title, .band {
    max-width: 1180px;
    margin: 0 auto;
    padding: 44px 24px;
}
.section-heading { max-width: 780px; margin-bottom: 24px; }
.section-heading h2, .band h2 { font-size: clamp(28px, 4vw, 48px); line-height: 1.08; margin: 0; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}
.thumb {
    min-height: 124px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--accent), white 12%), var(--accent)),
        var(--accent);
    display: flex;
    align-items: end;
    padding: 18px;
}
.thumb span { color: white; font-weight: 900; text-transform: uppercase; font-size: 13px; }
.card-body { padding: 22px; }
.card h2, .card h3 { margin: 8px 0 10px; line-height: 1.22; font-size: 24px; }
.card h2 a, .card h3 a { text-decoration: none; }
.card p { color: var(--muted); }
.meta { color: var(--green) !important; font-size: 13px; font-weight: 800; }
.band {
    margin-top: 16px;
    margin-bottom: 48px;
    background: var(--ink);
    color: white;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: center;
}
.band p { color: #d8e3dc; max-width: 680px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--ochre);
    color: var(--ink);
    text-decoration: none;
    font-weight: 900;
}
.article { max-width: 860px; margin: 0 auto; padding: 44px 24px; }
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 14px;
}
.breadcrumb a { color: var(--green); font-weight: 800; text-decoration: none; }
.breadcrumb a:hover { color: var(--rust); }
.article-header h1 { font-size: clamp(36px, 6vw, 62px); line-height: 1.04; margin: 0 0 18px; }
.article-header p:not(.eyebrow) { color: var(--muted); font-size: 19px; }
.article-content { font-size: 18px; }
.article-content h2 { font-size: 32px; line-height: 1.16; margin-top: 42px; }
.contextual-links, .source-link {
    background: var(--surface);
    border-left: 4px solid var(--green);
    padding: 16px 18px;
}
.contextual-links a, .source-link a { color: var(--green); font-weight: 900; }
.expert-box {
    margin: 44px 0 10px;
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
}
.expert-box h2 { margin-top: 0; }
.expert-box a { color: var(--green); font-weight: 900; }
.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.profile-grid h2 { font-size: 28px; line-height: 1.15; }
.profile-grid li { margin-bottom: 10px; }
.narrow { max-width: 860px; }
.site-footer { border-top: 1px solid var(--line); align-items: flex-start; }
.site-footer p { max-width: 520px; color: var(--muted); }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 780px) {
    .site-header, .site-footer, .band { display: flex; flex-direction: column; align-items: flex-start; }
    .hero { grid-template-columns: 1fr; padding-top: 24px; }
    .grid, .metric-board, .profile-grid { grid-template-columns: 1fr; }
    .hero h1, .page-title h1 { font-size: 42px; }
}
