/* ============================================================
   PATHBUILDERS — site design system
   Built from concept-m-home-light (the approved template) and
   restructured to carry all ten pages of the 2026-08-20 copy package.

   Palette note: structure runs on Pathbuilders' in-use site blues
   (#0c3955 / #7fb4d8) rather than the brand book's Corp #1 #005670.
   That was a deliberate call — those are the colours the client
   actually uses. To switch the site to the brand teal, change
   --brand and --brand-deep below and nothing else.
   ============================================================ */

:root {
	/* --- structure --- */
	--brand:         #0c3955;   /* header, footer, bands, rails   (brand-book alt: #005670) */
	--brand-deep:    #092b40;   /* utility bar, footer deep       (brand-book alt: #00455a) */
	--brand-light:   #7fb4d8;   /* light blue accent on dark grounds */

	/* --- brand book corporate palette (retained, used for accents) --- */
	--corp-1:        #005670;
	--corp-2:        #005B39;   /* the action colour */
	--corp-2-bright: #2f8f63;
	--corp-3:        #94B7BB;
	--corp-3-tint:   #e9f1f1;
	--yellow:        #F2F0A1;

	--gray-1:        #545859;
	--gray-2:        #63666A;
	--ink-faint:     #8a8f90;
	--paper:         #ffffff;
	--paper-soft:    #f6f8f8;
	--line:          rgba(12,57,85,0.12);
	--line-soft:     rgba(12,57,85,0.07);

	/* --- program identifiers (non-negotiable, identifiers only) --- */
	--perform:  #AF9800;
	--manage:   #8E6320;
	--lead:     #9D432C;
	--inspire:  #693C5E;

	/* --- type --- */
	--sans:  'Helvetica Neue', Helvetica, Arial, sans-serif;
	--serif: Georgia, 'Times New Roman', 'Minion Pro', serif;

	/* --- Fibonacci spacing --- */
	--f1: 8px;  --f2: 13px; --f3: 21px; --f4: 34px;
	--f5: 55px; --f6: 89px; --f7: 144px; --f8: 233px;

	--maxw: 1240px;
	--nav-h: 76px;
	--ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--serif);
	font-size: 18px;
	line-height: 1.62;
	color: var(--gray-1);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, .head {
	font-family: var(--sans); font-weight: 700; color: var(--brand);
	line-height: 1.06; letter-spacing: -0.018em; margin: 0;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); letter-spacing: -0.022em; }
h3 { font-size: 1.18rem; letter-spacing: -0.01em; }
p  { margin: 0 0 var(--f3); }
a  { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
strong { color: var(--gray-1); }

:focus-visible { outline: 2px solid var(--corp-2); outline-offset: 3px; }

/* ============================================================
   Layout primitives
   ============================================================ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--f4); }
.section { padding: var(--f7) 0; }
.section-tight { padding: var(--f6) 0; }
.measure { max-width: 40rem; }
.lead { font-family: var(--serif); font-size: 1.24rem; line-height: 1.6; color: var(--gray-1); max-width: 36rem; }
.center { text-align: center; }

.eyebrow {
	font-family: var(--sans); font-size: .7rem; font-weight: 700;
	letter-spacing: .22em; text-transform: uppercase; color: var(--corp-2);
	margin: 0 0 var(--f3); display: inline-flex; align-items: center; gap: var(--f2);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; display: inline-block; }

/* ============================================================
   Buttons + links
   ============================================================ */
.btn {
	font-family: var(--sans); font-weight: 700; font-size: .92rem; letter-spacing: .01em;
	display: inline-flex; align-items: center; gap: var(--f2);
	padding: 15px 28px; border-radius: 2px; border: 1.5px solid transparent;
	cursor: pointer; transition: all .22s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px -12px rgba(12,57,85,.6); }
.btn-green { background: var(--corp-2); color: #fff; }
.btn-green:hover { background: #00472d; color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--line); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
/* on dark bands the primary inverts */
.on-dark .btn-primary { background: #fff; color: var(--brand); }
.on-dark .btn-primary:hover { background: var(--brand-light); color: var(--brand); }

.link-arrow {
	font-family: var(--sans); font-weight: 700; font-size: .86rem; letter-spacing: .04em;
	color: var(--corp-2); display: inline-flex; align-items: center; gap: 8px;
}
.link-arrow .ar { transition: transform .2s var(--ease); }
.link-arrow:hover .ar { transform: translateX(5px); }

/* ============================================================
   Header — navy, white logo, mega flyouts
   ============================================================ */
.util-bar {
	background: var(--brand-deep); color: rgba(255,255,255,.85);
	font-family: var(--sans); font-size: .72rem; letter-spacing: .08em;
	display: flex; align-items: center; gap: var(--f3);
	padding: 9px var(--f4); position: relative; z-index: 60;
}
.util-bar b { color: #fff; letter-spacing: .14em; }
.util-bar a { margin-left: auto; color: var(--brand-light); font-weight: 700; }

.site-head {
	position: sticky; top: 0; z-index: 50;
	background: rgba(12,57,85,.96); backdrop-filter: saturate(140%) blur(10px);
	border-top: 2px solid var(--brand-light);
	border-bottom: 1px solid rgba(255,255,255,.12);
	box-shadow: 0 16px 30px -18px rgba(5,22,34,.6);
}
.header-inner { display: flex; align-items: center; gap: var(--f4); height: var(--nav-h); }
.logo img { height: 42px; width: auto; }

.main-nav { list-style: none; display: flex; gap: var(--f4); margin: 0; padding: 0; align-items: center; }
.main-nav > li { position: relative; }
/* child combinator — flyout anchors must not inherit the top-level flex centring */
.main-nav > li > a, .nav-trigger {
	font-family: var(--sans); font-weight: 600; font-size: .92rem;
	color: rgba(255,255,255,.84); background: none; border: 0; cursor: pointer;
	display: inline-flex; align-items: center; gap: 6px; padding: 6px 0;
}
.main-nav > li > a:hover, .nav-trigger:hover { color: var(--brand-light); }
.nav-trigger .chev { width: 9px; height: 9px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform .2s var(--ease); }
.has-flyout:hover .chev { transform: rotate(180deg); }
.header-cta { margin-left: auto; display: flex; gap: var(--f2); align-items: center; }
.header-cta .btn-primary { background: var(--brand-light); color: var(--brand); }
.header-cta .btn-primary:hover { background: #fff; color: var(--brand); }

.flyout {
	position: absolute; top: calc(100% + 14px); left: 0;
	background: #fff; border: 1px solid var(--line-soft); border-top: 3px solid var(--brand);
	border-radius: 7px; box-shadow: 0 34px 64px -28px rgba(12,57,85,.48);
	padding: var(--f3); min-width: 540px; z-index: 60;
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.has-flyout:hover .flyout, .flyout:hover { opacity: 1; visibility: visible; transform: translateY(0); }
.flyout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.flyout-card {
	border-left: 3px solid var(--fc, var(--brand)); padding: 13px 16px; border-radius: 4px;
	display: flex; flex-direction: column; justify-content: center; gap: 3px;
	transition: background .15s, transform .15s;
}
.flyout-card:hover { background: #e9f3fa; transform: translateX(3px); }
.flyout-card strong { font-family: var(--sans); font-weight: 700; font-size: .92rem; letter-spacing: .05em; color: var(--fc, var(--brand)); }
.flyout-card span { font-family: var(--serif); font-size: .82rem; color: var(--gray-2); }

.flyout.mega { min-width: 760px; display: grid; grid-template-columns: 1fr .62fr; gap: var(--f3); }
.flyout.mega .mega-block { display: flex; flex-direction: column; }
.flyout.mega .flyout-grid { flex: 1; grid-template-rows: repeat(2, 1fr); align-items: stretch; }
.mega-h { font-family: var(--sans); font-weight: 700; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin: 2px 0 10px 4px; }
.mega-aside { background: var(--paper-soft); border-radius: 6px; padding: var(--f3); display: flex; flex-direction: column; }
.mega-aside a.q { display: block; padding: 9px 10px; border-radius: 4px; font-family: var(--sans); font-weight: 600; font-size: .85rem; color: var(--brand); }
.mega-aside a.q:hover { background: #fff; color: var(--corp-2); }
.mega-cta { margin-top: auto; padding-top: var(--f3); }
.mega-cta .btn { width: 100%; justify-content: center; }

.burger { display: none; margin-left: auto; width: 46px; height: 46px; padding: 11px; border: 0; background: none; cursor: pointer; }
.burger span { display: block; width: 100%; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.burger span + span { margin-top: 5px; }
.site-head.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-head.nav-open .burger span:nth-child(2) { opacity: 0; }
.site-head.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mnav-cta { display: none; }

/* ============================================================
   Hero band — full-bleed photo, navy overlay (every page)
   ============================================================ */
.hero { position: relative; overflow: hidden; background: #12181b; display: flex; align-items: flex-end; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Neutral near-black, not navy — a blue grade washes the photograph out and
   the documentary quality is the argument. (Carried from concept-m's de-teal pass.) */
.hero-grade {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background: linear-gradient(80deg, rgba(18,24,27,.9) 0%, rgba(18,24,27,.5) 42%, rgba(18,24,27,.1) 76%, transparent 100%),
	            linear-gradient(0deg, rgba(18,24,27,.62) 0%, transparent 50%);
}
.hero .wrap { position: relative; z-index: 3; padding-top: var(--f7); padding-bottom: var(--f7); width: 100%; }
.hero h1 { color: #fff; letter-spacing: -.035em; max-width: 17ch; }
.hero .hero-eyebrow { font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brand-light); margin: 0 0 var(--f3); }
.hero .lead { font-family: var(--serif); font-size: clamp(1.1rem,1.6vw,1.4rem); color: rgba(255,255,255,.92); max-width: 40rem; margin: var(--f4) 0 var(--f5); line-height: 1.5; }
.hero .lead b { color: #fff; font-weight: 400; font-style: italic; }
.hero-actions { display: flex; gap: var(--f3); flex-wrap: wrap; align-items: center; }
.hero-actions .link-arrow { color: #fff; }

/* page heroes are shorter than the homepage's */
.hero-page .wrap { padding-top: var(--f6); padding-bottom: var(--f6); }
.hero-page h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }

/* ============================================================
   Argument beats — a short run of statements, no tiles
   (Homepage C "The Method", and reused on inner pages)
   ============================================================ */
.beats { max-width: 46rem; }
.beats.center { margin-left: auto; margin-right: auto; }
.beats h2 { margin-bottom: var(--f5); }
.beat-line {
	font-family: var(--serif); font-size: clamp(1.05rem,1.5vw,1.24rem);
	line-height: 1.58; color: var(--gray-1);
	padding: var(--f3) 0; margin: 0; border-top: 1px solid var(--line-soft);
}
.beat-line:first-of-type { border-top: 0; padding-top: 0; }
.beat-line em { font-style: italic; color: var(--corp-2); }
.beat-line b { font-family: var(--sans); font-weight: 700; color: var(--brand); font-style: normal; }
.beats-out { margin-top: var(--f4); }

/* ============================================================
   Program tiles — four-column grid, one collapsed card each
   ============================================================ */
.prog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--f3); }
.prog {
	background: #fff; border: 1px solid var(--line-soft);
	border-left: 3px solid var(--p, var(--brand));
	padding: var(--f4) var(--f3) var(--f3); display: flex; flex-direction: column;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.prog:hover { transform: translateY(-4px); box-shadow: 0 26px 46px -28px color-mix(in srgb, var(--p) 55%, transparent); }
.prog-name { font-family: var(--sans); font-weight: 700; font-size: 1.25rem; letter-spacing: .05em; color: var(--p); margin-bottom: 6px; }
.prog-stage { font-family: var(--sans); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: var(--f3); }
.prog p { font-size: .96rem; line-height: 1.5; margin-bottom: var(--f3); }
.prog .spacer { flex: 1; }
/* the tile's own controls take the programme colour — the one sanctioned exception */
.prog .acc-trigger { color: var(--p); }
.prog .acc-trigger .ico::before, .prog .acc-trigger .ico::after { background: var(--p); }
.prog .acc-panel-inner .lbl { color: var(--p); }
.prog .link-arrow { color: var(--p); margin-top: var(--f2); }
.prog-grid-cta { text-align: center; margin-top: var(--f5); }

/* ============================================================
   Expand card — collapsed by default, contents always in the DOM
   (search + AI must be able to read them: no display:none)
   ============================================================ */
.accordion { border-top: 1px solid var(--line-soft); margin-top: var(--f2); }
.acc-trigger {
	width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
	font-family: var(--sans); font-weight: 700; font-size: .85rem; color: var(--brand);
	display: flex; align-items: center; gap: 10px; padding: var(--f3) 0 0;
}
.acc-trigger .ico { width: 16px; height: 16px; flex: none; position: relative; }
.acc-trigger .ico::before, .acc-trigger .ico::after { content: ""; position: absolute; background: var(--brand); transition: opacity .2s; }
.acc-trigger .ico::before { left: 0; top: 7px; width: 16px; height: 2px; }
.acc-trigger .ico::after { left: 7px; top: 0; width: 2px; height: 16px; }
.acc-trigger[aria-expanded="true"] .ico::after { opacity: 0; }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-panel-inner { padding: var(--f3) 0 var(--f1); font-size: .94rem; line-height: 1.55; color: var(--gray-2); }
.acc-panel-inner .lbl { font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .14em; color: var(--brand); display: block; margin: var(--f2) 0 4px; }
.acc-panel-inner .role { font-family: var(--sans); font-weight: 700; font-size: .96rem; color: var(--gray-1); display: block; margin-bottom: 2px; }

/* ============================================================
   Mentoring band — full-bleed photo row, content left
   ============================================================ */
.band-photo { position: relative; overflow: hidden; padding: var(--f7) 0; }
.band-photo .bp-bg { position: absolute; inset: 0; background-size: cover; background-position: 74% 28%; }
.band-photo .bp-bg::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(92deg, rgba(12,57,85,.97) 0%, rgba(12,57,85,.93) 40%, rgba(12,57,85,.7) 64%, rgba(12,57,85,.32) 100%);
}
.band-photo .wrap { position: relative; z-index: 1; }
.band-photo .bp-content { max-width: 38rem; }
.band-photo .eyebrow { color: var(--brand-light); }
.band-photo h2 { color: #fff; }
.band-photo .lead { color: rgba(255,255,255,.92); }
.band-photo .pull { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--corp-3); margin-top: var(--f4); }
.band-photo .link-arrow { color: var(--brand-light); }
@media (max-width: 760px) { .band-photo .bp-bg::after { background: rgba(12,57,85,.94); } }

.element { padding: var(--f3) 0; border-top: 1px solid rgba(255,255,255,.16); }
.element:first-of-type { border-top: 0; }
.element h4 { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: 6px; }
.element h4 span { color: var(--brand-light); }
.element p { font-size: .98rem; line-height: 1.55; margin: 0; color: rgba(255,255,255,.84); }
.esum { font-family: var(--sans); font-weight: 700; font-size: .95rem; color: var(--brand-light); margin-top: var(--f3); }

/* ============================================================
   Proof — logo orbit around a golden-rectangle stat panel
   ============================================================ */
.proof { background: var(--paper-soft); text-align: center; }
.proof h2 { font-size: clamp(1.4rem,2.4vw,1.9rem); margin-bottom: var(--f5); }
.proof-orbit { position: relative; max-width: calc(58rem + 260px); margin: 0 auto; padding: 118px 130px; }
.orbit-logos { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.orbit-logos img {
	position: absolute; left: 0; top: 0; height: 88px; width: 104px; object-fit: contain;
	padding: 5px; background: #fff; border: 1px solid var(--line); border-radius: 9px;
	box-shadow: 0 12px 26px -18px rgba(12,57,85,.42);
	filter: grayscale(1) contrast(1.08); transition: filter .25s var(--ease);
	pointer-events: auto; will-change: transform;
}
.orbit-logos img:hover { filter: grayscale(0) contrast(1); }

.proof-fib {
	position: relative; display: grid; grid-template-columns: 38.2fr 61.8fr; grid-template-rows: 1fr 1fr;
	max-width: 58rem; min-height: 400px; margin: 0 auto; background: #fff;
	border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
	box-shadow: 0 26px 56px -40px rgba(12,57,85,.45);
}
.proof-fib > svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.pf-spiral-track { fill: none; stroke: rgba(12,57,85,.09); stroke-width: 1.4; }
.pf-spiral-curve { fill: none; stroke-width: 2.4; opacity: .5; }
.proof-fib .pf-cell { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: var(--f4); }
.pf-a { grid-column: 1; grid-row: 1; border-bottom: 1px solid var(--line); }
.pf-b { grid-column: 1; grid-row: 2; }
.pf-c { grid-column: 2; grid-row: 1 / span 2; border-left: 1px solid var(--line); }
.proof-fib strong { font-family: var(--sans); font-size: clamp(1.55rem,2.3vw,2rem); color: var(--brand); line-height: 1.12; display: block; margin-bottom: 10px; }
.pf-c strong { font-size: clamp(1.9rem,3vw,2.6rem); }
.proof-fib span { font-family: var(--serif); font-size: .98rem; color: var(--gray-2); line-height: 1.55; max-width: 21rem; }

/* simple curated strip — the alternative to the orbit once the approved list lands */
.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--f4); }
.logo-strip img { height: 84px; width: 150px; object-fit: contain; padding: 10px 14px; background: #fff; border: 1px solid var(--line); border-radius: 8px; filter: grayscale(1); opacity: .78; transition: all .25s var(--ease); }
.logo-strip img:hover { filter: grayscale(0); opacity: 1; }

/* ============================================================
   Closing CTA band
   ============================================================ */
.closing {
	color: #fff; text-align: center; padding: var(--f7) var(--f4);
	background: linear-gradient(170deg, rgba(12,57,85,.92) 0%, rgba(12,57,85,.87) 50%, rgba(9,43,64,.95) 100%);
	background-size: cover; background-position: center 26%;
}
.closing .l1 { font-family: var(--sans); font-weight: 700; font-size: clamp(1.8rem,3.4vw,2.8rem); line-height: 1.12; color: #fff; margin-bottom: var(--f4); letter-spacing: -.02em; }
.closing .l2 { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem,2vw,1.6rem); color: rgba(255,255,255,.92); margin-bottom: var(--f3); }
.closing .l3 { font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem,1.6vw,1.25rem); color: var(--brand-light); margin-bottom: var(--f5); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { position: relative; overflow: hidden; background: var(--brand); color: rgba(255,255,255,.72); padding: var(--f5) 0 var(--f3); font-family: var(--sans); }
.site-footer .wrap { position: relative; z-index: 2; }
.foot-spiral { position: absolute; left: -14%; bottom: -34%; width: min(50vw,640px); aspect-ratio: 1; transform: scaleX(-1); z-index: 1; pointer-events: none; opacity: .2; }
.foot-spiral svg { width: 100%; height: 100%; overflow: visible; }
.foot-track { fill: none; stroke: rgba(148,183,187,.1); stroke-width: .6; }
.foot-curve { fill: none; stroke-width: 1.3; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: var(--f4); padding-bottom: var(--f4); border-bottom: 1px solid rgba(255,255,255,.12); }
.foot-brand img { height: auto; max-height: 50px; width: auto; margin-bottom: var(--f3); }
.foot-brand .tagline { font-family: var(--serif); font-size: 1.06rem; line-height: 1.5; color: #fff; max-width: 17rem; margin: 0; }
.foot-brand .tagline b { display: block; color: var(--corp-3); font-weight: 400; }
.foot-social { margin-top: var(--f4); display: inline-flex; gap: 10px; }
.foot-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #fff; transition: background .2s, color .2s, border-color .2s; }
.foot-social a:hover { background: var(--corp-3); color: var(--brand); border-color: var(--corp-3); }
.foot-social svg { width: 17px; height: 17px; fill: currentColor; }
.foot-col h4 { font-family: var(--sans); font-weight: 700; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--corp-3); margin: 0 0 var(--f3); }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-family: var(--sans); font-size: .9rem; color: rgba(255,255,255,.74); }
.foot-col a:hover { color: #fff; }
.foot-col .stage::before { content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--fc, var(--corp-3)); margin-right: 10px; vertical-align: middle; }
.foot-col address { font-style: normal; font-family: var(--sans); font-size: .9rem; line-height: 1.65; color: rgba(255,255,255,.74); }
.foot-col address a { color: var(--corp-3); display: inline-block; margin-top: 4px; }
.foot-whisper { font-family: var(--serif); font-style: italic; font-size: .92rem; color: rgba(255,255,255,.55); margin: var(--f3) 0 0; max-width: 19rem; line-height: 1.5; }
.foot-whisper b { color: var(--corp-3); font-style: normal; font-weight: 400; }
.footer-bottom { display: flex; justify-content: space-between; gap: var(--f4); flex-wrap: wrap; font-size: .82rem; padding-top: var(--f3); margin-top: var(--f3); }
.footer-bottom .links { display: flex; gap: var(--f4); flex-wrap: wrap; }
.footer-bottom a { color: var(--corp-3); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
	.prog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
	.burger { display: block; }
	.site-head .header-cta { display: none; }
	.header-inner { gap: var(--f3); }
	.site-head nav[aria-label="Primary"] { position: absolute; left: 0; right: 0; top: 100%; }
	.main-nav {
		display: block; background: var(--brand); border-top: 1px solid rgba(255,255,255,.12);
		box-shadow: 0 26px 44px -22px rgba(5,22,34,.7);
		max-height: 0; overflow: hidden; padding: 0 var(--f4); transition: max-height .38s var(--ease);
	}
	.site-head.nav-open .main-nav { max-height: min(82vh,780px); overflow-y: auto; padding: var(--f2) var(--f4) var(--f4); }
	.main-nav > li { position: static; border-top: 1px solid rgba(255,255,255,.10); }
	.main-nav > li:first-child { border-top: 0; }
	.main-nav > li > a:not(.btn), .nav-trigger { width: 100%; justify-content: space-between; padding: 15px 0; font-size: 1.02rem; color: #fff; }
	.nav-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
	.flyout, .flyout.mega {
		position: static; opacity: 1; visibility: visible; transform: none;
		display: none; width: 100%; min-width: 0; grid-template-columns: none;
		background: transparent; border: 0; border-radius: 0; box-shadow: none; padding: 0 0 var(--f3); margin: 0;
	}
	.nav-trigger[aria-expanded="true"] + .flyout { display: block; }
	.flyout-grid { grid-template-columns: 1fr; gap: 6px; }
	.flyout-card { background: rgba(255,255,255,.05); }
	.flyout-card strong { color: #fff; }
	.flyout-card span { color: rgba(255,255,255,.72); }
	.mega-h { color: var(--brand-light); }
	.mega-aside { background: rgba(255,255,255,.05); margin-top: 6px; }
	.mega-aside a.q { color: #d6e8f4; }
	.mega-aside a.q:hover { background: rgba(255,255,255,.08); color: #fff; }
	.mega-cta { display: none; }
	.mnav-cta { display: block; border-top: 0; padding: var(--f3) 0 var(--f2); }
	.mnav-cta .btn { width: 100%; justify-content: center; }
	.mnav-cta .btn-primary { background: var(--brand-light); color: var(--brand); }
	.mnav-cta .btn-primary:hover { background: #fff; color: var(--brand); }
}
@media (max-width: 900px) {
	.proof-orbit { padding: 0; max-width: 58rem; }
	.orbit-logos { position: static; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--f2); margin-bottom: var(--f4); }
	.orbit-logos img { position: static; height: 54px; width: 104px; padding: 6px 8px; transform: none !important; will-change: auto; }
}
@media (max-width: 760px) {
	body { font-size: 17px; }
	.section { padding: var(--f6) 0; }
	.hero .wrap { padding-top: var(--f6); padding-bottom: var(--f6); }
	.closing { padding: var(--f6) var(--f4); }
	.prog-grid { grid-template-columns: 1fr; max-width: 26rem; margin: 0 auto; }
	.proof-fib { grid-template-columns: 1fr; grid-template-rows: none; min-height: 0; }
	.pf-c { grid-row: auto; border-left: 0; border-top: 1px solid var(--line); }
	.proof-fib > svg { display: none; }
	.foot-top { grid-template-columns: 1fr 1fr; }
	.foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
	.foot-top { grid-template-columns: 1fr; }
	.foot-spiral { opacity: .32; }
}

/* ============================================================
   Reduced motion — never change position/height of scroll
   machinery here; only remove transforms and transitions.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.prog:hover { transform: none; }
	.btn:hover { transform: none; }
}

/* ============================================================
   HOMEPAGE — Section A: the Fibonacci swirl hero
   The photo paints in along a golden-spiral mask, then resolves.
   ============================================================ */
.hero-swirl { min-height: calc(100vh - var(--nav-h) - 38px); }
.hero-swirl .swirl-frame { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-swirl .swirl-svg {
	position: absolute; inset: 0; width: 100%; height: 100%;
	filter: blur(11px) brightness(.6) saturate(.8);
	animation: pbFocus 2.4s cubic-bezier(.4,.05,.2,1) .1s both;
}
@keyframes pbFocus { 60% { filter: blur(0) brightness(.94) saturate(1); } 100% { filter: blur(0) brightness(1) saturate(1.02); } }

.hero-spiral { position: absolute; z-index: 2; right: -2%; top: 44%; transform: translateY(-50%); width: min(56vw,720px); aspect-ratio: 1; pointer-events: none; }
.hero-spiral svg { width: 100%; height: 100%; overflow: visible; }
.hero-track { fill: none; stroke: rgba(242,240,161,.3); stroke-width: 1.4; }
.hero-curve { fill: none; stroke-width: 2.6; filter: drop-shadow(0 0 7px rgba(175,152,0,.5)); }
.hero-rect  { fill: none; stroke: rgba(242,240,161,.14); stroke-width: .6; }

/* v16: the two headline lines are one size, one colour — no shift between them */
.hero-swirl h1 { font-size: clamp(2.5rem,6.2vw,5rem); max-width: 19ch; }

.load { opacity: 0; transform: translateY(20px); animation: pbLoadUp 1s var(--ease) both; }
.load.d1 { animation-delay: 1.5s; } .load.d2 { animation-delay: 1.7s; } .load.d3 { animation-delay: 1.9s; }
@keyframes pbLoadUp { to { opacity: 1; transform: none; } }

.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3; width: 1px; height: 52px; overflow: hidden; opacity: 0; animation: pbLoadUp 1s var(--ease) 2.3s both; }
.scroll-cue::before {
	content: ""; position: absolute; left: 0; top: -52px; width: 1px; height: 52px;
	background: linear-gradient(180deg, transparent, var(--yellow));
	animation: pbCueDrop 2.4s cubic-bezier(.4,0,.2,1) 2.8s infinite;
}
@keyframes pbCueDrop { 0% { transform: translateY(0); } 62%,100% { transform: translateY(104px); } }

@media (prefers-reduced-motion: reduce) {
	.hero-swirl .swirl-svg { animation: none; filter: none; }
	.load { opacity: 1; transform: none; animation: none; }
	.scroll-cue { opacity: 1; animation: none; }
	.scroll-cue::before { animation: none; transform: translateY(52px); }
}

/* ============================================================
   HOMEPAGE — Section B: the Reframe
   A quiet climb to one landing line, then the frame that widens.
   ============================================================ */
.reframe {
	background: linear-gradient(168deg, #0e4266 0%, var(--brand) 58%, var(--brand-deep) 100%);
	color: #fff; padding: var(--f7) var(--f4);
}
.reframe .inner { max-width: 50rem; margin: 0 auto; }
.reframe .climb {
	font-family: var(--serif); font-size: clamp(1.05rem,1.7vw,1.3rem); line-height: 1.55;
	color: rgba(255,255,255,.8); margin: 0 0 var(--f3); max-width: 40rem;
}
.reframe .landing {
	font-family: var(--sans); font-weight: 700;
	font-size: clamp(1.7rem,3.6vw,2.9rem); line-height: 1.14; letter-spacing: -.022em;
	color: #fff; margin: var(--f4) 0 0; text-wrap: balance;
}
.reframe .landing em { font-style: normal; color: var(--brand-light); }

/* the line made literal — a narrow crop that widens to the whole scene */
.frame-expand { width: 100%; max-width: 1000px; margin: var(--f6) auto 0; text-align: center; }
.frame-expand .fe-window {
	position: relative; width: 36%; min-width: 190px; height: clamp(330px,42vw,520px);
	margin: 0 auto; overflow: hidden; border-radius: 5px;
	box-shadow: 0 34px 70px -34px rgba(5,22,34,.65);
	transition: width 1.35s cubic-bezier(.62,.03,.2,1); will-change: width;
}
.frame-expand .fe-window img {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 44%;
	transform: scale(1.42); transform-origin: center;
	transition: transform 1.35s cubic-bezier(.62,.03,.2,1);
}
.frame-expand .fe-edge {
	position: absolute; inset: 0; z-index: 2; pointer-events: none; border-radius: 5px;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 0 0 1px rgba(127,180,216,.55), 0 0 24px 1px rgba(127,180,216,.42);
	transition: box-shadow .6s;
}
.frame-expand.open .fe-edge { box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
.frame-expand .fe-cue {
	position: absolute; top: 50%; z-index: 3; font-family: var(--sans); font-size: 1.7rem; line-height: 1;
	color: #fff; text-shadow: 0 1px 8px rgba(5,22,34,.85); pointer-events: none; transition: opacity .5s;
}
.frame-expand .fe-cue.l { left: 8px; animation: pbCueL 1.7s ease-in-out infinite; }
.frame-expand .fe-cue.r { right: 8px; animation: pbCueR 1.7s ease-in-out infinite; }
@keyframes pbCueL { 0%,100% { transform: translate(0,-50%); opacity: .5; } 50% { transform: translate(-5px,-50%); opacity: 1; } }
@keyframes pbCueR { 0%,100% { transform: translate(0,-50%); opacity: .5; } 50% { transform: translate(5px,-50%); opacity: 1; } }
.frame-expand.open .fe-cue { animation: none; opacity: 0; }

/* the ask rides the opened frame */
.frame-expand .fe-cta {
	position: absolute; left: 50%; bottom: 36px; transform: translateX(-50%) translateY(12px); z-index: 3;
	opacity: 0; pointer-events: none; background: #fff; color: var(--brand);
	box-shadow: 0 18px 38px -16px rgba(5,22,34,.65);
	transition: opacity .5s var(--ease) 1s, transform .55s var(--ease) 1s;
}
.frame-expand.open .fe-cta { opacity: 1; transform: translateX(-50%); pointer-events: auto; }
.frame-expand .fe-cta:hover { background: var(--brand-light); color: var(--brand); }
.frame-expand.open .fe-window { width: 100%; }
.frame-expand.open .fe-window img { transform: scale(1); }
.frame-expand .fe-cap {
	display: block; margin-top: var(--f4); font-size: .74rem; letter-spacing: .18em;
	text-transform: uppercase; color: var(--brand-light); font-family: var(--sans); font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
	.frame-expand .fe-cue.l, .frame-expand .fe-cue.r { animation: none; opacity: .9; }
	.frame-expand .fe-window, .frame-expand .fe-window img { transition: none; }
}
@media (max-width: 760px) {
	.reframe { padding: var(--f6) var(--f4); }
	.frame-expand .fe-cta { display: none; }   /* no room to land it cleanly */
}

/* ============================================================
   THE SET BAND — Our Approach section C
   Four tiles, each pairing an ache above with its answer below.
   Same colour, same size; only the font differs, so the pair
   reads as one unit. The set must land as four things at once
   before the page walks them one at a time.
   ============================================================ */
.set-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--f3); max-width: 62rem; margin: 0 auto; }
.set-tile {
	background: var(--corp-3-tint); border-radius: 6px; padding: var(--f4);
	display: flex; flex-direction: column; gap: 6px;
	border-left: 3px solid transparent; transition: border-color .2s var(--ease), transform .2s var(--ease);
}
a.set-tile:hover { border-left-color: var(--corp-2); transform: translateY(-2px); }
.set-tile .ache,
.set-tile .answer {
	font-size: clamp(1.05rem,1.55vw,1.28rem); line-height: 1.32; color: var(--brand); margin: 0;
}
.set-tile .ache   { font-family: var(--serif); font-style: italic; }
.set-tile .answer { font-family: var(--sans); font-weight: 700; letter-spacing: -.012em; }

/* on-page eyebrow introducing the deep sections */
.inside-eyebrow {
	font-family: var(--sans); font-weight: 700; font-size: .74rem; letter-spacing: .22em;
	text-transform: uppercase; color: var(--corp-2); text-align: center;
	margin: var(--f7) 0 var(--f5); display: flex; align-items: center; gap: var(--f3); justify-content: center;
}
.inside-eyebrow::before, .inside-eyebrow::after { content: ""; height: 1px; width: 60px; background: var(--line); }

/* ============================================================
   DEEP SECTIONS — a headline, prose, one outbound link
   ============================================================ */
.deep { max-width: 44rem; margin: 0 auto; padding: var(--f6) 0; border-top: 1px solid var(--line-soft); }
.deep:first-of-type { border-top: 0; }
.deep h2 { font-size: clamp(1.6rem,2.6vw,2.2rem); margin-bottom: var(--f4); }
.deep p { font-size: 1.06rem; line-height: 1.62; }
.deep .link-arrow { margin-top: var(--f2); }

.pull-quote {
	font-family: var(--serif); font-style: italic;
	font-size: clamp(1.2rem,2vw,1.55rem); line-height: 1.45; color: var(--corp-2);
	border-left: 3px solid var(--corp-3); padding: var(--f2) 0 var(--f2) var(--f4);
	margin: var(--f5) 0 0;
}
.pull-quote cite { display: block; font-style: normal; font-family: var(--sans); font-weight: 700;
	font-size: .8rem; letter-spacing: .06em; color: var(--gray-2); margin-top: var(--f3); }

/* ============================================================
   PROOF BAND — stat bar, result line, sidebar callout
   ============================================================ */
.stat-bar {
	display: flex; flex-wrap: wrap; justify-content: center; gap: var(--f3) 0;
	max-width: 62rem; margin: 0 auto var(--f6); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
	padding: var(--f4) 0;
}
.stat-bar div {
	font-family: var(--sans); font-weight: 700; font-size: .96rem; color: var(--brand);
	padding: 0 var(--f4); flex: 1 1 auto; text-align: center; min-width: 12rem;
	border-left: 1px solid var(--line-soft);
}
.stat-bar div:first-child { border-left: 0; }

.proof-result { display: grid; grid-template-columns: 1.618fr 1fr; gap: var(--f6); align-items: start; max-width: 62rem; margin: 0 auto; text-align: left; }
.proof-result .lead-in { font-family: var(--serif); font-size: 1.06rem; color: var(--gray-2); margin: 0 0 var(--f3); }
.proof-result .result {
	font-family: var(--sans); font-weight: 700; font-size: clamp(1.7rem,3.2vw,2.6rem);
	line-height: 1.12; letter-spacing: -.022em; color: var(--brand); margin: 0; text-wrap: balance;
}
.proof-sidebar {
	background: var(--corp-3-tint); border-radius: 6px; padding: var(--f4);
	font-family: var(--serif); font-size: .95rem; line-height: 1.55; color: var(--gray-1);
}
@media (max-width: 860px) {
	.set-grid { grid-template-columns: 1fr; }
	.proof-result { grid-template-columns: 1fr; gap: var(--f4); }
}

/* hero variant carrying three short beats and a pulled thesis line */
.hero-beats {
	list-style: none; margin: var(--f4) 0 var(--f4); padding: 0;
	display: flex; flex-direction: column; gap: var(--f2); max-width: 40rem;
}
.hero-beats li {
	font-family: var(--serif); font-size: 1.06rem; line-height: 1.5;
	color: rgba(255,255,255,.86); padding-left: var(--f3); position: relative;
}
.hero-beats li::before {
	content: ""; position: absolute; left: 0; top: .72em;
	width: 9px; height: 1px; background: var(--brand-light);
}
.hero-beats b { color: #fff; font-weight: 700; font-family: var(--sans); font-size: .98rem; letter-spacing: .01em; }
.hero-thesis {
	font-family: var(--serif); font-style: italic; font-size: 1.06rem; line-height: 1.55;
	color: var(--brand-light); max-width: 38rem; margin: 0;
	padding-top: var(--f3); border-top: 1px solid rgba(255,255,255,.18);
}

/* ============================================================
   STACKED CONTENT SECTIONS — Intentional Mentoring C–G,
   Our Constructs, and the program pages.
   Headline, deck line, then beats that lead on a bold phrase.
   ============================================================ */
.stack { max-width: 46rem; margin: 0 auto; padding: var(--f6) 0; border-top: 1px solid var(--line-soft); }
.stack:first-of-type { border-top: 0; padding-top: 0; }
.stack-num {
	font-family: var(--sans); font-weight: 700; font-size: .7rem; letter-spacing: .2em;
	color: var(--corp-2); display: block; margin-bottom: var(--f2);
}
.stack h2 { font-size: clamp(1.55rem,2.5vw,2.1rem); margin-bottom: var(--f3); }
.stack .deck {
	font-family: var(--serif); font-style: italic; font-size: 1.14rem; line-height: 1.5;
	color: var(--gray-2); margin: 0 0 var(--f4); max-width: 40rem;
}
.lead-beat { font-size: 1.04rem; line-height: 1.62; margin: 0 0 var(--f3); }
.lead-beat b { font-family: var(--sans); font-weight: 700; font-size: 1rem; color: var(--brand); letter-spacing: -.005em; }
.stack .closer {
	font-family: var(--serif); font-style: italic; font-size: 1.12rem; color: var(--corp-2);
	margin: var(--f4) 0 0; padding-top: var(--f3); border-top: 1px solid var(--line-soft);
}
.proof-list { list-style: none; margin: 0 0 var(--f4); padding: 0; display: flex; flex-direction: column; gap: var(--f2); }
.proof-list li {
	font-family: var(--serif); font-size: 1.1rem; color: var(--brand);
	padding-left: var(--f4); position: relative;
}
.proof-list li::before {
	content: ""; position: absolute; left: 0; top: .78em; width: 20px; height: 1px; background: var(--corp-3);
}

/* ============================================================
   DIAGRAMS — drawn as inline SVG rather than shipped as images,
   so the labels are real text that search and AI can read.
   ============================================================ */
.diagram { margin: var(--f4) 0; }
.diagram svg { width: 100%; height: auto; display: block; max-width: 30rem; margin: 0 auto; }
.diagram figcaption {
	font-family: var(--sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
	color: var(--ink-faint); text-align: center; margin-top: var(--f3); font-weight: 700;
}
.dg-band { stroke: #fff; stroke-width: 2; }
.dg-label { font-family: var(--sans); font-weight: 700; font-size: 15px; fill: #fff; letter-spacing: .04em; }
.dg-sub { font-family: Georgia, serif; font-size: 12.5px; fill: rgba(255,255,255,.82); }
.dg-ring { fill: none; stroke: var(--corp-3); stroke-width: 1.4; }
.dg-node { fill: var(--brand); }
.dg-node-label { font-family: var(--sans); font-weight: 700; font-size: 14px; fill: var(--brand); letter-spacing: .04em; }
.dg-node-sub { font-family: Georgia, serif; font-size: 12px; fill: var(--gray-2); }
.dg-arrow { fill: none; stroke: var(--corp-2); stroke-width: 1.6; marker-end: url(#dgarrow); }

/* featured construct blocks */
.construct { border-left: 3px solid var(--corp-3); padding-left: var(--f4); margin: var(--f5) 0; }
.construct h3 { font-size: 1.35rem; color: var(--brand); margin-bottom: var(--f2); }
.construct .defn { font-family: var(--serif); font-size: 1.1rem; line-height: 1.55; color: var(--gray-1); margin-bottom: var(--f3); }
.construct ul { margin: 0 0 var(--f3); padding-left: var(--f3); }
.construct li { margin-bottom: var(--f2); line-height: 1.55; }
.construct li b { font-family: var(--sans); font-weight: 700; color: var(--brand); }

/* ============================================================
   THE FOUR STAGES
   The manifest is explicit: any treatment that hides three of the
   four stages behind an interaction trades scannability for
   elegance, and a skeptical evaluator needs to see all four worked
   to the same standard. So every stage is rendered and legible at
   rest; the spiral rail rides alongside as a progress companion,
   never as a gate. (Mobile collapses to an accordion, per the doc.)
   ============================================================ */

/* --- the arc: four columns, always all four --- */
.arc { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--f2); max-width: 64rem; margin: 0 auto; }
.arc-col {
	background: #fff; border: 1px solid var(--line-soft); border-top: 3px solid var(--p);
	padding: var(--f4) var(--f3); display: flex; flex-direction: column; gap: var(--f2);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.arc-col:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -26px color-mix(in srgb, var(--p) 55%, transparent); }
.arc-col .nm { font-family: var(--sans); font-weight: 700; font-size: 1.2rem; letter-spacing: .05em; color: var(--p); }
.arc-col .ds { font-family: var(--serif); font-size: .95rem; line-height: 1.45; color: var(--gray-1); margin: 0; }

/* --- stage layout: sticky rail + all four stages visible --- */
.stages-layout { display: grid; grid-template-columns: 300px 1fr; gap: var(--f6); align-items: start; max-width: 68rem; margin: 0 auto; }
.stage-rail { position: sticky; top: calc(var(--nav-h) + var(--f4)); background: var(--brand); border-radius: 8px; padding: var(--f4) var(--f3); text-align: center; }
.stage-rail .cap {
	font-family: var(--sans); font-weight: 700; font-size: .64rem; letter-spacing: .22em;
	text-transform: uppercase; color: var(--brand-light); margin-bottom: var(--f3);
	display: flex; align-items: center; gap: 10px; justify-content: center;
}
.stage-rail .cap::before { content: ""; width: 22px; height: 1px; background: var(--brand-light); }
.stage-rail svg { width: 100%; max-width: 220px; height: auto; overflow: visible; margin: 0 auto; }
.path-track { fill: none; stroke: rgba(148,183,187,.2); stroke-width: 1.6; }
.path-curve { fill: none; stroke-width: 4.2; filter: drop-shadow(0 0 9px rgba(217,165,27,.55)); }
.path-node .ring { fill: none; stroke: rgba(217,165,27,.55); stroke-width: 2; transition: stroke .4s, r .4s, stroke-width .4s; }
.path-node .dot { fill: rgba(217,165,27,.55); transition: fill .4s, r .4s; }
.path-node .lbl { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: .06em; fill: rgba(255,255,255,.5); transition: fill .4s; }
.path-node.lit .ring { stroke: var(--brand-light); } .path-node.lit .dot { fill: var(--brand-light); } .path-node.lit .lbl { fill: rgba(255,255,255,.82); }
.path-node.current .ring { stroke: var(--p); stroke-width: 3; r: 14; }
.path-node.current .dot  { fill: var(--p); r: 6; }
.path-node.current .lbl  { fill: #fff; }
.rail-now { margin-top: var(--f3); }
.rail-now .ct { font-family: var(--sans); font-weight: 700; font-size: .66rem; letter-spacing: .2em; color: var(--brand-light); }
.rail-now .nm { font-family: var(--sans); font-weight: 700; font-size: 1.35rem; color: #fff; letter-spacing: .04em; margin-top: 5px; }

.stage-block { padding: var(--f6) 0; border-top: 1px solid var(--line-soft); }
.stage-block:first-child { border-top: 0; padding-top: 0; }
.stage-tag {
	font-family: var(--sans); font-weight: 700; font-size: .68rem; letter-spacing: .18em;
	text-transform: uppercase; color: var(--p); margin-bottom: var(--f2); display: block;
}
.stage-block h3 { font-size: clamp(1.4rem,2.2vw,1.85rem); color: var(--brand); margin-bottom: var(--f3); letter-spacing: -.018em; }
.stage-block p { font-size: 1.04rem; line-height: 1.62; }
.stage-become {
	font-family: var(--sans); font-weight: 700; font-size: 1.02rem; color: var(--p);
	margin: var(--f4) 0 var(--f3); padding-top: var(--f3); border-top: 1px solid var(--line-soft);
}
.stage-become span { display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 5px; }
.stage-block .link-arrow { color: var(--p); }

/* --- full-width knowledge blocks (5D, mentoring, SEE) --- */
.block-wide { max-width: 56rem; margin: 0 auto; }
.block-wide .icon-row { display: flex; align-items: center; gap: var(--f3); margin-bottom: var(--f3); }
.icon-5d { display: flex; align-items: flex-end; gap: 4px; height: 30px; }
.icon-5d i { display: block; width: 6px; background: var(--brand); border-radius: 1px; }
.icon-pair { display: flex; align-items: center; gap: 7px; }
.icon-pair i { display: block; border-radius: 50%; border: 2px solid var(--brand); }
.dim-list { list-style: none; margin: var(--f3) 0; padding: 0; display: flex; flex-direction: column; gap: var(--f2); }
.dim-list li { line-height: 1.5; padding-left: var(--f3); position: relative; }
.dim-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 12px; height: 1px; background: var(--corp-3); }
.dim-list b { font-family: var(--sans); font-weight: 700; color: var(--brand); }

/* --- the SEE band: four pairs, equal weight, lands last --- */
.see-band { background: var(--brand); color: #fff; padding: var(--f7) 0; }
.see-band h2, .see-band h3 { color: #fff; }
.see-band .intro { color: rgba(255,255,255,.86); font-size: 1.08rem; line-height: 1.6; max-width: 46rem; }
.see-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--f4); margin: var(--f6) 0 var(--f5); }
.see-pair { border-top: 2px solid var(--p); padding-top: var(--f3); }
.see-pair .st { font-family: var(--sans); font-weight: 700; font-size: .82rem; letter-spacing: .16em; color: var(--p); }
.see-pair .ac { font-family: var(--sans); font-weight: 700; font-size: 1.16rem; color: #fff; margin: 8px 0 var(--f2); letter-spacing: -.01em; }
.see-pair p { font-family: var(--serif); font-size: .98rem; line-height: 1.55; color: rgba(255,255,255,.8); margin: 0; }
.see-pull {
	font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem,2.2vw,1.7rem);
	line-height: 1.42; color: var(--brand-light); max-width: 44rem; margin: 0;
	padding-top: var(--f4); border-top: 1px solid rgba(255,255,255,.18);
}
.pathways { display: flex; flex-direction: column; gap: var(--f2); align-items: center; margin-top: var(--f4); }
.pathways a { font-family: var(--sans); font-size: .92rem; color: var(--corp-2); }
.pathways a:hover { color: var(--brand); }
.on-dark .pathways a, .see-band .pathways a { color: var(--brand-light); }
.on-dark .pathways a:hover, .see-band .pathways a:hover { color: #fff; }

@media (max-width: 1000px) {
	.arc { grid-template-columns: 1fr 1fr; }
	.stages-layout { grid-template-columns: 1fr; gap: var(--f4); }
	.stage-rail { position: static; display: none; }   /* the rail is a companion, never the content */
	.see-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) { .arc { grid-template-columns: 1fr; } }

/* ============================================================
   PROGRAMS OVERVIEW — the router cards and the outside band
   The four palettes appear ONLY on these cards; green stays the
   single action colour everywhere else on the page.
   ============================================================ */
.router { display: grid; grid-template-columns: 1fr 1fr; gap: var(--f4); max-width: 64rem; margin: 0 auto; }
.router-card {
	background: #fff; border: 1px solid var(--line-soft); border-top: 4px solid var(--p);
	padding: var(--f5) var(--f4); display: flex; flex-direction: column;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.router-card:hover { transform: translateY(-4px); box-shadow: 0 30px 54px -32px color-mix(in srgb, var(--p) 55%, transparent); }
.router-card .nm { font-family: var(--sans); font-weight: 700; font-size: 1.5rem; letter-spacing: .06em; color: var(--p); margin-bottom: var(--f2); }
.router-card .developing { font-family: var(--serif); font-style: italic; font-size: 1.1rem; line-height: 1.45; color: var(--brand); margin: 0 0 var(--f3); }
.router-card .becomes { font-size: 1rem; line-height: 1.58; margin: 0 0 var(--f4); }
.router-card .becomes b { font-family: var(--sans); font-weight: 700; color: var(--brand); }
.router-card .spacer { flex: 1; }
.router-card .spec {
	font-family: var(--sans); font-size: .78rem; letter-spacing: .04em; color: var(--gray-2);
	padding-top: var(--f3); border-top: 1px solid var(--line-soft); margin-bottom: var(--f3);
	display: flex; flex-wrap: wrap; gap: 6px 10px;
}
.router-card .spec span::after { content: " ·"; color: var(--corp-3); margin-left: 8px; }
.router-card .spec span:last-child::after { content: ""; }

/* the three moments — a scannable list is what keeps this from reading as a wall */
.story-list { list-style: none; margin: var(--f4) 0; padding: 0; display: flex; flex-direction: column; gap: var(--f3); }
.story-list li {
	background: #fff; border-left: 3px solid var(--corp-3); padding: var(--f3) var(--f4);
	font-size: 1.02rem; line-height: 1.58;
}

.tinted-band { background: var(--corp-3-tint); border-radius: 8px; padding: var(--f5); margin: var(--f5) 0; }
.tinted-band p:last-child { margin-bottom: 0; }
.band-pull {
	font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem,1.9vw,1.45rem);
	line-height: 1.45; color: var(--corp-2); margin: var(--f5) 0 0;
}

@media (max-width: 860px) { .router { grid-template-columns: 1fr; } }

/* ============================================================
   PROGRAM PAGES — one spine, four levels.
   The page accent is that programme's colour; green stays the
   action colour for links and buttons.
   ============================================================ */
.welcome-line {
	background: var(--paper-soft); border-bottom: 1px solid var(--line-soft);
	font-family: var(--serif); font-size: .95rem; color: var(--gray-2);
	text-align: center; padding: var(--f2) var(--f4);
}

.hero-prog .hero-grade {
	background: linear-gradient(82deg,
		color-mix(in srgb, var(--p) 88%, #101417) 0%,
		color-mix(in srgb, var(--p) 62%, #101417) 44%,
		rgba(16,20,23,.5) 78%, rgba(16,20,23,.25) 100%);
}
.hero-prog .stage-of {
	font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .24em;
	text-transform: uppercase; color: rgba(255,255,255,.82); margin: 0 0 var(--f2);
}
.hero-prog h1 { font-size: clamp(3rem,7vw,5.4rem); letter-spacing: .02em; }
.hero-prog .focus {
	font-family: var(--sans); font-weight: 700; font-size: 1.05rem; color: #fff;
	margin: var(--f3) 0 var(--f4);
}
.hero-prog .zoom-out { color: #fff; }

/* --- the 5D grid, demand-first --- */
.fived { max-width: 56rem; margin: 0 auto; }
.fived .fived-intro { font-size: 1.04rem; line-height: 1.6; max-width: 44rem; }
.dim {
	border-top: 1px solid var(--line); padding: var(--f4) 0;
}
.dim:first-of-type { border-top: 2px solid var(--p); }
.dim-head {
	font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .18em;
	text-transform: uppercase; color: var(--p); margin-bottom: 6px;
}
.dim-def { font-family: var(--serif); font-style: italic; font-size: .96rem; color: var(--gray-2); margin: 0 0 var(--f3); }
.dim-headline { font-family: var(--sans); font-weight: 700; font-size: 1.45rem; color: var(--brand); margin: 0 0 var(--f3); letter-spacing: -.015em; }
.dim-items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--f2); }
.dim-items li { line-height: 1.55; padding-left: var(--f3); position: relative; font-size: 1rem; }
.dim-items li::before { content: ""; position: absolute; left: 0; top: .74em; width: 12px; height: 1px; background: var(--p); }
.dim-items b { font-family: var(--sans); font-weight: 700; color: var(--brand); }

.lens-bar { background: color-mix(in srgb, var(--p) 10%, #fff); border-left: 3px solid var(--p); padding: var(--f4); margin-top: var(--f3); }
.lens-bar .words { font-family: var(--sans); font-weight: 700; font-size: 1.15rem; color: var(--p); margin-bottom: var(--f2); letter-spacing: .02em; }

.see-strip {
	background: var(--brand); color: #fff; border-radius: 6px; padding: var(--f4); margin-top: var(--f5);
}
.see-strip .st { font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brand-light); }
.see-strip .ac { font-family: var(--sans); font-weight: 700; font-size: 1.3rem; color: #fff; margin: 8px 0 var(--f2); }
.see-strip p { color: rgba(255,255,255,.84); margin: 0 0 var(--f3); font-family: var(--serif); }
.see-strip a { color: var(--brand-light); font-family: var(--sans); font-weight: 700; font-size: .86rem; }
.see-strip a:hover { color: #fff; }

/* --- what changes --- */
.theme {
	border-left: 3px solid var(--p); padding: var(--f2) 0 var(--f2) var(--f4); margin-bottom: var(--f5);
}
.theme h3 { font-size: 1.2rem; color: var(--brand); margin-bottom: var(--f2); }
.theme blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: 1.06rem; line-height: 1.55; color: var(--gray-1); }
.theme cite { display: block; font-style: normal; font-family: var(--sans); font-weight: 700; font-size: .76rem; letter-spacing: .06em; color: var(--gray-2); margin-top: var(--f2); }
.theme-footer {
	border-top: 1px solid var(--line); padding-top: var(--f4); margin-top: var(--f5);
	font-size: .98rem; line-height: 1.6; color: var(--gray-2);
}
.theme-footer b { font-family: var(--sans); font-weight: 700; color: var(--brand); }

/* --- programme close --- */
.prog-close { background: var(--p); color: #fff; text-align: center; padding: var(--f7) var(--f4); }
.prog-close p { color: #fff; }
.prog-close .c1 { font-family: var(--sans); font-weight: 700; font-size: clamp(1.6rem,3vw,2.4rem); line-height: 1.14; letter-spacing: -.02em; margin-bottom: var(--f3); }
.prog-close .c2 { font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem,1.8vw,1.4rem); margin-bottom: var(--f5); }
.prog-close .btns { display: flex; gap: var(--f3); justify-content: center; flex-wrap: wrap; }
.prog-close .btn-primary { background: #fff; color: var(--p); }
.prog-close .btn-primary:hover { background: var(--brand); color: #fff; }
.prog-close .btn-ghost { border-color: rgba(255,255,255,.55); }
.prog-close .pathways { margin-top: var(--f5); }
.prog-close .pathways a { color: rgba(255,255,255,.88); }
.prog-close .pathways a:hover { color: #fff; }

/* content cards (Section F) */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--f3); margin: var(--f4) 0; }
.card-3 { background: #fff; border: 1px solid var(--line-soft); border-top: 3px solid var(--p); padding: var(--f4) var(--f3); }
.card-3 h4 { font-family: var(--sans); font-weight: 700; font-size: 1.02rem; color: var(--p); margin-bottom: var(--f2); }
.card-3 p { font-size: .96rem; line-height: 1.55; margin: 0; }
.callout {
	background: color-mix(in srgb, var(--p) 9%, #fff); border-left: 3px solid var(--p);
	padding: var(--f4); font-family: var(--serif); font-size: 1.02rem; line-height: 1.58; margin-top: var(--f4);
}
@media (max-width: 860px) { .cards-3 { grid-template-columns: 1fr; } }

/* programme stat bars — tinted in the page's own colour */
.prog-stats {
	display: grid; gap: 1px; background: color-mix(in srgb, var(--p) 22%, #fff);
	border: 1px solid color-mix(in srgb, var(--p) 22%, #fff); margin: var(--f4) 0;
}
.prog-stats.two   { grid-template-columns: 1fr 1fr; }
.prog-stats.three { grid-template-columns: repeat(3,1fr); }
.prog-stats div {
	background: color-mix(in srgb, var(--p) 8%, #fff); padding: var(--f4) var(--f3); text-align: center;
	font-family: var(--sans); font-weight: 700; font-size: 1rem; color: var(--brand);
}
@media (max-width: 700px) { .prog-stats.two, .prog-stats.three { grid-template-columns: 1fr; } }

/* INSPIRE's marker line — deliberately NOT a stats block; the summit is bespoke */
.marker-line {
	text-align: center; font-family: var(--sans); font-weight: 700; font-size: .92rem;
	letter-spacing: .04em; color: var(--p); margin: var(--f5) 0 0;
	padding-top: var(--f4); border-top: 1px solid color-mix(in srgb, var(--p) 30%, transparent);
}

/* Anchor targets clear the sticky header — without this, every jump link
   (the Our Approach set tiles, the SEE strips) lands with its heading
   hidden underneath the nav. */
[id] { scroll-margin-top: calc(var(--nav-h) + var(--f4)); }

/* ============================================================
   OUR THINKING — index
   Two streams (Cornerstone Content · From the CEO) per the site
   architecture. Stream assignment is Helene's editorial call; until
   she makes it, everything sits in the C-Suite Dialogue stream it
   was published in.
   ============================================================ */
.stream-head {
	display: flex; align-items: baseline; gap: var(--f3); flex-wrap: wrap;
	border-bottom: 2px solid var(--brand); padding-bottom: var(--f2); margin-bottom: var(--f5);
}
.stream-head h2 { font-size: clamp(1.4rem,2.2vw,1.9rem); }
.stream-head .count { font-family: var(--sans); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); }

.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--f4); }
.post-card {
	display: flex; flex-direction: column; background: #fff;
	border: 1px solid var(--line-soft); overflow: hidden;
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 28px 50px -30px rgba(12,57,85,.4); }
.post-card .thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--corp-3-tint); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .pc-body { padding: var(--f4) var(--f3) var(--f3); display: flex; flex-direction: column; flex: 1; }
.post-card .meta {
	font-family: var(--sans); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
	color: var(--ink-faint); margin-bottom: var(--f2); display: flex; gap: var(--f2); flex-wrap: wrap;
}
.post-card h3 { font-size: 1.16rem; line-height: 1.24; color: var(--brand); margin-bottom: var(--f2); }
.post-card .deck { font-family: var(--serif); font-size: .95rem; line-height: 1.5; color: var(--gray-2); margin: 0; }
.post-card .spacer { flex: 1; }
.post-card .more { font-family: var(--sans); font-weight: 700; font-size: .82rem; color: var(--corp-2); margin-top: var(--f3); }

/* the newest post leads the index */
.post-lead {
	display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: #fff;
	border: 1px solid var(--line-soft); overflow: hidden; margin-bottom: var(--f5);
}
.post-lead .thumb { min-height: 320px; }
.post-lead .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-lead .pl-body { padding: var(--f5); display: flex; flex-direction: column; justify-content: center; }
.post-lead h3 { font-size: clamp(1.5rem,2.4vw,2.1rem); line-height: 1.14; margin-bottom: var(--f3); }
.post-lead .deck { font-family: var(--serif); font-size: 1.08rem; line-height: 1.55; color: var(--gray-2); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-head { background: var(--paper-soft); padding: var(--f6) 0 var(--f5); border-bottom: 1px solid var(--line-soft); }
.post-head .crumbs { font-family: var(--sans); font-size: .74rem; letter-spacing: .08em; color: var(--gray-2); margin-bottom: var(--f3); }
.post-head .crumbs a { color: var(--corp-2); }
.post-head h1 { font-size: clamp(2rem,4.2vw,3.2rem); max-width: 22ch; }
.post-head .deck {
	font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem,1.7vw,1.35rem);
	line-height: 1.45; color: var(--gray-2); max-width: 44rem; margin: var(--f3) 0 var(--f4);
}
.post-head .byline {
	font-family: var(--sans); font-size: .8rem; letter-spacing: .06em; color: var(--gray-2);
	display: flex; gap: var(--f3); flex-wrap: wrap; align-items: center;
	padding-top: var(--f3); border-top: 1px solid var(--line);
}
.post-head .byline b { color: var(--brand); font-weight: 700; }

.post-hero-img { max-width: 62rem; margin: 0 auto; }
.post-hero-img img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }

/* --- the TLDR banner: the AI block --- */
.tldr {
	background: var(--brand); color: #fff; border-radius: 8px;
	padding: var(--f5); margin: var(--f5) 0;
}
.tldr h2 {
	color: #fff; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
	margin-bottom: var(--f3); display: flex; align-items: center; gap: var(--f2);
}
.tldr h2::before { content: ""; width: 26px; height: 1px; background: var(--brand-light); }
.tldr .summary { font-family: var(--serif); font-size: 1.14rem; line-height: 1.55; color: #fff; margin: 0 0 var(--f4); max-width: 48rem; }
.tldr .covers { font-family: var(--sans); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-light); margin-bottom: var(--f2); }
.tldr ol { margin: 0; padding: 0; list-style: none; counter-reset: tl; display: grid; grid-template-columns: 1fr 1fr; gap: var(--f2) var(--f4); }
.tldr ol li {
	counter-increment: tl; position: relative; padding-left: var(--f4);
	font-family: var(--serif); font-size: 1rem; line-height: 1.45; color: rgba(255,255,255,.9);
}
.tldr ol li::before {
	content: counter(tl,decimal-leading-zero); position: absolute; left: 0; top: .1em;
	font-family: var(--sans); font-weight: 700; font-size: .74rem; color: var(--brand-light); letter-spacing: .08em;
}
.tldr .read { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-light); margin-top: var(--f4); }

/* --- article body (markup comes from WordPress) --- */
.post-body { max-width: 42rem; margin: 0 auto; }
.post-body p { font-size: 1.1rem; line-height: 1.7; margin: 0 0 var(--f4); }
.post-body h2 {
	font-size: clamp(1.35rem,2.2vw,1.75rem); margin: var(--f6) 0 var(--f3);
	color: var(--brand); letter-spacing: -.018em;
}
.post-body h3 { font-size: 1.16rem; margin: var(--f5) 0 var(--f3); color: var(--corp-2); }
.post-body h3:first-child { display: none; }   /* the deck line is already in the header */
.post-body ul, .post-body ol { margin: 0 0 var(--f4); padding-left: var(--f4); }
.post-body li { font-size: 1.06rem; line-height: 1.62; margin-bottom: var(--f2); }
.post-body img { margin: var(--f5) auto; }
.post-body a { color: var(--corp-2); text-decoration: underline; text-underline-offset: 3px; }
.post-body blockquote {
	margin: var(--f5) 0; padding-left: var(--f4); border-left: 3px solid var(--corp-3);
	font-family: var(--serif); font-style: italic; font-size: 1.2rem; line-height: 1.5; color: var(--brand);
}
.post-body strong { color: var(--brand); }

/* --- FAQ block (component ready; content owed) --- */
.faq { max-width: 42rem; margin: var(--f6) auto 0; border-top: 1px solid var(--line); padding-top: var(--f5); }
.faq h2 { font-size: 1.3rem; margin-bottom: var(--f4); }
.faq .q { border-bottom: 1px solid var(--line-soft); }
.faq .q:last-child { border-bottom: 0; }

/* --- related --- */
.related { background: var(--paper-soft); padding: var(--f6) 0; }
.related h2 { font-size: 1.3rem; margin-bottom: var(--f4); }

/* --- contact form at the foot of a post --- */
.post-contact { background: var(--brand); color: #fff; padding: var(--f6) 0; }
.post-contact h2 { color: #fff; font-size: clamp(1.4rem,2.4vw,1.9rem); }
.post-contact .sub { color: rgba(255,255,255,.82); font-family: var(--serif); font-size: 1.06rem; margin: var(--f3) 0 var(--f4); max-width: 40rem; }
.pc-form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--f3); max-width: 46rem; }
.pc-form label { display: flex; flex-direction: column; gap: 6px; font-family: var(--sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-light); }
.pc-form input, .pc-form textarea {
	font-family: var(--serif); font-size: 1rem; padding: 12px 14px; border-radius: 3px;
	border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.07); color: #fff;
}
.pc-form input:focus, .pc-form textarea:focus { outline: 2px solid var(--brand-light); outline-offset: 1px; }
.pc-form .full { grid-column: 1 / -1; }
.pc-form textarea { min-height: 110px; resize: vertical; }
.pc-form .actions { grid-column: 1 / -1; display: flex; align-items: center; gap: var(--f3); flex-wrap: wrap; }
.pc-form .note { font-family: var(--sans); font-size: .76rem; color: rgba(255,255,255,.6); }

@media (max-width: 1000px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) {
	.post-lead { grid-template-columns: 1fr; }
	.tldr ol { grid-template-columns: 1fr; }
	.pc-form { grid-template-columns: 1fr; }
}
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Start the Conversation — the intake page
   The CTA endpoint every page points to. Golden-ratio split:
   the form leads, a companion rail says what happens next.
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1.618fr 1fr; gap: var(--f6); align-items: start; }

.intake-form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--f3) var(--f4); }
.intake-form[hidden] { display: none; }
.intake-form label {
	display: flex; flex-direction: column; gap: 7px;
	font-family: var(--sans); font-size: .72rem; font-weight: 700;
	letter-spacing: .14em; text-transform: uppercase; color: var(--gray-2);
}
.intake-form .full { grid-column: 1 / -1; }
.intake-form input, .intake-form select, .intake-form textarea {
	font-family: var(--serif); font-size: 1rem; padding: 12px 14px; border-radius: 3px;
	border: 1px solid var(--line); background: #fff; color: var(--gray-1); width: 100%;
	transition: border-color .2s var(--ease);
}
.intake-form textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.intake-form input:focus, .intake-form select:focus, .intake-form textarea:focus {
	outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand);
}
.intake-form .actions {
	grid-column: 1 / -1; display: flex; align-items: center; gap: var(--f4);
	flex-wrap: wrap; margin-top: var(--f2);
}
.intake-form .reassure { font-family: var(--serif); font-size: .95rem; color: var(--gray-2); margin: 0; max-width: 24rem; }

.form-done {
	border: 1px solid var(--corp-2); border-left: 3px solid var(--corp-2);
	background: var(--corp-3-tint); padding: var(--f4) var(--f4) var(--f4) var(--f4); border-radius: 4px;
}
.form-done h3 { color: var(--corp-2); font-size: 1.2rem; margin-bottom: var(--f2); }
.form-done p { font-family: var(--serif); color: var(--gray-1); }

.contact-aside h3 {
	font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .16em;
	text-transform: uppercase; color: var(--ink-faint); margin: 0 0 var(--f3);
}
.next-steps { list-style: none; counter-reset: ns; margin: 0 0 var(--f5); padding: 0; }
.next-steps li {
	position: relative; padding-left: calc(var(--f4) + 8px); margin-bottom: var(--f3);
	line-height: 1.55; font-size: .98rem;
}
.next-steps li::before {
	counter-increment: ns; content: counter(ns);
	position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 50%;
	background: var(--brand); color: #fff; font-family: var(--sans); font-weight: 700; font-size: .8rem;
	display: flex; align-items: center; justify-content: center;
}
.next-steps b { font-family: var(--sans); font-size: .96rem; color: var(--brand); display: block; margin-bottom: 3px; }
.direct-contact { border-top: 1px solid var(--line); padding-top: var(--f4); }
.direct-contact .dc-row { margin: 0 0 var(--f2); font-family: var(--sans); font-size: 1rem; }
.direct-contact a { font-weight: 700; }

@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: var(--f5); } }
@media (max-width: 620px) { .intake-form { grid-template-columns: 1fr; } }

/* ============================================================
   About Us — the roster (name + credential, text-forward)
   Senior pedigree is the argument, so the type carries it, not
   a grid of headshots.
   ============================================================ */
.roster { display: grid; grid-template-columns: 1fr 1fr; gap: var(--f4) var(--f6); }
.roster .person { break-inside: avoid; }
.roster .nm {
	font-family: var(--sans); font-weight: 700; font-size: 1.12rem; color: var(--brand);
	letter-spacing: -.01em; margin: 0 0 2px; display: flex; align-items: baseline; gap: var(--f2); flex-wrap: wrap;
}
.roster .nm .tag {
	font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: #fff;
	background: var(--corp-2); padding: 3px 8px; border-radius: 100px; font-weight: 700;
}
.roster .role {
	font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .1em;
	text-transform: uppercase; color: var(--corp-2); margin: 0 0 var(--f2);
}
.roster .bio { font-family: var(--serif); font-size: 1rem; line-height: 1.55; color: var(--gray-1); margin: 0; max-width: 34rem; }
.roster-lead { grid-template-columns: 1fr 1fr; gap: var(--f5) var(--f6); }
.roster-lead .nm { font-size: 1.4rem; }
.roster-lead .bio { font-size: 1.06rem; }

@media (max-width: 760px) { .roster, .roster-lead { grid-template-columns: 1fr; gap: var(--f4); } }
