/* Header, megamenu, knoppen, kaarten, formulieren, footer en pagina-secties */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: var(--white);
}

.header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 46px; width: auto; }

.nav {
  display: flex;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  height: 88px;
  align-items: stretch;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  position: relative;
  color: var(--white);
}

.nav-link:hover { color: var(--green); }

.nav-link .chevron { opacity: .7; flex-shrink: 0; }

.nav-link.is-open::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 3px;
  background: var(--green);
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mega {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 88px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 60px rgba(15, 42, 71, .25);
  border-top: 1px solid #E4E8EC;
}

.mega.is-open { display: block; }

.mega-grid {
  padding-top: 40px;
  padding-bottom: 48px;
  display: grid;
  gap: 48px;
}

.mega-opleiding { grid-template-columns: 1.1fr 1.1fr 1fr 1.3fr; }
.mega-3 { grid-template-columns: 1fr 1fr 1.3fr; }

.mega-col { display: flex; flex-direction: column; gap: 14px; }

.mega-label {
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mega-list { display: flex; flex-direction: column; gap: 2px; }

.mega-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin: 0 -12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}

.mega-link.stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.mega-link:hover { background: var(--ice); color: var(--ink); }

.mega-link .dur {
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.mega-note {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  padding-top: 8px;
}

.mega-feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius-card);
  background: var(--ice);
  color: var(--ink);
}

.mega-feature:hover { background: #E3EEF5; color: var(--ink); }

.mega-feature img.wide {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}

.mega-feature.intake {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.mega-coaching { align-items: stretch; }

.mega-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
}

.mega-aside .mega-feature.intake { flex: 1; }

.mega-aside .btn { width: 100%; flex-shrink: 0; }

.mega-feature.intake img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  background: var(--line);
}

.mega-feature.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
}

.mega-feature.duo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  background: var(--line);
}

.mega-kicker {
  font-weight: 600;
  font-size: 12px;
  color: var(--green-text);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mega-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy);
}

.mega-title.sm { font-size: 20px; }

.mega-sub {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.mega-go {
  font-weight: 600;
  font-size: 14px;
  color: var(--green-text);
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 72px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  background: rgba(8, 26, 46, .46);
  padding: 10px 12px 12px;
}

.nav-overlay.is-open { display: flex; justify-content: flex-end; align-items: flex-start; }

.nav-sheet {
  width: min(440px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(8, 26, 46, .28);
  overflow: hidden;
}

.nav-sheet-scroll {
  overflow: auto;
  min-height: 0;
  padding: 8px 8px 4px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.sheet-acc { border-bottom: 1px solid var(--line); }
.sheet-acc:first-child { border-top: 0; }

.sheet-acc summary,
.sheet-toplink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 14px 14px;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  list-style: none;
  cursor: pointer;
}

.sheet-acc summary::-webkit-details-marker { display: none; }

.sheet-acc summary .chevron {
  width: 12px;
  height: 12px;
  opacity: .55;
  transition: transform .2s ease;
}

.sheet-acc[open] summary .chevron { transform: rotate(180deg); }
.sheet-acc[open] summary { color: var(--green-text); }

.sheet-toplink { border-bottom: 1px solid var(--line); }
.nav-sheet-scroll > :last-child { border-bottom: 0; }
.sheet-toplink:hover,
.sheet-acc summary:hover { background: var(--ice); }

.sheet-acc-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 2px 6px 16px;
}

.sheet-group { display: flex; flex-direction: column; gap: 4px; }

.sheet-label {
  padding: 0 12px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.sheet-links { display: flex; flex-direction: column; gap: 2px; }

.sheet-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
}

.sheet-link:hover,
.sheet-link:active { background: var(--ice); color: var(--ink); }

.sheet-link-name { min-width: 0; }

.sheet-link-meta {
  flex-shrink: 0;
  max-width: 46%;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  text-align: right;
  color: var(--muted);
}

.sheet-feature {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 2px 4px 0;
  padding: 16px;
  border-radius: 16px;
  background: var(--ice);
  color: var(--ink);
}

.sheet-feature:hover { background: #E3EEF5; color: var(--ink); }

.sheet-feature-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--navy);
}

.sheet-feature-sub {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.sheet-feature.person {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
}

.sheet-feature.person img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.sheet-feature-copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }

.nav-sheet-foot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.nav-sheet-foot .btn,
.nav-sheet-foot .btn-outline { width: 100%; height: 48px; }
.nav-sheet-foot .btn-outline { gap: 14px; }

@media (prefers-reduced-motion: no-preference) {
  .nav-overlay.is-open .nav-sheet {
    animation: sheet-in .24s ease;
  }
}

@keyframes sheet-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

/* Knoppen */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 26px;
  background: var(--green);
  color: var(--navy);
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
}

.btn:hover { background: var(--green-hover); color: var(--navy); }

.btn-sm { height: 44px; padding: 0 22px; font-size: 14px; }
.btn-xs { height: 44px; padding: 0 18px; font-size: 14px; }
.btn-lg { height: 56px; padding: 0 36px; font-size: 17px; align-self: flex-start; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.btn-wa:hover { background: rgba(255, 255, 255, .08); color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, .4);
  color: var(--white);
  background: transparent;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
}

.btn-ghost:hover { background: rgba(255, 255, 255, .08); color: var(--white); }
.btn-ghost.soft { border-color: rgba(255, 255, 255, .5); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}

.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline.lg { height: 52px; padding: 0 26px; font-size: 16px; }

.btn-ice {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: var(--ice);
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  border: 0;
}

.btn-ice:hover { background: var(--green); color: var(--navy); }

.link-green {
  font-weight: 600;
  font-size: 15px;
  color: var(--green-text);
}

.link-green:hover { color: var(--green-text); }
.link-green.sm { font-size: 14px; }
.link-green.on-dark { color: var(--green); }
.link-green.on-dark:hover { color: var(--green); }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-row.end { justify-content: flex-end; }

/* Kaarten */
.card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  background: var(--ice);
  overflow: hidden;
  color: inherit;
}

.card:hover { background: #E3EEF5; color: inherit; }

.card .cover {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: var(--line);
}

.card .cover.blog {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  background: var(--ice);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 28px 28px;
  flex: 1;
}

.card-body.loose { gap: 14px; }

.tag {
  font-weight: 600;
  font-size: 12px;
  color: var(--green-text);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  color: var(--navy);
}

.card-title.md { font-size: 24px; }
.card-title.sm { font-size: 24px; line-height: 1.15; }

.card-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.pill {
  background: var(--navy);
  color: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 12px;
}

.price {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
}

.card-plain {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  min-height: 200px;
  color: inherit;
  background: var(--white);
}

.card-plain:hover { border-color: var(--navy); color: inherit; }

.card-quote {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--white);
}

.card-quote p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.45;
  color: var(--navy);
  flex: 1;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--ice);
}

/* Formulieren */
.form { display: flex; flex-direction: column; gap: 14px; }
.form-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row.addr { grid-template-columns: 1fr 1fr 2fr; }
.field {
  height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  width: 100%;
}
textarea.field { height: auto; padding: 12px 14px; resize: vertical; }
.field:focus { border-color: var(--navy); }
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.check.ink { font-size: 15px; color: var(--ink); }
.check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--navy); flex-shrink: 0; }
.choice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
}
.choice:hover { border-color: var(--navy); }
.choice.plain { justify-content: flex-start; }
.choice input { width: 18px; height: 18px; accent-color: var(--navy); flex-shrink: 0; margin-top: 2px; }
.choice span.name {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
  flex: 1;
}
.choice .price-mini {
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.form-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: 20px;
  background: var(--ice);
}
.form-panel.roomy { padding: 36px; }
.success {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
}
.success h2, .success .success-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--navy);
}
.success p { font-size: 16px; line-height: 1.55; color: var(--muted); }
.success-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 48px;
  border-radius: 20px;
  background: var(--ice);
}
.invoice-extra {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 14px;
  background: var(--ice);
}

/* Footer */
.footer { background: var(--navy); color: var(--line-strong); }
.footer-inner {
  padding-top: 72px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr 1.6fr;
  gap: 40px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { height: 40px; width: auto; align-self: flex-start; }
.footer-brand p { max-width: 280px; }
.footer h2, .footer .foot-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 6px;
}
.footer ul { display: flex; flex-direction: column; gap: 2px; }
.footer a:hover { color: var(--green); }
.news { display: flex; flex-direction: column; gap: 12px; }
.news p { color: var(--green); font-size: 15px; line-height: 1.5; }
.news-form { display: flex; flex-direction: column; gap: 8px; }
.news-row { display: flex; gap: 8px; }
.news-input {
  height: 44px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  font-size: 15px;
  outline: none;
  width: 100%;
  min-width: 0;
}
.news-input::placeholder { color: rgba(255, 255, 255, .55); }
.news-row .news-input { flex: 1; }
.news-form .btn { height: 44px; padding: 0 18px; border-radius: var(--radius-sm); font-size: 14px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 20px;
}
.footer-bottom span.social, .social { display: flex; flex-wrap: wrap; gap: 12px 20px; }

/* Home */
.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: visible;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .2;
  pointer-events: none;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 42, 71, .92) 0%, rgba(15, 42, 71, .55) 55%, rgba(15, 42, 71, .25) 100%),
    linear-gradient(180deg, rgba(15, 42, 71, .2) 0%, rgba(15, 42, 71, 0) 40%, rgba(15, 42, 71, .85) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  padding-top: 56px;
  padding-bottom: 240px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 560px;
}
.eyebrow {
  font-weight: 600;
  font-size: 13px;
  color: var(--green);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--green-text); font-size: 12px; }
.eyebrow.muted { color: var(--muted); font-size: 12px; }
.h-hero {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -.01em;
}
.lead {
  font-weight: 400;
  font-size: 21px;
  line-height: 1.45;
  color: var(--line-strong);
}
.trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}
.trust-link { display: flex; align-items: center; gap: 14px; color: inherit; }
.trust-link:hover { opacity: .9; color: inherit; }
.score {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green);
  color: var(--navy);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  flex-shrink: 0;
}
.score-copy { display: flex; flex-direction: column; gap: 3px; }
.stars { display: flex; gap: 2px; color: var(--green); font-size: 14px; letter-spacing: 1px; }
.score-copy strong { font-weight: 500; font-size: 14px; color: var(--white); }
.score-copy span { font-weight: 400; font-size: 12px; color: var(--line-strong); }
.trust-rule { width: 1px; height: 40px; background: rgba(255, 255, 255, .15); flex-shrink: 0; }
.next-start { display: flex; flex-direction: column; gap: 3px; font-weight: 400; font-size: 13px; color: var(--line-strong); }
.next-start b { font-weight: 600; font-size: 15px; color: var(--white); }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}
.video-poster {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  width: 100%;
}
.video-poster img { width: 100%; height: 100%; object-fit: cover; }
.video-poster .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 42, 71, 0) 40%, rgba(15, 42, 71, .75) 100%);
}
.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}
.play i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 28px;
  border-color: transparent transparent transparent var(--navy);
  margin-left: 6px;
}
.video-caption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-caption .eyebrow { font-size: 12px; }
.video-caption strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--white);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame.is-playing .video-poster { display: none; }

.section { padding-bottom: 96px; }
.section.tight-top { padding-top: 0; }
.features-band {
  position: relative;
  z-index: 4;
  margin-top: -156px;
  margin-bottom: 88px;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(8, 26, 46, .1);
  overflow: hidden;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 36px 40px 32px;
  color: inherit;
}
.feature + .feature { border-left: 1px solid var(--line); }
.feature:hover { background: var(--ice); color: inherit; }
.feature h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  color: var(--navy);
  min-height: 2.3em;
}
.feature p {
  flex: 1;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}
.feature span {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--green-text);
  transition: transform .2s ease;
}
.feature:hover span { transform: translateX(4px); }

.split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-copy { display: flex; flex-direction: column; gap: 22px; max-width: 660px; }
.h-display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  color: var(--navy);
}
.prose { font-size: 18px; line-height: 1.65; color: var(--ink); }
.prose.muted { color: var(--muted); }
.spreuk { width: 100%; height: auto; object-fit: contain; }

.block-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.stack { display: flex; flex-direction: column; }
.stack.gap-36 { gap: 36px; }
.stack.gap-28 { gap: 28px; }
.stack.gap-20 { gap: 20px; }
.stack.gap-16 { gap: 16px; }
.stack.gap-12 { gap: 12px; }
.stack.gap-8 { gap: 8px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-3.wide { gap: 28px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.band-ice { background: var(--ice); }
.band-navy { background: var(--navy); color: var(--white); }

/* Zachte golf tussen kleurvlak en wit, in de lijn van de huidige site */
.hero,
.page-hero,
.band-ice,
.band-navy,
.footer { position: relative; overflow-x: clip; }

.hero::after,
.page-hero::after,
.band-ice::before,
.band-ice::after,
.band-navy::before,
.band-navy::after,
.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 3;
  width: 168%;
  height: 40px;
  transform: translateX(-50%);
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.band-ice::before,
.band-navy::before,
.footer::before {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M421.9,6.5c22.6-2.5,51.5,0.4,75.5,5.3c23.6,4.9,70.9,23.5,100.5,35.7c75.8,32.2,133.7,44.5,192.6,49.7c23.6,2.1,48.7,3.5,103.4-2.5c54.7-6,106.2-25.6,106.2-25.6V0H0v30.3c0,0,72,32.6,158.4,30.5c39.2-0.7,92.8-6.7,134-22.4c21.2-8.1,52.2-18.2,79.7-24.2C399.3,7.9,411.6,7.5,421.9,6.5z'/%3E%3C/svg%3E");
}

.hero::after,
.page-hero::after,
.band-ice::after,
.band-navy::after {
  bottom: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M790.5,93.1c-59.3-5.3-116.8-18-192.6-50c-29.6-12.7-76.9-31-100.5-35.9c-23.6-4.9-52.6-7.8-75.5-5.3c-10.2,1.1-22.6,1.4-50.1,7.4c-27.2,6.3-58.2,16.6-79.4,24.7c-41.3,15.9-94.9,21.9-134,22.6C72,58.2,0,25.8,0,25.8V100h1000V65.3c0,0-51.5,19.4-106.2,25.7C839.5,97,814.1,95.2,790.5,93.1z'/%3E%3C/svg%3E");
}

.band-navy::before,
.band-ice::after { transform: translateX(-50%) scaleX(-1); }

.hero::after,
.band-navy::after,
.band-ice::after {
  bottom: auto;
  top: calc(100% - 1px);
  width: 100%;
  height: 36px;
  transform: translateX(-50%);
}

.band-ice::after,
.band-navy::after { height: 32px; }

.band-ice.wave-soft::after { height: 18px; }

.hero::after,
.band-navy::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='%230F2A47' d='M0,0 C220,0 280,100 500,100 C720,100 780,0 1000,0 Z'/%3E%3C/svg%3E");
}

.band-ice::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='%23EEF5F9' d='M0,0 C220,0 280,100 500,100 C720,100 780,0 1000,0 Z'/%3E%3C/svg%3E");
}

.page-hero::after {
  bottom: auto;
  top: calc(100% - 1px);
  width: 100%;
  height: 28px;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath fill='%230F2A47' d='M0,0 C220,0 280,100 500,100 C720,100 780,0 1000,0 Z'/%3E%3C/svg%3E");
}

.nlp-grid {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nlp-copy { display: flex; flex-direction: column; gap: 24px; max-width: 560px; }
.def-list { display: flex; flex-direction: column; border-top: 2px solid var(--navy); }
.def-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.def-list.compact li { grid-template-columns: minmax(140px, max-content) 1fr; gap: 24px; padding: 22px 0; }
.def-list .term {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: var(--green-text);
}
.def-list.compact .term { font-size: 30px; line-height: 1; }
.def-list p { font-size: 16px; line-height: 1.55; color: var(--ink); }

.team-grid {
  padding-top: 148px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.portraits { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.portrait {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: inherit;
}
.portrait.offset { margin-top: 48px; }
.portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-card);
  background: var(--line);
}
.portrait strong { font-weight: 600; font-size: 16px; }
.portrait span { font-weight: 400; font-size: 14px; color: var(--muted); margin-top: -8px; }
.team-copy { display: flex; flex-direction: column; gap: 24px; max-width: 520px; }

.stories {
  padding-top: 96px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story { display: flex; flex-direction: column; gap: 24px; }
.quote-mark {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 72px;
  line-height: .6;
  color: var(--green);
}
.quote-mark.sm { font-size: 48px; line-height: .5; }
.quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.25;
  color: var(--white);
}
.person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.person.sm { gap: 12px; }
.person.sm img { width: 44px; height: 44px; }
.person strong { font-weight: 600; font-size: 16px; display: block; }
.person.sm strong { font-size: 15px; }
.person span { font-weight: 400; font-size: 14px; color: var(--line-strong); }
.person.dark span { color: var(--muted); }
.dots { display: flex; gap: 8px; padding-top: 8px; }
.dots button {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  border: 0;
  background: rgba(255, 255, 255, .3);
  padding: 0;
  transition: all .2s;
}
.dots button.is-active { width: 28px; background: var(--green); }
.story-links { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
}
.chip:hover { background: rgba(255, 255, 255, .08); color: var(--white); }
.chip i { color: var(--green); font-style: normal; }
.hero-grid > *,
.split > *,
.stories > *,
.agenda-home > *,
.why > *,
.support > *,
.cta-ice > *,
.cta-navy > *,
.footer-grid > *,
.nlp-grid > *,
.team-grid > *,
.about-intro > *,
.about-mission > *,
.course-layout > *,
.coach-layout > *,
.signup-layout > *,
.agenda-layout > *,
.contact-layout > *,
.info-layout > *,
.nlp-layout > * { min-width: 0; }

.clients { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.logo-carousel { display: flex; flex-direction: column; gap: 16px; min-width: 0; width: 100%; }
.logo-viewport { overflow: hidden; min-width: 0; width: 100%; }
.logo-track { display: flex; transition: transform .45s ease; }
.logo-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.logo-tile {
  height: 196px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  overflow: hidden;
}
.logo-tile img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.logo-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 2px;
}
.logo-arrow:hover { background: rgba(255, 255, 255, .08); border-color: var(--green); color: var(--green); }
.logo-dots { display: flex; gap: 8px; align-items: center; }
.logo-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .3);
  transition: all .2s;
}
.logo-dots button.is-active { width: 28px; background: var(--green); }
@media (prefers-reduced-motion: reduce) {
  .logo-track { transition: none; }
}

.agenda-home {
  padding-top: 148px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
}
.agenda-intro { display: flex; flex-direction: column; gap: 16px; }
.agenda-intro p, .muted { color: var(--muted); }
.agenda-list { display: flex; flex-direction: column; border-top: 2px solid var(--navy); }
.agenda-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.agenda-row time { font-weight: 600; font-size: 15px; color: var(--navy); }
.agenda-row a.name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--navy);
}
.agenda-row a.name:hover { color: var(--green-text); }

.why {
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.why-copy { display: flex; flex-direction: column; gap: 20px; }
.why-copy .note { font-size: 15px; color: var(--muted); font-style: italic; }
.bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}
.bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.bullets.plain { display: flex; flex-direction: column; gap: 10px; }
.bullets.plain li { font-size: 17px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 8px;
  flex-shrink: 0;
}
.bullets.plain .dot { margin-top: 9px; }

.support {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.support-copy { display: flex; flex-direction: column; gap: 16px; }
.contact-line { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 4px; }
.contact-line a { font-weight: 600; font-size: 16px; color: var(--green-text); }

.cta-pad { padding-top: 148px; padding-bottom: 96px; }
.cta-ice {
  padding: 64px;
  border-radius: 24px;
  background: var(--ice);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-ice .copy, .cta-navy .copy { display: flex; flex-direction: column; gap: 20px; }
.cta-navy .copy { gap: 14px; }
.cta-pad.sub { padding-top: 0; padding-bottom: 80px; }
.cta-navy {
  padding: 56px 64px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-navy h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1.1;
}
.cta-navy p { font-size: 17px; line-height: 1.55; color: var(--line-strong); }

.certs {
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.certs-row {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.certs-row img { height: 140px; width: auto; object-fit: contain; }
.certs-row.sm img { height: 120px; }
.certs .blurb {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 680px;
  text-align: center;
}

/* Subpagina's */
.page-hero {
  overflow-x: clip;
  background: var(--navy) url("../assets/header-zeilboot-kieskoers-nlp-opleidingscentrum.jpg") center 40% / cover no-repeat;
  color: var(--white);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 42, 71, .92) 0%, rgba(15, 42, 71, .55) 55%, rgba(15, 42, 71, .25) 100%),
    linear-gradient(180deg, rgba(15, 42, 71, .2) 0%, rgba(15, 42, 71, 0) 40%, rgba(15, 42, 71, .85) 100%),
    rgba(15, 42, 71, .8);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 44px;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.crumb { font-weight: 500; font-size: 13px; color: var(--green); }
.h-page {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -.01em;
  max-width: 860px;
}
.page-lead {
  font-size: 20px;
  line-height: 1.45;
  color: var(--line-strong);
  max-width: 720px;
}
.page { padding-top: 72px; padding-bottom: 96px; display: flex; flex-direction: column; gap: 64px; }

.facts-wrap { margin-top: -32px; position: relative; z-index: 4; }
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 40px rgba(15, 42, 71, .12);
}
.facts div {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid #E4E8EC;
}
.facts div:last-child { border-right: 0; }
.facts span { font-size: 13px; color: var(--muted); }
.facts strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  color: var(--navy);
}

.course-layout, .coach-layout, .signup-layout, .agenda-layout {
  padding-top: 64px;
  padding-bottom: 96px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.coach-layout, .contact-layout, .nlp-layout, .info-layout {
  display: grid;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 96px;
}
.signup-layout { grid-template-columns: 1fr 380px; padding-top: 72px; }
.agenda-layout { grid-template-columns: 1fr 2fr; padding-top: 72px; }
.contact-layout { grid-template-columns: 1fr 1.2fr; gap: 80px; }
.info-layout { grid-template-columns: 1fr 480px; gap: 80px; }
.nlp-layout { grid-template-columns: 1fr 1fr; gap: 80px; }

.course-main { display: flex; flex-direction: column; gap: 56px; min-width: 0; }
.course-main .hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-card);
  background: var(--line);
}
.narrow { max-width: 720px; display: flex; flex-direction: column; gap: 16px; }
.h-section {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.15;
  color: var(--navy);
}
.h-section.sm { font-size: 32px; }
.h-section.xs { font-size: 28px; }

.modules { display: flex; flex-direction: column; border-top: 2px solid var(--navy); }
.modules li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.modules .n {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
  color: var(--green-text);
}
.modules strong { font-weight: 600; font-size: 17px; color: var(--ink); display: block; }
.modules p { font-size: 15px; line-height: 1.55; color: var(--muted); margin-top: 6px; }

.diplomas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diploma, .step {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: 14px;
  background: var(--ice);
}
.diploma .by, .step .n {
  font-weight: 600;
  font-size: 12px;
  color: var(--green-text);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.step .n {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.diploma strong, .step strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--navy);
}
.step strong { font-family: var(--font-sans); font-weight: 600; font-size: 16px; color: var(--ink); }
.diploma p, .step p { font-size: 14px; line-height: 1.5; color: var(--muted); }

.practical {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px;
  border-radius: 20px;
  background: var(--ice);
}
.practical h2 { margin-bottom: 18px; }
.kv { display: flex; flex-direction: column; border-top: 2px solid var(--navy); }
.kv li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.kv span { font-weight: 600; font-size: 13px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.kv b { font-weight: 400; font-size: 16px; line-height: 1.5; color: var(--ink); }
.side-block { display: flex; flex-direction: column; gap: 18px; }
.dates { display: flex; flex-direction: column; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line); }
.dates .row, .aside .date-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
}
.aside .date-row { font-size: 15px; }
.dates .note, .aside .note { color: var(--green-text); font-weight: 600; }

.faq { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq li { border-bottom: 1px solid var(--line); }
.faq button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: 0;
  text-align: left;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.faq button i {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  color: var(--green-text);
}
.faq p { font-size: 16px; line-height: 1.6; color: var(--muted); padding: 0 48px 20px 0; }

.aside {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--ice);
}
.aside .price-lg {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  color: var(--navy);
}
.aside .fine { font-size: 13px; color: var(--muted); }
.aside .block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.aside .wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  padding-top: 4px;
}
.aside .wa:hover { color: var(--navy); }
.aside .btn, .aside .btn-outline { width: 100%; }

.coach-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: stretch;
  border-radius: var(--radius-card);
  background: var(--ice);
  overflow: hidden;
  color: inherit;
}
.coach-card:hover { background: #E3EEF5; color: inherit; }
.coach-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  background: var(--line);
}
.coach-card .body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 32px 32px 0;
  justify-content: center;
}
.coach-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  color: var(--navy);
}
.coach-card p { font-size: 16px; line-height: 1.55; color: var(--muted); }

.coach-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
}
.coach-banner .who { display: flex; gap: 20px; align-items: center; }
.coach-banner img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  background: var(--line);
}
.coach-banner .who strong { font-family: var(--font-serif); font-weight: 500; font-size: 26px; display: block; }
.coach-banner .who span { font-size: 15px; color: var(--line-strong); }
.coach-banner .pitch { display: flex; flex-direction: column; gap: 16px; }
.coach-banner h2 { font-family: var(--font-serif); font-weight: 400; font-size: 32px; line-height: 1.2; }
.coach-banner p { font-size: 16px; line-height: 1.55; color: var(--line-strong); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.coach-main { display: flex; flex-direction: column; gap: 48px; max-width: 760px; }
.coach-main .body { font-size: 20px; line-height: 1.6; color: var(--ink); }
.aside .coach-mini { display: flex; gap: 14px; align-items: center; }
.aside .coach-mini img {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: top; background: var(--line);
}
.aside .meta-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.about-intro, .about-mission, .about-loc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-mission { grid-template-columns: 1fr 1.15fr; align-items: start; }
.about-intro img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  background: var(--line);
}
.values { display: flex; flex-direction: column; border-top: 2px solid var(--navy); }
.values li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.values strong {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: var(--green-text);
}
.values p { font-size: 16px; line-height: 1.55; }
.team-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { display: flex; flex-direction: column; gap: 12px; }
.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-card);
  background: var(--line);
}
.team-card strong { font-weight: 600; font-size: 19px; }
.team-card .role { font-size: 14px; color: var(--green-text); margin-top: -10px; }
.team-card p { font-size: 15px; line-height: 1.6; color: var(--muted); }
.team-card .quote-line {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.4;
  color: var(--navy);
  font-style: italic;
  padding-top: 4px;
}
.about-loc { background: var(--ice); border-radius: 24px; padding: 56px; }
.about-loc iframe, .map {
  width: 100%;
  aspect-ratio: 4/3;
  border: 0;
  border-radius: var(--radius-card);
}
.map.wide { aspect-ratio: 16/10; }
.addr { font-weight: 500; font-size: 16px; line-height: 1.6; color: var(--navy); }

.score-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 40px;
  border-radius: 20px;
  background: var(--ice);
}
.score.lg { width: 88px; height: 88px; border-radius: 20px; font-size: 40px; }
.stars.lg { font-size: 18px; letter-spacing: 2px; }
.score-banner h2 { font-family: var(--font-serif); font-weight: 500; font-size: 24px; color: var(--navy); }
.reviews-page { display: flex; flex-direction: column; gap: 56px; }

.agenda-full li {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.date-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: var(--ice);
}
.date-badge b {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: var(--navy);
}
.date-badge span {
  font-weight: 600;
  font-size: 12px;
  color: var(--green-text);
  text-transform: uppercase;
}
.agenda-full a.name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy);
}
.agenda-full a.name:hover { color: var(--green-text); }
.agenda-full .meta { font-size: 14px; color: var(--muted); display: block; margin-top: 4px; }
.sticky-col { position: sticky; top: 112px; display: flex; flex-direction: column; gap: 16px; }
.sticky-col h2 { font-family: var(--font-serif); font-weight: 400; font-size: 36px; line-height: 1.1; color: var(--navy); }

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 64px 96px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.article img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-card);
  background: var(--ice);
}
.article h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  color: var(--navy);
}
.article .excerpt { font-size: 20px; line-height: 1.6; font-style: italic; }
.article-date { font-size: 14px; color: var(--muted); margin-top: -16px; }
.article-body { display: flex; flex-direction: column; gap: 18px; }
.article-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.article-body em { color: var(--muted); }
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body a { color: var(--green-text); font-weight: 600; }
.article-body ul, .article-body ol { display: flex; flex-direction: column; gap: 8px; padding-left: 1.2em; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { font-size: 18px; line-height: 1.6; }

.nlp-copy-col { display: flex; flex-direction: column; gap: 28px; font-size: 18px; line-height: 1.65; }
.video-card {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card .dim { position: absolute; inset: 0; background: rgba(15, 42, 71, .35); }
.video-card .play { width: 72px; height: 72px; box-shadow: none; }
.video-card .play i { border-width: 13px 0 13px 22px; margin-left: 5px; }
.video-card em {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
}
.side-sticky { position: sticky; top: 112px; display: flex; flex-direction: column; gap: 24px; }
.ice-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--ice);
}
.ice-box h3 { font-family: var(--font-serif); font-weight: 500; font-size: 24px; line-height: 1.2; color: var(--navy); }
.ice-box p { font-size: 15px; line-height: 1.55; color: var(--muted); }

.info-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  border-radius: 14px;
  background: var(--ice);
}
.stat span { font-size: 13px; color: var(--muted); }
.stat strong { font-family: var(--font-serif); font-weight: 500; font-size: 20px; color: var(--navy); }
.info-copy { display: flex; flex-direction: column; gap: 28px; font-size: 18px; line-height: 1.65; max-width: 640px; }
.info-copy .emph { font-weight: 500; font-size: 17px; color: var(--navy); }

.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  color: inherit;
}
.contact-item:hover { color: var(--green-text); }
.contact-item .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item strong { font-weight: 600; font-size: 17px; display: block; }
.contact-item span { font-size: 14px; color: var(--muted); }
.contact-side { display: flex; flex-direction: column; gap: 36px; }
.visit { display: flex; flex-direction: column; gap: 12px; padding-top: 28px; border-top: 1px solid var(--line); }
.visit p { font-weight: 500; font-size: 17px; line-height: 1.6; color: var(--navy); }
.fine-muted { font-size: 14px; color: var(--muted); }

.form-section { display: flex; flex-direction: column; gap: 40px; }
.form-section h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--navy);
}
.signup-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.signup-fields { display: flex; flex-direction: column; gap: 18px; }
.hint { font-size: 13px; line-height: 1.5; color: var(--muted); }
.legal a { color: var(--green-text); font-weight: 600; text-decoration: underline; }
.aside ol { display: flex; flex-direction: column; gap: 14px; font-size: 15px; line-height: 1.5; }
.aside ol li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; }
.aside ol i {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: var(--green-text);
}
.aside .more { padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.aside h2 { font-family: var(--font-serif); font-weight: 500; font-size: 22px; line-height: 1.2; color: var(--navy); }

.disclaimer {
  padding-top: 72px;
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17px;
  line-height: 1.65;
}
.disclaimer p { max-width: 720px; }
.disclaimer .links { display: flex; gap: 20px; padding-top: 12px; }

[hidden] { display: none !important; }
html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (min-width: 1201px) {
  .nav-overlay { display: none !important; }
}

@media (max-width: 1200px) {
  .site { padding-top: 72px; }
  .site-head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .wrap { padding-left: 24px; padding-right: 24px; }
  .header { height: 72px; }
  .news-row { flex-direction: column; align-items: stretch; }
  .news-row .news-input,
  .news-form .btn { width: 100%; flex: none; height: 44px; }
  .logo img { height: 40px; }
  .nav, .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .mega { display: none !important; }
  .video-caption { right: 20px; }
  .video-caption strong { font-size: 20px; }
  .cta-navy h2 { font-size: 32px; }
  .coach-banner img { width: 88px; height: 88px; }
  .hero-grid, .split, .nlp-grid, .team-grid, .stories, .agenda-home, .why, .support,
  .cta-ice, .cta-navy, .about-intro, .about-mission, .about-loc, .coach-banner,
  .course-layout, .coach-layout, .signup-layout, .agenda-layout, .contact-layout,
  .info-layout, .nlp-layout, .practical, .score-banner {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3, .team-cards, .diplomas { grid-template-columns: 1fr 1fr; }
  .hero-grid { padding-bottom: 180px; }
  .features-band { margin-top: -64px; }
  .features { grid-template-columns: 1fr; }
  .feature { padding: 28px 28px 24px; }
  .feature h3 { min-height: 0; }
  .feature + .feature { border-left: 0; border-top: 1px solid var(--line); }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts div:nth-child(2) { border-right: 0; }
  .facts div:nth-child(-n+2) { border-bottom: 1px solid #E4E8EC; }
  .portrait.offset { margin-top: 0; }
  .h-hero { font-size: 48px; }
  .h-page { font-size: 44px; }
  .cta-ice, .cta-navy, .about-loc, .coach-banner { padding: 32px; }
  .btn-row.end { justify-content: flex-start; }
  .article { max-width: 100%; padding-left: 24px; padding-right: 24px; }
  .aside, .sticky-col, .side-sticky { position: static; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (max-width: 640px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .grid-3, .grid-2, .features, .team-cards, .diplomas, .facts, .bullets,
  .steps, .info-stats, .form-row, .form-row.addr, .signup-options, .footer-grid,
  .portraits, .coach-card, .logo-page {
    grid-template-columns: 1fr;
  }
  .h-hero, .h-page { font-size: 34px; }
  .h-section { font-size: 30px; }
  .article { padding-left: 20px; padding-right: 20px; }
  .h-display { font-size: 30px; }
  .lead { font-size: 18px; }
  .quote { font-size: 26px; }
  .play { width: 68px; height: 68px; }
  .play i { border-width: 12px 0 12px 20px; }
  .certs-row img { height: 88px; }
  .certs-row.sm img { height: 76px; }
  .cta-ice, .cta-navy, .about-loc, .coach-banner { padding: 22px; }
  .cta-navy h2, .coach-banner h2 { font-size: 28px; }
  .score-banner { padding: 22px; gap: 16px; }
  .facts div { border-right: 0; border-bottom: 1px solid #E4E8EC; }
  .facts div:last-child { border-bottom: 0; }
  .block-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust { align-items: flex-start; gap: 14px; }
  .btn, .btn-ghost, .btn-outline { max-width: 100%; }
  .agenda-row, .agenda-full li, .def-list li, .def-list.compact li, .values li, .kv li, .modules li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .coach-card .body { padding: 8px 24px 24px; }
  .trust { flex-wrap: wrap; }
  .page-hero-inner, .hero-grid { padding-top: 36px; }
  .hero::after,
  .page-hero::after,
  .band-ice::before,
  .band-ice::after,
  .band-navy::before,
  .band-navy::after,
  .footer::before { height: 24px; }
  .hero::after,
  .band-navy::after,
  .band-ice::after { height: 22px; }
  .hero-grid { padding-bottom: 148px; }
  .features-band { margin-top: -48px; }
  .feature { padding: 24px 22px 22px; }
}
