:root {
    --ink: #132323;
    --navy: #102a2a;
    --navy-2: #173b3a;
    --paper: #f5f0e6;
    --paper-2: #ebe4d7;
    --white: #fffdf8;
    --red: #d74430;
    --red-dark: #a92e20;
    --green: #557c65;
    --gold: #e3b95c;
    --muted: #63706d;
    --line: #cec7ba;
    --shadow: 0 18px 50px rgba(16, 42, 42, .12);
    --radius: 4px;
    --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--red-dark); text-underline-offset: .18em; }
a:hover { color: var(--red); }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }
h1, h2, h3, h4 {
    margin: 0 0 .55em;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.05;
    text-wrap: balance;
}
h1 { font-size: clamp(2.8rem, 7vw, 6.1rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 4.3vw, 3.75rem); letter-spacing: -.04em; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); letter-spacing: -.025em; }
p { margin: 0 0 1.15em; }
.wrap { width: min(calc(100% - 40px), var(--wrap)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.section { padding-block: clamp(65px, 10vw, 125px); }
.section-tight { padding-block: 55px; }
.section-white { background: var(--white); }
.section-dark { color: var(--paper); background: var(--navy); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--red-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
    line-height: 1.2;
    text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; background: currentColor; content: ""; }
.eyebrow.light { color: #f1a99f; }
.lede { max-width: 820px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2.3vw, 1.75rem); line-height: 1.45; }
.small { font-size: .86rem; line-height: 1.5; }
.muted { color: var(--muted); }
.source-note { color: var(--muted); font-size: .78rem; line-height: 1.5; }
.section-dark .source-note { color: #b9cac6; }
.section-dark .source-note a { color: #f1a99f; }
.visually-hidden {
    position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important;
    margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important; border: 0 !important;
}
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px; color: white; background: var(--red); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.utility-bar { color: #dce7e3; background: #091c1c; font-size: .76rem; }
.utility-inner { display: flex; justify-content: space-between; align-items: center; min-height: 34px; }
.utility-inner p { margin: 0; text-transform: uppercase; letter-spacing: .08em; }
.utility-inner a { color: inherit; }
.site-header { position: relative; z-index: 20; color: white; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.15); }
.masthead { display: flex; justify-content: space-between; align-items: center; min-height: 88px; gap: 35px; }
.brand { display: inline-flex; align-items: baseline; color: var(--white); font-family: Georgia, serif; font-size: 1.65rem; font-weight: 700; letter-spacing: -.055em; line-height: 1; text-decoration: none; }
.brand i { color: var(--red); font-size: 1.25em; font-style: normal; }
.site-nav { display: flex; align-items: stretch; align-self: stretch; gap: 6px; }
.site-nav a { display: flex; align-items: center; padding: 0 14px; color: #e7eeeb; border-bottom: 3px solid transparent; font-size: .88rem; font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: white; border-bottom-color: var(--red); }
.menu-toggle { display: none; color: white; background: transparent; border: 0; }

.hero { position: relative; overflow: hidden; color: var(--paper); background: var(--navy); }
.hero::after {
    position: absolute; right: -11vw; bottom: -35%; width: 55vw; aspect-ratio: 1; opacity: .13;
    background: repeating-radial-gradient(circle at 50%, transparent 0 19px, var(--paper) 20px 21px);
    border-radius: 50%; content: "";
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(260px, .55fr); gap: 70px; align-items: end; padding-block: clamp(70px, 11vw, 145px); }
.hero h1 { max-width: 930px; color: var(--white); }
.hero h1 em { color: #e98c7e; font-style: normal; }
.hero-summary { max-width: 680px; margin-top: 28px; color: #d6e1de; font-size: 1.12rem; }
.hero-status { padding: 28px; color: var(--ink); background: var(--gold); box-shadow: 12px 12px 0 rgba(0,0,0,.18); }
.status-label { display: block; margin-bottom: 10px; font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-status strong { display: block; margin-bottom: 7px; font-family: Georgia, serif; font-size: 1.5rem; line-height: 1.15; }
.hero-status p { margin: 0; font-size: .9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.button {
    display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 11px 20px;
    color: white; background: var(--navy); border: 2px solid var(--navy); border-radius: 2px;
    font-size: .84rem; font-weight: 800; letter-spacing: .03em; text-decoration: none;
}
.button:hover { color: white; background: var(--navy-2); }
.button-red { color: white; background: var(--red); border-color: var(--red); }
.button-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.button-light { color: var(--navy); background: var(--white); border-color: var(--white); }
.button-light:hover { color: white; background: transparent; }
.text-link { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.fact-strip { background: var(--red); color: white; }
.fact-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.fact { padding: 24px 30px; border-right: 1px solid rgba(255,255,255,.3); }
.fact:first-child { padding-left: 0; }
.fact:last-child { border: 0; }
.fact strong { display: block; font-family: Georgia, serif; font-size: 2rem; line-height: 1; }
.fact span { font-size: .77rem; letter-spacing: .04em; }

.evidence-highlight { padding-block: clamp(55px, 8vw, 90px); color: white; background: var(--red-dark); }
.evidence-highlight-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 8vw, 100px); align-items: center; }
.evidence-highlight h2 { color: white; font-size: clamp(2.3rem, 5vw, 4.5rem); }
.evidence-highlight p { font-size: 1.05rem; }
.evidence-caveat { padding-left: 18px; color: #f7d7d2; border-left: 2px solid #ed9e92; font-size: .84rem !important; }
.evidence-highlight .source-note, .evidence-highlight .source-note a { color: #f7d7d2; }

.tax-hook { padding-block: clamp(60px, 9vw, 105px); background: var(--gold); }
.tax-hook-inner { display: grid; grid-template-columns: minmax(180px, .45fr) minmax(0, 1.3fr); gap: clamp(35px, 7vw, 90px); align-items: center; }
.tax-question { color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(7rem, 18vw, 14rem); font-weight: 700; letter-spacing: -.09em; line-height: .75; opacity: .18; }
.tax-hook h2 { max-width: 850px; font-size: clamp(2.4rem, 5vw, 4.6rem); }
.tax-hook .lede { max-width: 850px; }
.tax-caveat { padding: 17px 20px; background: rgba(255,255,255,.4); border-left: 5px solid var(--red-dark); font-size: .9rem; }
.section-dark .claim h3 a { color: var(--white); }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 8vw, 110px); align-items: start; }
.section-heading { max-width: 680px; margin-bottom: 45px; }
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.council-card { position: relative; min-height: 270px; padding: 30px; background: var(--white); border-top: 8px solid var(--area-color, var(--green)); box-shadow: var(--shadow); }
.council-card .number { color: var(--area-color, var(--green)); font-family: Georgia, serif; font-size: 3.4rem; font-weight: 700; line-height: .8; opacity: .28; }
.council-card p { font-size: .93rem; }
.council-card .text-link { position: absolute; bottom: 25px; }
.area-north { --area-color: #3f7291; }
.area-mid { --area-color: #668454; }
.area-south-west { --area-color: #b2694f; }
.area-south-east { --area-color: #755d91; }

.callout { padding: 30px; background: var(--paper-2); border-left: 5px solid var(--red); }
.callout h3 { margin-bottom: 10px; }
.callout p:last-child { margin-bottom: 0; }
.claim-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,.18); }
.claim { padding: 34px; background: var(--navy); }
.claim strong { display: block; margin-bottom: 14px; color: #f1a99f; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.claim p { margin: 0; color: #d7e1df; font-size: .95rem; }
.light-claims { background: var(--line); }
.light-claims .claim { background: var(--white); }
.light-claims .claim h3 { color: var(--navy); }
.light-claims .claim p { color: var(--muted); }

.evidence-section { background: #ede4d3; }
.evidence-score { display: grid; grid-template-columns: 22fr 64fr 15fr; min-height: 175px; margin-top: 35px; color: white; box-shadow: var(--shadow); }
.evidence-score > div { display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.evidence-score strong { font-family: Georgia, serif; font-size: clamp(2rem, 5vw, 4rem); line-height: 1; }
.evidence-score span { margin-top: 6px; font-size: .74rem; font-weight: 800; line-height: 1.25; text-transform: uppercase; }
.score-positive { background: var(--green); }
.score-negative { background: var(--red-dark); }
.score-other { color: var(--ink); background: var(--gold); }
.table-scroll { overflow-x: auto; }
.evidence-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow); }
.evidence-table th, .evidence-table td { padding: 14px 17px; border-bottom: 1px solid var(--line); text-align: left; }
.evidence-table th { color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.evidence-table td:nth-child(2) { color: var(--green); }
.evidence-table td:nth-child(3) { color: var(--red-dark); }
.evidence-table .boundary-row td { background: #f4ddd8; border-top: 3px solid var(--red); }

.page-hero { padding-block: clamp(55px, 9vw, 105px); color: var(--white); background: var(--navy); }
.page-hero h1 { max-width: 950px; color: var(--white); font-size: clamp(2.7rem, 6vw, 5.4rem); }
.page-hero .lede { color: #d6e1de; }
.breadcrumb { margin-bottom: 35px; color: #a9bbb7; font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumb a { color: inherit; }

.timeline { position: relative; margin: 50px 0 0; padding: 0; list-style: none; }
.timeline::before { position: absolute; top: 10px; bottom: 10px; left: 118px; width: 2px; background: var(--line); content: ""; }
.timeline li { display: grid; grid-template-columns: 95px 1fr; gap: 48px; position: relative; padding-bottom: 45px; }
.timeline li::before { position: absolute; top: 7px; left: 112px; width: 12px; height: 12px; background: var(--paper); border: 3px solid var(--red); border-radius: 50%; content: ""; }
.timeline time { color: var(--red-dark); font-size: .78rem; font-weight: 800; line-height: 1.35; text-align: right; text-transform: uppercase; }
.timeline h3 { margin-bottom: 5px; }
.timeline p { max-width: 650px; color: var(--muted); }

.checker { padding: clamp(28px, 6vw, 55px); color: white; background: var(--navy); box-shadow: var(--shadow); }
.checker h2, .checker h3 { color: white; }
.checker-intro { max-width: 740px; color: #d5e0dd; }
.checker-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; max-width: 700px; margin-top: 28px; }
.checker-form label { grid-column: 1 / -1; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
input, select, textarea { width: 100%; padding: 13px 15px; color: var(--ink); background: white; border: 2px solid transparent; border-radius: 2px; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); outline: 3px solid rgba(227,185,92,.24); }
.checker-result { display: none; margin-top: 30px; padding: 30px; color: var(--ink); background: var(--white); border-top: 7px solid var(--gold); }
.checker-result.is-visible { display: block; }
.result-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.result-label { display: block; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.result-value { display: block; margin-top: 4px; color: var(--navy); font-family: Georgia, serif; font-size: 1.4rem; font-weight: 700; line-height: 1.2; }
.warning { margin-top: 20px; padding: 15px 18px; background: #f7e8bc; border-left: 4px solid #c38b18; font-size: .88rem; }
.fallback { margin-top: 22px; }
.fallback summary { cursor: pointer; font-weight: 700; }
.fallback-controls { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; margin-top: 15px; }

.filter-bar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 35px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.filter-options { display: flex; gap: 7px; }
.filter-button { padding: 9px 14px; color: var(--navy); background: transparent; border: 1px solid var(--line); font-size: .76rem; font-weight: 800; }
.filter-button.is-active { color: white; background: var(--navy); border-color: var(--navy); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { display: flex; flex-direction: column; min-height: 330px; padding: 28px; background: var(--white); border: 1px solid #ded7ca; transition: transform .2s, box-shadow .2s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card[hidden] { display: none; }
.news-meta { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-bottom: 22px; color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.content-badge { display: inline-flex; padding: 5px 8px; color: var(--navy); background: #dbe6e0; border-radius: 2px; font-size: .65rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.content-badge.analysis { color: #76261c; background: #f1c7c0; }
.transport-ledger { border-top: 1px solid var(--line); }
.transport-entry { display: grid; grid-template-columns: minmax(190px, .45fr) minmax(0, 1.55fr); gap: clamp(25px, 6vw, 80px); padding: 34px 0; border-bottom: 1px solid var(--line); }
.transport-entry[hidden] { display: none; }
.transport-entry > div:first-child { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.transport-entry > div:first-child strong { color: var(--muted); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.transport-entry h3 { margin-bottom: 8px; }
.transport-entry p { margin: 0; color: var(--muted); }
.evidence-filter h2 { margin-bottom: 0; font-size: clamp(1.8rem, 3.5vw, 3rem); }
.callout .content-badge { margin-bottom: 16px; }
.news-card h2 { font-size: 1.65rem; }
.news-card p { color: var(--muted); font-size: .92rem; }
.news-card .text-link { margin-top: auto; }

.article-header { padding-block: 70px; background: var(--white); border-bottom: 1px solid var(--line); }
.article-header h1 { max-width: 970px; font-size: clamp(2.7rem, 6vw, 5rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 25px; color: var(--muted); font-size: .78rem; }
.article-body { padding-block: 70px; }
.article-body p { font-family: Georgia, serif; font-size: 1.18rem; line-height: 1.72; }
.article-sources { margin-top: 55px; padding-top: 30px; border-top: 2px solid var(--navy); }
.article-sources li { margin-bottom: 12px; }

.source-list { display: grid; gap: 15px; padding: 0; list-style: none; }
.source-item { display: grid; grid-template-columns: 120px 1fr; gap: 25px; padding: 24px 0; border-top: 1px solid var(--line); }
.source-item strong { color: var(--muted); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }
.source-item h3 { margin-bottom: 7px; font-size: 1.3rem; }
.source-item p { margin: 0; font-size: .9rem; }
.map-frame { padding: 14px; background: white; box-shadow: var(--shadow); }
.map-frame img { width: 100%; }
.map-caption { margin-top: 12px; color: var(--muted); font-size: .78rem; }

.newsletter-band { padding-block: 60px; color: white; background: var(--navy-2); border-top: 8px solid var(--red); }
.newsletter-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.newsletter-band h2 { color: white; font-size: clamp(2rem, 3.4vw, 3rem); }
.newsletter-form label { display: block; margin-bottom: 7px; font-size: .76rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.form-row { display: flex; gap: 8px; }
.form-note { margin: 9px 0 0; color: #c7d5d2; font-size: .75rem; }
.newsletter-options { display: grid; gap: 8px; margin-top: 14px; }
.newsletter-option { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; padding: 12px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); }
.newsletter-option .option-number { display: grid; place-items: center; width: 24px; height: 24px; color: var(--navy); background: var(--gold); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.newsletter-option strong, .newsletter-option small { display: block; }
.newsletter-option strong { color: white; font-size: .84rem; }
.newsletter-option small { margin-top: 2px; color: #c7d5d2; font-size: .72rem; line-height: 1.4; }
.newsletter-consent { grid-template-columns: 20px 28px 1fr; cursor: pointer; }
.newsletter-consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--red); }
.newsletter-consent:has(input:disabled) { cursor: not-allowed; opacity: .62; }
.newsletter-form button:disabled { cursor: not-allowed; opacity: .55; }
.site-footer { padding-block: 60px 25px; color: #c5d0cd; background: #091c1c; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 70px; }
.brand-footer { margin-bottom: 20px; }
.footer-grid h2 { color: white; font-family: inherit; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid nav a { display: block; margin: 8px 0; color: #c5d0cd; font-size: .88rem; }
.footer-base { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 20px; border-top: 1px solid #29403f; font-size: .73rem; }
.footer-base p { margin: 0; }

.admin-shell { min-height: 100vh; padding: 35px 20px; background: var(--paper); }
.admin-wrap { width: min(100%, 1080px); margin: auto; }
.admin-header { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 35px; padding-bottom: 20px; border-bottom: 2px solid var(--navy); }
.admin-header .brand { color: var(--navy); }
.admin-actions { display: flex; align-items: center; gap: 18px; }
.admin-actions form { margin: 0; }
.link-button { padding: 0; color: var(--red-dark); background: transparent; border: 0; text-decoration: underline; text-underline-offset: .18em; }
.admin-panel { padding: 30px; background: white; box-shadow: var(--shadow); }
.admin-title { font-size: 3rem; }
.admin-scroll { overflow-x: auto; }
.admin-login-shell { display: grid; place-items: center; }
.admin-login-panel { width: min(100%, 480px); }
.brand-dark { margin-bottom: 35px; color: var(--navy); }
.admin-login-title { font-size: 2.6rem; }
.admin-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 6px; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.field textarea { min-height: 280px; resize: vertical; border-color: var(--line); }
.field textarea.compact-textarea { min-height: 110px; }
.field input, .field select { border-color: var(--line); }
.field fieldset, fieldset.field { margin-inline: 0; padding: 15px; border: 1px solid var(--line); }
.field legend { font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.field .checkbox-label { font-weight: 500; letter-spacing: 0; text-transform: none; }
.field input.checkbox { width: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 13px 10px; border-bottom: 1px solid var(--line); text-align: left; }
.admin-table th { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.flash { margin-bottom: 20px; padding: 14px 18px; background: #dcebdd; border-left: 4px solid var(--green); }
.error { background: #f6d4cf; border-left-color: var(--red); }

@media (max-width: 900px) {
    .hero-inner, .split, .newsletter-layout, .evidence-highlight-inner, .tax-hook-inner { grid-template-columns: 1fr; }
    .tax-question { display: none; }
    .hero-status { max-width: 480px; }
    .claim-grid, .news-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 35px; }
    .admin-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    .wrap, .narrow { width: min(calc(100% - 28px), var(--wrap)); }
    .utility-inner p { display: none; }
    .utility-inner { justify-content: flex-end; }
    .masthead { min-height: 72px; }
    .menu-toggle { display: flex; align-items: center; gap: 10px; }
    .menu-lines, .menu-lines::before, .menu-lines::after { display: block; width: 22px; height: 2px; background: currentColor; content: ""; }
    .menu-lines { position: relative; }
    .menu-lines::before { position: absolute; top: -7px; }
    .menu-lines::after { position: absolute; top: 7px; }
    .site-nav { display: none; position: absolute; top: 100%; right: 0; left: 0; flex-direction: column; padding: 10px 14px 18px; background: var(--navy); border-top: 1px solid rgba(255,255,255,.15); }
    .site-nav.is-open { display: flex; }
    .site-nav a { min-height: 48px; padding: 8px 12px; border-bottom-width: 1px; }
    .hero-inner { gap: 40px; }
    .fact-strip-inner { grid-template-columns: 1fr; }
    .fact, .fact:first-child { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.3); }
    .evidence-score { grid-template-columns: 1fr; }
    .card-grid, .claim-grid, .news-grid, .result-grid, .transport-entry { grid-template-columns: 1fr; }
    .checker-form, .fallback-controls { grid-template-columns: 1fr; }
    .checker-form label { grid-column: auto; }
    .timeline::before { left: 11px; }
    .timeline li { grid-template-columns: 1fr; gap: 6px; padding-left: 42px; }
    .timeline li::before { left: 5px; }
    .timeline time { text-align: left; }
    .source-item { grid-template-columns: 1fr; gap: 5px; }
    .form-row { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div { grid-column: 1 / -1; }
    .footer-base { flex-direction: column; gap: 8px; }
    .filter-bar { align-items: flex-start; }
    .filter-options { width: 100%; overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media print {
    .utility-bar, .site-nav, .menu-toggle, .newsletter-band, .site-footer, .hero-actions { display: none !important; }
    body { color: black; background: white; font-size: 11pt; }
    .site-header, .hero, .page-hero { color: black; background: white; }
    .hero h1, .page-hero h1, .brand { color: black; }
    a { color: black; }
}
