/* foundation health group — warm minimalism, ink-blue + ochre */

:root {
  --cream: #FAFAF6;
  --cream-deep: #F2F0E8;
  --ink: #1F2941;
  --ink-soft: #3D4A66;
  --ink-mute: #6B7A92;
  --accent: #C99846;
  --accent-deep: #A87D2F;
  --steel: #6B7A92;
  --rule: #E0DCCE;
  --rule-soft: #EAE6D8;
  --max: 1180px;
  --gutter: clamp(32px, 6vw, 56px);
  --serif: "Newsreader", "Iowan Old Style", "Palatino", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule); transition: border-color .2s, color .2s; }
a:hover { color: var(--accent-deep); border-color: var(--accent); }

/* type */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 380;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(48px, 8vw, 108px); }
h2 { font-size: clamp(32px, 5vw, 60px); }
h3 { font-size: clamp(22px, 2.6vw, 30px); font-variation-settings: "opsz" 36; line-height: 1.2; }
h4 { font-size: 18px; font-variation-settings: "opsz" 16; letter-spacing: -0.005em; }
p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  font-variation-settings: "opsz" 36;
  font-weight: 360;
  color: var(--ink-soft);
  max-width: 32ch;
}

.prose { max-width: 60ch; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.prose p + p { margin-top: 1em; }
.prose h3 { margin-top: 1.8em; color: var(--ink); }

/* layout */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(72px, 11vw, 140px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--cream-deep { background: var(--cream-deep); }
.section--ink { background: var(--ink); color: #E9E2CF; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #FAFAF6; }
.section--ink .eyebrow { color: #B6BFD0; }
.section--ink .eyebrow::before { background: var(--accent); }
.section--ink a { color: #FAFAF6; border-color: rgba(250,250,246,0.3); }
.section--ink a:hover { color: var(--accent); border-color: var(--accent); }

.divider { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* navigation */
.nav {
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  font-variation-settings: "opsz" 16;
  font-weight: 420;
  letter-spacing: -0.005em;
  color: var(--ink);
  border: 0;
}
.nav__brand:hover { color: var(--accent-deep); }
.nav__mark { width: 10px; height: 10px; flex-shrink: 0; background: var(--accent); border-radius: 50%; }
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  border: 0;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--accent-deep); }
.nav__portal {
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink) !important;
  font-size: 13px !important;
  letter-spacing: 0.02em;
  transition: background .2s, color .2s;
}
.nav__portal:hover { background: var(--ink); color: var(--cream) !important; }

/* hamburger toggle (mobile only) */
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
  color: var(--ink);
  line-height: 0;
  border-radius: 4px;
}
.nav__toggle svg { display: block; }
.nav__toggle line {
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  transform-origin: center;
  transition: transform .25s ease, opacity .15s ease;
}

@media (max-width: 820px) {
  .nav {
    flex-wrap: wrap;
    gap: 0;
    padding: 18px var(--gutter);
    align-items: center;
    justify-content: space-between;
  }
  .nav__toggle { display: inline-flex; }
  .nav__links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 8px;
    margin-top: 16px;
    border-top: 1px solid var(--rule);
  }
  .nav.nav--open .nav__links { display: flex; }
  .nav__links a {
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__portal {
    margin-top: 12px;
    align-self: flex-start;
    width: auto;
    border-bottom: 0 !important;
  }
  .nav.nav--open .nav__toggle .nav__bar--1 { transform: translateY(5px) rotate(45deg); }
  .nav.nav--open .nav__toggle .nav__bar--2 { opacity: 0; }
  .nav.nav--open .nav__toggle .nav__bar--3 { transform: translateY(-5px) rotate(-45deg); }
}

/* hero */
.hero {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(64px, 9vw, 112px);
}
.hero__eyebrow { margin-bottom: clamp(28px, 4vw, 56px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.hero__aside {
  border-left: 1px solid var(--rule);
  padding-left: clamp(28px, 3.5vw, 56px);
  padding-bottom: 6px;
  max-width: 44ch;
}
.hero__aside .hero__sub { margin-bottom: 24px; }
@media (max-width: 820px) {
  .hero__aside {
    max-width: none;
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding-left: 0;
    padding-top: 28px;
    padding-bottom: 0;
  }
}

/* practice at a glance */
.practice-glance {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.practice-glance__head h2 { max-width: 12ch; }
@media (max-width: 820px) {
  .practice-glance { grid-template-columns: 1fr; gap: 32px; }
}
.hero__headline {
  font-family: var(--serif);
  font-weight: 340;
  font-variation-settings: "opsz" 72;
  font-size: clamp(54px, 11vw, 140px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 0.3em;
}
.hero__headline em {
  font-style: italic;
  font-weight: 360;
  color: var(--accent-deep);
}
.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 32px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  background: var(--ink);
  color: var(--cream);
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background .2s, transform .2s;
}
.hero__cta:hover { background: var(--accent-deep); color: var(--cream); transform: translateY(-1px); }
.hero__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  border-top: 1px solid var(--rule);
}
.hero__step {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.hero__step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  justify-self: center;
}
.hero__step-body {
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 18px);
  font-variation-settings: "opsz" 24;
  font-weight: 380;
  color: var(--ink);
  line-height: 1.45;
}
.hero__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 8px;
}
.hero__meta-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-soft);
}
.hero__meta-row:last-child { border-bottom: 1px solid var(--rule); }
.hero__meta-row strong { font-weight: 500; color: var(--ink); }

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* image placeholders */
.image-placeholder {
  background: var(--cream-deep);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: var(--ink-mute);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  aspect-ratio: 4/5;
  position: relative;
}
.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--rule);
  pointer-events: none;
}
.image-placeholder span {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-mute);
  font-style: italic;
  font-variation-settings: "opsz" 16;
}
.image-placeholder--wide { aspect-ratio: 16/9; }
.image-placeholder--square { aspect-ratio: 1/1; }
.image-placeholder--banner { aspect-ratio: 21/9; }
.image-placeholder--tall { aspect-ratio: 3/4; }

/* editorial imagery */
.ed-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.ed-img--square { aspect-ratio: 1/1; object-fit: cover; }
.ed-img--portrait { aspect-ratio: 4/5; object-fit: cover; object-position: center 35%; }
.ed-img--banner { aspect-ratio: 21/9; object-fit: cover; }
.ed-img--sepia {
  filter: grayscale(1) sepia(0.35) saturate(1.05) contrast(0.92) brightness(0.97);
}

/* two-col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.two-col--reverse { grid-template-columns: 1.4fr 1fr; }
.two-col__sticky { position: sticky; top: 40px; }
@media (max-width: 820px) {
  .two-col, .two-col--reverse { grid-template-columns: 1fr; gap: 40px; }
}

/* split: two-column layout used across feature blocks (collapses on mobile) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
.split--center { align-items: center; }
.split--end { align-items: end; }
.split--12 { grid-template-columns: 1fr 1.2fr; }
.split--14 { grid-template-columns: 1fr 1.4fr; }
.split--15 { grid-template-columns: 1fr 1.5fr; }
.split--ml { grid-template-columns: 1.2fr 1fr; }
@media (max-width: 820px) {
  .split, .split--12, .split--14, .split--15, .split--ml {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* service-row: numbered services list with label column */
.service-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}
.service-row:last-child { border-bottom: 0; }
@media (max-width: 820px) {
  .service-row { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
}

/* pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.pillar {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  padding-right: 32px;
}
.pillar:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--rule); padding-left: 0; }
.pillar:nth-child(even) { padding-left: 32px; }
.pillar__num {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 34px);
  font-style: italic;
  color: var(--accent-deep);
  font-variation-settings: "opsz" 36;
  font-weight: 380;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin: 0; max-width: 50ch; }
@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar:nth-child(odd), .pillar:nth-child(even) { padding: 32px 0; border-right: 0; }
}

/* numeric strip */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250,250,246,0.18);
  border-bottom: 1px solid rgba(250,250,246,0.18);
}
.fact {
  padding: 40px 24px;
  border-right: 1px solid rgba(250,250,246,0.18);
  text-align: center;
}
.fact:last-child { border-right: 0; }
.fact__num {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-variation-settings: "opsz" 72;
  font-weight: 340;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.fact__label {
  font-size: 13px;
  color: #B6BFD0;
  margin: 12px auto 0;
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 22ch;
}
@media (max-width: 820px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact { padding: 32px 16px; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(3) { border-top: 1px solid rgba(250,250,246,0.18); }
}

/* membership card */
.member-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.member-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--serif);
}
.member-card__price-num {
  font-size: clamp(72px, 8vw, 104px);
  font-variation-settings: "opsz" 72;
  font-weight: 340;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.member-card__price-unit {
  font-size: 18px;
  color: var(--ink-mute);
  font-family: var(--sans);
  font-weight: 400;
}
.member-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.member-card li {
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.member-card li:last-child { border-bottom: 1px solid var(--rule); }
.member-card li::before {
  content: "+";
  color: var(--accent-deep);
  font-family: var(--serif);
  font-size: 18px;
  flex-shrink: 0;
}
.member-card li.excluded { color: var(--ink-mute); }
.member-card li.excluded::before { content: "·"; color: var(--ink-mute); }

/* FAQ */
.faq { border-top: 1px solid var(--rule); }
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  cursor: pointer;
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(19px, 1.8vw, 22px);
  font-variation-settings: "opsz" 24;
  font-weight: 420;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 26px;
  color: var(--accent-deep);
  font-weight: 300;
  line-height: 0.5;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  max-width: 64ch;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all .2s;
  border: 0;
}
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--accent-deep); color: var(--cream); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: #fff; color: var(--ink); transform: translateY(-1px); }
.btn--accent { background: var(--accent); color: var(--ink); }
.btn--accent:hover { background: var(--accent-deep); color: var(--cream); transform: translateY(-1px); }

/* page header */
.page-head {
  padding: clamp(60px, 8vw, 120px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--rule);
}
.page-head h1 {
  font-size: clamp(52px, 8vw, 108px);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 72;
}
.page-head .lede { margin-top: 24px; max-width: 36ch; }
.page-head--split .shell {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.page-head--split .page-head__copy { padding-bottom: 8px; }
@media (max-width: 820px) {
  .page-head--split .shell { grid-template-columns: 1fr; gap: 32px; }
}

/* footer */
.foot {
  background: var(--ink);
  color: #BFC6D6;
  padding: 80px 0 40px;
  font-size: 14px;
}
.foot a { color: #BFC6D6; border-color: rgba(191,198,214,0.2); }
.foot a:hover { color: var(--accent); border-color: var(--accent); }
.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(191,198,214,0.15);
}
.foot__brand .nav__brand { color: #FAFAF6; }
.foot__brand .nav__mark { background: var(--accent); }
.foot__brand p { margin-top: 16px; color: #98A0B4; max-width: 30ch; font-size: 14px; line-height: 1.55; }
.foot h5 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #98A0B4;
  font-weight: 500;
  margin: 0 0 16px;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: #98A0B4;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.foot__legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
}
.foot__legal a { color: #98A0B4; border: 0; }
.foot__legal a:hover { color: var(--accent); }
@media (max-width: 820px) {
  .foot { padding: 56px 0 32px; }
  .foot__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    padding-bottom: 40px;
  }
  .foot__brand { grid-column: 1 / -1; }
  .foot__brand p { max-width: 44ch; }
  .foot__bottom { padding-top: 24px; }
}
@media (max-width: 520px) {
  .foot__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .foot__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* utilities */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--ink-mute); }
.tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.tag--accent { background: var(--accent); color: var(--ink); border-color: var(--accent); }

/* fine print */
.fine {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.55;
  max-width: 50ch;
}

/* article (insights) */
.article {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
}
.article h1 {
  font-size: clamp(44px, 5.5vw, 68px);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 72;
}
.article .meta {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.article p { font-size: 18px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 1.2em; }
.article h2 { font-size: 30px; margin: 2em 0 0.6em; }
.article h3 { font-size: 22px; margin: 1.8em 0 0.5em; }
.article blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-variation-settings: "opsz" 36;
  color: var(--ink);
  line-height: 1.4;
  font-weight: 380;
}

/* insights index */
.entries { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.entry {
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 32px;
  align-items: baseline;
}
.entry__date { font-size: 13px; letter-spacing: 0.04em; color: var(--ink-mute); }
.entry h3 { margin: 0 0 6px; font-size: 22px; }
.entry h3 a { color: var(--ink); border: 0; }
.entry h3 a:hover { color: var(--accent-deep); }
.entry p { margin: 0; color: var(--ink-soft); font-size: 15px; max-width: 60ch; }
.entry__arrow { color: var(--accent-deep); font-size: 22px; }
@media (max-width: 820px) {
  .entry { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .entry__arrow { display: none; }
}

/* legal pages */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter) 80px;
}
.legal h1 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 16px; }
.legal .meta {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 40px;
}
.legal p, .legal li { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.legal h2 { font-size: 24px; margin: 2em 0 0.5em; }
.legal h3 { font-size: 18px; margin: 1.8em 0 0.4em; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 0.4em; }
.legal__draft {
  background: var(--cream-deep);
  border: 1px solid var(--rule);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--ink-soft);
  border-radius: 4px;
}
.legal__draft strong { color: var(--accent-deep); }
