:root {
  --ink: #181a1d;
  --ink-soft: #25282c;
  --paper: #f2ede4;
  --paper-deep: #e4dbce;
  --white: #fff;
  --steel: #55595d;
  --line: #cbc2b5;
  --red: #be1713;
  --red-dark: #95110e;
  --red-bright: #ff6861;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header: 76px;
  --shell: min(1360px, calc(100vw - 80px));
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 17px; line-height: 1.65; text-rendering: optimizeLegibility; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .22em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid #fff; outline-offset: 3px; box-shadow: 0 0 0 6px #090a0b; }
::selection { color: var(--white); background: var(--red); }

.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 930px; }
.skip-link { position: fixed; z-index: 1000; left: 20px; top: 12px; padding: 12px 18px; color: var(--white); background: var(--red); transform: translateY(-150%); transition: transform .18s ease; }
.skip-link:focus { transform: translateY(0); }
.reading-progress { position: fixed; z-index: 200; top: 0; left: 0; right: 0; height: 3px; pointer-events: none; }
.reading-progress span { display: block; width: 0; height: 100%; background: var(--red); }

.site-header { position: absolute; z-index: 100; top: 0; left: 0; right: 0; height: var(--header); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.18); transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease; }
body:not([data-page="home"]) .site-header, .site-header.is-scrolled, .menu-open .site-header { position: fixed; color: var(--white); background: rgba(24,26,29,.97); border-color: rgba(255,255,255,.13); backdrop-filter: blur(12px); }
.site-header__inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: baseline; font: 700 22px/1 var(--display); text-decoration: none; letter-spacing: -.03em; white-space: nowrap; }
.brand span { color: var(--red); }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.desktop-nav a, .site-footer nav a { position: relative; font-size: 13px; font-weight: 700; letter-spacing: .035em; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--red); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.language-switch { display: inline-flex; gap: 2px; padding: 3px; border: 1px solid currentColor; }
.language-switch a { min-width: 32px; min-height: 31px; display: inline-grid; place-items: center; padding: 0 5px; font-size: 11px; font-weight: 800; text-decoration: none; }
.language-switch a[aria-current="page"] { color: var(--white); background: var(--red); }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 13px 22px; border: 1px solid var(--red); color: var(--white); background: var(--red); font-size: 12px; font-weight: 850; line-height: 1.2; letter-spacing: .075em; text-transform: uppercase; text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { border-color: var(--red-dark); background: var(--red-dark); transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 10px 15px; font-size: 10px; }
.button--inverse { color: var(--red); background: var(--white); border-color: var(--white); }
.button--inverse:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
.menu-button { display: none; width: 48px; height: 48px; align-items: center; justify-content: center; border: 0; color: inherit; background: transparent; cursor: pointer; }
.menu-button span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.menu-button i, .menu-button i::before, .menu-button i::after { display: block; width: 24px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-button i { position: relative; }
.menu-button i::before, .menu-button i::after { content: ""; position: absolute; left: 0; }
.menu-button i::before { top: -7px; }.menu-button i::after { top: 7px; }
.menu-button[aria-expanded="true"] i { background: transparent; }
.menu-button[aria-expanded="true"] i::before { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] i::after { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 99; inset: var(--header) 0 auto; width: 100%; height: calc(100svh - var(--header)); padding: 36px max(24px, calc((100vw - var(--shell)) / 2)); color: var(--white); background: var(--ink); overflow-y: auto; overscroll-behavior: contain; }
.mobile-menu nav:not(.language-switch) { display: grid; border-top: 1px solid rgba(255,255,255,.18); }
.mobile-menu nav:not(.language-switch) a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); font: 700 clamp(1.6rem, 7vw, 2.5rem)/1.15 var(--display); text-decoration: none; }
.mobile-menu .language-switch { margin: 28px 0; }
.mobile-menu .button { width: 100%; }

.hero { position: relative; min-height: 100svh; color: var(--white); background: var(--ink); overflow: hidden; }
.hero__media, .hero__media img, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: 58% 37%; transform: scale(var(--hero-scale, 1.015)); }
.hero__shade { background: radial-gradient(ellipse 82% 78% at 0% 38%, rgba(10,11,12,.92) 0%, rgba(10,11,12,.78) 38%, rgba(10,11,12,.42) 62%, rgba(10,11,12,.08) 84%, transparent 100%), linear-gradient(180deg, rgba(10,11,12,.36) 0%, transparent 24%); }
.hero__content { position: relative; z-index: 2; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding-top: calc(var(--header) + 60px); padding-bottom: clamp(54px, 8vh, 96px); }
.hero__eyebrow, .kicker { margin: 0 0 18px; color: var(--red); font-size: 11px; font-weight: 850; line-height: 1.35; letter-spacing: .17em; text-transform: uppercase; }
.hero__eyebrow { color: var(--white); opacity: .78; }
.hero__brand { margin-bottom: 12px; font: 700 clamp(2rem, 4.6vw, 4.8rem)/.95 var(--display); letter-spacing: -.055em; }
.hero__brand span { color: var(--red); }
.hero h1 { max-width: 860px; margin: 0; font: 400 clamp(2.5rem, 5vw, 5.8rem)/.94 var(--display); letter-spacing: -.055em; text-wrap: balance; }
.hero__lead { max-width: 650px; margin: 22px 0 0; font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.55; color: rgba(255,255,255,.85); }
.hero__actions { display: flex; align-items: center; gap: 25px; margin-top: 28px; }
.hero__brand-clearance { flex: 0 0 58px; width: 100%; pointer-events: none; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 16px; padding: 8px 0 5px; border-bottom: 1px solid currentColor; color: var(--ink); font-size: 12px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; text-decoration: none; transition: gap .2s ease, color .2s ease; }
.text-link:hover { gap: 24px; color: var(--red); }
.text-link--light { color: var(--white); }
.hero .disclosure-line { max-width: 720px; margin: 26px 0 0; color: rgba(255,255,255,.72); }
.disclosure-line { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; line-height: 1.5; }
.disclosure-line span { color: var(--red); font-size: 8px; margin-top: 5px; }
.hero__scroll { position: absolute; z-index: 3; right: 25px; bottom: 45px; display: flex; align-items: center; gap: 10px; font-size: 9px; font-weight: 800; letter-spacing: .2em; transform: rotate(90deg); transform-origin: right bottom; }
.hero__scroll span { width: 50px; height: 1px; background: var(--white); opacity: .55; }

.trust-strip { color: var(--white); background: var(--ink); border-top: 1px solid rgba(255,255,255,.15); }
.trust-strip__inner { display: grid; grid-template-columns: 1fr 1fr; }
.trust-strip__inner span { padding: 18px 28px 18px 0; font-size: 11px; font-weight: 650; letter-spacing: .02em; opacity: .75; }
.trust-strip__inner span + span { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.15); }
.section { padding: clamp(80px, 11vw, 150px) 0; }
.manifest { background: var(--paper); }
.manifest h2, .section-heading h2, .feature-story h2, .author-band h2, .final-cta h2, .inner-hero h1, .character-hero h1, .two-column h2, .document-body h2, .editorial-promise h2 { margin: 0; font: 400 clamp(2.4rem, 5vw, 5.2rem)/1.02 var(--display); letter-spacing: -.048em; text-wrap: balance; }
.lead-copy { font-size: clamp(1.13rem, 1.8vw, 1.5rem); line-height: 1.6; }
.manifest .lead-copy { max-width: 760px; margin-top: 36px; }
.section-heading { display: grid; grid-template-columns: minmax(130px, 1fr) 3fr; align-items: start; gap: 40px; margin-bottom: 62px; }
.section-heading h2 { max-width: 920px; }
.numbered-ledger { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.numbered-ledger li { display: grid; grid-template-columns: minmax(100px, 1fr) 3fr; gap: 40px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.numbered-ledger > li > span { color: var(--red); font: 400 clamp(2.1rem, 4vw, 4.5rem)/1 var(--display); }
.numbered-ledger h3 { margin: 0 0 8px; font: 400 clamp(1.6rem, 2.5vw, 2.8rem)/1.1 var(--display); }
.numbered-ledger p { max-width: 650px; margin: 0; color: #565a5e; }

.feature-story { min-height: 750px; display: grid; grid-template-columns: 52% 48%; color: var(--white); background: var(--ink); }
.feature-story__media { min-height: 620px; overflow: hidden; }
.feature-story__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.feature-story:hover img { transform: scale(1.025); }
.feature-story__copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(50px, 8vw, 120px); }
.feature-story__copy h2 { font-size: clamp(2.5rem, 4.4vw, 5rem); }
.feature-story__copy > p:not(.kicker) { max-width: 600px; margin: 28px 0; color: rgba(255,255,255,.74); font-size: 18px; }
.feature-story .text-link { color: var(--white); }

.explainer { color: var(--white); background: #202327; }
.explainer .kicker, .principles .kicker { color: var(--red-bright); }
.explainer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 140px); }
.explainer h2 { margin: 0; font: 400 clamp(2.6rem, 5vw, 5.4rem)/1 var(--display); letter-spacing: -.05em; }
.explainer .lead-copy { margin-top: 34px; color: rgba(255,255,255,.82); }
.technical-note { margin: 28px 0; padding-left: 18px; border-left: 3px solid var(--red); color: rgba(255,255,255,.68); }
.flow { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 42px 0; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.flow i { color: var(--red); font-style: normal; }

.article-index { border-top: 1px solid var(--line); }
.article-row { display: grid; grid-template-columns: 80px 210px minmax(0, 1fr) 40px; align-items: center; gap: 24px; min-height: 126px; padding: 20px 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: color .2s ease, padding .2s ease, background .2s ease; }
.article-row:hover, .article-row:focus-visible { color: var(--red); padding-inline: 16px; background: rgba(255,255,255,.34); }
.article-row__number { color: var(--red); font: 400 2.2rem/1 var(--display); }
.article-row__meta { color: var(--steel); font-size: 11px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.article-row strong { font: 400 clamp(1.35rem, 2.3vw, 2.5rem)/1.14 var(--display); letter-spacing: -.03em; }
.article-row__arrow { justify-self: end; font-size: 1.5rem; }
.latest__all { margin-top: 34px; }

.author-band { padding: clamp(80px, 11vw, 150px) 0; background: var(--paper-deep); }
.author-band__grid { display: grid; grid-template-columns: 1.1fr .8fr; align-items: center; gap: clamp(50px, 9vw, 140px); }
.author-band p:not(.kicker):not(.disclosure-line) { max-width: 700px; margin: 28px 0; font-size: 19px; }
.author-band .disclosure-line { max-width: 620px; color: #585c60; }
.author-band .text-link { margin-top: 22px; }
.author-band figure { margin: 0; }
.author-band figure img { width: 100%; max-height: 680px; object-fit: cover; object-position: 50% 35%; }
figcaption { margin-top: 10px; color: var(--steel); font-size: 11px; line-height: 1.45; }

.final-cta { padding: clamp(80px, 10vw, 130px) 0; color: var(--white); background: var(--red); }
.final-cta__inner { display: grid; grid-template-columns: minmax(100px,.6fr) 2fr 1fr; align-items: center; gap: 36px 60px; }
.final-cta .kicker { color: var(--white); opacity: 1; }
.final-cta h2 { font-size: clamp(2.5rem, 4.7vw, 5rem); }
.final-cta p:not(.kicker) { margin: 0; color: var(--white); }
.final-cta .button { grid-column: 3; justify-self: start; }

.site-footer { padding-top: 76px; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.15fr .65fr 1fr 1.1fr; gap: 42px; padding-bottom: 60px; }
.brand--footer { font-size: 32px; }
.footer-grid > div > p { max-width: 360px; color: rgba(255,255,255,.57); font-size: 14px; }
.site-footer nav:not(.language-switch) { display: grid; align-content: start; gap: 2px; }
.site-footer nav:not(.language-switch) a { min-height: 44px; display: flex; align-items: center; }
.site-footer .language-switch { margin-bottom: 18px; }
.footer-disclosure { font-size: 12px!important; }
.footer-contacts { display: grid; align-content: start; gap: 2px; color: rgba(255,255,255,.72); font-style: normal; font-size: 13px; }
.footer-contacts strong { margin-bottom: 9px; color: var(--white); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-contacts a { min-height: 34px; display: inline-flex; align-items: center; text-decoration: none; }
.footer-contacts a:hover, .footer-contacts a:focus-visible, .trust-legend a:hover, .trust-legend a:focus-visible { color: var(--red-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .035em; }

.breadcrumbs { padding-top: calc(var(--header) + 26px); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; margin: 0; padding: 0; color: var(--steel); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.breadcrumbs li { display: flex; align-items: center; gap: 9px; }
.breadcrumbs li + li::before { content: "/"; color: var(--red); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs a { min-height: 44px; display: inline-flex; align-items: center; }
.inner-hero { padding: clamp(70px, 9vw, 130px) 0 clamp(80px, 10vw, 150px); border-bottom: 1px solid var(--line); }
.inner-hero__grid { display: grid; grid-template-columns: minmax(130px,.6fr) 2.2fr 1.1fr; gap: 40px; align-items: start; }
.inner-hero h1 { font-size: clamp(3rem, 6.2vw, 6.8rem); }
.inner-hero__lead { margin: 12px 0 24px; font-size: 19px; line-height: 1.55; }
.inner-disclosure { padding-top: 20px; border-top: 1px solid var(--line); color: var(--steel); font-size: 12px; }
.archive-meta { display: grid; grid-template-columns: 160px 1fr; align-items: end; margin-bottom: 46px; }
.archive-meta > span { color: var(--red); font: 400 6rem/1 var(--display); }
.archive-meta p { margin: 0; color: var(--steel); }
.editorial-promise { padding: 90px 0; background: var(--paper-deep); }
.editorial-promise h2 { font-size: clamp(2.3rem, 4vw, 4.3rem); }
.editorial-promise p:last-child { max-width: 720px; margin-top: 25px; }

.article-header { padding: clamp(65px, 9vw, 130px) max(0px, calc((var(--shell) - 1100px) / 2)) 50px; }
.article-header h1 { max-width: 1080px; margin: 0; font: 400 clamp(3rem, 6vw, 6.4rem)/.98 var(--display); letter-spacing: -.05em; text-wrap: balance; }
.article-dek { max-width: 800px; margin: 32px 0; font-size: clamp(1.15rem, 1.7vw, 1.45rem); color: #555a5f; }
.article-byline { display: grid; grid-template-columns: 1fr auto; gap: 25px; padding-top: 25px; border-top: 1px solid var(--line); }
.article-byline > div:first-child { display: grid; gap: 5px; }
.article-byline strong { font-size: 13px; }.article-byline span, .article-byline time { color: var(--steel); font-size: 11px; }
.article-cover { margin-bottom: 90px; }
.article-cover img { width: 100%; max-height: 760px; object-fit: cover; object-position: 50% 42%; }
.article-layout { display: grid; grid-template-columns: 250px minmax(0, 740px); justify-content: center; gap: clamp(50px, 8vw, 120px); align-items: start; }
.article-toc { position: sticky; top: calc(var(--header) + 32px); display: grid; }
.article-toc > a:not(.toc-cta) { min-height: 44px; display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); color: #555a5f; font-size: 11px; line-height: 1.45; text-decoration: none; }
.article-toc a span { color: var(--red); }
.article-toc a:hover { color: var(--red); }
.toc-cta { margin-top: 25px; padding: 13px 15px; color: var(--white); background: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-align: center; text-decoration: none; }
.article-body { font-family: var(--display); font-size: 20px; line-height: 1.72; }
.article-intro { margin: 0 0 70px; padding-bottom: 42px; border-bottom: 1px solid var(--line); font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.5; }
.article-body section { scroll-margin-top: calc(var(--header) + 30px); margin-bottom: 72px; }
.article-body h2 { margin: 0 0 28px; font: 400 clamp(2rem, 3.2vw, 3.4rem)/1.12 var(--display); letter-spacing: -.035em; }
.article-body p { margin: 0 0 24px; }
.trust-legend { margin: 80px 0 0; padding: 30px; border-top: 4px solid var(--red); background: var(--paper-deep); font-family: var(--sans); }
.trust-legend strong { font: 400 1.6rem/1.2 var(--display); }
.trust-legend p { margin: 12px 0 0; color: #575b5e; font-size: 13px; }
.trust-legend a { color: var(--red); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.next-article { padding-top: 110px; padding-bottom: 110px; }
.next-article > a { display: grid; grid-template-columns: 180px 1fr 40px; align-items: center; gap: 30px; padding: 35px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.next-article > a span { color: var(--steel); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.next-article > a strong { font: 400 clamp(1.7rem, 3vw, 3rem)/1.1 var(--display); }
.next-article > a:hover { color: var(--red); }
.next-article i { font-style: normal; font-size: 2rem; }

.character-hero { min-height: 760px; display: grid; grid-template-columns: 50% 50%; padding-top: var(--header); background: var(--paper-deep); }
.character-hero__media { min-height: 680px; overflow: hidden; }
.character-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 36%; }
.character-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 8vw, 110px); }
.character-hero h1 { font-size: clamp(3.4rem, 6vw, 6.5rem); }
.character-warning { margin-top: 38px; padding: 22px 0 0; border-top: 1px solid var(--line); }
.character-warning strong { color: var(--red); font-size: 10px; letter-spacing: .15em; }
.character-warning p { color: #555a5f; font-size: 13px; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 150px); }
.two-column h2 { font-size: clamp(2.5rem, 4.5vw, 4.8rem); }
.prose p, .document-body p { font-family: var(--display); font-size: 20px; line-height: 1.72; }
.principles { background: var(--ink); color: var(--white); }
.principle-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); }
.principle-list li { display: grid; grid-template-columns: 100px 1fr; gap: 35px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.2); font: 400 clamp(1.4rem, 2.7vw, 2.8rem)/1.2 var(--display); }
.principle-list span { color: var(--red); }
.document-body { max-width: 900px; padding-top: 100px; padding-bottom: 120px; }
.document-body section { margin-bottom: 80px; scroll-margin-top: 100px; }
.document-body h2 { font-size: clamp(2.1rem, 3.7vw, 3.8rem); }
.not-found { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; width: min(900px, calc(100vw - 48px)); margin: auto; }
.not-found h1 { margin: 0 0 25px; font: 400 clamp(3rem, 8vw, 7rem)/.95 var(--display); letter-spacing: -.05em; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 48px, 1080px); }
  .desktop-nav, .header-actions > .language-switch, .header-actions > .button { display: none; }
  .header-actions { margin-left: auto; }
  .menu-button { display: flex; }
  .final-cta__inner { grid-template-columns: 1fr 2fr; }
  .final-cta .button { grid-column: 2; }
  .inner-hero__grid { grid-template-columns: 120px 1.8fr 1fr; }
  .article-layout { grid-template-columns: 210px minmax(0, 700px); gap: 55px; }
  .no-js .site-header { position: relative; height: auto; color: var(--white); background: var(--ink); }
  .no-js .site-header__inner { min-height: var(--header); height: auto; flex-wrap: wrap; padding: 13px 0; }
  .no-js .desktop-nav { order: 3; width: 100%; display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 12px 0 5px; border-top: 1px solid rgba(255,255,255,.16); }
  .no-js .header-actions > .language-switch { display: inline-flex; }
  .no-js .language-switch a, .mobile-menu .language-switch a { min-width: 44px; min-height: 44px; }
  .no-js .menu-button { display: none; }
  .no-js .breadcrumbs { padding-top: 24px; }
}

@media (max-width: 820px) {
  :root { --header: 68px; --shell: calc(100% - 40px); }
  .site-header__inner { gap: 12px; }
  .hero { min-height: 0; display: grid; overflow: hidden; }
  .hero__media { position: relative; inset: auto; width: 100%; height: 54svh; min-height: 430px; max-height: 610px; }
  .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-position: 50% 50%; transform: none; }
  .hero__shade { z-index: 1; inset: 0 0 auto; height: 180px; background: linear-gradient(180deg, rgba(9,10,11,.58) 0%, rgba(9,10,11,.18) 58%, transparent 100%); pointer-events: none; }
  .hero__content { min-height: 0; justify-content: flex-start; padding-top: 48px; padding-bottom: 58px; }
  .hero__brand-clearance { display: none; }
  .hero__brand { font-size: 2rem; }
  .hero h1 { font-size: clamp(2.45rem, 10vw, 4.2rem); max-width: 680px; }
  .hero__lead { margin-top: 16px; }
  .hero__actions { margin-top: 22px; }
  .hero__scroll { display: none; }
  .trust-strip__inner { grid-template-columns: 1fr; }
  .trust-strip__inner span + span { padding-left: 0; border-top: 1px solid rgba(255,255,255,.15); border-left: 0; }
  .section-heading, .numbered-ledger li { grid-template-columns: 95px 1fr; gap: 20px; }
  .feature-story { min-height: 0; grid-template-columns: 1fr; }
  .feature-story__media { height: 70svh; min-height: 520px; }
  .feature-story__copy { padding: 64px 20px 80px; }
  .explainer__grid, .author-band__grid, .two-column { grid-template-columns: 1fr; }
  .article-row { grid-template-columns: 60px 1fr 34px; gap: 12px; min-height: 118px; }
  .article-row__meta { grid-column: 2; grid-row: 1; }
  .article-row strong { grid-column: 2; grid-row: 2; }
  .article-row__number { grid-row: 1 / 3; }
  .article-row__arrow { grid-column: 3; grid-row: 1 / 3; }
  .final-cta__inner { grid-template-columns: 1fr; }
  .final-cta .button { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / 3; }
  .inner-hero__grid { grid-template-columns: 1fr; gap: 22px; }
  .inner-hero__grid > .kicker { margin-bottom: 0; }
  .article-layout { display: block; width: min(740px, var(--shell)); }
  .article-toc { position: relative; top: auto; margin-bottom: 70px; }
  .article-toc > a:not(.toc-cta) { grid-template-columns: 34px 1fr; font-size: 12px; }
  .article-cover { margin-bottom: 65px; }
  .character-hero { grid-template-columns: 1fr; padding-top: var(--header); }
  .character-hero__copy { order: -1; }
  .character-hero__media { height: 67svh; min-height: 540px; }
  .character-hero__copy { padding: 70px 20px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  body { font-size: 16px; }
  .brand { font-size: 20px; }
  .hero__media { height: 52svh; min-height: 410px; max-height: 520px; }
  .hero__media img { object-position: 50% 50%; }
  .hero__content { min-height: 0; padding-top: 38px; padding-bottom: 46px; }
  .hero__eyebrow { margin-bottom: 10px; font-size: 9px; }
  .hero__brand { margin-bottom: 8px; font-size: 1.55rem; }
  .hero h1 { font-size: clamp(2.25rem, 11vw, 3.1rem); line-height: .97; }
  .hero__lead { font-size: .95rem; line-height: 1.45; }
  .hero__actions { width: 100%; display: grid; gap: 12px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { justify-self: start; }
  .hero .disclosure-line { margin-top: 18px; font-size: 10px; }
  .section { padding: 78px 0; }
  .section-heading { display: block; margin-bottom: 35px; }
  .section-heading h2 { margin-top: 8px; }
  .manifest h2, .section-heading h2, .feature-story h2, .author-band h2, .final-cta h2, .two-column h2 { font-size: 2.55rem; }
  .numbered-ledger li { grid-template-columns: 58px 1fr; padding: 26px 0; }
  .numbered-ledger > li > span { font-size: 2rem; }
  .numbered-ledger h3 { font-size: 1.55rem; }
  .feature-story__media { height: 58svh; min-height: 460px; }
  .feature-story__copy { padding-inline: 16px; }
  .explainer__grid { gap: 28px; }
  .flow { flex-wrap: wrap; justify-content: flex-start; }
  .article-row { grid-template-columns: 42px 1fr 24px; padding: 18px 0; }
  .article-row__number { font-size: 1.65rem; }
  .article-row strong { font-size: 1.3rem; }
  .author-band__grid { gap: 45px; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: 1; }
  .footer-bottom { display: grid; }
  .breadcrumbs { padding-top: calc(var(--header) + 20px); }
  .breadcrumbs ol { gap: 6px; font-size: 9px; }
  .breadcrumbs li { gap: 6px; }
  .inner-hero { padding-top: 55px; padding-bottom: 75px; }
  .inner-hero h1, .article-header h1, .character-hero h1 { min-width: 0; max-width: 100%; overflow-wrap: anywhere; hyphens: auto; font-size: clamp(2.35rem, 11vw, 4rem); }
  .archive-meta { grid-template-columns: 90px 1fr; }
  .archive-meta > span { font-size: 4rem; }
  .article-header { padding-top: 55px; }
  .article-byline { grid-template-columns: 1fr; }
  .article-cover { width: 100%; }
  .article-cover figcaption { padding-inline: 16px; }
  .article-body { font-size: 18px; }
  .article-body h2 { font-size: 2.2rem; }
  .article-intro { margin-bottom: 55px; font-size: 1.3rem; }
  .next-article > a { grid-template-columns: 1fr 30px; }
  .next-article > a span { grid-column: 1; }
  .next-article > a strong { grid-column: 1; }
  .next-article i { grid-column: 2; grid-row: 1 / 3; }
  .character-hero__media { min-height: 470px; }
  .principle-list li { grid-template-columns: 48px 1fr; font-size: 1.45rem; }
  .document-body { padding-top: 75px; padding-bottom: 85px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto!important; transition-duration: .01ms!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__media img { transform: none!important; }
}

@media print {
  :root { --shell: 100%; }
  body { color: #000; background: #fff; font-size: 12pt; }
  .site-header, .breadcrumbs, .article-toc, .final-cta, .site-footer, .reading-progress, .next-article, .skip-link { display: none!important; }
  .article-header, .article-layout { width: 100%; padding: 0; display: block; }
  .article-cover { margin: 20px 0; break-inside: avoid; }
  .article-body { font-size: 12pt; }
  .article-body section { break-inside: avoid; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
