@charset "UTF-8";
/* ============================================================
   WEARNOTES — wearnotes.uk
   Built from the Claude Design project "WearNotes Desktop /
   Mobile / WN Footer". Every colour is a variable so the light
   and dark themes stay in step. Light is the default.
   ============================================================ */

/* ---------- 1. TOKENS ---------- */

:root {
  /* Surfaces */
  --bg:            #E7E4DF;
  --surface:       #FFFFFF;
  --surface-alt:   #F5F2ED;
  --surface-sunk:  #EDEAE5;

  /* Ink */
  --ink:           #101010;
  --ink-body:      #141414;
  --ink-soft:      #3E3B36;
  --ink-mid:       #4A4740;
  --ink-mute:      #8A857D;
  --ink-warm:      #8A7E70;
  --ink-faint:     #A19C94;

  /* Rules */
  --rule:          rgba(16, 16, 16, 0.14);
  --rule-soft:     rgba(16, 16, 16, 0.10);
  --rule-mid:      rgba(16, 16, 16, 0.25);
  --rule-hard:     #101010;

  /* Inverted blocks (chips, solid buttons, drawer, 404 panel) */
  --invert-bg:     #111111;
  --invert-ink:    #FFFFFF;
  --invert-mute:   #7D7871;
  --invert-soft:   #BDB8B1;
  --invert-rule:   rgba(242, 240, 236, 0.18);
  --invert-rule-2: rgba(242, 240, 236, 0.35);
  --invert-field:  #6E6A64;

  /* Footer is inverted in both themes */
  --footer-bg:     #111111;

  --accent:        #FF3B00;
  --accent-ink:    #FFFFFF;

  --scrim-1:       rgba(8, 8, 8, 0.88);
  --scrim-2:       rgba(8, 8, 8, 0.45);

  /* Type */
  --display: 'Bodoni Moda', Didot, 'Times New Roman', Georgia, serif;
  --serif:   'EB Garamond', Georgia, 'Times New Roman', serif;
  --ui:      Jost, 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Layout */
  --wrap:    1312px;
  --gutter:  64px;
  --nav-h:   64px;

  color-scheme: light;
}

[data-theme="dark"] {
  --bg:            #0B0B0B;
  --surface:       #121212;
  --surface-alt:   #191919;
  --surface-sunk:  #1E1E1E;

  --ink:           #F3F1ED;
  --ink-body:      #EDEAE4;
  --ink-soft:      #CFC9C1;
  --ink-mid:       #BDB7AF;
  --ink-mute:      #948E86;
  --ink-warm:      #A79A8B;
  --ink-faint:     #7A746C;

  --rule:          rgba(242, 240, 236, 0.16);
  --rule-soft:     rgba(242, 240, 236, 0.10);
  --rule-mid:      rgba(242, 240, 236, 0.28);
  --rule-hard:     rgba(242, 240, 236, 0.55);

  --invert-bg:     #F3F1ED;
  --invert-ink:    #101010;
  --invert-mute:   #6E6A64;
  --invert-soft:   #3A3733;
  --invert-rule:   rgba(16, 16, 16, 0.20);
  --invert-rule-2: rgba(16, 16, 16, 0.35);
  --invert-field:  #8A857D;

  --footer-bg:     #050505;

  --accent:        #FF5A2B;
  --accent-ink:    #101010;

  color-scheme: dark;
}

/* Footer + drawer keep the black-on-white treatment of the design in
   light mode; in dark mode they read as the deepest surface instead. */
.footer, .drawer, .notfound {
  --panel-bg:   var(--footer-bg);
  --panel-ink:  #FFFFFF;
  --panel-mute: #7D7871;
  --panel-soft: #BDB8B1;
  --panel-rule: rgba(242, 240, 236, 0.18);
  --panel-rule-2: rgba(242, 240, 236, 0.35);
}

/* ---------- 2. RESET ---------- */

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p   { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

.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;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--invert-bg); color: var(--invert-ink);
  padding: 12px 18px; font-family: var(--ui); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

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

/* ---------- 3. SHARED TYPE ---------- */

.eyebrow {
  display: block;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-warm);
}

.byline {
  display: block;
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.is-accent { color: var(--accent); }
.is-bright { color: var(--ink); }

.chip {
  display: inline-block;
  background: var(--invert-bg);
  color: var(--invert-ink);
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 11px;
}

.btn-solid {
  display: inline-block;
  background: var(--invert-bg);
  color: var(--invert-ink);
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid var(--invert-bg);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-solid:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn-solid--lg { padding: 16px 34px; }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--rule-hard);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 20px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: var(--invert-bg); color: var(--invert-ink); border-color: var(--invert-bg); }
.btn-outline--lg { padding: 15px 40px; letter-spacing: 0.2em; }

.btn-invert {
  display: inline-block; background: #FFFFFF; color: #111111;
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 15px 28px; transition: background 0.2s, color 0.2s;
}
.btn-invert:hover { background: var(--accent); color: #FFFFFF; }

.btn-ghost {
  display: inline-block; border: 1px solid var(--panel-rule-2); color: #FFFFFF;
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 15px 28px; transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: #FFFFFF; color: #111111; }

.crumbs {
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.crumbs span { color: var(--ink); }
.crumbs a:hover { color: var(--accent); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid var(--rule-hard);
  padding-bottom: 12px;
  margin-bottom: 32px;
}
.section-head--tight { margin-bottom: 26px; border-bottom-width: 1px; }
.section-head__group { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.section-head__title { font-family: var(--display); font-size: clamp(28px, 4vw, 40px); line-height: 1; }
.section-head__title--sm { font-size: clamp(26px, 3.4vw, 36px); }
.section-head__more {
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute); white-space: nowrap;
}
.section-head__more:hover { color: var(--accent); }

.block { padding: 56px 0 8px; }
.block__more { display: flex; justify-content: center; padding: 24px 0 56px; }

.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 7px 12px;
  border: 1px solid var(--rule-mid); color: var(--ink-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pill:hover { border-color: var(--rule-hard); color: var(--ink); }
.pill.is-on { background: var(--invert-bg); color: var(--invert-ink); border-color: var(--invert-bg); }

/* ---------- 4. MASTHEAD ---------- */

.masthead { background: var(--surface); border-bottom: 1px solid var(--rule-hard); }

.masthead__strip {
  background: var(--surface);
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--ui);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-warm);
}
.masthead__strip-inner { height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.masthead__strip-links { display: flex; gap: 26px; }
.masthead__strip-links a:hover { color: var(--accent); }

.masthead__bar { position: sticky; top: 0; z-index: 70; background: var(--surface); border-bottom: 1px solid var(--rule-soft); }
.masthead__bar-inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-family: var(--display);
  font-weight: 500;
  font-size: 27px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.wordmark__dot { color: var(--accent); }
.wordmark--sm { font-size: 21px; }

.topnav { display: flex; gap: 34px; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; }
.topnav a { color: var(--ink-soft); transition: color 0.2s; padding: 4px 0; }
.topnav a:hover { color: var(--accent); }
.topnav a.is-current { color: var(--ink); border-bottom: 1px solid var(--accent); }

.masthead__tools { display: flex; align-items: center; gap: 16px; }

.theme-toggle {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule-mid); border-radius: 50%;
  color: var(--ink-soft);
  transition: color 0.2s, border-color 0.2s;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

.burger { display: none; flex-direction: column; gap: 5px; width: 26px; padding: 6px 0; }
.burger span { height: 2px; background: var(--ink); display: block; transition: transform 0.25s, opacity 0.2s; }
.burger span:last-child { width: 16px; background: var(--ink-warm); }

/* ---------- 5. MOBILE DRAWER ---------- */

.drawer {
  position: fixed; inset: 0; z-index: 120;
  background: var(--panel-bg); color: var(--panel-ink);
  display: flex; flex-direction: column;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.3, 0.8, 0.3, 1);
}
.drawer.is-open { transform: none; }
.drawer[hidden] { display: none; }

.drawer__top {
  height: 58px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px; border-bottom: 1px solid var(--panel-rule);
}
.drawer__top .eyebrow { color: var(--panel-mute); }
.drawer__close { font-size: 26px; line-height: 1; color: var(--panel-ink); width: 30px; text-align: right; }

.drawer__nav { padding: 20px 16px; display: flex; flex-direction: column; }
.drawer__nav a {
  font-family: var(--display); font-size: clamp(34px, 11vw, 46px); line-height: 1.14;
  letter-spacing: -0.005em; border-bottom: 1px solid var(--panel-rule);
  padding: 12px 0; display: flex; justify-content: space-between; align-items: baseline;
}
.drawer__nav a span { font-family: var(--ui); font-size: 10px; color: var(--panel-mute); }
.drawer__nav a:hover { color: var(--accent); }

.drawer__meta {
  padding: 4px 16px 24px; display: flex; flex-direction: column; gap: 16px;
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--panel-soft);
}
.drawer__meta a:hover { color: var(--accent); }

.drawer__foot { margin-top: auto; padding: 20px 16px; border-top: 1px solid var(--panel-rule); }
.drawer__social { display: flex; gap: 8px; flex-wrap: wrap; font-family: var(--ui); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; }
.drawer__social a { border: 1px solid var(--panel-rule-2); padding: 11px 13px; }
.drawer__social a:hover { background: var(--accent); border-color: var(--accent); color: #FFFFFF; }

body.is-locked { overflow: hidden; }

/* ---------- 5b. HOME MASTHEAD (design screen 01) ---------- */

.home-masthead { background: var(--surface); }
.home-masthead__inner {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; padding: 34px 24px 24px;
}
.home-masthead__title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(38px, 8vw, 92px); line-height: 1;
  letter-spacing: 0.055em; text-transform: uppercase; margin: 0;
}
.home-masthead__standfirst {
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute); text-align: right;
  line-height: 1.8; max-width: 250px; margin: 0 0 6px;
}

/* ---------- 5c. AUTHOR PAGE ---------- */

.author-head { padding: 40px 0 32px; border-bottom: 1px solid var(--rule-hard); }
.author-head__inner { display: flex; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.author-head__img { width: 200px; flex-shrink: 0; }
.author-head__img img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--surface-sunk); }
.author-head__name {
  font-family: var(--display); font-size: clamp(40px, 7vw, 88px);
  line-height: 0.98; letter-spacing: -0.005em; margin: 14px 0 18px;
}
.author-head__bio { font-size: 19px; line-height: 1.65; color: var(--ink-soft); max-width: 620px; margin-bottom: 14px; }

.author-box__name a:hover { color: var(--accent); }
.author-box__more {
  display: inline-block; margin-top: 12px;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
}
.author-box__more:hover { text-decoration: underline; text-underline-offset: 3px; }
.article__author-name a:hover { color: var(--accent); }

/* ---------- 6. HERO ---------- */

.hero {
  display: grid;
  grid-template-columns: 1fr 392px;
  background: var(--surface);
  border-bottom: 1px solid var(--rule-hard);
}

.hero__stage {
  position: relative;
  height: 620px;
  overflow: hidden;
  border-right: 1px solid var(--rule-hard);
  background: var(--surface-sunk);
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s;
  display: flex; align-items: flex-end;
}
.hero__slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero__slide > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.hero__scrim {
  position: relative; width: 100%;
  padding: 56px;
  background: linear-gradient(to top, var(--scrim-1) 0%, var(--scrim-2) 55%, rgba(8,8,8,0) 100%);
  color: #F7F5F1;
}
.hero__kicker {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 18px;
}
.hero__kicker .chip { background: var(--accent); color: #FFFFFF; padding: 5px 9px; }
.hero__title {
  display: block;
  font-family: var(--display);
  font-size: clamp(30px, 4.6vw, 66px);
  line-height: 1.05;
  max-width: 840px;
  text-wrap: pretty;
}
.hero__title:hover { color: #FFFFFF; text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.hero__dek { font-size: 16px; line-height: 1.5; color: #E7E4DF; max-width: 620px; margin: 18px 0 0; }

.hero__progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(247,245,241,0.25); z-index: 5; }
.hero__progress span { display: block; height: 3px; width: 0; background: var(--accent); }

.hero__dots { position: absolute; right: 16px; bottom: 14px; z-index: 6; display: none; gap: 6px; }
.hero__dots button { width: 22px; height: 3px; background: rgba(247,245,241,0.5); }
.hero__dots button[aria-selected="true"] { background: var(--accent); }

.hero__rail { display: flex; flex-direction: column; background: var(--surface); }
.hero__rail-head {
  padding: 20px 26px 14px;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute); border-bottom: 1px solid var(--rule);
  display: flex; justify-content: space-between;
}
.hero__row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 26px; flex: 1;
  border-bottom: 1px solid var(--rule);
  transition: background 0.35s ease, color 0.35s ease;
}
.hero__row:last-child { border-bottom: 0; }
.hero__row .eyebrow { margin-bottom: 7px; }
.hero__num { font-family: var(--display); font-size: 26px; line-height: 1; color: var(--ink-faint); transition: color 0.35s; }
.hero__row-title { display: block; font-size: 19px; font-weight: 600; line-height: 1.25; letter-spacing: -0.01em; }
.hero__row.is-active { background: var(--invert-bg); color: var(--invert-ink); }
.hero__row.is-active .eyebrow { color: var(--accent); }
.hero__row.is-active .hero__num { color: var(--accent); }

/* ---------- 7. FEATURE GRID ---------- */

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature { display: flex; flex-direction: column; gap: 14px; }
.feature__img { position: relative; aspect-ratio: 416 / 300; overflow: hidden; background: var(--surface-sunk); }
.feature__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1); }
.feature:hover .feature__img img { transform: scale(1.04); }
.feature__rank {
  position: absolute; top: 0; left: 0;
  background: var(--invert-bg); color: var(--invert-ink);
  font-family: var(--display); font-size: 22px; padding: 6px 12px;
}
.feature__title { font-family: var(--display); font-size: clamp(23px, 2.2vw, 30px); line-height: 1.18; }
.feature:hover .feature__title { color: var(--accent); }
.feature__dek { font-size: 15px; line-height: 1.55; color: var(--ink-mid); margin: 0; }

/* ---------- 8. MASONRY ---------- */

.masonry { columns: 3; column-gap: 32px; }
.masonry > * { break-inside: avoid; margin-bottom: 32px; display: block; }

.mcard__img { overflow: hidden; background: var(--surface-sunk); margin-bottom: 14px; }
.mcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1); }
.mcard__img--1 { aspect-ratio: 416 / 420; }
.mcard__img--2 { aspect-ratio: 416 / 250; }
.mcard__img--3 { aspect-ratio: 416 / 330; }
.mcard__img--4 { aspect-ratio: 416 / 280; }
.mcard:hover .mcard__img img { transform: scale(1.04); }
.mcard__title { font-family: var(--display); font-size: 27px; line-height: 1.14; margin: 8px 0 10px; }
.mcard:hover .mcard__title { color: var(--accent); }

.quote-card { background: var(--surface-alt); padding: 40px 32px; border-top: 2px solid var(--rule-hard); margin: 0 0 32px; }
.quote-card blockquote { font-family: var(--display); font-size: 30px; line-height: 1.24; letter-spacing: -0.01em; margin: 22px 0; }
.quote-card figcaption { font-family: var(--ui); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-warm); }

.list-card { border: 1px solid var(--rule-hard); padding: 28px; }
.list-card__title { font-family: var(--display); font-size: 27px; line-height: 1.14; margin: 14px 0 18px; }
.list-card ol { display: flex; flex-direction: column; gap: 11px; font-size: 14px; line-height: 1.4; }
.list-card li { display: flex; gap: 12px; border-top: 1px solid var(--rule); padding-top: 11px; }
.list-card li span { font-family: var(--ui); color: var(--ink-faint); }

/* ---------- 9. THE EDIT STRIP ---------- */

.strip { background: var(--surface-alt); border-top: 1px solid var(--rule-hard); border-bottom: 1px solid var(--rule-hard); padding: 44px 0; margin-top: 24px; }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product { background: var(--surface); padding: 18px; display: block; transition: transform 0.3s; }
.product:hover { transform: translateY(-3px); }
.product__img { aspect-ratio: 1; overflow: hidden; background: var(--surface-sunk); margin-bottom: 16px; }
.product__img img { width: 100%; height: 100%; object-fit: cover; }
.product__title { font-size: 16px; font-weight: 600; line-height: 1.3; margin: 8px 0 10px; }
.product:hover .product__title { color: var(--accent); }

/* ---------- 10. NEWSLETTER ---------- */

.news { background: var(--surface-alt); border-top: 1px solid var(--rule); }
.news__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; padding-block: 88px; }
.news__title { font-family: var(--display); font-size: clamp(40px, 6vw, 70px); line-height: 1.02; margin-top: 20px; }
.news__copy { font-size: 18px; line-height: 1.65; color: var(--ink-mid); margin-bottom: 28px; }
.news__form { display: flex; height: 56px; border-bottom: 1px solid var(--rule-hard); margin-bottom: 16px; }
.news__form input { flex: 1; border: 0; background: none; font-size: 16px; font-family: var(--serif); }
.news__form input::placeholder { color: var(--ink-mute); }
.news__form button {
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink); padding-left: 20px;
}
.news__form button:hover { color: var(--accent); }
.news__note { font-family: var(--ui); font-size: 11px; letter-spacing: 0.1em; color: var(--accent); margin: 0 0 10px; }

/* ---------- 11. CATEGORY ---------- */

.cat-head {
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: end;
  padding: 48px 0 36px; border-bottom: 1px solid var(--rule-hard);
}
.cat-head__title { font-family: var(--display); font-size: clamp(56px, 11vw, 150px); line-height: 0.94; letter-spacing: -0.005em; }
.cat-head__blurb { font-size: 17px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 20px; }
.cat-stats { display: flex; gap: 32px; margin: 0; }
.cat-stats dt { font-size: 15px; color: var(--ink); font-family: var(--ui); }
.cat-stats dd { margin: 0; font-family: var(--ui); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }

.cat-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--rule); flex-wrap: wrap; }

.lead { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; border-bottom: 1px solid var(--rule-hard); padding: 44px 0; }
.lead__img { position: relative; aspect-ratio: 634 / 460; overflow: hidden; background: var(--surface-sunk); }
.lead__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1); }
.lead:hover .lead__img img { transform: scale(1.03); }
.lead__flag {
  position: absolute; top: 0; left: 0; background: var(--accent); color: #FFFFFF;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 7px 12px;
}
.lead__title { font-family: var(--display); font-size: clamp(32px, 4.2vw, 58px); line-height: 1.06; margin: 16px 0 20px; text-wrap: pretty; }
.lead:hover .lead__title { color: var(--accent); }
.lead__dek { font-size: 19px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 22px; max-width: 520px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 32px; padding: 44px 0; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card__img { aspect-ratio: 416 / 280; overflow: hidden; background: var(--surface-sunk); margin-bottom: 14px; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1); }
.card:hover .card__img img { transform: scale(1.04); }
.card__title { font-family: var(--display); font-size: 26px; line-height: 1.14; margin: 8px 0 10px; }
.card__title--sm { font-size: 22px; }
.card:hover .card__title { color: var(--accent); }

.pager {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--rule-hard); padding: 24px 0 56px;
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.pager__count { color: var(--ink-mute); }
.pager__links { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pager__n { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--rule-mid); }
.pager__n:hover { border-color: var(--rule-hard); }
.pager__n.is-on { background: var(--invert-bg); color: var(--invert-ink); border-color: var(--invert-bg); }
.pager__next { border: 1px solid var(--rule-hard); height: 38px; display: flex; align-items: center; padding: 0 18px; }
.pager__next:hover { background: var(--invert-bg); color: var(--invert-ink); }

.empty { padding: 64px 0; font-size: 20px; color: var(--ink-mid); }
.empty a { color: var(--accent); text-decoration: underline; }

/* ---------- 12. ARTICLE ---------- */

.read-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: var(--rule-soft); z-index: 90; }
.read-progress span { display: block; height: 3px; width: 0; background: var(--accent); }

.article { background: var(--surface); }
.article > .wrap:first-of-type { padding-top: 40px; }

.article__top { display: grid; grid-template-columns: 1fr 300px; gap: 64px; }
.article__title { font-family: var(--display); font-size: clamp(36px, 6vw, 82px); line-height: 1.04; margin: 20px 0 26px; text-wrap: pretty; }
.article__standfirst { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.45; color: var(--ink-soft); font-weight: 400; max-width: 760px; margin-bottom: 32px; }

.article__meta {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--rule-hard); border-bottom: 1px solid var(--rule-hard);
  padding: 16px 0; margin-bottom: 36px;
}
.article__author { display: flex; align-items: center; gap: 14px; }
.article__author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.article__author-name { font-size: 14px; font-weight: 600; }

.share__row, .share--top { display: flex; gap: 10px; flex-wrap: wrap; }
.share--full { margin: 8px 0 44px; }
.share--full .eyebrow { margin-bottom: 14px; }
.share__btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--rule-mid); padding: 9px 14px;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.share__btn:hover { background: var(--invert-bg); color: var(--invert-ink); border-color: var(--invert-bg); }
.share__btn svg { flex-shrink: 0; }
.share__btn[aria-pressed="true"] { border-color: var(--accent); color: var(--accent); }

.article__toc .rail-head, .rail-head {
  border-top: 2px solid var(--rule-hard); padding-top: 14px; margin-bottom: 18px;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-warm);
}
.toc { display: flex; flex-direction: column; gap: 12px; font-size: 14px; line-height: 1.4; margin-bottom: 34px; }
.toc a { border-left: 2px solid var(--rule-soft); padding-left: 12px; color: var(--ink-mid); transition: border-color 0.2s, color 0.2s; }
.toc a:hover, .toc a.is-on { border-left-color: var(--accent); color: var(--ink); }

.rail-news { background: var(--invert-bg); color: var(--invert-ink); padding: 22px; }
.rail-news .eyebrow { color: var(--accent); }
.rail-news h3 { font-family: var(--display); font-size: 24px; line-height: 1.14; margin: 12px 0 14px; }
.rail-news__form input {
  width: 100%; border: 1px solid var(--invert-rule-2); background: none;
  height: 40px; padding: 0 12px; font-size: 13px; margin-bottom: 10px; color: var(--invert-ink);
}
.rail-news__form input::placeholder { color: var(--invert-field); }
.rail-news__form button {
  width: 100%; height: 40px; background: var(--accent); color: #FFFFFF;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
}

.article__hero { margin: 32px auto 0; }
.article__hero img { width: 100%; aspect-ratio: 1312 / 560; object-fit: cover; background: var(--surface-sunk); }
.article__hero figcaption {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); padding-top: 12px;
}

.article__main { display: grid; grid-template-columns: 1fr 300px; gap: 64px; padding-top: 48px; padding-bottom: 8px; }
.article__body { max-width: 760px; }
.article__body > p { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.72; color: var(--ink-body); margin: 0 0 24px; }
.article__body h2 {
  font-family: var(--display); font-size: clamp(26px, 3vw, 34px); line-height: 1.1;
  margin: 40px 0 18px; scroll-margin-top: 90px;
}
.article__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.article__body .dropcap::first-letter {
  float: left; font-family: var(--display); font-size: 86px; line-height: 0.74;
  padding: 6px 14px 0 0; color: var(--accent);
}

.article-figure { margin: 38px 0; }
.article-figure img { width: 100%; aspect-ratio: 760 / 440; object-fit: cover; background: var(--surface-sunk); }
.article-figure figcaption {
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 10px; line-height: 1.6;
}

.article__body blockquote.pull {
  border-left: 4px solid var(--accent); padding: 6px 0 6px 28px; margin: 38px 0;
}
.article__body blockquote.pull p {
  font-family: var(--display); font-size: clamp(26px, 3.4vw, 40px); line-height: 1.16;
  margin: 0; text-wrap: pretty; color: var(--ink);
}
.article__body blockquote.pull cite {
  display: block; font-style: normal; font-family: var(--ui); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-top: 16px;
}

.tags { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; border-top: 1px solid var(--rule-hard); padding-top: 22px; margin-bottom: 34px; }
.tags .eyebrow { margin-right: 8px; }
.tag {
  border: 1px solid var(--rule-mid); padding: 9px 14px;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.tag:hover { background: var(--invert-bg); color: var(--invert-ink); border-color: var(--invert-bg); }

.author-box { display: flex; gap: 22px; background: var(--surface-alt); padding: 28px; }
.author-box img { width: 96px; height: 96px; object-fit: cover; flex-shrink: 0; }
.author-box__name { font-family: var(--display); font-size: 26px; line-height: 1; margin: 10px 0; }
.author-box p { font-size: 15px; line-height: 1.55; color: var(--ink-mid); margin: 0; }

.rail-sticky { position: sticky; top: 90px; }
.rank { display: flex; flex-direction: column; }
.rank li { border-bottom: 1px solid var(--rule); }
.rank li:last-child { border-bottom: 0; }
.rank a { display: flex; gap: 14px; padding: 14px 0; font-size: 15px; font-weight: 600; line-height: 1.3; }
.rank a:hover { color: var(--accent); }
.rank__n { font-family: var(--display); font-size: 22px; color: var(--ink-faint); line-height: 1; }

/* ---------- 13. ABOUT ---------- */

.page-head { padding: 72px 0 56px; border-bottom: 1px solid var(--rule-hard); }
.page-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.page-head__xl { font-family: var(--display); font-size: clamp(40px, 7vw, 96px); line-height: 1.0; letter-spacing: -0.005em; max-width: 1180px; margin-top: 26px; text-wrap: pretty; }
.page-head__xl--tight { font-size: clamp(44px, 8vw, 112px); line-height: 0.95; margin-top: 12px; }
.page-head__side { font-size: 19px; line-height: 1.65; color: var(--ink-soft); max-width: 340px; margin: 0 0 12px; }
.page-head__stamp {
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); text-align: right; line-height: 2; padding-bottom: 10px;
}

.split { display: grid; grid-template-columns: 1fr 1fr; background: var(--surface); border-bottom: 1px solid var(--rule); }
.split__img { border-right: 1px solid var(--rule-hard); background: var(--surface-sunk); }
.split__img img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.split__body { padding: 64px; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.split__body p { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.7; color: var(--ink-body); margin: 0; }
.split__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 64px 0; border-bottom: 1px solid var(--rule); }
.stats > div { padding: 0 32px; border-left: 1px solid var(--rule); }
.stats > div:first-child { padding-left: 0; border-left: 0; }
.stats dt { font-family: var(--display); font-size: clamp(38px, 4.5vw, 64px); line-height: 1; letter-spacing: -0.02em; }
.stats dd { margin: 12px 0 0; font-family: var(--ui); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-warm); }

.triple { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.triple h3 { font-family: var(--display); font-size: 28px; line-height: 1.14; margin: 12px 0; }
.triple p { font-size: 16px; line-height: 1.6; color: var(--ink-mid); margin: 0; }

.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.team__img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--surface-sunk); margin-bottom: 14px; }
.team__img img { width: 100%; height: 100%; object-fit: cover; }
.team__name { font-family: var(--display); font-size: 24px; line-height: 1; margin-bottom: 8px; }
.team__role { display: block; font-family: var(--ui); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.team__member p { font-size: 14px; line-height: 1.55; color: var(--ink-mid); margin: 0; }

/* ---------- 14. CONTACT ---------- */

.contact { display: grid; grid-template-columns: 1fr 460px; max-width: var(--wrap); margin-inline: auto; }
.contact__form-col { padding: 56px 24px 64px; border-right: 1px solid var(--rule-hard); }
.contact__form-col > .eyebrow { margin-bottom: 30px; }
.contact__side { padding: 56px 24px 64px 40px; background: var(--surface-alt); display: flex; flex-direction: column; }

.contact__item { border-top: 1px solid var(--rule); padding: 20px 0 24px; }
.contact__item--first { border-top: 2px solid var(--rule-hard); }
.contact__item p { font-size: 14px; line-height: 1.55; color: var(--ink-mid); margin: 8px 0 0; }
.contact__item .eyebrow { margin-bottom: 10px; }
.contact__addr { display: inline-block; font-size: 20px; font-weight: 600; }
.contact__addr:hover { color: var(--accent); }
.contact__item address { font-style: normal; font-size: 16px; line-height: 1.6; }
.contact__social { display: flex; gap: 10px; flex-wrap: wrap; font-family: var(--ui); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.contact__social a { border: 1px solid var(--rule-mid); padding: 10px 14px; }
.contact__social a:hover { background: var(--invert-bg); color: var(--invert-ink); border-color: var(--invert-bg); }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { margin-bottom: 24px; border: 0; padding: 0; min-width: 0; }
.field label, .field legend {
  display: block; font-family: var(--ui); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 9px; padding: 0;
}
.field input[type="text"], .field input[type="email"], .field textarea {
  width: 100%; border: 1px solid var(--rule-hard); background: var(--surface);
  padding: 14px; font-size: 15px; font-family: var(--serif); color: var(--ink);
}
.field input[type="text"], .field input[type="email"] { height: 52px; padding-block: 0; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip-radio span {
  display: inline-block; border: 1px solid var(--rule-mid); padding: 11px 15px;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.chip-radio input:checked + span { background: var(--invert-bg); color: var(--invert-ink); border-color: var(--invert-bg); }
.chip-radio input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.form__submit { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.notice { padding: 16px 20px; font-size: 15px; margin-bottom: 24px; }
.notice p { margin: 0 0 6px; }
.notice p:last-child { margin: 0; }
.notice--ok  { border-left: 4px solid var(--accent); background: var(--surface-alt); }
.notice--bad { border-left: 4px solid var(--rule-hard); background: var(--surface-alt); }

/* ---------- 15. DOC / PRIVACY ---------- */

.doc { display: grid; grid-template-columns: 300px 1fr; gap: 64px; padding: 52px 0 64px; }
.doc__ask { border: 1px solid var(--rule-hard); padding: 20px; margin-top: 32px; }
.doc__ask .contact__addr { font-size: 15px; margin: 10px 0 6px; }
.doc__ask p { font-size: 13px; line-height: 1.5; color: var(--ink-mid); margin: 0; }
.doc__body { max-width: 760px; }
.doc__lede {
  font-size: clamp(18px, 1.6vw, 21px); line-height: 1.72; color: var(--ink-body);
  border-left: 4px solid var(--accent); padding-left: 24px; margin-bottom: 44px;
}
.doc__section { display: flex; gap: 20px; border-top: 1px solid var(--rule-hard); padding-top: 24px; margin-bottom: 36px; scroll-margin-top: 90px; }
.doc__num { font-family: var(--display); font-size: 34px; line-height: 1; color: var(--accent); width: 44px; flex-shrink: 0; }
.doc__section h2 { font-family: var(--display); font-size: clamp(24px, 3vw, 32px); line-height: 1; margin-bottom: 14px; }
.doc__section p { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.72; color: var(--ink-body); }
.doc__section a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.doc__section .callout { background: var(--surface-alt); padding: 20px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.lettered { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.lettered li { display: flex; gap: 14px; font-size: clamp(17px, 1.5vw, 19px); line-height: 1.65; }
.lettered li > span:first-child { font-family: var(--ui); font-size: 12px; color: var(--ink-mute); padding-top: 4px; }

/* ---------- 16. 404 ---------- */

.notfound { background: var(--panel-bg); color: var(--panel-ink); position: relative; overflow: hidden; }
.notfound::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 9px, rgba(255,255,255,0) 9px 18px);
}
.notfound__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-block: 72px; }
.notfound__code { font-family: var(--display); font-size: clamp(120px, 18vw, 260px); line-height: 0.9; letter-spacing: -0.05em; color: var(--accent); }
.notfound__inner .eyebrow { color: var(--panel-mute); }
.notfound__title { font-family: var(--display); font-size: clamp(32px, 5vw, 56px); line-height: 1.06; margin-bottom: 22px; text-wrap: pretty; }
.notfound__copy { font-size: 18px; line-height: 1.6; color: var(--panel-soft); margin-bottom: 30px; max-width: 440px; }
.notfound__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- 17. FOOTER ---------- */

.footer { background: var(--panel-bg); color: var(--panel-ink); padding: 64px 0 28px; margin-top: 0; }
.footer a:hover { color: var(--accent); }

.footer__top {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  border-bottom: 1px solid var(--panel-rule); padding-bottom: 26px;
}
.footer__wordmark {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(44px, 9vw, 118px); line-height: 0.92;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.footer__meta {
  font-family: var(--ui); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--panel-mute); text-align: right; line-height: 1.9; padding-bottom: 10px;
}
.footer__meta .is-bright { color: #FFFFFF; }

.footer__cols { display: grid; grid-template-columns: repeat(5, 1fr) 1.5fr; gap: 32px; padding: 36px 0 44px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__head { font-family: var(--ui); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.footer__col a { font-size: 15px; }
.footer__col--news { border-left: 1px solid var(--panel-rule); padding-left: 32px; gap: 14px; }
.footer__news-copy { font-size: 15px; line-height: 1.5; color: var(--panel-soft); max-width: 280px; margin: 0; }
.footer__signup { display: flex; border: 1px solid var(--panel-rule-2); height: 44px; }
.footer__signup input {
  flex: 1; min-width: 0; border: 0; background: none; padding: 0 14px;
  font-size: 14px; font-family: var(--serif); color: #FFFFFF;
}
.footer__signup input::placeholder { color: #6E6A64; }
.footer__signup button { width: 52px; background: var(--accent); color: #FFFFFF; font-size: 18px; }
.footer__note { font-family: var(--ui); font-size: 11px; letter-spacing: 0.1em; color: var(--accent); margin: 0; }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--panel-rule); padding-top: 22px;
  font-family: var(--ui); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--panel-mute);
}
.footer__bottom-links { display: flex; gap: 26px; }

/* ---------- 18. COOKIE NOTICE ---------- */

.cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: var(--surface); border-top: 1px solid var(--rule-hard);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.3, 0.8, 0.3, 1);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.10);
}
.cookie.is-visible { transform: none; }
.cookie__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding-block: 18px; }
.cookie__text { flex: 1; min-width: 260px; }
.cookie__eyebrow {
  display: block; font-family: var(--ui); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 6px;
}
.cookie__text p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-soft); }
.cookie__text a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cookie__actions { display: flex; gap: 10px; }
.cookie__actions .btn-outline, .cookie__actions .btn-solid { padding: 12px 24px; }

/* ---------- 19. REVEAL ---------- */

[data-reveal] { opacity: 1; }
.js [data-reveal].is-pending { opacity: 0; transform: translateY(20px); }
.js [data-reveal] { transition: opacity 0.7s cubic-bezier(0.2,0.7,0.2,1), transform 0.7s cubic-bezier(0.2,0.7,0.2,1); }

/* ---------- 20. RESPONSIVE ---------- */

@media (max-width: 1180px) {
  :root { --wrap: 100%; }
  .hero { grid-template-columns: 1fr 330px; }
  .hero__scrim { padding: 40px 32px; }
  .article__top, .article__main, .doc { grid-template-columns: 1fr 260px; gap: 40px; }
  .news__inner { gap: 40px; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .footer__col--news { grid-column: span 3; border-left: 0; padding-left: 0; border-top: 1px solid var(--panel-rule); padding-top: 24px; }
  .contact { grid-template-columns: 1fr 380px; }
  .stats > div { padding: 0 20px; }
}

@media (max-width: 980px) {
  .home-masthead__inner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 16px 16px; }
  .home-masthead__standfirst { text-align: left; max-width: none; }
  .author-head__inner { gap: 24px; }
  .author-head__img { width: 130px; }

  .masthead__strip { display: none; }
  .topnav { display: none; }
  .burger { display: flex; }
  .masthead__bar-inner { min-height: 58px; }
  .masthead__cta { display: none; }
  .wordmark { font-size: 21px; }

  .hero { grid-template-columns: 1fr; }
  .hero__stage { height: 470px; border-right: 0; }
  .hero__dots { display: flex; }
  .hero__rail { display: none; }
  .hero__scrim { padding: 24px 20px 30px; }
  .hero__title { font-size: clamp(28px, 6.4vw, 40px); }
  .hero__dek { display: none; }

  .feature-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .strip__grid { grid-template-columns: 1fr 1fr; }
  .card-grid, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: 1fr 1fr; }
  .triple { grid-template-columns: 1fr; gap: 32px; }
  .news__inner { grid-template-columns: 1fr; padding-block: 56px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 0; padding: 44px 0; }
  .stats > div:nth-child(3) { padding-left: 0; border-left: 0; }

  .cat-head { grid-template-columns: 1fr; gap: 28px; padding: 32px 0 28px; }
  .lead { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }

  .article__top, .article__main, .doc { grid-template-columns: 1fr; gap: 0; }
  .article__toc, .article__rail, .doc__toc { display: none; }
  .article__main { padding-top: 32px; }
  .article__body { max-width: none; }

  .split { grid-template-columns: 1fr; }
  .split__img { border-right: 0; border-bottom: 1px solid var(--rule-hard); }
  .split__img img { min-height: 300px; }
  .split__body { padding: 40px 24px; }

  .contact { grid-template-columns: 1fr; }
  .contact__form-col { border-right: 0; border-bottom: 1px solid var(--rule-hard); padding: 40px 24px; }
  .contact__side { padding: 40px 24px; }

  .notfound__inner { grid-template-columns: 1fr; gap: 24px; padding-block: 48px; }
  .page-head { padding: 40px 0 32px; }
  .page-head--split { align-items: flex-start; gap: 24px; }
  .page-head__stamp { text-align: left; }

  .footer { padding: 40px 0 24px; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__meta { text-align: left; padding-bottom: 0; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 26px 20px; padding: 26px 0; }
  .footer__col--news { grid-column: span 2; }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .wrap { padding-inline: 16px; }
  .block { padding: 36px 0 4px; }
  .section-head { margin-bottom: 22px; }

  .feature-grid { grid-template-columns: 1fr; gap: 28px; }
  .masonry { columns: 1; }
  .strip__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .card-grid, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; gap: 28px; padding: 28px 0; }
  .team { grid-template-columns: 1fr; }

  .article__meta { align-items: flex-start; flex-direction: column; gap: 14px; }
  .article__hero img { aspect-ratio: 4 / 3; }
  .article-figure img { aspect-ratio: 4 / 3; }
  .article__body .dropcap::first-letter { font-size: 62px; padding-right: 10px; }
  .author-box { flex-direction: column; gap: 16px; }

  .form__row { grid-template-columns: 1fr; gap: 0; }
  .quote-card { padding: 28px 22px; }
  .quote-card blockquote { font-size: 24px; }

  .cookie__inner { gap: 14px; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn-outline, .cookie__actions .btn-solid { flex: 1; text-align: center; }

  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .pager__links { gap: 6px; }
}

/* ---------- 21. MOTION / PRINT ---------- */

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

@media print {
  .masthead, .footer, .cookie, .article__toc, .article__rail, .share, .read-progress, .drawer { display: none !important; }
  body { background: #fff; color: #000; }
  .article__body { max-width: none; }
}
