:root {
  --ink: #0b0b0a;
  --ink-soft: #11110f;
  --bone: #efe9dc;
  --bone-dim: #b8b1a4;
  --ember: #ff4d16;
  --ember-hot: #ff6a2d;
  --line: rgba(239, 233, 220, 0.18);
  --header-h: 84px;
  --gutter: clamp(22px, 4.2vw, 76px);
  --display: "Arial Narrow", "Aptos Display", "Segoe UI", sans-serif;
  --body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --hero-shift: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { max-width: 100%; display: block; }
::selection { color: var(--ink); background: var(--ember); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--bone);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, height 240ms ease;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(11, 11, 10, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; position: relative; z-index: 3; }
.brand img { width: 38px; height: 38px; }
.brand-word {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.brand-word span { color: var(--ember); }
.primary-nav { display: flex; align-items: center; gap: clamp(22px, 2.8vw, 48px); }
.primary-nav a {
  position: relative;
  color: rgba(239, 233, 220, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}
.primary-nav a:hover { color: var(--bone); }
.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.primary-nav .nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(239, 233, 220, 0.45);
  color: var(--bone);
}
.primary-nav .nav-cta:hover { border-color: var(--ember); background: var(--ember); color: var(--ink); }
.menu-toggle { display: none; border: 0; background: none; cursor: pointer; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}
.hero-media, .hero-scrim, .hero-grain { position: absolute; inset: 0; }
.hero-media { z-index: -4; transform: translate3d(0, var(--hero-shift), 0) scale(1.05); }
.hero-media img { width: 100%; height: 112%; object-fit: cover; object-position: center center; }
.hero-scrim {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(6, 6, 5, 0.92) 0%, rgba(6, 6, 5, 0.68) 36%, rgba(6, 6, 5, 0.05) 70%),
    linear-gradient(0deg, var(--ink) 0%, transparent 30%),
    linear-gradient(180deg, rgba(4, 4, 3, 0.56) 0%, transparent 30%);
}
.hero-grain {
  z-index: -2;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(440px circle at var(--pointer-x, 70%) var(--pointer-y, 42%), rgba(255, 77, 22, 0.09), transparent 68%);
}
.hero-copy { width: min(880px, 74vw); padding: 0 var(--gutter) clamp(108px, 13vh, 148px); }
.eyebrow, .section-label {
  margin: 0;
  color: var(--bone-dim);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-kicker { display: flex; align-items: center; gap: 10px; opacity: 0; animation: rise 650ms 180ms ease forwards; }
.hero-kicker span { width: 22px; height: 2px; background: var(--ember); box-shadow: 0 0 18px var(--ember); }
.hero h1 {
  margin: 20px 0 24px;
  font-family: var(--display);
  font-size: clamp(58px, 7.5vw, 118px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.79;
  text-transform: uppercase;
}
.hero h1 span, .hero h1 em { display: block; opacity: 0; transform: translateY(28px); animation: heroLine 800ms cubic-bezier(.2,.8,.2,1) forwards; }
.hero h1 span { animation-delay: 260ms; }
.hero h1 em { color: transparent; -webkit-text-stroke: 1.5px rgba(239, 233, 220, 0.7); font-style: normal; animation-delay: 360ms; }
.hero-deck { max-width: 470px; margin: 0; color: rgba(239, 233, 220, 0.75); font-size: clamp(17px, 1.4vw, 21px); opacity: 0; animation: rise 650ms 520ms ease forwards; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; opacity: 0; animation: rise 650ms 640ms ease forwards; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button-hot { color: var(--ink); background: var(--ember); border-color: var(--ember); }
.button-hot:hover { background: var(--bone); border-color: var(--bone); }
.text-link { font-size: 12px; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; }
.text-link span { color: var(--ember); display: inline-block; transition: transform 180ms ease; }
.text-link:hover span { transform: translate(4px, -4px); }
.hero-aside {
  position: absolute;
  right: var(--gutter);
  bottom: 116px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(239, 233, 220, 0.52);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}
.hero-aside i { width: 1px; height: 42px; background: rgba(239, 233, 220, 0.3); }
.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 26px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(239, 233, 220, 0.36);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue i { flex: 1; height: 1px; background: rgba(239, 233, 220, 0.18); overflow: hidden; }
.scroll-cue i::after { content: ""; display: block; width: 20%; height: 100%; background: var(--ember); animation: scan 2.6s ease-in-out infinite; }

.section-pad { padding: clamp(96px, 14vw, 220px) var(--gutter); }
.section-label { display: flex; gap: 22px; align-items: center; }
.section-label span { color: var(--ember); }
.signal-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.65fr); gap: clamp(50px, 10vw, 180px); align-items: end; margin-top: clamp(58px, 9vw, 130px); }
.display-copy { max-width: 1050px; margin: 0; font-family: var(--display); font-size: clamp(46px, 6.6vw, 105px); font-weight: 850; letter-spacing: -0.06em; line-height: 0.92; text-transform: uppercase; }
.display-copy strong { display: block; color: var(--ember); font-weight: inherit; }
.signal-body { max-width: 470px; padding-bottom: 6px; }
.signal-body > p:first-child { margin: 0; color: var(--bone); font-size: clamp(18px, 1.5vw, 23px); line-height: 1.5; }
.micro-copy { margin: 30px 0 0; padding-top: 26px; border-top: 1px solid var(--line); color: var(--bone-dim); font-size: 13px; }
.signal-rule { margin-top: clamp(80px, 12vw, 160px); height: 1px; background: var(--line); overflow: hidden; }
.signal-rule span { display: block; width: 26%; height: 100%; background: var(--ember); transform: translateX(var(--rule-x, 20vw)); transition: transform 80ms linear; }

.rhythm { display: grid; grid-template-columns: 0.78fr 1.22fr; background: var(--bone); color: var(--ink); border-top: 1px solid #2b2925; }
.rhythm-sticky { position: sticky; top: 0; min-height: 100svh; padding: clamp(92px, 10vw, 150px) var(--gutter); display: flex; flex-direction: column; justify-content: center; background: var(--ember); overflow: hidden; }
.rhythm-sticky::after { content: "EA"; position: absolute; right: -0.09em; bottom: -0.22em; color: rgba(11,11,10,.07); font-family: var(--display); font-size: min(47vw, 560px); font-weight: 900; letter-spacing: -0.13em; line-height: 1; }
.rhythm .section-label { position: relative; z-index: 1; color: rgba(11,11,10,.62); }
.rhythm .section-label span { color: var(--ink); }
.rhythm h2 { position: relative; z-index: 1; margin: 50px 0 28px; font-family: var(--display); font-size: clamp(52px, 6vw, 92px); font-weight: 900; letter-spacing: -0.065em; line-height: 0.88; text-transform: uppercase; }
.rhythm-intro { position: relative; z-index: 1; max-width: 360px; margin: 0; font-size: 17px; }
.sessions { padding: 9vw var(--gutter); }
.session { min-height: 300px; display: grid; grid-template-columns: 70px 1fr 42px; gap: 28px; align-items: center; border-bottom: 1px solid rgba(11,11,10,.22); transition: padding 220ms ease; }
.session:first-child { border-top: 1px solid rgba(11,11,10,.22); }
.session:hover { padding-left: 14px; }
.session-number { font-family: var(--display); font-weight: 900; font-size: 14px; }
.session-time { margin: 0 0 14px; color: rgba(11,11,10,.56); font-size: 10px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.session h3 { margin: 0; font-family: var(--display); font-size: clamp(36px, 4vw, 64px); letter-spacing: -.055em; line-height: .95; text-transform: uppercase; }
.session p:last-child { max-width: 520px; margin: 18px 0 0; color: rgba(11,11,10,.7); }
.session-icon { font-size: 30px; transition: transform 260ms ease; }
.session:hover .session-icon { color: var(--ember); transform: rotate(45deg) scale(1.15); }

.manifesto { position: relative; min-height: 90svh; display: flex; align-items: center; overflow: hidden; }
.manifesto-art { position: absolute; inset: 0; }
.manifesto-art img { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; transform: scale(1.04); filter: saturate(.7) contrast(1.08); }
.manifesto::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,10,.98) 0%, rgba(11,11,10,.9) 40%, rgba(11,11,10,.16) 78%), linear-gradient(0deg, rgba(11,11,10,.64), transparent 50%); }
.manifesto-copy { position: relative; z-index: 1; width: min(760px, 72vw); margin-left: var(--gutter); padding: 120px 0; }
.manifesto blockquote { margin: 34px 0; font-family: var(--display); font-size: clamp(54px, 7vw, 110px); font-weight: 900; letter-spacing: -.065em; line-height: .86; text-transform: uppercase; }
.manifesto blockquote em { color: var(--ember); font-style: normal; }
.manifesto-copy > p:last-child { max-width: 540px; color: rgba(239,233,220,.66); font-size: 17px; }

.notes { background: var(--ink-soft); }
.notes-heading { display: grid; grid-template-columns: 1.2fr .65fr; gap: 80px; align-items: end; margin-bottom: clamp(60px, 8vw, 112px); }
.notes-heading h2 { max-width: 800px; margin: 44px 0 0; font-family: var(--display); font-size: clamp(48px, 6vw, 92px); letter-spacing: -.06em; line-height: .9; text-transform: uppercase; }
.notes-heading > p { max-width: 430px; margin: 0; color: var(--bone-dim); }
.note { min-height: 160px; display: grid; grid-template-columns: 100px 1fr 60px; align-items: center; gap: 30px; border-top: 1px solid var(--line); transition: color 180ms ease, padding 200ms ease, background 180ms ease; }
.note:last-child { border-bottom: 1px solid var(--line); }
.note:hover { padding: 0 22px; color: var(--ink); background: var(--ember); }
.note-index { color: var(--bone-dim); font-size: 10px; font-weight: 750; letter-spacing: .15em; }
.note:hover .note-index, .note:hover .note p { color: rgba(11,11,10,.62); }
.note p { margin: 0 0 10px; color: var(--bone-dim); font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.note h3 { margin: 0; font-family: var(--display); font-size: clamp(28px, 3.2vw, 50px); letter-spacing: -.045em; line-height: 1; text-transform: uppercase; }
.note-arrow { justify-self: end; font-size: 26px; transition: transform 180ms ease; }
.note:hover .note-arrow { transform: translate(6px,-6px); }

.gather { position: relative; min-height: 86svh; padding: 130px var(--gutter); display: grid; place-items: center; overflow: hidden; text-align: center; }
.gather::before { content: ""; position: absolute; width: min(85vw, 1000px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,77,22,.11), transparent 62%); }
.gather-copy { position: relative; z-index: 2; }
.gather h2 { margin: 36px 0 26px; font-family: var(--display); font-size: clamp(56px, 8vw, 126px); font-weight: 900; letter-spacing: -.075em; line-height: .82; text-transform: uppercase; }
.gather h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.4px rgba(239,233,220,.58); }
.gather-copy > p:not(.eyebrow) { max-width: 530px; margin: 0 auto 36px; color: var(--bone-dim); font-size: 18px; }
.gather-orbit, .gather-orbit i { position: absolute; border: 1px solid rgba(239,233,220,.1); border-radius: 50%; }
.gather-orbit { width: min(74vw, 920px); aspect-ratio: 1; animation: turn 28s linear infinite; }
.gather-orbit::before { content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 28px var(--ember); }
.gather-orbit i:nth-child(1) { inset: 12%; }
.gather-orbit i:nth-child(2) { inset: 27%; }
.gather-orbit i:nth-child(3) { inset: 42%; }

.site-footer { min-height: 170px; padding: 42px var(--gutter); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; border-top: 1px solid var(--line); }
.footer-brand { justify-self: start; }
.site-footer > p { margin: 0; color: var(--bone-dim); font-size: 12px; text-align: center; }
.footer-meta { justify-self: end; display: flex; flex-direction: column; gap: 4px; color: rgba(239,233,220,.42); font-size: 10px; letter-spacing: .1em; text-align: right; text-transform: uppercase; }

.error-page { min-height: 100svh; padding: var(--gutter); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: radial-gradient(circle at 74% 30%, rgba(255,77,22,.14), transparent 34%), var(--ink); }
.error-page img { margin-bottom: 48px; }
.error-page h1 { margin: 20px 0; font-family: var(--display); font-size: clamp(72px, 15vw, 190px); font-weight: 900; letter-spacing: -.08em; line-height: .76; text-transform: uppercase; }
.error-page h1 em { color: var(--ember); font-style: normal; }
.error-page > p:not(.eyebrow) { margin: 0 0 32px; color: var(--bone-dim); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes heroLine { to { opacity: 1; transform: translateY(0); } }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes scan { 0% { transform: translateX(-100%); } 100% { transform: translateX(600%); } }
@keyframes turn { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .menu-toggle { position: relative; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 8px 0 8px 12px; }
  .menu-label { font-size: 10px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
  .menu-bars { width: 24px; display: grid; gap: 6px; }
  .menu-bars i { height: 1px; background: var(--bone); transition: transform 180ms ease; }
  .menu-open .menu-bars i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-bars i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; padding: 110px var(--gutter) 60px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; background: rgba(11,11,10,.98); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity 200ms ease, transform 200ms ease, visibility 200ms; }
  .menu-open .primary-nav { visibility: visible; opacity: 1; transform: translateY(0); }
  .primary-nav a { width: 100%; padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: clamp(28px, 8vw, 48px); letter-spacing: -.04em; }
  .primary-nav .nav-cta { margin-top: 24px; padding: 18px; font-family: var(--body); font-size: 11px; letter-spacing: .12em; text-align: center; }
  .hero-copy { width: min(690px, 88vw); }
  .signal-grid, .notes-heading { grid-template-columns: 1fr; gap: 48px; }
  .rhythm { grid-template-columns: 1fr; }
  .rhythm-sticky { position: relative; min-height: 74svh; }
  .sessions { padding-top: 0; }
  .manifesto-copy { width: min(680px, 82vw); }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .brand img { width: 34px; height: 34px; }
  .brand-word { font-size: 15px; }
  .hero { min-height: 100svh; }
  .hero-media img { object-position: 67% center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(6,6,5,.91), rgba(6,6,5,.18)), linear-gradient(0deg, var(--ink), transparent 46%), linear-gradient(180deg, rgba(4,4,3,.48), transparent 25%); }
  .hero-copy { width: 100%; padding-bottom: 105px; }
  .hero h1 { margin-top: 16px; font-size: clamp(52px, 18vw, 82px); line-height: .83; }
  .hero h1 em { -webkit-text-stroke-width: 1px; }
  .hero-deck { max-width: 340px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 28px; }
  .hero-aside { display: none; }
  .scroll-cue { bottom: 18px; }
  .section-pad { padding-top: 104px; padding-bottom: 104px; }
  .signal-grid { margin-top: 58px; }
  .display-copy { font-size: clamp(44px, 14vw, 68px); }
  .rhythm-sticky { min-height: 620px; }
  .rhythm h2 { margin-top: 42px; font-size: clamp(50px, 16vw, 76px); }
  .sessions { padding: 0 var(--gutter) 78px; }
  .session { min-height: 255px; grid-template-columns: 32px 1fr 24px; gap: 14px; }
  .session:hover { padding-left: 0; }
  .session p:last-child { font-size: 14px; }
  .manifesto { min-height: 760px; align-items: end; }
  .manifesto-art img { object-position: 73% center; }
  .manifesto::after { background: linear-gradient(0deg, rgba(11,11,10,.98) 0%, rgba(11,11,10,.74) 62%, rgba(11,11,10,.12) 100%); }
  .manifesto-copy { width: auto; margin: 0; padding: 120px var(--gutter) 80px; }
  .manifesto blockquote { font-size: clamp(48px, 15vw, 72px); }
  .notes-heading { gap: 30px; }
  .notes-heading h2 { font-size: clamp(48px, 14vw, 70px); }
  .note { min-height: 138px; grid-template-columns: 42px 1fr 28px; gap: 12px; }
  .note:hover { padding: 0 8px; }
  .note h3 { font-size: 25px; }
  .gather { min-height: 760px; padding: 100px var(--gutter); }
  .gather h2 { font-size: clamp(50px, 16vw, 78px); }
  .gather-orbit { width: 140vw; }
  .site-footer { grid-template-columns: 1fr; padding: 52px var(--gutter); text-align: left; }
  .site-footer > p { text-align: left; }
  .footer-meta { justify-self: start; text-align: left; }
}

@media (max-width: 620px) and (max-height: 720px) {
  .hero-copy { padding-bottom: 48px; }
  .hero h1 { margin: 12px 0 16px; font-size: clamp(44px, 14.2vw, 54px); line-height: .81; }
  .hero-deck { max-width: 315px; font-size: 14px; line-height: 1.4; }
  .hero-actions { flex-direction: row; align-items: center; gap: 16px; margin-top: 20px; }
  .hero-actions .button { min-height: 46px; gap: 18px; padding: 0 16px; font-size: 10px; }
  .hero-actions .text-link { font-size: 10px; }
  .scroll-cue { display: none; }
}

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

.article-body { background: var(--ink); }
.article-nav { height: 84px; padding: 0 var(--gutter); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.article-back { font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; transition: color 180ms ease; }
.article-back:hover { color: var(--ember); }
.article-hero { position: relative; min-height: 72svh; padding: clamp(110px, 14vw, 190px) var(--gutter) 90px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; background: radial-gradient(circle at 78% 34%, rgba(255,77,22,.18), transparent 28%), linear-gradient(120deg, #0b0b0a 15%, #18100d 100%); }
.article-hero::after { content: "N"; position: absolute; z-index: 0; right: -.05em; bottom: -.37em; color: rgba(239,233,220,.035); font-family: var(--display); font-size: min(75vw, 900px); font-weight: 900; line-height: 1; }
.article-hero > * { position: relative; z-index: 1; }
.article-hero .eyebrow { display: flex; gap: 22px; }
.article-hero .eyebrow span { color: var(--ember); }
.article-hero h1 { max-width: 1200px; margin: 34px 0 30px; font-family: var(--display); font-size: clamp(66px, 9vw, 146px); font-weight: 900; letter-spacing: -.075em; line-height: .78; text-transform: uppercase; }
.article-hero h1 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px rgba(239,233,220,.68); }
.article-deck { max-width: 600px; margin: 0; color: var(--bone-dim); font-size: clamp(18px, 1.6vw, 23px); }
.article-hero-quiet { background: radial-gradient(circle at 82% 26%, rgba(255,77,22,.1), transparent 25%), linear-gradient(135deg, #0b0b0a 20%, #151512 100%); }
.article-hero-warm { background: radial-gradient(circle at 77% 40%, rgba(255,77,22,.24), transparent 32%), linear-gradient(120deg, #0b0b0a 5%, #20110d 100%); }
.article-shell { padding: clamp(90px, 11vw, 160px) var(--gutter); display: grid; grid-template-columns: minmax(150px, .45fr) minmax(300px, 1.25fr) .35fr; gap: clamp(44px, 8vw, 130px); }
.article-shell aside { display: flex; flex-direction: column; gap: 8px; color: rgba(239,233,220,.43); font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.article-copy { grid-column: 2; max-width: 760px; }
.article-copy p { margin: 0 0 26px; color: rgba(239,233,220,.72); font-size: 18px; line-height: 1.78; }
.article-copy .lead { color: var(--bone); font-size: clamp(23px, 2.1vw, 31px); line-height: 1.48; }
.article-copy h2 { margin: 80px 0 24px; font-family: var(--display); font-size: clamp(34px, 4vw, 56px); letter-spacing: -.05em; line-height: .95; text-transform: uppercase; }
.article-copy blockquote { margin: 80px -7vw; padding: 8px 0 8px 34px; border-left: 3px solid var(--ember); color: var(--bone); font-family: var(--display); font-size: clamp(32px, 4vw, 60px); font-weight: 800; letter-spacing: -.04em; line-height: 1.05; text-transform: uppercase; }
.article-next { min-height: 260px; padding: 54px var(--gutter); display: grid; grid-template-columns: 180px 1fr 50px; align-items: center; border-top: 1px solid var(--line); background: var(--ink-soft); transition: color 200ms ease, background 200ms ease; }
.article-next:hover { color: var(--ink); background: var(--ember); }
.article-next span { color: var(--bone-dim); font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.article-next:hover span { color: rgba(11,11,10,.62); }
.article-next strong { font-family: var(--display); font-size: clamp(38px, 5vw, 80px); letter-spacing: -.055em; line-height: .95; text-transform: uppercase; }
.article-next i { justify-self: end; font-size: 30px; font-style: normal; }
.article-footer { min-height: 120px; padding: 34px var(--gutter); display: flex; align-items: center; justify-content: space-between; color: rgba(239,233,220,.45); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.article-footer a:hover { color: var(--ember); }

@media (max-width: 720px) {
  .article-nav { height: 70px; }
  .article-nav .brand-word { display: none; }
  .article-hero { min-height: 78svh; padding-bottom: 60px; }
  .article-hero h1 { font-size: clamp(54px, 16vw, 78px); line-height: .81; }
  .article-deck { font-size: 17px; }
  .article-shell { grid-template-columns: 1fr; gap: 52px; padding-top: 80px; padding-bottom: 90px; }
  .article-shell aside { flex-direction: row; justify-content: space-between; }
  .article-copy { grid-column: 1; }
  .article-copy p { font-size: 16px; line-height: 1.7; }
  .article-copy .lead { font-size: 22px; }
  .article-copy h2 { margin-top: 64px; }
  .article-copy blockquote { margin: 64px 0; padding-left: 20px; }
  .article-next { min-height: 230px; grid-template-columns: 1fr 30px; gap: 22px; }
  .article-next span { grid-column: 1 / -1; }
  .article-footer { align-items: flex-start; flex-direction: column; gap: 16px; }
}
