:root {
  color-scheme: light;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1f2937;
  background: #f8fafc;
  line-height: 1.6;
  --brand: #fabb66;
  --brand-dark: #e59d3d;
  --ink: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --card-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(250, 187, 102, 0.08), transparent 40%), #f8fafc;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--brand-dark);
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.container-narrow {
  width: min(820px, calc(100% - 2rem));
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* ---------- Header / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.1rem;
  color: #111827;
  text-decoration: none;
}

.brand-logo {
  width: 2rem;
  height: auto;
  margin-right: 0.6rem;
}

/* Header: alleen logo, 50% groter, geen merknaam-tekst nodig */
.site-header .brand-logo {
  width: 3rem;
  margin-right: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}

.nav-links > a,
.nav-top {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links > a:hover,
.nav-top:hover {
  color: var(--brand-dark);
}

.nav-item {
  position: relative;
}

.nav-top::after {
  content: '▾';
  font-size: 0.7em;
  margin-left: 0.3rem;
  color: #94a3b8;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  padding: 0.5rem;
  display: grid;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 0.65rem;
  color: #374151;
  text-decoration: none;
  font-size: 0.95rem;
}

.dropdown a:hover {
  background: rgba(250, 187, 102, 0.14);
  color: var(--brand-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(229, 157, 61, 0.3);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  background: rgba(250, 187, 102, 0.12);
  color: var(--brand-dark);
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button-white {
  background: #ffffff;
  color: var(--brand-dark);
}

/* ---------- Hero (home) ---------- */
.hero {
  padding: 5rem 0 3rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  margin: 0;
  max-width: 720px;
}

.hero-text {
  max-width: 620px;
  margin: 1.25rem 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-visual {
  display: grid;
  gap: 1.5rem;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.75rem;
  box-shadow: 0 30px 70px rgba(229, 157, 61, 0.25);
}

.hero-card {
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 2rem;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
}

.hero-card-title {
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  font-weight: 700;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  display: grid;
  gap: 0.85rem;
}

.hero-card li::before {
  content: '✓';
  margin-right: 0.75rem;
  color: var(--brand);
  font-weight: 700;
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(250, 187, 102, 0.16), rgba(250, 187, 102, 0));
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  margin: 0.4rem 0 1rem;
  max-width: 820px;
}

.page-hero p {
  color: var(--muted);
  max-width: 720px;
  font-size: 1.1rem;
  margin: 0;
}

.breadcrumb {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--brand-dark);
}

/* ---------- Sections ---------- */
.section {
  padding: 4rem 0;
}

.section-tinted {
  background: rgba(250, 187, 102, 0.06);
}

.section-dark {
  background: var(--ink);
  color: #e2e8f0;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section h2 {
  font-size: clamp(1.9rem, 2.5vw, 2.8rem);
  margin: 0.5rem 0 1rem;
}

.section > .container > p,
.section-intro {
  color: var(--muted);
  max-width: 760px;
}

/* ---------- Grids & cards ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--line);
}

.card h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.card-lead {
  color: var(--muted);
  margin: 0 0 1rem;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.card li {
  margin-bottom: 0.5rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  background: rgba(250, 187, 102, 0.16);
  color: var(--brand-dark);
}

.card-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

/* ---------- Feature rows (image + text) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: 3.5rem;
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-media img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  display: block;
}

.feature-text h2,
.feature-text h3 {
  margin-top: 0;
}

.feature-text p {
  color: var(--muted);
}

/* ---------- Process steps ---------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.steps.steps-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  box-shadow: var(--card-shadow);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* ---------- Stat grid ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--card-shadow);
}

.stat .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-dark);
  display: block;
}

.stat .stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Checklist ---------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  color: var(--muted);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(250, 187, 102, 0.18);
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- FAQ accordion ---------- */
.faq {
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--brand-dark);
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item .faq-body {
  padding: 0 1.4rem 1.2rem;
  color: var(--muted);
}

/* ---------- Pricing ---------- */
.pricing {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.pricing .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
}

.pricing .price small {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

/* ---------- About / why ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
}

.section-about .about-grid {
  align-items: center;
}

.about-grid ul {
  padding-left: 1.25rem;
  color: var(--muted);
}

.about-grid li {
  margin-bottom: 0.85rem;
}

.about-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--line);
}

.about-card h3 {
  margin-top: 0;
}

.about-card p {
  color: var(--muted);
}

.about-photo,
.about-model,
.contact-photo,
.aanbod-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.about-approach {
  margin-top: 2.5rem;
}

.about-model {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
  border: 1px solid var(--line);
}

.about-model img {
  width: min(320px, 100%);
}

.about-model figcaption {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Aanbod feature ---------- */
.aanbod-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
}

.aanbod-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.aanbod-feature h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.aanbod-feature p {
  color: var(--muted);
  margin: 0 0 1.5rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  border-radius: 1.75rem;
  padding: 3rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 30px 70px rgba(229, 157, 61, 0.3);
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 1.75rem;
}

/* ---------- Timeline ---------- */
.history-intro {
  max-width: 760px;
  color: var(--muted);
  margin: 0.5rem 0 2.75rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline-item {
  position: relative;
  padding: 0 0 2.25rem 2.5rem;
  border-left: 2px solid rgba(250, 187, 102, 0.4);
}

.timeline-item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 0.1rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #f8fafc;
  box-shadow: 0 0 0 1px rgba(250, 187, 102, 0.5);
}

.timeline-year {
  display: inline-block;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.timeline-item h3 {
  margin: 0.25rem 0 0.4rem;
  font-size: 1.2rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  max-width: 640px;
}

/* ---------- Roadmap ---------- */
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.roadmap-phase {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
}

.roadmap-phase .phase-years {
  font-weight: 800;
  color: var(--brand-dark);
}

.roadmap-phase h3 {
  margin: 0.25rem 0 0.75rem;
  font-size: 1.1rem;
}

.roadmap-phase ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.roadmap-phase li {
  margin-bottom: 0.4rem;
}

/* ---------- Coach cards ---------- */
.coach {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.coach + .coach {
  margin-top: 2rem;
}

.coach-photo {
  margin: 0;
}

.coach-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.25rem;
}

.coach-avatar {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 1.25rem;
  background: linear-gradient(140deg, var(--brand), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 4rem;
  font-weight: 800;
}

.coach h3 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
}

.coach .coach-role {
  color: var(--brand-dark);
  font-weight: 600;
  margin: 0 0 1rem;
}

.coach h4 {
  margin: 1.25rem 0 0.4rem;
  font-size: 1rem;
}

.coach p {
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.coach blockquote {
  margin: 1.25rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid var(--brand);
  font-style: italic;
  color: #334155;
}

/* ---------- Reviews / testimonials ---------- */
.testimonial-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  display: flex;
  flex-direction: column;
}

.testimonial-card p {
  flex: 1;
  margin: 0;
  color: var(--muted);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(250, 187, 102, 0.18);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 700;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  display: flex;
  flex-direction: column;
  color: #334155;
  font-weight: 600;
  line-height: 1.3;
}

.testimonial-name small {
  font-weight: 500;
  color: #64748b;
  font-size: 0.82rem;
}

.testimonial-meta {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ---------- Blog cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 0;
  box-shadow: var(--card-shadow);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-thumb {
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.blog-meta {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.blog-card p {
  color: var(--muted);
  margin: 0 0 1rem;
  flex: 1;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
  background: rgba(250, 187, 102, 0.14);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.blog-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem;
}

.blog-body p {
  margin: 0;
}

.blog-body .tag-list {
  margin-bottom: 0.85rem;
}

/* Weergave-toggle (naast elkaar / onder elkaar) */
.view-toggle {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 1.75rem;
  box-shadow: var(--card-shadow);
}

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.view-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.view-btn.is-active {
  background: var(--brand);
  color: #fff;
}

/* Lijstweergave: kaarten onder elkaar, horizontaal */
.blog-grid.is-list {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.blog-grid.is-list .blog-card {
  flex-direction: row;
  align-items: stretch;
}

.blog-grid.is-list .blog-thumb {
  width: 34%;
  max-width: 340px;
  flex-shrink: 0;
  margin: 0;
  aspect-ratio: auto;
  height: auto;
  align-self: stretch;
}

@media (max-width: 640px) {
  .blog-grid.is-list .blog-card {
    flex-direction: column;
  }

  .blog-grid.is-list .blog-thumb {
    width: 100%;
    margin: 0;
    aspect-ratio: 16 / 9;
    align-self: auto;
  }
}

/* ---------- Prose (articles / legal) ---------- */
.prose {
  max-width: 760px;
}

.prose h2 {
  font-size: 1.6rem;
  margin: 2rem 0 0.75rem;
}

.prose h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem;
}

.prose p,
.prose li {
  color: #334155;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--brand);
  background: rgba(250, 187, 102, 0.08);
  border-radius: 0 0.75rem 0.75rem 0;
  font-style: italic;
  color: #334155;
}

/* ---------- Banner image ---------- */
.banner-img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: var(--card-shadow);
  display: block;
}

.badge-img {
  max-width: 320px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--line);
}

.contact-card p {
  color: var(--muted);
  margin: 0.4rem 0;
}

.contact-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  margin: 1.5rem 0;
  display: block;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: #334155;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid #d1d5db;
  background: #f8fafc;
  font: inherit;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(250, 187, 102, 0.3);
  border-color: var(--brand-dark);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 3rem 0 1.5rem;
  background: var(--ink);
  color: #e2e8f0;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.footer-col a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col p {
  color: #94a3b8;
  margin: 0.3rem 0;
  font-size: 0.92rem;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand .tagline {
  color: #94a3b8;
  margin: 0.75rem 0 1.25rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--brand);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 1.15rem;
  height: 1.15rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* ---------- Video's ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-body {
  padding: 1.5rem;
}

.video-body .tag {
  display: inline-block;
  margin-bottom: 0.6rem;
}

.video-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.video-body p {
  margin: 0;
  color: var(--muted);
}

.video-meta {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-inner > .button-primary {
    display: none;
  }

  .nav-links {
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 720px;
    padding: 0.5rem 0 1rem;
  }

  .nav-links > a,
  .nav-top {
    padding: 0.7rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-top::after {
    float: right;
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: rgba(250, 187, 102, 0.06);
    min-width: 0;
    padding: 0.25rem 0 0.5rem 0.75rem;
    display: none;
  }

  .nav-item.open .dropdown {
    display: grid;
  }
}

@media (max-width: 900px) {
  .hero-content,
  .about-grid,
  .testimonial-list,
  .contact-grid,
  .cards-grid,
  .cards-4,
  .aanbod-feature,
  .feature-row,
  .coach,
  .blog-grid,
  .steps.steps-grid,
  .stat-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-media {
    order: 0;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .cards-2,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .card,
  .about-card,
  .testimonial-card,
  .contact-card,
  .contact-form,
  .coach,
  .cta-band {
    padding: 1.6rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .cta-band {
    padding: 2rem 1.5rem;
  }
}
