/* Kinscraft marketing site — mobile-first, light mode only */

:root {
  --paper: #FAF5EB;
  --paper-warm: #FFF7E6;
  --ink: #26201A;
  --ink-soft: #665C52;
  --saddle: #8C4D26;
  --saddle-light: #B77A4E;
  --outline: #E5DCC8;
  --surface: #FFFFFF;
  --footer-bg: #1C1410;
  --footer-text: #FAF5EB;
  --shadow: rgba(38, 32, 26, 0.08);
  --shadow-deep: rgba(38, 32, 26, 0.14);
  --container: 72rem;
  --radius: 16px;
  --transition: 200ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--saddle);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color var(--transition);
}

a:hover {
  color: var(--saddle-light);
}

h1,
h2,
h3,
.wordmark {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 1.25rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

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

.label {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saddle);
  margin: 0 0 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 40rem;
}

.section {
  padding: 4.5rem 0;
}

.section-divider {
  border-top: 1px solid var(--outline);
}

.section-warm {
  background: var(--paper-warm);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--saddle);
  color: var(--paper);
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

/* Focus */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--saddle);
  outline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--outline);
  box-shadow: 0 1px 0 var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding-block: 0.75rem;
}

.wordmark {
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.wordmark:hover {
  color: var(--saddle);
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.header-nav a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
}

.header-nav a:not(.btn):hover {
  color: var(--saddle);
}

.header-waitlist-mobile {
  display: inline-flex;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }

  /* Extra specificity: `.btn { display:inline-flex }` is declared later in
     the file and would otherwise win the tie and re-show this on desktop. */
  a.btn.header-waitlist-mobile {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), opacity var(--transition);
}

.btn-primary {
  background: var(--saddle);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--saddle-light);
  color: var(--paper);
}

.btn-sm {
  min-height: 2.75rem;
  padding: 0.5rem 1.125rem;
  font-size: 0.9rem;
}

.btn:disabled,
.btn.is-loading {
  opacity: 0.7;
  cursor: wait;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  color: var(--saddle);
  text-decoration: none;
}

.text-link:hover {
  color: var(--saddle-light);
}

.icon-arrow {
  flex-shrink: 0;
}

/* Hero */
.hero {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-subhead {
  font-size: 1.125rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .hero {
    padding-top: 4.5rem;
    padding-bottom: 5.5rem;
  }
}

/* Open book spread */
.book-spread-frame {
  position: relative;
  max-width: 28rem;
  margin-inline: auto;
  perspective: 1200px;
}

.book-spread {
  display: grid;
  grid-template-columns: 1fr 6px 1fr;
  background: var(--surface);
  border-radius: 4px 12px 12px 4px;
  box-shadow:
    0 4px 6px var(--shadow),
    0 20px 40px var(--shadow-deep);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
}

.book-page {
  padding: 1.75rem 1.25rem;
  min-height: 14rem;
  background: #FFFDF8;
}

.book-page-left {
  border-right: 1px solid var(--outline);
}

.book-spine {
  background: linear-gradient(to right, #d4c4a8, #ebe0cc, #d4c4a8);
}

.pull-quote {
  margin: 0 0 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}

.pull-attribution {
  font-size: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.page-lines {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.5rem;
}

.page-lines span {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--outline);
}

.page-lines span:nth-child(odd) {
  width: 100%;
}

.page-lines span:nth-child(even) {
  width: 88%;
}

.book-shadow {
  position: absolute;
  bottom: -12px;
  left: 8%;
  right: 8%;
  height: 16px;
  background: radial-gradient(ellipse, rgba(38, 32, 26, 0.18), transparent 70%);
  z-index: -1;
}

/* Ache */
.ache-turn {
  margin-top: 1.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

/* How it works */
.steps-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 24px var(--shadow);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.step-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--saddle-light);
  line-height: 1;
}

.step-icon {
  color: var(--saddle);
}

.trust-line {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--outline);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

/* Deliverable */
.deliverable-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .deliverable-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.movie-line {
  margin-top: 1.25rem;
  font-weight: 500;
  color: var(--ink);
}

.film-frame {
  display: flex;
  align-items: stretch;
  margin-top: 1.5rem;
  max-width: 20rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 20px var(--shadow);
}

.film-perforations {
  width: 14px;
  background: var(--ink);
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 6px,
    var(--paper-warm) 6px,
    var(--paper-warm) 12px
  );
}

.film-screen {
  flex: 1;
  display: flex;
  align-items: flex-end;
  min-height: 5.5rem;
  padding: 0.75rem;
  background: linear-gradient(145deg, #3d2e24 0%, #1c1410 100%);
}

.film-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--paper-warm);
  letter-spacing: 0.04em;
}

/* Book cover */
.book-cover-wrap {
  position: relative;
  max-width: 16rem;
  margin-inline: auto;
}

.book-cover {
  aspect-ratio: 2 / 3;
  padding: 2rem 1.5rem;
  background: linear-gradient(160deg, #6b3a1f 0%, var(--saddle) 45%, #5c3018 100%);
  border-radius: 4px 12px 12px 4px;
  box-shadow:
    inset 4px 0 8px rgba(0, 0, 0, 0.15),
    0 12px 32px var(--shadow-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--paper);
}

.cover-title {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--paper);
}

.cover-subtitle {
  margin: 0 0 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(250, 245, 235, 0.85);
}

.cover-year {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(250, 245, 235, 0.75);
}

.cover-rule {
  width: 2.5rem;
  height: 1px;
  background: rgba(250, 245, 235, 0.4);
  margin: 1.25rem auto 0;
}

.book-cover-shadow {
  position: absolute;
  bottom: -10px;
  left: 10%;
  right: 5%;
  height: 14px;
  background: radial-gradient(ellipse, rgba(38, 32, 26, 0.2), transparent 70%);
  z-index: -1;
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .price-card {
    display: flex;
    flex-direction: column;
  }

  .price-features {
    flex-grow: 1;
  }
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 24px var(--shadow);
}

.price-card-featured {
  border-color: var(--saddle);
  border-width: 2px;
}

.chip {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--saddle);
  border-radius: 999px;
}

.price {
  margin: 0 0 1.25rem;
}

.price-amount {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
}

.price-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
}

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

.price-features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--saddle-light);
}

.pricing-note {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.95rem;
}

.pricing-gift-link {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  margin-top: 1.5rem;
  border-top: 1px solid var(--outline);
}

.faq-item {
  border-bottom: 1px solid var(--outline);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 0;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2px solid var(--saddle);
  border-bottom: 2px solid var(--saddle);
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item p {
  padding: 0 0 1.125rem;
  font-size: 1rem;
}

/* CTA band */
.cta-band {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 5rem 0;
}

.cta-band h2 {
  color: var(--footer-text);
  text-align: center;
  margin-bottom: 2rem;
}

.cta-band p {
  color: rgba(250, 245, 235, 0.85);
}

.cta-band a {
  color: var(--paper-warm);
}

.cta-band a:hover {
  color: #fff;
}

/* Waitlist form */
.waitlist-form .form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--footer-text);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.waitlist-form input[type="email"] {
  flex: 1;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 10px;
  transition: border-color var(--transition);
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--ink-soft);
  opacity: 0.7;
}

.waitlist-form input[type="email"]:invalid:not(:placeholder-shown) {
  border-color: #c45c3a;
}

.waitlist-form input[type="email"].is-invalid {
  border-color: #e07a5a;
}

.field-error {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #e8a090;
}

.waitlist-success p,
.waitlist-fallback p {
  text-align: center;
  font-size: 1.125rem;
  color: var(--footer-text);
}

@media (min-width: 540px) {
  .form-row {
    flex-direction: row;
    align-items: stretch;
  }

  .btn-submit {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(250, 245, 235, 0.1);
  padding: 2.5rem 0;
  color: rgba(250, 245, 235, 0.75);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.wordmark-footer {
  font-size: 1.15rem;
  color: var(--footer-text);
}

.site-footer a {
  color: rgba(250, 245, 235, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--footer-text);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-copy {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: rgba(250, 245, 235, 0.5);
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }

  .footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}

/* Visually hidden (accessible) */
.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;
}

.diff-eyebrow {
  margin: 0 0 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saddle);
  text-align: center;
}

.diff-rule {
  width: 48px;
  height: 1px;
  margin: 0 auto 1.25rem;
  background: var(--saddle);
}

.diff-lead {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  text-align: center;
}

/* Scroll reveal — hidden state only applies when JS has run (html.js),
   so content is never invisible if the script fails or is blocked. */
.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 200ms ease-out, transform 200ms ease-out;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Gift page */
.gift-hero {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.gift-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.gift-subhead {
  font-size: 1.125rem;
  max-width: 34rem;
}

.gift-checkout {
  padding-top: 2rem;
}

.gift-product-grid {
  display: grid;
  gap: 1.25rem;
  margin: 0 0 2rem;
  padding: 0;
  border: none;
}

@media (min-width: 640px) {
  .gift-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gift-product-card {
  display: block;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.gift-product-card input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gift-product-card-inner {
  display: block;
}

.gift-product-card.is-selected {
  border-color: var(--saddle);
  border-width: 2px;
  box-shadow: 0 8px 24px var(--shadow-deep);
}

.gift-product-card:focus-within {
  outline: 2px solid var(--saddle);
  outline-offset: 2px;
}

.gift-form .form-field {
  margin-bottom: 1.25rem;
}

.gift-form .form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

.field-optional {
  font-weight: 400;
  color: var(--ink-soft);
}

.gift-form input[type="email"],
.gift-form input[type="text"],
.gift-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 10px;
  transition: border-color var(--transition);
}

.gift-form textarea {
  min-height: 6rem;
  resize: vertical;
}

.gift-form input::placeholder,
.gift-form textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.7;
}

.gift-form input.is-invalid {
  border-color: #e07a5a;
}

.gift-form .field-error {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #c45c3a;
}

.field-counter {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: right;
}

.btn-submit-full {
  width: 100%;
  margin-top: 0.5rem;
}

.form-error {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #c45c3a;
  text-align: center;
}

.gift-reassurance {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.9rem;
}

.gift-steps {
  padding: 3rem 0;
}

.gift-steps-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .gift-steps-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.gift-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.gift-step-number {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--paper);
  background: var(--saddle);
  border-radius: 50%;
  line-height: 1;
}

.gift-step-text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* Gift thanks */
.gift-thanks {
  padding: 5rem 0 6rem;
  text-align: center;
}

.gift-thanks h1 {
  margin-bottom: 1.25rem;
}

.gift-thanks p {
  max-width: 28rem;
  margin-inline: auto;
}

.gift-thanks-link {
  margin-top: 2rem;
}

/* Legal pages */
.legal-hero {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}

.legal-effective {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.legal-body {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.legal-prose {
  max-width: 46rem;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.legal-prose > * + h2 {
  margin-top: 2.5rem;
}

.legal-prose h3 {
  margin-top: 1.5rem;
}

.legal-prose ul,
.legal-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  color: var(--ink-soft);
}

.legal-prose li {
  margin-bottom: 0.5rem;
}

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

.legal-prose strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-toc {
  margin: 2rem 0 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
}

.legal-toc-heading {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.legal-toc li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.legal-toc a {
  text-decoration: none;
  font-weight: 500;
}

.legal-toc a:hover {
  text-decoration: underline;
}
