/* GENERATED from src/tokens.js — do not edit here. */
:root {
  --color-bg: #23261F;  /* deep ground — 2% luminance */
  --color-surface: #32362E;  /* raised cards, a step up from the field */
  --color-sage-wash: #2B2F27;  /* section band, between field and cards */
  --color-sage: #7E9668;  /* DECORATIVE ONLY — the anatomy figure */
  --color-sage-deep: #A9BE94;  /* roles invert on a dark ground: this is now the CTA FILL, link and accent colour */
  --color-on-sage-deep: #1B1E19;  /* button label ON the light sage fill */
  --color-ink: #EDE7DA;  /* body — warm cream, matches her flyer field */
  --color-muted: #A9AF9D;  /* secondary text */
  --color-border: #3A3F35;  /* decorative hairline — separators only, never a control edge */
  --color-border-control: #7C8473;  /* the ONLY border allowed to be a control's sole visual edge */
  --color-destructive: #E8907F;  /* error text — lightened for a dark ground */
  --color-footer-bg: #1A1D17;  /* footer ground — the darkest band */
  --color-footer-text: #EDE7DA;  /* footer body text */
  --color-footer-dim: #98A08C;  /* footer secondary text */
  --font-display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs: 0.875rem;
  --text-sm: 0.9375rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.75rem;
  --text-4xl: 3.5rem;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 96px;
  --radius-interactive: 10px;
  --motion-micro: 200ms;
  --motion-reveal: 350ms;
  --motion-reveal-y: 12px;
  --motion-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Massage by Li — site styles.
   :root token block is injected above this by build.js from src/tokens.js.
   Do not hardcode a hex value in this file. If you need a new one, add it to
   tokens.js with its measured contrast ratio and rebuild. */

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

/* color-scheme: light is load-bearing, not a nicety.
   iOS in-app webviews (the Claude app, Instagram, Facebook, Threads) will
   auto-darken a page that has not declared how it handles colour. That turns
   the bone field black and leaves the dark-on-light text unreadable. This
   declaration, plus a background on BOTH html and body, is what stops it.
   The page ships dark, so this declares dark. It still does the same job:
   we state how colour is handled so no host applies its own adjustment. */
:root { color-scheme: dark; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--color-bg);
  color: var(--color-ink);
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Backgrounds on html and body are NOT reliable. Embedded viewers and in-app
   browsers (Instagram, Facebook, Threads, the Claude app's own artifact
   viewer) theme the host document and override both, which drops the page
   onto whatever canvas they are using — black, in a dark-mode app — while
   any section with its own background still renders correctly. Every
   top-level region therefore carries the bone field itself. This is belt and
   braces with :root { color-scheme: light } above, not a replacement for it. */
main { background: var(--color-bg); }

a { color: var(--color-sage-deep); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--color-ink); }

/* --- Focus. Never remove. ------------------------------------------------ */
:focus-visible {
  outline: 3px solid var(--color-sage-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: var(--space-2); top: -100px;
  background: var(--color-sage-deep); color: var(--color-on-sage-deep);
  padding: var(--space-1) var(--space-2); z-index: 100;
  border-radius: var(--radius-interactive);
  transition: top var(--motion-micro) var(--motion-ease);
}
.skip-link:focus { top: var(--space-2); color: var(--color-on-sage-deep); }

/* --- Type ---------------------------------------------------------------- */
/* Cormorant is display only. Its thin strokes fall apart below 24px, so the
   floor here is --text-xl and there is no utility that breaks that. */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--color-ink);
  margin: 0;
  /* Oldstyle figures belong in display type — they are why the flyer reads
     the way it does. Lining tabular figures are forced back on in .figures. */
  font-variant-numeric: oldstyle-nums;
}

h1 { font-size: clamp(2.25rem, 7vw, var(--text-4xl)); }
h2 { font-size: clamp(1.75rem, 5vw, var(--text-3xl)); }
h3 { font-size: var(--text-xl); }

p { margin: 0 0 var(--space-2); max-width: 62ch; }
p:last-child { margin-bottom: 0; }

.lede { font-size: var(--text-lg); color: var(--color-ink); max-width: 46ch; }
.muted { color: var(--color-muted); }
.small { font-size: var(--text-sm); }

/* Anywhere a number has to be scanned or compared rather than admired. */
.figures { font-variant-numeric: lining-nums tabular-nums; font-feature-settings: "lnum" 1, "tnum" 1; }

/* Section eyebrow. Labels the section — does not decorate it. */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 var(--space-2);
}

/* --- Layout -------------------------------------------------------------- */
.wrap { width: 100%; max-width: 68rem; margin-inline: auto; padding-inline: var(--space-3); }
.wrap--narrow { max-width: 46rem; }

section { padding-block: var(--space-6); }
@media (min-width: 768px) { section { padding-block: var(--space-7); } }

/* Sections are separated by space and a hairline, never by alternating fills.
   The terminal dot is lifted off the wreath — it is the only ornament here. */
.rule {
  border: 0; height: 1px; background: var(--color-border);
  margin: 0; position: relative; overflow: visible;
}
.rule::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 5px; height: 5px; margin-top: -2.5px;
  border-radius: 50%; background: var(--color-sage);
}

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  /* Solid first — color-mix needs Safari 16.2+, and an unsupported value
     invalidates the whole declaration, which would leave the header
     transparent over scrolling content. */
  background: var(--color-bg);
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-2); min-height: 60px;
}
/* The wordmark lockup is the one centred thing on the site. */
.wordmark { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.wordmark__mark { width: 26px; height: 26px; flex: none; }
.wordmark__text {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink);
  white-space: nowrap;
}
.site-header__aside { display: none; }
@media (min-width: 860px) {
  .site-header__aside {
    display: flex; align-items: center; gap: var(--space-3);
    font-size: var(--text-sm);
  }
  .site-header__aside a { text-decoration: none; }
  .site-header__aside a:not(.btn) { color: var(--color-muted); }
  .site-header__aside a:not(.btn):hover { color: var(--color-ink); }
}

/* --- Buttons ------------------------------------------------------------- */
/* Radius lives on interactive surfaces only. Structural elements stay square. */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px var(--space-3);
  font-family: var(--font-body); font-size: var(--text-base); font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: var(--radius-interactive);
  cursor: pointer; text-decoration: none;
  transition: background var(--motion-micro) var(--motion-ease),
              color var(--motion-micro) var(--motion-ease),
              border-color var(--motion-micro) var(--motion-ease);
}
.btn--primary { background: var(--color-sage-deep); color: var(--color-on-sage-deep); }
.btn--primary:hover { background: var(--color-ink); color: var(--color-on-sage-deep); }
.btn--ghost { background: transparent; color: var(--color-sage-deep); border-color: var(--color-sage-deep); }
.btn--ghost:hover { background: var(--color-sage-deep); color: var(--color-on-sage-deep); }
.btn--block { width: 100%; }

/* --- Credential ---------------------------------------------------------- */
/* This block sits where a testimonial band would go on any other site.
   She has no reviews yet; she has two verifiable numbers. Use those. */
.credential {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-1) var(--space-3);
  padding: var(--space-2) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}
.credential__item { display: flex; align-items: baseline; gap: 8px; }
.credential__key {
  font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-muted);
}
.credential__val { font-weight: 600; color: var(--color-ink); }

/* --- Hero ---------------------------------------------------------------- */
.hero { padding-top: var(--space-5); padding-bottom: var(--space-5); }
.hero h1 { margin-bottom: var(--space-3); max-width: 15ch; }
.hero .lede { margin-bottom: var(--space-4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }

/* --- Router: the signature ----------------------------------------------- */
/* Visibly tinted, not another sheet of near-white. */
.router { background: var(--color-sage-wash); border-block: 1px solid var(--color-border); }
.router__head { margin-bottom: var(--space-4); }
.router__head h2 { max-width: 18ch; }

.router__layout { display: grid; gap: var(--space-4); }
@media (min-width: 900px) {
  .router__layout { grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: var(--space-6); align-items: start; }
}

/* The figure is decorative; the region list below it carries the semantics.
   These shapes are real anatomy, so the muscle groups themselves are the
   pointer targets -- no dots floating on a blank silhouette. */
.figure-frame { position: relative; max-width: 250px; margin-inline: auto; width: 100%; }
@media (min-width: 900px) { .figure-frame { max-width: 300px; } }
.figure-frame__svg { width: 100%; height: auto; }

.figure-inert polygon { fill: var(--color-sage); opacity: 0.34; }

.region-shape { cursor: pointer; }
.region-shape polygon {
  fill: var(--color-sage);
  opacity: 0.72;
  transition: opacity var(--motion-micro) var(--motion-ease),
              fill var(--motion-micro) var(--motion-ease);
}
.region-shape:hover polygon { opacity: 0.92; }
.region-shape.is-selected polygon { fill: var(--color-sage-deep); opacity: 1; }

/* Region list. With JS off this is the whole interface: a plain linked list. */
.region-list { list-style: none; margin: var(--space-3) 0 0; padding: 0; display: grid; gap: 6px; }
.region-list__btn {
  display: block; width: 100%; text-align: left;
  min-height: 48px; padding: 12px var(--space-2);
  font-family: var(--font-body); font-size: var(--text-base); color: var(--color-ink);
  background: var(--color-bg);
  /* This border is the button's only visual edge, so it has to clear 3:1.
     --color-border (1.18:1) is for separators and would fail here. */
  border: 1px solid var(--color-border-control);
  border-left: 3px solid transparent;
  border-radius: var(--radius-interactive);
  cursor: pointer; text-decoration: none;
  transition: border-color var(--motion-micro) var(--motion-ease),
              background var(--motion-micro) var(--motion-ease);
}
.region-list__btn:hover { border-color: var(--color-sage-deep); background: var(--color-surface); }
/* Selected state is carried by three cues, not by colour alone: a left marker,
   the border, and the weight. sage-wash against bone is 1.05:1 and could never
   carry it on its own. */
.region-list__btn[aria-pressed="true"] {
  border-color: var(--color-sage-deep);
  border-left-color: var(--color-sage-deep);
  background: var(--color-sage-wash);
  font-weight: 600;
}

/* Panels are visible by default so crawlers and no-JS visitors get the copy.
   JS adds .is-enhanced to the router, which is what hides them. */
.router.is-enhanced .region-panel[hidden] { display: none; }
.router.is-enhanced .region-panel { animation: panel-in var(--motion-reveal) var(--motion-ease) both; }
@keyframes panel-in { from { opacity: 0; transform: translateY(var(--motion-reveal-y)); } }

.region-panel { padding-top: var(--space-2); }
.region-panel + .region-panel { margin-top: var(--space-4); border-top: 1px solid var(--color-border); }
.router.is-enhanced .region-panel + .region-panel { margin-top: 0; border-top: 0; }
.region-panel h3 { margin-bottom: var(--space-2); }
.region-panel__why { margin-bottom: var(--space-3); }

.region-panel__rx {
  display: flex; flex-wrap: wrap; gap: var(--space-1) var(--space-3);
  padding: var(--space-2) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-3);
}
.region-panel__rx dt {
  font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-muted); margin: 0;
}
.region-panel__rx dd { margin: 2px 0 0; font-weight: 600; }

.note {
  border-left: 3px solid var(--color-sage);
  padding: 10px 0 10px var(--space-2);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-muted);
}
.note--intake { border-left-color: var(--color-sage-deep); color: var(--color-ink); }

/* --- Modality blocks ----------------------------------------------------- */
/* Deliberately not a three-card grid. Three equal cards would claim three
   equal choices, and NMT is the anchor. */
.anchor-block { display: grid; gap: var(--space-3); }
@media (min-width: 860px) {
  .anchor-block { grid-template-columns: minmax(0, 1fr) minmax(0, 20rem); gap: var(--space-6); align-items: start; }
}
.anchor-block__aside {
  background: var(--color-sage-wash);
  border: 1px solid var(--color-border);
  padding: var(--space-3);
}

.two-up { display: grid; gap: var(--space-3); margin-top: var(--space-5); }
@media (min-width: 720px) { .two-up { grid-template-columns: 1fr 1fr; gap: var(--space-4); } }
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-3);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.card h3 { margin: 0; }

/* --- Pricing ------------------------------------------------------------- */
.price-table { width: 100%; border-collapse: collapse; margin-bottom: var(--space-3); }
.price-table caption { text-align: left; margin-bottom: var(--space-2); color: var(--color-muted); font-size: var(--text-sm); }
.price-table th, .price-table td { text-align: left; padding: 14px 0; border-bottom: 1px solid var(--color-border); }
.price-table th {
  font-family: var(--font-body); font-weight: 600;
  font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-muted);
}
.price-table td:last-child, .price-table th:last-child { text-align: right; }
.price-table .price { font-size: var(--text-lg); font-weight: 600; }

.offer {
  border: 1px solid var(--color-sage-deep);
  padding: var(--space-3);
  display: flex; flex-direction: column; gap: 6px;
}
.offer__headline { font-family: var(--font-display); font-size: var(--text-xl); }

/* --- Footer -------------------------------------------------------------- */
/* The dark anchor. Without one the whole page floats. */
.site-footer { background: var(--color-footer-bg); color: var(--color-footer-text); padding-block: var(--space-6); font-size: var(--text-sm); }
.site-footer a { color: var(--color-footer-text); }
.site-footer a:hover { color: #FFFFFF; }
.site-footer h2 { color: var(--color-footer-dim); }
.site-footer .muted { color: var(--color-footer-dim); }
.site-footer .rule { display: none; }
.site-footer__grid { display: grid; gap: var(--space-4); }
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer h2 {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-muted);
  margin: 0 0 10px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { min-height: 24px; display: inline-block; }
.site-footer__mark { width: 34px; height: 34px; margin-top: var(--space-3); opacity: 0.75; }

/* --- Scroll reveal ------------------------------------------------------- */
/* Matches the Scroll Reveal (Subtle) preset exactly — opacity 0, y 12px,
   350ms, power1.out — via IntersectionObserver. See build notes for why
   this is not GSAP. Applied by JS only, so no-JS content is never hidden. */
.js .reveal { opacity: 0; transform: translateY(var(--motion-reveal-y)); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity var(--motion-reveal) var(--motion-ease),
              transform var(--motion-reveal) var(--motion-ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

.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;
}

/* --- Modality pages ------------------------------------------------------ */

.breadcrumb {
  padding-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-muted);
}
.breadcrumb span[aria-hidden] { margin-inline: 6px; }

/* Numbered protocol. The counter is the point — it says "this is a procedure
   with steps", which is most of what separates a clinic from a spa. */
.steps { list-style: none; counter-reset: step; margin: var(--space-3) 0 var(--space-4); padding: 0; }
.steps__item {
  counter-increment: step;
  position: relative;
  padding-left: var(--space-5);
  padding-bottom: var(--space-3);
}
.steps__item::before {
  content: counter(step);
  position: absolute; left: 0; top: 2px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--color-sage-deep);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: var(--text-xs); font-weight: 600;
  color: var(--color-sage-deep);
  font-variant-numeric: lining-nums;
}
.steps__item h3 { font-size: var(--text-xl); margin-bottom: 6px; }
.steps__item p { color: var(--color-muted); margin: 0; }

.plainlist { list-style: none; margin: var(--space-3) 0 0; padding: 0; display: grid; gap: var(--space-2); }
.plainlist li {
  padding-left: var(--space-3);
  border-left: 2px solid var(--color-border);
  max-width: 62ch;
}

/* <details> so the answers are in the DOM for crawlers with no JS involved. */
.faq { margin-top: var(--space-3); border-top: 1px solid var(--color-border); }
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-2) var(--space-4) var(--space-2) 0;
  min-height: 48px;
  display: flex; align-items: center;
  font-weight: 600;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute; right: 0;
  font-size: var(--text-xl); font-weight: 400; line-height: 1;
  color: var(--color-sage-deep);
  transition: transform var(--motion-micro) var(--motion-ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 var(--space-4) var(--space-3) 0; color: var(--color-muted); margin: 0; }

/* --- Intake form --------------------------------------------------------- */

.intake .field { margin-bottom: var(--space-4); }
.intake .field label { display: block; font-weight: 600; margin-bottom: 4px; }
.intake .help { font-size: var(--text-sm); color: var(--color-muted); margin: 0 0 8px; max-width: 62ch; }
.intake input[type=text], .intake input[type=tel], .intake textarea, .intake select {
  width: 100%; min-height: 48px; padding: 12px;
  font-family: var(--font-body); font-size: var(--text-base);
  color: var(--color-ink); background: var(--color-surface);
  border: 1px solid var(--color-border-control);
  border-radius: var(--radius-interactive);
}
.intake textarea { min-height: 92px; line-height: 1.55; resize: vertical; }
.field--check label { display: flex; align-items: center; gap: 10px; font-weight: 400; }
.field--check input { width: 24px; height: 24px; accent-color: var(--color-sage-deep); }

.areas { border: 0; padding: 0; margin: 0; display: grid; gap: 10px; }
.area {
  border: 1px solid var(--color-border-control);
  border-left: 3px solid transparent;
  border-radius: var(--radius-interactive);
  padding: 12px;
  transition: border-color var(--motion-micro) var(--motion-ease),
              background var(--motion-micro) var(--motion-ease);
}
.area.is-on { border-color: var(--color-sage-deep); border-left-color: var(--color-sage-deep); background: var(--color-sage-wash); }
.area__head { display: flex; align-items: center; gap: 10px; min-height: 32px; cursor: pointer; font-weight: 600; }
.area__head input { width: 24px; height: 24px; flex: none; accent-color: var(--color-sage-deep); }

/* Collapsed until the area is chosen, so the page opens as six checkboxes
   rather than six checkboxes and six sliders. */
.area__sev { display: none; align-items: center; gap: 10px; margin-top: 10px; }
.area.is-on .area__sev { display: flex; }
.area__sev label { font-size: var(--text-sm); color: var(--color-muted); margin: 0; flex: none; }
.area__sev input[type=range] { flex: 1; min-height: 44px; accent-color: var(--color-sage-deep); }
.area__sev output {
  flex: none; min-width: 2.4em; text-align: center; font-weight: 600;
  font-variant-numeric: lining-nums tabular-nums;
}

/* Severity badge drawn on the diagram. This is the accessible carrier of
   severity — the ramp colours measure 1.00:1 against each other at the top
   end, so they are the same shade in greyscale and to a colour-blind eye. */
.badge__bg { fill: var(--color-bg); stroke: var(--color-ink); stroke-width: 1; }
.badge__num {
  fill: var(--color-ink);
  font-family: var(--font-body);
  font-size: 8px; font-weight: 600;
  font-variant-numeric: lining-nums;
}

.region-shape.is-picked polygon { opacity: 0.95; }

.scale-key { display: flex; align-items: center; gap: 10px; margin-top: var(--space-2); }
.scale-key__bar {
  flex: none; width: 76px; height: 8px; border-radius: 4px;
  background: linear-gradient(90deg, rgb(111,138,86), rgb(200,162,74), rgb(217,97,78));
}

/* --- Utilities -----------------------------------------------------------
   These exist so no HTML file needs a style="" attribute. That is not tidiness:
   inline styles force `style-src 'unsafe-inline'` in the Content Security
   Policy, and a policy with unsafe-inline in it is most of the way to no
   policy at all. Every one of the 43 inline styles in this project moved here. */
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.m-0  { margin: 0; }
.rule--gap { margin-bottom: var(--space-5); }
.stack-tight { margin-top: 10px; }

/* Price table row headers read as plain body text, not as the uppercase
   column headers above them. */
.price-table th[scope="row"] {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-ink);
}

.measure-wide { max-width: 52ch; }
.aside-price { font-size: var(--text-2xl); line-height: 1.1; margin-bottom: 6px; }
.btn--compact { min-height: 40px; padding: 8px 16px; }
.btn--nav { min-height: 44px; }
.footer-status { padding-block: 8px; display: flex; gap: var(--space-3); flex-wrap: wrap; }

@media print {
  .site-header, .site-footer, .hero__actions, .btn, .figure-frame,
  .region-list, .faq__item summary::after { display: none !important; }
  body { background: #fff; color: #000; }
  main { background: #fff; }
  .router { background: #fff; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
  .faq__item p, .region-panel { display: block !important; }
}
