/* ============================================================
   coach — landing page
   warm parchment. one ember per band. essay-tone manifesto.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--fg1);
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* paper grain overlay — barely-there */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  background-image: radial-gradient(rgba(26,23,20,0.04) 0.5px, transparent 0.6px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: 0.5;
}

/* ============================================================
   nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(242, 234, 216, 0.78);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}

.lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  color: var(--coal);
  text-decoration: none;
  line-height: 1;
}
.lockup .dot { color: var(--ember); }
.lockup.small { font-size: 22px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ash);
  text-decoration: none;
  text-transform: lowercase;
  transition: color 120ms var(--ease-out);
}
.nav-link:hover { color: var(--coal); }
.nav-link .arr {
  display: inline-block;
  transition: transform 200ms var(--ease-out);
  margin-left: 2px;
}
.nav-link:hover .arr { transform: translateX(3px); }

/* ============================================================
   hero
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 48px 96px;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

.hero-display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.05em;
  line-height: 0.88;
  color: var(--coal);
  margin: 0;
  padding: 64px 0 32px;
  font-size: clamp(56px, 11vw, 168px);
  max-width: 14ch;
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 0 0 56px;
  max-width: 1100px;
}
.hero-body .lede {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ash);
  margin: 0;
}
.hero-body .lede .aside {
  display: block;
  margin-top: 10px;
  font-style: italic;
  color: var(--smoke);
}
.hero-body .kicker {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ash);
  font-weight: 400;
  margin: 0;
}
.hero-body .kicker strong {
  font-weight: 600;
  color: var(--ember-deep);
}

/* ============================================================
   capture form
   ============================================================ */
.capture {
  width: 100%;
  max-width: 640px;
  margin: 0;
}
.capture-row {
  display: flex;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 4px;
  box-shadow: var(--shadow-md);
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.capture-row:focus-within {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md), 0 0 0 4px var(--ember-soft);
}
.capture-row input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 22px;
  color: var(--coal);
  outline: 0;
}
.capture-row input::placeholder { color: var(--smoke); }

.capture.err .capture-row {
  border-color: var(--negative);
  animation: shake 0.4s var(--ease-out);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  text-transform: lowercase;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease-out),
              background var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.btn-ember {
  background: var(--ember);
  color: var(--fg-on-ember);
  box-shadow: var(--shadow-ember);
}
.btn-ember:hover { background: var(--ember-warm); }
.btn-ember:active { transform: scale(0.98); background: var(--ember-deep); }
.btn .btn-arr { transition: transform 200ms var(--ease-out); }
.btn:hover .btn-arr { transform: translateX(3px); }

.capture-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 0 6px;
  flex-wrap: wrap;
  gap: 10px;
}
.essay-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ember-deep);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 200ms var(--ease-out);
}
.essay-link:hover { color: var(--ember); }
.essay-link .arr {
  display: inline-block;
  transition: transform 200ms var(--ease-out);
}
.essay-link:hover .arr { transform: translateX(3px); }

.capture-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 15px;
  color: var(--coal);
}
.capture-success .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--paper);
  font-size: 13px;
  font-family: var(--font-mono);
}

.hero-foot {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--fg3);
}
.hero-foot .rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ============================================================
   shared band head
   ============================================================ */
.band-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 64px;
}
.band-head .inv,
.t-label.inv {
  color: rgba(255, 251, 241, 0.5);
}

.display-1 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.045em;
  line-height: 0.9;
  font-size: clamp(64px, 10vw, 144px);
  margin: 0;
  color: var(--coal);
}
.display-2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-size: clamp(40px, 6.5vw, 88px);
  margin: 0;
  color: var(--coal);
}
.display-2 em {
  font-style: normal;
  color: var(--ember);
}

.ember { color: var(--ember); }
.ember-text { color: var(--ember); }

/* ============================================================
   diagnosis — coal background, paper ink
   ============================================================ */
.diagnosis {
  background: var(--coal);
  color: var(--paper);
  padding: 112px 48px;
  position: relative;
}
.diagnosis .band-head {
  border-bottom-color: rgba(255, 251, 241, 0.12);
  max-width: 1440px;
  width: 100%;
  align-self: stretch;
  margin: 0 0 64px;
  justify-content: flex-start;
  text-align: left;
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

.diagnosis-lede .display-2 {
  color: var(--paper);
  max-width: 12ch;
}
.diagnosis-lede .display-2 em {
  color: var(--ember-warm);
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}
.diagnosis-lede .attrib {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255,251,241,0.4);
  text-transform: lowercase;
}

.symptom-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.symptom-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,251,241,0.12);
  align-items: start;
}
.symptom-list li:last-child {
  border-bottom: 1px solid rgba(255,251,241,0.12);
}
.symptom-list .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ember-warm);
  padding-top: 4px;
}
.symptom-list h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--paper);
  text-transform: none;
  letter-spacing: 0;
}
.symptom-list h4 em {
  font-style: italic;
  color: var(--ember-warm);
}
.symptom-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,251,241,0.6);
}

.pullquote {
  max-width: 1100px;
  margin: 112px auto 0;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.31;
  letter-spacing: -0.025em;
  color: var(--paper);
  text-transform: lowercase;
  position: relative;
}
.pullquote .quote-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0;
  color: var(--ember);
  vertical-align: baseline;
}
.pullquote .quote-mark-close {
  margin: 0;
}


/* ============================================================
   meet coach
   ============================================================ */
.meet {
  padding: 128px 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.meet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 96px;
  align-items: start;
}
.meet-copy .t-label {
  display: block;
  margin-bottom: 12px;
}
.meet-copy .display-1 {
  margin-bottom: 32px;
}
.meet-copy .tagline {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.35;
  color: var(--coal);
  margin: 0 0 24px;
  max-width: 22ch;
  font-weight: 500;
}
.meet-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ash);
  margin: 0;
  max-width: 48ch;
}
.meet-body em { color: var(--ember-deep); font-style: italic; }
.meet-body strong { color: var(--coal); font-weight: 600; }

.pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.pillar-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ember);
  padding-top: 4px;
  text-transform: lowercase;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.025em;
  text-transform: lowercase;
  margin: 0 0 6px;
  color: var(--coal);
}
.pillar p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ash);
}

/* ============================================================
   anti — what coach isn't
   ============================================================ */
.anti {
  background: var(--cream);
  padding: 128px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.anti .band-head {
  max-width: 1440px;
  margin: 0 auto 64px;
}
.anti-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.anti-grid li {
  padding: 48px 40px 48px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  position: relative;
}
.anti-grid li::before {
  content: "—";
  position: absolute;
  top: 48px;
  left: 16px;
  font-family: var(--font-mono);
  color: var(--ember);
  font-size: 14px;
}
.anti-grid h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: -0.03em;
  text-transform: lowercase;
  line-height: 1;
  margin: 0 0 14px;
  color: var(--coal);
}
.anti-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ash);
  max-width: 48ch;
}

/* ============================================================
   promise — scarcity question
   ============================================================ */
.promise {
  padding: 144px 48px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: left;
}
.promise-stack {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.promise-q {
  margin: 0;
}
.answer-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.answer {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: baseline;
}
.answer-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ember);
}
.answer p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  text-transform: lowercase;
  line-height: 1.2;
  color: var(--coal);
}
.promise-foot {
  margin-top: 16px;
  font-size: 18px;
  color: var(--ash);
}

/* ============================================================
   final CTA — coal
   ============================================================ */
.final-cta {
  background: var(--coal);
  color: var(--paper);
  padding: 144px 48px;
}
.final-cta .band-head {
  max-width: 1440px;
  margin: 0 auto 64px;
  border-bottom-color: rgba(255,251,241,0.12);
}

.final-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: lowercase;
  font-size: clamp(48px, 8vw, 128px);
  margin: 0 auto 64px;
  max-width: 1440px;
  color: var(--paper);
}

.capture-inv {
  margin: 0 auto;
  max-width: 1440px;
}
.capture-inv .capture-row {
  background: rgba(255,251,241,0.06);
  border-color: rgba(255,251,241,0.16);
  box-shadow: none;
  max-width: 640px;
}
.capture-inv .capture-row:focus-within {
  border-color: rgba(255,251,241,0.36);
  box-shadow: 0 0 0 4px rgba(214, 73, 46, 0.32);
}
.capture-inv .capture-row input {
  color: var(--paper);
}
.capture-inv .capture-row input::placeholder {
  color: rgba(255,251,241,0.4);
}
.capture-inv .essay-link.inv {
  color: var(--ember-warm);
  border-bottom-color: rgba(232, 117, 83, 0.5);
}
.capture-inv .essay-link.inv:hover { color: var(--ember-soft); }
.capture-success.inv {
  background: rgba(255,251,241,0.06);
  border-color: rgba(255,251,241,0.16);
  color: var(--paper);
  max-width: 640px;
}

/* ============================================================
   footer
   ============================================================ */
.foot {
  padding: 48px;
  background: var(--bone);
  border-top: 1px solid var(--line);
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-row + .foot-row-meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.foot-links {
  display: flex;
  gap: 28px;
}
.foot-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ash);
  text-decoration: none;
  text-transform: lowercase;
  transition: color 120ms var(--ease-out);
}
.foot-links a:hover { color: var(--ember-deep); }

/* ============================================================
   reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transition: opacity 600ms var(--ease-out);
}
.reveal.in { opacity: 1; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav { padding: 16px 24px; }
  .nav-right { gap: 18px; }
  .nav-link { font-size: 13px; }

  .hero { padding: 56px 24px 72px; }
  .hero-label-row { padding-bottom: 40px; }
  .hero-display { padding: 40px 0 24px; }
  .hero-body {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .diagnosis, .meet, .anti, .promise, .final-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
  .diagnosis, .meet, .anti, .promise, .final-cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .diagnosis-grid, .meet-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .anti-grid { grid-template-columns: 1fr; }

  .pullquote { margin-top: 72px; }

  .foot { padding: 32px 24px; }
}

@media (max-width: 560px) {
  .capture-row {
    flex-direction: column;
    border-radius: var(--r-lg);
    padding: 8px;
  }
  .capture-row input { padding: 12px 16px; }
  .btn { width: 100%; justify-content: center; padding: 14px 22px; }

  .capture-meta { flex-direction: column; align-items: flex-start; }

  .nav-link[href="#thesis"], .nav-link[href="#meet"] { display: none; }
}

/* ============================================================
   desktop: snap each section to viewport
   ============================================================ */
@media (min-width: 900px) {
  html { scroll-snap-type: y mandatory; }
  .hero, .diagnosis, .meet {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
  }
  .hero {
    padding: 96px 48px 48px;
    min-height: 100vh;
  }
  .hero-label-row { padding-bottom: 24px; }
  .hero-display { padding: 24px 0 20px; }
  .hero-foot { margin-top: 16px; }
  .diagnosis { padding: 96px 48px 48px; display: flex; flex-direction: column; justify-content: flex-start; }
  .diagnosis .band-head { padding-bottom: 24px; margin-bottom: 0; }
  .diagnosis .pullquote { margin-top: auto; margin-bottom: 48px; }
  .meet { padding: 96px 48px 42px; display: flex; flex-direction: column; justify-content: flex-start; height: 100vh; min-height: 100vh; overflow: hidden; position: relative; }
  .meet .band-head { padding-bottom: 24px; margin-bottom: 0; }
  .meet .meet-grid { margin-top: auto; margin-bottom: 12px; }
  .meet .foot { margin-top: 0; padding: 55px 0; display: block; }
  .meet .foot .foot-row { width: 100%; max-width: none; }
  .meet .foot .foot-row + .foot-row-meta { position: absolute; left: 48px; right: 48px; bottom: 16px; margin-top: 0; padding-top: 12px; }
}

/* ============================================================
   mobile: snap each section to viewport (≤899px)
   ============================================================ */
@media (max-width: 899px) {
  :root { --nav-h: 48px; }
  html {
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
  }
  body { overflow-x: hidden; }

  .nav { padding: 12px 20px; min-height: var(--nav-h); box-sizing: border-box; background: var(--cream); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .lockup { font-size: 22px; }

  .hero, .diagnosis, .meet {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 0;
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    box-sizing: border-box;
    overflow: hidden;
  }

  /* HERO */
  .hero {
    padding: calc(14px + var(--nav-h)) 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: none;
  }
  .hero-label-row { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
  .hero-display {
    font-size: clamp(40px, 12vw, 60px);
    line-height: 0.9;
    padding: 31px 0 12px;
    max-width: 14ch;
  }
  .hero-body {
    grid-template-columns: 1fr;
    gap: 18px; /* 70% of prior 25px */
    margin: 15px 0 29px;
  }
  .hero-body .lede,
  .hero-body .kicker { font-size: 15px; line-height: 1.45; }
  .hero-body .lede .aside { margin-top: 15px; } /* 70% of prior 21px */
  .capture { max-width: none; }
  .capture-meta { margin-top: 25px; gap: 15px; } /* +15 before microcopy; inner gap +50% */
  .hero-foot { margin-top: auto; padding-top: 10px; } /* absorbs remaining space */

  /* DIAGNOSIS */
  .diagnosis {
    padding: calc(16px + var(--nav-h)) 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .diagnosis .band-head {
    padding-bottom: 14px;
    margin: 0;
    border-bottom: 1px solid rgba(255,251,241,0.12);
  }
  .diagnosis .pullquote {
    margin: auto 0;
    padding: 0;
    font-size: clamp(22px, 5.6vw, 30px);
    line-height: 1.3;
    max-width: none;
  }
  .pullquote .quote-mark {
    font-size: 1.6em;
    line-height: 0;
    vertical-align: -0.18em;
  }

  /* MEET / RESPONSE */
  .meet {
    padding: calc(16px + var(--nav-h)) 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: none;
  }
  .meet .band-head { padding-bottom: 14px; margin-bottom: 0; border-bottom: 1px solid var(--line); }
  .meet-grid { gap: 18px; margin-top: auto; margin-bottom: 17px; }
  .meet-copy .t-label { margin-bottom: 6px; }
  .meet-copy .display-1 {
    font-size: clamp(56px, 18vw, 96px);
    margin-bottom: 14px;
    line-height: 0.88;
  }
  .meet-copy .tagline { font-size: 17px; margin-bottom: 12px; }
  .meet-body { font-size: 14px; line-height: 1.5; }
  .meet .foot {
    margin-top: 0;
    padding: 16px 0 0;
    background: transparent;
    border-top: 1px solid var(--line);
  }
  .meet .foot .foot-row { gap: 12px; }
  .meet .foot .foot-row + .foot-row-meta { margin-top: 10px; padding-top: 10px; }
}

/* ============================================================
   legal pages — privacy & terms
   ============================================================ */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px 120px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: lowercase;
  color: var(--coal);
  margin: 0 0 12px;
}

.legal-date {
  font-family: var(--font-mono);
  font-size: var(--t-mini);
  text-transform: lowercase;
  letter-spacing: 0.04em;
  color: var(--fg3);
  margin: 0 0 48px;
}

.legal-lede {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ash);
  margin: 0 0 48px;
  max-width: 56ch;
}

.legal-page section {
  margin-bottom: 48px;
}

.legal-page section h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--coal);
  margin: 0 0 14px;
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

.legal-page section p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ash);
  margin: 0 0 12px;
}

.legal-page section p:last-child {
  margin-bottom: 0;
}

.legal-page a {
  color: var(--ember-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--ember-soft);
  transition: color 120ms var(--ease-out);
}

.legal-page a:hover {
  color: var(--ember);
}

.legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-list li {
  position: relative;
  padding-left: 20px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ash);
  margin-bottom: 8px;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ember);
}

.legal-list li:last-child {
  margin-bottom: 0;
}
