:root {
  --atlantic: #0b2f4f;
  --atlantic-2: #123f63;
  --tide: #2e6f95;
  --glass: #bcd8d2;
  --salt: #f5f1e8;
  --paper: #fbf9f3;
  --coral: #e36f52;
  --kelp: #153c36;
  --ink: #102d42;
  --muted: #5c6c72;
  --line: rgba(11, 47, 79, .16);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --radius: 28px;
  --dur-quick: 140ms;
  --dur-standard: 420ms;
  --dur-slow: 850ms;
  --ease-expo-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--salt); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--salt);
  font: 400 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-underline-offset: .25em; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--paper);
  border: 1px solid var(--atlantic);
  transform: translateY(-140%);
}
.skip-link:focus { transform: none; }

.proposal-bar {
  min-height: 34px;
  padding: 7px max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, .78);
  background: var(--atlantic);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.proposal-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(227, 111, 82, .18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 88px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
  background: rgba(245, 241, 232, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px) saturate(130%);
}
.brand {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--atlantic);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand img { width: 54px; height: 54px; object-fit: contain; }
.site-nav { display: flex; justify-content: center; gap: clamp(18px, 2.8vw, 42px); }
.site-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--atlantic);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-quick) ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.view-switch {
  justify-self: end;
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .52);
}
.view-switch button {
  min-height: 44px;
  padding: 7px 14px;
  color: var(--atlantic);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.view-switch button[aria-pressed="true"] { color: white; background: var(--atlantic); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--tide);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--atlantic); font-family: var(--display); font-weight: 400; }
h1 {
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 7.4vw, 8.2rem);
  letter-spacing: -.055em;
  line-height: .88;
  text-wrap: balance;
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.6vw, 6rem);
  letter-spacing: -.045em;
  line-height: .93;
  text-wrap: balance;
}
h3 { margin-bottom: 14px; font-size: clamp(1.55rem, 2.3vw, 2.25rem); line-height: 1.06; }
.hero-lede {
  max-width: 650px;
  margin-bottom: 32px;
  color: #284c61;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
}
.source-note {
  max-width: 460px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--atlantic);
  font-size: 13px;
  font-weight: 700;
  text-decoration-thickness: 1px;
}
.text-link span { color: var(--coral); transition: transform var(--dur-quick) ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.button {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.button--primary { color: white; background: var(--atlantic); box-shadow: 0 14px 35px rgba(11, 47, 79, .16); }
.button--primary:hover { background: var(--tide); }
.button--outline { color: var(--atlantic); border-color: var(--atlantic); }
.button--outline:hover { color: white; background: var(--atlantic); }

.hero {
  --atmo-a: var(--salt);
  --atmo-b: #dfeae4;
  --atmo-glow: var(--coral);
  min-height: calc(100svh - 122px);
  padding: clamp(70px, 8vw, 128px) max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  border-bottom: 1px solid var(--line);
}
.hero-copy { position: relative; z-index: 2; }
.hero .source-note { margin-top: 38px; }

.contact-field {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1 / 1.08;
  justify-self: center;
  border-radius: 48% 52% 48% 52% / 43% 44% 56% 57%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.9), rgba(188,216,210,.68) 52%, rgba(46,111,149,.15) 72%, transparent 73%),
    linear-gradient(145deg, rgba(255,255,255,.5), rgba(188,216,210,.38));
  box-shadow:
    inset 0 0 0 1px rgba(11,47,79,.1),
    0 40px 100px rgba(11,47,79,.12);
  isolation: isolate;
  overflow: hidden;
}
.field-orbit {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(11,47,79,.2);
  border-radius: 50%;
  animation: field-turn 28s linear infinite;
}
.field-orbit::before, .field-orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tide);
}
.field-orbit::before { top: 10%; left: 18%; }
.field-orbit::after { right: 8%; bottom: 24%; background: var(--coral); }
.field-orbit--outer { animation: none; }
.field-orbit--inner { inset: 23%; border-style: dashed; animation-direction: reverse; animation-duration: 19s; }
.field-axis {
  position: absolute;
  top: 50%;
  left: 24%;
  width: 52%;
  height: 1px;
  background: linear-gradient(90deg, var(--coral), var(--atlantic));
  opacity: .48;
}
.field-node {
  position: absolute;
  top: calc(50% - 56px);
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font: italic 1.4rem/1 var(--display);
  box-shadow: 0 22px 45px rgba(11,47,79,.2);
  transition: transform var(--dur-slow) var(--ease-expo-out), background var(--dur-standard) ease;
}
.field-node--self { left: 19%; background: var(--coral); transform: translateX(-8px); }
.field-node--system { right: 19%; background: var(--atlantic); transform: translateX(8px); }
.field-contact {
  position: absolute;
  top: calc(50% - 7px);
  left: calc(50% - 22px);
  width: 44px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.field-contact i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--atlantic);
  animation: contact-pulse 2.4s ease-in-out infinite;
}
.field-contact i:nth-child(2) { animation-delay: .22s; background: var(--coral); }
.field-contact i:nth-child(3) { animation-delay: .44s; }
.field-caption {
  position: absolute;
  right: 10%;
  bottom: 9%;
  max-width: 170px;
  margin: 0;
  color: var(--atlantic);
  font: italic 1rem/1.35 var(--display);
  text-align: right;
}
body[data-hero-role="therapist"] .field-node--self { transform: translate(30px, -24px); }
body[data-hero-role="therapist"] .field-node--system { transform: translate(-30px, 24px); }
body[data-hero-role="consultant"] .field-node--self { transform: translate(-4px, 34px); }
body[data-hero-role="consultant"] .field-node--system { transform: translate(4px, -34px); }
body[data-hero-role="leader"] .field-node--self { transform: translate(38px, 0) scale(.88); }
body[data-hero-role="leader"] .field-node--system { transform: translate(-18px, 0) scale(1.12); }
@keyframes field-turn { to { transform: rotate(1turn); } }
@keyframes contact-pulse { 0%, 100% { transform: scale(.65); opacity: .35; } 50% { transform: scale(1.15); opacity: 1; } }

.section-shell {
  width: 100%;
  padding: clamp(88px, 10vw, 152px) max(32px, calc((100vw - 1240px) / 2));
}
.section-shell--ink { color: rgba(255,255,255,.76); background: var(--atlantic); }
.section-shell--ink h2, .section-shell--ink h3, .section-shell--ink .text-link { color: white; }
.section-shell--ink .eyebrow { color: var(--glass); }
.section-shell--ink .section-intro > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.section-shell--sea { background: var(--glass); }
.section-intro { max-width: 790px; margin-bottom: clamp(44px, 6vw, 76px); }
.section-intro--wide { max-width: 980px; }
.section-intro > p:not(.eyebrow), .model-statement > p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.1rem;
}

.role-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}
.role-chip {
  min-height: 64px;
  color: var(--atlantic);
  border: 0;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,.26);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.role-chip:last-child { border-right: 0; }
.role-chip[aria-pressed="true"] { color: white; background: var(--tide); }
.recommendation {
  position: relative;
  min-height: 380px;
  padding: clamp(36px, 6vw, 76px);
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 260px;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--paper);
  overflow: hidden;
}
.rec-index { align-self: start; color: var(--tide); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.rec-copy { position: relative; z-index: 2; max-width: 640px; }
.rec-kicker { margin-bottom: 8px; color: var(--coral); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.rec-copy h2 { margin-bottom: 16px; font-size: clamp(3.1rem, 5vw, 5.4rem); }
.rec-copy > p:not(.rec-kicker) { max-width: 610px; font-size: 1.1rem; }
.rec-copy .button-row { margin-top: 28px; }
.rec-mark { position: relative; width: 240px; height: 240px; }
.rec-ring, .rec-core { position: absolute; inset: 0; border-radius: 50%; }
.rec-ring { border: 1px solid rgba(11,47,79,.2); animation: field-turn 22s linear infinite; }
.rec-ring::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
}
.rec-core { inset: 26%; background: var(--glass); box-shadow: inset 0 0 0 1px rgba(11,47,79,.1); }

.section-intro--wide h2 { max-width: 13ch; }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.18); }
.path-card {
  min-height: 450px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.18);
}
.path-card:last-child { border-right: 0; }
.path-number { margin-bottom: auto; color: var(--coral); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.path-card .eyebrow { margin-top: 46px; }
.path-card h3 { max-width: 12ch; color: white; }
.path-card p:not(.eyebrow):not(.path-meta) { max-width: 36ch; }
.path-meta { margin-top: auto; padding-top: 28px; color: var(--glass); font-size: 12px; font-weight: 700; }
.path-card .text-link { margin-top: 10px; }

.section-heading-row {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 390px);
  align-items: end;
  gap: 48px;
}
.section-heading-row h2 { margin-bottom: 0; }
.section-heading-row .source-note { justify-self: end; }
.programme-list { border-top: 1px solid var(--line); }
.programme-row {
  min-height: 190px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 260px;
  gap: 36px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.programme-date { display: flex; flex-direction: column; color: var(--atlantic); }
.programme-date strong { font: 400 clamp(2.2rem, 3vw, 3.5rem)/.9 var(--display); letter-spacing: -.05em; }
.programme-date span { margin-top: 10px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.programme-main .eyebrow { margin-bottom: 8px; }
.programme-main h3 { margin-bottom: 8px; font-size: clamp(1.6rem, 2.4vw, 2.35rem); }
.programme-main p:last-child { max-width: 620px; margin-bottom: 0; color: var(--muted); }
.programme-action { display: grid; grid-template-columns: 1fr 48px; gap: 18px; align-items: center; }
.programme-action > span { color: var(--muted); font-size: 12px; line-height: 1.4; }
.round-link {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--atlantic);
  text-decoration: none;
  transition: color var(--dur-quick), background var(--dur-quick), transform var(--dur-quick);
}
.round-link:hover { color: white; background: var(--atlantic); transform: rotate(8deg); }
.section-end { margin-top: 42px; display: flex; justify-content: flex-end; }

.model {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
  gap: clamp(54px, 9vw, 124px);
  align-items: start;
  border-top: 1px solid var(--line);
}
.model-statement { position: sticky; top: 140px; }
.model-statement h2 { font-size: clamp(3.2rem, 5.3vw, 5.7rem); }
.model-statement .text-link { margin-top: 18px; }
.principle-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.principle-grid article { min-height: 280px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-grid article:nth-child(2n) { border-right: 0; }
.principle-grid article:nth-last-child(-n+2) { border-bottom: 0; }
.principle-grid span { color: var(--coral); font-size: 11px; font-weight: 800; }
.principle-grid h3 { margin-top: 56px; }
.principle-grid p { color: var(--muted); }

.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(11,47,79,.18); border: 1px solid rgba(11,47,79,.18); }
.proof-grid article { min-height: 220px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: var(--glass); }
.proof-grid strong { color: var(--atlantic); font: 400 clamp(2.3rem, 4vw, 4.6rem)/.92 var(--display); letter-spacing: -.05em; }
.proof-grid span { max-width: 20ch; color: var(--kelp); font-size: 12px; font-weight: 700; }

.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(480px, .85fr); gap: clamp(54px, 9vw, 120px); align-items: end; }
.contact-copy h2 { max-width: 10ch; }
.contact-copy > p:last-child { max-width: 600px; }
.contact-actions { border-top: 1px solid rgba(255,255,255,.2); }
.contact-actions a {
  min-height: 112px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 120px 1fr 30px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: white;
  text-decoration: none;
}
.contact-actions span { color: var(--glass); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-actions strong { font: 400 clamp(1.4rem, 2.2vw, 2.1rem)/1.1 var(--display); }
.contact-actions i { color: var(--coral); font-style: normal; transition: transform var(--dur-quick); }
.contact-actions a:hover i { transform: translate(3px, -3px); }

.case-hero {
  --atmo-a: var(--salt);
  --atmo-b: #dde7e3;
  --atmo-glow: var(--coral);
  min-height: calc(100svh - 122px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}
.case-hero h1 { max-width: 12ch; font-size: clamp(4.5rem, 7.4vw, 8rem); }
.case-score { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.55); }
.case-score > span { color: var(--tide); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.case-score strong { display: block; margin: 70px 0 20px; color: var(--atlantic); font: 400 clamp(3.2rem, 5vw, 5rem)/.9 var(--display); }
.case-section { border-bottom: 1px solid var(--line); }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); }
.case-grid article { min-height: 260px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-grid article:nth-child(2n) { border-right: 0; }
.case-grid article:nth-last-child(-n+2) { border-bottom: 0; }
.case-grid span, .finding-list > article > span, .choice-list > li > span { color: var(--coral); font-size: 11px; font-weight: 800; }
.case-grid h3 { margin-top: 55px; }
.case-grid p { max-width: 48ch; color: var(--muted); }
.finding-list { border-top: 1px solid rgba(255,255,255,.2); }
.finding-list article {
  min-height: 180px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.finding-list article div { display: grid; grid-template-columns: .7fr 1fr; gap: 50px; }
.finding-list h3 { color: white; }
.finding-list p { max-width: 600px; }
.comparator-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.comparator-grid article { min-height: 380px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.comparator-grid h3 { margin-top: auto; font-size: clamp(1.8rem, 2.8vw, 2.7rem); }
.comparator-grid a { min-height: 44px; display: inline-flex; align-items: center; color: var(--tide); font-size: 12px; font-weight: 800; }
.choice-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(11,47,79,.22); }
.choice-list li { min-height: 160px; padding: 28px 0; display: grid; grid-template-columns: 110px 1fr; gap: 24px; border-bottom: 1px solid rgba(11,47,79,.22); }
.choice-list li div { display: grid; grid-template-columns: .65fr 1fr; gap: 48px; }
.choice-list p { max-width: 640px; color: var(--kelp); }
.boundary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.boundary-grid > div { min-height: 310px; padding: 28px; background: var(--paper); }
.boundary-grid h3 { margin-top: 64px; }
.boundary-grid p:last-child { color: var(--muted); }
.source-ledger { margin-top: 28px; padding-top: 28px; display: flex; flex-wrap: wrap; gap: 18px 30px; border-top: 1px solid var(--line); }
.source-ledger .eyebrow { flex: 0 0 100%; margin: 0; }
.source-ledger a { min-height: 44px; display: inline-flex; align-items: center; color: var(--tide); font-size: 12px; font-weight: 800; }

.site-footer {
  padding: 48px max(32px, calc((100vw - 1240px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 48px;
  color: rgba(255,255,255,.7);
  background: #08273f;
  font-size: 12px;
}
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 62px; height: 62px; }
.footer-brand p, .footer-meta p { margin: 0; }
.footer-meta { text-align: right; }
.footer-meta a { min-height: 44px; display: inline-flex; align-items: center; margin-top: 8px; color: white; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr minmax(340px, .75fr); gap: 44px; }
  .hero h1 { font-size: clamp(4rem, 7vw, 6.4rem); }
  .recommendation { grid-template-columns: 70px 1fr 190px; }
  .rec-mark { width: 180px; height: 180px; }
  .model { grid-template-columns: 1fr; }
  .model-statement { position: static; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 40px); }
  .proposal-date { display: none; }
  .site-header { height: 78px; padding-inline: 20px; }
  .brand span { display: none; }
  .brand img { width: 48px; height: 48px; }
  .view-switch button { padding-inline: 12px; font-size: 11px; }
  .hero, .case-hero {
    min-height: auto;
    padding: 70px 20px 84px;
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: 8ch; font-size: clamp(4rem, 14vw, 6.5rem); }
  .contact-field { width: min(100%, 520px); }
  .section-shell { padding: 88px 20px; }
  .role-controls { grid-template-columns: repeat(2, 1fr); }
  .role-chip:nth-child(2) { border-right: 0; }
  .role-chip:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .recommendation { min-height: 0; padding: 34px 26px; grid-template-columns: 1fr; }
  .rec-index { position: absolute; top: 28px; right: 28px; }
  .rec-mark { display: none; }
  .path-grid, .proof-grid, .comparator-grid, .boundary-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 370px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .path-card:last-child { border-bottom: 0; }
  .section-heading-row { grid-template-columns: 1fr; gap: 20px; }
  .section-heading-row .source-note { justify-self: start; }
  .programme-row { grid-template-columns: 110px 1fr; }
  .programme-action { grid-column: 2; grid-template-columns: 1fr 48px; }
  .proof-grid { gap: 0; }
  .proof-grid article { min-height: 180px; border-bottom: 1px solid rgba(11,47,79,.18); }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .principle-grid article:last-child { border-bottom: 0 !important; }
  .finding-list article, .choice-list li { grid-template-columns: 60px 1fr; }
  .finding-list article div, .choice-list li div { grid-template-columns: 1fr; gap: 10px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-grid article { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .case-grid article:last-child { border-bottom: 0 !important; }
}

@media (max-width: 520px) {
  .proposal-bar { justify-content: center; font-size: 9px; }
  .site-header { gap: 8px; }
  .view-switch button { min-height: 44px; padding-inline: 10px; }
  h1 { font-size: clamp(3.7rem, 17vw, 5.5rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.7rem); }
  .hero { padding-top: 56px; }
  .hero-lede { font-size: 1.08rem; }
  .button-row { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .contact-field { margin-top: 12px; }
  .field-node { top: calc(50% - 42px); width: 84px; height: 84px; font-size: 1.1rem; }
  .field-node--self { left: 18%; }
  .field-node--system { right: 18%; }
  .field-caption { right: 8%; bottom: 7%; font-size: .88rem; }
  .role-controls { border-radius: 14px 14px 0 0; }
  .role-chip { min-height: 56px; }
  .programme-row { grid-template-columns: 82px 1fr; gap: 20px; }
  .programme-date strong { font-size: 2rem; }
  .programme-action { grid-column: 1 / -1; }
  .contact-actions a { grid-template-columns: 1fr 30px; }
  .contact-actions span { grid-column: 1 / -1; }
  .site-footer { flex-direction: column; }
  .footer-meta { text-align: left; }
}

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

/* Iteration 2 - human presence, psychological depth and an adult type scale. */
:root {
  --midnight: #061d30;
  --cobalt: #0d3b5f;
  --mist: #dfe9e5;
  --warm-white: #f6f1e8;
  --body-size: 18px;
}

body {
  background: var(--warm-white);
  font-size: var(--body-size);
  line-height: 1.68;
}

p,
li {
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  min-font-size: 17px;
}

h1 {
  font-size: clamp(4.4rem, 7.2vw, 7.6rem);
  line-height: .88;
}

h2 {
  font-size: clamp(3.25rem, 5.8vw, 6.3rem);
  line-height: .92;
}

h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
}

.proposal-bar {
  font-size: 12px;
}

.brand {
  font-size: 13px;
}

.site-nav a {
  font-size: 16px;
}

.view-switch button {
  font-size: 15px;
}

.eyebrow {
  font-size: 13px;
}

.source-note {
  font-size: 14px;
}

.button,
.text-link {
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 122px);
  padding: clamp(76px, 9vw, 132px) max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 24px;
  color: white;
  background: var(--midnight);
  border-bottom: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--midnight);
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.82) contrast(1.04);
  transform: scale(1.012);
  animation: hero-breathe 1.1s var(--ease-expo-out) both;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 24, 41, .97) 0%, rgba(4, 24, 41, .88) 28%, rgba(4, 24, 41, .46) 55%, rgba(4, 24, 41, .08) 79%),
    linear-gradient(0deg, rgba(4, 24, 41, .74) 0%, transparent 48%),
    radial-gradient(circle at 72% 47%, transparent 0 22%, rgba(4, 24, 41, .14) 55%);
}

.hero-copy {
  grid-column: 1 / 8;
  padding: 24px 0 8px;
}

.hero h1 {
  max-width: 9.6ch;
  color: white;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .2);
}

.hero .eyebrow {
  color: #bde5de;
}

.hero-lede {
  max-width: 700px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  line-height: 1.58;
}

.hero .source-note {
  max-width: 580px;
  color: rgba(255, 255, 255, .64);
}

.hero .button--primary {
  color: var(--midnight);
  background: #f8f4eb;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

.hero .button--primary:hover {
  color: white;
  background: var(--coral);
}

.hero .text-link {
  color: white;
}

.presence-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .78;
  mix-blend-mode: screen;
  pointer-events: none;
}

.presence-lens {
  --rx: -8deg;
  --ry: 12deg;
  position: absolute;
  top: 50%;
  left: 72%;
  width: min(40vw, 560px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  pointer-events: none;
  transition: transform 700ms var(--ease-expo-out);
}

.lens-plane {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(214, 246, 241, .38);
  border-radius: 50%;
  box-shadow:
    inset 0 0 42px rgba(188, 216, 210, .08),
    0 0 80px rgba(188, 216, 210, .08);
  backdrop-filter: blur(1px);
}

.lens-plane::before,
.lens-plane::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eaf8f4;
  box-shadow: 0 0 24px rgba(234, 248, 244, .88);
}

.lens-plane::before {
  top: 18%;
  left: 6%;
}

.lens-plane::after {
  right: 10%;
  bottom: 17%;
  background: var(--coral);
}

.lens-plane--one {
  transform: translateZ(-70px) rotateX(68deg) rotateZ(8deg);
  animation: lens-turn 18s linear infinite;
}

.lens-plane--two {
  inset: 22%;
  transform: translateZ(24px) rotateY(66deg) rotateZ(-12deg);
  animation: lens-turn-reverse 13s linear infinite;
}

.lens-plane--three {
  inset: 34%;
  border-style: dashed;
  transform: translateZ(84px) rotateX(58deg) rotateY(26deg);
  animation: lens-turn 10s linear infinite;
}

.lens-contact {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, .84);
  border-radius: 50%;
  background: rgba(227, 111, 82, .7);
  box-shadow: 0 0 0 12px rgba(227, 111, 82, .1), 0 0 38px rgba(227, 111, 82, .72);
  transform: translate(-50%, -50%) translateZ(112px);
  animation: lens-pulse 3.2s ease-in-out infinite;
}

.field-caption {
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(24px, 4vw, 58px);
  max-width: 250px;
  color: white;
  font-size: 20px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .8);
}

@keyframes hero-breathe {
  from { transform: scale(1.055); }
  to { transform: scale(1.012); }
}

@keyframes lens-turn {
  to { transform: translateZ(-70px) rotateX(68deg) rotateZ(368deg); }
}

@keyframes lens-turn-reverse {
  to { transform: translateZ(24px) rotateY(66deg) rotateZ(-372deg); }
}

@keyframes lens-pulse {
  0%, 100% { transform: translate(-50%, -50%) translateZ(112px) scale(.82); opacity: .62; }
  50% { transform: translate(-50%, -50%) translateZ(112px) scale(1.18); opacity: 1; }
}

.human-condition {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(52px, 8vw, 124px);
  align-items: center;
  background:
    radial-gradient(circle at 86% 25%, rgba(188, 216, 210, .3), transparent 25%),
    var(--warm-white);
}

.human-condition__image {
  position: relative;
  margin: 0;
}

.human-condition__image::after {
  content: "";
  position: absolute;
  inset: 8% -5% -7% 12%;
  z-index: -1;
  border: 1px solid rgba(11, 47, 79, .18);
  border-radius: 50%;
  transform: rotate(-6deg);
}

.human-condition__image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 44% 56% 40% 60% / 52% 44% 56% 48%;
  box-shadow: 0 34px 90px rgba(6, 29, 48, .2);
}

.human-condition__image figcaption {
  max-width: 34ch;
  margin: 22px 0 0 auto;
  color: var(--muted);
  font: italic 18px/1.5 var(--display);
}

.human-condition__copy h2 {
  max-width: 9ch;
}

.human-condition__copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.human-signals {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.human-signals span {
  min-height: 44px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--atlantic);
  background: rgba(255, 255, 255, .42);
  font-size: 16px;
  font-weight: 700;
}

.matcher {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .72), rgba(223, 233, 229, .32)),
    var(--mist);
}

.matcher .section-intro > p:not(.eyebrow) {
  font-size: 18px;
}

.role-chip {
  min-height: 72px;
  font-size: 18px;
}

.recommendation {
  min-height: 590px;
  grid-template-columns: 90px minmax(0, 1fr) minmax(280px, 360px);
  background: rgba(251, 249, 243, .88);
}

.rec-index,
.rec-kicker,
.path-number,
.path-meta,
.programme-date span,
.programme-action > span,
.principle-grid span,
.proof-grid span,
.contact-actions span,
.case-grid span,
.finding-list > article > span,
.choice-list > li > span {
  font-size: 14px;
}

.rec-copy > p:not(.rec-kicker) {
  font-size: 18px;
}

.rec-visual {
  position: relative;
  width: 100%;
  height: 510px;
  border-radius: 49% 49% 26px 26px;
  overflow: hidden;
  background: var(--midnight);
  box-shadow: 0 30px 75px rgba(6, 29, 48, .22);
  isolation: isolate;
}

.rec-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(6, 29, 48, .9), transparent 50%);
}

.rec-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  transition: transform 850ms var(--ease-expo-out), filter 420ms ease;
}

.rec-visual > p {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 3;
  margin: 0;
  color: white;
  font: 700 14px/1.45 var(--body);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rec-lens {
  position: absolute;
  inset: 18% -20% auto auto;
  z-index: 2;
  width: 230px;
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transition: transform 850ms var(--ease-expo-out);
}

.rec-lens span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(188, 216, 210, .14);
}

.rec-lens span:nth-child(1) { transform: rotateX(66deg); }
.rec-lens span:nth-child(2) { inset: 16%; transform: rotateY(70deg); }
.rec-lens span:nth-child(3) { inset: 32%; background: rgba(227, 111, 82, .38); }

body[data-hero-role="therapist"] .rec-visual img { transform: scale(1.035) translateY(-1.5%); filter: saturate(.82); }
body[data-hero-role="therapist"] .rec-lens { transform: translate(-20px, 26px) rotate(18deg); }
body[data-hero-role="consultant"] .rec-visual img { transform: scale(1.045) translateX(-1.5%); filter: contrast(1.04); }
body[data-hero-role="consultant"] .rec-lens { transform: translate(-44px, 96px) rotate(-22deg); }
body[data-hero-role="leader"] .rec-visual img { transform: scale(1.08) translateY(-2.5%); filter: saturate(.7) contrast(1.08); }
body[data-hero-role="leader"] .rec-lens { transform: translate(-70px, 160px) scale(1.18); }

.path-card p:not(.eyebrow):not(.path-meta),
.programme-main p:last-child,
.model-statement > p:not(.eyebrow),
.principle-grid p,
.contact-copy > p:last-child,
.case-grid p,
.finding-list p,
.choice-list p,
.boundary-grid p:last-child,
.case-score p {
  font-size: 18px;
}

.path-card {
  min-height: 500px;
}

.programme-main h3 {
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.programme-row {
  min-height: 215px;
}

.model {
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
}

.model-experience {
  display: grid;
  gap: 26px;
}

.model-image {
  position: relative;
  margin: 0;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(6, 29, 48, .16);
}

.model-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.model-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 29, 48, .88), transparent 54%);
}

.model-image figcaption {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  z-index: 2;
  color: white;
  font: italic 21px/1.4 var(--display);
}

.model-image figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--glass);
  font: 800 13px/1.2 var(--body);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.principle-grid article {
  min-height: 300px;
}

.principle-grid h3 {
  margin-top: 50px;
}

.proof-grid span {
  max-width: 22ch;
}

.contact-actions strong {
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
}

.case-title {
  max-width: 12ch;
  font-size: clamp(4.5rem, 7.4vw, 8rem);
}

.case-score > span,
.comparator-grid a,
.source-ledger a {
  font-size: 14px;
}

.case-hero {
  position: relative;
  overflow: hidden;
}

.case-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -28%;
  z-index: -1;
  width: 52vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url("/assets/gisc-circle-v2.jpg") 62% center / cover;
  opacity: .2;
  filter: saturate(.4);
  -webkit-mask-image: radial-gradient(circle, black 25%, transparent 72%);
  mask-image: radial-gradient(circle, black 25%, transparent 72%);
}

@media (max-width: 1100px) {
  .hero-copy { grid-column: 1 / 9; }
  .presence-lens { left: 78%; width: min(46vw, 500px); }
  .human-condition { grid-template-columns: 1fr 1fr; gap: 52px; }
  .recommendation { grid-template-columns: 60px 1fr 280px; }
  .model { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  body { font-size: 18px; }
  .proposal-bar { font-size: 11px; }
  .view-switch button { font-size: 14px; }
  .hero {
    min-height: 920px;
    padding: 310px 20px 70px;
    align-items: end;
    grid-template-columns: 1fr;
  }
  .hero-media > img {
    object-position: 58% center;
  }
  .hero-veil {
    background:
      linear-gradient(0deg, rgba(4, 24, 41, .98) 0%, rgba(4, 24, 41, .92) 42%, rgba(4, 24, 41, .24) 72%, rgba(4, 24, 41, .14)),
      linear-gradient(90deg, rgba(4, 24, 41, .34), transparent);
  }
  .hero-copy {
    grid-column: 1;
    padding: 0;
  }
  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.7rem, 14vw, 6rem);
  }
  .presence-lens {
    top: 25%;
    left: 70%;
    width: min(72vw, 430px);
    opacity: .7;
  }
  .field-caption {
    top: 26px;
    right: 20px;
    bottom: auto;
    font-size: 18px;
  }
  .human-condition {
    grid-template-columns: 1fr;
  }
  .human-condition__image {
    order: 2;
  }
  .human-condition__copy {
    order: 1;
  }
  .human-condition__copy h2 {
    max-width: 10ch;
  }
  .recommendation {
    padding: 36px 26px 26px;
    grid-template-columns: 1fr;
  }
  .rec-visual {
    height: min(120vw, 600px);
    border-radius: 24px;
  }
  .programme-row {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3.5rem, 15.5vw, 5rem);
  }
  h2 {
    font-size: clamp(3rem, 12vw, 4.4rem);
  }
  h3 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
  .hero {
    min-height: 940px;
    padding-top: 340px;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 15vw, 5.1rem);
  }
  .hero-lede {
    font-size: 18px;
  }
  .hero .button-row {
    gap: 12px;
  }
  .hero .text-link {
    width: auto;
  }
  .human-condition__image img { aspect-ratio: auto; }
  .human-condition__image figcaption {
    margin-left: 0;
  }
  .role-controls {
    grid-template-columns: 1fr 1fr;
  }
  .role-chip {
    font-size: 17px;
  }
  .rec-copy h2 {
    font-size: clamp(3.2rem, 14vw, 4.5rem);
  }
  .model-image,
  .model-image img {
    min-height: 430px;
  }
  .model-image img {
    object-position: 46% center;
  }
  .case-title {
    font-size: clamp(3.7rem, 14vw, 5.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media > img {
    animation: none;
    transform: none;
  }
  .presence-canvas {
    display: none;
  }
}
