/* Design system. Colour and type values come from site.config.json theme block,
   substituted at build time. Nothing client-specific is hardcoded below. */

:root {
  --ink: #16201C;
  --ink-soft: #3D4A42;
  --paper: #F7F5F0;
  --paper-raised: #FFFFFF;
  --rule: #D9D4C7;
  --primary: #2F6B4F;
  --primary-hover: #245740;
  --highlight: #C89B3C;
  --highlight-soft: #F2E6C9;

  --font-display: 'Source Serif 4', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale. Use these, not arbitrary values. */
  --s1: .5rem;  --s2: .75rem; --s3: 1rem;   --s4: 1.5rem;
  --s5: 2rem;   --s6: 3rem;   --s7: 4.5rem; --s8: 7rem;

  --measure: 38rem;
  --wrap: 72rem;

  --shadow-raised: 0 1px 2px rgba(22, 32, 28, .05), 0 4px 16px rgba(22, 32, 28, .06);
  --shadow-float: 0 2px 4px rgba(22, 32, 28, .06), 0 12px 32px rgba(22, 32, 28, .10);
}

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

/* Any class that sets display (.btn is inline-flex) outranks the user agent's
   [hidden] rule, so hidden elements keep rendering. Make hidden mean hidden. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 6vw, 4rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
.ed__body > h2 + p,
.ed__body > h2 + .card-grid { margin-top: var(--s3); }
h3 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -.01em; }

p { margin: 0 0 var(--s3); max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-underline-offset: .18em; }
a:hover { color: var(--primary-hover); }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* ---------- layout ---------- */

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--s7); }
.section + .section { border-top: 1px solid var(--rule); }
.section--tint { background: var(--paper-raised); }

.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 40rem; }

/* Editorial grid: label in the left rail, content in the main column. Keeps
   prose off the left edge on wide screens without centring everything. */
.ed { display: grid; gap: var(--s3) var(--s6); grid-template-columns: 1fr; }
.ed__label { grid-column: 1; }
.ed__body { grid-column: 1; }
@media (min-width: 60rem) {
  .ed { grid-template-columns: 13rem minmax(0, 1fr); }
  .ed__label { grid-column: 1; padding-top: .55rem; }
  .ed__body { grid-column: 2; }
  .ed__body > .card-grid,
  .ed__body > .steps { margin-top: var(--s4); }
}
.ed__label .eyebrow { margin-bottom: 0; }
.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--ink-soft); margin: 0 0 var(--s3);
  text-wrap: balance; /* no one-word last line, e.g. "Two ways to think about / it" */
}

/* ---------- header ---------- */

.site-head {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky; top: 0; z-index: 20;
}
.site-head__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s4); padding-block: var(--s3);
}
/* Brand lockup: mark G (two overlapping squares) plus the caps wordmark. */
.brand {
  display: inline-flex; align-items: center; gap: .8rem;
  color: var(--ink); text-decoration: none; line-height: 1;
}
.brand__mark { flex: none; display: block; }
.brand__text { display: flex; flex-direction: column; gap: .18rem; }
.brand__top {
  font-family: var(--font-body); font-weight: 700; font-size: .92rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
}
.brand__bottom {
  font-family: var(--font-body); font-weight: 500; font-size: .92rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--primary);
}
.brand__tag {
  font-family: var(--font-body); font-weight: 500; font-size: .58rem;
  letter-spacing: .09em; text-transform: uppercase; color: var(--ink-soft); margin-top: .12rem;
}
.brand:hover .brand__bottom { color: var(--primary-hover); }
.brand--foot { margin-bottom: var(--s2); }
.brand--foot .brand__top { color: var(--paper); }
.brand--foot .brand__bottom { color: var(--highlight); }
@media (max-width: 30rem) {
  .brand__mark { width: 36px; height: 36px; }
  .brand__tag { display: none; }
  .brand__top, .brand__bottom { font-size: .8rem; }
}

.nav { display: flex; gap: 1.1rem; align-items: center; }
.nav a {
  color: var(--ink); text-decoration: none; font-size: .94rem; font-weight: 500;
  padding-block: .25rem; border-bottom: 2px solid transparent;
  transition: border-color .18s cubic-bezier(.2,.8,.2,1), color .18s cubic-bezier(.2,.8,.2,1);
}
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--highlight); }

/* Mobile disclosure menu. No JS: <details> carries the open state and is
   keyboard accessible on its own. */
.menu { display: none; position: relative; }
.menu > summary {
  list-style: none; cursor: pointer; display: flex; flex-direction: column;
  gap: 4px; padding: .6rem .35rem; border-radius: 2px;
}
.menu > summary::-webkit-details-marker { display: none; }
.menu > summary span { display: block; width: 22px; height: 2px; background: var(--ink); }
.menu[open] > summary span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu[open] > summary span:nth-child(2) { opacity: 0; }
.menu[open] > summary span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.menu > summary span { transition: transform .18s cubic-bezier(.2,.8,.2,1), opacity .18s cubic-bezier(.2,.8,.2,1); }
.menu__panel {
  position: absolute; right: 0; top: calc(100% + .55rem); z-index: 30;
  background: var(--paper-raised); border: 1px solid var(--rule);
  box-shadow: var(--shadow-float); border-radius: 2px;
  padding: var(--s3); min-width: 15rem;
  display: flex; flex-direction: column; gap: var(--s2);
}
.menu__panel a { color: var(--ink); text-decoration: none; font-weight: 500; }
.menu__panel a:hover { color: var(--primary); }
.menu__panel .btn { margin-top: var(--s1); }
.menu__panel .btn--primary, .menu__panel .btn--primary:hover { color: #fff; }

.nav a { white-space: nowrap; }
/* The booking button inside .nav. ".nav a" outranks .btn, which left the old
   header button with dark text on green and 4px of vertical padding. */
.nav .btn--primary,
.nav .btn--primary:hover { color: #fff; border-bottom-color: transparent; }
.nav .btn--primary { padding: .6rem 1rem; }
/* With the booking button in the bar the header is full: the tagline wraps to
   two lines at a set width instead of the whole lockup squeezing. */
.site-head .brand { flex: none; }
.brand__top, .brand__bottom { white-space: nowrap; }
.site-head .brand__tag { max-width: 11.5rem; line-height: 1.35; }
/* Booking button in the bar on phones and tablets, where .nav is hidden.
   Scoped to .site-head so it outranks .btn's display, which is declared later. */
.site-head .head-cta { display: none; }
@media (max-width: 72rem) {
  .nav { display: none; }
  .menu { display: block; }
  .site-head__in { padding-block: var(--s2); gap: var(--s2); }
  .site-head .head-cta {
    display: inline-flex; margin-left: auto; white-space: nowrap;
    font-size: .88rem; padding: .55rem .9rem;
  }
}
/* The full label does not fit beside the logo and menu icon on phones. */
.head-cta__short { display: none; }
@media (max-width: 30rem) {
  .head-cta__full { display: none; }
  .head-cta__short { display: inline; }
  .site-head .head-cta { font-size: .82rem; padding: .5rem .75rem; }
}
@media (max-width: 24rem) {
  .site-head__in { gap: .5rem; }
  .site-head .brand { gap: .55rem; }
  .site-head .head-cta { padding: .5rem .6rem; }
}
/* Below ~336px there is no room. The menu still carries the booking button. */
@media (max-width: 21rem) {
  .site-head .head-cta { display: none; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 600; font-size: 1rem;
  padding: .8rem 1.4rem; border-radius: 2px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s cubic-bezier(.2,.8,.2,1),
              background-color .18s cubic-bezier(.2,.8,.2,1), color .18s cubic-bezier(.2,.8,.2,1);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-raised); }
.btn--primary:hover { background: var(--primary-hover); color: #fff; box-shadow: var(--shadow-float); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }

/* ---------- hero ---------- */

.hero { padding-block: var(--s8) var(--s7); }
.hero h1 { max-width: 20ch; }
.hero .lede { margin-top: var(--s4); }
.hero__note {
  margin-top: var(--s4); font-size: .92rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: .6rem;
}
.hero__note::before {
  content: ""; width: 1.75rem; height: 2px; background: var(--highlight); flex: none;
}

/* ---------- pricing ---------- */

.hero--lead { padding-block: var(--s7) var(--s6); }
.hero--lead h1 { font-size: clamp(1.9rem, 4.6vw, 3rem); }
.section--flush { padding-top: var(--s6); }
.section--flush h2 { margin-bottom: var(--s4); }

.tiers {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: var(--s3); grid-template-columns: 1fr;
}
@media (min-width: 40rem) { .tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .tiers { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.tier {
  background: var(--paper-raised); border: 1px solid var(--rule); border-top: 3px solid var(--highlight);
  border-radius: 2px; box-shadow: var(--shadow-raised);
  padding: var(--s4) var(--s4) var(--s3); display: flex; flex-direction: column; min-width: 0;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s cubic-bezier(.2,.8,.2,1);
}
.tier:hover { transform: translateY(-2px); box-shadow: var(--shadow-float); }
.tier__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; letter-spacing: -.01em; }
.tier__blurb { margin: .4rem 0 0; font-size: .9rem; color: var(--ink-soft); flex: 1; max-width: none; }
.tier__price { margin: var(--s4) 0 0; display: flex; flex-direction: column; line-height: 1.1; max-width: none; }
.tier__from { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.tier__price b {
  font-family: var(--font-display); font-weight: 600; font-size: 2.3rem; letter-spacing: -.03em;
  color: var(--ink); margin-top: .25rem; font-variant-numeric: tabular-nums;
}
.tier__per { font-size: .9rem; color: var(--ink-soft); margin-top: .15rem; }
.tier__meta { margin: var(--s2) 0 0; font-size: .85rem; color: var(--ink-soft); max-width: none; }
.pricing__more { margin-top: var(--s4); font-size: .95rem; }
.pricing__more a::after { content: " \2192"; }

.pricing__intro { max-width: 46rem; margin-top: var(--s5); }
.pricing__grid {
  display: grid; gap: var(--s4); margin-top: var(--s5);
  grid-template-columns: 1fr;
}
@media (min-width: 56rem) {
  .pricing__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan--wide { grid-column: 1 / -1; }
}
.plan {
  background: var(--paper-raised); border: 1px solid var(--rule); border-radius: 2px;
  box-shadow: var(--shadow-raised); display: flex; flex-direction: column; min-width: 0;
}
.plan__head { padding: var(--s4) var(--s4) var(--s3); border-bottom: 1px solid var(--rule); }
.plan__head h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.plan__head p { margin: .35rem 0 0; color: var(--ink-soft); font-size: .95rem; }
.plan__scroll { overflow-x: auto; }
.plan__table { width: 100%; border-collapse: collapse; font-size: .97rem; }
.plan__table th, .plan__table td { padding: .7rem var(--s4); text-align: right; white-space: nowrap; }
.plan__table thead th {
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-soft); border-bottom: 1px solid var(--rule);
}
.plan__table thead th[scope="colgroup"] { text-align: center; border-bottom: 0; padding-bottom: .2rem; }
.plan__table th[scope="row"], .plan__table thead th:first-child { text-align: left; font-weight: 500; color: var(--ink); }
.plan__table tbody tr + tr { border-top: 1px solid var(--rule); }
.plan__table td { font-variant-numeric: tabular-nums; font-weight: 600; }
.plan--addons .plan__table td { font-weight: 500; }
@media (max-width: 40rem) {
  .plan__head { padding: var(--s3) var(--s3) var(--s2); }
  .plan__table { font-size: .9rem; }
  .plan__table th, .plan__table td { padding: .6rem .7rem; }
  .plan__table th[scope="row"] { white-space: normal; min-width: 7.5rem; }
  .plan__table thead th:first-child { white-space: normal; }
}
.pricing__notes { margin-top: var(--s5); max-width: 46rem; }
.pricing__notes p { font-size: .95rem; color: var(--ink-soft); }
.pricing__notes strong { color: var(--ink); }

/* ---------- hero video ---------- */

.video-frame { margin: var(--s6) 0 0; max-width: 56rem; }
.video-frame video {
  display: block; width: 100%; aspect-ratio: 16 / 9; background: var(--ink);
  border: 1px solid var(--rule); border-radius: 2px; box-shadow: var(--shadow-raised);
}
.video-frame figcaption { margin-top: var(--s2); font-size: .88rem; color: var(--ink-soft); }

/* Carrier video above the comparison on How It Works. A rule, not a new section,
   so the page keeps its tinted/plain alternation. */
.carrier-video { padding-bottom: var(--s7); margin-bottom: var(--s7); border-bottom: 1px solid var(--rule); }

/* ---------- cards ---------- */

.card-grid {
  display: grid; gap: var(--s3); margin-top: var(--s5);
  grid-template-columns: 1fr;
}
@media (min-width: 44rem) { .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.card {
  background: var(--paper-raised); border: 1px solid var(--rule); border-radius: 2px;
  padding: var(--s4); display: flex; flex-direction: column; gap: var(--s2);
  box-shadow: var(--shadow-raised);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s cubic-bezier(.2,.8,.2,1);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-float); }
.card p { color: var(--ink-soft); flex: 1; }
.card__link { font-weight: 600; text-decoration: none; }
.card__link::after { content: " \2192"; }
.card__link:hover { text-decoration: underline; }

/* ---------- numbered steps ---------- */

.steps { list-style: none; counter-reset: step; padding: 0; margin: var(--s5) 0 0;
  display: grid; gap: var(--s5) var(--s4); grid-template-columns: 1fr; }
@media (min-width: 34rem) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 72rem) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1.5rem; color: var(--highlight);
  display: block; margin-bottom: var(--s1);
}
.steps h3 { margin-bottom: .3rem; }
.steps p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- disclaimer ---------- */

.disclaimer {
  border-left: 3px solid var(--highlight);
  background: var(--highlight-soft);
  padding: var(--s4);
  margin-top: var(--s6);
  max-width: 44rem;
}
.disclaimer p { font-size: .95rem; color: var(--ink); }
.disclaimer strong { font-weight: 600; }

/* ---------- footer ---------- */

.site-foot {
  background: var(--ink); color: var(--paper);
  padding-block: var(--s6); margin-top: var(--s7); font-size: .93rem;
}
.site-foot a { color: var(--paper); overflow-wrap: anywhere; }
.site-foot__grid {
  display: grid; gap: var(--s5);
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.site-foot__grid > div { min-width: 0; }
.site-foot__legal {
  margin-top: var(--s5); padding-top: var(--s4);
  border-top: 1px solid rgba(247, 245, 240, .18);
  color: rgba(247, 245, 240, .72); font-size: .85rem; max-width: 46rem;
}
.site-foot h2 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: var(--s1); }

/* ---------- utility ---------- */

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper); padding: var(--s2) var(--s3); z-index: 100;
}
.skip:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- questionnaire ---------- */

.hero--short { padding-block: var(--s7) var(--s5); }

.q { max-width: 42rem; }
.q__pot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.q__progress {
  font-size: .8rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0 0 var(--s4);
}
.q__progress b { color: var(--primary); }

.q__step { border: 0; padding: 0; margin: 0 0 var(--s5); min-width: 0; }
.q--stepped .q__step { margin-bottom: var(--s4); }
.q__step legend {
  font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 600; letter-spacing: -.02em; line-height: 1.25;
  padding: 0; margin-bottom: var(--s4); max-width: 26ch;
}
.q__n { display: block; font-size: 1rem; color: var(--highlight); margin-bottom: .35rem; }
.q__hint { font-size: .92rem; color: var(--ink-soft); margin-top: var(--s2); }

.q__choices { display: grid; gap: var(--s2); }
@media (min-width: 34rem) { .q__choices { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.choice {
  display: flex; align-items: center; gap: .7rem;
  padding: .95rem 1.1rem; cursor: pointer;
  background: var(--paper-raised); border: 1.5px solid var(--rule); border-radius: 2px;
  transition: border-color .16s cubic-bezier(.2,.8,.2,1), box-shadow .16s cubic-bezier(.2,.8,.2,1),
              transform .16s cubic-bezier(.2,.8,.2,1);
}
.choice:hover { border-color: var(--primary); transform: translateY(-1px); }
.choice input { accent-color: var(--primary); width: 1.1rem; height: 1.1rem; flex: none; margin: 0; }
.choice:has(input:checked) {
  border-color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary), var(--shadow-raised);
}
.choice:has(input:focus-visible) { outline: 2px solid var(--primary); outline-offset: 3px; }
.choice span { font-weight: 500; }

.q__fields { display: grid; gap: var(--s3); }
@media (min-width: 34rem) { .q__fields { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.field { display: block; margin-bottom: var(--s3); }
.field--narrow { max-width: 12rem; }
.field__label {
  display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink);
}
.field__label em { font-weight: 400; font-style: normal; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .7rem .85rem; border: 1.5px solid var(--rule); border-radius: 2px;
  background: var(--paper-raised);
  transition: border-color .16s cubic-bezier(.2,.8,.2,1), box-shadow .16s cubic-bezier(.2,.8,.2,1);
}
.field textarea { resize: vertical; min-height: 5rem; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-soft); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(47, 107, 79, .15);
}

.q__errors {
  border-left: 3px solid #A6392B; background: #FBEEEA;
  padding: var(--s3) var(--s4); margin-bottom: var(--s4);
}
.q__errors ul { margin: 0; padding-left: 1.1rem; }
.q__errors li { margin: .2rem 0; }

.q__nav { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }
.q__nav .btn[disabled] { opacity: .6; cursor: progress; }

.q__done { max-width: 42rem; }
.q__done h2 { margin-bottom: var(--s3); }
.q__ref { font-size: .88rem; color: var(--ink-soft); }
.q__ref b { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

/* ---------- open questions for the client ---------- */
/* Visible on a review build, a hard build failure once the site goes live. */

.todo {
  border-left: 3px solid var(--highlight);
  background: repeating-linear-gradient(
    135deg, var(--highlight-soft), var(--highlight-soft) 10px,
    rgba(200, 155, 60, .16) 10px, rgba(200, 155, 60, .16) 20px
  );
  padding: var(--s3) var(--s4);
  margin: var(--s4) 0;
  font-size: .95rem;
  max-width: 40rem;
}
.todo b { font-weight: 700; }

/* ---------- extra layout pieces ---------- */

@media (min-width: 44rem) {
  .card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.steps--large { gap: var(--s6) var(--s5); }
.steps--large li::before { font-size: 2rem; }
.steps--large h3 { font-size: 1.35rem; font-family: var(--font-display); font-weight: 600; }
.steps--large p { font-size: 1rem; }

.plain-list { margin: var(--s4) 0 0; padding-left: 1.1rem; max-width: var(--measure); }
.plain-list li { margin-bottom: var(--s2); }

/* ---------- comparison table ---------- */

/* The health share column is highlighted: solid green header, green tint down the
   column. Rows alternate shading instead of carrying rules. Look requested by John
   2026-09-25 (he liked obrokersgroup.com's table), built in this site's own palette. */
.compare { margin-top: var(--s5); }
.compare__table {
  width: 100%; border-collapse: collapse; font-size: .97rem;
  background: var(--paper-raised); border: 1px solid var(--rule); border-radius: 2px;
  box-shadow: var(--shadow-raised);
}
.compare__table th, .compare__table td {
  padding: 1rem var(--s4); text-align: left; vertical-align: middle; line-height: 1.5;
}
/* Fixed split so the long pre-existing answer cannot squeeze the traditional column. */
.compare__table thead th:nth-child(2) { width: 50%; }
.compare__table thead th {
  font-size: 1rem; font-weight: 600; color: var(--ink-soft);
  background: var(--paper); border-bottom: 1px solid var(--rule);
}
.compare__table thead th:nth-child(2) {
  background: var(--primary); color: #fff; border-bottom-color: var(--primary);
}
.compare__table thead th small { font-size: .9em; font-weight: 500; opacity: .85; }
.compare__table th[scope="row"] { font-weight: 600; color: var(--ink); width: 11rem; }
.compare__table tbody tr:nth-child(even) > * { background: var(--paper); }
.compare__table td[data-label="Health share"] { background: rgba(47, 107, 79, .06); color: var(--primary-hover); }
.compare__table tbody tr:nth-child(even) td[data-label="Health share"] { background: rgba(47, 107, 79, .11); }
.compare__table td[data-label="Traditional"] { color: var(--ink-soft); }
.compare__table .todo { display: block; padding: var(--s2) var(--s3); }
.compare__note { margin-top: var(--s4); max-width: var(--measure); color: var(--ink-soft); font-size: .95rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
@media (max-width: 44rem) {
  .compare__table, .compare__table tbody, .compare__table tr, .compare__table th, .compare__table td { display: block; }
  .compare__table thead { display: none; }
  .compare__table th[scope="row"] { width: auto; padding-bottom: .3rem; }
  .compare__table td { padding-top: .55rem; padding-bottom: .7rem; }
  .compare__table td::before {
    content: attr(data-label); display: block; margin-bottom: .15rem;
    font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft);
  }
  .compare__table td[data-label="Health share"]::before { color: var(--primary); }
  .compare__table tbody tr { background: var(--paper-raised); }
  .compare__table tbody tr:nth-child(even) { background: var(--paper); }
  .compare__table tbody tr + tr { border-top: 1px solid var(--rule); }
}

/* ---------- about ---------- */

.bio { display: grid; gap: var(--s5); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 52rem) { .bio { grid-template-columns: 15rem minmax(0, 1fr); gap: var(--s6); } }
.bio__portrait { margin: 0; }
.bio__portrait img {
  width: 100%; max-width: 15rem; border-radius: 2px;
  border: 1px solid var(--rule); box-shadow: var(--shadow-raised);
}
.bio__portrait figcaption {
  margin-top: var(--s2); font-size: .85rem; color: var(--ink-soft);
}
.bio__body h2 { margin-bottom: var(--s3); }

/* ---------- faq ---------- */

.faq { max-width: 46rem; border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item > summary {
  list-style: none; cursor: pointer;
  padding: var(--s4) 2.5rem var(--s4) 0; position: relative;
  font-weight: 600; font-size: 1.08rem;
  transition: color .16s cubic-bezier(.2,.8,.2,1);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary:hover { color: var(--primary); }
.faq__item > summary:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.faq__item > summary::after {
  content: "+"; position: absolute; right: .35rem; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; font-weight: 400;
  color: var(--highlight); line-height: 1;
}
.faq__item[open] > summary::after { content: "\2013"; }
.faq__a { padding: 0 0 var(--s4); }
.faq__a p { color: var(--ink-soft); }
.faq__a .todo { color: var(--ink); }
.faq__cta { margin-top: var(--s6); }
