:root {
    --ink: #f7f8f5;
    --ink-soft: #e1e3df;
    --paper: #0d0e10;
    --surface: #17181b;
    --line: #2b2d31;
    --muted: #a5a8ae;
    --green: #ed1f3d;
    --green-dark: #ff6078;
    --green-deep: #b9142d;
    --success: #82d8a8;
    --shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --logo: "Barlow Condensed", "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-width: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

button, input { font: inherit; }

button { cursor: pointer; }

:focus-visible {
    outline: 3px solid var(--green-dark);
    outline-offset: 4px;
}

.container {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    padding: 0.7rem 1rem;
    background: var(--paper);
    color: var(--ink);
    border-radius: 0.4rem;
    transform: translateY(-200%);
}

.skip-link:focus { transform: translateY(0); }

.section-space { padding-block: clamp(4.5rem, 9vw, 8rem); }

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 1;
}

.brand-logo {
    width: clamp(11rem, 17vw, 14.5rem);
    height: auto;
    flex: 0 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.56rem;
    min-height: 3.125rem;
    padding: 0.78rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 750;
    line-height: 1.2;
    transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.btn svg { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; }

.btn-primary {
    background: var(--green);
    color: #ffffff;
}

.btn-primary:hover {
    background: #ff3b57;
    box-shadow: 0 9px 23px rgba(237, 31, 61, 0.28);
    transform: translateY(-1px);
}

.btn-primary:disabled { cursor: default; opacity: 0.8; transform: none; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 750;
}

.text-link span, .read-link span { transition: transform 180ms ease; }

.text-link:hover span, .read-link:hover span { transform: translateX(0.22rem); }

.text-link--light { color: var(--ink); }

.button-link {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(39rem, 54vw, 47rem);
    overflow: hidden;
    background: var(--paper);
    color: var(--ink);
}

.hero-media, .hero-shade { position: absolute; inset: 0; z-index: -2; }

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-shade {
    z-index: -1;
    background: linear-gradient(90deg, rgba(2, 4, 3, 0.92) 0%, rgba(2, 4, 3, 0.8) 34%, rgba(2, 4, 3, 0.28) 67%, rgba(2, 4, 3, 0.12) 100%), linear-gradient(0deg, rgba(2, 4, 3, 0.36) 0%, transparent 34%);
}

.hero-inner { position: relative; z-index: 1; }

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: clamp(1.4rem, 3.3vw, 2.5rem);
}

@media (min-width: 1440px) {
    .site-nav .brand {
        margin-left: calc((100vw - min(100vw, 80rem)) / -2);
    }
}

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    /* Keep the brand on the content grid while the utility navigation reaches the viewport gutter. */
    margin-right: calc((100vw - min(100vw, 80rem)) / -2);
    gap: clamp(1.2rem, 3.3vw, 3.1rem);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.6vw, 2.5rem);
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.84rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 180ms ease;
}

.nav-links a:hover { color: var(--green); }

.nav-cta { white-space: nowrap; }

.nav-toggle { display: none; }

.hero-copy {
    max-width: 45rem;
    padding-top: clamp(7rem, 13vw, 10.5rem);
    padding-bottom: 5rem;
}

.hero-copy h1 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(3rem, 5.65vw, 5.6rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 0.99;
}

.hero-copy h1 span { display: block; }

.hero-copy p {
    max-width: 35rem;
    margin: 1.75rem 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    line-height: 1.58;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.15rem;
}

/* Statement and credibility */
.statement { background: var(--paper); }

.statement-inner { max-width: 65rem; text-align: center; }

.statement-mark {
    display: grid;
    grid-template-columns: minmax(2rem, 1fr) auto minmax(2rem, 1fr);
    align-items: center;
    gap: 1.3rem;
    margin: 0 auto 1.5rem;
    color: var(--green);
}

.statement-mark span { height: 1px; background: var(--line); }
.statement-mark svg { width: 2.1rem; height: 2.1rem; }

.statement blockquote {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.7vw, 3.55rem);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.24;
}

.statement-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin: 1.8rem 0 0;
    color: var(--green-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.statement-attribution span { display: block; width: 1.35rem; height: 1px; background: var(--green-dark); }

.credibility-band { border-block: 1px solid var(--line); }

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.credibility-grid p {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0;
    padding: 1.8rem clamp(1.25rem, 3vw, 3.5rem);
}

.credibility-grid p:first-child { padding-left: 0; }
.credibility-grid p + p { border-left: 1px solid var(--line); }
.credibility-grid strong { font-size: 0.93rem; }
.credibility-grid span { color: var(--muted); font-size: 0.88rem; line-height: 1.52; }

/* Articles */
.articles { background: var(--paper); }

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.4rem;
}

.section-heading h2, .about-copy h2, .newsletter-intro h2 {
    max-width: 19ch;
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3.3vw, 3.25rem);
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.4vw, 2rem);
}

.article-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: var(--paper);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.article-card:hover {
    border-color: rgba(237, 31, 61, 0.68);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.article-image { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: #202126; }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.article-card:hover .article-image img { transform: scale(1.035); }

.article-body { display: flex; min-height: 15rem; flex: 1; flex-direction: column; padding: 1.35rem; }

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.95rem;
    margin-bottom: 0.85rem;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.article-meta span:first-child { color: var(--green-dark); text-transform: uppercase; }

.article-body h3 { margin: 0; font-size: clamp(1.15rem, 1.65vw, 1.4rem); letter-spacing: -0.04em; line-height: 1.22; }
.article-body h3 a:hover { text-decoration: underline; text-decoration-color: var(--green-dark); text-underline-offset: 0.2rem; }
.article-body p { margin: 0.85rem 0 1.4rem; color: var(--muted); font-size: 0.9rem; line-height: 1.52; }

.read-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 800;
}

/* About */
.about-section { background: var(--surface); }

.about-layout {
    display: grid;
    grid-template-columns: minmax(14rem, 0.74fr) minmax(0, 1.15fr);
    align-items: center;
    gap: clamp(2rem, 7vw, 7.5rem);
}

.about-image-wrap {
    position: relative;
    max-width: 27rem;
    overflow: hidden;
    border-radius: 0.9rem;
    background: #24252a;
}

.about-image-wrap::after {
    position: absolute;
    inset: auto 0 0;
    height: 26%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.42));
    content: "";
}

.about-image-wrap img { width: 100%; height: auto; object-fit: cover; }

.about-copy > p:not(.eyebrow) {
    max-width: 41rem;
    margin: 1.45rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.about-phone span {
    color: var(--muted);
    font-weight: 700;
}

.about-phone a {
    color: var(--ink);
    font-weight: 800;
}

.about-phone a:hover { color: var(--green-dark); }

.check-list { display: grid; gap: 0.8rem; margin: 1.6rem 0 1.75rem; padding: 0; list-style: none; }

.check-list li {
    position: relative;
    padding-left: 1.55rem;
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 600;
}

.check-list li::before {
    position: absolute;
    top: 0.42rem;
    left: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--green-dark);
    content: "";
}

/* Newsletter */
.newsletter-section { background: var(--paper); }

.newsletter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.5rem, 3.7vw, 3rem);
    border-radius: 1.25rem;
    background: var(--surface);
}

.newsletter-intro { display: flex; max-width: 39rem; align-items: flex-start; gap: 1.1rem; }

.newsletter-icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    place-items: center;
    border-radius: 50%;
    background: #351319;
    color: var(--green-dark);
}

.newsletter-icon svg { width: 1.35rem; height: 1.35rem; }
.newsletter-intro .eyebrow { margin-bottom: 0.55rem; }
.newsletter-intro h2 { max-width: 21ch; font-size: clamp(1.55rem, 2.5vw, 2.2rem); }
.newsletter-intro > div > p:last-child { margin: 0.7rem 0 0; color: var(--muted); font-size: 0.91rem; }

.newsletter-form {
    position: relative;
    display: grid;
    width: min(100%, 30rem);
    flex: 0 1 30rem;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
}

.newsletter-name-fields {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    min-height: 3.125rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--line);
    border-radius: 0.55rem;
    background: var(--paper);
    color: var(--ink);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder { color: #8e9198; }
.newsletter-form input:focus-visible { outline-color: var(--green-dark); outline-offset: 2px; }
.newsletter-form .btn { flex: 0 0 auto; }

.form-status {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    width: 100%;
    margin: 0;
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 650;
}

.form-status.is-error { color: #ff8585; }

/* Email signup modal */
.newsletter-modal {
    width: min(calc(100% - 2rem), 32rem);
    max-height: calc(100dvh - 2rem);
    margin: auto;
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: 1.1rem;
    background: transparent;
    color: var(--ink);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.32);
}

.newsletter-modal::backdrop {
    background: rgba(2, 5, 3, 0.72);
    backdrop-filter: blur(4px);
}

.newsletter-modal-content {
    position: relative;
    padding: clamp(1.75rem, 6vw, 3rem);
    border: 1px solid var(--line);
    border-radius: inherit;
    background: var(--surface);
}

.newsletter-modal .eyebrow { margin-bottom: 0.65rem; }

.newsletter-modal h2 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2rem, 6.5vw, 2.8rem);
    letter-spacing: -0.06em;
    line-height: 1.04;
}

.newsletter-modal-content > p:not(.eyebrow) {
    max-width: 37ch;
    margin: 1rem 0 1.6rem;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.58;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: grid;
    width: 2.45rem;
    height: 2.45rem;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    color: var(--ink-soft);
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.modal-close:hover { border-color: rgba(237, 31, 61, 0.7); background: #231318; color: var(--ink); }
.modal-close svg { width: 1.05rem; height: 1.05rem; }

.modal-form {
    display: grid;
    width: 100%;
    flex: none;
    grid-template-columns: 1fr;
    gap: 0.6rem;
}

.modal-label { color: var(--ink-soft); font-size: 0.82rem; font-weight: 750; }
.modal-form input { width: 100%; }
.modal-form .btn { width: 100%; }
.modal-form .form-status { position: static; min-height: 1.2rem; margin-top: 0.1rem; }

/* Footer */
.site-footer { padding-block: 2.45rem; background: #090a0c; color: var(--ink); }

.footer-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-footer .brand-logo { width: 9.5rem; }
.site-footer p { margin: 0.5rem 0 0; color: var(--muted); font-size: 0.76rem; }

.footer-links, .footer-actions { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1rem, 2.7vw, 2.5rem); }

.footer-links a, .footer-actions a { color: var(--ink-soft); font-size: 0.8rem; font-weight: 550; }
.footer-links a:hover, .footer-actions a:hover { color: var(--green); }

/* Secondary pages */
.simple-hero { padding: 2rem 0 4.75rem; background: var(--paper); color: var(--ink); }
.simple-hero .site-nav { padding-top: 0; }
.simple-hero h1 { max-width: 12ch; margin: 5.5rem 0 0; font-size: clamp(3rem, 6vw, 5.35rem); letter-spacing: -0.07em; line-height: 1; }
.simple-hero p { max-width: 39rem; margin: 1.3rem 0 0; color: var(--ink-soft); }
.archive-hero { padding-bottom: clamp(5.5rem, 12vw, 10rem); }
.archive-hero h1 { margin-top: clamp(5.5rem, 10vw, 8.25rem); font-size: clamp(3.4rem, 6.3vw, 5.9rem); }
.archive-hero p { max-width: 43rem; font-size: clamp(1rem, 1.45vw, 1.16rem); }
.archive-content, .legal-content, .contact-content { padding-block: clamp(4rem, 8vw, 7rem); }
.archive-content { border-top: 1px solid var(--line); padding-top: clamp(3.25rem, 6vw, 5.75rem); }
.archive-list { display: grid; gap: 0; }
.archive-story {
    display: grid;
    grid-template-columns: clamp(12rem, 19vw, 17rem) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.75rem, 4.3vw, 4.8rem);
    padding: clamp(2rem, 4vw, 3.25rem) 0;
    border-top: 1px solid var(--line);
}

.archive-story:first-child { border-top: 0; padding-top: 0; }
.archive-story img { width: 100%; height: auto; aspect-ratio: 16 / 9; border-radius: 0.8rem; object-fit: cover; }
.archive-story h2, .legal-content h2, .contact-content h2 { margin: 0; letter-spacing: -0.052em; line-height: 1.12; }
.archive-story h2 { max-width: 26ch; font-size: clamp(1.55rem, 2.2vw, 2.35rem); }
.archive-story .eyebrow { margin-bottom: 0.85rem; }
.archive-story p, .legal-content p, .contact-content p { max-width: 65ch; color: var(--muted); }
.archive-story p { margin: 1rem 0 1.35rem; font-size: clamp(0.95rem, 1.25vw, 1.07rem); line-height: 1.66; }
.archive-story .text-link { color: var(--ink); }
.archive-story .text-link:hover { color: var(--green-dark); }
.legal-content { max-width: 52rem; }
.legal-content section + section { margin-top: 3rem; }
.contact-content { max-width: 50rem; }
.contact-card { padding: clamp(1.5rem, 4vw, 3rem); border-radius: 1rem; background: var(--surface); }
.contact-card .btn { margin-top: 1rem; }

@media (max-width: 1080px) {
    .nav-toggle {
        position: relative;
        display: grid;
        width: 2.85rem;
        height: 2.85rem;
        place-content: center;
        gap: 0.3rem;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 50%;
        background: rgba(5, 8, 6, 0.25);
        color: var(--ink);
    }

    .nav-toggle > span:not(.sr-only) {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 1.15rem;
        height: 1px;
        background: currentColor;
        transition: transform 180ms ease;
    }

    .nav-toggle > span:nth-child(2) { transform: translate(-50%, -0.2rem); }
    .nav-toggle > span:nth-child(3) { transform: translate(-50%, 0.2rem); }
    .nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translate(-50%, 0) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

    .nav-panel {
        position: absolute;
        top: calc(100% + 0.8rem);
        right: 0;
        display: none;
        width: min(22rem, calc(100vw - 2.5rem));
        align-items: stretch;
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.25rem;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 0.85rem;
        background: rgba(12, 17, 13, 0.97);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.33);
    }

    .nav-panel.is-open { display: flex; }
    .nav-links { align-items: stretch; flex-direction: column; gap: 0; }
    .nav-links li + li { border-top: 1px solid rgba(255, 255, 255, 0.13); }
    .nav-links a { display: block; padding: 0.85rem 0; }
    .nav-cta { width: 100%; }
    .site-nav { position: relative; }
    .hero-copy { padding-top: clamp(8rem, 18vw, 10rem); }
    .newsletter-card { align-items: flex-start; flex-direction: column; }
    .newsletter-form { width: min(100%, 38rem); flex-basis: auto; }
}

@media (max-width: 720px) {
    .credibility-grid { grid-template-columns: 1fr; }
    .credibility-grid p { padding: 1.35rem 0; }
    .credibility-grid p + p { border-top: 1px solid var(--line); border-left: 0; }
    .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .article-card:last-child { grid-column: 1 / -1; max-width: none; }
    .about-layout { grid-template-columns: minmax(11rem, 0.65fr) 1fr; gap: 2.7rem; }
    .footer-layout { align-items: flex-start; flex-wrap: wrap; }
    .archive-story { grid-template-columns: 11rem 1fr; }
}

@media (max-width: 620px) {
    .section-space { padding-block: 4.25rem; }
    .hero { min-height: 42rem; }
    .hero-media img { object-position: 63% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(2, 4, 3, 0.89) 0%, rgba(2, 4, 3, 0.7) 56%, rgba(2, 4, 3, 0.3) 100%), linear-gradient(0deg, rgba(2, 4, 3, 0.55), transparent 40%); }
    .hero-copy { max-width: 26rem; padding-top: 8.7rem; }
    .hero-copy h1 { max-width: 9.7ch; font-size: clamp(3rem, 14.2vw, 4.35rem); }
    .hero-copy p { max-width: 29ch; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.1rem; }
    .hero-actions .btn { width: 100%; max-width: 20rem; }
    .statement blockquote { font-size: clamp(1.75rem, 8.3vw, 2.55rem); }
    .statement-mark { gap: 0.8rem; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 1rem; }
    .article-grid { grid-template-columns: 1fr; }
    .article-card:last-child { grid-column: auto; max-width: none; }
    .article-body { min-height: 0; }
    .about-layout { grid-template-columns: 1fr; gap: 2rem; }
    .about-image-wrap { max-width: 14rem; }
    .newsletter-card { padding: 1.35rem; }
    .newsletter-intro { align-items: flex-start; flex-direction: column; gap: 0.85rem; }
    .newsletter-icon { width: 2.6rem; height: 2.6rem; flex-basis: 2.6rem; }
    .newsletter-form { grid-template-columns: 1fr; }
    .newsletter-name-fields { grid-template-columns: 1fr; }
    .newsletter-form .btn { width: 100%; }
    .form-status { position: static; margin-top: 0.1rem; }
    .footer-layout { flex-direction: column; gap: 1.6rem; }
    .footer-links, .footer-actions { gap: 1rem 1.4rem; }
    .simple-hero h1 { margin-top: 4rem; }
    .archive-story { grid-template-columns: 1fr; }
    .archive-story img { max-width: 22rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Article pages */
.post-hero { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.post-hero h1 { max-width: 20ch; margin: 0; font-size: clamp(2.5rem, 5vw, 4.4rem); letter-spacing: -0.055em; line-height: 1.02; }
.post-hero .post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem; max-width: none; margin: clamp(3.5rem, 7vw, 6rem) 0 1.35rem; color: var(--green-dark); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.post-hero .post-meta span + span::before { content: "·"; margin-right: 0.55rem; color: var(--muted); }
.post-hero .post-lede { max-width: 46rem; margin: 1.6rem 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.55; }

.post-figure { margin: 0; }
.post-figure img { width: 100%; height: auto; aspect-ratio: 16 / 9; border-radius: 1rem; object-fit: cover; }
.post-figure figcaption { margin-top: 0.85rem; color: var(--muted); font-size: 0.8rem; }
.post-figure + .post-body { margin-top: clamp(2.25rem, 4.5vw, 3.5rem); }

.post-content { padding-block: clamp(3rem, 6vw, 5rem); }
.post-body { max-width: 44rem; }
.post-body > * { margin: 0; }
.post-body > * + * { margin-top: 1.5rem; }
.post-body p { color: var(--ink-soft); font-size: clamp(1rem, 1.3vw, 1.1rem); line-height: 1.72; }
.post-body h2 { max-width: 24ch; margin: clamp(2.75rem, 5vw, 3.75rem) 0 0; font-size: clamp(1.6rem, 2.4vw, 2.3rem); letter-spacing: -0.045em; line-height: 1.14; }
.post-body h3 { margin: 2.25rem 0 0; font-size: clamp(1.1rem, 1.5vw, 1.3rem); letter-spacing: -0.02em; }
.post-body strong { color: var(--ink); font-weight: 700; }
.post-body a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.post-body a:hover { color: var(--ink); }
.post-body ul { padding-left: 1.15rem; color: var(--ink-soft); font-size: clamp(1rem, 1.3vw, 1.1rem); line-height: 1.72; }
.post-body li + li { margin-top: 0.7rem; }
.post-body li::marker { color: var(--green); }

.post-numbers { display: grid; grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr)); gap: 0.7rem; padding: 0; }
.post-numbers div { padding: clamp(1.1rem, 2.2vw, 1.5rem); border: 1px solid var(--line); border-radius: 0.9rem; background: var(--surface); }
.post-numbers dt { color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.post-numbers dd { margin: 0.5rem 0 0; color: var(--ink); font-family: var(--logo); font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-style: italic; font-weight: 800; line-height: 0.95; }
.post-numbers dd span { display: block; margin-top: 0.5rem; color: var(--muted); font-family: var(--sans); font-size: 0.78rem; font-style: normal; font-weight: 500; line-height: 1.45; }

.post-callout { padding: clamp(1.4rem, 3vw, 2rem); border-left: 3px solid var(--green); border-radius: 0 0.85rem 0.85rem 0; background: var(--surface); }
.post-callout p { color: var(--ink-soft); }
.post-callout p:first-child { margin-top: 0; }
.post-callout .eyebrow { margin-bottom: 0.6rem; }

.post-pull { margin: clamp(2.5rem, 5vw, 3.5rem) 0; padding: 0; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.post-pull blockquote { margin: 0; padding: clamp(1.75rem, 3.5vw, 2.5rem) 0; color: var(--ink); font-family: var(--serif); font-size: clamp(1.35rem, 2.3vw, 1.9rem); font-style: italic; line-height: 1.32; }

.post-sources { margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: 2rem; border-top: 1px solid var(--line); }
.post-sources h2 { margin: 0 0 1.25rem; font-size: 1.05rem; letter-spacing: 0.02em; }
.post-sources ol { margin: 0; padding-left: 1.2rem; color: var(--muted); font-size: 0.88rem; line-height: 1.6; }
.post-sources li + li { margin-top: 0.6rem; }
.post-sources a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.post-sources a:hover { color: var(--green-dark); }

.post-foot { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.post-disclosure { max-width: 44rem; margin-top: 1.5rem; color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

.post-more { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem); }
.post-more-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 2rem; }
.post-more-grid a { display: block; }
.post-more-grid p:not(.eyebrow) { margin: 0.6rem 0 0; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.post-more-grid h3 { margin: 0; font-size: clamp(1.1rem, 1.6vw, 1.35rem); letter-spacing: -0.03em; line-height: 1.2; }
.post-more-grid a:hover h3 { color: var(--green-dark); }

@media (max-width: 720px) {
    .post-numbers { grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr)); }
}
