/* ==========================================================================
   Growth Guide v4 — "The Practice Journal"
   The coaching practice set like a well-made European periodical:
   Playfair Display headlines with italic accent words, warm paper grounds,
   pale sky feature bands, photography placed as magazine features, prices
   in a ranked tinted table. One accent family (warm sky blue) against
   navy ink. Eyebrow + short rule motif carried from the house system.
   ========================================================================== */

/* ---- Fonts (self-hosted, latin) ---------------------------------------- */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/playfair-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/playfair-italic-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lato-v25-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/lato-v25-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

/* ---- Tokens ------------------------------------------------------------- */

:root {
  --paper: #fbfaf7;            /* warm paper ground */
  --paper-deep: #f4f1ea;       /* warm breath stripe */
  --sky-band: #e7f0f9;         /* pale sky feature band */
  --sky-pale: #dceaf6;         /* badge / tile fill */
  --sky: #4e90c9;              /* bright sky accent — rules, italic words, icons */
  --sky-deep: #2c6398;         /* CTA fill, strong accent */
  --sky-ink: #275f92;          /* links and small accents on light grounds */
  --navy: #010646;             /* brand-mark navy — the logo's own ground: display type, header, footer, CTA band */
  --ink: #1c2433;              /* body text, navy-tinted black */
  --muted: #5c6e82;            /* secondary text, blue-tinted */
  --amber: #f6ad55;            /* hero proof stars — the single warm accent */
  --line: rgba(10, 22, 78, 0.14);
  --line-soft: rgba(10, 22, 78, 0.08);
  --white: #ffffff;

  --shadow-rest: 0 2px 10px rgba(10, 22, 78, 0.07);
  --shadow-raise: 0 14px 34px rgba(10, 22, 78, 0.16);

  --radius-card: 12px;
  --radius-control: 8px;

  --container: 1170px;
  --header-h: 96px;

  --ease: cubic-bezier(0.16, 0.84, 0.32, 1);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --font-label: 'Montserrat', system-ui, sans-serif;
}

/* ---- Base ---------------------------------------------------------------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--sky-pale); color: var(--navy); }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 0.6em;
  text-wrap: balance;
  overflow-wrap: break-word;   /* long words may break, but never hyphenate:
                                   display type must not split mid-word */
  hyphens: none;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-family: var(--font-label); font-weight: 700; font-size: 1rem; letter-spacing: 0.01em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--sky-ink); text-decoration-color: rgba(39, 95, 146, 0.4); text-underline-offset: 3px; }
a:hover { color: var(--navy); text-decoration-color: var(--navy); }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--navy); color: var(--paper);
  font-family: var(--font-label); font-size: 0.85rem;
  padding: 0.6rem 1.1rem; border-radius: var(--radius-control);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--paper); }

.container {
  width: min(var(--container), 100% - 2 * clamp(1rem, 4vw, 1.5rem));
  margin-inline: auto;
}

.icon { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; vertical-align: -0.18em; }

/* ---- Eyebrow + rule (house motif, journal voice) ------------------------- */

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sky-ink);
  margin: 0 0 1.1rem;
  padding-bottom: 0.65rem;
  position: relative;
}
.eyebrow::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 3rem; height: 3px;
  background: var(--sky);
}
.on-navy .eyebrow, .eyebrow--on-navy { color: #a9cbe8; }
.on-navy .eyebrow::after, .eyebrow--on-navy::after { background: #7ab3dd; }

/* ---- Type helpers --------------------------------------------------------- */

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink);
  max-width: 34em;
}
.on-navy .lead { color: rgba(251, 250, 247, 0.88); }

.accent-i { font-style: italic; color: var(--sky); }
.on-navy .accent-i { color: #8ec2e6; }

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.45;
  color: var(--navy);
  border-top: 3px solid var(--sky);
  padding-top: 1.2rem;
  margin: 2.5rem 0 0;
  max-width: 30em;
}

/* ---- Sections -------------------------------------------------------------- */

.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.bg-band { background: var(--sky-band); }
.bg-off { background: var(--paper-deep); }
.on-navy { background: var(--navy); color: rgba(251, 250, 247, 0.88); }
.on-navy h1, .on-navy h2, .on-navy h3 { color: var(--white); }

.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.6rem); max-width: 44em; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::after { left: calc(50% - 1.5rem); }
.section-head--center .lead { margin-inline: auto; }

/* ---- Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  background: var(--sky-deep);
  color: var(--paper);
  font-family: var(--font-label); font-weight: 600; font-size: 0.98rem;
  line-height: 1.2;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-control);
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { background: #23517e; color: var(--paper); transform: translateY(-2px); box-shadow: var(--shadow-rest); }
.btn .icon { color: #9cc6e8; }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(251, 250, 247, 0.55);
}
.btn--ghost:hover { background: rgba(251, 250, 247, 0.1); border-color: #8ec2e6; box-shadow: none; }
.btn--ghost .icon { color: #8ec2e6; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-label); font-weight: 600; font-size: 0.95rem;
  color: var(--sky-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--sky-pale);
  padding-bottom: 0.25rem;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-arrow::after { content: '\2192'; transition: transform 0.25s var(--ease); }
.link-arrow:hover { color: var(--navy); border-color: var(--sky); }
.link-arrow:hover::after { transform: translateX(4px); }

.link-quiet {
  font-family: var(--font-label); font-weight: 600; font-size: 0.95rem;
  color: var(--sky-ink);
}

/* ---- Header ------------------------------------------------------------------- */

.site-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(251, 250, 247, 0.14);
  position: sticky; top: 0; z-index: 50;
}
.site-header__inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.site-header__logo img { width: 205px; height: auto; }

.nav__list {
  display: flex; align-items: center; gap: 1.75rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__link {
  font-family: var(--font-label); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--paper);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav__link:hover { color: #8ec2e6; border-color: #8ec2e6; }
.nav__link[aria-current="page"] { color: #8ec2e6; border-color: #8ec2e6; }

.nav__item--has-drop { position: relative; }
.nav__caret {
  display: inline-block; width: 0.45em; height: 0.45em;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.12em);
  margin-left: 0.45em;
}
.nav__drop {
  position: absolute; top: calc(100% + 14px); left: -1rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-control);
  box-shadow: var(--shadow-raise);
  min-width: 250px; padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.nav__item--has-drop:hover .nav__drop,
.nav__item--has-drop:focus-within .nav__drop,
.nav__item--has-drop[data-open] .nav__drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__drop a {
  display: block;
  font-family: var(--font-label); font-weight: 600; font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav__drop a:hover { background: var(--sky-band); color: var(--sky-ink); }
.drop-context {
  display: block;
  font-family: var(--font-body); font-weight: 400; font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.site-header__cta { display: flex; align-items: center; gap: 0.9rem; }

.lang-toggle {
  font-family: var(--font-label); font-weight: 600; font-size: 0.82rem;
  color: #a9cbe8;
  text-decoration: none;
  border: 1.5px solid rgba(251, 250, 247, 0.35);
  border-radius: var(--radius-control);
  padding: 0.45rem 0.8rem;
  transition: all 0.25s var(--ease);
}
.lang-toggle .sep { color: rgba(251, 250, 247, 0.55); margin: 0 0.15em; }
.lang-toggle:hover { background: rgba(251, 250, 247, 0.1); border-color: #8ec2e6; color: var(--paper); }

.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; position: relative;
}
.nav__toggle span {
  position: absolute; left: 8px; right: 8px; height: 3px;
  background: var(--paper); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s, top 0.3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 12px; }
.nav__toggle span:nth-child(2) { top: 20px; }
.nav__toggle span:nth-child(3) { top: 28px; }

/* ---- Hero (the journal opens) ---------------------------------------------------- */

.hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  column-gap: clamp(2.5rem, 5vw, 4.5rem);
}
.hero__text .eyebrow { margin-bottom: 1.4rem; }

/* Headline: the three-line flagship lockup (Empower technical / professionals & / expats.) */
.hero__title { font-size: clamp(2.1rem, 1rem + 2.6vw, 3.125rem); margin-bottom: 1.1rem; }
.hero__line { display: block; }

.hero .lead { max-width: none; font-size: clamp(1rem, 0.4vw + 0.93rem, 1.0625rem); line-height: 1.59; }

/* Actions are shared with page-hero sections; flagship-only overrides live under .hero */
.hero__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem;
  margin: 1.8rem 0 1.9rem;
}
.hero .hero__actions { gap: 1rem; margin: 1.65rem 0; }
.hero .btn {
  font-size: 0.845rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 1.625rem;
}
.hero .link-quiet {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; letter-spacing: 0.04em;
  text-decoration: none;
}
.hero .link-quiet .icon { width: 1rem; height: 1rem; color: var(--sky); transition: transform 0.25s var(--ease); }
.hero .link-quiet:hover .icon,
.hero .link-quiet:focus-visible .icon { transform: translateX(3px); }

.hero__meta {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.625rem;
}
.hero__meta li {
  font-family: var(--font-label); font-weight: 400; font-size: 0.8125rem;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.55em;
  white-space: nowrap;
}
.hero__meta .icon { color: var(--sky); }

.hero__feature { position: relative; }
.hero__mat {
  background: var(--white);
  padding: 11px 11px 0;
  outline: 1px solid var(--line-soft);
  outline-offset: -0.5px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-rest);
  overflow: hidden;
}

/* The shot: photograph + sky cast + navy legibility grade + chips + proof block */
.hero__shot {
  position: relative;
  aspect-ratio: 615 / 400;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}
.hero__shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__tint { position: absolute; inset: 0; background: rgba(44, 99, 152, 0.26); }
.hero__grade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 62.5%;
  background: linear-gradient(180deg, rgba(1, 6, 70, 0) 0%, rgba(1, 6, 70, 0.18) 40%, rgba(1, 6, 70, 0.85) 100%);
}
.hero__chips {
  position: absolute; top: 3.5%; left: 2.6%; right: 2.6%;
  display: flex; justify-content: space-between; align-items: center; gap: 0.5rem;
}
.hero__chips-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero__chip {
  background: rgba(251, 250, 247, 0.85);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  color: var(--navy);
  font-family: var(--font-label); font-weight: 700; font-size: 0.625rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  white-space: nowrap;
}
.hero__proof {
  position: absolute; left: 2.6%; right: 2.6%; bottom: 6.5%;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.hero__proof-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.hero__stat { display: flex; align-items: center; gap: 0.875rem; min-width: 0; margin: 0; }
.hero__stat strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.55rem, 1rem + 1.1vw, 2.25rem);
  line-height: 1.05; color: var(--paper);
}
.hero__stat-label {
  display: flex; flex-direction: column; gap: 3px;
  font-family: var(--font-label); font-weight: 700; font-size: 0.625rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: #a9cbe8;
}
.hero__stat-label small {
  font-family: var(--font-body); font-weight: 400; font-size: 0.75rem;
  letter-spacing: 0; text-transform: none; color: rgba(251, 250, 247, 0.72);
}
.hero__stars { display: flex; gap: 3px; color: var(--amber); flex: none; }
.hero__stars .icon { width: 13px; height: 13px; fill: currentColor; stroke: none; }
.hero__divider { height: 1px; background: rgba(251, 250, 247, 0.2); }
.hero__proof-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--paper); color: var(--navy);
  font-family: var(--font-label); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 9px 16px; border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hero__pill .icon { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.hero__pill:hover {
  color: var(--navy); transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(1, 6, 70, 0.45);
}
.hero__pill:hover .icon { transform: translateX(3px); }
.hero__proof-note { font-size: 0.75rem; color: rgba(251, 250, 247, 0.72); }

.hero__caption {
  display: flex; align-items: baseline; gap: 0.8rem;
  padding: 0.75rem 0.125rem 0.625rem;
}
.hero__caption::before {
  content: '';
  width: 1.6rem; height: 3px; flex: none; align-self: center;
  background: var(--sky);
}
.hero__caption p {
  font-family: var(--font-label); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* The authored moment: the journal opens — the feature photograph
   arrives from a clipped sheet and its shadow settles. */
@keyframes journal-open {
  from { clip-path: inset(6% 4% 6% 4%); opacity: 0; transform: translateY(10px); }
  to   { clip-path: inset(0 0 0 0); opacity: 1; transform: translateY(0); }
}
.hero__mat { animation: journal-open 0.9s var(--ease) 0.15s both; }

/* ---- Method band (pale sky, horizontal process) --------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  position: relative;
}
.step__node {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sky);
  color: var(--navy);
  font-family: var(--font-display); font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.step__meta {
  font-family: var(--font-label); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sky-ink);
  margin: 0 0 0.5rem;
}
.step__out {
  border-top: 1px solid var(--line-soft);
  margin-top: 1.1rem; padding-top: 1rem;
  font-size: 0.95rem; color: var(--muted);
}
.step__out strong {
  display: block;
  font-family: var(--font-label); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

/* ---- Feature splits (two paths / coaching vs mentoring) -------------------------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  column-gap: clamp(2.5rem, 5vw, 4.5rem);
}
.split--rev { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.split + .split { margin-top: clamp(2.5rem, 6vw, 4.5rem); }

.split__media { position: relative; }
.split__media img {
  border-radius: var(--radius-card);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-rest);
  width: 100%;
  object-fit: cover;
}
.split__media--tall img { aspect-ratio: 4 / 5; }

.tick-list, .check-list {
  list-style: none; margin: 1.2rem 0 1.6rem; padding: 0;
}
.tick-list li, .check-list li {
  display: flex; align-items: baseline; gap: 0.7em;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.tick-list li:last-child, .check-list li:last-child { border-bottom: none; }
.tick-list .icon { color: var(--sky); flex: none; transform: translateY(0.14em); }
.check-list .icon { color: var(--sky); flex: none; transform: translateY(0.14em); }

/* ---- Why choose us (Pencil "Why Section" + house split grammar) -----------------
   Two columns on wide viewports — text beside the unified Delft scene —
   and the hero's stacking pattern below 74rem: text first, photo under it. */
.why__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  column-gap: clamp(2.5rem, 5vw, 4.5rem);
}
.why__head { margin-bottom: clamp(1.2rem, 2.5vw, 1.8rem); }
.why__text { max-width: 46.75rem; }
.why__checks { margin: 1.2rem 0 0; }
.why__checks li { border-bottom: none; padding: 0.55rem 0; }

.why-media {
  position: relative;
  margin: 0;
  border-radius: var(--radius-card);
  border: 2px solid var(--line-soft);
  box-shadow: var(--shadow-rest);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.why-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.why-media__tint {
  position: absolute; inset: 0;
  background: linear-gradient(56.5deg,
    rgba(10, 22, 78, 0.62) 14.6%,
    rgba(44, 99, 152, 0.35) 44.3%,
    rgba(44, 99, 152, 0) 85.4%);
}
.why-media__chips {
  position: absolute; top: 1.4rem; left: 1.4rem; right: 1.4rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
}
.why-media__chip {
  background: rgba(251, 250, 247, 0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--navy);
  font-family: var(--font-label); font-weight: 700; font-size: 0.6875rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
@media (hover: hover) {
  .why-media:hover img { transform: scale(1.025); }
}

/* ---- Coaching vs Mentoring panels (Pencil "Offer Section — Option C Crop") ------ */

.offer-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.2rem);
  margin-top: clamp(2rem, 4.5vw, 3.2rem);
}
.offer {
  background: var(--white);
  border: 2px solid var(--line-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-rest);
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.offer__media { position: relative; overflow: hidden; }
.offer__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.offer__kind {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  background: var(--navy);
  color: var(--paper);
  font-family: var(--font-label); font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-control);
}
.offer__body { padding: clamp(1.5rem, 2.6vw, 1.8rem); display: flex; flex-direction: column; flex: 1; }
.offer__body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.9vw, 1.375rem);
  line-height: 1.24;
  color: var(--ink);
}
.offer__body p { color: var(--muted); }
.offer__body .link-arrow { margin-top: auto; align-self: flex-start; }
@media (hover: hover) {
  .offer:hover { transform: translateY(-4px); box-shadow: var(--shadow-raise); border-color: rgba(10, 22, 78, 0.16); }
  .offer:hover .offer__media img { transform: scale(1.04); }
}

/* Services list — two-column check grid (Pencil tick grid) */
.svc-head {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.9vw, 1.375rem);
  color: var(--ink);
  margin: 0;
}
.svc-grid {
  list-style: none; margin: 0; padding: 1.2rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 4.5vw, 2.9375rem);
}
.svc-grid li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.55rem 0;
  color: var(--ink);
}
.svc-grid .icon { color: var(--sky); flex: none; }

.services {
  margin-top: clamp(2.2rem, 5vw, 3.2rem);
  padding-top: clamp(1.8rem, 4vw, 2.6rem);
  border-top: 1px solid var(--line);
}
.services h3 { margin-bottom: 0.6rem; }
.tick-list--cols { columns: 2; column-gap: clamp(1.5rem, 4vw, 3.5rem); }
.tick-list--cols li { break-inside: avoid; }

/* ---- Proof badges ---------------------------------------------------------------------- */

.proof {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(1rem, 3vw, 2.2rem);
}
.proof a, .proof span {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-label); font-weight: 600; font-size: 0.85rem;
  color: var(--sky-ink);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.15rem 0.55rem 0.6rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.proof .icon { color: var(--sky); width: 1.35em; height: 1.35em; }
.proof a:hover { border-color: var(--sky); transform: translateY(-2px); box-shadow: var(--shadow-rest); }

/* ---- Programs table ----------------------------------------------------------------------- */

.program-table-wrap { overflow-x: auto; }
.program-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-rest);
}
.program-table th, .program-table td {
  text-align: left;
  padding: 1.05rem 1.3rem;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.program-table thead th {
  background: var(--navy);
  color: var(--paper);
  font-family: var(--font-label); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: none;
}
.program-table tbody tr:nth-child(even) { background: var(--sky-band); }
.program-table tbody tr:last-child td { border-bottom: none; }
.program-table tbody tr:hover { background: var(--sky-pale); }
.program-table .p-name {
  font-family: var(--font-display); font-size: 1.15rem; color: var(--navy);
  white-space: nowrap;
}
.program-table .p-price {
  font-family: var(--font-label); font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--navy);
  white-space: nowrap;
}
.program-table .p-price small {
  display: block; font-weight: 400; font-size: 0.75rem;
  color: var(--muted); letter-spacing: 0.02em;
}
.program-table .p-for { color: var(--muted); font-size: 0.95rem; max-width: 34em; }
.programs-foot {
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---- Person passage ------------------------------------------------------------------------- */

.person {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  column-gap: clamp(2.5rem, 5vw, 4.5rem);
}
.person__photo { position: relative; }
.person__photo img {
  border-radius: var(--radius-card);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-rest);
  width: 100%;
}
.person__photo::after {
  content: '';
  position: absolute; inset: 1rem -1rem -1rem 1rem;
  border: 2px solid var(--sky-pale);
  border-radius: var(--radius-card);
  z-index: -1;
}
.person__badge {
  position: absolute; left: -1.2rem; bottom: 1.6rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-control);
  box-shadow: var(--shadow-raise);
  padding: 0.8rem 1.2rem;
  max-width: 240px;
}
.person__badge strong {
  display: block;
  font-family: var(--font-display); font-size: 1.4rem; color: var(--navy);
}
.person__badge { font-size: 0.85rem; color: var(--muted); }

/* ---- Insights ------------------------------------------------------------------------------ */

.insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.2rem);
}
.insight {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-rest);
  display: flex; flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.insight:hover { transform: translateY(-4px); box-shadow: var(--shadow-raise); }
.insight img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.insight__body { padding: clamp(1.2rem, 2vw, 1.5rem); display: flex; flex-direction: column; flex: 1; }
.insight__meta {
  font-family: var(--font-label); font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sky-ink);
  margin: 0 0 0.6rem;
}
.insight h3 { margin-bottom: 0.5rem; }
.insight h3 a { color: var(--navy); text-decoration: none; }
.insight h3 a:hover { color: var(--sky-ink); }
.insight p { color: var(--muted); font-size: 0.95rem; }

/* ---- CTA band ---------------------------------------------------------------------------------- */

.cta-band { text-align: center; }
.cta-band .eyebrow { display: inline-block; }
.cta-band .eyebrow::after { left: calc(50% - 1.5rem); }
.cta-band h2 { max-width: 20em; margin-inline: auto; }
.cta-band .lead { margin: 0 auto 2rem; }
.cta-band__actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-bottom: 1.8rem;
}
.cta-band__aside {
  font-family: var(--font-label); font-size: 0.82rem;
  color: rgba(251, 250, 247, 0.6);
}

/* ---- Footer ------------------------------------------------------------------------------------ */

.site-footer { background: var(--navy); color: rgba(251, 250, 247, 0.75); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(251, 250, 247, 0.14);
}
.footer__kvk { font-size: 0.9rem; line-height: 1.7; color: rgba(251, 250, 247, 0.6); }
.footer__heading {
  font-family: var(--font-label); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 1rem;
}
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: 0.55rem; }
.footer__list a {
  color: rgba(251, 250, 247, 0.75);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer__list a:hover { color: #8ec2e6; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(251, 250, 247, 0.3);
  border-radius: 50%;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer__social a:hover { border-color: #8ec2e6; transform: translateY(-2px); }
.footer__meta {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 2rem;
  padding-top: 1.6rem;
  font-size: 0.85rem;
  color: rgba(251, 250, 247, 0.5);
}
.footer__meta p { margin: 0; }

/* ---- Inner pages ---------------------------------------------------------------------------------- */

.breadcrumb {
  font-family: var(--font-label); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.4rem;
}
.breadcrumb a { color: var(--sky-ink); text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }

.page-hero { padding-block: clamp(3rem, 7vw, 5.5rem); }
.page-hero .split__title h1 { margin-bottom: 1rem; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.2rem);
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-rest);
  padding: clamp(1.5rem, 2.6vw, 2rem);
}
.pillar__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sky-pale);
  color: var(--sky-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.pillar__icon .icon { width: 1.45rem; height: 1.45rem; }
.pillar p { color: var(--muted); font-size: 0.98rem; }

.pillars--on-navy .pillar {
  background: rgba(251, 250, 247, 0.06);
  border-color: rgba(251, 250, 247, 0.16);
  box-shadow: none;
}
.pillars--on-navy .pillar__icon { background: rgba(78, 144, 201, 0.22); color: #9cc6e8; }
.pillars--on-navy .pillar p { color: rgba(251, 250, 247, 0.78); }

.phases { max-width: 46em; }
.phase {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 5fr);
  column-gap: clamp(1.5rem, 4vw, 3rem);
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.phase:first-child { padding-top: 0; }
.phase:last-child { border-bottom: none; padding-bottom: 0; }
.phase h3 { margin-bottom: 0.4rem; }
.phase p { color: var(--muted); margin: 0; }
.on-navy .phase { border-color: rgba(251, 250, 247, 0.16); }
.on-navy .phase p { color: rgba(251, 250, 247, 0.82); }

/* Phase rows as sky cards (Pencil "Approach Section — Blue Card Refinement"):
   Lato-bold title column, body set on a pale-sky card. */
.phases--sky { display: grid; gap: 1.8rem; max-width: none; }
.phases--sky .phase {
  padding: 0;
  border-bottom: none;
  align-items: center;
}
.phases--sky .phase h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.19rem);
  color: var(--ink);
  margin: 0;
}
.phases--sky .phase p {
  background: var(--sky-band);
  border-radius: 10px;
  padding: 1.375rem 1.625rem;
  color: var(--ink);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
@media (hover: hover) {
  .phases--sky .phase:hover p { background: var(--sky-pale); transform: translateY(-2px); }
}

/* Split display voice (Pencil section remakes): Lato 700 runs with a
   Playfair italic accent word — the inverse of the house Playfair heading. */
.h-split {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.1vw, 2.4rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h-split .accent-i { font-family: var(--font-display); font-weight: 400; }

/* Recognition index cards (Pencil "Variant B — Index Cards"):
   each original question becomes a white index card on an icon tile. */
.h-questions { font-weight: 700; font-size: clamp(1.55rem, 3vw, 2.125rem); }

.recog { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.875rem; }
.recog__card {
  display: flex; align-items: center; gap: 1.125rem;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-rest);
  outline: 1px solid var(--line-soft);
  outline-offset: -0.5px;
  padding: 1.2rem 1.375rem;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.recog__tile {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--sky-pale);
  color: var(--sky-deep);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.28s var(--ease), color 0.28s var(--ease);
}
.recog__tile .icon { width: 18px; height: 18px; }
.recog__q {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.19rem);
  line-height: 1.47;
  color: var(--navy);
}
@media (hover: hover) {
  .recog__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-raise); }
  .recog__card:hover .recog__tile { background: var(--sky-deep); color: var(--paper); }
}

.values-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 1rem;
}
.values-strip span {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--navy);
  padding: 0.35rem 0;
}
.values-strip span + span::before { content: '·'; color: var(--sky); margin-right: 1rem; }

.wide-figure { margin-top: clamp(2.5rem, 6vw, 4rem); }
.wide-figure img {
  width: 100%;
  border-radius: var(--radius-card);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-rest);
}
.wide-figure figcaption {
  font-family: var(--font-label); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.9rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.wide-figure figcaption::before {
  content: '';
  width: 1.6rem; height: 3px; flex: none;
  background: var(--sky);
}

/* ---- Flow map (bespoke diagram — "Coaching that moves with you") -----------
   A journal-card diagram: contour rings, a dotted sky path travelling from
   discovery to partnership, and three iconed stations along the way. */
.flowmap {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-rest);
  padding: clamp(0.75rem, 1.8vw, 1.25rem);
}
.flowmap svg { display: block; width: 100%; height: auto; }

.flowmap__ghost { stroke: var(--sky-pale); stroke-width: 2.5; }
.flowmap__path {
  stroke: var(--sky);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 0.5 9;
}
.flowmap__start { fill: var(--sky-pale); }
.flowmap__core { fill: var(--white); stroke: var(--sky); stroke-width: 2; }
.flowmap use { fill: none; stroke: var(--sky-deep); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.flowmap__kicker {
  font-family: var(--font-label); font-weight: 700; font-size: 10px;
  letter-spacing: 0.22em; fill: var(--muted);
}
.flowmap__numeral {
  font-family: var(--font-display); font-style: italic; font-size: 24px;
  fill: var(--sky);
}
.flowmap__title {
  font-family: var(--font-label); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.04em; fill: var(--ink);
}
.flowmap__sub { font-family: var(--font-body); font-size: 12px; fill: var(--muted); }

/* Choreography: the dots travel, the stations arrive in sequence.
   The whole diagram sits inside a [data-reveal] block, so .is-in fires it. */
@media (prefers-reduced-motion: no-preference) {
  .flowmap .flowmap__path {
    clip-path: inset(-25% 100% -25% -10%);
    transition: clip-path 1.5s var(--ease) 0.25s;
  }
  .flowmap .flowmap__start { opacity: 0; transition: opacity 0.4s var(--ease) 0.2s; }
  .flowmap__node {
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  }
  .is-in .flowmap .flowmap__path { clip-path: inset(-25% -10% -25% -10%); }
  .is-in .flowmap .flowmap__start { opacity: 1; }
  .is-in .flowmap__node--1 { opacity: 1; transform: none; transition-delay: 0.45s; }
  .is-in .flowmap__node--2 { opacity: 1; transform: none; transition-delay: 0.9s; }
  .is-in .flowmap__node--3 { opacity: 1; transform: none; transition-delay: 1.35s; }
}

@media (max-width: 48rem) {
  /* The diagram scales with its viewBox, so its type must grow with the
     shrink to stay legible on phones (labels land near 10px effective). */
  .flowmap__title { font-size: 17px; }
  .flowmap__sub { font-size: 15px; }
  .flowmap__numeral { font-size: 30px; }
  .flowmap__kicker { font-size: 13px; }
}
@media (max-width: 26rem) {
  .flowmap__title { font-size: 19px; }
  .flowmap__sub { font-size: 16.5px; }
}

/* ---- Reveal motion --------------------------------------------------------------------------------- */

[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

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

/* ---- Responsive ------------------------------------------------------------------------------------- */

@media (max-width: 74rem) {
  .hero__grid, .split, .split--rev, .person { grid-template-columns: 1fr; row-gap: 2.5rem; }
  .split--rev .split__media { order: 2; }
  .person__badge { left: 1rem; }
  /* Why band stacks like the hero: text first, photo below, wide crop */
  .why__grid { grid-template-columns: 1fr; row-gap: 2.5rem; }
  .why-media { aspect-ratio: 1098 / 725; }
}

@media (max-width: 62rem) {
  :root { --header-h: 76px; }
  .site-header__inner { flex-wrap: wrap; padding-block: 0.9rem; }
  .site-header__cta .btn { display: none; }
  .nav__toggle { display: block; position: relative; z-index: 60; }
  .nav__list {
    position: fixed; inset: 0;
    background: var(--navy);
    flex-direction: column; align-items: flex-start; gap: 0;
    width: 100%; margin: 0;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
    z-index: 50;
    padding: calc(var(--header-h) + 1.5rem) clamp(1.25rem, 5vw, 2.5rem) 2.5rem;
  }
  .nav[data-open="true"] .nav__list { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav__link {
    color: var(--paper);
    font-size: 1.3rem; font-weight: 400;
    font-family: var(--font-display);
    letter-spacing: 0;
    border-bottom: 1px solid rgba(251, 250, 247, 0.14);
    padding: 0.9rem 0;
    width: 100%;
    display: block;
  }
  .nav__link:hover, .nav__link[aria-current="page"] { color: #8ec2e6; border-color: rgba(251, 250, 247, 0.14); }
  .nav__caret { border-color: currentColor; }
  .nav__drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; border: none;
    min-width: 0; padding: 0 0 0.5rem 1rem;
    display: none;
  }
  .nav__item--has-drop[data-open] .nav__drop { display: block; }
  .nav__drop a { color: rgba(251, 250, 247, 0.8); font-size: 1rem; padding: 0.55rem 0.6rem; }
  .nav__drop a:hover { background: rgba(251, 250, 247, 0.08); color: #8ec2e6; }
  .drop-context { color: rgba(251, 250, 247, 0.55); }
  .nav__item--cta-mobile { margin-top: 1.5rem; }
  .nav__item--cta-mobile .btn { font-size: 1rem; }
  body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (min-width: 62.0625rem) {
  .nav__item--cta-mobile { display: none; }
}

@media (max-width: 48rem) {
  .steps { grid-template-columns: 1fr; }
  .offer-pair, .insights, .pillars { grid-template-columns: 1fr; }
  .tick-list--cols { columns: 1; }
  .svc-grid { grid-template-columns: 1fr; }
  .program-table th, .program-table td { padding: 0.85rem 0.9rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { gap: 1rem; }
  /* Flagship hero: give the proof overlay more vertical room, compact its furniture */
  .hero__shot { aspect-ratio: 4 / 3; }
  .hero__chips { top: 4.5%; gap: 0.4rem; }
  .hero__chip { font-size: 0.575rem; padding: 4px 8px; letter-spacing: 0.1em; }
  .hero__proof { gap: 0.6rem; bottom: 7%; }
  .hero__stat strong { font-size: 1.55rem; }
  .hero__stat-label small { font-size: 0.7rem; }
  .hero__pill { padding: 8px 13px; font-size: 0.7rem; }
  .hero__pill .icon { width: 12px; height: 12px; }
  .hero__proof-note { font-size: 0.7rem; }
  .phase { grid-template-columns: 1fr; row-gap: 0.4rem; }
  /* Why media band: taller crop, chips settle inward */
  .why-media { aspect-ratio: 4 / 3; }
  .why-media__chips { top: 1rem; left: 1rem; right: 1rem; }
}

@media (max-width: 26rem) {
  /* Very narrow screens: the wrapped proof block needs a taller frame,
     and the 3-line lockup needs a slightly smaller size to hold */
  .hero__shot { aspect-ratio: 1 / 1; }
  .hero__title { font-size: 1.875rem; }
  .why-media { aspect-ratio: 1 / 1; }
  .why-media__chips { justify-content: flex-start; }
  .recog__card { padding: 1rem 1.1rem; }
}
