:root {
  --ink: #101820;
  --ink-soft: #34414c;
  --paper: #f5f2ea;
  --paper-deep: #e8e2d7;
  --white: #fffdf8;
  --night: #07131d;
  --night-2: #0e2230;
  --cyan: #66d9e8;
  --cyan-deep: #0b8295;
  --amber: #f0b35a;
  --red: #c9373c;
  --line: rgba(16, 24, 32, .16);
  --line-dark: rgba(255, 255, 255, .16);
  --shadow: 0 18px 48px rgba(7, 19, 29, .12);
  --radius: 4px;
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --max: 1240px;
}

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

html { scroll-behavior: smooth; background: var(--night); }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 24, 32, .025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 34px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 3px; }
a:hover { color: var(--cyan-deep); }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: var(--night); background: var(--cyan); }

.sr-only {
  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;
}

.noscript-notice { padding: 12px 20px; color: var(--night); background: var(--amber); text-align: center; font-weight: 700; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--night);
  background: var(--cyan);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

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

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 72px 0; }
.section--tight { padding: 44px 0; }
.section--night { color: var(--white); background: var(--night); }
.section--white { background: var(--white); }
.rule { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }

.eyebrow,
.kicker,
.meta-label {
  margin: 0 0 12px;
  color: var(--cyan-deep);
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section--night .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow { color: var(--cyan); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.06; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
h3, h4 { font-family: var(--sans); font-weight: 750; letter-spacing: -.02em; }
h1 { font-size: clamp(2.8rem, 7vw, 6.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }
.lede { color: var(--ink-soft); font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.38; }
.section--night .lede { color: rgba(255, 253, 248, .74); }
.muted { color: #64717b; }
.small { font-size: .86rem; }

.utility-bar {
  color: rgba(255, 255, 255, .72);
  background: #030a10;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-bar strong { color: var(--amber); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(7, 19, 29, .96);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.masthead {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 86px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand:hover { color: var(--white); }
.brand-mark { width: 42px; height: 42px; flex: 0 0 42px; }
.brand-name { display: block; font-family: var(--serif); font-size: 1.5rem; letter-spacing: -.04em; line-height: .95; }
.brand-tagline { display: block; margin-top: 5px; color: rgba(255, 255, 255, .54); font-family: var(--mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.7vw, 26px); }
.main-nav a { position: relative; color: rgba(255, 255, 255, .77); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.main-nav a::after { position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; content: ""; background: var(--cyan); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions { display: flex; gap: 8px; }
.icon-button,
.menu-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  cursor: pointer;
}
.icon-button:hover, .menu-button:hover { color: var(--night); background: var(--cyan); border-color: var(--cyan); }
.menu-button { display: none; }

.search-panel {
  position: fixed;
  z-index: 110;
  top: 120px;
  right: 0;
  left: 0;
  padding: 20px 0;
  color: var(--white);
  background: var(--night-2);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}
.search-panel[hidden] { display: none; }
.search-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.search-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-dark);
}
.search-form input::placeholder { color: rgba(255,255,255,.5); }

.button,
.button--ghost,
.text-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.button { color: var(--night); background: var(--cyan); border: 1px solid var(--cyan); }
.button:hover { color: var(--night); background: #a4eef5; }
.button--ghost { color: inherit; background: transparent; border: 1px solid currentColor; }
.button--ghost:hover { color: var(--night); background: var(--white); }
.text-link { min-height: 0; padding: 0; color: var(--cyan-deep); }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}
.hero__media, .hero__media::after { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; background: linear-gradient(90deg, rgba(3,10,16,.96) 0%, rgba(3,10,16,.77) 42%, rgba(3,10,16,.22) 72%), linear-gradient(0deg, rgba(3,10,16,.9), transparent 55%); }
.hero__content { position: relative; z-index: 2; width: min(820px, 88%); padding: 96px 0 72px; }
.hero h1 { max-width: 800px; margin-bottom: 24px; }
.hero__summary { max-width: 660px; margin-bottom: 28px; color: rgba(255,255,255,.76); font-family: var(--serif); font-size: clamp(1.17rem, 2vw, 1.5rem); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 12px 24px; color: rgba(255,255,255,.56); font-family: var(--mono); font-size: .72rem; text-transform: uppercase; }

.briefing-bar { color: var(--white); background: var(--red); }
.briefing-bar__inner { display: grid; grid-template-columns: auto 1fr auto; min-height: 60px; align-items: center; gap: 24px; }
.briefing-bar__label { font-family: var(--mono); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.briefing-bar p { margin: 0; font-size: .9rem; }
.briefing-bar a { font-size: .76rem; font-weight: 800; text-decoration: none; text-transform: uppercase; }

.section-heading { display: flex; margin-bottom: 34px; align-items: end; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.section-heading h2 { margin-bottom: 18px; }
.section-heading .text-link { margin-bottom: 25px; white-space: nowrap; }
.section-heading--dark { border-color: var(--line-dark); }

.news-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 28px; }
.news-card { position: relative; grid-column: span 4; min-width: 0; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.news-card--wide { grid-column: span 8; display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; }
.news-card--compact { grid-column: span 4; }
.news-card__image { position: relative; display: block; width: 100%; aspect-ratio: 16 / 10; margin-bottom: 20px; overflow: hidden; background: var(--night-2); }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.news-card:hover .news-card__image img { transform: scale(1.035); }
.news-card__image::after { position: absolute; inset: 0; content: ""; border: 1px solid rgba(255,255,255,.12); pointer-events: none; }
.news-card h3 { margin-bottom: 12px; }
.news-card h3 a { text-decoration: none; }
.news-card p { margin-bottom: 16px; color: var(--ink-soft); }
.news-card__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: #6a757d; font-family: var(--mono); font-size: .67rem; letter-spacing: .04em; text-transform: uppercase; }
.section--night .news-card { border-color: var(--line-dark); }
.section--night .news-card p { color: rgba(255,255,255,.64); }
.section--night .news-card__meta { color: rgba(255,255,255,.44); }

.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; background: var(--line-dark); border: 1px solid var(--line-dark); }
.signal { min-height: 220px; padding: 28px; background: var(--night); }
.signal__number { display: block; margin-bottom: 40px; color: var(--amber); font-family: var(--serif); font-size: 2.4rem; line-height: 1; }
.signal h3 { margin-bottom: 12px; font-size: 1rem; text-transform: uppercase; }
.signal p { margin: 0; color: rgba(255,255,255,.62); font-size: .88rem; }

.split-feature { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: clamp(36px, 7vw, 96px); align-items: center; }
.split-feature__media { position: relative; }
.split-feature__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
.split-feature__media::before { position: absolute; z-index: -1; top: -18px; right: 18px; bottom: 18px; left: -18px; content: ""; background: var(--cyan); }
.split-feature__copy p:not(.eyebrow) { color: var(--ink-soft); }

.topic-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.topic-list a { min-height: 156px; padding: 24px; background: rgba(255,255,255,.25); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.topic-list a:hover { color: var(--ink); background: var(--white); }
.topic-list span { display: block; margin-bottom: 26px; color: var(--red); font-family: var(--mono); font-size: .7rem; }
.topic-list strong { display: block; font-family: var(--serif); font-size: 1.4rem; font-weight: 500; line-height: 1.15; }

.page-hero { position: relative; overflow: hidden; color: var(--white); background: var(--night); }
.page-hero--image { min-height: 530px; display: grid; align-items: end; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.page-hero__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(3,10,16,.93), rgba(3,10,16,.34)), linear-gradient(0deg, rgba(3,10,16,.88), transparent 60%); }
.page-hero__content { position: relative; z-index: 1; width: 100%; max-width: 900px; padding: 92px 0 64px; }
.page-hero h1 { margin-bottom: 20px; font-size: clamp(2.8rem, 6vw, 5.4rem); }
.page-hero p { max-width: 740px; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 1.35rem; }

.archive-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 56px; align-items: start; }
.archive-list { display: grid; gap: 0; }
.archive-item { display: grid; grid-template-columns: 180px 1fr; gap: 26px; padding: 28px 0; border-top: 1px solid var(--line); }
.archive-item[hidden] { display: none; }
.archive-item__image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--night-2); }
.archive-item__image img { width: 100%; height: 100%; object-fit: cover; }
.archive-item h2 { margin-bottom: 10px; font-family: var(--sans); font-size: 1.45rem; font-weight: 750; letter-spacing: -.02em; }
.archive-item h2 a { text-decoration: none; }
.archive-item p { margin-bottom: 12px; color: var(--ink-soft); }
.sidebar { position: sticky; top: 145px; }
.sidebar-box { padding: 24px; background: var(--white); border-top: 3px solid var(--red); box-shadow: 0 10px 30px rgba(7,19,29,.07); }
.sidebar-box + .sidebar-box { margin-top: 24px; }
.sidebar-box h3 { font-size: 1rem; text-transform: uppercase; }
.sidebar-box p, .sidebar-box li { color: var(--ink-soft); font-size: .86rem; }
.sidebar-box ul { padding-left: 18px; margin-bottom: 0; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.filter-button { padding: 8px 12px; color: var(--ink-soft); background: transparent; border: 1px solid var(--line); font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; }
.filter-button:hover, .filter-button.is-active { color: var(--white); background: var(--night); }

.article-hero { padding: 84px 0 46px; background: var(--white); border-bottom: 1px solid var(--line); }
.article-hero__inner { max-width: 1030px; }
.article-hero h1 { max-width: 1000px; margin-bottom: 24px; font-size: clamp(2.7rem, 6.2vw, 5.7rem); }
.article-hero .lede { max-width: 830px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 28px; color: #65717a; font-family: var(--mono); font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; }
.article-figure { margin: 0; background: var(--night); }
.article-figure img { width: 100%; max-height: 720px; object-fit: cover; }
.article-figure figcaption { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 10px 0; color: rgba(255,255,255,.58); font-size: .72rem; }
.reading-progress { position: fixed; z-index: 200; top: 0; left: 0; width: 0; height: 3px; background: var(--cyan); }

.article-layout { display: grid; grid-template-columns: 180px minmax(0, 720px) 230px; gap: 40px; justify-content: center; align-items: start; padding: 66px 0 88px; }
.share-rail { position: sticky; top: 150px; }
.share-rail p { color: #6d7880; font-family: var(--mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.share-rail button { width: 100%; padding: 10px; color: var(--ink); background: transparent; border: 1px solid var(--line); font-size: .72rem; cursor: pointer; }
.article-body { min-width: 0; }
.article-body > p:first-child::first-letter { float: left; margin: 8px 9px 0 0; color: var(--red); font-family: var(--serif); font-size: 5rem; line-height: .7; }
.article-body p, .article-body li { color: #293641; font-size: 1.06rem; }
.article-body h2 { margin: 52px 0 18px; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.article-body h3 { margin: 36px 0 12px; }
.article-body blockquote { margin: 42px 0; padding: 8px 0 8px 28px; color: var(--ink); border-left: 4px solid var(--cyan-deep); font-family: var(--serif); font-size: 1.5rem; line-height: 1.35; }
.article-body table { width: 100%; margin: 28px 0; border-collapse: collapse; font-size: .88rem; }
.article-body th, .article-body td { padding: 12px; text-align: left; border: 1px solid var(--line); vertical-align: top; }
.article-body th { background: var(--paper-deep); }
.article-note { margin: 32px 0; padding: 22px; background: #e7f3f3; border-left: 4px solid var(--cyan-deep); }
.article-note p:last-child { margin-bottom: 0; }
.source-list { padding-top: 24px; border-top: 1px solid var(--line); }
.source-list ol { padding-left: 22px; }
.source-list li { margin-bottom: 10px; font-size: .86rem; }
.article-aside { position: sticky; top: 150px; padding-top: 18px; border-top: 3px solid var(--amber); }
.article-aside h3 { font-size: .9rem; text-transform: uppercase; }
.article-aside p { color: var(--ink-soft); font-size: .82rem; }

.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 30px 0; }
.fact { padding: 20px; background: var(--white); border-top: 3px solid var(--cyan-deep); }
.fact strong { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.fact span { color: var(--ink-soft); font-size: .8rem; }

.timeline { margin: 34px 0; padding: 0; list-style: none; }
.timeline li { position: relative; padding: 0 0 28px 32px; border-left: 1px solid var(--line); }
.timeline li::before { position: absolute; top: 4px; left: -6px; width: 11px; height: 11px; content: ""; background: var(--red); border-radius: 50%; }
.timeline time { display: block; margin-bottom: 5px; color: var(--cyan-deep); font-family: var(--mono); font-size: .7rem; font-weight: 700; text-transform: uppercase; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.info-card { padding: 28px; background: var(--white); border-top: 3px solid var(--cyan-deep); box-shadow: 0 10px 30px rgba(7,19,29,.06); }
.info-card h3 { margin-bottom: 12px; }
.info-card p:last-child { margin-bottom: 0; }

.policy-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 38px; }
.policy-nav a { padding: 7px 11px; background: var(--white); border: 1px solid var(--line); font-family: var(--mono); font-size: .68rem; text-decoration: none; text-transform: uppercase; }
.policy-section { padding: 32px 0; border-top: 1px solid var(--line); }
.policy-section h2 { font-size: 2rem; }

.help-banner { padding: 30px; color: var(--white); background: var(--night-2); border-left: 5px solid var(--amber); }
.help-banner h2 { font-size: 2rem; }
.help-banner a { color: var(--cyan); }
.helpline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 28px 0; background: var(--line); border: 1px solid var(--line); }
.helpline { padding: 24px; background: var(--white); }
.helpline strong { display: block; }
.helpline a { color: var(--cyan-deep); font-size: 1.05rem; font-weight: 800; text-decoration: none; }
.helpline span { display: block; margin-top: 5px; color: var(--ink-soft); font-size: .82rem; }

nova-header, nova-footer { display: block; max-width: 100%; }

.search-results { display: grid; gap: 0; }
.search-result { padding: 26px 0; border-top: 1px solid var(--line); }
.search-result h2 { margin-bottom: 8px; font-family: var(--sans); font-size: 1.5rem; font-weight: 750; }
.search-result h2 a { text-decoration: none; }
.search-result p { margin-bottom: 8px; color: var(--ink-soft); }
.search-result small { color: var(--cyan-deep); font-family: var(--mono); text-transform: uppercase; }
.empty-state { padding: 46px; text-align: center; background: var(--white); border: 1px solid var(--line); }

.site-footer { color: rgba(255,255,255,.68); background: #030a10; }
.footer-main { display: grid; grid-template-columns: 1.25fr repeat(3, .75fr); gap: 52px; padding: 64px 0; }
.footer-main h2, .footer-main h3 { color: var(--white); }
.footer-main h2 { margin-bottom: 14px; font-size: 2rem; }
.footer-main h3 { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-main p { max-width: 440px; font-size: .86rem; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 8px 0; }
.footer-links a { font-size: .84rem; text-decoration: none; }
.footer-bottom { display: flex; padding: 20px 0 30px; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid var(--line-dark); font-family: var(--mono); font-size: .63rem; letter-spacing: .03em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--white); }
.footer-badge strong { display: inline-grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--red); border-radius: 50%; }

.age-gate {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
  color: var(--white);
  background: rgba(3, 10, 16, .94);
  backdrop-filter: blur(16px);
}
.age-gate[hidden] { display: none; }
.age-gate__card { width: min(100%, 620px); padding: clamp(30px, 7vw, 62px); background: var(--night); border: 1px solid var(--line-dark); box-shadow: 0 30px 90px rgba(0,0,0,.48); }
.age-gate__mark { display: grid; width: 72px; height: 72px; margin-bottom: 28px; place-items: center; color: var(--amber); border: 1px solid var(--red); border-radius: 50%; font-family: var(--serif); font-size: 1.8rem; }
.age-gate h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 6vw, 3.7rem); }
.age-gate p { color: rgba(255,255,255,.66); }
.age-gate__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 18px; }
.age-gate__fine { font-size: .7rem; }
.age-gate__blocked { padding: 20px 0; }

.back-to-top { position: fixed; z-index: 80; right: 20px; bottom: 20px; width: 42px; height: 42px; color: var(--white); background: var(--night); border: 1px solid var(--line-dark); border-radius: 50%; opacity: 0; pointer-events: none; transition: opacity .2s ease; cursor: pointer; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }

@media (max-width: 1080px) {
  .main-nav { position: fixed; top: 120px; right: 0; left: 0; display: none; padding: 24px 20px; align-items: stretch; flex-direction: column; background: var(--night); border-bottom: 1px solid var(--line-dark); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 0; }
  .main-nav a::after { bottom: 2px; }
  .menu-button { display: inline-grid; }
  .archive-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sidebar-box + .sidebar-box { margin-top: 0; }
  .article-layout { grid-template-columns: 130px minmax(0, 720px); }
  .article-aside { display: none; }
  .footer-main { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-main > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  body { background-size: 100% 30px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .utility-bar__inner { justify-content: center; text-align: center; }
  .utility-bar__inner span:last-child { display: none; }
  .masthead { min-height: 72px; gap: 12px; }
  .brand-mark { width: 35px; height: 35px; flex-basis: 35px; }
  .brand-name { font-size: 1.2rem; }
  .brand-tagline { display: none; }
  .site-header, .search-panel, .main-nav { top: 0; }
  .search-panel, .main-nav { top: 106px; }
  .hero { min-height: 620px; }
  .hero__media::after { background: linear-gradient(0deg, rgba(3,10,16,.95) 0%, rgba(3,10,16,.62) 68%, rgba(3,10,16,.32)); }
  .hero__content { width: 100%; padding: 80px 0 48px; }
  .briefing-bar__inner { grid-template-columns: auto 1fr; padding: 14px 0; gap: 12px; }
  .briefing-bar a { display: none; }
  .section { padding: 54px 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 0; }
  .section-heading .text-link { margin-top: -5px; }
  .news-grid { display: block; }
  .news-card, .news-card--wide { display: block; margin-bottom: 34px; }
  .signal-grid { grid-template-columns: repeat(2, 1fr); }
  .split-feature { grid-template-columns: 1fr; }
  .split-feature__media { order: -1; }
  .topic-list { grid-template-columns: 1fr; }
  .page-hero--image { min-height: 470px; }
  .archive-item { grid-template-columns: 115px 1fr; gap: 16px; }
  .archive-item p { display: none; }
  .archive-item h2 { font-size: 1.15rem; }
  .sidebar { display: block; }
  .sidebar-box + .sidebar-box { margin-top: 20px; }
  .article-layout { display: block; padding-top: 42px; }
  .share-rail { position: static; display: flex; margin-bottom: 28px; align-items: center; justify-content: space-between; gap: 12px; }
  .share-rail p { margin: 0; }
  .share-rail button { width: auto; }
  .fact-grid, .info-grid { grid-template-columns: 1fr; }
  .helpline-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.7rem; }
  .header-actions .icon-button { display: none; }
  .search-form { grid-template-columns: 1fr; }
  .signal-grid { grid-template-columns: 1fr; }
  .signal { min-height: 180px; }
  .archive-item { grid-template-columns: 1fr; }
  .archive-item__image { aspect-ratio: 16 / 8; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:first-child { grid-column: auto; }
  .age-gate__actions { align-items: stretch; flex-direction: column; }
}

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

@media print {
  .utility-bar, .site-header, .search-panel, .briefing-bar, .share-rail, .article-aside, .site-footer, .back-to-top, .age-gate, .reading-progress { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  a { color: #000; text-decoration: underline; }
  .article-layout { display: block; padding: 20px 0; }
  .article-hero { padding: 20px 0; }
  .article-figure img { max-height: 400px; }
}
