/* ═══════════════════════════════════════════════════════════════════════
   skintone.uv — editorial print-magazine landing
   Cream paper · burnt umber type · sun-gold rules · subtle grain
   Display: Fraunces (variable, opsz 144 for hero, SOFT axis for warmth)
   Body:    Newsreader (variable, opsz for legibility at small sizes)
   Mono:    JetBrains Mono — used only for tracked tags
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* Paper & ink */
  --paper:        #F4ECD8;   /* warm cream — close to the app's UI bg */
  --paper-deep:   #EBDFC2;   /* deeper cream for variation */
  --paper-tint:   #FAF4E5;   /* lifted card surface */
  --ink:          #2A1B0E;   /* deep umber — primary text */
  --ink-soft:     #5C4429;   /* muted text */
  --ink-faint:    #8B7152;   /* captions, meta */

  /* Sun palette */
  --terracotta:   #C2552A;   /* sharp warm accent (final CTA, sun) */
  --gold:         #B5832B;   /* secondary accent for kickers/numerals */
  --rust:         #8E3F1A;   /* darker accent */
  --peach:        #E9B98A;   /* soft accent */
  --halo:         rgba(194, 85, 42, 0.16);

  --rule:         rgba(42, 27, 14, 0.16);
  --rule-soft:    rgba(42, 27, 14, 0.08);

  /* Type */
  --display: 'Fraunces', 'Times New Roman', Times, serif;
  --body:    'Newsreader', 'Iowan Old Style', 'Georgia', serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Scale */
  --container: 1180px;
  --container-narrow: 760px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  /* Optional: keep a paper-dark variant; off by default to commit to light */
}

/* ─── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background-color: var(--paper);
  /* Subtle paper grain baked into body background — no blend modes,
     no fixed overlay, so it can't darken or interact with content. */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.165 0 0 0 0 0.106 0 0 0 0 0.055 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  font-feature-settings: "kern", "liga", "onum";
  font-variant-numeric: oldstyle-nums proportional-nums;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--terracotta); color: var(--paper); }

/* ─── Layout primitives ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ─── Type system ───────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-feature-settings: "kern", "ss01", "ss02";
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  /* Fraunces variable axes */
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 540;
}

.eyebrow,
.folio,
.hero__eyebrow,
.chapter__num,
.step__kicker,
.colophon__heading,
.hero__caption-num,
.aside__attrib {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ─── Masthead (top nav) ────────────────────────────────────────────── */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(120%) blur(10px);
  -webkit-backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid var(--rule-soft);
}
.masthead__inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
  padding-top: 4px;
}

.brand {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  font-variation-settings: "opsz" 30, "SOFT" 100;
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
.brand__mono { color: var(--ink); }
.brand__accent {
  font-style: italic;
  font-variation-settings: "opsz" 30, "SOFT" 100;
  color: var(--terracotta);
  font-weight: 500;
}

.topnav {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink-soft);
}
.topnav a {
  position: relative;
  padding: 4px 2px;
  transition: color 200ms var(--ease);
}
.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease);
}
.topnav a:hover { color: var(--ink); }
.topnav a:hover::after { transform: scaleX(1); }
.topnav__sep { color: var(--ink-faint); }

.topnav__cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.topnav__cta:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }

@media (max-width: 760px) {
  .topnav { display: none; }
}

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 32px 0 96px;
  overflow: hidden;
}

.grain { display: none; } /* grain handled globally via body::before */

.folio {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: baseline;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  margin-bottom: 56px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.folio__lhs { text-align: left; }
.folio__title { text-align: center; color: var(--ink); }
.folio__rhs { text-align: right; font-style: italic; font-family: var(--body); letter-spacing: 0.04em; text-transform: none; font-size: 13px; }

@media (max-width: 720px) {
  .folio { grid-template-columns: 1fr; gap: 4px; text-align: center; }
  .folio__lhs, .folio__rhs { text-align: center; }
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}

.hero__copy { padding-bottom: 12px; }

.hero__eyebrow {
  display: block;
  margin: 0 0 20px;
}

.hero__headline {
  font-family: var(--display);
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 0 0 28px;
  text-wrap: balance;
  max-width: 14ch;
}
.hero__headline em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--terracotta);
  font-weight: 360;
}

.hero__lede {
  font-family: var(--body);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 560px;
  font-variation-settings: "opsz" 18;
  margin: 0 0 36px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__trust {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-faint);
  margin: 0;
  max-width: 460px;
  line-height: 1.6;
}

/* Buttons — minimal print-feel CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--paper);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn__arrow {
  font-family: var(--body);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  transition: transform 280ms var(--ease);
}
.btn--ghost:hover .btn__arrow { transform: translateX(4px); }

.btn--large { padding: 18px 32px; font-size: 13px; }

/* Hero figure — the screenshot, with a sun halo and editorial caption */
.hero__figure {
  position: relative;
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 380px;
}
.hero__sun {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--peach) 0%, transparent 65%);
  opacity: 0.55;
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}
.hero__plate {
  position: relative;
  z-index: 2;
  border-radius: 32px;
  overflow: hidden;
  background: var(--paper-tint);
  border: 1px solid var(--rule-soft);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 30px 60px -20px rgba(42, 27, 14, 0.25),
    0 18px 40px -25px rgba(194, 85, 42, 0.35);
  transform: rotate(-2.4deg);
  transition: transform 600ms var(--ease);
}
.hero__plate:hover { transform: rotate(-1deg); }
.hero__plate img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__caption {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin: 24px 6px 0;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.hero__caption-num {
  /* Already styled via shared rule */
}
.hero__caption-text {
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 14;
}

@media (max-width: 880px) {
  .hero__layout { grid-template-columns: 1fr; gap: 56px; }
  .hero__figure { justify-self: center; max-width: 320px; }
  .hero__plate { transform: rotate(0deg); }
  .hero__copy { text-align: left; }
}

/* ─── Chapter sections ─────────────────────────────────────────────── */
.chapter {
  position: relative;
  padding: clamp(80px, 10vw, 144px) 0;
}
.chapter__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  gap: 16px;
}
.chapter__num {
  display: inline-block;
  position: relative;
  padding: 0 18px;
}
.chapter__num::before,
.chapter__num::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--rule);
}
.chapter__num::before { right: 100%; }
.chapter__num::after  { left:  100%; }

.chapter__title {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  text-wrap: balance;
  max-width: 16ch;
}
.chapter__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--terracotta);
  font-weight: 360;
}
.chapter__sub {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 18;
  max-width: 620px;
  margin: 0;
}

/* ─── Features grid ────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.feature {
  background: var(--paper-tint);
  padding: 36px 32px 38px;
  position: relative;
  transition: background 260ms var(--ease);
}
.feature:hover { background: var(--paper); }
.feature__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--terracotta);
  margin-bottom: 24px;
}
.feature__title {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 500;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.2;
}
.feature__body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  font-variation-settings: "opsz" 16;
}

/* ─── Pull-quote / aside ──────────────────────────────────────────── */
.aside {
  background: var(--paper-deep);
  padding: clamp(80px, 10vw, 128px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.aside__inner {
  text-align: center;
  max-width: 880px;
}
.aside__mark {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(120px, 14vw, 200px);
  line-height: 0.6;
  color: var(--terracotta);
  margin-bottom: -8px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 300;
}
.aside__quote {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 380;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 auto 28px;
  font-variation-settings: "opsz" 60, "SOFT" 30;
  text-wrap: balance;
}
.aside__quote em {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: "opsz" 60, "SOFT" 100;
  font-weight: 360;
}
.aside__attrib {
  display: block;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: none;
  font-family: var(--body);
}

/* ─── Steps ─────────────────────────────────────────────────────────── */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  counter-reset: step;
}
.step {
  background: var(--paper-tint);
  padding: 44px 32px 40px;
  position: relative;
  counter-increment: step;
}
.step__roman::before {
  content: counter(step, upper-roman);
  font-family: var(--display);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: var(--terracotta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 320;
  display: block;
  margin-bottom: 16px;
  opacity: 0.9;
}
.step__kicker { display: block; margin-bottom: 6px; }
.step__title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.2;
}
.step__body {
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  font-variation-settings: "opsz" 15;
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

/* ─── Privacy section ─────────────────────────────────────────────── */
.chapter--privacy { background: var(--paper); }
.privacy-note {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 8px;
}
.privacy-note__body {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 24px;
  font-variation-settings: "opsz" 18;
}
.has-dropcap::first-letter {
  font-family: var(--display);
  font-style: italic;
  float: left;
  font-size: 4em;
  line-height: 0.9;
  padding: 4px 12px 0 0;
  color: var(--terracotta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 320;
}
.link-arrow {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--body);
  font-size: 16px;
  font-style: italic;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 2px;
  transition: gap 220ms var(--ease), color 220ms var(--ease);
}
.link-arrow:hover { gap: 12px; color: var(--rust); border-bottom-color: var(--rust); }

/* ─── Final CTA ───────────────────────────────────────────────────── */
.chapter--cta {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  text-align: center;
}
.final {
  max-width: 760px;
  margin: 0 auto;
}
.final .chapter__num {
  margin-bottom: 18px;
}
.final__title {
  font-family: var(--display);
  font-size: clamp(40px, 6.4vw, 84px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin-bottom: 24px;
  text-wrap: balance;
}
.final__title em {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.final__sub {
  font-family: var(--body);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 auto 36px;
  max-width: 520px;
  font-variation-settings: "opsz" 18;
}

/* ─── Colophon (footer) ──────────────────────────────────────────── */
.colophon {
  background: var(--paper);
  color: var(--ink-soft);
  padding: 64px 0 36px;
  font-family: var(--body);
  font-size: 14.5px;
  position: relative;
}
.colophon__rule {
  height: 1px;
  background: var(--rule);
  margin-bottom: 56px;
}
.colophon__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.colophon__masthead { padding-right: 24px; }
.colophon__wordmark {
  font-family: var(--display);
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 12px;
  font-variation-settings: "opsz" 60, "SOFT" 60;
  color: var(--ink);
  font-weight: 500;
}
.colophon__mono { color: var(--ink); }
.colophon__accent {
  font-style: italic;
  color: var(--terracotta);
  font-variation-settings: "opsz" 60, "SOFT" 100;
  font-weight: 400;
}
.colophon__tagline {
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 16;
}
.colophon__heading {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 18px;
}
.colophon__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.colophon__col a {
  position: relative;
  color: var(--ink-soft);
  transition: color 200ms var(--ease);
}
.colophon__col a:hover { color: var(--terracotta); }
.colophon__lang a[aria-current="page"] {
  color: var(--ink);
  font-style: italic;
}
.colophon__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-soft);
  font-size: 12.5px;
  color: var(--ink-faint);
}
.colophon__set { font-style: italic; }

@media (max-width: 760px) {
  .colophon__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .colophon__grid { grid-template-columns: 1fr; }
}

/* ─── Legal pages (privacy, impressum) ───────────────────────────── */
.page--legal main.legal {
  padding: clamp(56px, 7vw, 112px) 0 clamp(72px, 9vw, 144px);
  position: relative;
}
.legal__inner { max-width: 720px; margin: 0 auto; }
.legal__header { margin-bottom: 56px; }
.legal h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 12px;
}
.legal__updated {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0;
}
.legal__section {
  padding: 28px 0;
  border-top: 1px solid var(--rule-soft);
}
.legal__section:first-of-type { border-top: 0; padding-top: 12px; }
.legal__section h2 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  font-variation-settings: "opsz" 36, "SOFT" 60;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.legal__section p {
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  white-space: pre-line;
  font-variation-settings: "opsz" 17;
}
.legal__section a {
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
}
.legal__section a:hover { color: var(--rust); }

/* ─── Reveal animation ──────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow,
  .hero__headline,
  .hero__lede,
  .hero__ctas,
  .hero__trust,
  .hero__figure {
    animation: rise 900ms var(--ease) both;
  }
  .hero__eyebrow  { animation-delay: 0ms; }
  .hero__headline { animation-delay: 80ms; }
  .hero__lede     { animation-delay: 220ms; }
  .hero__ctas     { animation-delay: 360ms; }
  .hero__trust    { animation-delay: 480ms; }
  .hero__figure   { animation-delay: 200ms; animation-duration: 1100ms; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ─── Print ────────────────────────────────────────────────────── */
@media print {
  .masthead, .colophon { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
