:root {
  --ink: #171613;
  --ink-2: #25231f;
  --paper: #f2ecdf;
  --paper-2: #fffaf0;
  --paper-3: #e7dfd0;
  --muted: #6c665d;
  --line: #d2c8b7;
  --red: #a82422;
  --red-bright: #c8342f;
  --red-deep: #761715;
  --green: #405447;
  --shadow: 0 22px 60px rgba(31, 25, 18, .16);
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --content: 780px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--red-deep); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--red-bright); }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { color: var(--paper-2); background: var(--red); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: .75rem 1rem;
  border-radius: .4rem;
  color: var(--ink);
  background: var(--paper-2);
  font-weight: 700;
}
.skip-link:focus { transform: none; }

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  height: 4px;
  background: transparent;
}
.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red-bright);
  box-shadow: 0 0 18px rgba(200, 52, 47, .65);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.3rem clamp(1rem, 4vw, 4.5rem);
  color: var(--paper-2);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .77rem;
  line-height: 1.15;
}
.brand img { flex: 0 0 auto; }
.brand span { display: grid; }
.brand strong { font-size: .9rem; }
.site-nav { display: flex; align-items: center; gap: clamp(.8rem, 2vw, 1.8rem); }
.site-nav a {
  color: inherit;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav a:hover { color: #fff; }
.site-nav .nav-cta {
  padding: .72rem 1rem;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
}
.site-nav .nav-cta:hover { color: var(--ink); background: var(--paper-2); }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--paper-2);
  background:
    radial-gradient(circle at 72% 24%, rgba(168, 36, 34, .18), transparent 34%),
    linear-gradient(135deg, #0e0e0d 0%, #1a1916 58%, #0f0f0e 100%);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 78%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 210px;
  background:
    linear-gradient(154deg, transparent 0 24%, #1e2b24 24.2% 39%, transparent 39.2%),
    linear-gradient(26deg, transparent 0 35%, #29382f 35.2% 52%, transparent 52.2%),
    linear-gradient(164deg, transparent 0 43%, #18241d 43.2% 64%, transparent 64.2%),
    linear-gradient(to bottom, transparent, rgba(0,0,0,.5));
  opacity: .86;
}
.hero-grid {
  width: min(1480px, 100%);
  min-height: 820px;
  margin: 0 auto;
  padding: 10.5rem clamp(1.25rem, 6vw, 6rem) 8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: 3rem;
}
.eyebrow {
  margin: 0 0 1.2rem;
  color: #c9c1b4;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-block;
  margin-right: .4rem;
  padding: .35rem .55rem;
  border-radius: .25rem;
  color: var(--paper-2);
  background: var(--red);
}
.hero h1 {
  margin: 0;
  max-width: 920px;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.4vw, 8.8rem);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero h1 em {
  color: #d9d0c1;
  font-weight: 400;
}
.dek {
  max-width: 760px;
  margin: 2.1rem 0 0;
  color: #d1c9bc;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.35;
  text-wrap: balance;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: .8rem; margin-top: 2.25rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--red); }
.button-primary:hover { color: #fff; background: var(--red-bright); }
.button-ghost { color: var(--paper-2); border-color: rgba(255,255,255,.35); background: transparent; }
.button-ghost:hover { border-color: var(--paper-2); }
.button-light { color: var(--ink); background: var(--paper-2); }
.button-light:hover { color: var(--ink); background: #fff; }
.copy-status { min-width: 8rem; color: #bbb3a7; font-size: .78rem; }

.hero-art { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-art img { width: min(560px, 100%); opacity: .95; filter: drop-shadow(0 30px 80px rgba(0,0,0,.35)); }
.hero-art p {
  position: absolute;
  right: 1rem;
  bottom: 3.2rem;
  margin: 0;
  padding: .8rem 1rem;
  border-left: 4px solid var(--red);
  color: #d1c9bc;
  background: rgba(16,16,15,.7);
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}
.hero-art p strong { color: #fff; }

.fact-band {
  position: relative;
  z-index: 5;
  width: min(1200px, calc(100% - 2rem));
  margin: -58px auto 5.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}
.fact { min-height: 180px; padding: 1.5rem 1.7rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.fact:last-child { border-right: 0; }
.fact strong { display: block; color: var(--red); font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: .95; }
.fact span { display: block; max-width: 24ch; margin-top: .75rem; font-size: .92rem; line-height: 1.4; }
.fact a { width: max-content; margin-top: .65rem; color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.article-shell { padding: 0 1rem 7rem; }
.article-body { width: min(var(--content), 100%); margin: 0 auto; }
.article-body p { margin: 0 0 1.45rem; line-height: 1.78; text-wrap: pretty; hyphens: auto; }
.article-body .lead { font-family: var(--serif); font-size: clamp(1.28rem, 2.2vw, 1.62rem); line-height: 1.55; }
.dropcap { float: left; margin: .12em .13em 0 0; color: var(--red); font-family: var(--serif); font-size: 4.3em; line-height: .72; }
sup a { padding: 0 .15em; font-size: .68em; font-weight: 800; text-decoration: none; }

.article-section { position: relative; margin-top: 6rem; padding-top: 1rem; }
.article-section::before { content: ""; position: absolute; top: 0; left: 0; width: 74px; height: 5px; background: var(--red); }
.section-no { position: absolute; top: -.6rem; right: calc(100% + 2rem); color: rgba(23,22,19,.14); font-family: var(--serif); font-size: 4.7rem; font-weight: 700; line-height: 1; }
.article-section h2, .lexicon h2, .sources h2, .cta h2 {
  margin: 0 0 1.45rem;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}

blockquote {
  position: relative;
  margin: 2.7rem -5rem 3rem;
  padding: 2.4rem 3rem 2.2rem 5.6rem;
  color: var(--paper-2);
  background: var(--ink);
  box-shadow: var(--shadow);
}
blockquote::before {
  content: "„";
  position: absolute;
  top: -.1rem;
  left: 1.4rem;
  color: var(--red-bright);
  font-family: var(--serif);
  font-size: 7.5rem;
  line-height: 1;
}
blockquote p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.55 !important; }
blockquote footer { margin-top: 1.2rem; }
blockquote footer a { color: #c9c1b4; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

.source-figure { margin: 2.8rem -4rem 3.2rem; }
.source-figure img { display: block; width: 100%; border: 12px solid var(--paper-2); box-shadow: var(--shadow); }
.source-figure-quote img { border-width: 10px; }
.source-figure figcaption { max-width: 70ch; margin: .8rem 1rem 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }

.pullquote {
  margin: 3.2rem -2.5rem !important;
  padding: 2.1rem 2.5rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.32 !important;
  text-align: center;
}

.lexicon {
  margin: 3.8rem -5rem 5rem;
  padding: 2.6rem 3rem 3rem;
  color: var(--paper-2);
  background: var(--green);
  box-shadow: var(--shadow);
}
.aside-kicker { margin: 0 0 .8rem !important; color: currentColor; opacity: .7; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lexicon h2 { font-size: clamp(2.1rem, 4vw, 3.25rem); }
.lexicon dl { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.22); }
.lexicon dl div { min-height: 132px; padding: 1.25rem; background: var(--green); }
.lexicon dt { font-family: var(--serif); font-size: 1.28rem; font-weight: 700; }
.lexicon dd { margin: .45rem 0 0; color: #d8ded9; font-size: .92rem; }

.price-card {
  margin: 2.8rem -5rem 3.2rem;
  overflow: hidden;
  color: var(--paper-2);
  background: var(--ink);
  border: 1px solid #3a3630;
  box-shadow: var(--shadow);
}
.price-card-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; padding: 1.4rem 1.7rem; background: var(--red-deep); }
.price-card-head span { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.price-card-head strong { font-family: var(--serif); font-size: 1.7rem; }
.price-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 1.4rem; padding: 1.35rem 1.7rem; border-bottom: 1px solid #3a3630; }
.price-row span { max-width: 44ch; color: #d1c9bc; font-size: .92rem; line-height: 1.45; }
.price-row strong { color: #fff; text-align: right; }
.price-card > p { margin: 0 !important; padding: 1rem 1.7rem; color: #aaa298; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.impact-line { margin: 3.5rem -4rem 0 !important; padding: 3rem 3.2rem; color: var(--paper-2); background: var(--red-deep); box-shadow: var(--shadow); }
.impact-line span, .impact-line strong { display: block; }
.impact-line span { color: #d5c8c4; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.impact-line strong { margin-top: .65rem; font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.2; }

.article-section-dark {
  margin-left: -5rem;
  margin-right: -5rem;
  padding: 3.5rem 5rem 2rem;
  color: var(--paper-2);
  background: var(--ink);
  box-shadow: var(--shadow);
}
.article-section-dark::before { left: 5rem; top: 2.5rem; }
.article-section-dark .section-no { right: calc(100% + 2rem); }
.article-section-dark h2 { margin-top: .8rem; }
.caution { margin: 2.2rem 0 2.4rem; padding: 1.4rem 1.5rem; border: 1px solid #554f47; border-left: 5px solid var(--red-bright); background: #24221f; }
.caution strong { color: #fff; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.caution p { margin: .7rem 0 0 !important; color: #d2cabd; font-size: .92rem; }

.conclusion { padding-bottom: 1rem; }
.final-lines { margin: 2.8rem -3.2rem 0 !important; padding: 2.7rem 3.2rem; border-left: 8px solid var(--red); background: var(--paper-2); box-shadow: var(--shadow); font-family: var(--serif); font-size: clamp(1.45rem, 3vw, 2.25rem); line-height: 1.42 !important; }
.final-lines strong { color: var(--red-deep); }

.cta {
  margin: 6.5rem -8rem 5rem;
  padding: 3.5rem 4rem 3.8rem;
  color: var(--paper-2);
  background: var(--red-deep);
  box-shadow: var(--shadow);
  text-align: center;
}
.cta h2 { max-width: 13ch; margin-left: auto; margin-right: auto; }
.cta > p:not(.aside-kicker) { max-width: 55ch; margin-left: auto; margin-right: auto; color: #ead7d4; }
.cta .button { margin-top: .8rem; }

.sources { margin-top: 6rem; padding-top: 3rem; border-top: 1px solid var(--line); }
.sources h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.sources ol { margin: 2rem 0 0; padding-left: 1.5rem; }
.sources li { margin-bottom: 1rem; padding-left: .45rem; color: #4c4842; font-size: .86rem; line-height: 1.55; }
.sources li::marker { color: var(--red); font-weight: 800; }
.sources li:target { margin-left: -.5rem; padding: .7rem .7rem .7rem 1.2rem; background: var(--paper-2); outline: 2px solid rgba(168,36,34,.25); }
.sources-note { margin-top: 2rem !important; padding: 1.2rem 1.35rem; border-left: 4px solid var(--line); color: var(--muted); font-size: .78rem; line-height: 1.55 !important; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding: 3.5rem clamp(1.25rem, 6vw, 6rem);
  color: #c9c1b4;
  background: var(--ink);
}
.brand-footer { color: var(--paper-2); }
.site-footer p { max-width: 48ch; margin: 1rem 0 0; font-size: .82rem; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; text-align: right; }
.footer-meta a { color: var(--paper-2); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.footer-meta p { margin-top: .5rem; }

.error-page { min-height: 100vh; display: grid; place-items: center; padding: 2rem; color: var(--paper-2); background: var(--ink); }
.error-card { width: min(680px, 100%); text-align: center; }
.error-card img { width: 220px; opacity: .8; }
.error-card h1 { margin: .5rem 0 1rem; font-family: var(--serif); font-size: clamp(2.5rem, 8vw, 5rem); line-height: 1; }
.error-card p:not(.eyebrow) { color: #c9c1b4; }

:focus-visible { outline: 3px solid #efb13e; outline-offset: 4px; }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr .75fr; }
  .section-no { display: none; }
  blockquote, .lexicon, .price-card, .article-section-dark { margin-left: -2.5rem; margin-right: -2.5rem; }
  .source-figure, .impact-line { margin-left: -2rem !important; margin-right: -2rem !important; }
  .cta { margin-left: -3.5rem; margin-right: -3.5rem; }
}

@media (max-width: 820px) {
  body { font-size: 17px; }
  .site-header { position: absolute; align-items: flex-start; }
  .site-nav { max-width: 56vw; justify-content: flex-end; flex-wrap: wrap; row-gap: .45rem; }
  .site-nav a:not(.nav-cta) { display: none; }
  .hero, .hero-grid { min-height: 760px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 9rem; padding-bottom: 6.5rem; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-art { position: absolute; right: -110px; bottom: 10px; width: 480px; min-height: 0; opacity: .35; }
  .hero-art p { display: none; }
  .hero h1 { font-size: clamp(4rem, 18vw, 7rem); }
  .dek { max-width: 32ch; }
  .fact-band { grid-template-columns: 1fr; margin-top: -38px; }
  .fact { min-height: 142px; border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .fact span { max-width: 34ch; }
  blockquote { padding: 2.4rem 1.4rem 2rem 4rem; }
  blockquote::before { left: .75rem; }
  .lexicon dl { grid-template-columns: 1fr; }
  .lexicon dl div { min-height: auto; }
  .price-row { grid-template-columns: 1fr; gap: .6rem; }
  .price-row strong { text-align: left; }
  .article-section-dark { padding-left: 2.5rem; padding-right: 2.5rem; }
  .article-section-dark::before { left: 2.5rem; }
  .cta { padding-left: 2rem; padding-right: 2rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-meta { align-items: flex-start; text-align: left; }
}

@media (max-width: 620px) {
  .site-header { padding: 1rem; }
  .brand span { display: none; }
  .site-nav { max-width: none; }
  .site-nav .nav-cta { padding: .65rem .85rem; }
  .hero-grid { padding-left: 1rem; padding-right: 1rem; }
  .hero-actions { align-items: stretch; }
  .button { width: 100%; }
  .copy-status { width: 100%; min-width: 0; text-align: center; }
  .article-shell { padding-left: 1rem; padding-right: 1rem; }
  .article-body p { line-height: 1.7; }
  blockquote, .lexicon, .price-card, .article-section-dark, .cta { margin-left: -.5rem; margin-right: -.5rem; }
  .source-figure { margin-left: -.25rem; margin-right: -.25rem; }
  .pullquote { margin-left: 0 !important; margin-right: 0 !important; padding-left: .75rem; padding-right: .75rem; }
  .impact-line, .final-lines { margin-left: -.25rem !important; margin-right: -.25rem !important; padding-left: 1.5rem; padding-right: 1.5rem; }
  .lexicon, .price-card-head, .price-row, .price-card > p { padding-left: 1.25rem; padding-right: 1.25rem; }
  .article-section-dark { padding-left: 1.25rem; padding-right: 1.25rem; }
  .article-section-dark::before { left: 1.25rem; }
  .source-figure img { border-width: 6px; }
  .cta { padding: 2.6rem 1.25rem 2.8rem; }
}

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

@media print {
  :root { --paper: #fff; --paper-2: #fff; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .site-header, .reading-progress, .hero-actions, .fact-band, .cta, .site-footer { display: none !important; }
  .hero { min-height: auto; color: #000; background: #fff; }
  .hero::before, .hero::after, .hero-art { display: none; }
  .hero-grid { min-height: auto; display: block; padding: 1cm 0 1.2cm; }
  .hero h1 { font-size: 38pt; }
  .hero h1 em, .dek, .eyebrow { color: #000; }
  .article-shell { padding: 0; }
  .article-body { width: auto; }
  blockquote, .lexicon, .price-card, .article-section-dark, .impact-line, .final-lines { margin-left: 0 !important; margin-right: 0 !important; box-shadow: none; break-inside: avoid; }
  blockquote, .article-section-dark, .price-card, .lexicon { color: #000; background: #f2f2f2; }
  a { color: #000; text-decoration: underline; }
  .source-figure { margin-left: 0; margin-right: 0; break-inside: avoid; }
  .article-section { break-before: auto; }
}
