:root {
  --bg: #F7F5F0;
  --ink: #252825;
  --muted: #636963;
  --teal: #2F675F;
  --teal-dark: #244F49;
  --teal-tint: #E8EFEC;
  --sand: #BFA67A;
  --sand-soft: #F0E8DB;
  --line: #D7D9D4;
  --white: #FFFFFF;
  --max: 1120px;
  --read: 760px;
  --header-h: 76px;
  --radius: 4px;
  --shadow: 0 18px 55px rgba(37, 40, 37, 0.07);
  --font: "Source Sans 3", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: #C8DDD7; color: var(--ink); }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--teal); }

button, input, textarea, select { font: inherit; }
button, select { cursor: pointer; }

:focus-visible {
  outline: 3px solid rgba(47, 103, 95, 0.38);
  outline-offset: 4px;
  border-radius: 2px;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.7rem, 6vw, 4.9rem); max-width: 940px; margin-bottom: 1.65rem; font-weight: 600; }
h2 { font-size: clamp(2.1rem, 4vw, 3.25rem); margin-bottom: 1.35rem; font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); margin-bottom: 0.9rem; font-weight: 600; letter-spacing: -0.015em; }
p { margin-bottom: 1.05rem; }
strong { font-weight: 650; }

.shell { width: min(calc(100% - 3rem), var(--max)); margin-inline: auto; }
.narrow { max-width: var(--read); }
.section { padding: clamp(5rem, 9vw, 8rem) 0; scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.section-kicker, .eyebrow, .terms-label {
  margin-bottom: 1rem;
  color: var(--teal);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.section-subhead { font-size: clamp(1.25rem, 2.4vw, 1.55rem); line-height: 1.35; max-width: 720px; }
.strong-line { font-weight: 650; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
  transition: transform 140ms ease;
}
.skip-link:focus { transform: translateY(0); color: var(--white); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, backdrop-filter 160ms ease;
}
.site-header.is-scrolled {
  background: rgba(247, 245, 240, 0.91);
  border-bottom-color: rgba(215, 217, 212, 0.9);
  box-shadow: 0 8px 26px rgba(37, 40, 37, 0.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner { min-height: var(--header-h); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; flex-direction: column; justify-self: start; text-decoration: none; line-height: 1.12; }
.brand:hover { color: var(--ink); }
.brand-name { font-weight: 700; letter-spacing: -0.02em; }
.brand-role { margin-top: 0.18rem; color: var(--muted); font-size: 0.78rem; }
.main-nav { display: flex; gap: 1.55rem; align-items: center; }
.main-nav a { position: relative; color: var(--muted); font-size: 0.91rem; font-weight: 600; text-decoration: none; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -0.48rem; height: 2px; background: var(--teal); transition: right 150ms ease; }
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); }
.main-nav a.is-active::after { right: 0; }
.header-cta { justify-self: end; color: var(--teal); font-size: 0.92rem; font-weight: 700; text-decoration: none; }
.header-cta span { display: inline-block; transition: transform 140ms ease; }
.header-cta:hover span { transform: translate(2px, -2px); }

.hero {
  position: relative;
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
  padding: clamp(9.5rem, 18vh, 13rem) 0 clamp(6rem, 12vw, 9rem);
}
.hero-with-field::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 87% 42%, rgba(191, 166, 122, 0.12) 0, rgba(191, 166, 122, 0.06) 22%, rgba(191, 166, 122, 0) 52%),
    radial-gradient(circle at 72% 74%, rgba(47, 103, 95, 0.045) 0, rgba(47, 103, 95, 0) 42%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1000px; }
.hero-visual {
  position: absolute;
  z-index: 1;
  top: calc(var(--header-h) + 2.4rem);
  right: max(-11rem, calc((100vw - var(--max)) / 2 - 10rem));
  width: min(55vw, 780px);
  pointer-events: none;
  opacity: 0.92;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.18) 18%, rgba(0,0,0,0.86) 46%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.18) 18%, rgba(0,0,0,0.86) 46%, #000 100%);
}
.hero-visual img { display: block; width: 100%; height: auto; }
.hero-visual-main { width: min(56vw, 800px); }
.hero-visual-coaches {
  top: calc(var(--header-h) + 3rem);
  right: max(-12rem, calc((100vw - var(--max)) / 2 - 11rem));
  width: min(52vw, 735px);
  opacity: 0.86;
}
.hero-rule {
  position: relative;
  width: 66px;
  height: 1px;
  margin-bottom: 1.45rem;
  background: linear-gradient(90deg, var(--teal) 0 78%, rgba(47, 103, 95, 0.25) 100%);
}
.hero-rule::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(47, 103, 95, 0.72);
  border-radius: 50%;
  background: var(--sand-soft);
  transform: translate(50%, -50%);
}
.hero .eyebrow { margin-bottom: 1.4rem; }
.hero-copy { max-width: 760px; font-size: clamp(1.1rem, 2vw, 1.32rem); line-height: 1.55; color: #333833; }
.hero-copy p:last-child { color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 1.65rem; margin-top: 2rem; }
.hero-email { display: inline-block; margin-top: 1.2rem; color: var(--muted); font-size: 0.95rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  max-width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  line-height: 1.25;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.button span { flex: 0 0 auto; }
.button-primary { background: var(--teal); color: var(--white); }
.button-primary:hover { background: var(--teal-dark); color: var(--white); transform: translateY(-1px); }
.text-link, .case-link { color: var(--teal); font-weight: 700; text-decoration: none; }
.text-link span, .case-link span { display: inline-block; transition: transform 140ms ease; }
.text-link:hover span, .case-link:hover span { transform: translateX(4px); }

.section-problem { border-top: 1px solid var(--line); }
.editorial-grid { display: grid; grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.45fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.editorial-aside { padding-top: 0.35rem; }
.pull-line { max-width: 330px; margin-bottom: 0; font-size: clamp(1.45rem, 2.6vw, 2.05rem); line-height: 1.2; font-weight: 600; letter-spacing: -0.025em; }
.editorial-copy { max-width: 720px; }
.editorial-copy p { max-width: 690px; }

.section-diagnostic {
  background-color: var(--teal-tint);
  background-image: radial-gradient(circle at 92% 8%, rgba(191, 166, 122, 0.075) 0, rgba(191, 166, 122, 0) 31%);
  border-block: 1px solid rgba(47, 103, 95, 0.12);
}
.fit-block { max-width: 860px; margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: 2rem; border-top: 1px solid rgba(47, 103, 95, 0.25); }
.clean-list { list-style: none; padding: 0; margin: 0; }
.fit-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 2.5rem; }
.fit-list li, .deliverables-list li { position: relative; padding-left: 1.35rem; }
.fit-list li::before, .deliverables-list li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 6vw, 5rem); }
.detail-pair { margin-top: clamp(3.5rem, 7vw, 5rem); padding-top: 2.4rem; border-top: 1px solid rgba(47, 103, 95, 0.25); }
.detail-pair p { max-width: 520px; }
.deliverables-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr); gap: clamp(3rem, 8vw, 6rem); align-items: start; margin-top: clamp(4rem, 8vw, 6rem); }
.deliverables-copy { max-width: 620px; }
.deliverables-list { display: grid; gap: 0.55rem; }
.findings-call { margin-top: 1.75rem; }
.terms-panel {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--bg);
  border: 1px solid rgba(47, 103, 95, 0.18);
  box-shadow: var(--shadow);
}
.terms-label { margin-bottom: 0.8rem; }
.price-wrap { min-height: 96px; transition: opacity 120ms ease; }
.price-wrap.is-changing { opacity: 0.45; }
.price { margin: 0; font-size: clamp(2rem, 4vw, 3rem); line-height: 1; font-weight: 700; letter-spacing: -0.04em; }
.price-note { margin: 0.6rem 0 0; color: var(--muted); font-size: 0.93rem; }
.currency-control { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 1.25rem 0 0.45rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.currency-control label { color: var(--muted); font-size: 0.79rem; line-height: 1.25; }
.currency-control select { min-width: 88px; padding: 0.42rem 0.65rem; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 3px; font-size: 0.82rem; font-weight: 650; }
.rate-note { margin-bottom: 1.5rem; color: var(--muted); font-size: 0.75rem; }
.terms-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.terms-list li { padding: 0.72rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.cro-bridge { max-width: 760px; margin-top: clamp(5rem, 10vw, 8rem); padding-top: 2.5rem; border-top: 1px solid rgba(47, 103, 95, 0.28); }
.cro-bridge .strong-line { margin: 1.6rem 0; font-size: 1.15rem; }

.section-work { padding-bottom: clamp(5.5rem, 10vw, 9rem); }
.work-intro { max-width: 720px; margin-bottom: 1.5rem; }
.provenance { color: var(--muted); font-size: 0.9rem; font-style: italic; }
.case-row { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 1.5rem; padding: clamp(3rem, 6vw, 4.75rem) 0; border-top: 1px solid var(--line); }
.case-row:last-of-type { border-bottom: 1px solid var(--line); }
.case-number { padding-top: 0.2rem; color: var(--teal); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; }
.case-content { max-width: 800px; }
.case-content h3 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
.case-content h3 a { text-decoration: none; transition: color 140ms ease; }
.case-content p { max-width: 760px; }
.case-link { display: inline-block; margin-top: 0.5rem; }
.case-row:hover .case-content h3 a { color: var(--teal); }
.work-footer-link { margin-top: 2.2rem; }

.section-about { border-top: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr); gap: clamp(3rem, 10vw, 7rem); align-items: start; }
.about-identity h2 { margin-bottom: 1.8rem; }
.about-portrait-frame {
  position: relative;
  isolation: isolate;
  width: min(100%, 300px);
  margin: 0.2rem 0 1rem;
}
.about-portrait-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 14px -14px -14px 14px;
  background: var(--sand-soft);
  border: 1px solid rgba(191, 166, 122, 0.34);
}
.about-portrait { display: block; width: 100%; }
.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 48%;
  border: 1px solid rgba(47, 103, 95, 0.19);
  border-radius: 2px;
  box-shadow: 0 14px 36px rgba(37, 40, 37, 0.06);
}
.about-copy { max-width: 680px; padding-top: 2.55rem; font-size: 1.08rem; }
.about-copy .text-link { display: inline-block; margin-top: 0.75rem; }

.section-contact {
  background-color: var(--teal-tint);
  background-image: radial-gradient(circle at 8% 94%, rgba(191, 166, 122, 0.065) 0, rgba(191, 166, 122, 0) 29%);
  border-top: 1px solid rgba(47, 103, 95, 0.12);
}
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(3rem, 9vw, 8rem); }
.contact-copy { max-width: 620px; }
.contact-email { display: inline-block; margin-top: 1rem; color: var(--teal); font-size: clamp(1.45rem, 3vw, 2.15rem); font-weight: 700; line-height: 1.2; text-decoration: none; letter-spacing: -0.025em; word-break: break-word; }
.contact-email span { display: inline-block; transition: transform 140ms ease; }
.contact-email:hover span { transform: translateX(5px); }
.contact-linkedin { display: block; width: fit-content; margin-top: 1rem; }
.contact-form-wrap { margin-top: 2rem; border-top: 1px solid rgba(47, 103, 95, 0.22); }
.contact-form-wrap summary { padding: 1.1rem 0; color: var(--teal); font-size: 0.94rem; font-weight: 700; cursor: pointer; list-style-position: outside; }
.contact-form { padding: 0.8rem 0 0; max-width: 560px; }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; margin-bottom: 0.42rem; font-size: 0.88rem; font-weight: 650; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(47, 103, 95, 0.28);
  border-radius: 3px;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--teal); outline: 3px solid rgba(47, 103, 95, 0.15); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; white-space: nowrap !important; }
.form-note, .form-status { margin-top: 0.8rem; color: var(--muted); font-size: 0.78rem; }
.form-status.is-error { color: #8C2F2F; }
.form-status.is-success { color: var(--teal-dark); font-weight: 650; }

.site-footer { padding: 3rem 0; border-top: 1px solid var(--line); font-size: 0.84rem; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr auto; gap: 2rem; align-items: end; }
.footer-grid p { margin-bottom: 0.25rem; }
.footer-brand { color: var(--ink); font-weight: 650; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem; }
.footer-links a { text-decoration: none; }
.copyright { justify-self: end; }


/* Coaches page */
.coaches-hero h1 { max-width: 980px; }
.coaches-problem .strong-line { margin-top: 2rem; }
.question-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
}
.question-list li {
  position: relative;
  padding: 0.82rem 0 0.82rem 1.45rem;
  border-bottom: 1px solid var(--line);
}
.question-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.coaches-process { border-top: 1px solid var(--line); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-step { padding: 1.8rem 1.5rem 1.9rem 0; }
.process-step + .process-step { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.process-number {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.process-step h3 { min-height: 2.7em; }
.process-step p { margin-bottom: 0; color: var(--muted); font-size: 0.96rem; }

.section-coach-offers {
  background-color: var(--teal-tint);
  background-image: radial-gradient(circle at 92% 8%, rgba(191, 166, 122, 0.075) 0, rgba(191, 166, 122, 0) 31%);
  border-block: 1px solid rgba(47, 103, 95, 0.12);
}
.offer-card {
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  background: rgba(247, 245, 240, 0.72);
  border: 1px solid rgba(47, 103, 95, 0.2);
}
.offer-card-primary {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--bg);
  border-color: rgba(47, 103, 95, 0.38);
  box-shadow: var(--shadow);
}
.offer-card-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(47, 103, 95, 0.2);
}
.offer-label {
  margin-bottom: 0.6rem;
  color: var(--teal);
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.offer-card h3 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
.offer-card-heading h3 { margin-bottom: 0; }
.offer-price {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-align: right;
}
.offer-price-area { min-width: 220px; text-align: right; }
.offer-price-area .price-note { margin: 0.55rem 0 0; }
.coach-currency-control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 1rem;
}
.coach-currency-control label {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.2;
}
.coach-currency-control select {
  min-width: 78px;
  padding: 0.36rem 0.55rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 650;
}
.offer-price-area .rate-note { margin: 0.45rem 0 0; }
.local-equivalent {
  margin: -0.45rem 0 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.offer-lead {
  max-width: 800px;
  margin: 1.8rem 0 0;
  font-size: 1.12rem;
}
.offer-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(2.5rem, 7vw, 5rem);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(47, 103, 95, 0.2);
}
.offer-detail-grid h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}
.coach-list { display: grid; gap: 0.6rem; }
.coach-list li { position: relative; padding-left: 1.3rem; }
.coach-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.offer-button { margin-top: 1.8rem; margin-bottom: 0.15rem; }
.secondary-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.secondary-offers .offer-card { height: 100%; }
.offer-price-small { font-weight: 650; }
.cjd-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: end;
  margin-top: 1.5rem;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  border: 1px solid rgba(47, 103, 95, 0.2);
}
.cjd-callout h3 { font-size: clamp(1.45rem, 2.6vw, 2rem); }
.cjd-callout-action { max-width: 360px; }
.cjd-callout-action p { margin-bottom: 1rem; }

.coaches-scope { border-top: 1px solid var(--line); }
.scope-grid { align-items: start; }
.scope-grid h2 { max-width: 520px; }
.scope-copy { max-width: 650px; padding-top: 2.55rem; }
.coaches-fit { background: rgba(255, 255, 255, 0.26); border-block: 1px solid var(--line); }
.coaches-work .work-intro { max-width: 820px; }
.coaches-work .work-intro p:not(.section-kicker) { max-width: 740px; }

.legal-main { padding: calc(var(--header-h) + 5rem) 0 6rem; }
.legal-shell { max-width: 820px; }
.legal-shell > h1 { max-width: 760px; }
.legal-updated { color: var(--muted); margin-bottom: 4rem; }
.legal-shell section { padding: 2.4rem 0; border-top: 1px solid var(--line); }
.legal-shell section h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
.legal-provider-details { margin: 0 0 2rem; max-width: 720px; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.legal-provider-details a { color: inherit; }
.legal-back { margin-top: 2rem; }

@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .editorial-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-step:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .process-step:nth-child(4) { border-top: 1px solid var(--line); }
  .secondary-offers, .offer-detail-grid, .cjd-callout { grid-template-columns: 1fr; }
  .cjd-callout-action { max-width: 620px; }
  .scope-copy { padding-top: 0; }
  .hero-visual {
    top: calc(var(--header-h) + 3.1rem);
    right: -20vw;
    width: min(72vw, 650px);
    opacity: 0.74;
  }
  .hero-visual-main { width: min(74vw, 675px); }
  .hero-visual-coaches { right: -22vw; width: min(68vw, 620px); opacity: 0.70; }
  .about-portrait-frame { width: min(100%, 260px); }
  .about-copy { padding-top: 0; }
  .editorial-aside { max-width: 600px; }
  .pull-line { max-width: 550px; }
  .deliverables-grid { grid-template-columns: 1fr; gap: 3rem; }
  .terms-panel { position: static; max-width: 620px; }
  .footer-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .copyright { justify-self: start; grid-column: 1 / -1; margin-top: 1rem; }
}

@media (max-width: 700px) {
  :root { --header-h: 68px; }
  body { font-size: 17px; }
  h1 { font-size: clamp(2.25rem, 11vw, 3rem); }
  h2 { font-size: clamp(1.85rem, 8.5vw, 2.45rem); }
  .shell { width: min(calc(100% - 2rem), var(--max)); }
  .header-inner { gap: 1rem; }
  .brand-role { display: none; }
  .header-cta { font-size: 0.86rem; }
  .hero { padding-top: 8.7rem; }
  .hero-with-field::before {
    background:
      radial-gradient(circle at 94% 23%, rgba(191, 166, 122, 0.12) 0, rgba(191, 166, 122, 0.05) 25%, rgba(191, 166, 122, 0) 52%),
      radial-gradient(circle at 82% 54%, rgba(47, 103, 95, 0.035) 0, rgba(47, 103, 95, 0) 38%);
  }
  .hero-visual {
    top: 6.1rem;
    right: -1.2rem;
    width: 26rem;
    opacity: 0.50;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 48%, rgba(0,0,0,0.18) 58%, rgba(0,0,0,0.72) 76%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, transparent 48%, rgba(0,0,0,0.18) 58%, rgba(0,0,0,0.72) 76%, #000 100%);
  }
  .hero-visual-main { width: 26rem; }
  .hero-visual-coaches { top: 6.2rem; right: -1rem; width: 24rem; opacity: 0.46; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .fit-list, .two-col { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { padding: 1.5rem 0; border-left: 0; border-top: 1px solid var(--line); }
  .process-step:first-child { border-top: 0; }
  .process-number { margin-bottom: 0.75rem; }
  .process-step h3 { min-height: 0; }
  .offer-card-heading { grid-template-columns: 1fr; gap: 1rem; }
  .offer-price, .offer-price-area { text-align: left; }
  .offer-price-area { min-width: 0; }
  .coach-currency-control { justify-content: flex-start; }
  .coaches-page .button { width: 100%; }
  .coaches-page .hero-actions { width: 100%; }
  .coaches-page .hero-actions .text-link { align-self: flex-start; }
  .secondary-offers { gap: 1rem; }
  .case-row { grid-template-columns: 46px minmax(0, 1fr); gap: 0.8rem; }
  .case-number { padding-top: 0.4rem; }
  .currency-control { align-items: flex-end; }
  .footer-grid { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
  .about-portrait-frame { width: min(100%, 248px); }
}

@media (max-width: 420px) {
  .header-cta span { display: none; }
  .case-row { grid-template-columns: 1fr; }
  .case-number { margin-bottom: -0.4rem; }
}

@media print {
  @page { margin: 14mm; }
  html, body { background: #fff; }
  body { font-size: 11pt; }
  .skip-link, .main-nav, .header-cta, .hero-actions, .hero-email, .hero-visual, .contact-form-wrap, .currency-control, .coach-currency-control, .rate-note { display: none !important; }
  .site-header {
    position: static;
    min-height: 0;
    background: transparent;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header-inner {
    min-height: 0;
    padding: 0 0 0.8rem;
    display: flex;
    justify-content: flex-start;
  }
  .brand-role { display: block; }
  .hero { padding: 2.5rem 0 3rem; }
  .section { padding: 2.5rem 0; }
  .section-diagnostic, .section-coach-offers, .section-contact, .coaches-fit { background: transparent; }
  .terms-panel, .offer-card-primary { box-shadow: none; }
  .hero-with-field::before, .about-portrait-frame::before { display: none; }
  .about-portrait img { box-shadow: none; }
  .offer-card, .cjd-callout, .case-row, .process-step, .terms-panel { break-inside: avoid; page-break-inside: avoid; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-step:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .process-step:nth-child(4) { border-top: 1px solid var(--line); }
  .secondary-offers, .offer-detail-grid, .cjd-callout, .editorial-grid, .contact-grid { grid-template-columns: 1fr; }
  a { text-decoration: none; }
}

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

/* Final tablet navigation refinement: 834px-class tablets have room for the full nav. */
@media (min-width: 801px) and (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .main-nav { display: flex; gap: 1rem; }
  .main-nav a { font-size: 0.84rem; }
  .header-cta { font-size: 0.86rem; }
}
