/* schlafnotizen — bedside journal · dark moody warm */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

html { color-scheme: dark only; }

:root {
  color-scheme: dark only;
  --night: #0e1a2e;
  --night-2: #142238;
  --night-3: #1e2e4a;
  --linen: #f5ede0;
  --linen-dim: #d4c8b3;
  --linen-mute: #948876;
  --rose: #c87a8a;
  --rose-deep: #a55260;
  --rose-soft: #e8c2cc;
  --gold-leaf: #d4a85a;
  --rule: rgba(245, 237, 224, 0.10);
  --rule-strong: rgba(245, 237, 224, 0.22);
  --serif: "Lora", "Garamond", serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  --w-essay: 680px;
  --w-shell: 1100px;
  --w-wide: 1240px;
  --gap: clamp(1rem, 2.5vw, 1.6rem);
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.72;
  color: var(--linen-dim);
  background:
    radial-gradient(ellipse at 12% 18%, rgba(200, 122, 138, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 88% 88%, rgba(212, 168, 90, 0.04) 0%, transparent 55%),
    var(--night);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--rose); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; text-decoration-color: var(--rose-deep); transition: color .25s; }
a:hover { color: var(--rose-soft); }
button { font: inherit; cursor: pointer; }
::selection { background: var(--rose); color: var(--night); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--linen); margin: 0; line-height: 1.2; letter-spacing: -0.012em; }
em { font-style: italic; color: var(--rose-soft); }
strong { color: var(--linen); font-weight: 700; }

/* ============================================= TOP STRIP */
.note-stripe {
  background: var(--night-2);
  border-bottom: 1px solid var(--rule);
  padding: 0.7em var(--gap);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--linen-mute);
  text-align: center;
  font-weight: 400;
}
.note-stripe strong { color: var(--gold-leaf); font-weight: 600; }

/* ============================================= MASTHEAD */
.note-head {
  text-align: center;
  padding: 3em var(--gap) 2em;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.note-head::after {
  content: "✦";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--night);
  color: var(--rose);
  font-size: 20px;
  padding: 0 1em;
}
.note-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--linen);
  letter-spacing: -0.022em;
  line-height: 1;
  display: inline-block;
  text-decoration: none !important;
}
.note-mark::first-letter {
  color: var(--rose);
}
.note-sub {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--linen-mute);
  margin-top: 0.7em;
}
.note-sub span { color: var(--gold-leaf); margin: 0 0.5em; }

/* ============================================= NAV */
.note-nav {
  border-bottom: 1px solid var(--rule);
}
.note-nav ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--w-wide);
}
.note-nav a {
  display: inline-block;
  padding: 1.1em 1.2em;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--linen-dim);
  text-decoration: none !important;
  transition: color .2s;
}
.note-nav a:hover { color: var(--rose); }

/* ============================================= LANDING (cover essay) */
.opening {
  max-width: var(--w-essay);
  margin: 0 auto;
  padding: 4em var(--gap) 2.5em;
  text-align: center;
}
.opening-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.6em;
}
.opening-eyebrow::before, .opening-eyebrow::after {
  content: "—";
  margin: 0 0.7em;
  color: var(--linen-mute);
}
.opening-h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  color: var(--linen);
  margin: 0 0 1em;
  letter-spacing: -0.022em;
}
.opening-h1 .roman { font-style: normal; color: var(--rose); }
.opening-lead {
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--linen-dim);
  margin: 0 0 1.4em;
  max-width: 38em;
  margin-left: auto;
  margin-right: auto;
}
.opening-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-leaf);
  margin-top: 1.5em;
}
.opening-signature::before { content: "— "; color: var(--linen-mute); }

/* ============================================= STATS PANEL */
.stats {
  max-width: var(--w-shell);
  margin: 0 auto;
  padding: 0 var(--gap) 3em;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.8em 0;
}
.stats-cell {
  text-align: center;
  border-right: 1px solid var(--rule);
}
.stats-cell:last-child { border-right: 0; }
.stats-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--rose);
  line-height: 1;
}
.stats-lbl {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--linen-mute);
  font-weight: 500;
  margin-top: 0.6em;
}

/* ============================================= ENTRIES (long-form list) */
.entries {
  max-width: var(--w-essay);
  margin: 0 auto;
  padding: 2em var(--gap) 3em;
}
.entries-banner {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-leaf);
  text-align: center;
  margin-bottom: 0.6em;
}
.entries-h {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--linen);
  text-align: center;
  margin: 0 0 2em;
  letter-spacing: -0.018em;
}
.entry {
  border-bottom: 1px solid var(--rule);
  padding: 1.8em 0;
  text-decoration: none !important;
  display: block;
  color: inherit;
  transition: opacity .2s;
}
.entry:hover { opacity: 0.78; }
.entry-date {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--linen-mute);
  margin-bottom: 0.7em;
}
.entry-date span { color: var(--rose); margin: 0 0.5em; }
.entry-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.25;
  color: var(--linen);
  letter-spacing: -0.012em;
  margin: 0 0 0.5em;
}
.entry-excerpt {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--linen-dim);
  margin: 0 0 0.7em;
  font-style: italic;
}
.entry-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--linen-mute);
  font-weight: 500;
}
.entry-meta .arrow { color: var(--rose); }

/* ============================================= ROOMS (categories) */
.rooms {
  max-width: var(--w-shell);
  margin: 4em auto 0;
  padding: 0 var(--gap);
}
.rooms-banner {
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-leaf);
  margin-bottom: 0.6em;
}
.rooms-h {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 2.2rem;
  text-align: center;
  margin: 0 0 2em;
  color: var(--linen);
  letter-spacing: -0.018em;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4em;
}
.room {
  background: var(--night-2);
  border: 1px solid var(--rule);
  padding: 1.6em 1.5em 1.4em;
  text-decoration: none !important;
  color: inherit;
  transition: border-color .25s, transform .25s;
  display: block;
}
.room:hover {
  border-color: var(--rose);
  transform: translateY(-3px);
}
.room-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.5em;
}
.room-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--linen);
  letter-spacing: -0.012em;
  line-height: 1.15;
}
.room-count {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--linen-mute);
  margin-top: 1em;
}
.room-count strong { color: var(--gold-leaf); font-weight: 600; }

/* ============================================= ESSAY (single post) */
.essay {
  max-width: var(--w-essay);
  margin: 0 auto;
  padding: 2em var(--gap) 4em;
}
.essay-back {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  text-decoration: none !important;
  margin-bottom: 2.5em;
}
.essay-back::before { content: "← "; }
.essay-cat {
  text-align: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-leaf);
  margin-bottom: 1.2em;
}
.essay-h1 {
  text-align: center;
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  color: var(--linen);
  letter-spacing: -0.022em;
  margin: 0 0 1em;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.essay-meta {
  text-align: center;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--linen-mute);
  padding: 1.2em 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2.5em;
  font-weight: 500;
}
.essay-meta span { margin: 0 1em; }
.essay-meta strong { color: var(--rose); font-weight: 600; }

.essay-body {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.78;
  color: var(--linen-dim);
}
.essay-body > p:first-of-type {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--linen);
  text-align: center;
  margin-bottom: 2em;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.5em;
}
.essay-body p { margin: 0 0 1.3em; }
.essay-body h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--linen);
  letter-spacing: -0.018em;
  margin: 2.4em 0 0.7em;
  position: relative;
  padding-top: 1.5em;
}
.essay-body h2::before {
  content: "✦";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--rose);
  font-size: 14px;
}
.essay-body h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--linen);
  margin: 1.8em 0 0.5em;
}
.essay-body strong { color: var(--linen); font-weight: 600; }
.essay-body em { color: var(--rose-soft); font-style: italic; }
.essay-body a {
  color: var(--rose);
  text-decoration: underline;
  text-decoration-color: var(--rose-deep);
  text-underline-offset: 3px;
}
.essay-body ul, .essay-body ol { padding-left: 1.4em; margin: 1em 0 1.4em; }
.essay-body li { margin: 0.3em 0; }
.essay-body ul li::marker { color: var(--rose); }
.essay-body blockquote {
  border-left: 2px solid var(--rose);
  margin: 2em 0;
  padding: 0.4em 0 0.4em 1.3em;
  font-style: italic;
  color: var(--linen);
}

/* ============================================= TLDR (testsieger) */
.tldr {
  margin: 2.5em 0;
  background: var(--night-2);
  border: 1px solid var(--rose);
  border-radius: 0;
  padding: 0;
  position: relative;
}
.tldr-band {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  text-align: center;
  border-bottom: 1px solid var(--rule);
  padding: 0.7em;
}
.tldr-band::before { content: "✦  "; }
.tldr-band::after { content: "  ✦"; }
.tldr-body {
  padding: 1.6em 1.8em;
  text-align: center;
}
.tldr-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--linen);
  letter-spacing: -0.018em;
  margin: 0 0 0.5em;
}
.tldr-why {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--linen-dim);
  margin: 0 0 1em;
}
.tldr-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--linen-mute);
  margin-bottom: 1em;
  font-weight: 500;
}
.tldr-meta strong { color: var(--gold-leaf); font-weight: 600; }
.tldr-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--rose);
  color: var(--night);
  padding: 0.95em 1.5em;
  text-decoration: none !important;
  border: 0;
  border-radius: 0;
  transition: background .2s;
}
.tldr-cta:hover { background: var(--rose-soft); color: var(--night); }
.tldr-cta small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.2em;
  margin-top: 0.3em;
  opacity: 0.75;
}

/* ============================================= COMPARE */
.compare {
  margin: 2.5em 0;
  border: 1px solid var(--rule);
}
.compare-band {
  background: var(--night-3);
  color: var(--linen);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.75em 1.2em;
}
.compare table { width: 100%; border-collapse: collapse; font-family: var(--serif); font-size: 14px; }
.compare th, .compare td {
  padding: 0.95em 1em;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: baseline;
  color: var(--linen-dim);
}
.compare th {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  background: var(--night-2);
}
.compare td strong { color: var(--linen); font-weight: 600; }
.compare .c-score { font-family: var(--serif); font-style: italic; color: var(--rose); font-size: 1.2rem; }
.compare .c-score::after { content: " /10"; font-family: var(--sans); font-size: 9px; color: var(--linen-mute); letter-spacing: 0.06em; }
.compare a { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose); text-decoration: none !important; font-weight: 600; }
.compare small { display: block; font-size: 9px; color: var(--linen-mute); letter-spacing: 0.18em; margin-top: 0.3em; }

/* ============================================= PRODUCT BLOCK */
.product {
  margin: 2.5em 0;
  background: var(--night-2);
  border: 1px solid var(--rule);
  padding: 1.8em 1.8em 1.6em;
  position: relative;
}
.product::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--rose);
}
.product-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.2em;
  flex-wrap: wrap;
  margin-bottom: 0.8em;
  padding-bottom: 0.8em;
  border-bottom: 1px solid var(--rule);
}
.product-h {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--linen);
  margin: 0;
  letter-spacing: -0.012em;
}
.product-price {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-leaf);
  background: var(--night-3);
  padding: 0.35em 0.7em;
}
.product-score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6em;
  font-family: var(--serif);
  font-style: italic;
  margin-bottom: 1em;
}
.product-score-num { font-size: 2.2rem; color: var(--rose); line-height: 1; font-weight: 500; }
.product-score-lbl { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--linen-mute); font-weight: 500; }
.product-desc {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--linen-dim);
  margin: 0 0 1.2em;
}
.product-pros, .product-cons {
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
}
.product-pros-h, .product-cons-h {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.4em;
}
.product-pros-h { color: var(--rose-soft); }
.product-cons-h { color: var(--linen-mute); }
.product-pros li, .product-cons li {
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.5;
  padding: 0.3em 0 0.3em 1.2em;
  position: relative;
  color: var(--linen);
}
.product-pros li::before { content: "✦"; position: absolute; left: 0; color: var(--rose); }
.product-cons li::before { content: "○"; position: absolute; left: 0; color: var(--linen-mute); }
.product-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--night);
  background: var(--rose);
  padding: 0.85em 1.3em;
  margin-top: 0.6em;
  text-decoration: none !important;
}
.product-cta:hover { background: var(--rose-soft); }
.product-cta small {
  margin-left: 0.6em;
  font-size: 9px;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

/* ============================================= FAQ */
.faq {
  margin: 4em auto 0;
  max-width: var(--w-essay);
}
.faq-banner {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
  text-align: center;
  margin-bottom: 0.6em;
}
.faq-h {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  color: var(--linen);
  margin: 0 0 1.5em;
  letter-spacing: -0.018em;
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 1.2em 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--linen);
  position: relative;
  padding-right: 2em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  font-style: normal;
  font-size: 1.4em;
  color: var(--rose);
}
.faq-item[open] summary::after { content: "—"; font-size: 1em; line-height: 1.4; }
.faq-a {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--linen-dim);
  padding: 0.8em 0 0 1.2em;
  border-left: 1px solid var(--rule);
  margin-top: 0.6em;
}
.faq-a a { color: var(--rose); text-decoration: underline; text-decoration-color: var(--rose-deep); text-underline-offset: 3px; }

/* ============================================= AFF SHELF */
.aff-shelf {
  margin: 3em 0 0;
  border: 1px solid var(--rose);
  padding: 0;
}
.aff-shelf-band {
  background: var(--rose);
  color: var(--night);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.7em 1.2em;
  display: flex;
  justify-content: space-between;
}
.aff-shelf-disc {
  padding: 0.9em 1.2em;
  background: var(--night-2);
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.6;
  color: var(--linen-dim);
}
.aff-shelf-disc strong { color: var(--rose-soft); font-weight: 600; }
.aff-shelf-list { list-style: none; padding: 0; margin: 0; }
.aff-shelf-row {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  gap: 1em;
  align-items: center;
  padding: 1em 1.2em;
  border-bottom: 1px solid var(--rule);
}
.aff-shelf-row:last-child { border-bottom: 0; }
.aff-shelf-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rose);
  font-weight: 500;
}
.aff-shelf-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--linen);
  font-weight: 500;
}
.aff-shelf-tag {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--linen-mute);
  font-weight: 500;
}
.aff-shelf-go {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  text-decoration: none !important;
  border: 1px solid var(--rose);
  padding: 0.55em 0.9em;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.aff-shelf-go:hover { background: var(--rose); color: var(--night); }

/* ============================================= PAGE */
.page {
  max-width: var(--w-essay);
  margin: 3em auto;
  padding: 0 var(--gap);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--linen-dim);
}
.page h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--linen);
  text-align: center;
  margin: 0 0 1.5em;
  letter-spacing: -0.022em;
}
.page h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--rose);
  margin: 2em 0 0.5em;
}

/* ============================================= FOOTER */
.endnote {
  margin-top: 5em;
  border-top: 1px solid var(--rule);
  padding: 3em var(--gap) 1.5em;
  background: var(--night-2);
}
.endnote-inner {
  max-width: var(--w-shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3em;
}
.endnote-brand {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  color: var(--linen);
  letter-spacing: -0.022em;
}
.endnote-brand::first-letter { color: var(--rose); }
.endnote-intro {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.6;
  color: var(--linen-mute);
  margin: 1em 0 0;
  max-width: 30ch;
  font-style: italic;
}
.endnote h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin: 0 0 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--rule);
}
.endnote ul { list-style: none; margin: 0; padding: 0; }
.endnote li { padding: 0.3em 0; }
.endnote a {
  font-family: var(--serif);
  color: var(--linen-dim);
  font-size: 14px;
  text-decoration: none !important;
  font-style: italic;
}
.endnote a:hover { color: var(--rose); }
.endnote-bottom {
  max-width: var(--w-shell);
  margin: 3em auto 0;
  padding-top: 1.4em;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1em;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--linen-mute);
}
.endnote-bottom strong { color: var(--gold-leaf); font-weight: 600; }

@media (max-width: 800px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-cell:nth-child(2) { border-right: 0; }
  .stats-cell:nth-child(1), .stats-cell:nth-child(2) { border-bottom: 1px solid var(--rule); padding-bottom: 1.5em; }
  .stats-cell:nth-child(3), .stats-cell:nth-child(4) { padding-top: 1.5em; }
  .endnote-inner { grid-template-columns: 1fr 1fr; gap: 2em; }
  .aff-shelf-row { grid-template-columns: 30px 1fr auto; }
  .aff-shelf-tag { display: none; }
}
