@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #111111;
  --ink-soft: #1b1b1b;
  --dark: #141414;
  --dark-raised: #1d1d1d;
  --paper: #ffffff;
  --paper-muted: #f5f5f3;
  --line: #d3d3cf;
  --line-dark: #4a4a47;
  --muted: #5e5e59;
  --muted-on-dark: #bebeb8;
  --orange: #F5662D;
  --font-body: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-display: "Archivo", Arial, "Helvetica Neue", Helvetica, sans-serif;
  --weight-display: 600;
  --weight-heading: 700;
  --weight-label: 700;
  --type-display: clamp(2.75rem, calc(2.2rem + 2.4vw), 4rem);
  --type-section: clamp(2.2rem, calc(1.85rem + 1.6vw), 3.2rem);
  --type-subhead: clamp(1.75rem, calc(1.45rem + 1.25vw), 2.56rem);
  --type-featured-quote: clamp(1.75rem, calc(1.55rem + .7vw), 2.2rem);
  --type-content-heading: clamp(1.5rem, calc(1.35rem + .5vw), 1.875rem);
  --type-card-title: 1.25rem;
  --type-lede: 1.25rem;
  --type-body: 1rem;
  --type-label: .875rem;
  --type-nav: .8125rem;
  --leading-display: 1.02;
  --leading-heading: 1.12;
  --leading-card: 1.2;
  --leading-body: 1.6;
  --leading-label: 1.35;
  --tracking-display: -.027em;
  --tracking-heading: -.015em;
  --tracking-label: .06em;
  --tracking-ui: .02em;
  --icon-frame-small: 44px;
  --icon-glyph-small: 26px;
  --icon-frame-medium: 52px;
  --icon-glyph-medium: 30px;
  --icon-frame-large: 64px;
  --icon-glyph-large: 36px;
  --shell: 1230px;
  --page-pad: clamp(28px, 5vw, 96px);
  --gutter: clamp(18px, 1.5vw, 28px);
  --section-pad: clamp(96px, 8vw, 152px);
  --header-height: 112px;
  --header-clearance: calc(var(--header-height) + env(safe-area-inset-top) + 16px);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --focus: 3px solid var(--orange);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-clearance);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, a { touch-action: manipulation; }
:focus-visible { outline: var(--focus); outline-offset: 4px; }
.button--orange:focus-visible,
.health-cta .button:focus-visible { outline-color: var(--ink); }

section[id],
footer[id],
h1[id],
h2[id] { scroll-margin-top: var(--header-clearance); }

/* Netlify's optional public-site badge is visually intrusive on this branded page. */
#nl-badge-frame { display: none !important; }

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }
.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;
}

.shell {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--shell));
  margin-inline: auto;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-pad);
  overflow: clip;
}

.section--muted { background: var(--paper-muted); }
.section--dark { color: var(--paper); background: var(--dark); }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-weight: var(--weight-heading); letter-spacing: var(--tracking-heading); line-height: var(--leading-heading); }
.accent { color: var(--orange); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: #fff;
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(17, 17, 17, .12);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 2.5vw, 44px);
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
}

.brand__logo { display: block; width: clamp(168px, 12vw, 210px); height: auto; }
.brand__logo--light { filter: brightness(0) invert(1); opacity: .96; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: clamp(18px, 2vw, 34px);
}
.site-nav a {
  position: relative;
  flex: 0 0 auto;
  padding-block: 10px;
  font-size: var(--type-nav);
  font-weight: var(--weight-label);
  letter-spacing: var(--tracking-ui);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

.site-nav a:hover::after, .site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a:active { color: var(--ink); }

.nav-toggle,
.site-nav__mobile-cta { display: none; }

.nav-toggle {
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle > span:not(.visually-hidden) {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms var(--ease-out), opacity 160ms ease;
}

.nav-toggle > span:not(.visually-hidden) + span:not(.visually-hidden) { margin-top: 5px; }
.site-header.nav-open .nav-toggle > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle > span:nth-of-type(3) { opacity: 0; }
.site-header.nav-open .nav-toggle > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 60px;
  padding: 0 26px;
  border: 0;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: var(--tracking-ui);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease-out), border-color 220ms ease;
}

.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(1px) scale(.985); }
.button__arrow {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 220ms var(--ease-out);
}
.button:hover .button__arrow { transform: translateX(5px); }
.button--orange { color: var(--ink); background: var(--orange); }
.button--orange:hover { color: var(--ink); background: var(--orange); }
.button--black { color: var(--paper); background: var(--ink); }
.button--black:hover { color: var(--paper); background: #242424; }
.button--outline {
  min-height: 58px;
  padding-inline: 25px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.button--outline:hover { color: var(--paper); background: var(--ink); }
.header-cta {
  justify-self: end;
  min-width: 0;
  min-height: 56px;
  gap: 18px;
  padding-inline: 22px;
  white-space: nowrap;
}

.hero {
  min-height: min(860px, calc(100vh - var(--header-height)));
  padding-top: clamp(68px, 6.5vw, 112px);
  padding-bottom: clamp(88px, 8vw, 144px);
}
.hero__grid { position: relative; align-items: center; }
.hero__copy { grid-column: 1 / span 6; z-index: 2; }
.hero__title-line,
.health-map__title-line { display: inline; }
.kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
  color: #4f4f4a;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.kicker > span { width: 44px; height: 4px; flex: 0 0 auto; background: var(--orange); }
.kicker--on-dark { color: #d1d1cc; }
.hero h1 {
  max-width: 740px;
  margin-bottom: 42px;
  font-size: var(--type-display);
}
.hero__lede {
  max-width: 60ch;
  margin-bottom: 42px;
  color: #3f3f3b;
  font-size: var(--type-body);
  line-height: var(--leading-body);
}
.hero__button { min-width: min(100%, 360px); }
.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 27px;
  margin: 32px 0 0;
  padding: 0;
  color: #3e3e3a;
  list-style: none;
}
.micro-proof li { display: flex; align-items: center; gap: 10px; font-size: var(--type-label); font-weight: var(--weight-heading); }
.micro-proof__icon {
  display: grid;
  place-items: center;
  width: var(--icon-frame-small);
  height: var(--icon-frame-small);
  flex: 0 0 var(--icon-frame-small);
  border: 1px solid var(--orange);
  line-height: 0;
}
.micro-proof__icon img, .health-map-card__icon img {
  /* The source glyphs are black; this matrix maps them exactly to the approved brand orange. */
  filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='orange' color-interpolation-filters='sRGB'%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 .960784 0 0 0 0 .4 0 0 0 0 .176471 0 0 0 1 0'/%3E%3C/filter%3E%3C/svg%3E%23orange");
}
.micro-proof__icon img,
.icon-plate img,
.health-map-card__icon img,
.health-map__result-icon img,
.process-card__icon img,
.check-icon img {
  display: block;
  transform: translate(var(--asset-x, 0), var(--asset-y, 0)) scale(var(--asset-scale, 1));
  transform-origin: center;
}
img[src*="icon-action-support.png"] { --asset-scale: 1.414; --asset-x: 3%; --asset-y: 23.2%; }
img[src*="icon-better-business.png"] { --asset-scale: 1.542; --asset-x: 5.7%; --asset-y: 25.3%; }
img[src*="icon-cash-flow-map.png"] { --asset-scale: 1.313; --asset-x: -7.9%; --asset-y: 5.6%; }
img[src*="icon-cash-flow.png"] { --asset-scale: 1.455; --asset-x: -2.8%; --asset-y: -15.1%; }
img[src*="icon-client-experience.png"] { --asset-scale: 1.488; --asset-x: 5.8%; --asset-y: 7.8%; }
img[src*="icon-findings.png"] { --asset-scale: 1.463; --asset-x: -8.3%; --asset-y: 22.3%; }
img[src*="icon-health-check.png"] { --asset-scale: 1.369; --asset-x: 8%; --asset-y: 10.4%; }
img[src*="icon-leads.png"] { --asset-scale: 1.369; --asset-x: 1.9%; --asset-y: -18.7%; }
img[src*="icon-operations.png"] { --asset-scale: 1.118; --asset-x: -3.1%; --asset-y: -5.9%; }
img[src*="icon-pricing-profit.png"] { --asset-scale: 1.422; --asset-x: 2.2%; --asset-y: -6.1%; }
img[src*="icon-pricing.png"] { --asset-scale: 1.43; --asset-x: -7.5%; --asset-y: -18.2%; }
img[src*="icon-quoting.png"] { --asset-scale: 1.524; --asset-x: 7.4%; --asset-y: -17.3%; }
img[src*="icon-sales-marketing.png"] { --asset-scale: 1.333; --asset-x: 6.8%; --asset-y: -8.6%; }
img[src*="icon-strategy-plan.png"] { --asset-scale: 1.497; --asset-x: -5.8%; --asset-y: 24.9%; }
img[src*="icon-systems.png"] { --asset-scale: 1.407; --asset-x: -6%; --asset-y: -7.7%; }
img[src*="icon-team.png"] { --asset-scale: 1.32; --asset-x: -2.6%; --asset-y: -6.4%; }
.micro-proof__icon img { width: var(--icon-glyph-small); height: var(--icon-glyph-small); object-fit: contain; }
.hero__visual {
  position: relative;
  grid-column: 7 / -1;
  aspect-ratio: 4 / 5;
}
.hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.hero__accent-line {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 9px;
  height: 25%;
  background: var(--orange);
}
.problems { min-height: 0; }
.problems__intro { margin-bottom: clamp(76px, 7vw, 118px); }
.problems__intro h2 { margin-bottom: 24px; font-size: var(--type-section); }
.problems__intro p { margin: 0; color: var(--muted); font-size: var(--type-body); line-height: var(--leading-body); }
.problems__intro strong { color: var(--ink); }
.problem-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
}
.problem-group { display: grid; grid-template-rows: auto repeat(2, minmax(160px, 1fr)); }
.problem-group h3 {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.problem-item {
  display: grid;
  grid-template-columns: var(--icon-frame-large) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 160px;
  padding-block: 32px;
}
.problem-item h4 { margin: 0 0 8px; font-size: var(--type-card-title); line-height: var(--leading-card); }
.problem-item p { margin: 0; color: var(--muted); font-size: var(--type-body); line-height: 1.5; }
.problem-item p span { display: block; white-space: nowrap; }
.icon-plate { display: grid; place-items: center; width: var(--icon-frame-large); height: var(--icon-frame-large); line-height: 0; }
.icon-plate--orange { background: var(--orange); }
.icon-plate img { width: var(--icon-glyph-large); height: var(--icon-glyph-large); object-fit: contain; filter: invert(1); }

.health-map { min-height: 0; padding-bottom: 0; }
.health-map__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.health-map__eyebrow {
  margin-bottom: 22px;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.health-map__intro h2 { margin-bottom: 0; font-size: var(--type-section); }
.health-map__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(32px, 4vw, 64px);
}
.health-map-card {
  display: grid;
  grid-template-columns: var(--icon-frame-large) minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.health-map-card__icon {
  display: grid;
  place-items: center;
  width: var(--icon-frame-large);
  height: var(--icon-frame-large);
  background: #f0f0ed;
  line-height: 0;
}
.health-map-card__icon img { width: var(--icon-glyph-large); height: var(--icon-glyph-large); object-fit: contain; }
.health-map-card h3 { margin: 3px 0 4px; font-size: var(--type-card-title); line-height: var(--leading-card); text-transform: uppercase; }
.health-map-card p { max-width: 28ch; margin: 18px 0 0; color: var(--ink); font-size: var(--type-body); line-height: var(--leading-body); }
.health-map-card .health-map-card__descriptor {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}
.health-map__result {
  display: grid;
  grid-template-columns: var(--icon-frame-medium) minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  min-height: 140px;
  margin-top: clamp(18px, 2.35vw, 26px);
  padding: 30px clamp(34px, 5vw, 76px);
  color: var(--paper);
  background: var(--orange);
}
.health-map__result-icon { display: grid; place-items: center; width: var(--icon-frame-medium); height: var(--icon-frame-medium); line-height: 0; }
.health-map__result-icon img { width: var(--icon-glyph-medium); height: var(--icon-glyph-medium); object-fit: contain; filter: brightness(0) invert(1); }
.health-map__result-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  min-width: 0;
}
.health-map__result-copy strong { font-size: var(--type-card-title); line-height: var(--leading-card); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.health-map__result-copy p { margin: 0; font-size: var(--type-lede); font-weight: var(--weight-heading); line-height: 1.5; }
.health-map__result-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  justify-self: end;
  gap: 24px;
  min-width: 244px;
  min-height: 48px;
  padding-inline: 18px;
  color: var(--ink);
  border: 1px solid var(--paper);
  background: var(--paper);
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: var(--tracking-ui);
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}
.health-map__result-action:hover { color: var(--paper); background: var(--ink); }
.health-map__result-action:active { transform: translateY(1px) scale(.985); }
.health-map__result-action:focus-visible { outline-color: var(--ink); }
.health-map__result-arrow { display: inline-grid; place-items: center; min-width: 24px; font-size: 1.4em; line-height: 1; transition: transform 180ms ease; }
.health-map__result-action:hover .health-map__result-arrow { transform: translateX(4px); }

.process { min-height: 0; }
.process__intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: var(--gutter);
  margin-bottom: clamp(58px, 5vw, 80px);
}
.process__intro > div { grid-column: 1 / span 5; }
.process__intro > p {
  grid-column: 7 / -1;
  max-width: 720px;
  margin: 0 0 6px;
  color: #d6d6d1;
  font-size: var(--type-lede);
  line-height: 1.65;
}
.process__intro h2 { margin: 0; font-size: var(--type-section); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-card { min-width: 0; border: 1px solid var(--line-dark); background: #191919; }
.process-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 16px 24px;
  background: #2b2b2b;
}
.process-card__header strong { font-size: var(--type-label); font-weight: var(--weight-label); font-variant-numeric: tabular-nums; }
.process-card__header span { color: #cfcfca; font-size: var(--type-label); font-weight: var(--weight-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.process-card__body { display: flex; flex-direction: column; min-height: 230px; padding: 24px 24px 20px; }
.process-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--icon-frame-medium);
  height: var(--icon-frame-medium);
  margin-bottom: 20px;
  border: 0;
  background: transparent;
  line-height: 0;
}
.process-card__icon::before {
  content: "";
  display: block;
  width: var(--icon-glyph-medium);
  height: var(--icon-glyph-medium);
  background: var(--orange);
  -webkit-mask: var(--process-icon) center / contain no-repeat;
  mask: var(--process-icon) center / contain no-repeat;
}
.process-card__icon--health { --process-icon: url("/assets/icon-health-check.png"); }
.process-card__icon--findings { --process-icon: url("/assets/icon-findings.png"); }
.process-card__icon--strategy { --process-icon: url("/assets/icon-strategy-plan.png"); }
.process-card__icon--support { --process-icon: url("/assets/icon-action-support.png"); }
.process-card__icon--business { --process-icon: url("/assets/icon-better-business.png"); }
.process-card__icon img {
  display: none;
}
.process-card h3 { margin: 0 0 10px; font-size: var(--type-card-title); line-height: var(--leading-card); }
.process-card p { max-width: 23ch; margin: 0; color: #d1d1cb; font-size: var(--type-body); line-height: 1.55; }

.experience { min-height: 0; }
.experience__grid { align-items: center; }
.experience__photo {
  position: relative;
  grid-column: 1 / span 6;
  margin: 0;
  min-height: clamp(600px, 50vw, 820px);
}
.experience__photo > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 47% center;
}
.experience__photo figcaption {
  position: absolute;
  right: clamp(-18px, -2vw, -42px);
  bottom: 34px;
  display: grid;
  gap: 13px;
  width: min(390px, 60%);
  padding: 28px 32px;
  color: var(--paper);
  background: var(--dark);
}
.experience__photo figcaption::before { content: ""; width: 45px; height: 4px; background: var(--orange); }
.experience__photo figcaption span { color: #d0d0cb; font-size: var(--type-label); font-weight: var(--weight-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.experience__photo figcaption strong { font-size: var(--type-card-title); line-height: var(--leading-card); }
.experience__content { grid-column: 8 / -1; }
.experience__content h2 { margin-bottom: 36px; font-size: var(--type-section); }
.experience__lede { max-width: 65ch; margin-bottom: 36px; color: var(--muted); font-size: var(--type-lede); line-height: 1.65; }
.experience-points { display: grid; margin: 46px 0 0; padding: 0; list-style: none; }
.experience-points li { display: grid; grid-template-columns: var(--icon-frame-medium) 1fr; gap: 20px; padding-block: 25px; border-top: 1px solid var(--line); }
.check-icon { display: grid; place-items: center; justify-self: center; width: var(--icon-frame-medium); height: var(--icon-frame-medium); background: var(--orange); line-height: 0; }
.check-icon img { width: var(--icon-glyph-medium); height: var(--icon-glyph-medium); object-fit: contain; filter: invert(1); }
.experience-points strong { display: block; margin-bottom: 3px; font-size: var(--type-body); }
.experience-points p { max-width: 54ch; margin: 0; color: var(--muted); font-size: var(--type-body); line-height: var(--leading-body); }

.testimonials { min-height: 0; }
.testimonials__intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: var(--gutter);
  margin-bottom: 52px;
}
.testimonials__intro h2 { grid-column: 1 / span 7; margin: 0; font-size: var(--type-section); }
.testimonials__intro > p { grid-column: 8 / -1; max-width: 65ch; margin: 0 0 8px; color: var(--muted-on-dark); font-size: var(--type-body); line-height: 1.65; }
.testimonial-layout { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(320px, 1fr); gap: 20px; }
blockquote { margin: 0; }
.testimonial-featured, .testimonial-card { border: 1px solid var(--line-dark); background: #191919; }
.testimonial-featured { display: flex; flex-direction: column; min-height: 430px; padding: clamp(40px, 4vw, 66px); }
.testimonial-featured__path { margin-bottom: 42px; color: var(--orange); font-size: var(--type-label); font-weight: var(--weight-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.testimonial-featured__path span { margin-inline: 10px; }
.testimonial-featured__quote { max-width: 920px; margin-bottom: 42px; font-size: var(--type-featured-quote); font-weight: var(--weight-heading); letter-spacing: var(--tracking-heading); line-height: 1.3; }
.testimonial-featured__quote > span { display: block; }
.testimonial-featured footer, .testimonial-card footer { display: grid; gap: 2px; }
.testimonial-featured footer { margin-top: auto; }
.testimonial-featured footer span, .testimonial-card footer span { color: var(--muted-on-dark); font-size: var(--type-label); line-height: var(--leading-label); }
.testimonial-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 20px; }
.testimonial-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(30px, 2.5vw, 40px); }
.testimonial-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--orange); }
.testimonial-card > p { margin-bottom: 30px; color: #eeeeea; font-size: var(--type-lede); line-height: 1.55; }

.faq__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gutter);
  align-items: start;
}
.faq__intro { grid-column: 1 / span 5; }
.faq__intro h2 { margin-bottom: 28px; font-size: var(--type-section); }
.faq__intro > p:last-child { max-width: 65ch; margin: 0; color: var(--muted); font-size: var(--type-body); line-height: 1.65; }
.faq-list { grid-column: 7 / -1; border-bottom: 1px solid var(--line); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 20px 52px 20px 0;
  cursor: pointer;
  font-size: var(--type-card-title);
  font-weight: var(--weight-heading);
  line-height: 1.35;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--ink); }
.faq-list details:focus-within { border-top-color: var(--ink); }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details > p { max-width: 64ch; margin: -2px 52px 24px 0; color: var(--muted); font-size: var(--type-body); line-height: 1.65; }

.content-page { background: var(--paper); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.about-hero { padding-top: clamp(76px, 8vw, 132px); }
.about-hero__grid { align-items: center; }
.about-hero__copy { grid-column: 1 / span 6; padding-right: clamp(22px, 3vw, 52px); }
.about-hero__copy h1, .contact-hero__copy h1 {
  margin-bottom: 38px;
  font-size: var(--type-display);
}
.about-hero__copy > p:not(.kicker):not(.about-hero__location), .contact-hero__copy > p:not(.kicker) {
  max-width: 58ch;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.65;
}
.about-hero__location {
  max-width: 52ch;
  margin: -14px 0 30px;
  color: var(--muted);
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  line-height: 1.55;
}
.about-hero__photo {
  position: relative;
  grid-column: 8 / -1;
  margin: 0;
  aspect-ratio: 4 / 5;
}
.about-hero__photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto auto 0;
  width: 8px;
  height: 25%;
  background: var(--orange);
}
.about-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 46% center; }
.content-intro { max-width: 680px; margin-bottom: clamp(58px, 7vw, 96px); }
.content-intro h2 { margin: 0; font-size: var(--type-section); }
.about-principles__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.proof-card { min-height: 270px; padding: clamp(30px, 3vw, 44px); border: 1px solid var(--line); background: var(--paper); }
.proof-card > span { display: block; margin-bottom: 44px; color: var(--ink); font-size: var(--type-label); font-weight: var(--weight-label); letter-spacing: var(--tracking-label); }
.proof-card h3 { margin-bottom: 18px; font-size: var(--type-card-title); line-height: var(--leading-card); }
.proof-card p { max-width: 34ch; margin: 0; color: var(--muted); font-size: var(--type-body); line-height: var(--leading-body); }
.ct-proof__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: var(--gutter);
}
.ct-proof__copy { grid-column: 1 / span 6; }
.ct-proof__copy h2 { margin: 0; font-size: var(--type-section); }
.ct-proof__detail { grid-column: 8 / -1; padding-top: 58px; }
.ct-proof__detail > p { max-width: 56ch; margin-bottom: 36px; color: #d6d6d1; font-size: var(--type-lede); line-height: 1.65; }

.contact-hero { min-height: clamp(700px, calc(100vh - 104px), 860px); display: flex; align-items: center; }
.contact-hero__grid { align-items: center; }
.contact-hero__copy { grid-column: 1 / span 6; padding-right: clamp(24px, 4vw, 72px); }
.contact-card {
  grid-column: 8 / -1;
  min-height: 430px;
  padding: clamp(38px, 4vw, 60px);
  color: var(--paper);
  border-top: 4px solid var(--orange);
  background: var(--dark);
}
.contact-card__eyebrow { margin-bottom: 26px; color: #c7c7c1; font-size: var(--type-label); font-weight: var(--weight-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.contact-card h2 { margin-bottom: 36px; font-size: var(--type-subhead); }
.contact-card__email { display: inline-block; margin-bottom: 36px; color: var(--paper); font-size: var(--type-card-title); font-weight: var(--weight-heading); text-underline-offset: 6px; }
.contact-card__email:hover { color: var(--orange); }
.contact-card > p:not(.contact-card__eyebrow) { max-width: 48ch; margin-bottom: 34px; color: #c9c9c3; font-size: var(--type-body); line-height: 1.65; }
.contact-next__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); align-items: center; }
.contact-next .content-intro { grid-column: 1 / span 6; margin-bottom: 0; }
.contact-next__detail { grid-column: 8 / -1; }
.contact-next__detail > p { max-width: 52ch; margin-bottom: 32px; color: var(--muted); font-size: var(--type-body); line-height: var(--leading-body); }

.legal-page { min-height: 100vh; background: var(--paper-muted); }
.legal-header { position: relative; height: 92px; box-shadow: 0 1px 0 rgba(17, 17, 17, .12); }
.legal-main { padding-block: clamp(72px, 8vw, 128px); }
.legal-content { max-width: 68ch; }
.legal-content .kicker { margin-bottom: 28px; }
.legal-content h1 { margin-bottom: 34px; font-size: var(--type-section); }
.legal-content h2 { margin: 48px 0 16px; font-size: var(--type-content-heading); line-height: var(--leading-heading); letter-spacing: var(--tracking-heading); }
.legal-content p, .legal-content li { color: #3f3f3b; font-size: var(--type-body); line-height: var(--leading-body); }
.legal-content ul { padding-left: 1.25rem; }
.legal-content a { color: var(--ink); font-weight: 700; text-decoration-color: var(--orange); text-decoration-thickness: 2px; }
.legal-updated { color: var(--muted); font-size: var(--type-label); line-height: var(--leading-label); }

.health-cta { color: var(--ink); background: var(--orange); }
.health-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 80px;
  min-height: 455px;
  padding-block: 72px;
}
.health-cta h2 { margin-bottom: 26px; font-size: var(--type-section); }
.health-cta p { margin-bottom: 16px; font-size: var(--type-body); font-weight: var(--weight-heading); line-height: 1.55; }
.health-cta .button { min-width: 410px; }

.site-footer { color: var(--paper); background: #101010; }
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, .85fr) minmax(300px, 1fr);
  gap: 0;
  min-height: 440px;
  padding-block: clamp(72px, 7vw, 112px);
}
.site-footer__brand { padding-right: clamp(46px, 6vw, 100px); }
.site-footer__brand > p { max-width: 60ch; margin: 42px 0 60px; color: #d0d0ca; font-size: var(--type-body); line-height: 1.65; }
.site-footer__brand small { color: #b7b7b1; font-size: var(--type-label); line-height: var(--leading-label); }
.footer-nav, .footer-contact { padding-left: clamp(46px, 5vw, 90px); border-left: 1px solid var(--line-dark); }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-nav h2, .footer-contact h2 { margin: 0 0 20px; color: #9e9e98; font-size: var(--type-label); font-weight: var(--weight-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.footer-nav a, .footer-contact a { color: #f2f2ee; text-decoration: none; }
.footer-nav a { font-size: var(--type-body); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--orange); }
.footer-contact a { display: inline-flex; align-items: center; gap: 14px; font-size: var(--type-body); }
.footer-contact a span { display: inline-grid; place-items: center; width: 32px; height: 32px; color: var(--orange); font-size: 1.5rem; line-height: 1; }

/* One deliberate display voice across page and section titles. */
h1.display-title,
h2.display-title {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-kerning: normal;
  font-optical-sizing: auto;
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-display);
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 48px), 920px);
  margin-inline: auto;
  padding: 22px 24px;
  color: var(--paper);
  border-top: 3px solid var(--orange);
  background: #171717;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
}
.consent-banner[hidden] { display: none; }
.consent-banner strong { display: block; margin-bottom: 4px; font-size: var(--type-body); }
.consent-banner p { margin: 0; color: #cfcfca; font-size: var(--type-label); line-height: 1.55; }
.consent-banner p a { color: var(--paper); text-underline-offset: 3px; }
.consent-banner__actions { display: flex; gap: 10px; }
.consent-button {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid #5a5a56;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: var(--tracking-ui);
  text-transform: uppercase;
}
.consent-button--accept { border-color: var(--orange); color: var(--ink); background: var(--orange); }
.consent-button:hover { border-color: var(--paper); }
.consent-button--accept:hover { border-color: var(--ink); color: var(--ink); background: var(--orange); }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal.will-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 750ms var(--ease-out), transform 750ms var(--ease-out);
}
.motion-ready .reveal--image.will-reveal {
  transform: translateY(18px) scale(.985);
  transition: opacity 850ms var(--ease-out), transform 950ms var(--ease-out);
}
.motion-ready .reveal--stagger.will-reveal { transition-delay: calc(var(--reveal-order, 0) * 75ms); }
.motion-ready .reveal.will-reveal.is-visible { opacity: 1; transform: none; }
.problem-group:nth-child(1), .process-card:nth-child(1), .testimonial-featured { --reveal-order: 0; }
.problem-group:nth-child(2), .process-card:nth-child(2), .testimonial-stack .testimonial-card:nth-child(1) { --reveal-order: 1; }
.problem-group:nth-child(3), .process-card:nth-child(3), .testimonial-stack .testimonial-card:nth-child(2) { --reveal-order: 2; }
.process-card:nth-child(4) { --reveal-order: 3; }
.process-card:nth-child(5) { --reveal-order: 4; }
.health-map-card:nth-child(1) { --reveal-order: 0; }
.health-map-card:nth-child(2) { --reveal-order: 1; }
.health-map-card:nth-child(3) { --reveal-order: 2; }
.health-map-card:nth-child(4) { --reveal-order: 3; }
.health-map-card:nth-child(5) { --reveal-order: 4; }
.health-map-card:nth-child(6) { --reveal-order: 5; }

@media (max-width: 1440px) {
  :root { --section-pad: clamp(90px, 7.5vw, 120px); }
  .site-header__inner { grid-template-columns: auto minmax(0, 1fr) auto; gap: 22px; }
  .site-nav { gap: 22px; }
  .header-cta { min-height: 52px; gap: 14px; padding-inline: 18px; }
  .problem-item { grid-template-columns: var(--icon-frame-large) minmax(0, 1fr); gap: 20px; }
  .process-card__header, .process-card__body { padding-inline: 20px; }
}

@media (max-width: 1320px) {
  :root { --page-pad: 34px; --gutter: 18px; }
  .site-header__inner { grid-template-columns: 174px minmax(0, 1fr) auto; gap: 14px; }
  .brand__logo { width: 174px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: var(--type-nav); }
  .button { font-size: var(--type-label); }
  .header-cta { min-width: 0; gap: 10px; padding-inline: 15px; font-size: var(--type-label); }
  .hero__copy { grid-column: 1 / span 5; }
  .hero__visual { grid-column: 6 / -1; aspect-ratio: 5 / 6; }
  .problem-groups { gap: 32px; }
  .problem-item { grid-template-columns: var(--icon-frame-large) minmax(0, 1fr); gap: 16px; }
  .health-map-card { grid-template-columns: var(--icon-frame-large) minmax(0, 1fr); gap: 18px; padding: 24px; }
  .health-map-card__icon { width: var(--icon-frame-large); height: var(--icon-frame-large); }
  .health-map-card__icon img { width: var(--icon-glyph-large); height: var(--icon-glyph-large); }
  .process-grid { gap: 8px; }
  .process-card__header, .process-card__body { padding-inline: 16px; }
  .process-card__body { min-height: 250px; }
  .experience__photo { grid-column: 1 / span 6; }
  .experience__content { grid-column: 8 / -1; }
  .health-cta__inner { gap: 36px; }
  .health-cta .button { min-width: 350px; }
}

@media (max-width: 1024px) {
  :root {
    --page-pad: clamp(24px, 4vw, 44px);
    --section-pad: clamp(84px, 10vw, 112px);
  }

  .grid-12 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .site-header { height: 92px; }
  .site-header.is-scrolled { height: 78px; }
  .site-header__inner { grid-template-columns: 154px minmax(0, 1fr) auto; gap: 12px; }
  .brand__logo { width: 154px; }
  .site-nav { gap: 12px; }
  .site-nav a { font-size: var(--type-nav); }
  .header-cta { min-width: 0; min-height: 48px; gap: 8px; padding-inline: 12px; font-size: var(--type-label); }

  .hero { min-height: auto; padding-top: 82px; }
  .hero__copy { grid-column: 1 / span 3; }
  .hero__visual { grid-column: 4 / span 3; aspect-ratio: 4 / 5; }
  .hero__lede { font-size: var(--type-body); }

  .problems, .health-map, .process, .experience { min-height: auto; }
  .problems__intro { margin-bottom: 74px; }
  .problem-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .problem-group:nth-child(3) {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto 1fr;
  }
  .problem-group:nth-child(3) > h3 { grid-column: 1 / -1; }
  .problem-item p span { white-space: normal; }

  .health-map__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .health-map-card { min-height: 176px; }
  .health-map__result {
    grid-template-columns: var(--icon-frame-medium) minmax(0, 1fr);
    gap: 16px 22px;
    padding-inline: 32px;
  }
  .health-map__result-icon { grid-row: 1 / span 2; align-self: start; }
  .health-map__result-copy { grid-column: 2; grid-template-columns: 1fr; gap: 8px; }
  .health-map__result-action { grid-column: 2; justify-self: end; }

  .process__intro { margin-bottom: 56px; }
  .process__intro > div { grid-column: 1 / span 5; }
  .process__intro > p { grid-column: 6 / -1; }
  .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .process-card__body { min-height: 230px; }

  .experience__photo { grid-column: 1 / span 3; min-height: 560px; }
  .experience__content { grid-column: 4 / -1; }
  .experience__photo figcaption { right: -12px; width: min(360px, 76%); padding: 24px; }

  .testimonial-layout { grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr); }
  .testimonial-featured__quote > span { white-space: normal; }
  .faq__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .faq__intro { grid-column: 1 / span 2; }
  .faq-list { grid-column: 3 / -1; }
  .about-hero__copy { grid-column: 1 / span 3; }
  .about-hero__photo { grid-column: 4 / -1; }
  .about-principles__grid { gap: 16px; }
  .proof-card { padding: 30px 24px; }
  .ct-proof__grid, .contact-next__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .ct-proof__copy, .contact-next .content-intro { grid-column: 1 / span 3; }
  .ct-proof__detail, .contact-next__detail { grid-column: 4 / -1; }
  .contact-hero__copy { grid-column: 1 / span 3; }
  .contact-card { grid-column: 4 / -1; }
  .health-cta__inner { grid-template-columns: 1fr; gap: 38px; }
  .health-cta .button { justify-self: start; }
  .site-footer__grid { grid-template-columns: 1fr .8fr 1fr; }
  .site-footer__brand { padding-right: 36px; }
  .footer-nav, .footer-contact { padding-left: 36px; }
}

@media (max-width: 1100px) {
  :root { --header-height: 88px; }
  html { scroll-padding-top: var(--header-clearance); }
  section[id], footer[id], h1[id], h2[id] { scroll-margin-top: var(--header-clearance); }

  .site-header,
  .site-header.is-scrolled {
    position: sticky;
    height: auto;
    min-height: var(--header-height);
    padding-top: env(safe-area-inset-top);
    box-shadow: 0 1px 0 rgba(17, 17, 17, .12);
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
    height: auto;
    min-height: var(--header-height);
    padding-block: 16px;
  }

  .brand__logo { width: 154px; }
  .nav-toggle { display: block; grid-column: 2; grid-row: 1; }
  .header-cta { display: none; }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .js .site-header .site-nav { display: none; }
  .js .site-header.nav-open .site-nav { display: grid; }

  .site-nav a {
    min-height: 48px;
    padding: 14px 10px;
    font-size: var(--type-label);
    line-height: var(--leading-label);
    text-align: center;
  }

  .site-nav__mobile-cta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding-inline: 18px;
    color: var(--ink);
    background: var(--orange);
  }

  .site-nav__mobile-cta::after { display: none; }
}

@media (min-width: 1101px) {
  .hero h1 {
    font-size: clamp(3.85rem, calc(.125rem + 5.4vw), 5rem);
  }

  .hero__grid { align-items: stretch; }
  .hero__copy {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    row-gap: 32px;
    align-self: stretch;
  }
  .hero__message { align-self: center; }
  /* Keep the hero action only where the header action is inside the menu. */
  .hero__button { display: none; }
  .hero__lede { margin-bottom: 0; }
  .micro-proof {
    align-self: end;
    margin-top: 0;
  }
}

@media (min-width: 721px) {
  .testimonial-featured__quote > span { white-space: nowrap; }
}

@media (min-width: 721px) and (max-width: 1199px) {
  .testimonial-layout { grid-template-columns: 1fr; }
  .testimonial-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 20px;
    --section-pad: 72px;
  }

  html { scroll-padding-top: var(--header-clearance); }
  section[id], footer[id], h1[id], h2[id] { scroll-margin-top: var(--header-clearance); }
  .grid-12 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .section { overflow: hidden; }

  .brand__logo { width: 148px; }
  .site-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-nav a { padding-inline: 12px; font-size: var(--type-label); text-align: left; }

  .button { min-height: 56px; padding-inline: 22px; font-size: var(--type-label); }
  .hero { padding-top: 64px; padding-bottom: 86px; }
  .hero__copy { grid-column: 1 / -1; }
  .kicker { gap: 12px; margin-bottom: 28px; font-size: var(--type-label); letter-spacing: var(--tracking-label); }
  .kicker > span { width: 34px; height: 3px; }
  .hero h1 { margin-bottom: 30px; }
  .hero__lede { margin-bottom: 32px; line-height: 1.6; }
  .hero__button { width: 100%; min-width: 0; }
  .micro-proof { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .micro-proof li { font-size: var(--type-body); }
  .hero__visual { grid-column: 1 / -1; margin-top: 54px; aspect-ratio: 4 / 5; }
  .problems__intro { margin-bottom: 56px; }
  .problems__intro h2 br { display: none; }
  .problem-groups { grid-template-columns: 1fr; gap: 48px; }
  .problem-group, .problem-group:nth-child(3) {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .problem-group:nth-child(3) > h3 { grid-column: auto; }
  .problem-item { grid-template-columns: var(--icon-frame-large) minmax(0, 1fr); min-height: 0; padding-block: 24px; }
  .problem-item h4 { font-size: var(--type-card-title); }
  .problem-item p { font-size: var(--type-body); }

  .health-map__intro { align-items: flex-start; text-align: left; }
  .health-map__eyebrow { margin-bottom: 16px; font-size: var(--type-label); }
  .health-map__intro h2 { margin-bottom: 0; }
  .health-map__grid { grid-template-columns: 1fr; gap: 14px; }
  .health-map-card { grid-template-columns: var(--icon-frame-large) minmax(0, 1fr); min-height: 0; gap: 18px; padding: 24px 20px; }
  .health-map-card__icon { width: var(--icon-frame-large); height: var(--icon-frame-large); }
  .health-map-card p { max-width: 36ch; }
  .health-map-card .health-map-card__descriptor { font-size: var(--type-label); }
  .health-map__result {
    grid-template-areas:
      "icon copy"
      "action action";
    grid-template-columns: var(--icon-frame-medium) 1fr;
    gap: 18px;
    min-height: 0;
    padding: 28px 24px;
  }
  .health-map__result-icon { grid-area: icon; align-self: start; width: var(--icon-frame-medium); height: var(--icon-frame-medium); }
  .health-map__result-icon img { width: var(--icon-glyph-medium); height: var(--icon-glyph-medium); }
  .health-map__result-copy { grid-area: copy; grid-template-columns: 1fr; gap: 6px; }
  .health-map__result-action { grid-area: action; width: 100%; min-width: 0; min-height: 52px; }

  .process__intro { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 48px; }
  .process__intro > div, .process__intro > p { grid-column: 1 / -1; }
  .process__intro > p { margin-top: 30px; font-size: var(--type-lede); }
  .process-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-card__body { min-height: 0; padding: 24px; }
  .process-card__header { min-height: 52px; }
  .process-card__header strong, .process-card__header span { font-size: var(--type-label); }
  .process-card p { max-width: 34ch; }

  .experience__photo, .experience__content { grid-column: 1 / -1; }
  .experience__photo { min-height: 0; aspect-ratio: 4 / 5; }
  .experience__photo > img { min-height: 0; }
  .experience__photo figcaption { right: 0; bottom: 16px; width: calc(100% - 24px); padding: 20px; }
  .experience__photo figcaption span { font-size: var(--type-label); }
  .experience__content { margin-top: 58px; }
  .experience__content h2 { margin-bottom: 28px; }
  .experience__lede { margin-bottom: 30px; }
  .experience-points { margin-top: 36px; }

  .testimonials { min-height: 0; }
  .testimonials__intro { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin-bottom: 44px; }
  .testimonials__intro h2, .testimonials__intro > p { grid-column: 1 / -1; }
  .testimonial-layout { grid-template-columns: 1fr; }
  .testimonial-featured { min-height: 0; padding: 32px 24px; }
  .testimonial-featured__path { margin-bottom: 30px; }
  .testimonial-featured__quote { margin-bottom: 34px; font-size: var(--type-subhead); }
  .testimonial-featured__quote > span { white-space: normal; }
  .testimonial-featured__path,
  .testimonial-featured footer span,
  .testimonial-card footer span { font-size: var(--type-label); }
  .testimonial-stack { grid-template-rows: auto; }
  .testimonial-card { min-height: 260px; padding: 30px 24px; }

  .faq__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .faq__intro, .faq-list { grid-column: 1 / -1; }
  .faq__intro { margin-bottom: 48px; }
  .faq-list summary { min-height: 70px; padding-right: 48px; font-size: var(--type-card-title); }
  .faq-list details > p { margin-right: 16px; }

  .button-row { display: grid; grid-template-columns: 1fr; }
  .button-row .button { width: 100%; }
  .about-hero { padding-top: 64px; }
  .about-hero__copy, .about-hero__photo, .contact-hero__copy, .contact-card { grid-column: 1 / -1; }
  .about-hero__copy, .contact-hero__copy { padding-right: 0; }
  .about-hero__photo { margin-top: 52px; }
  .about-principles__grid { grid-template-columns: 1fr; gap: 14px; }
  .proof-card { min-height: 0; }
  .proof-card > span { margin-bottom: 28px; }
  .ct-proof__grid, .contact-next__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ct-proof__copy, .ct-proof__detail, .contact-next .content-intro, .contact-next__detail { grid-column: 1 / -1; }
  .ct-proof__detail { padding-top: 38px; }
  .contact-hero { min-height: 0; padding-top: 64px; }
  .contact-card { min-height: 0; margin-top: 28px; padding: 32px 24px; }
  .contact-card__email { font-size: var(--type-card-title); }
  .contact-next .content-intro { margin-bottom: 44px; }

  .health-cta__inner { min-height: 0; padding-block: 64px; }
  .health-cta h2 br { display: none; }
  .health-cta .button { width: 100%; min-width: 0; }
  .health-cta p { line-height: 1.55; }

  .site-footer__grid { grid-template-columns: 1fr; min-height: 0; padding-block: 64px; }
  .site-footer__brand { padding-right: 0; }
  .site-footer__brand > p { margin: 32px 0 38px; }
  .footer-nav, .footer-contact { margin-top: 44px; padding: 36px 0 0; border-top: 1px solid var(--line-dark); border-left: 0; }
  .site-footer__brand small,
  .footer-nav h2,
  .footer-contact h2 { font-size: var(--type-label); }
  .footer-nav { gap: 4px; }
  .footer-nav a,
  .footer-contact a { display: inline-flex; align-items: center; min-width: 44px; min-height: 44px; }
  .footer-contact a { font-size: var(--type-body); }

  .legal-header .site-header__inner { display: flex; justify-content: space-between; }
  .legal-main { padding-block: 64px; }
  .legal-content h1 { font-size: var(--type-section); }

  .consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100% - 24px);
    padding: 20px;
  }
  .consent-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .consent-banner p,
  .consent-button { font-size: var(--type-label); }
  .consent-banner p a { display: inline-flex; align-items: center; min-height: 44px; }
}

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

/* High-fidelity phone system: 4-column composition, not a scaled desktop. */
@media (max-width: 720px) {
  :root {
    --page-pad: clamp(16px, 4.65vw, 20px);
    --gutter: 12px;
    --section-pad: clamp(68px, 17vw, 88px);
    --type-display: clamp(2.6rem, 12vw, 3.2rem);
    --type-section: clamp(2rem, 9.2vw, 2.45rem);
    --type-subhead: clamp(1.65rem, 7.2vw, 1.95rem);
    --type-featured-quote: clamp(1.65rem, 7.2vw, 2rem);
    --type-content-heading: clamp(1.4rem, 6.4vw, 1.7rem);
    --type-card-title: 1.125rem;
    --type-lede: 1.0625rem;
    --type-body: 1rem;
    --type-label: .75rem;
    --mobile-card-gap: 16px;
    --mobile-intro-gap: 40px;
    --mobile-major-gap: 48px;
    --icon-frame-small: 48px;
    --icon-glyph-small: 28px;
    --icon-frame-medium: 52px;
    --icon-glyph-medium: 30px;
    --icon-frame-large: 60px;
    --icon-glyph-large: 34px;
  }

  html { scroll-padding-top: var(--header-clearance); }
  body { min-width: 0; }
  html.nav-locked,
  html.nav-locked body {
    overflow: hidden;
    overscroll-behavior: none;
  }
  html.nav-locked body::after {
    content: "";
    position: fixed;
    z-index: 40;
    inset: calc(var(--header-height) + env(safe-area-inset-top)) 0 0;
    background: rgba(17, 17, 17, .34);
  }
  section[id], footer[id], h1[id], h2[id] { scroll-margin-top: var(--header-clearance); }

  .site-header,
  .site-header.is-scrolled {
    min-height: var(--header-height);
    padding-top: env(safe-area-inset-top);
  }
  .site-header__inner.shell {
    width: 100%;
    margin-inline: 0;
    padding: 16px max(var(--page-pad), env(safe-area-inset-right)) 16px max(var(--page-pad), env(safe-area-inset-left));
  }
  .brand__logo { width: clamp(140px, 37vw, 158px); }
  .nav-toggle {
    display: grid;
    align-content: center;
    width: 48px;
    height: 48px;
    padding: 12px 10px;
  }
  .site-nav {
    position: fixed;
    z-index: 60;
    top: calc(var(--header-height) + env(safe-area-inset-top));
    right: 0;
    left: 0;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: calc(100dvh - var(--header-height) - env(safe-area-inset-top));
    padding: 8px max(var(--page-pad), env(safe-area-inset-right)) calc(20px + env(safe-area-inset-bottom)) max(var(--page-pad), env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 22px 46px rgba(17, 17, 17, .14);
  }
  .site-header.nav-open { box-shadow: 0 1px 0 rgba(17, 17, 17, .12); }
  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 14px 2px;
    border-bottom: 1px solid #e8e8e4;
    font-size: .8125rem;
    text-align: left;
    transition: color 160ms ease, background-color 160ms ease, transform 160ms var(--ease-out);
  }
  .site-nav a:active { background: var(--paper-muted); transform: translateX(2px); }
  .site-nav a::after { display: none; }
  .site-nav__mobile-cta {
    min-height: 56px !important;
    margin-top: 14px;
    padding-inline: 18px !important;
    border-bottom: 0 !important;
    color: var(--ink) !important;
    background: var(--orange);
  }

  .button {
    min-height: 56px;
    gap: 18px;
    padding-inline: 20px;
    line-height: 1.25;
  }

  .hero {
    padding-top: clamp(48px, 12vw, 62px);
    padding-bottom: clamp(76px, 18vw, 92px);
  }
  .hero__grid { align-items: start; }
  .hero__copy { display: contents; }
  .hero__message {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .hero .kicker {
    display: block;
    max-width: none;
    margin-bottom: 24px;
    font-size: .75rem;
    letter-spacing: .025em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .hero .kicker > span { display: none; }
  .hero h1 {
    max-width: none;
    margin-bottom: 26px;
  }
  .hero__title-line,
  .health-map__title-line {
    display: block;
    white-space: nowrap;
  }
  .hero__lede {
    max-width: 39ch;
    margin-bottom: 30px;
    line-height: 1.62;
  }
  .hero__button { width: 100%; }
  .micro-proof {
    grid-column: 1 / -1;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--mobile-card-gap);
    margin-top: 32px;
  }
  .micro-proof li {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    font-size: .8125rem;
    line-height: 1.3;
  }
  .hero__visual {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 56px;
    aspect-ratio: 5 / 4;
  }
  .hero__visual > img { object-position: 58% 42%; }
  .hero__accent-line { width: 7px; height: 28%; }

  .problems__intro { margin-bottom: 44px; }
  .problems__intro h2 { margin-bottom: 18px; }
  .problem-groups { gap: var(--mobile-intro-gap); }
  .problem-group h3 { padding-bottom: 14px; }
  .problem-item {
    grid-template-columns: var(--icon-frame-large) minmax(0, 1fr);
    gap: 16px;
    padding-block: 20px;
  }
  .problem-item h4 { margin-bottom: 6px; }
  .problem-item p { line-height: 1.48; }

  .health-map__eyebrow { margin-bottom: 12px; }
  .health-map__intro h2 { max-width: none; }
  .health-map__grid {
    gap: var(--mobile-card-gap);
    margin-top: var(--mobile-intro-gap);
  }
  .health-map-card {
    min-height: 0;
    gap: 16px;
    padding: 20px 18px;
  }
  .health-map-card h3 {
    margin-top: 1px;
    font-size: 1.0625rem;
  }
  .health-map-card p {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.48;
  }
  .health-map-card .health-map-card__descriptor {
    margin-top: 4px;
    font-size: .75rem;
    line-height: 1.35;
  }
  .health-map__result {
    gap: 16px;
    margin-top: 38px;
    padding: 24px;
  }
  .health-map__result-copy strong,
  .health-map__result-copy p { font-size: 1.1875rem; }
  .health-map__result-copy p { line-height: 1.45; }
  .health-map__result-action {
    min-height: 54px;
    padding-inline: 16px;
    font-size: .75rem;
  }

  .process__intro { margin-bottom: var(--mobile-intro-gap); }
  .process__intro > p {
    max-width: 38ch;
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.6;
  }
  .process-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: var(--mobile-card-gap);
    margin-right: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .process-card {
    min-height: 0;
    scroll-snap-align: none;
  }
  .process-card__header {
    min-height: 46px;
    padding: 11px 18px;
  }
  .process-card__body {
    display: grid;
    grid-template-columns: var(--icon-frame-medium) minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon copy";
    align-items: start;
    min-height: 0;
    gap: 6px 16px;
    padding: 18px;
  }
  .process-card__icon { grid-area: icon; margin: 0; }
  .process-card h3 { grid-area: title; margin: 0; }
  .process-card p { grid-area: copy; }
  .process-card p { max-width: 29ch; }

  .experience__photo {
    min-height: 0;
    aspect-ratio: auto;
  }
  .experience__photo > img {
    min-height: 0;
    aspect-ratio: 5 / 4;
    object-position: 45% center;
  }
  .experience__photo figcaption {
    position: static;
    width: 100%;
    padding: 20px;
  }
  .experience__photo figcaption::before { width: 36px; height: 3px; }
  .experience__content { margin-top: var(--mobile-major-gap); }
  .experience__content h2 { margin-bottom: 24px; }
  .experience__lede {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.62;
  }
  .experience-points { margin-top: 34px; }
  .experience-points li {
    grid-template-columns: var(--icon-frame-medium) minmax(0, 1fr);
    gap: 16px;
    padding-block: 20px;
  }
  .experience-points p { line-height: 1.5; }

  .testimonials__intro { margin-bottom: 38px; }
  .testimonials__intro > p { max-width: 36ch; }
  .testimonial-layout { gap: var(--mobile-card-gap); }
  .testimonial-featured {
    min-height: 390px;
    padding: 28px 22px;
  }
  .testimonial-featured__path {
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .testimonial-featured__path span { margin-inline: 5px; }
  .testimonial-featured__quote {
    margin-bottom: 32px;
    line-height: 1.25;
  }
  .testimonial-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: var(--mobile-card-gap);
    margin-right: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }
  .testimonial-card {
    min-height: 184px;
    padding: 26px 22px;
    scroll-snap-align: none;
  }

  .faq__intro { margin-bottom: 40px; }
  .faq__intro h2 { margin-bottom: 22px; }
  .faq__intro h2 br { display: none; }
  .faq-list summary {
    min-height: 68px;
    padding-block: 18px;
    font-size: 1.0625rem;
    transition: background-color 160ms ease;
  }
  .faq-list summary:active { background: rgba(17, 17, 17, .045); }
  .faq-list details > p {
    margin: 0 44px 24px 0;
    line-height: 1.6;
  }

  .health-cta__inner {
    gap: 32px;
    padding-block: 56px;
  }
  .health-cta h2 { margin-bottom: 22px; }
  .health-cta p { margin-bottom: 12px; }

  .site-footer__grid {
    padding-top: 60px;
    padding-bottom: max(60px, calc(44px + env(safe-area-inset-bottom)));
  }
  .footer-nav,
  .footer-contact {
    margin-top: 36px;
    padding-top: 28px;
  }
  .site-footer__brand > p { margin: 28px 0 34px; }
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }
  .footer-nav h2 { grid-column: 1 / -1; }
  .footer-nav a { border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-contact a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .about-hero,
  .contact-hero { padding-top: clamp(48px, 12vw, 62px); }
  .about-hero__copy h1,
  .contact-hero__copy h1 { margin-bottom: 28px; }
  .about-hero__copy > p:not(.kicker),
  .contact-hero__copy > p:not(.kicker) {
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.62;
  }
  .about-hero__photo {
    margin-top: 44px;
    aspect-ratio: 5 / 4;
  }
  .proof-card { padding: 26px 22px; }
  .proof-card > span { margin-bottom: 22px; }
  .ct-proof__detail { padding-top: 30px; }
  .ct-proof__detail > p { font-size: 1rem; line-height: 1.62; }
  .contact-card {
    margin-top: 24px;
    padding: 28px 22px;
  }
  .contact-card h2 { margin-bottom: 28px; }
  .contact-card__email {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }
  .legal-main { padding-block: 56px; }
  .legal-content h2 { margin-top: 38px; }

  .consent-banner {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    width: auto;
  }
}

/* Small phones: reclaim every pixel while preserving readable type and 44px targets. */
@media (max-width: 375px) {
  :root {
    --page-pad: 16px;
    --section-pad: 64px;
    --type-display: clamp(2.45rem, 12.5vw, 2.7rem);
    --type-section: clamp(1.9rem, 9.5vw, 2.15rem);
  }
  .brand__logo { width: 138px; }
  .hero { padding-top: 44px; }
  .button { padding-inline: 16px; font-size: .75rem; }
  .hero__button,
  .health-cta .button { gap: 8px; padding-inline: 14px; }
  .hero__button > span:first-child,
  .health-cta .button > span:first-child { white-space: nowrap; }
  .button__arrow { width: 24px; height: 24px; }
  .micro-proof { gap: 12px; }
  .micro-proof li { font-size: .75rem; }
  .micro-proof__icon { width: 44px; height: 44px; flex-basis: 44px; }
  .micro-proof__icon img { width: 26px; height: 26px; }
  .hero__visual { aspect-ratio: 4 / 3; }
  .problem-item { grid-template-columns: 54px minmax(0, 1fr); gap: 14px; }
  .problem-item .icon-plate { width: 54px; height: 54px; }
  .health-map-card { padding: 18px 16px; }
  .health-map__result { padding: 22px 18px; }
  .health-map__result-icon { width: 46px; height: 46px; }
  .health-map__result-copy p { font-size: 1.1875rem; }
  .consent-banner__actions { grid-template-columns: 1fr; }
}

@media (hover: none) and (pointer: coarse) {
  .button:hover,
  .health-map__result-action:hover { transform: none; }
  .button:active,
  .health-map__result-action:active { transform: translateY(1px) scale(.985); }
}

/* Tablet-width navigation is also an overlay, so phone landscape never reflows the page. */
@media (min-width: 721px) and (max-width: 1100px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100dvh - var(--header-height) - env(safe-area-inset-top));
    padding: 12px max(var(--page-pad), env(safe-area-inset-right)) calc(20px + env(safe-area-inset-bottom)) max(var(--page-pad), env(safe-area-inset-left));
    overflow-y: auto;
    background: var(--paper);
    box-shadow: 0 22px 46px rgba(17, 17, 17, .14);
  }
  .footer-nav a,
  .footer-contact a,
  .contact-card__email {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (max-width: 960px) and (max-height: 600px) and (orientation: landscape) {
  :root { --section-pad: 64px; --header-height: 80px; }
  .site-header,
  .site-header.is-scrolled { min-height: var(--header-height); }
  .site-header__inner.shell { padding-block: 12px; }
  .site-nav { max-height: calc(100dvh - var(--header-height) - env(safe-area-inset-top)); }
  .hero { padding-block: 56px 72px; }
}

/* Production refinement: clearer outputs, denser supporting pages, and one compact utility footer. */
.health-output__intro {
  max-width: 54ch;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: var(--type-lede);
  line-height: 1.6;
}

.health-output__overview {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(52px, 6vw, 88px);
}

.health-output__deliverables {
  padding: clamp(36px, 4vw, 58px);
  color: var(--paper);
  background: var(--dark);
  border-top: 5px solid var(--orange);
}

.health-output__label {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  letter-spacing: var(--tracking-label);
  line-height: var(--leading-label);
  text-transform: uppercase;
}

.health-output__deliverables h3,
.health-action__intro h3 {
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: var(--type-subhead);
  font-weight: var(--weight-display);
  letter-spacing: var(--tracking-display);
  line-height: 1.08;
}

.health-output__deliverables ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.health-output__deliverables li {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 18px 0 18px 30px;
  border-top: 1px solid var(--line-dark);
}

.health-output__deliverables li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--orange);
}

.health-output__deliverables li strong { font-size: var(--type-body); }
.health-output__deliverables li span { color: var(--muted-on-dark); font-size: var(--type-body); line-height: 1.5; }

.health-output__preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
  padding: clamp(34px, 5vw, 70px);
  overflow: hidden;
  background: var(--paper-muted);
  border: 1px solid var(--line);
}

.snapshot-sheet {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  min-height: 480px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #c9c9c4;
  box-shadow: 0 24px 52px rgba(17, 17, 17, .13);
}

.snapshot-sheet--back {
  position: absolute;
  z-index: 1;
  min-height: 480px;
  background: #e8e8e4;
  transform: translate(26px, 24px) rotate(2deg);
  box-shadow: none;
}

.snapshot-sheet > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  color: var(--paper);
  background: var(--ink);
}

.snapshot-sheet > header span { color: var(--orange); font-size: var(--type-label); font-weight: var(--weight-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.snapshot-sheet > header strong { font-size: var(--type-label); letter-spacing: .02em; text-transform: uppercase; }
.snapshot-sheet__body { padding: 30px 28px 26px; }
.snapshot-sheet__eyebrow { margin-bottom: 7px; color: var(--muted); font-size: .75rem; font-weight: var(--weight-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.snapshot-sheet__body h3 { margin-bottom: 26px; font-size: 1.45rem; line-height: 1.2; }
.snapshot-row { display: grid; grid-template-columns: minmax(128px, .9fr) 1.1fr; align-items: center; gap: 16px; padding-block: 11px; border-top: 1px solid #e1e1dd; font-size: .8125rem; font-weight: 700; }
.snapshot-row i { position: relative; display: block; height: 8px; overflow: hidden; background: #e6e6e2; }
.snapshot-row i::after { content: ""; position: absolute; inset: 0 auto 0 0; background: var(--orange); }
.snapshot-level--1::after { width: 78%; }
.snapshot-level--2::after { width: 52%; }
.snapshot-level--3::after { width: 66%; }
.snapshot-level--4::after { width: 44%; }
.snapshot-level--5::after { width: 61%; }
.snapshot-level--6::after { width: 84%; }
.snapshot-sheet > footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0 28px; padding: 18px 0 22px; border-top: 2px solid var(--ink); font-size: .8125rem; }
.snapshot-sheet > footer span { color: var(--muted); }

.health-action-band {
  margin-top: clamp(80px, 7vw, 112px);
  padding-block: clamp(128px, 11vw, 176px);
  background: var(--paper-muted);
}

.health-action {
  margin: 0;
  padding: 0;
  background: transparent;
}

.health-action__intro {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 12px clamp(32px, 5vw, 76px);
  padding: clamp(46px, 5vw, 72px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.health-action__intro .health-output__label { grid-column: 1 / -1; margin-bottom: 4px; }
.health-action__intro h3 { margin: 0; }
.health-action__intro h3 > span { display: block; white-space: nowrap; }
.health-action__intro > p:last-child { max-width: 58ch; margin: 0; color: var(--muted); font-size: var(--type-body); line-height: var(--leading-body); }
.health-action__steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(10px, 1vw, 14px); margin: clamp(10px, 1vw, 14px) 0 0; padding: 0; list-style: none; }
.health-action__steps li { position: relative; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 14px; min-height: 198px; padding: 34px 26px; background: var(--paper); border: 1px solid var(--line); }
.health-action__steps li > span { color: var(--orange); font-size: var(--type-label); font-weight: var(--weight-label); font-variant-numeric: tabular-nums; }
.health-action__steps strong { display: block; margin-bottom: 8px; font-size: var(--type-label); letter-spacing: var(--tracking-label); text-transform: uppercase; }
.health-action__steps p { margin: 0; color: var(--muted); font-size: var(--type-body); line-height: 1.5; }
.health-action__footer { display: flex; align-items: center; min-height: 142px; margin-top: clamp(18px, 2vw, 26px); padding: 30px clamp(32px, 4.5vw, 60px); color: var(--paper); background: var(--orange); }
.health-action__footer > p { max-width: 72ch; margin: 0; font-size: var(--type-lede); font-weight: var(--weight-heading); line-height: 1.45; }

.process { padding-block: clamp(96px, 8vw, 132px); }
.process__intro { margin-bottom: clamp(52px, 5vw, 72px); }
.process-card__header { min-height: 58px; padding: 16px 22px; }
.process-card__body { min-height: 260px; padding: 30px 22px 40px; }
.process-card__icon { margin-bottom: 22px; }

.health-cta__inner {
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  align-items: start;
  gap: 36px;
  min-height: 500px;
}
.health-cta__inner > div { max-width: 820px; }
.health-cta .button { justify-self: start; }

.about-hero { padding-block: clamp(72px, 6vw, 104px); }
.ct-proof,
.about-principles { padding-block: clamp(76px, 6vw, 108px); }
.ct-proof__detail { padding-top: 42px; }
.ct-proof__detail > p { margin-bottom: 30px; font-size: var(--type-body); }
.about-principles .content-intro { margin-bottom: clamp(44px, 5vw, 64px); }
.proof-card { min-height: 230px; padding: clamp(28px, 3vw, 38px); }
.proof-card > span { margin-bottom: 30px; }

.contact-hero { min-height: 0; padding-block: clamp(76px, 7vw, 112px); }
.contact-card { min-height: 0; padding: clamp(34px, 3.6vw, 52px); }
.contact-card h2 { margin-bottom: 28px; }
.contact-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-form label { display: grid; gap: 8px; color: #e8e8e3; font-size: var(--type-label); font-weight: var(--weight-label); letter-spacing: .02em; }
.contact-form label small { color: #a9a9a4; font: inherit; font-weight: 500; }
.contact-form input,
.contact-form textarea { width: 100%; min-height: 48px; padding: 12px 14px; color: var(--paper); border: 1px solid #5e5e59; border-radius: 0; outline: 0; background: #1d1d1d; font: inherit; line-height: 1.4; }
.contact-form textarea { min-height: 126px; resize: vertical; }
.contact-form input:hover,
.contact-form textarea:hover { border-color: #8c8c86; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 2px var(--orange); }
.contact-form__wide { grid-column: 1 / -1; }
.contact-form__honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.contact-form__footer { display: flex; align-items: center; gap: 20px; margin-top: 22px; }
.contact-form__footer .button { flex: 0 0 auto; cursor: pointer; }
.contact-form__footer .button:disabled { cursor: wait; opacity: .7; }
.contact-form__footer .button:focus-visible { outline-color: var(--paper); }
.contact-form__status { margin: 0; color: #ffd7c9; font-size: var(--type-label); line-height: 1.45; }
.contact-form__privacy { margin: 16px 0 0; color: #a9a9a4; font-size: .75rem; line-height: 1.5; }
.contact-form__privacy a { color: var(--paper); text-underline-offset: 3px; }
.contact-card__alternative { margin: 26px 0 0 !important; padding-top: 20px; border-top: 1px solid var(--line-dark); color: #bcbcb7 !important; font-size: var(--type-label) !important; }
.contact-card__alternative .contact-card__email { display: inline; margin: 0; font-size: inherit; font-weight: 700; }
.contact-next { padding-block: clamp(72px, 6vw, 100px); }

.success-main { display: grid; place-items: center; min-height: calc(100vh - 92px); padding-block: 72px; }
.success-card { max-width: 820px; padding: clamp(42px, 6vw, 78px); background: var(--paper); border-top: 5px solid var(--orange); box-shadow: 0 18px 60px rgba(17, 17, 17, .08); }
.success-card h1 { margin-bottom: 26px; font-size: var(--type-section); }
.success-card > p:not(.kicker) { max-width: 58ch; margin-bottom: 34px; color: var(--muted); font-size: var(--type-lede); line-height: 1.6; }

.site-footer__grid { grid-template-columns: minmax(0, 1.25fr) minmax(290px, .9fr) minmax(300px, 1fr); min-height: 0; padding-block: clamp(48px, 5vw, 68px); }
.site-footer__brand { padding-right: clamp(34px, 5vw, 70px); }
.brand--light {
  position: relative;
  isolation: isolate;
  padding: 0;
  background: transparent;
}
.brand--light::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: url("/.netlify/images?url=/assets/tradebuilt-logo.png&w=440&q=90") center / 100% 100% no-repeat;
  clip-path: polygon(54.6% 38.5%, 57.7% 45.5%, 54.6% 52.5%);
}
.brand__logo--light {
  width: 176px;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.site-footer__brand > p { margin: 24px 0 30px; font-size: var(--type-label); }
.footer-nav,
.footer-contact { padding-left: clamp(34px, 4vw, 60px); }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; gap: 6px 24px; }
.footer-nav h2 { grid-column: 1 / -1; }
.footer-nav a { display: inline-flex; align-items: center; min-height: 34px; font-size: var(--type-label); }
.footer-contact a { font-size: var(--type-label); }

@media (max-width: 1100px) {
  .health-output__overview { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); }
  .health-output__preview { min-height: 540px; padding: 42px; }
  .health-action__intro { grid-template-columns: 1fr; }
  .health-action__intro h3 > span { white-space: normal; }
  .health-action__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .health-output__intro { margin: 16px 0 0; font-size: 1rem; }
  .health-output__overview { grid-template-columns: 1fr; gap: var(--mobile-card-gap); margin-top: var(--mobile-intro-gap); }
  .health-output__deliverables { padding: 30px 22px; }
  .health-output__deliverables h3,
  .health-action__intro h3 { margin-bottom: 24px; }
  .health-output__deliverables li { padding-block: 16px; }
  .health-output__preview { min-height: 0; padding: 28px 20px 40px; }
  .snapshot-sheet { min-height: 430px; }
  .snapshot-sheet--back { min-height: 430px; transform: translate(12px, 14px) rotate(1deg); }
  .snapshot-sheet > header { display: grid; gap: 4px; padding: 16px 18px; }
  .snapshot-sheet__body { padding: 24px 20px 20px; }
  .snapshot-row { grid-template-columns: minmax(118px, .95fr) 1.05fr; gap: 12px; }
  .snapshot-sheet > footer { margin-inline: 20px; }
  .health-action-band { margin-top: 76px; padding-block: clamp(104px, 27vw, 128px); }
  .health-action { margin: 0; padding: 0; }
  .health-action__intro { grid-template-columns: 1fr; padding: 36px 22px; }
  .health-action__intro .health-output__label { grid-column: auto; }
  .health-action__intro h3 > span { white-space: normal; }
  .health-action__steps { grid-template-columns: 1fr; }
  .health-action__steps li { min-height: 0; padding: 28px 22px; }
  .health-action__footer { min-height: 0; padding: 32px 22px; }
  .health-action__footer > p { font-size: 1rem; }

  .process { padding-block: clamp(80px, 21vw, 100px); }
  .process-card__body { min-height: 0; padding: 30px 24px 36px; }
  .health-cta__inner { gap: 32px; min-height: 0; padding-block: 64px; }
  .about-hero,
  .ct-proof,
  .about-principles,
  .contact-hero,
  .contact-next { padding-block: var(--section-pad); }
  .contact-form__grid { grid-template-columns: 1fr; }
  .contact-form__wide { grid-column: auto; }
  .contact-form__footer { display: grid; }
  .contact-form__footer .button { width: 100%; }
  .contact-card__alternative { overflow-wrap: anywhere; }
  .success-main { min-height: calc(100vh - 72px); padding-block: 48px; }
  .success-card { padding: 34px 22px; }

  .site-footer__grid { grid-template-columns: 1fr; padding-block: 52px; }
  .brand--light { padding: 0; }
  .brand__logo--light { width: 158px; }
  .site-footer__brand > p { margin: 24px 0 28px; }
  .footer-nav,
  .footer-contact { margin-top: 30px; padding: 26px 0 0; }
  .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 375px) {
  .health-action-band { margin-top: 68px; padding-block: 100px; }
  .health-output__preview { margin-inline: -4px; padding-inline: 14px; }
  .snapshot-row { grid-template-columns: minmax(105px, 1fr) 1fr; font-size: .75rem; }
  .health-output__deliverables,
  .health-action__intro,
  .health-action__steps li,
  .health-action__footer { padding-inline: 18px; }
  .contact-card { padding-inline: 18px; }
}

/* Dan's approved compact footer: identity and location on the left, utility links on the right. */
.site-footer__grid {
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.7fr);
  align-items: start;
  gap: clamp(48px, 7vw, 108px);
  min-height: 0;
  padding-block: clamp(52px, 5vw, 76px);
}
.site-footer__brand { padding: 0; }
.site-footer__location {
  max-width: 43ch;
  margin: 24px 0 0;
  color: #d0d0ca;
  font-size: var(--type-label);
  line-height: 1.6;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  gap: 12px clamp(20px, 2.4vw, 34px);
  margin: 0;
  padding: 0;
  border: 0;
}
.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--type-label);
  font-weight: var(--weight-label);
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .site-footer__grid { padding-block: 48px; }
  .site-footer__location { margin-top: 20px; }
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 20px;
  }
}

/* Keep the desktop navigation visually grouped with the primary action. */
@media (min-width: 1101px) {
  .site-header__inner {
    column-gap: clamp(24px, 2vw, 32px);
  }
  .site-nav {
    justify-content: flex-end;
    gap: clamp(18px, 1.6vw, 26px);
  }
  .site-nav a {
    font-size: var(--type-nav);
    letter-spacing: .035em;
  }
}

/* Give the contact form primary working space without crowding the introduction. */
@media (min-width: 1101px) {
  .contact-hero__grid {
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    column-gap: clamp(64px, 6vw, 88px);
  }
  .contact-hero__copy {
    grid-column: 1;
    padding-right: 0;
  }
  .contact-hero__copy h1 {
    margin-bottom: 32px;
    font-size: clamp(2.75rem, 4vw, 3.4rem);
  }
  .contact-hero__copy > p:not(.kicker) {
    max-width: 46ch;
    margin-bottom: 0;
    font-size: var(--type-body);
  }
  .contact-card {
    grid-column: 2;
    padding: clamp(44px, 4vw, 56px);
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .contact-hero__grid { column-gap: clamp(32px, 4vw, 48px); }
  .contact-hero__copy { padding-right: 0; }
  .contact-hero__copy h1 { font-size: clamp(2.5rem, 5vw, 3rem); }
  .contact-hero__copy > p:not(.kicker) { font-size: var(--type-body); }
  .contact-card { padding: clamp(32px, 4vw, 42px); }
  .contact-form__grid { grid-template-columns: 1fr; }
  .contact-form__wide { grid-column: auto; }
}
