/* =====================================================================
   LANDEYÐA — "Runenstein & Kaltwasser"
   Design system for landeyda.com
   A dark, atmospheric, literary-prestige theme for a Norse saga.
   Fonts (loaded via <link>): Fraunces (display), Spectral (body),
   Noto Sans Runic (ornaments).
   ===================================================================== */

/* --------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------- */
:root {
  /* Ink — deep fjord blacks with a cold teal undertone */
  --ink-900: #070a0b;
  --ink-850: #090d0e;
  --ink-800: #0b1011;   /* page */
  --ink-750: #0e1416;
  --ink-700: #121a1d;   /* panel */
  --ink-650: #162024;
  --ink-600: #1b272c;   /* raised */
  --ink-line: #25343a;  /* hairlines on dark */

  /* Fog — bone / parchment text */
  --fog-100: #f2ead9;
  --fog-200: #e7ddca;   /* primary text */
  --fog-300: #c9bea9;
  --fog-400: #9d9583;   /* muted */
  --fog-500: #75705f;   /* faint */
  --fog-600: #514d41;

  /* Accents */
  --bronze:        #c79a4f;   /* forge fire / mead / treasure → released */
  --bronze-bright: #e3bd74;
  --bronze-deep:   #8f6a2d;
  --blood:         #b23b27;   /* painted runes / blood → emphasis, danger */
  --blood-bright:  #d2543b;
  --ember:         #c8632f;   /* writing in progress */
  --steel:         #5f97a8;   /* Alva's sky-blue shield / cold water → editing */
  --steel-bright:  #8fc1d0;
  --spotify:       #1ed760;   /* Spotify brand green */

  /* Semantic */
  --bg:        var(--ink-800);
  --text:      var(--fog-200);
  --muted:     var(--fog-400);
  --accent:    var(--bronze);
  --line:      var(--ink-line);

  /* Type */
  --font-display: "Fraunces", "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "Spectral", Georgia, "Times New Roman", serif;
  --font-rune: "Noto Sans Runic", "Segoe UI Historic", "Segoe UI Symbol", var(--font-display);

  /* Spacing / layout */
  --container: 1220px;
  --reading: 64ch;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 2px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.7s;

  --shadow-card: 0 28px 60px -28px rgba(0,0,0,0.85), 0 4px 14px -6px rgba(0,0,0,0.6);
  --header-h: 76px;
}

/* --------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1, "calt" 1, "onum" 1;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--blood); color: var(--fog-100); }

:focus-visible {
  outline: 2px solid var(--bronze-bright);
  outline-offset: 3px;
  border-radius: 1px;
}

/* --------------------------------------------------------------------
   3. Atmosphere — grain + vignette overlays
   -------------------------------------------------------------------- */
/* vignette */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0,0,0,0.55) 100%),
    radial-gradient(100% 100% at 50% 100%, transparent 60%, rgba(0,0,0,0.5) 100%);
}
/* film grain (static texture — cheap to composite) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* keep real content above overlays */
.site-header, main, .site-footer { position: relative; z-index: 2; }
body::before { z-index: 1; }

/* --------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  color: var(--fog-100);
  font-variation-settings: "opsz" 96, "SOFT" 40, "WONK" 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { text-wrap: pretty; }
strong, b { font-weight: 600; color: var(--fog-100); }
em, i { font-style: italic; }

.display {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--fog-100);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
}
.eyebrow::before {
  content: "";
  width: 2.4em;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze));
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 2.4em;
  height: 1px;
  background: linear-gradient(90deg, var(--bronze), transparent);
}

.lead {
  font-size: clamp(1.18rem, 1.05rem + 0.6vw, 1.5rem);
  line-height: 1.6;
  font-weight: 300;
  color: var(--fog-300);
}
.lead em { color: var(--fog-100); font-style: italic; }

.prose p + p { margin-top: 1.1em; }
.prose a { color: var(--bronze-bright); }

/* Norse verse / motto */
.kenning {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  color: var(--bronze-bright);
  letter-spacing: 0.02em;
}
.kenning .trans {
  display: block;
  font-style: normal;
  font-size: 0.82em;
  color: var(--fog-400);
  letter-spacing: 0.04em;
  margin-top: 0.15em;
}

/* runic ornament */
.rune {
  font-family: var(--font-rune);
  color: var(--bronze);
  font-style: normal;
  line-height: 1;
}

/* --------------------------------------------------------------------
   5. Layout helpers
   -------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 880px; }

.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title {
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.6rem);
  margin-top: 0.5rem;
}
.section__index {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--fog-500);
  letter-spacing: 0.1em;
}
.section__intro { margin-top: 1.4rem; }

.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: var(--bronze);
}
.rule::before, .rule::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 7rem;
  background: linear-gradient(90deg, transparent, var(--ink-line), transparent);
}
.rule .rune { font-size: 1.1rem; opacity: 0.9; }

.bleed { background: var(--ink-850); }
.panel { background: var(--ink-750); }

/* --------------------------------------------------------------------
   6. Buttons & inline links
   -------------------------------------------------------------------- */
.btn {
  --bg-btn: transparent;
  --fg-btn: var(--fog-100);
  --bd-btn: color-mix(in srgb, var(--bronze) 55%, transparent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.95em 1.7em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-btn);
  background: var(--bg-btn);
  border: 1px solid var(--bd-btn);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.btn:hover, .btn:focus-visible {
  color: var(--ink-900);
  border-color: var(--bronze);
}
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }
.btn .rune { transition: color .45s var(--ease); }
.btn:hover .rune { color: var(--ink-900); }

.btn--solid {
  --bg-btn: var(--bronze);
  --fg-btn: var(--ink-900);
  --bd-btn: var(--bronze);
}
.btn--solid::before { background: var(--bronze-bright); }
.btn--solid:hover, .btn--solid:focus-visible { color: var(--ink-900); }

.btn--ghost { --bd-btn: var(--ink-line); }
.btn--ghost::before { background: var(--fog-100); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-bright);
  position: relative;
  padding-bottom: 2px;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; }
.link-arrow span[aria-hidden] { transition: transform .4s var(--ease); }
.link-arrow:hover span[aria-hidden] { transform: translateX(4px); }

/* --------------------------------------------------------------------
   7. Header / nav
   -------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--ink-900) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--ink-line);
}
.site-header__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-size: 1.32rem;
  letter-spacing: 0.04em;
  color: var(--fog-100);
  line-height: 1;
}
.brand .rune { font-size: 1rem; color: var(--bronze); }
.brand:hover { color: var(--bronze-bright); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem); }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.nav__link {
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fog-300);
  position: relative;
  padding-block: 0.4rem;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav__link:hover { color: var(--fog-100); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

/* language toggle */
.lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.lang__btn {
  padding: 0.45em 0.85em;
  color: var(--fog-400);
  text-transform: uppercase;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.lang__btn[aria-pressed="true"] {
  color: var(--ink-900);
  background: var(--bronze);
}
.lang__btn:not([aria-pressed="true"]):hover { color: var(--fog-100); }

/* burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
}
.burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--fog-100);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  padding-block: calc(var(--header-h) + 3rem) 4rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center 38%;
  filter: saturate(0.92) brightness(0.66) contrast(1.04);
  transform: scale(1.08);
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7,10,11,0.7) 0%, rgba(7,10,11,0.25) 30%, rgba(7,10,11,0.55) 68%, var(--ink-800) 100%),
    radial-gradient(80% 60% at 50% 42%, transparent 40%, rgba(7,10,11,0.6) 100%);
}
.hero__fog {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(40% 30% at 20% 30%, rgba(95,151,168,0.10), transparent 70%),
    radial-gradient(45% 35% at 80% 60%, rgba(199,154,79,0.08), transparent 70%);
  animation: drift 24s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to   { transform: translate3d(3%, 2%, 0) scale(1.1); }
}

/* Full width so the nowrap wordmark centres on the viewport; the inner text
   elements keep their own max-width (e.g. .hero__sub) for readable line length. */
.hero__content { width: 100%; max-width: none; padding-inline: var(--gutter); }
.hero__eyebrow { margin-bottom: 1.8rem; }
.hero__title {
  /* One line, always — sized so "LANDEYÐA" fills the viewport without breaking. */
  font-size: clamp(2.5rem, 14.5vw, 12rem);
  margin-bottom: 0.4rem;
  white-space: nowrap;
  max-width: none;
}
.hero__title .deco {
  display: block;
  font-size: 0.2em;
  letter-spacing: 0.6em;
  font-weight: 300;
  font-variation-settings: "opsz" 40, "WONK" 0;
  color: var(--bronze);
  margin-bottom: 0.6em;
  padding-left: 0.6em;
}
.hero__sub {
  font-size: clamp(1.05rem, 0.9rem + 0.8vw, 1.45rem);
  font-style: italic;
  font-weight: 300;
  color: var(--fog-300);
  max-width: 40ch;
  margin: 0 auto 2.2rem;
}
.hero__motto { margin: 0 auto 2.6rem; font-size: clamp(1rem, 1.4vw, 1.25rem); }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scrolldown {
  position: absolute;
  bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fog-500);
  z-index: 1;
}
.scrolldown::after {
  content: "";
  width: 1px; height: 42px;
  background: linear-gradient(180deg, var(--bronze), transparent);
  animation: pulse-line 2.4s var(--ease) infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --------------------------------------------------------------------
   9. Intro / premise
   -------------------------------------------------------------------- */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}
@media (min-width: 880px) {
  .intro__grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}
.intro__big {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
  font-size: clamp(1.7rem, 1rem + 2.6vw, 2.9rem);
  line-height: 1.18;
  color: var(--fog-100);
}
.intro__big .hl { color: var(--bronze-bright); font-style: italic; }
.dropcap::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "WONK" 1;
  float: left;
  font-size: 4.2em;
  line-height: 0.72;
  padding: 0.06em 0.12em 0 0;
  color: var(--bronze);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 2.6rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-size: clamp(2rem, 1.2rem + 2.4vw, 3.1rem);
  color: var(--fog-100);
  line-height: 1;
}
.stat__label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------
   10. Books — the saga spine
   -------------------------------------------------------------------- */
.saga { position: relative; }
.saga::before {
  content: "";
  position: absolute;
  top: 1rem; bottom: 1rem;
  left: 22px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--ink-line) 8%, var(--ink-line) 92%, transparent);
}
@media (min-width: 980px) {
  .saga::before { left: 50%; transform: translateX(-0.5px); }
}

.book {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 4rem) 56px;
}
@media (min-width: 980px) {
  .book {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding-left: 0;
  }
  .book__media { grid-column: 1; }
  .book__body { grid-column: 2; padding-left: clamp(2rem,4vw,4rem); }
  .book:nth-child(even) .book__media { grid-column: 2; order: 2; }
  .book:nth-child(even) .book__body { grid-column: 1; order: 1; padding-left: 0; padding-right: clamp(2rem,4vw,4rem); text-align: right; }
  .book:nth-child(even) .book__status,
  .book:nth-child(even) .book__head { justify-content: flex-end; }
  .book:nth-child(even) .eyebrow { flex-direction: row-reverse; }
}

/* node on the spine */
.book__node {
  position: absolute;
  left: 22px;
  top: clamp(2rem, 3.5vw, 3rem);
  width: 13px; height: 13px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--ink-800);
  border: 1px solid var(--bronze);
  z-index: 2;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.book.is-visible .book__node { background: var(--bronze); box-shadow: 0 0 0 4px color-mix(in srgb, var(--bronze) 18%, transparent); }
@media (min-width: 980px) {
  .book__node { left: 50%; top: 50%; }
}

.book__media { position: relative; }
.book__numeral {
  position: absolute;
  top: -0.5em; left: -0.12em;
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: 0.8;
  color: color-mix(in srgb, var(--bronze) 16%, transparent);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.book:nth-child(even) .book__numeral { left: auto; right: -0.12em; }

.book__cover {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ink-line);
  box-shadow: var(--shadow-card);
}
.book__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter 1.2s var(--ease);
  filter: saturate(0.95) brightness(0.92);
}
.book:hover .book__cover img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.book__cover--ghost {
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, var(--ink-700), var(--ink-850));
  color: var(--fog-600);
}
.book__cover--ghost .rune { font-size: clamp(3rem, 8vw, 5rem); color: color-mix(in srgb, var(--bronze) 30%, transparent); }
.book__coverlabel {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.2rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog-300);
  background: linear-gradient(180deg, transparent, rgba(7,10,11,0.85));
}

.book__head { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.4rem; }
.book__roman { font-family: var(--font-display); color: var(--fog-500); font-size: 0.9rem; letter-spacing: 0.2em; }
.book__title { font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3rem); }
.book__theme { color: var(--bronze-bright); font-style: italic; font-size: 1.05rem; margin-block: 0.6rem 1.1rem; }
.book__blurb { color: var(--fog-300); max-width: 46ch; }
.book:nth-child(even) .book__blurb { margin-left: auto; }
.book__foot { margin-top: 1.6rem; display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.book:nth-child(even) .book__foot { justify-content: flex-end; }

/* status chip */
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--st, var(--fog-400));
}
.status::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 color-mix(in srgb, currentColor 50%, transparent);
}
.status--released { --st: var(--bronze); }
.status--released::before { animation: beacon 2.6s ease-out infinite; }
.status--editing  { --st: var(--steel); }
.status--writing  { --st: var(--ember); }
.status--planned  { --st: var(--fog-500); }
.status--planned::before { background: transparent; box-shadow: inset 0 0 0 1px currentColor; }
@keyframes beacon {
  0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--bronze) 60%, transparent); }
  70%,100% { box-shadow: 0 0 0 7px transparent; }
}

/* progress */
.progress { width: min(220px, 60vw); }
.book:nth-child(even) .progress { margin-left: auto; }
.progress__bar {
  height: 3px;
  background: var(--ink-600);
  border-radius: 2px;
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--bronze-deep), var(--bronze-bright));
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.4s var(--ease-out);
}
.book.is-visible .progress__fill { transform: scaleX(1); }
.progress__meta { display: flex; justify-content: space-between; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.6rem; }

/* Sealed / not-yet-revealed books: only their existence is shown. */
.book--sealed .book__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.9rem;
}
.book--sealed .book__cover--ghost { opacity: 0.85; }
.book__sealed {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fog-500);
}
.book__sealed .rune { color: color-mix(in srgb, var(--bronze) 55%, transparent); font-size: 1.15rem; }
@media (min-width: 980px) {
  .book.book--sealed:nth-child(even) .book__body { align-items: flex-end; }
}

/* --------------------------------------------------------------------
   11. Songs / album
   -------------------------------------------------------------------- */
.album__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 820px) { .album__head { grid-template-columns: 320px 1fr; } }
.album__art {
  position: relative;
  aspect-ratio: 1/1;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.album__art img { width: 100%; height: 100%; object-fit: cover; }
.album__art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 50%, rgba(7,10,11,0.6));
  mix-blend-mode: multiply;
}
.album__playbadge {
  position: absolute;
  left: 1rem; bottom: 1rem;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fog-100);
}
.album__playbadge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blood-bright); box-shadow: 0 0 10px var(--blood-bright); }

.album__group { margin-bottom: clamp(2rem, 4vw, 3rem); }
.album__grouphead {
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  padding-bottom: 1rem; margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.album__grouptitle { font-size: 1.4rem; }
.album__groupmeta { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bronze); }

.track {
  border-bottom: 1px solid var(--ink-700);
}
.track__summary {
  display: grid;
  grid-template-columns: 2.6rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0.4rem;
  cursor: pointer;
  transition: background .3s var(--ease), padding .3s var(--ease);
  list-style: none;
}
.track__summary::-webkit-details-marker { display: none; }
.track:hover .track__summary { background: linear-gradient(90deg, color-mix(in srgb, var(--bronze) 6%, transparent), transparent); padding-inline: 0.9rem; }
.track__no {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "WONK" 1;
  font-size: 1.15rem;
  color: var(--fog-500);
}
.track[open] .track__no { color: var(--bronze); }
.track__main { min-width: 0; }
.track__title { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--fog-100); }
.track__refrain {
  font-style: italic;
  color: var(--bronze-bright);
  font-size: 0.92rem;
  margin-top: 0.15rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.track__toggle {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--ink-line);
  border-radius: 50%;
  color: var(--fog-400);
  transition: transform .4s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.track[open] .track__toggle { transform: rotate(45deg); color: var(--bronze); border-color: var(--bronze); }
.track__detail {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  padding: 0 0.4rem 1.6rem;
  animation: fade-up .5s var(--ease-out) both;
}
.track__verse {
  border-left: 2px solid color-mix(in srgb, var(--blood) 60%, transparent);
  padding: 0.2rem 0 0.2rem 1.2rem;
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--fog-200);
}
.track__verse .trans { display:block; font-style: normal; color: var(--fog-400); font-size: 0.86em; margin-top: 0.2rem; }
.track__link {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--steel-bright);
  margin-top: 0.4rem;
}
.track__link .rune { color: var(--steel); }
@keyframes fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Album name note */
.album__note { color: var(--bronze); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 0.8rem; }

/* Spotify */
.track__play { color: var(--spotify); font-size: 0.62em; vertical-align: middle; margin-left: 0.45em; }
.spotify { margin-top: 1.1rem; }
.spotify iframe { display: block; width: 100%; border: 0; border-radius: 12px; }
.spotify--album { margin: 0 0 clamp(2rem, 4vw, 3rem); }
.spotify__caption { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fog-500); margin-top: 0.6rem; }
.track__spotify {
  display: inline-flex; align-items: center; gap: 0.5em;
  margin-top: 0.9rem;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--spotify);
  transition: color .3s var(--ease);
}
.track__spotify:hover { color: #3be477; }
.track__spotify .track__play { margin-left: 0; font-size: 0.8em; }

/* Albums (multi) */
.album-card {
  border: 1px solid var(--ink-700);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--ink-750), var(--ink-800));
  padding: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: clamp(1.6rem, 3vw, 2.5rem);
}
.album-card__head { display: flex; gap: clamp(1.2rem, 3vw, 2rem); align-items: center; }
.album-card__art {
  flex: 0 0 auto;
  width: clamp(84px, 18vw, 132px);
  aspect-ratio: 1/1;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--ink-700), var(--ink-850));
}
.album-card__art img { width: 100%; height: 100%; object-fit: cover; }
.album-card__art .rune { font-size: clamp(2rem, 6vw, 3rem); color: color-mix(in srgb, var(--bronze) 32%, transparent); }
.album-card__info { min-width: 0; }
.album-card__info .album__grouptitle { margin-top: 0.2rem; }
.album-card__info .status { margin-top: 0.8rem; }
.album-card__sub { color: var(--bronze-bright); font-style: italic; font-size: 0.95rem; margin-top: 0.2rem; }
.album-card__text { margin-top: 1.3rem; color: var(--fog-300); max-width: var(--reading); }
.album-card__tracks { margin-top: 1.2rem; border-top: 1px solid var(--ink-700); }
.album-card .spotify--album { margin: 1.3rem 0 0; }

.album-upcoming { margin-top: clamp(2rem, 4vw, 3rem); }
.album-upcoming__title { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bronze); }
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.album-tease {
  display: flex; align-items: center; gap: 1rem;
  border: 1px solid var(--ink-700);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: var(--ink-800);
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.album-tease:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--bronze) 40%, transparent); }
.album-tease__art {
  flex: 0 0 auto; width: 60px; height: 60px;
  border: 1px solid var(--ink-line); border-radius: var(--radius);
  background-size: cover; background-position: center;
  display: grid; place-items: center;
  background-color: var(--ink-700);
}
.album-tease__art .rune { font-size: 1.5rem; color: color-mix(in srgb, var(--bronze) 30%, transparent); }
.album-tease__body { min-width: 0; }
.album-tease__meta { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fog-500); }
.album-tease__title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--fog-100); margin: 0.1rem 0; }
.album-tease__sub { font-size: 0.8rem; color: var(--fog-400); font-style: italic; }
.album-tease .status { margin-top: 0.45rem; font-size: 0.62rem; padding: 0.3em 0.7em; }

/* --------------------------------------------------------------------
   12. Glossar
   -------------------------------------------------------------------- */
.glossary__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.search {
  position: relative;
  flex: 1 1 240px;
  max-width: 360px;
}
.search input {
  width: 100%;
  background: var(--ink-700);
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  padding: 0.7em 1em 0.7em 2.6em;
  color: var(--fog-100);
  font-size: 0.95rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.search input::placeholder { color: var(--fog-500); }
.search input:focus { outline: none; border-color: var(--bronze); background: var(--ink-650); }
.search .rune { position: absolute; left: 1em; top: 50%; transform: translateY(-50%); font-size: 0.9rem; color: var(--fog-500); }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5em 0.9em;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  color: var(--fog-400);
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.chip:hover { color: var(--fog-100); border-color: var(--fog-500); }
.chip[aria-pressed="true"] { color: var(--ink-900); background: var(--bronze); border-color: var(--bronze); }

.glossary {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--ink-700);
  border: 1px solid var(--ink-700);
  border-radius: var(--radius);
  overflow: hidden;
}
.term {
  background: var(--ink-800);
  padding: 1.5rem 1.4rem;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.term:hover { background: var(--ink-700); }
.term__top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.term__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--fog-100);
}
.term__type {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  border: 1px solid color-mix(in srgb, var(--bronze) 40%, transparent);
  padding: 0.25em 0.55em;
  border-radius: 999px;
  white-space: nowrap;
}
.term__pron { font-style: italic; color: var(--fog-500); font-size: 0.85rem; margin-top: 0.1rem; }
.term__def { color: var(--fog-300); font-size: 0.95rem; margin-top: 0.7rem; line-height: 1.6; }
.term.is-hidden { display: none; }
.glossary__empty { grid-column: 1/-1; padding: 3rem; text-align: center; color: var(--muted); }

/* --------------------------------------------------------------------
   13. Lexikon
   -------------------------------------------------------------------- */
.lexikon__sub { margin-top: clamp(2.5rem, 5vw, 4rem); }
.lexikon__subhead { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.lexikon__subhead .rune { font-size: 1.3rem; }
.lexikon__subtitle { font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem); }

.places {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.place {
  position: relative;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  transition: transform .5s var(--ease-out), border-color .5s var(--ease);
}
.place:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--bronze) 50%, transparent); }
.place__img {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  filter: saturate(0.9) brightness(0.6);
  transition: transform 1.2s var(--ease-out), filter .6s var(--ease);
}
.place:hover .place__img { transform: scale(1.06); filter: saturate(1) brightness(0.7); }
.place::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,10,11,0.15) 0%, rgba(7,10,11,0.4) 45%, rgba(7,10,11,0.92) 100%);
}
.place__body { padding: 1.6rem 1.5rem; }
.place__kicker { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze); }
.place__name { font-size: 1.5rem; margin-top: 0.3rem; }
.place__on { font-style: italic; color: var(--steel-bright); font-size: 0.88rem; margin-top: 0.1rem; }
.place__text { color: var(--fog-300); font-size: 0.92rem; margin-top: 0.7rem; line-height: 1.6; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.fact {
  border: 1px solid var(--ink-700);
  border-top: 2px solid color-mix(in srgb, var(--bronze) 55%, transparent);
  background: linear-gradient(180deg, var(--ink-750), var(--ink-800));
  padding: 1.7rem 1.5rem;
  border-radius: var(--radius);
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.fact:hover { transform: translateY(-3px); border-top-color: var(--bronze); }
.fact__head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem; }
.fact__head .rune { font-size: 1.1rem; }
.fact__name { font-size: 1.2rem; }
.fact__when { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel); margin-left: auto; }
.fact__text { color: var(--fog-300); font-size: 0.93rem; line-height: 1.66; }

/* --------------------------------------------------------------------
   14. Author
   -------------------------------------------------------------------- */
.author__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 880px) { .author__grid { grid-template-columns: 0.8fr 1.2fr; } }
.author__media {
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.author__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(0.8); }
.author__media figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 1.2rem;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fog-300);
  background: linear-gradient(180deg, transparent, rgba(7,10,11,0.9));
}
.author__name { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); }
.author__quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
  font-style: italic;
  font-size: clamp(1.2rem, 0.9rem + 1.2vw, 1.7rem);
  color: var(--fog-100);
  line-height: 1.35;
  margin-block: 1rem 1.6rem;
}

/* --------------------------------------------------------------------
   15. CTA / newsletter
   -------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.cta__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  filter: saturate(0.7) brightness(0.32);
}
.cta::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(70% 90% at 50% 50%, rgba(7,10,11,0.65), var(--ink-900));
}
.signup {
  display: flex; gap: 0.7rem; max-width: 480px; margin: 2rem auto 0; flex-wrap: wrap; justify-content: center;
}
.signup input {
  flex: 1 1 220px;
  background: color-mix(in srgb, var(--ink-900) 60%, transparent);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  padding: 0.95em 1.2em;
  color: var(--fog-100);
}
.signup input:focus { outline: none; border-color: var(--bronze); }
.signup input::placeholder { color: var(--fog-500); }
.cta__fineprint { font-size: 0.78rem; color: var(--fog-500); margin-top: 1.2rem; }

/* --------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-900);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand .brand { font-size: 1.5rem; margin-bottom: 1rem; }
.footer__tag { color: var(--muted); max-width: 38ch; font-size: 0.95rem; }
.footer__coltitle { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bronze); margin-bottom: 1.2rem; }
.footer__nav li { margin-bottom: 0.7rem; }
.footer__nav a { color: var(--fog-300); font-size: 0.95rem; transition: color .3s var(--ease); }
.footer__nav a:hover { color: var(--bronze-bright); }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--ink-700);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--fog-500);
}
.footer__runes { font-family: var(--font-rune); color: var(--ink-600); letter-spacing: 0.4em; font-size: 1.1rem; }

/* --------------------------------------------------------------------
   17. Reveal animations
   -------------------------------------------------------------------- */
/* Only hide reveal elements when JS is available (html.js, set synchronously in
   <head>). Without JS — or if the script fails — the content stays fully visible. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------
   18. Mobile nav panel
   -------------------------------------------------------------------- */
@media (max-width: 919px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    background: color-mix(in srgb, var(--ink-900) 97%, transparent);
    backdrop-filter: blur(8px);
    transform: translateY(-100%);
    transition: transform .6s var(--ease-out);
    z-index: 999;
  }
  body.menu-open .nav { transform: translateY(0); }
  .nav__list { flex-direction: column; gap: 1.6rem; text-align: center; }
  .nav__link { font-size: 1.1rem; }
}

/* --------------------------------------------------------------------
   19. Bilingual demo visibility (preview only)
   -------------------------------------------------------------------- */
html[data-lang="de"] [lang="en"] { display: none !important; }
html[data-lang="en"] [lang="de"] { display: none !important; }

/* --------------------------------------------------------------------
   19b. WordPress core & accessibility utilities
   -------------------------------------------------------------------- */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; padding: 0; overflow: hidden;
  position: absolute !important; word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: var(--bronze); color: var(--ink-900);
  clip: auto; clip-path: none; height: auto; width: auto;
  display: block; left: 1rem; top: 1rem; padding: 0.7em 1.2em;
  z-index: 100000; border-radius: var(--radius); font-weight: 600;
}
.alignwide { width: min(100%, var(--container)); margin-inline: auto; }
.alignfull { width: 100%; }
.aligncenter { display: block; margin-inline: auto; }
.alignleft { float: left; margin: 0.4rem 1.6rem 1rem 0; }
.alignright { float: right; margin: 0.4rem 0 1rem 1.6rem; }
.wp-caption-text, figcaption { font-size: 0.82rem; color: var(--muted); margin-top: 0.6rem; font-style: italic; }
.prose img { border-radius: var(--radius); }
.prose blockquote {
  border-left: 2px solid var(--bronze);
  padding-left: 1.4rem; margin: 1.6rem 0; font-style: italic; color: var(--fog-100);
}
/* Body headings: relax the tight display line-height (1.04) used by the hero. */
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
  line-height: 1.22;
  margin-top: 1.9em;
  margin-bottom: 0.5em;
  text-wrap: balance;
}
.prose h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); }
.prose h3 { font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.55rem); }
.prose h4 { font-size: 1.15rem; }
.prose h5, .prose h6 { font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bronze); }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 1rem 0 1rem 1.4rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4rem; }
.prose li::marker { color: var(--bronze); }

.pagination .page-numbers,
.nav-links .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.4em; height: 2.4em; padding: 0 0.6em; margin: 0 0.15em;
  border: 1px solid var(--ink-line); border-radius: var(--radius);
  color: var(--fog-300); transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.pagination .page-numbers:hover { color: var(--fog-100); border-color: var(--fog-500); }
.pagination .page-numbers.current { background: var(--bronze); color: var(--ink-900); border-color: var(--bronze); }

/* --------------------------------------------------------------------
   20. Reduced motion & print
   -------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .progress__fill { transform: scaleX(1); }
  .hero__bg { transform: none; }
}
