:root {
    --ink: #15110d;
    --paper: #fff6df;
    --surface: #fffdf6;
    --muted: #695f52;
    --line: #15110d;
    --red: #c92f23;
    --blue: #145c67;
    --yellow: #f3c64d;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
    background:
        linear-gradient(rgba(21, 17, 13, .035) 1px, transparent 1px),
        var(--paper);
    background-size: 100% 12px;
    line-height: 1.62;
}
a { color: inherit; }
.site-header {
    max-width: 1220px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 5px solid var(--ink);
}
.site-footer {
    max-width: 1220px;
    margin: 56px auto 0;
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    border-top: 5px solid var(--ink);
    background: var(--surface);
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.brand-mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: var(--red);
    color: white;
    border: 3px solid var(--ink);
    font-family: Arial, sans-serif;
    font-weight: 900;
}
.brand strong {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 21px;
    text-transform: uppercase;
}
.brand small { display: block; color: var(--muted); font-size: 14px; }
nav, .footer-links { display: flex; gap: 10px; flex-wrap: wrap; }
nav a, .footer-links a {
    color: var(--ink);
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    border: 2px solid var(--ink);
    padding: 7px 10px;
    background: var(--surface);
}
nav a:hover, .footer-links a:hover { background: var(--yellow); }
.hero {
    max-width: 1220px;
    margin: 0 auto 36px;
    padding: 46px 24px 38px;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .85fr);
    gap: 28px;
    align-items: stretch;
}
.hero-copy, .page-title {
    border-bottom: 3px solid var(--ink);
}
.hero-copy h1, .page-title h1 {
    margin: 0 0 22px;
    max-width: 980px;
    font-size: clamp(2.7rem, 4.8rem, 4.8rem);
    line-height: .92;
    font-weight: 900;
}
.hero-copy p, .page-title p {
    max-width: 760px;
    color: var(--muted);
    font-size: 20px;
}
.eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    padding: 5px 9px;
    color: white;
    background: var(--red);
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 900;
    font-size: 12px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    background: var(--ink);
    color: white;
    border: 3px solid var(--ink);
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}
.button:hover { background: var(--red); }
.button.secondary { background: var(--red); }
.hero-panel {
    border: 4px solid var(--ink);
    padding: 26px;
    background: var(--yellow);
    box-shadow: 12px 12px 0 var(--ink);
}
.hero-panel span {
    color: var(--red);
    font-family: Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
}
.hero-panel strong {
    display: block;
    font-size: 34px;
    line-height: 1.02;
    margin: 18px 0;
}
.section, .page-title, .band {
    max-width: 1220px;
    margin: 0 auto;
    padding: 38px 24px;
}
.section-heading {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    align-items: end;
    border-top: 5px solid var(--ink);
    padding-top: 18px;
    margin-bottom: 22px;
}
.section-heading h2, .band h2 {
    font-size: clamp(2rem, 3rem, 3rem);
    line-height: 1;
    margin: 0;
}
.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 3px solid var(--ink);
    border-left: 3px solid var(--ink);
}
.card {
    background: var(--surface);
    border-right: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    overflow: hidden;
}
.thumb {
    min-height: 88px;
    background: linear-gradient(90deg, var(--accent), var(--ink));
    display: flex;
    align-items: end;
    padding: 14px;
}
.thumb span {
    color: white;
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
}
.card-body { padding: 20px; }
.card h2, .card h3 {
    margin: 8px 0 10px;
    line-height: 1.08;
    font-size: 27px;
}
.card h2 a, .card h3 a { text-decoration: none; }
.card h2 a:hover, .card h3 a:hover { color: var(--red); }
.card p { color: var(--muted); }
.meta {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    color: var(--blue) !important;
    text-transform: uppercase;
}
.band {
    margin-top: 36px;
    margin-bottom: 52px;
    background: var(--ink);
    color: white;
    border: 5px solid var(--ink);
}
.band p { max-width: 760px; color: #f8e7c2; }
.article {
    max-width: 920px;
    margin: 0 auto;
    padding: 42px 24px;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 26px;
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.article-header {
    padding-bottom: 24px;
    border-bottom: 5px solid var(--ink);
}
.article-header h1 {
    font-size: clamp(2.5rem, 4rem, 4rem);
    line-height: .98;
    margin: 0 0 18px;
}
.article-header p:not(.eyebrow) { color: var(--muted); font-size: 21px; }
.article-content {
    font-size: 19px;
    background: var(--surface);
    padding: 6px 0 0;
}
.article-content h2 {
    font-size: 35px;
    line-height: 1.05;
    margin-top: 44px;
    padding-top: 18px;
    border-top: 3px solid var(--ink);
}
.article-content strong { color: var(--red); }
.article-list {
    background: var(--surface);
    border: 3px solid var(--ink);
    padding: 18px 22px 18px 42px;
}
.article-list li { margin-bottom: 10px; }
.article-table {
    margin: 24px 0;
    overflow-x: auto;
    border: 3px solid var(--ink);
    background: var(--surface);
}
.article-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
}
.article-table th, .article-table td {
    padding: 13px 14px;
    border: 2px solid var(--ink);
    text-align: left;
    vertical-align: top;
}
.article-table th {
    background: var(--ink);
    color: white;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    font-size: 12px;
}
.contextual-links, .source-link {
    background: var(--yellow);
    border: 3px solid var(--ink);
    padding: 16px 18px;
    font-family: Arial, sans-serif;
    font-size: 16px;
}
.contextual-links a, .source-link a { color: var(--red); font-weight: 900; }
.expert-box {
    margin: 44px 0 10px;
    padding: 24px;
    background: var(--ink);
    color: white;
    border: 5px solid var(--red);
}
.expert-box p { color: #f8e7c2; }
.expert-box h2 { margin-top: 0; }
.expert-box a { color: var(--yellow); font-weight: 900; }
.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.profile-grid h2 { font-size: 30px; line-height: 1.1; }
.profile-grid li { margin-bottom: 10px; }
.narrow { max-width: 900px; }
.site-footer p { color: var(--muted); max-width: 560px; }

@media (max-width: 780px) {
    .site-header, .site-footer, .section-heading { display: flex; flex-direction: column; align-items: flex-start; }
    .hero { grid-template-columns: 1fr; padding-top: 28px; }
    .grid, .profile-grid { grid-template-columns: 1fr; }
    .hero-copy h1, .page-title h1, .article-header h1 { font-size: 2.7rem; }
}
