:root {
  --ink: #0a0b0f;
  --ink-soft: #111218;
  --paper: #eee8dc;
  --paper-dim: #c6beae;
  --muted: #8d877c;
  --coral: #eb654f;
  --coral-dark: #bf4939;
  --gold: #c79a59;
  --line: rgba(238, 232, 220, .14);
  --serif: "Noto Serif SC", "Songti SC", serif;
  --sans: "Noto Sans SC", "PingFang SC", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, .34);
}

::selection { background: var(--coral); color: #fff; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: .065;
  background-image: url("../assets/paper-dark.webp");
  background-size: 520px;
  mix-blend-mode: screen;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  padding: 0 4.2vw;
  border-bottom: 1px solid rgba(238, 232, 220, .09);
}

.brand { display: inline-flex; align-items: center; gap: 14px; justify-self: start; }
.brand-mark { width: 34px; height: 34px; color: var(--coral); }
.brand-copy { display: grid; gap: 1px; line-height: 1.1; }
.brand-copy b { font-family: var(--serif); font-size: 17px; letter-spacing: .18em; }
.brand-copy small { color: var(--muted); font-size: 8px; font-weight: 500; letter-spacing: .24em; }

.nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.nav a {
  position: relative;
  padding: 30px 0 27px;
  color: var(--paper-dim);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  transition: color .25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--coral);
  transform: translateX(-50%);
  transition: width .25s ease;
}
.nav a:hover, .nav a.is-active { color: var(--paper); }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 22px;
  padding: 9px 9px 9px 18px;
  border: 1px solid rgba(238, 232, 220, .25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  transition: border-color .25s ease, background .25s ease;
}
.header-cta i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-style: normal;
  transition: transform .25s ease;
}
.header-cta:hover { border-color: var(--coral); background: rgba(235, 101, 79, .08); }
.header-cta:hover i { transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(390px, 1.1fr);
  align-items: center;
  min-height: max(760px, 100svh);
  overflow: clip;
  padding: 130px 6vw 86px 8.5vw;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("../assets/bg.webp") 57% center / cover no-repeat;
  opacity: .82;
  filter: saturate(.8) contrast(1.08);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 67% 42%, transparent 0 19%, rgba(10, 11, 15, .12) 40%, rgba(10, 11, 15, .88) 86%),
    linear-gradient(90deg, rgba(10, 11, 15, .96) 0%, rgba(10, 11, 15, .64) 39%, rgba(10, 11, 15, .08) 70%, rgba(10, 11, 15, .62) 100%),
    linear-gradient(0deg, rgba(10, 11, 15, .72), transparent 28%, transparent 75%, rgba(10, 11, 15, .5));
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(199, 154, 89, .16);
  border-radius: 50%;
  pointer-events: none;
}
.orbit::before, .orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(199, 154, 89, .75);
}
.orbit::before { left: -3px; }
.orbit::after { right: -3px; }
.orbit-one { width: 620px; height: 620px; right: 1.5vw; top: 13%; transform: rotate(16deg); }
.orbit-two { width: 510px; height: 510px; right: 5.2vw; top: 20%; transform: rotate(71deg); opacity: .55; }

.hero-copy { position: relative; z-index: 5; max-width: 680px; padding-top: 22px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 27px;
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .24em;
}
.eyebrow span { color: var(--coral); }
.eyebrow i { width: 32px; height: 1px; background: var(--gold); }

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.5vw, 105px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.12;
}
.hero h1 em { color: var(--coral); font-weight: 500; }

.lede {
  max-width: 550px;
  margin: 30px 0 0;
  padding-left: 20px;
  border-left: 1px solid rgba(199, 154, 89, .56);
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.95;
}

.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  min-height: 54px;
  padding: 0 10px 0 24px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  box-shadow: 0 12px 35px rgba(235, 101, 79, .18);
  transition: background .25s ease, transform .25s ease;
}
.action-primary svg {
  width: 36px;
  height: 36px;
  padding: 9px;
  border-radius: 50%;
  background: rgba(10, 11, 15, .18);
  transition: transform .25s ease;
}
.action-primary:hover { background: #f2725c; transform: translateY(-2px); }
.action-primary:hover svg { transform: translateX(3px); }
.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(238, 232, 220, .35);
  color: var(--paper-dim);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
}
.text-link span { color: var(--coral); margin-left: 6px; }

.hero-stats { display: flex; gap: 0; margin: 60px 0 0; }
.hero-stats div { min-width: 108px; padding-right: 34px; margin-right: 34px; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border: 0; }
.hero-stats dt { color: var(--gold); font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1; }
.hero-stats dd { margin: 8px 0 0; color: var(--muted); font-size: 9px; font-weight: 500; letter-spacing: .18em; }

.card-column {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: min(100%, 590px);
  padding-left: 4vw;
}
.card-index {
  align-self: flex-end;
  margin: 0 6% -10px 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}
.card-index span { color: var(--coral); }
.card-stage { position: relative; width: clamp(300px, 27.5vw, 455px); }
.card-mover { position: relative; perspective: 1400px; will-change: transform; }
.card-shadow {
  position: absolute;
  inset: 3.5% 4.5%;
  border-radius: 28px;
  background: rgba(2, 3, 6, .64);
  filter: blur(27px);
  transform: translate3d(0, 22px, 0);
  will-change: transform, opacity;
  pointer-events: none;
}
.card-tilt { position: relative; transform-style: preserve-3d; will-change: transform; }
.card-obj {
  position: relative;
  width: 100%;
  aspect-ratio: 1329 / 2048;
  filter: drop-shadow(0 7px 15px rgba(0, 0, 0, .48));
  backface-visibility: hidden;
}
.card-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  filter: drop-shadow(0 7px 15px rgba(0, 0, 0, .48));
  backface-visibility: hidden;
}
.card-obj img, .card-obj canvas, .card-back img, .card-back canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.card-obj.is-webgl img, .card-back.is-webgl img { visibility: hidden; }

.card-caption {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: min(85%, 390px);
  margin-top: 21px;
}
.caption-line { width: 44px; height: 1px; margin-top: 8px; background: var(--coral); flex: none; }
.card-caption p { margin: 0; color: var(--gold); font-size: 9px; font-weight: 500; letter-spacing: .2em; }
.card-caption blockquote { margin: 5px 0 0; color: var(--paper-dim); font-family: var(--serif); font-size: 15px; }

.card-fly { position: fixed; z-index: 80; perspective: 1400px; pointer-events: none; }
.card-fly-inner { position: absolute; inset: 0; transform-style: preserve-3d; will-change: transform; }
.fly-face { position: absolute; inset: 0; filter: drop-shadow(0 5px 12px rgba(0,0,0,.4)); backface-visibility: hidden; }
.fly-face.fly-back { transform: rotateY(180deg); }
.fly-face img, .fly-face canvas { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }

.scroll-note {
  position: absolute;
  right: 3vw;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .25em;
  writing-mode: vertical-rl;
}
.scroll-note span { width: 1px; height: 44px; background: linear-gradient(var(--coral), transparent); }

.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--coral); color: #130e0d; }
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 12px 0;
  animation: marquee 30s linear infinite;
}
.ticker span { font-family: var(--serif); font-size: 12px; font-weight: 900; letter-spacing: .2em; }
.ticker i { font-style: normal; font-size: 10px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-shell { padding: 120px clamp(28px, 7.5vw, 120px); }
.kicker { margin: 0 0 16px; color: var(--coral); font-size: 9px; font-weight: 600; letter-spacing: .28em; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 80px; margin-bottom: 60px; }
.section-heading h2, .now h2, .essay h2, .about h2, .contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.2;
  letter-spacing: -.045em;
}
.section-heading > p { max-width: 500px; margin: 0 0 8px; color: var(--muted); font-family: var(--serif); font-size: 16px; line-height: 2; }

.articles { background: #0d0e13; }
.article-list { border-top: 1px solid var(--line); }
.article-feature {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 50px;
  min-height: 390px;
  padding: 54px 48px 54px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.article-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 0 45%, rgba(235, 101, 79, .1));
  opacity: 0;
  transition: opacity .35s ease;
}
.article-feature:hover::before { opacity: 1; }
.article-no { color: var(--coral); font-family: var(--serif); font-size: 13px; font-weight: 600; }
.article-meta { display: flex; align-items: center; gap: 15px; margin: 0 0 23px; color: var(--muted); font-size: 9px; font-weight: 500; letter-spacing: .16em; }
.article-meta span:first-child { color: var(--gold); }
.article-body { max-width: 740px; }
.article-body h3 { margin: 0; font-family: var(--serif); font-size: clamp(35px, 4.2vw, 64px); line-height: 1.3; letter-spacing: -.04em; }
.article-body > p { max-width: 560px; margin: 28px 0 0; color: var(--muted); font-size: 14px; }
.article-arrow { align-self: start; justify-self: end; color: var(--paper-dim); font-size: 26px; transition: color .25s ease, transform .25s ease; }
.article-feature:hover .article-arrow, .article-row:hover .article-arrow { color: var(--coral); transform: translate(4px, -4px); }

.feature-glyph { position: absolute; right: 6%; bottom: -35%; z-index: -1; width: 360px; aspect-ratio: 1; border: 1px solid rgba(199,154,89,.15); border-radius: 50%; }
.feature-glyph::before, .feature-glyph::after, .feature-glyph span, .feature-glyph i { content: ""; position: absolute; border: 1px solid rgba(199,154,89,.15); border-radius: 50%; }
.feature-glyph::before { inset: 18%; }
.feature-glyph::after { inset: 38%; background: var(--coral); opacity: .75; }
.feature-glyph span { inset: -8%; border-style: dashed; animation: spin 30s linear infinite; }
.feature-glyph i { inset: 28% -10%; border-left-color: transparent; border-right-color: transparent; }
.feature-glyph b { position: absolute; inset: 44% 0 auto; z-index: 2; color: #1a0b09; font-family: var(--serif); font-size: 11px; line-height: 1.1; text-align: center; }
@keyframes spin { to { transform: rotate(360deg); } }

.article-row {
  display: grid;
  grid-template-columns: 80px 150px minmax(0, 1fr) 70px 50px;
  align-items: center;
  gap: 20px;
  min-height: 105px;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, padding .25s ease;
}
.article-row:hover { padding-inline: 15px; background: rgba(238, 232, 220, .025); }
.row-topic { color: var(--gold); font-size: 10px; font-weight: 500; letter-spacing: .16em; }
.row-title { font-family: var(--serif); font-size: clamp(18px, 2vw, 25px); font-weight: 600; }
.article-row time { color: var(--muted); font-size: 10px; letter-spacing: .1em; }

.now { background: var(--paper); color: #17161a; }
.now-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 150px); }
.now-intro { position: sticky; top: 80px; align-self: start; }
.now h2 em { color: var(--coral-dark); font-weight: 500; }
.now-intro > p:last-child { max-width: 410px; margin: 30px 0 0; color: #68625a; font-family: var(--serif); line-height: 2; }
.now-cards { border-top: 1px solid rgba(23, 22, 26, .18); }
.now-card { position: relative; min-height: 225px; padding: 35px 70px 35px 0; border-bottom: 1px solid rgba(23, 22, 26, .18); }
.now-icon { position: absolute; top: 35px; right: 5px; color: var(--coral-dark); font-size: 34px; }
.now-label { margin: 0 0 16px; color: var(--coral-dark); font-size: 9px; font-weight: 600; letter-spacing: .22em; }
.now-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); line-height: 1.4; }
.now-card > p:last-child { max-width: 430px; margin: 17px 0 0; color: #777066; font-size: 13px; }

.essay { background: #090a0e; }
.essay-heading { display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: start; margin-bottom: 65px; }
.essay-heading h2 { max-width: 800px; }
.essay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.essay-card { scroll-margin-top: 90px; min-height: 430px; padding: clamp(30px, 4vw, 58px); background: var(--ink-soft); }
.essay-card h3 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(26px, 2.8vw, 38px); line-height: 1.45; }
.essay-card > p:not(.article-meta), .essay-card li { color: var(--muted); font-size: 14px; }
.essay-card ul { margin: 26px 0 0; padding: 23px 0 0; border-top: 1px solid var(--line); list-style: none; }
.essay-card li { position: relative; padding: 5px 0 5px 20px; }
.essay-card li::before { content: "✦"; position: absolute; left: 0; color: var(--coral); font-size: 8px; }
.essay-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 120px); min-height: 330px; }
.essay-card-wide p { margin-top: 0; }

.about { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 10vw; min-height: 720px; background: #0d0e13; }
.about-mark { position: relative; display: grid; width: min(35vw, 460px); aspect-ratio: 1; place-items: center; border: 1px solid rgba(199, 154, 89, .26); border-radius: 50%; }
.about-mark::before, .about-mark::after { content: ""; position: absolute; inset: 11%; border: 1px solid rgba(199, 154, 89, .2); border-radius: 50%; }
.about-mark::after { inset: 31%; background: var(--coral); border: 0; box-shadow: 0 0 90px rgba(235,101,79,.22); }
.about-mark span { z-index: 2; color: var(--ink); font-family: var(--serif); font-size: clamp(70px, 10vw, 145px); font-weight: 900; line-height: 1; }
.about-mark i { position: absolute; z-index: 3; top: 12%; right: 9%; color: var(--gold); font-size: 28px; font-style: normal; }
.about-copy { max-width: 650px; }
.about h2 em { color: var(--coral); font-weight: 500; }
.about-copy > p:not(.kicker) { margin: 32px 0 0; color: var(--muted); font-family: var(--serif); font-size: 16px; line-height: 2.1; }
.about-links { display: flex; gap: 35px; margin-top: 35px; }
.about-links a { border-bottom: 1px solid var(--coral); color: var(--paper-dim); font-size: 11px; font-weight: 500; letter-spacing: .1em; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; background: var(--coral); color: #160c0a; }
.contact .kicker { color: rgba(22,12,10,.58); }
.contact-copy > p:last-child { max-width: 480px; margin: 27px 0 0; color: rgba(22,12,10,.7); }
.report-form { display: grid; gap: 22px; }
.report-form label { display: grid; gap: 8px; font-size: 10px; font-weight: 600; letter-spacing: .14em; }
.report-form input, .report-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(22,12,10,.38);
  border-radius: 0;
  outline: 0;
  padding: 10px 0 13px;
  background: transparent;
  color: #160c0a;
  font-family: var(--serif);
  font-size: 15px;
}
.report-form input:focus, .report-form textarea:focus { border-color: #160c0a; }
.report-form input::placeholder, .report-form textarea::placeholder { color: rgba(22,12,10,.42); }
.report-form textarea { min-height: 85px; resize: vertical; }
.report-form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 230px);
  margin-top: 5px;
  border: 1px solid #160c0a;
  border-radius: 999px;
  padding: 13px 18px 13px 22px;
  background: #160c0a;
  color: var(--paper);
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  transition: transform .25s ease, background .25s ease;
}
.report-form button:hover { transform: translateY(-2px); background: #2a1511; }
.report-form button span { font-size: 18px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 44px;
  align-items: end;
  gap: 40px;
  padding: 55px 5vw;
  border-top: 1px solid var(--line);
  background: #07080b;
}
.footer-brand { display: grid; }
.footer-brand span { font-family: var(--serif); font-size: 24px; font-weight: 700; letter-spacing: .14em; }
.footer-brand small { margin-top: 5px; color: var(--muted); font-size: 8px; letter-spacing: .25em; }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 25px; color: var(--muted); font-size: 9px; font-weight: 500; letter-spacing: .1em; }
.footer-meta a:hover { color: var(--paper); }
.back-top { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--coral); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero { grid-template-columns: .9fr 1.1fr; padding-left: 5vw; }
  .hero h1 { font-size: clamp(56px, 7.4vw, 82px); }
  .card-stage { width: clamp(300px, 35vw, 410px); }
  .orbit-one { right: -12vw; }
  .orbit-two { right: -7vw; }
  .section-shell { padding-inline: 6vw; }
  .feature-glyph { right: 0; }
}

@media (max-width: 780px) {
  .site-header { position: absolute; min-height: 72px; padding-inline: 22px; }
  .brand-copy small, .header-cta span { display: none; }
  .header-cta { padding: 6px; border: 0; }
  .brand-mark { width: 30px; height: 30px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 115px 24px 75px; }
  .hero-copy { order: 1; max-width: none; padding: 0; }
  .hero h1 { font-size: clamp(49px, 15vw, 75px); }
  .lede { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-stats { margin-top: 42px; }
  .hero-stats div { min-width: 0; flex: 1; padding-right: 14px; margin-right: 14px; }
  .card-column { order: 2; width: 100%; padding: 75px 0 0; }
  .card-stage { width: min(76vw, 370px); }
  .card-index { margin-right: 2%; }
  .orbit-one { top: 46%; right: -42%; width: 620px; height: 620px; }
  .orbit-two { top: 50%; right: -28%; }
  .scroll-note { display: none; }
  .section-shell { padding: 82px 24px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .section-heading h2, .now h2, .essay h2, .about h2, .contact h2 { font-size: clamp(39px, 11vw, 58px); }
  .article-feature { grid-template-columns: 42px 1fr 30px; min-height: 390px; padding: 35px 0; }
  .article-body h3 { font-size: clamp(31px, 9vw, 48px); }
  .feature-glyph { right: -42%; bottom: -25%; width: 320px; opacity: .6; }
  .article-row { grid-template-columns: 38px 1fr 28px; gap: 12px; padding: 24px 0; }
  .article-row:hover { padding-inline: 5px; }
  .row-topic, .article-row time { display: none; }
  .row-title { font-size: 18px; }
  .now-grid, .about, .contact { grid-template-columns: 1fr; gap: 60px; }
  .now-intro { position: static; }
  .essay-heading { grid-template-columns: 1fr; gap: 20px; }
  .essay-grid { grid-template-columns: 1fr; }
  .essay-card { min-height: 0; }
  .essay-card-wide { grid-column: auto; grid-template-columns: 1fr; gap: 8px; }
  .about { min-height: 0; }
  .about-mark { width: min(90vw, 420px); justify-self: center; }
  .about-copy { order: -1; }
  .site-footer { grid-template-columns: 1fr 40px; align-items: start; }
  .footer-meta { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; }
  .back-top { grid-column: 2; grid-row: 1; }
}

@media (max-width: 430px) {
  .brand-copy b { font-size: 15px; }
  .eyebrow { gap: 9px; letter-spacing: .14em; }
  .eyebrow i { width: 18px; }
  .hero-stats dd { letter-spacing: .08em; }
  .article-feature { grid-template-columns: 30px 1fr 24px; }
  .article-meta { flex-wrap: wrap; gap: 8px 12px; }
  .now-card { padding-right: 45px; }
  .about-links { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-meta { flex-direction: column; gap: 9px; }
}

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