/* ================================================================
   ЗАГОВОР — дизайн-система сайта
   Досье / архив: бумага, типографика Oswald + IBM Plex, вердигри.
   ================================================================ */

:root {
    --paper: #F7F4EA;
    --panel: #EFEBDF;
    --panel-2: #E6E1D2;
    --ink: #1D1B15;
    --ink-soft: #514D44;
    --verdigris: #2C6C62;
    --verdigris-deep: #1F5049;
    --brass: #8A6D28;
    --rust: #A3381E;
    --ash: #6B6659;
    --line: rgba(29, 27, 21, 0.15);
    --line-strong: rgba(29, 27, 21, 0.32);

    --display: 'Oswald', 'Arial Narrow', sans-serif;
    --body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
    --mono: 'IBM Plex Mono', ui-monospace, monospace;

    --measure: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* paper grain over everything */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

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

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

::selection { background: var(--verdigris); color: var(--paper); }

/* ---------- layout primitives ---------- */
.wrap { width: 100%; max-width: var(--measure); margin: 0 auto; padding: 0 28px; }

.mono {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--verdigris);
}

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

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

/* ---------- classification chips / stamps ---------- */
.tag-class {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 3px 9px;
    border: 1px solid var(--line-strong);
    color: var(--ink-soft);
}
.tag-class::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--verdigris);
    border-radius: 50%;
}
.tag-class.is-alert { color: var(--rust); border-color: rgba(181, 72, 47, 0.5); }
.tag-class.is-alert::before { background: var(--rust); }
.tag-class.is-archive::before { background: var(--brass); }

.stamp {
    display: inline-block;
    font-family: var(--mono);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--rust);
    border: 2px solid var(--rust);
    padding: 4px 10px;
    transform: rotate(-4deg);
    opacity: 0.85;
}

/* ---------- masthead ---------- */
.masthead {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 244, 234, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.masthead__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 66px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.34em;
    text-indent: 0.34em;
}
.brand__eye {
    width: 26px; height: 26px;
    flex: none;
    display: grid;
    place-items: center;
    color: var(--verdigris);
}
.brand__eye svg { width: 26px; height: 26px; }

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
}
.nav a {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.nav a:hover, .nav a[aria-current] { color: var(--ink); border-color: var(--verdigris); }

.access {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--verdigris);
    white-space: nowrap;
}
.access__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--verdigris);
    box-shadow: 0 0 0 0 rgba(44, 108, 98, 0.55);
    animation: pulse 2.6s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(44,108,98,0.5); }
    70% { box-shadow: 0 0 0 7px rgba(44,108,98,0); }
    100% { box-shadow: 0 0 0 0 rgba(44,108,98,0); }
}

.nav-toggle { display: none; }

/* ---------- redaction / declassify signature ---------- */
.redact {
    position: relative;
    color: inherit;
    transition: none;
}
.redact::after {
    content: "";
    position: absolute;
    inset: 0.02em -0.12em 0.06em -0.12em;
    background: var(--ink);
    transform-origin: right center;
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.2, 1);
}
.redact.is-revealed::after { transform: scaleX(0); }
/* в крупном заголовке полоса прижимается к строке, иначе слова сливаются в блок */
.hero-title .redact::after { inset: 0.2em -0.05em 0.18em -0.05em; }

/* ---------- hero ---------- */
.hero {
    position: relative;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.hero__field {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(760px 440px at 82% -14%, rgba(44,108,98,0.12), transparent 70%),
        radial-gradient(620px 420px at 4% 116%, rgba(163,56,30,0.08), transparent 70%),
        radial-gradient(900px 520px at 46% 128%, rgba(138,109,40,0.07), transparent 72%);
    pointer-events: none;
}
.hero__scan {
    position: absolute;
    left: 0; right: 0; height: 140px;
    background: linear-gradient(180deg, transparent, rgba(44,108,98,0.07), transparent);
    animation: scan 7s linear infinite;
    pointer-events: none;
}
@keyframes scan {
    0% { top: -140px; }
    100% { top: 100%; }
}
.hero__inner {
    position: relative;
    padding: 88px 0 72px;
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 56px;
    align-items: end;
}
.hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}
.hero__casefile { color: var(--brass); }
.hero-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(44px, 7vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.01em;
    margin: 0 0 24px;
}
.hero-title .rline { display: block; }
.hero__lead {
    font-size: 20px;
    color: var(--ink-soft);
    max-width: 46ch;
    margin: 0 0 34px;
}
.hero__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.hero__dossier {
    border: 1px solid var(--line-strong);
    background: linear-gradient(180deg, var(--panel), var(--paper));
    padding: 22px;
}
.hero__dossier h3 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ash);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--line);
}
.hero__figure {
    margin: 0 0 20px;
    border: 1px solid var(--line);
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }
.dossier-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
}
.dossier-row:last-child { border-bottom: 0; }
.dossier-row b { color: var(--ink); font-weight: 500; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 13px 22px;
    border: 1px solid var(--verdigris);
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn:hover { background: var(--verdigris); color: var(--paper); }
.btn--ghost { border-color: var(--line-strong); }
.btn--ghost:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn__arrow { transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- section header ---------- */
.section { padding: 74px 0; }
.section--tight { padding-top: 0; }
.section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.section__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 40px);
    margin: 0;
    letter-spacing: -0.01em;
}
.section__more {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--verdigris);
    white-space: nowrap;
}
.section__more:hover { color: var(--ink); }

/* ---------- dossier cards ---------- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.dcard {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    padding: 26px 24px 28px;
    transition: background 0.25s;
    min-height: 340px;
}
.dcard:hover { background: var(--panel); }
.dcard__no {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--brass);
    margin-bottom: 18px;
}
.dcard__thumb {
    display: block;
    aspect-ratio: 16 / 10;
    margin-bottom: 20px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    background: var(--panel-2);
}
.dcard__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.dcard:hover .dcard__thumb img { transform: scale(1.03); }
.dcard__cat {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--verdigris);
    margin-bottom: 10px;
}
.dcard__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: 23px;
    line-height: 1.14;
    margin: 0 0 12px;
}
.dcard:hover .dcard__title { color: var(--ink); }
.dcard__excerpt {
    font-size: 15.5px;
    color: var(--ink-soft);
    margin: 0 0 20px;
}
.dcard__foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ash);
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

/* redacted-photo placeholder */
.plate {
    position: relative;
    width: 100%; height: 100%;
    display: grid;
    place-items: center;
    background:
        repeating-linear-gradient(135deg, rgba(29,27,21,0.05) 0 10px, transparent 10px 20px),
        radial-gradient(120% 120% at 30% 20%, rgba(44,108,98,0.14), transparent 60%),
        var(--panel-2);
}
.plate span {
    position: relative;
    z-index: 1;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ash);
    border: 1px solid var(--line-strong);
    padding: 5px 11px;
    background: rgba(240,235,222,0.72);
}
.plate::after {
    content: "";
    position: absolute;
    left: 12%; right: 12%; top: 46%;
    height: 16px;
    background: var(--ink);
    opacity: 0.9;
}

/* ---------- category strip ---------- */
.cat-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.cat-strip--1 { grid-template-columns: 1fr; }
.cat-strip--2 { grid-template-columns: repeat(2, 1fr); }
.cat-strip--3 { grid-template-columns: repeat(3, 1fr); }
.cat-strip--4 { grid-template-columns: repeat(4, 1fr); }
.cat-strip--5 { grid-template-columns: repeat(5, 1fr); }
.cat-strip--6 { grid-template-columns: repeat(6, 1fr); }
.cat-cell {
    background: var(--paper);
    padding: 22px 18px;
    transition: background 0.2s;
}
.cat-cell:hover { background: var(--panel); }
.cat-cell__no { font-family: var(--mono); font-size: 11px; color: var(--brass); letter-spacing: 0.1em; }
.cat-cell__name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 18px;
    margin: 12px 0 6px;
    line-height: 1.1;
}
.cat-cell__count { font-family: var(--mono); font-size: 11px; color: var(--ash); letter-spacing: 0.1em; }

/* ---------- latest rows ---------- */
.feed { border-top: 1px solid var(--line); }
.feed-row {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left 0.2s;
}
.feed-row:hover { padding-left: 12px; }
.feed-row__no { font-family: var(--mono); font-size: 13px; color: var(--brass); letter-spacing: 0.08em; }
.feed-row__title { font-family: var(--display); font-weight: 700; font-size: 22px; line-height: 1.15; margin: 0 0 5px; }
.feed-row__meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ash); }
.feed-row__meta .c { color: var(--verdigris); }
.feed-row__stamp { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }

/* ---------- article ---------- */
.crumbs {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ash);
    padding: 26px 0 0;
}
.crumbs a:hover { color: var(--verdigris); }
.crumbs span { color: var(--verdigris); }

.article-head { padding: 30px 0 40px; border-bottom: 1px solid var(--line); }
.article-head__meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 24px; }
.article-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(36px, 5.4vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.01em;
    margin: 0 0 22px;
    max-width: 20ch;
}
.byline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ash);
}
.byline b { color: var(--ink); font-weight: 500; }
.byline a { color: var(--verdigris); }
.byline a:hover { color: var(--ink); }

.lead-figure { margin: 44px 0; }
.lead-figure .plate { height: 440px; border: 1px solid var(--line); }
.lead-figure img { width: 100%; max-height: 560px; object-fit: cover; border: 1px solid var(--line); }
.lead-figure figcaption {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ash);
    margin-top: 12px;
    padding-left: 14px;
    border-left: 2px solid var(--verdigris-deep);
}

.article-body { max-width: 720px; margin: 0 auto; padding: 8px 0 24px; }
.article-body > p { margin: 0 0 26px; font-size: 19px; }
.article-body:not(.article-body--plain) > p:first-of-type::first-letter {
    font-family: var(--display);
    font-weight: 700;
    font-size: 4.6em;
    float: left;
    line-height: 0.78;
    padding: 6px 14px 0 0;
    color: var(--verdigris);
}
.article-body h2 {
    font-family: var(--display);
    font-weight: 700;
    font-size: 30px;
    margin: 46px 0 18px;
    line-height: 1.1;
}
.article-body h2 .no { font-family: var(--mono); font-size: 13px; color: var(--brass); letter-spacing: 0.1em; display: block; margin-bottom: 8px; }

/* --- содержимое из редактора --- */
.article-body h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 24px;
    margin: 36px 0 14px;
    line-height: 1.15;
}
.article-body h4 {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--verdigris);
    margin: 30px 0 12px;
}
.article-body a {
    color: var(--verdigris-deep);
    border-bottom: 1px solid rgba(44, 108, 98, 0.45);
    transition: color 0.2s, border-color 0.2s;
}
.article-body a:hover { color: var(--ink); border-color: var(--ink); }
.article-body ul, .article-body ol { margin: 0 0 26px; padding-left: 22px; }
.article-body li { margin-bottom: 10px; }
.article-body ul { list-style: none; padding-left: 0; }
.article-body ul > li { position: relative; padding-left: 26px; }
.article-body ul > li::before {
    content: "";
    position: absolute;
    left: 4px; top: 0.72em;
    width: 7px; height: 1px;
    background: var(--verdigris);
}
.article-body img {
    margin: 32px 0;
    border: 1px solid var(--line);
    width: 100%;
    height: auto;
}
.article-body figure { margin: 32px 0; }
.article-body figure img { margin: 0; }
.article-body figcaption {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ash);
    margin-top: 10px;
    padding-left: 14px;
    border-left: 2px solid var(--verdigris-deep);
}
.article-body iframe, .article-body video {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 1px solid var(--line);
    margin: 32px 0;
    display: block;
}
.article-body hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.article-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    margin: 32px 0;
}
.article-body th, .article-body td {
    border: 1px solid var(--line);
    padding: 10px 12px;
    text-align: left;
}
.article-body th {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ash);
    background: var(--panel);
}
.article-body strong, .article-body b { font-weight: 600; }

.article-video { margin: 44px 0; }
.article-video iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 1px solid var(--line); display: block; }

.pullquote,
.article-body blockquote {
    margin: 44px 0;
    padding: 6px 0 6px 32px;
    border-left: 3px solid var(--verdigris);
    font-family: var(--body);
    font-weight: 500;
    font-style: italic;
    font-size: 25px;
    line-height: 1.4;
    color: var(--ink);
}
.article-body blockquote p { margin: 0 0 12px; font-size: inherit; }
.article-body blockquote p:last-child { margin-bottom: 0; }
.pullquote cite { display: block; margin-top: 14px; font-family: var(--mono); font-style: normal; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ash); }

.callout {
    margin: 40px 0;
    border: 1px solid var(--line-strong);
    background: var(--panel);
    padding: 24px 26px;
}
.callout__label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--verdigris);
    margin-bottom: 12px;
}
.callout p { margin: 0; font-style: italic; color: var(--ink-soft); }

.redacted-block {
    font-family: var(--mono);
    font-size: 15px;
    line-height: 2;
    color: var(--ink);
    margin: 0 0 26px;
}
.bar { background: var(--ink); color: transparent; user-select: none; padding: 0 2px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 0; padding-top: 26px; border-top: 1px solid var(--line); }
.tag-pill {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    padding: 6px 12px;
    transition: border-color 0.2s, color 0.2s;
}
.tag-pill:hover { border-color: var(--verdigris); color: var(--ink); }

/* ---------- рекламные слоты ---------- */
.ad-slot { max-width: 720px; margin: 0 auto; padding: 12px 0 40px; }
.ad-slot--wide { max-width: var(--measure); padding: 22px 0; }
.ad-slot:empty { display: none; }

/* ---------- category page header ---------- */
.cat-hero { padding: 60px 0 40px; border-bottom: 1px solid var(--line); }
.cat-hero__title { font-family: var(--display); font-weight: 700; font-size: clamp(40px, 6vw, 78px); margin: 18px 0 20px; letter-spacing: -0.01em; }
.cat-hero__desc { font-size: 20px; color: var(--ink-soft); max-width: 60ch; margin: 0; }
.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ash);
}
.toolbar__filters { display: flex; gap: 20px; flex-wrap: wrap; }
.toolbar__filters a.is-on { color: var(--verdigris); }
.toolbar__filters a:hover { color: var(--ink); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 0; }

.empty-state {
    border: 1px dashed var(--line-strong);
    padding: 60px 28px;
    text-align: center;
    color: var(--ink-soft);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ---------- pagination ---------- */
.pager { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; padding: 50px 0 0; }
.pager a, .pager span {
    font-family: var(--mono);
    font-size: 12px;
    min-width: 40px; height: 40px;
    padding: 0 10px;
    display: grid; place-items: center;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    transition: border-color 0.2s, color 0.2s;
}
.pager a:hover, .pager .is-on { border-color: var(--verdigris); color: var(--ink); }
.pager .is-disabled { opacity: 0.35; }
.pager .is-dots { border-color: transparent; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); margin-top: 40px; }
.foot__class {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ash);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.foot__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    padding: 54px 0;
}
.foot__brand { font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: 0.3em; margin: 0 0 16px; }
.foot__note { color: var(--ink-soft); font-size: 15px; max-width: 34ch; margin: 0; }
.foot__col h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--verdigris);
    margin: 0 0 16px;
}
.foot__col a { display: block; color: var(--ink-soft); padding: 5px 0; font-size: 15px; }
.foot__col a:hover { color: var(--ink); }
.foot__bottom {
    padding: 20px 0 40px;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--ash);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.scroll-top {
    position: fixed;
    right: 20px; bottom: 20px;
    width: 42px; height: 42px;
    display: none;
    place-items: center;
    border: 1px solid var(--line-strong);
    background: var(--paper);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 14px;
    z-index: 60;
}
.scroll-top.is-visible { display: grid; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__dossier { max-width: 460px; }
    .foot__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .cat-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
    body { font-size: 17px; }
    .nav, .access { display: none; }
    .nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        position: absolute;
        top: 66px;
        left: 0; right: 0;
        padding: 20px 28px 26px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
    }
    .nav-toggle {
        display: inline-flex;
        background: transparent;
        border: 1px solid var(--line-strong);
        color: var(--ink);
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        padding: 8px 12px;
        cursor: pointer;
    }
    .grid-3, .cat-strip, .grid-2 { grid-template-columns: 1fr; }
    .feed-row { grid-template-columns: 60px 1fr; }
    .feed-row__stamp { display: none; }
}
@media (max-width: 520px) {
    .wrap { padding: 0 18px; }
    .section { padding: 52px 0; }
    .foot__grid { grid-template-columns: 1fr; }
    .stamp { display: none; }
    .article-body:not(.article-body--plain) > p:first-of-type::first-letter { font-size: 3.6em; }
}

@media (prefers-reduced-motion: reduce) {
    .redact::after { transition: none; }
    .hero__scan, .access__dot { animation: none; }
    * { scroll-behavior: auto; }
}

:focus-visible { outline: 2px solid var(--verdigris); outline-offset: 3px; }
