/* =====================================================================
   Growth Guide v3 — style.css
   World: growthguide.nl's palette, type character, spacing rhythm and
   material feel, rebuilt with fresh discipline. Direction: The Method,
   Drawn (seed e5e136f6). The direction contract lives in index.html.
   ===================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --navy: #010646;
  --navy-2: #2f3c64;
  --cyan: #9defff;
  --cyan-deep: #7fe0ff;
  --cyan-soft: #caefef;
  --green: #9ae6b4;
  --blue: #188bf6;
  --blue-deep: #0a66c2;             /* text-link blue — #188bf6 is 3.7:1 on white, this clears 4.5:1 */
  --deep-blue: #1f299c;
  --ink: #000321;
  --muted: #646c77;
  --offwhite: #f6f6f6;
  --gray: #cbd5e0;                  /* the world's flat gray — idle rating stars */
  --rating-amber: #f6ad55;          /* deliberate exception: rating stars, carried from the incumbent site */
  --req-red: #e93d3d;               /* deliberate exception: required-field marker, carried from the incumbent site */
  --line: rgba(1, 6, 70, 0.12);
  --white: #ffffff;

  --grad-navy: linear-gradient(to right,
    #010646, #0a164e, #172356, #232f5d, #2f3c64);
  --grad-navy-diag: linear-gradient(to right top,
    #010646, #101c67, #20318a, #2c48af, #3660d6);

  --headline: 'Montserrat', system-ui, sans-serif;
  --body: 'Lato', system-ui, sans-serif;

  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --container: 1170px;
  --radius: 15px;
  --radius-sm: 8px;
  --shadow-rest: 0 2px 8px rgba(0, 3, 33, 0.07);
  --shadow-raise: 0 14px 34px rgba(0, 3, 33, 0.16);
  --ease: cubic-bezier(0.16, 0.84, 0.32, 1);
  --header-h: 106px;
}

/* ---------- 2. Fonts ---------- */
@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'); }
@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'); }
/* Playfair Display — the italic accent word of the Pencil section remakes */
@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'); }

/* ---------- 3. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { font-size: 100%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  caret-color: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }

a { color: var(--blue-deep); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--navy); }
.on-navy a { color: var(--cyan); }
/* Buttons inside navy sections keep their own contrast: the blanket
   .on-navy a rule above out-specifies .btn, which turned primary
   buttons into cyan-on-cyan. These restore the intended pairing. */
.on-navy .btn { color: var(--navy); }
.on-navy .btn--ghost { color: var(--white); }

ul, ol { list-style: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--cyan); color: var(--navy); }
.on-navy ::selection { background: var(--navy); color: var(--cyan); }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 2px; }
.on-navy :focus-visible { outline-color: var(--cyan); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  padding: var(--space-xs) var(--space-md);
  background: var(--navy); color: var(--white);
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- 4. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--headline);
  font-weight: 400;                 /* the world's display character: never bold */
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.015em;
  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.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); line-height: 1.22; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

p { max-width: 68ch; }
.on-navy p { color: rgba(255, 255, 255, 0.88); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); line-height: 1.6; }
.muted { color: var(--muted); }
.on-navy .muted { color: rgba(255, 255, 255, 0.66); }

strong, b { font-weight: 700; }
em { font-style: italic; }

/* Eyebrow + rule — signature world material for section marking */
.eyebrow {
  display: block;
  font-family: var(--headline);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy);
  max-width: none;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 3rem;
  border-top: 3px solid var(--deep-blue);
  margin-top: 10px;
}
.eyebrow--light { color: var(--cyan); }
.eyebrow--light::after { border-top-color: var(--cyan); }
.eyebrow--center { text-align: center; }
.eyebrow--center::after { margin-inline: auto; }
.on-navy .eyebrow { color: var(--cyan); }
.on-navy .eyebrow::after { border-top-color: var(--cyan); }

.section-head { margin-bottom: var(--space-xl); }
.section-head h2 { margin-top: var(--space-md); }
.section-head .lead { margin-top: var(--space-md); }
.section-head--center { text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head--center .eyebrow::after { margin-inline: auto; }

/* ---------- 5. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}
.section { padding-block: clamp(3.5rem, 9vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

.on-navy {
  background-image: var(--grad-navy);
  color: var(--white);
}
.on-navy h1, .on-navy h2, .on-navy h3, .on-navy h4 { color: var(--white); }
.on-navy ::selection { background: var(--cyan); color: var(--navy); }

.bg-off { background: var(--offwhite); }
.bg-cyan-soft { background: var(--cyan-soft); }

/* Frosted window — world material for cards on gradient/photo surfaces */
.frost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
}
.frost--light {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Two-column asymmetric band (world grammar: no gap; padding carries gutters) */
.band {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--space-xl);
  column-gap: 0;
  align-items: center;
}
.band > * + * { margin-top: 0; }
@media (min-width: 48.0625rem) {
  .band { grid-template-columns: 1fr 1fr; }
  .band--55-45 { grid-template-columns: 55fr 45fr; }
  .band--45-55 { grid-template-columns: 45fr 55fr; }
  .band--60-40 { grid-template-columns: 60fr 40fr; }
  .band--40-60 { grid-template-columns: 40fr 60fr; }
  .band > :first-child { padding-right: clamp(1.5rem, 4vw, 3.5rem); }
  .band > :last-child { padding-left: clamp(1.5rem, 4vw, 3.5rem); }
}
.band__text { display: flex; flex-direction: column; gap: var(--space-md); align-items: flex-start; }
.band__media img { width: 100%; border-radius: var(--radius); }

/* ---------- 6. Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--headline);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  background: var(--cyan);
  color: var(--navy);
  transition: background-color 0.25s ease, transform 0.25s var(--ease),
    box-shadow 0.25s ease;
}
.btn:hover { background: var(--cyan-deep); color: var(--navy); transform: translateY(-2px); }
.btn .icon { width: 1.1em; height: 1.1em; }

/* Ghost variant for navy surfaces */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); border-color: var(--cyan); }

/* Quiet text link with drawn underline */
.link-quiet {
  font-family: var(--headline);
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: var(--cyan);
  transition: text-decoration-color 0.25s ease, color 0.25s ease;
}
.link-quiet:hover { color: var(--deep-blue); text-decoration-color: var(--deep-blue); }
.on-navy .link-quiet { color: var(--white); text-decoration-color: var(--cyan); }
.on-navy .link-quiet:hover { color: var(--cyan); text-decoration-color: var(--cyan); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--headline);
  font-weight: 600;
  color: var(--navy);
}
.link-arrow::after {
  content: "";
  width: 9px; height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.25s var(--ease);
}
.link-arrow:hover::after { transform: rotate(-45deg) translateX(3px); }
.on-navy .link-arrow { color: var(--cyan); }

/* ---------- 7. Header ---------- */
.site-header {
  position: relative;
  z-index: 99;
  background-image: var(--grad-navy);
  color: var(--white);
}
@media (min-width: 62.0625rem) { .site-header { position: sticky; top: 0; } }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-h);
  padding-block: var(--space-xs);
}
.site-header__logo img { width: 218px; height: auto; }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 1.9rem);
}
.nav__item--cta-mobile { display: none; }
.nav__link {
  font-family: var(--headline);
  font-weight: 300;
  font-size: 1rem;
  color: var(--white);
  padding: 0.5rem 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav__link:hover { color: var(--cyan); }
.nav__link[aria-current="page"] { color: var(--cyan); }

.nav__item { position: relative; }
.nav__drop {
  position: absolute;
  top: calc(100% + 6px);
  left: -12px;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 34px rgba(0, 3, 33, 0.18);
  padding: var(--space-xs) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease), visibility 0.25s;
}
.nav__item:hover .nav__drop,
.nav__item:focus-within .nav__drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__drop a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-family: var(--headline);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--navy);
}
.nav__drop a:hover { background: var(--offwhite); color: var(--deep-blue); }
.nav__drop .drop-context {
  display: block;
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.nav__caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  font-family: var(--headline);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  border: 1.5px solid rgba(157, 239, 255, 0.6);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.65rem;
  letter-spacing: 0.04em;
}
.lang-toggle:hover { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.lang-toggle .sep { opacity: 0.5; margin-inline: 0.15rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
}
.nav__toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

/* Mobile: two-row header + full-screen navy menu (world behaviour) */
@media (max-width: 62rem) {
  .site-header__inner { flex-wrap: wrap; align-items: flex-start; row-gap: var(--space-xs); }
  .site-header__logo { order: 1; }
  .site-header__logo img { width: 178px; }
  .nav { order: 2; margin-left: auto; }
  .nav__toggle { display: flex; }
  .site-header__cta { order: 3; flex-basis: 100%; }
  .site-header__cta .btn { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

  .nav__list {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
    background: var(--navy);
    padding: calc(var(--header-h) + var(--space-lg)) clamp(1.25rem, 6vw, 2.5rem);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
  }
  .nav[data-open="true"] .nav__list { transform: translateX(0); }
  .nav__list > .nav__item > .nav__link { font-size: 1.35rem; font-weight: 300; }
  .nav__item { width: 100%; }
  .nav__item--cta-mobile { display: block; margin-top: var(--space-lg); }
  .nav__item--cta-mobile .btn { font-size: 1.05rem; }
  .nav__drop {
    position: static;
    display: none;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent;
    border-radius: 0; padding: var(--space-sm) 0 0;
    margin-top: var(--space-xs);
  }
  .nav__item:hover .nav__drop { display: none; }
  .nav__item[data-open="true"] .nav__drop { display: block; }
  .nav__drop a { color: var(--white); font-size: 1.05rem; padding: 0.45rem 0; }
  .nav__drop .drop-context { color: rgba(255,255,255,0.6); }
  .nav__item[data-open="true"] > .nav__link { color: var(--cyan); }
  .nav__toggle { position: relative; z-index: 2; }
  .nav[data-open="true"] .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav[data-open="true"] .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav[data-open="true"] .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}
body.nav-open { overflow: hidden; }

/* ---------- 8. Home hero ---------- */
.hero {
  position: relative;
  background-image: var(--grad-navy);
  color: var(--white);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--space-2xl);
  padding-block: clamp(3rem, 7vw, 5.5rem);
  align-items: center;
}
@media (min-width: 62rem) {
  .hero__grid { grid-template-columns: 55fr 45fr; column-gap: clamp(2rem, 5vw, 4.5rem); }
}
.hero__text { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-lg); }
.hero__text h1 { color: var(--white); }
.hero__text .lead { color: rgba(255, 255, 255, 0.88); max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; margin-top: var(--space-xs); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-lg);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: var(--space-sm);
}
.hero__meta li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__meta .icon { width: 15px; height: 15px; color: var(--cyan); }

/* Signature: the trajectory diagram panel */
.hero__diagram { position: relative; }
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(1,6,70,0.55), rgba(1,6,70,0.88));
}
.trajectory-panel {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 2.4rem);
}
.trajectory-panel__cap {
  font-family: var(--headline);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--cyan);
  margin-bottom: var(--space-md);
}
.traj { display: flex; flex-direction: column; }
.traj__step {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: var(--space-md);
  align-items: start;
}
.traj__node {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(157, 239, 255, 0.55);
  color: var(--cyan);
  font-family: var(--headline);
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  background: rgba(1, 6, 70, 0.35);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, color 0.4s ease;
}
.traj__step.is-lit .traj__node {
  border-color: var(--cyan);
  box-shadow: 0 0 0 5px rgba(157, 239, 255, 0.14);
}
.traj__connector {
  width: 2px;
  height: clamp(20px, 3.5vh, 34px);
  margin-left: 22px;
  background: rgba(157, 239, 255, 0.28);
  position: relative;
  overflow: hidden;
}
.traj__connector::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.traj__step.is-lit + .traj__connector::after,
.traj__connector.is-lit::after { transform: scaleY(1); }
.traj__body { padding-top: var(--space-2xs); }
.traj__title { font-family: var(--headline); font-weight: 600; color: var(--white); font-size: 1.02rem; }
.traj__meta {
  font-family: var(--headline);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--cyan);
  margin-top: 2px;
}
.traj__desc { font-size: 0.9rem; color: rgba(255, 255, 255, 0.78); margin-top: 0.35rem; max-width: 30ch; }

/* ---------- 9. Trajectory band (full page section) ---------- */
.traj-band { position: relative; }
.traj-band .section-head { position: relative; z-index: 1; }
.traj-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}
@media (min-width: 48rem) { .traj-cards { grid-template-columns: repeat(3, 1fr); } }
.traj-card {
  padding: clamp(1.4rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
}
.traj-card__num {
  font-family: var(--headline);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--cyan);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
}
.traj-card h3 { color: var(--white); }
.traj-card p { font-size: 0.97rem; color: rgba(255, 255, 255, 0.85); }
.traj-card__out {
  font-size: 0.85rem;
  color: var(--cyan);
  border-top: 1px solid rgba(157, 239, 255, 0.3);
  padding-top: var(--space-sm);
  width: 100%;
}
.traj-card__out strong { font-family: var(--headline); font-weight: 600; color: var(--white); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 2px; }

/* ---------- 10. Doors (audience fork) ---------- */
.doors {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 48rem) { .doors { grid-template-columns: 1fr 1fr; } }
.door {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-rest);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.door:hover { transform: translateY(-4px); box-shadow: var(--shadow-raise); }
.door__media { position: relative; }
.door__media img { width: 100%; height: 230px; object-fit: cover; }
.door__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(1, 6, 70, 0.55), transparent 55%);
}
.door__body {
  padding: var(--space-lg) clamp(1.25rem, 2.5vw, 1.9rem) clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-start;
  flex: 1;
}
.door__body h3 { margin-top: var(--space-2xs); }
.door ul { display: grid; gap: 0.45rem; }
.door li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.door li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--cyan);
  border: 2px solid var(--deep-blue);
}
.door .link-arrow { margin-top: auto; padding-top: var(--space-sm); }

/* ---------- 11. Proof chips ---------- */
.proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
}
.proof a, .proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--headline);
  font-weight: 400;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  transition: border-color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.proof a:hover { border-color: var(--deep-blue); transform: translateY(-2px); box-shadow: var(--shadow-rest); }
.proof .icon { width: 15px; height: 15px; color: var(--deep-blue); }

/* ---------- 12. Programs (Pencil "Programs Section Remake") ---------- */
.bg-sky { background: #e7f0f9; }
.bg-paper { background: #fbfaf7; }

/* Split display voice (Pencil remakes): Lato 700 runs + Playfair italic accent */
.h-split {
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #1c2433;
  margin: var(--space-md) 0 0;
}
.h-split .accent-i {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #4e90c9;
}

.programs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 48rem) { .programs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .programs { grid-template-columns: repeat(4, 1fr); } }
.program {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(10, 22, 78, 0.07);
  outline: 1px solid rgba(10, 22, 78, 0.08);
  outline-offset: -0.5px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.program:hover { transform: translateY(-4px); box-shadow: var(--shadow-raise); }
.program__name {
  align-self: flex-start;
  font-family: var(--headline);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fbfaf7;
  background: var(--navy);
  border-radius: 999px;
  padding: 6px 14px;
}
.program__price {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.016em;
  line-height: 1.05;
  color: var(--navy);
  margin: 0;
}
.program__price small {
  display: block;
  font-family: var(--headline);
  font-weight: 600;
  font-size: 0.78125rem;
  letter-spacing: 0.05em;
  color: #5c6e82;
  margin: 3px 0 0;
}
.program__sessions { font-size: 0.8125rem; color: #5c6e82; }
.program p { font-size: 0.875rem; color: #1c2433; }
.program .person__facts { gap: 0.6rem; margin: 0; }
.program .person__facts li { font-size: 0.845rem; line-height: 1.45; }
.program .person__facts .icon { color: #4e90c9; }
.program .link-arrow { margin-top: auto; padding-top: var(--space-sm); font-size: 0.92rem; }
.programs-foot {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- 13. Person passage ---------- */
.person { display: grid; grid-template-columns: 1fr; row-gap: var(--space-xl); align-items: center; }
@media (min-width: 48.0625rem) {
  .person { grid-template-columns: 40fr 60fr; column-gap: clamp(2rem, 5vw, 4.5rem); }
}
.person__photo { position: relative; max-width: 420px; }
.person__photo img { border-radius: var(--radius); width: 100%; }
.person__photo::after {
  content: "";
  position: absolute;
  inset: var(--space-md) calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) var(--space-md);
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  z-index: -1;
}
.person__badge {
  position: absolute;
  right: calc(-1 * var(--space-sm));
  bottom: var(--space-lg);
  background: var(--navy);
  color: var(--white);
  font-family: var(--headline);
  font-size: 0.8rem;
  font-weight: 400;
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.9rem;
  box-shadow: var(--shadow-raise);
}
.person__badge strong { font-weight: 600; color: var(--cyan); }
.person__text { display: flex; flex-direction: column; gap: var(--space-md); align-items: flex-start; }
.person__facts { display: grid; gap: var(--space-xs); margin-top: var(--space-xs); }
.person__facts li { display: flex; gap: 0.6rem; align-items: baseline; font-size: 0.97rem; }
.person__facts .icon { width: 14px; height: 14px; flex: none; transform: translateY(2px); color: var(--deep-blue); }

/* ---------- 14. Insights ---------- */
.insights { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 48rem) { .insights { grid-template-columns: repeat(3, 1fr); } }
.insight {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-rest);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.insight:hover { transform: translateY(-4px); box-shadow: var(--shadow-raise); }
.insight img { width: 100%; height: 168px; object-fit: cover; }
.insight__body { padding: var(--space-md) var(--space-md) var(--space-lg); display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.insight__meta { font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; font-family: var(--headline); font-weight: 600; color: var(--deep-blue); }
.insight h3 { font-size: 1.08rem; line-height: 1.35; }
.insight h3 a { color: inherit; }
.insight h3 a:hover { color: var(--deep-blue); }
.insight p { font-size: 0.9rem; color: var(--muted); }

/* ---------- 15. CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .eyebrow::after { margin-inline: auto; }
.cta-band h2 { max-width: 22ch; margin-inline: auto; }
.cta-band .lead { margin: var(--space-md) auto 0; max-width: 52ch; }
.cta-band__actions {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--space-md); margin-top: var(--space-xl);
}
.cta-band__aside { margin-top: var(--space-lg); font-size: 0.9rem; color: rgba(255,255,255,0.66); }

/* ---------- 16. Footer ---------- */
.site-footer {
  background-image: var(--grad-navy);
  color: var(--white);
  padding-block: clamp(2.5rem, 6vw, 4rem) var(--space-lg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 48rem) {
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; }
}
.footer__brand { display: flex; flex-direction: column; gap: var(--space-sm); align-items: flex-start; }
.footer__brand img { width: 96px; }
.footer__kvk { font-size: 0.85rem; color: rgba(255, 255, 255, 0.66); }
.footer__heading {
  font-family: var(--headline);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.footer__list li { margin-bottom: var(--space-xs); }
.footer__list a, .footer__list span { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; }
.footer__list a:hover { color: var(--cyan); }
.footer__social { display: flex; gap: var(--space-md); margin-top: var(--space-sm); }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.footer__social a:hover { border-color: var(--cyan); background: rgba(157, 239, 255, 0.12); }
.footer__social img { width: 17px; height: 17px; filter: invert(1); }
.footer__meta {
  display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-lg);
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.66);
}

/* ---------- 17. Interior page hero ---------- */
.page-hero {
  background-image: var(--grad-navy);
  color: var(--white);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.page-hero .band__text { gap: var(--space-md); }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255, 255, 255, 0.88); }
.page-hero__media img { border-radius: var(--radius); }
.breadcrumb {
  font-family: var(--headline);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a { color: var(--cyan); }
.breadcrumb a:hover { color: var(--white); }

/* ---------- 18. Pillar rows (audience pages) ---------- */
.pillars { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 48rem) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-rest);
  display: flex; flex-direction: column; gap: var(--space-sm);
}
.pillar h3 { font-size: 1.12rem; }
.pillar p { font-size: 0.95rem; }
.pillar__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--cyan-soft);
  display: flex; align-items: center; justify-content: center;
}
.pillar__icon .icon { width: 22px; height: 22px; color: var(--deep-blue); }

/* Question list — recognizable pains as quoted lines */
.q-list { display: grid; gap: 0.95rem; max-width: 72ch; }
.q-list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 1.02rem;
  line-height: 1.55;
}
.q-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 9px; height: 9px;
  border-radius: 2px;
  background: var(--cyan);
  border: 2px solid var(--deep-blue);
}
.q-list--dark li::before { background: var(--cyan); border-color: var(--cyan); }

/* Numbered method phases (audience pages) */
.phases { display: grid; gap: var(--space-xl); counter-reset: phase; }
.phase { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 48rem) {
  .phase { grid-template-columns: 64px 1fr; column-gap: var(--space-md); }
}
.phase::before {
  counter-increment: phase;
  content: "0" counter(phase);
  font-family: var(--headline);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cyan);
  -webkit-text-stroke: 1px var(--deep-blue);
  line-height: 1.1;
}
.phase h3 { font-size: 1.15rem; }
.phase p { font-size: 0.97rem; color: var(--ink); }

/* ---------- 19. Pricing ---------- */
/* Choose head: tick + eyebrow row, then the split heading (Pencil remake) */
.choose-head { display: flex; align-items: center; gap: 0.75rem; }
.choose-head__tick { width: 26px; height: 3px; background: #4e90c9; }
.choose-head__eyebrow {
  font-family: var(--headline);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #275f92;
  margin: 0;
}

/* Matcher cards (Pencil "Choose Section Remake"): numbered sky tiles */
.choose-cards { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 48rem) { .choose-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) {
  .choose-cards { grid-template-columns: repeat(4, 1fr); }
  .choose-card { min-height: 290px; }
}
.choose-card {
  background: #e7f0f9;
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.choose-card h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0;
}
.choose-card p { font-size: 0.9375rem; line-height: 1.67; color: #1c2433; max-width: none; }
.choose-card__num {
  font-family: var(--headline);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #2c6398;
}
.choose-card__tick {
  display: block;
  width: 22px; height: 2px;
  background: #7ab3dd;
  transition: width 0.3s var(--ease);
}
.choose-card:hover {
  background: #dceaf6;
  transform: translateY(-3px);
  box-shadow: 0 2px 10px rgba(10, 22, 78, 0.07);
}
.choose-card:hover .choose-card__tick { width: 34px; }

.compare { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-rest); }
.compare table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--white);
  font-variant-numeric: tabular-nums;
}
.compare th, td { padding: 0.8rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--headline);
  font-weight: 400;
  font-size: 0.95rem;
}
.compare tbody th {
  font-family: var(--body);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
  white-space: nowrap;
}
.compare tbody td { font-size: 0.92rem; color: var(--ink); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:nth-child(even) { background: var(--offwhite); }
.pricing-notes { font-size: 0.85rem; color: #5c6e82; margin-top: var(--space-md); }

/* ---------- 20. FAQ ---------- */
.faq { display: grid; gap: var(--space-sm); }
.faq details {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 0 1.3rem;
}
.faq details[open] { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--headline);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 9px; height: 9px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq .faq__a {
  background: var(--white);
  color: var(--ink);
  margin: 0 -1.3rem;
  padding: 1rem 1.3rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* ---------- 21. Forms & contact ---------- */
.form { display: grid; gap: var(--space-md); }
.form__row { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
@media (min-width: 48rem) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__group { display: grid; gap: var(--space-2xs); }
.form__label {
  font-family: var(--headline);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
}
.form__label .req { color: var(--req-red); }
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(157, 239, 255, 0.45);
}
.form__textarea { min-height: 130px; resize: vertical; }
.form__note { font-size: 0.85rem; color: var(--muted); }
.form__sent {
  display: none;
  background: var(--cyan-soft);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  font-size: 0.95rem;
}
.form__sent.is-visible { display: block; }

.contact-cards { display: grid; gap: var(--space-md); }
.contact-card {
  display: flex; gap: var(--space-md); align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-rest);
  padding: var(--space-md) var(--space-lg);
}
.contact-card__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cyan-soft);
  display: flex; align-items: center; justify-content: center;
}
.contact-card__icon .icon { width: 20px; height: 20px; color: var(--deep-blue); }
.contact-card h3 { font-size: 1rem; }
.contact-card p, .contact-card a { font-size: 0.95rem; }

.map-figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-rest); }
.map-figure img { width: 100%; }

/* ---------- 22. Post template ---------- */
.post-hero { padding-block: clamp(2.5rem, 6vw, 4rem); }
.post-hero h1 { max-width: 24ch; }
.post-meta {
  display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-lg);
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.7);
  font-family: var(--headline); letter-spacing: 0.03em;
}
.post-meta .cat { color: var(--cyan); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.78rem; }
.post-body {
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 72ch;
  margin-inline: auto;
}
.post-body p { margin-bottom: var(--space-md); }
.post-body h2 { font-size: 1.6rem; margin: var(--space-xl) 0 var(--space-sm); }
.post-body h3 { font-size: 1.2rem; margin: var(--space-lg) 0 var(--space-xs); }
.post-body ul, .post-body ol { margin: 0 0 var(--space-md) 1.4rem; list-style: disc; max-width: 62ch; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 0.4rem; }
.post-body img { border-radius: var(--radius); margin: var(--space-lg) auto; }
.post-body blockquote {
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  padding: var(--space-md) var(--space-lg);
  font-style: italic;
  color: var(--deep-blue);
  margin: var(--space-lg) 0;
}
.post-body strong { font-weight: 700; }
.post-author {
  display: flex; gap: var(--space-md); align-items: center;
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-lg);
  max-width: 72ch; margin: var(--space-xl) auto 0;
}
.post-author img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.post-author p { font-size: 0.9rem; margin: 0; }

/* ---------- 23. Review widget page ---------- */
.rate-card {
  max-width: 640px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-raise);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.rate-stars { display: flex; flex-direction: row-reverse; justify-content: center; gap: var(--space-sm); }
.rate-stars input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.rate-stars label {
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: var(--gray);
  transition: color 0.15s ease, transform 0.15s ease;
}
.rate-stars label:hover, .rate-stars label:hover ~ label,
.rate-stars input:checked ~ label { color: var(--rating-amber); }
.rate-stars label:hover { transform: scale(1.12); }
.rate-progress {
  height: 6px;
  background: var(--offwhite);
  border-radius: 999px;
  overflow: hidden;
  margin-top: var(--space-lg);
}
.rate-progress__fill {
  height: 100%;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0.34);
  background-image: var(--grad-navy);
  border-radius: 999px;
  transition: transform 0.4s var(--ease);
}
.rate-nav { display: flex; justify-content: space-between; gap: var(--space-md); margin-top: var(--space-lg); }

/* ---------- 24. 404 ---------- */
.lost { text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.lost h1 {
  font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 400;                /* the world's display voice: never bold */
  color: var(--cyan);
  -webkit-text-stroke: 2px var(--deep-blue);
  line-height: 1;
}
.lost .btn { margin-top: var(--space-lg); }

/* ---------- 25. Icons & motion ---------- */
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.icon--solid { fill: currentColor; stroke: none; }

[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; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .traj__connector::after { transform: scaleY(1); }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
