/* ═══════════════════════════════════════════════════════════════════
   WhispersRed ASMR — stylesheet
   Editorial reading-room. Nocturnal. All-serif. Slow.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Design tokens ─────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --bg:          #0d0807;     /* warm near-black ground */
  --bg-elev:    #141010;      /* slightly lifted surface */
  --bg-light:   #ede4d6;      /* parchment panel (newsletter) */

  /* Ink */
  --ink:        #ede4d6;      /* warm parchment */
  --ink-muted:  #9c8f80;      /* quiet secondary */
  --ink-faint:  #5a4f46;      /* tertiary / captions */
  --ink-dark:   #2a1b15;      /* ink on parchment */
  --ink-dark-muted: #6b584c;

  /* Brand */
  --red:        #8b1e28;      /* deep oxblood — signature */
  --red-bright: #b84437;      /* terracotta — hover/accent */
  --gold:       #c9a56b;      /* muted antique gold — sparingly */

  /* Lines */
  --line:       #241a18;
  --line-warm:  #3a2824;

  /* Space scale — rem-based, fluid-friendly */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;
  --sp-40: 10rem;

  /* Widths */
  --max-wide: 80rem;     /* full page gutter */
  --max-text: 38rem;     /* prose reading column */
  --max-hero: 64rem;

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body:    "Newsreader", "Georgia", serif;

  /* Fraunces variation — organic, hand-cut, slightly quirky */
  --frx-display:  "opsz" 144, "SOFT" 80, "WONK" 1;
  --frx-body:     "opsz" 14,  "SOFT" 40, "WONK" 0;

  /* Motion */
  --ease-slow:  cubic-bezier(0.2, 0.9, 0.2, 1);
  --ease-soft:  cubic-bezier(0.4, 0.0, 0.2, 1);
  --dur-slow:   800ms;
  --dur-med:    500ms;
  --dur-fast:   250ms;

  /* Radii — very subtle. This is not a SaaS product. */
  --r-sm: 2px;
  --r-md: 4px;
}

/* ─── Reset + base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;      /* 17px — comfortable long-form */
  line-height: 1.65;
  font-weight: 380;
  font-variation-settings: var(--frx-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Grain overlay — decorative, very subtle, fixed over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.85 0 0 0 0 0.75 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* Warm atmospheric gradient behind everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(139, 30, 40, 0.18), transparent 70%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(201, 165, 107, 0.05), transparent 70%);
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-med) var(--ease-soft);
}

p { margin: 0 0 1.25em 0; }
p:last-child { margin-bottom: 0; }

::selection {
  background: var(--red);
  color: var(--ink);
}

/* Skip to main for keyboard users */
main { outline: none; }

/* ─── Typography ────────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  font-weight: 500;
  margin: 0 0 var(--sp-6) 0;
}
.section-label--light { color: rgba(42, 27, 21, 0.55); }

.section-title {
  font-family: var(--font-display);
  font-variation-settings: var(--frx-display);
  font-weight: 340;
  font-style: normal;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 var(--sp-8) 0;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}

.section-title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--red-bright);
}

.section-title--wide  { max-width: 30ch; }
.section-title--small { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }

/* ─── Layout containers ─────────────────────────────────────────── */
.site-head,
.hero,
.about,
.book,
.healing,
.archive,
.whispaws,
.newsletter,
.site-foot {
  padding-left:  clamp(1.25rem, 5vw, 4rem);
  padding-right: clamp(1.25rem, 5vw, 4rem);
}

/* ─── Site header ───────────────────────────────────────────────── */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-6);
  background: linear-gradient(to bottom, var(--bg) 60%, transparent);
  backdrop-filter: blur(4px);
}

.wordmark {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24, "SOFT" 60, "WONK" 1;
  font-size: 1.5rem;
  font-weight: 350;
  letter-spacing: -0.01em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
}
.wordmark__whispers { font-style: italic; font-weight: 320; opacity: 0.92; }
.wordmark__red      { color: var(--red-bright); font-weight: 400; margin-left: 0.1em; }
.wordmark--small    { font-size: 1.25rem; }

.site-nav {
  display: flex;
  gap: clamp(var(--sp-4), 3vw, var(--sp-12));
  align-items: center;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.site-nav a {
  color: var(--ink-muted);
  padding: var(--sp-2) 0;
  position: relative;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--red-bright);
  transition: right var(--dur-slow) var(--ease-slow);
}
.site-nav a:hover::after { right: 0; }

.site-nav__cta {
  color: var(--ink) !important;
  border: 1px solid var(--line-warm);
  padding: var(--sp-2) var(--sp-4) !important;
  border-radius: 999px;
  transition: all var(--dur-med) var(--ease-soft);
}
.site-nav__cta:hover {
  border-color: var(--red-bright);
  background: rgba(184, 68, 55, 0.08);
}
.site-nav__cta::after { display: none !important; }

/* Hide text nav on small screens (keep CTA) */
@media (max-width: 640px) {
  .site-nav a:not(.site-nav__cta) { display: none; }
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  border: 1px solid transparent;
  transition: all var(--dur-med) var(--ease-soft);
  will-change: transform;
}
.btn__arrow {
  display: inline-block;
  transition: transform var(--dur-med) var(--ease-soft);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--red);
  color: var(--ink);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-warm);
}
.btn--ghost:hover {
  border-color: var(--ink-muted);
  color: var(--ink);
  background: rgba(237, 228, 214, 0.04);
}

.btn--on-light {
  /* Used inside the parchment newsletter block */
  background: var(--ink-dark);
  color: var(--bg-light);
  border-color: var(--ink-dark);
}
.btn--on-light:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ─── Eyebrow + reveals ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-weight: 500;
  margin: 0 0 var(--sp-12) 0;
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 12px var(--red-bright);
  animation: dot-pulse 3.2s var(--ease-soft) infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: reveal-in 1.4s var(--ease-slow) forwards;
}
.reveal-1 { animation-delay: 0.15s; }
.reveal-2 { animation-delay: 0.35s; }
.reveal-3 { animation-delay: 0.70s; }
.reveal-4 { animation-delay: 1.05s; }
.reveal-5 { animation-delay: 1.40s; }
@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Breath-line divider ───────────────────────────────────────── */
/* A thin line that expands and contracts at box-breathing rhythm. */
.breath-line {
  display: block;
  width: min(100% - 2 * clamp(1.25rem, 5vw, 4rem), var(--max-hero));
  height: 1px;
  margin: var(--sp-24) auto;
  background: var(--line-warm);
  position: relative;
  overflow: visible;
}
.breath-line::before {
  content: "";
  position: absolute;
  top: -0.5px;
  left: 50%;
  height: 2px;
  width: 30%;
  background: linear-gradient(90deg, transparent 0%, var(--red-bright) 50%, transparent 100%);
  transform: translateX(-50%) scaleX(0.15);
  opacity: 0.5;
  animation: breath 14s var(--ease-soft) infinite;
  transform-origin: center;
  filter: blur(0.5px);
}
@keyframes breath {
  /* 4s inhale → 4s hold → 6s exhale — box breathing */
  0%    { transform: translateX(-50%) scaleX(0.15); opacity: 0.3; }
  28%   { transform: translateX(-50%) scaleX(1);    opacity: 0.9; }
  58%   { transform: translateX(-50%) scaleX(1);    opacity: 0.9; }
  100%  { transform: translateX(-50%) scaleX(0.15); opacity: 0.3; }
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding-top: clamp(var(--sp-16), 12vh, var(--sp-32));
  padding-bottom: clamp(var(--sp-16), 10vh, var(--sp-24));
}

.hero__title {
  font-family: var(--font-display);
  font-variation-settings: var(--frx-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 var(--sp-8) 0;
  color: var(--ink);
  max-width: 18ch;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--red-bright);
  font-weight: 340;
}

.hero__lede {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: var(--max-text);
  font-weight: 360;
  margin: 0 0 var(--sp-12) 0;
  text-wrap: pretty;
}
.hero__lede cite { font-style: italic; color: var(--red-bright); font-weight: 380; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-16);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.hero__meta strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24, "SOFT" 40, "WONK" 0;
  font-weight: 420;
  letter-spacing: -0.005em;
}
.hero__meta-dot { color: var(--ink-faint); }

/* ─── About ─────────────────────────────────────────────────────── */
.about {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-16);
}
.about__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.25fr;
  gap: clamp(var(--sp-8), 6vw, var(--sp-20));
  align-items: start;
}
@media (max-width: 820px) {
  .about__inner { grid-template-columns: 1fr; }
}

.about__portrait { position: relative; }
.portrait {
  margin: 0;
  position: relative;
}
/* Image container frame — holds both the photo and its fallback plate */
.portrait::before {
  content: "";
  position: absolute;
  top: -12px; left: -12px;
  width: 100%; height: calc(100% - 1.5rem);
  border: 1px solid var(--line-warm);
  border-radius: var(--r-md);
  pointer-events: none;
  z-index: 0;
}

/* Fallback plate — shows when no image file is present */
.portrait__plate {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(139, 30, 40, 0.18), transparent 70%),
    linear-gradient(155deg, #1a120f 0%, #2a1b15 50%, #0f0806 100%);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.portrait__plate::before {
  /* soft vertical sheen, like old photo paper */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(237, 228, 214, 0.025) 50%, transparent 70%);
  pointer-events: none;
}
.portrait__plate::after {
  /* faint frame inside the plate */
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(201, 165, 107, 0.15);
  border-radius: 2px;
  pointer-events: none;
}
.portrait__monogram {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--red-bright);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  text-align: center;
  opacity: 0.85;
}
.portrait__flourish {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 18, "SOFT" 60, "WONK" 0;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: var(--sp-4);
  display: block;
  text-align: center;
}
.portrait__flourish em {
  font-style: normal;
  color: var(--red-bright);
  margin-left: 0.15em;
}

/* The real photo, overlaid on top of the plate when present.
   Only injected by JS after a successful image probe — see main.js. */
.portrait__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
  filter: saturate(0.85) contrast(1.05);
  z-index: 2;
  animation: fade-in var(--dur-slow) var(--ease-soft) both;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.portrait__caption {
  margin-top: var(--sp-4);
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-style: italic;
  letter-spacing: 0.01em;
}

.about__text p {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: var(--max-text);
  color: var(--ink);
  font-weight: 370;
}

/* ─── Book ──────────────────────────────────────────────────────── */
.book {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-24);
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(var(--sp-8), 6vw, var(--sp-20));
  align-items: center;
}
@media (max-width: 820px) {
  .book { grid-template-columns: 1fr; gap: var(--sp-12); }
}

.book__cover {
  position: relative;
  perspective: 1200px;
  justify-self: center;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 2 / 3;
}

/* Fallback: typographic book-cover plate. Real cover overlays when present. */
.book__plate {
  position: absolute;
  inset: 0;
  border-radius: 2px 6px 6px 2px;
  background:
    radial-gradient(ellipse 120% 60% at 50% 20%, rgba(201, 165, 107, 0.14), transparent 70%),
    linear-gradient(160deg, var(--red) 0%, #5b1218 60%, #3d0d11 100%);
  box-shadow:
    -6px 0 0 -2px #1a0608,
    -1px 0 0 0 rgba(0,0,0,0.6),
    0 30px 60px -20px rgba(0, 0, 0, 0.8),
    0 10px 30px -10px rgba(139, 30, 40, 0.25);
  transform: rotate(-2deg);
  transition: transform var(--dur-slow) var(--ease-slow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.75rem 1.5rem 1.75rem;
  isolation: isolate;
  overflow: hidden;
}
.book__plate::before {
  /* decorative top rule */
  content: "";
  position: absolute;
  top: 0; left: 1.75rem; right: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 107, 0.4), transparent);
  margin-top: 1rem;
}
.book__plate::after {
  /* decorative bottom rule */
  content: "";
  position: absolute;
  bottom: 0; left: 1.75rem; right: 1.75rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 107, 0.4), transparent);
  margin-bottom: 1rem;
}
.book__plate-eyebrow {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 18, "SOFT" 60, "WONK" 0;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.book__plate-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.75rem, 4.2vw, 2.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #f4e8d2;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book__plate-author {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 18, "SOFT" 40, "WONK" 0;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  opacity: 0.85;
}

.book__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px 6px 6px 2px;
  box-shadow:
    -6px 0 0 -2px #1a0608,
    -1px 0 0 0 rgba(0,0,0,0.6),
    0 30px 60px -20px rgba(0, 0, 0, 0.8),
    0 10px 30px -10px rgba(139, 30, 40, 0.25);
  transform: rotate(-2deg);
  transition: transform var(--dur-slow) var(--ease-slow);
  z-index: 2;
  animation: fade-in var(--dur-slow) var(--ease-soft) both;
}

.book__cover:hover .book__plate,
.book__cover:hover .book__photo {
  transform: rotate(0deg) translateY(-4px);
}

.book__subtitle {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "SOFT" 60, "WONK" 1;
  font-style: italic;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  color: var(--ink-muted);
  margin: -0.5rem 0 var(--sp-8) 0;
  font-weight: 360;
}

.book__text p {
  font-size: 1.0625rem;
  max-width: var(--max-text);
  color: var(--ink);
  line-height: 1.7;
}

.book__whisper {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 18, "SOFT" 80, "WONK" 1;
  font-style: italic;
  font-size: 0.95rem !important;
  color: var(--ink-muted) !important;
  padding-left: var(--sp-4);
  border-left: 1px solid var(--line-warm);
  margin: var(--sp-6) 0 var(--sp-8) 0 !important;
  max-width: 32ch !important;
  letter-spacing: 0.005em;
}

/* ─── Sound healing ─────────────────────────────────────────────── */
.healing {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-16);
}

.healing__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(var(--sp-12), 8vw, var(--sp-20));
  align-items: start;
}
@media (max-width: 820px) {
  .healing__grid { grid-template-columns: 1fr; }
}

.healing__col p {
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: var(--max-text);
  color: var(--ink);
}

.healing__col--aside {
  padding-top: var(--sp-2);
}

.credentials {
  margin: 0 0 var(--sp-8) 0;
  padding: 0;
  border-top: 1px solid var(--line-warm);
}
.credentials__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--line-warm);
  gap: var(--sp-4);
  align-items: baseline;
}
.credentials__row dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  font-weight: 500;
  margin: 0;
}
.credentials__row dd {
  margin: 0;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 18, "SOFT" 60, "WONK" 0;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 360;
}

/* ─── Archive ───────────────────────────────────────────────────── */
.archive {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-16);
}
.archive__head {
  margin-bottom: var(--sp-16);
}
.archive__lede {
  max-width: var(--max-text);
  color: var(--ink-muted);
  font-size: 1.0625rem;
}

.archive__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-8);
}
.archive__item a {
  display: block;
}
.archive__item a:hover .archive__item-title {
  color: var(--red-bright);
}

.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #1a120f 0%, #2a1b15 50%, #0f0806 100%);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: var(--sp-4);
  transition: transform var(--dur-slow) var(--ease-slow);
}
.thumb::after {
  /* subtle vignette */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 3;
}

/* Fallback plates — different gradient per video so the three cards feel distinct */
.thumb__plate {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.thumb__plate--1 {
  background:
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(139, 30, 40, 0.35), transparent 70%),
    linear-gradient(160deg, #2a1b15 0%, #0f0806 100%);
}
.thumb__plate--1::before {
  /* rain streaks */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    105deg,
    transparent 0 12px,
    rgba(237, 228, 214, 0.04) 12px 13px
  );
}
.thumb__plate--2 {
  background:
    radial-gradient(ellipse 40% 60% at 70% 50%, rgba(201, 165, 107, 0.2), transparent 70%),
    linear-gradient(180deg, #1a120f 0%, #0a0403 100%);
}
.thumb__plate--2::before {
  /* moon-like halo */
  content: "";
  position: absolute;
  top: 30%;
  right: 20%;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 228, 214, 0.1) 0%, transparent 60%);
}
.thumb__plate--3 {
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 165, 107, 0.18), transparent 60%),
    linear-gradient(145deg, #241a18 0%, #0f0806 100%);
}
.thumb__plate--3::before {
  /* concentric rings — sound bath */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 15%,
    rgba(201, 165, 107, 0.08) 15.5%,
    transparent 16%,
    transparent 28%,
    rgba(201, 165, 107, 0.06) 28.5%,
    transparent 29%,
    transparent 42%,
    rgba(201, 165, 107, 0.04) 42.5%,
    transparent 43%
  );
}

.thumb__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
  z-index: 2;
  animation: fade-in var(--dur-slow) var(--ease-soft) both;
}
.thumb__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(13, 8, 7, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(237, 228, 214, 0.2);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1rem;
  padding-left: 3px;
  z-index: 4;
  transition: all var(--dur-med) var(--ease-soft);
}
.archive__item a:hover .thumb__play {
  background: var(--red);
  border-color: var(--red);
  transform: translate(-50%, -50%) scale(1.08);
}
.archive__item a:hover .thumb { transform: translateY(-2px); }

.thumb__duration {
  position: absolute;
  bottom: var(--sp-2);
  right: var(--sp-2);
  background: rgba(13, 8, 7, 0.8);
  backdrop-filter: blur(4px);
  color: var(--ink);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.04em;
  z-index: 4;
}

.archive__item-title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24, "SOFT" 60, "WONK" 0;
  font-size: 1.25rem;
  font-weight: 380;
  line-height: 1.25;
  margin: 0 0 var(--sp-2) 0;
  color: var(--ink);
  text-wrap: balance;
  transition: color var(--dur-med) var(--ease-soft);
}
.archive__item-meta {
  font-size: 0.8rem;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.archive__foot {
  margin-top: var(--sp-16);
  text-align: center;
}

/* ─── Whispaws ──────────────────────────────────────────────────── */
.whispaws {
  max-width: var(--max-hero);
  margin: 0 auto;
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-24);
  text-align: center;
}
.whispaws__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 42ch;
  margin: 0 auto var(--sp-8) auto;
  text-wrap: pretty;
}
.whispaws .section-title { margin-left: auto; margin-right: auto; }

.link-underline {
  color: var(--ink);
  border-bottom: 1px solid var(--line-warm);
  padding-bottom: 2px;
  transition: all var(--dur-med) var(--ease-soft);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.link-underline:hover {
  color: var(--red-bright);
  border-bottom-color: var(--red-bright);
}

/* ─── Newsletter (primary CTA) ──────────────────────────────────── */
.newsletter {
  max-width: var(--max-wide);
  margin: var(--sp-24) auto 0 auto;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.newsletter__inner {
  background: var(--bg-light);
  color: var(--ink-dark);
  border-radius: var(--r-md);
  padding: clamp(var(--sp-12), 8vw, var(--sp-24));
  position: relative;
  overflow: hidden;
}
.newsletter__inner::before {
  /* warm parchment texture glow */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(201, 165, 107, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(139, 30, 40, 0.10), transparent 70%);
  pointer-events: none;
}
.newsletter__inner > * { position: relative; z-index: 1; }

.newsletter__title {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.02;
  font-weight: 320;
  letter-spacing: -0.015em;
  color: var(--ink-dark);
  margin: 0 0 var(--sp-6) 0;
  max-width: 18ch;
  text-wrap: balance;
}

.newsletter__body {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-dark-muted);
  max-width: 44ch;
  margin: 0 0 var(--sp-10) 0;
  font-weight: 400;
}

.newsletter__form {
  max-width: 36rem;
  margin-top: var(--sp-8);
}
.newsletter__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-dark-muted);
  font-weight: 500;
  margin-bottom: var(--sp-2);
  display: block;
}
.newsletter__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: stretch;
}
.newsletter__input {
  flex: 1 1 16rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(42, 27, 21, 0.3);
  padding: var(--sp-4) 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--ink-dark);
  border-radius: 0;
  transition: border-color var(--dur-med) var(--ease-soft);
  min-width: 0;
}
.newsletter__input::placeholder { color: rgba(42, 27, 21, 0.35); font-style: italic; }
.newsletter__input:focus {
  outline: none;
  border-bottom-color: var(--red);
}
.newsletter__fineprint {
  margin-top: var(--sp-4);
  font-size: 0.85rem;
  color: var(--ink-dark-muted);
  font-style: italic;
}

/* ─── Footer ────────────────────────────────────────────────────── */
.site-foot {
  max-width: var(--max-wide);
  margin: var(--sp-24) auto 0 auto;
  padding-top: var(--sp-12);
  padding-bottom: var(--sp-8);
  border-top: 1px solid var(--line-warm);
}
.site-foot__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-8);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--line);
}
.site-foot__tagline {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 18, "SOFT" 60, "WONK" 1;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-muted);
  margin: var(--sp-2) 0 0 0;
}

.site-foot__nav {
  display: flex;
  gap: var(--sp-8);
  align-items: center;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.site-foot__nav a {
  color: var(--ink-muted);
  position: relative;
}
.site-foot__nav a:hover { color: var(--red-bright); }

.site-foot__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-8);
  justify-content: space-between;
  padding-top: var(--sp-8);
}
.site-foot__copy {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin: 0;
  letter-spacing: 0.04em;
}
.site-foot__disclaimer {
  font-size: 0.75rem;
  color: var(--ink-faint);
  max-width: 52ch;
  margin: 0;
  line-height: 1.55;
  font-style: italic;
  letter-spacing: 0.01em;
}
.site-foot__disclaimer a {
  color: var(--ink-muted);
  border-bottom: 1px dotted var(--ink-faint);
}
.site-foot__disclaimer a:hover { color: var(--red-bright); border-bottom-color: var(--red-bright); }

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

/* ─── Narrow-screen tweaks ──────────────────────────────────────── */
@media (max-width: 540px) {
  .hero__title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .newsletter__row { flex-direction: column; }
  .newsletter__input { flex: 1 1 auto; width: 100%; }
  .site-foot__top { flex-direction: column; gap: var(--sp-6); }
  .site-foot__bottom { flex-direction: column; }
}
