/* ============================================================
   SoundPour - Stylesheet
   Editorial hospitality aesthetic: parchment, terracotta, calm.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300..900,0..100,0..1&family=Geist:wght@300..700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Colour - parchment & warmth */
  --paper:        #ECE3CF;
  --paper-deep:   #E1D5BB;
  --paper-soft:   #F2EBD8;
  --ink:          #2C1A1A;
  --ink-soft:     #5C4A3D;
  --ink-faint:    #8A6F50;
  --rule:         #B8A989;
  --rule-soft:    #D2C4A4;
  --terracotta:   #B85C38;
  --terracotta-deep: #9A4A2C;
  --moss:         #5A6B47;
  --cream:        #FFFDF7;

  /* Type */
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:  'Geist', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Subtle paper grain via SVG noise */
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17  0 0 0 0 0.10  0 0 0 0 0.06  0 0 0 0.035 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.7'/></svg>");
  background-attachment: fixed;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Container ---------- */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { width: 100%; max-width: 780px; margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Type utilities ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.serif { font-family: var(--serif); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.1; }
h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; }
p { margin: 0 0 1em; }
.lede { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.65; color: var(--ink-soft); max-width: 56ch; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(236, 227, 207, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--rule);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.brand-mark {
  width: 22px; height: 22px;
  display: inline-block;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a { transition: color .2s var(--ease); }
.nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: 2px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  transition: background .2s var(--ease);
}
.nav-cta:hover { background: var(--terracotta); color: var(--cream); }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta { padding: 9px 14px; font-size: 10px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .2s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-primary:hover { background: var(--terracotta-deep); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }
.btn-text {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.btn-text:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero h1 { margin-bottom: 24px; }
.hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
}

/* Rotating words */
.rotator {
  display: inline-block;
  position: relative;
  height: 1.05em;
  vertical-align: bottom;
  overflow: hidden;
}
.rotator-track {
  display: inline-flex;
  flex-direction: column;
  animation: rotate-words 28s ease-in-out infinite;
}
.rotator-word {
  height: 1.05em;
  display: flex; align-items: center;
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
  white-space: nowrap;
}
@keyframes rotate-words {
  0%, 9%     { transform: translateY(0); }
  12%, 21%   { transform: translateY(-1.05em); }
  24%, 33%   { transform: translateY(-2.10em); }
  36%, 45%   { transform: translateY(-3.15em); }
  48%, 57%   { transform: translateY(-4.20em); }
  60%, 69%   { transform: translateY(-5.25em); }
  72%, 81%   { transform: translateY(-6.30em); }
  84%, 94%   { transform: translateY(-7.35em); }
  100%       { transform: translateY(0); }
}

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 36px;
}

.hero-meta {
  border-left: 0.5px solid var(--rule);
  padding-left: 28px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero-meta-label {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.hero-meta-figure {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 8px;
}
.hero-meta-figure .small { font-size: 22px; vertical-align: top; margin-right: 4px; }
.hero-meta-detail {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.hero-meta-detail strong {
  color: var(--ink);
  font-weight: 500;
}

/* ============================================================
   SECTION CHROME
   ============================================================ */
section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-head {
  margin-bottom: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: end;
}
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}
.section-head .eyebrow { margin-bottom: 16px; }

/* ============================================================
   COLLECTIONS GRID
   ============================================================ */
.collections {
  background: var(--paper-soft);
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 0.5px solid var(--rule);
}
@media (max-width: 900px) { .collections-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .collections-grid { grid-template-columns: 1fr; } }

.collection-card {
  background: var(--paper-soft);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  min-height: 260px;
  transition: background .25s var(--ease);
  cursor: default;
  position: relative;
}
.collection-card:hover {
  background: var(--cream);
}
.collection-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  color: var(--terracotta);
}
.collection-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
  font-style: italic;
  font-weight: 400;
}
.collection-meta {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.collection-bestfor {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.collection-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 auto;
}
.collection-foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 0.5px solid var(--rule-soft);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.collection-foot a {
  color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.collection-card:hover .collection-foot a { color: var(--terracotta); }

/* Featured Curated Day strip */
.curated-day {
  margin-top: 32px;
  background: var(--paper-deep);
  border: 0.5px solid var(--rule);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.curated-day::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184, 92, 56, 0.08), transparent 60%);
  pointer-events: none;
}
.curated-day-icon {
  width: 72px; height: 72px;
  flex-shrink: 0;
  color: var(--terracotta);
  position: relative; z-index: 1;
}
.curated-day-icon svg { width: 100%; height: 100%; }
.curated-day-body { position: relative; z-index: 1; }
.curated-day-badge {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.curated-day h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--ink);
}
.curated-day p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 64ch;
}
@media (max-width: 640px) {
  .curated-day { grid-template-columns: 1fr; }
}

/* ============================================================
   SAVINGS CALCULATOR
   ============================================================ */
.calculator { background: var(--ink); color: var(--paper-soft); }
.calculator h2 { color: var(--paper-soft); }
.calculator .eyebrow { color: rgba(242, 235, 216, 0.55); }
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 860px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-inputs label {
  display: block;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(242, 235, 216, 0.6);
  margin: 24px 0 12px;
}
.calc-inputs label:first-child { margin-top: 0; }

.calc-input-wrap {
  position: relative;
  display: flex; align-items: center;
}
.calc-input-prefix {
  position: absolute;
  left: 18px;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: rgba(242, 235, 216, 0.45);
  pointer-events: none;
}
.calc-input {
  width: 100%;
  background: rgba(242, 235, 216, 0.06);
  border: 0.5px solid rgba(242, 235, 216, 0.25);
  color: var(--paper-soft);
  padding: 16px 16px 16px 38px;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  border-radius: 2px;
  transition: border-color .2s;
  -moz-appearance: textfield;
}
.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-input:focus {
  outline: none;
  border-color: var(--terracotta);
}

.calc-hint {
  font-size: 13px;
  font-style: italic;
  color: rgba(242, 235, 216, 0.55);
  margin: 14px 0 0;
  line-height: 1.55;
  max-width: 38ch;
}
.calc-hint strong { color: var(--paper-soft); font-weight: 500; font-style: normal; }

.calc-result {
  border-left: 0.5px solid rgba(242, 235, 216, 0.2);
  padding-left: clamp(28px, 4vw, 48px);
}
.calc-result-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(242, 235, 216, 0.6);
  margin-bottom: 18px;
}
.calc-result-figure {
  font-family: var(--serif);
  font-size: clamp(64px, 9vw, 112px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--terracotta);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.calc-result-figure .pound { font-size: 0.55em; vertical-align: top; margin-right: 4px; opacity: 0.85; }
.calc-result-detail {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(242, 235, 216, 0.75);
  max-width: 36ch;
}
.calc-result-detail strong { color: var(--paper-soft); font-weight: 500; }

/* ============================================================
   "IS IT LEGAL" REASSURANCE STRIP
   ============================================================ */
.legal-strip {
  background: var(--paper-deep);
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 860px) { .legal-grid { grid-template-columns: 1fr; } }
.legal-points {
  display: grid;
  gap: 32px;
}
.legal-point {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: start;
}
.legal-point-num {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
}
.legal-point h3 {
  font-size: 19px;
  margin-bottom: 6px;
  font-style: italic;
  font-weight: 400;
}
.legal-point p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   HOW IT WORKS - three steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
  counter-reset: step;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

.step { counter-increment: step; }
.step-num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.step-num::before {
  content: counter(step, decimal-leading-zero);
  font-style: italic;
  font-size: 28px;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-style: italic;
  font-weight: 400;
}
.step p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ============================================================
   PRICING TEASER - single offer card (early-bird)
   ============================================================ */
.pricing-teaser { background: var(--paper-soft); border-top: 0.5px solid var(--rule); }

.offer-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border: 0.5px solid var(--rule);
  position: relative;
  padding: 0;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at top right, rgba(184, 92, 56, 0.08), transparent 60%);
  pointer-events: none;
}
.offer-flag {
  background: var(--ink);
  color: var(--paper-soft);
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
}
.offer-body {
  padding: clamp(36px, 5vw, 56px);
  position: relative;
  z-index: 1;
}
.offer-name {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--ink);
}
.offer-strap {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 52ch;
}

.offer-price-block {
  border-top: 0.5px solid var(--rule-soft);
  border-bottom: 0.5px solid var(--rule-soft);
  padding: 28px 0;
  margin-bottom: 32px;
}
.offer-eyebrow-small {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 12px;
}
.offer-price-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}
.offer-price {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 84px);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.offer-price .pound {
  font-size: 0.55em;
  vertical-align: top;
  margin-right: 4px;
  opacity: 0.75;
}
.offer-period {
  font-size: 14px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.offer-price-then {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}
.offer-price-then strong {
  color: var(--ink);
  font-weight: 500;
}

.offer-beta {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--paper-deep);
  border-left: 2px solid var(--terracotta);
  padding: 16px 20px;
  margin: 28px 0;
  border-radius: 0 2px 2px 0;
}
.offer-beta strong {
  color: var(--ink);
  font-weight: 500;
}

.offer-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.offer-features li {
  padding: 12px 0;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: start;
  gap: 14px;
  border-bottom: 0.5px solid var(--rule-soft);
  line-height: 1.55;
}
.offer-features li:last-child { border-bottom: none; }
.offer-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 8px;
  flex-shrink: 0;
}

/* Coming-soon feature treatment */
.offer-features li.feature-coming {
  color: var(--ink-soft);
}
.offer-features li.feature-coming::before {
  background: transparent;
  border: 1px solid var(--terracotta);
  width: 5px; height: 5px;
  margin-top: 9px;
}
.coming-pill {
  display: inline-block;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: 1px;
  flex-shrink: 0;
}

.offer-cta {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--paper-soft);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 0.5px solid rgba(242, 235, 216, 0.15);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand .brand { color: var(--paper-soft); margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px; line-height: 1.65;
  color: rgba(242, 235, 216, 0.6);
  max-width: 38ch;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  color: rgba(242, 235, 216, 0.55);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(242, 235, 216, 0.85);
  transition: color .2s;
}
.footer-col a:hover { color: var(--terracotta); }

.footer-bottom {
  padding-top: 36px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(242, 235, 216, 0.5);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .made-in {
  font-style: italic;
  font-family: var(--serif);
}

/* ============================================================
   PAGE - Is It Legal?
   ============================================================ */
.page-hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 0.5px solid var(--rule);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
@media (max-width: 860px) { .page-hero-grid { grid-template-columns: 1fr; } }
.page-hero h1 { font-size: clamp(44px, 6.5vw, 80px); }
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--terracotta); }
.page-hero .lede { font-size: 18px; }

/* Long-form prose */
.prose {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}
.prose h2 {
  font-size: 32px;
  margin: 56px 0 20px;
  font-weight: 400;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 22px;
  font-style: italic;
  margin: 40px 0 14px;
  font-weight: 400;
}
.prose p { color: var(--ink); margin-bottom: 1.2em; }
.prose strong { font-weight: 500; }
.prose .pull {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta-deep);
  border-left: 2px solid var(--terracotta);
  padding: 12px 0 12px 28px;
  margin: 40px 0;
}
.prose .footnote {
  font-size: 13px;
  color: var(--ink-faint);
  font-style: italic;
}
.prose ol, .prose ul {
  padding-left: 1.4em;
  margin: 0 0 1.4em;
}
.prose li { margin-bottom: 0.5em; }

/* Comparison table */
.compare {
  margin: 56px 0;
  border: 0.5px solid var(--rule);
  background: var(--paper-soft);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 0.5px solid var(--rule);
}
.compare-row:last-child { border-bottom: none; }
.compare-cell {
  padding: 18px 20px;
  font-size: 14px;
  display: flex; align-items: center;
}
.compare-head .compare-cell {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
  color: var(--ink-faint);
  background: var(--paper-deep);
  border-right: 0.5px solid var(--rule);
}
.compare-head .compare-cell:last-child { border-right: none; }
.compare-cell.label {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  border-right: 0.5px solid var(--rule);
}
.compare-cell.val { justify-content: center; border-right: 0.5px solid var(--rule); color: var(--ink-soft); }
.compare-cell.val:last-child { border-right: none; }
.compare-cell.val.yes { color: var(--moss); font-weight: 500; }
.compare-cell.val.no  { color: var(--terracotta-deep); font-weight: 500; }
.compare-cell.val.warn { color: var(--ink-faint); font-style: italic; }
@media (max-width: 700px) {
  .compare-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; font-size: 12px; }
  .compare-cell { padding: 12px 10px; font-size: 12px; }
  .compare-cell.label { font-size: 14px; }
}

/* CTA strip */
.cta-strip {
  background: var(--terracotta);
  color: var(--cream);
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}
.cta-strip h2 {
  color: var(--cream);
  max-width: 18ch;
  margin: 0 auto 20px;
}
.cta-strip p {
  max-width: 48ch;
  margin: 0 auto 32px;
  color: rgba(255, 253, 247, 0.85);
  font-size: 16px;
}
.cta-strip .btn-secondary {
  border-color: var(--cream);
  color: var(--cream);
}
.cta-strip .btn-secondary:hover {
  background: var(--cream);
  color: var(--terracotta-deep);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .rotator-track { animation: none; }
  .hero-eyebrow .dot { animation: none; }
}

/* ============================================================
   LISTEN PAGE
   ============================================================ */
.collection-block {
  margin-bottom: clamp(48px, 7vw, 88px);
  scroll-margin-top: 120px; /* anchor links land below the sticky header */
}
.collection-block-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--rule);
}
@media (max-width: 760px) {
  .collection-block-head { grid-template-columns: 1fr; gap: 14px; }
}
.collection-block-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-top: 8px;
}
.collection-block-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.collection-block-desc strong {
  color: var(--terracotta-deep);
  font-weight: 500;
  font-style: italic;
}

/* Track list */
.track-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.track {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  background: var(--paper-soft);
  border: 0.5px solid var(--rule-soft);
  border-bottom: none;
  transition: background .2s var(--ease), border-color .2s;
  position: relative;
  overflow: hidden;
}
.track:last-child { border-bottom: 0.5px solid var(--rule-soft); }
.track:hover { background: var(--cream); border-color: var(--rule); }
.track.is-playing { background: var(--cream); border-color: var(--terracotta); }
.track.is-playing + .track { border-top-color: var(--terracotta); }

/* Play button */
.track-play {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s var(--ease), transform .2s;
}
.track-play:hover { background: var(--terracotta); transform: scale(1.05); }
.track-play svg { width: 16px; height: 16px; }
.track-play .icon-pause { display: none; }
.track.is-playing .track-play { background: var(--terracotta); }
.track.is-playing .track-play .icon-play { display: none; }
.track.is-playing .track-play .icon-pause { display: block; }

/* Track info */
.track-info { min-width: 0; }
.track-title {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.track-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}

/* Per-track progress bar */
.track-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  pointer-events: none;
}
.track-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--terracotta);
  transition: width .15s linear;
}
.track:not(.is-playing) .track-progress-bar { width: 0% !important; }

/* ============================================================
   STICKY GLOBAL PLAYER (bottom of viewport)
   ============================================================ */
.global-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--paper-soft);
  border-top: 0.5px solid rgba(242, 235, 216, 0.2);
  z-index: 100;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.global-player[hidden] { display: block; visibility: hidden; pointer-events: none; }
.global-player:not([hidden]) { transform: translateY(0); }

.global-player-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 14px 0;
}
@media (max-width: 600px) {
  .global-player-wrap { grid-template-columns: auto 1fr auto; gap: 14px; }
  .global-time { display: none; }
}

.global-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s var(--ease);
}
.global-play:hover { background: var(--terracotta-deep); }
.global-play svg { width: 18px; height: 18px; }
.global-play .icon-pause { display: none; }
.global-player.is-playing .global-play .icon-play { display: none; }
.global-player.is-playing .global-play .icon-pause { display: block; }

.global-info { min-width: 0; }
.global-title {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  color: var(--paper-soft);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  line-height: 1.3;
}
.global-collection {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 235, 216, 0.55);
  font-weight: 500;
  margin-top: 2px;
}

.global-time {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(242, 235, 216, 0.7);
  font-variant-numeric: tabular-nums;
  display: flex; gap: 6px;
}
.global-time-sep { opacity: 0.4; }

.global-close {
  width: 32px; height: 32px;
  font-size: 22px;
  color: rgba(242, 235, 216, 0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, background .2s;
}
.global-close:hover { color: var(--paper-soft); background: rgba(242, 235, 216, 0.08); }

.global-progress {
  height: 3px;
  background: rgba(242, 235, 216, 0.1);
  cursor: pointer;
}
.global-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--terracotta);
  transition: width .15s linear;
}

/* Add bottom padding to body when player is visible so footer isn't hidden */
body.player-active { padding-bottom: 80px; }
