/* Rijschool Voordelig — base stylesheet
 * Mobile-first. Custom properties only. No frameworks.
 */

:root {
  /* Colors */
  --color-primary: #FFC629;
  --color-primary-dark: #E8A50C;
  --color-primary-soft: #FFF1B8;
  --color-secondary: #1B2230;
  --color-secondary-mid: #2C3548;
  --color-secondary-deep: #0F1420;
  --color-accent: #2BB36F;
  --color-accent-dark: #239A5E;
  --color-text: #14181F;
  --color-text-muted: #565C68;
  --color-text-on-dark: #FFFFFF;
  --color-text-on-dark-muted: #A6ACB8;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F4F2EC;
  --color-bg-dark: #1B2230;
  --color-border: #E5E2D8;
  --color-border-dark: #2C3548;
  --color-error: #D7263D;
  --color-success: #2BB36F;
  --color-success-text: #1A6E40;
  --color-white: #FFFFFF;

  /* Typography */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --fs-h1-hero-mobile: 2rem;
  --fs-h1-hero: 4.5rem;
  --fs-h1: 3.25rem;
  --fs-h1-mobile: 1.875rem;
  --fs-h2: 2.25rem;
  --fs-h2-mobile: 1.5rem;
  --fs-h3: 1.5rem;
  --fs-h3-mobile: 1.25rem;
  --fs-eyebrow: 0.8125rem;
  --fs-body-lg: 1.1875rem;
  --fs-body: 1rem;
  --fs-body-sm: 0.875rem;
  --fs-nav: 0.9375rem;
  --fs-button: 1rem;
  --fs-stat: 4rem;
  --fs-stat-mobile: 2.5rem;
  --fs-caption: 0.8125rem;
  --fs-footer: 0.8125rem;
  --fs-footer-meta: 0.75rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 800;

  --lh-tight: 1.02;
  --lh-snug: 1.1;
  --lh-normal: 1.5;
  --lh-relaxed: 1.6;

  /* Spacing */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 80px;
  --space-4xl: 120px;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 16px;
  --container-pad-desktop: 32px;
  --bp-tablet: 768px;
  --bp-desktop: 1024px;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(20, 24, 31, 0.04);
  --shadow-card-hover: 0 12px 32px rgba(20, 24, 31, 0.08);
  --shadow-cta: 0 6px 16px rgba(255, 198, 41, 0.35);

  /* Motion */
  --t-fast: 150ms ease-out;
  --t-base: 200ms ease-out;
  --t-slow: 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-reveal: 500ms ease-out;

  /* Z-index */
  --z-nav: 100;
  --z-mobile-bar: 90;
  --z-drawer: 200;
  --z-overlay: 199;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}
img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-md);
  background: var(--color-primary);
  color: var(--color-text);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: var(--fw-semibold);
  z-index: 1000;
  transition: top var(--t-base);
}
.skip-link:focus { top: var(--space-md); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: -0.01em;
  color: var(--color-text);
}
h1 {
  font-size: var(--fs-h1-mobile);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
}
h2 { font-size: var(--fs-h2-mobile); }
h3 { font-size: var(--fs-h3-mobile); }
.h1-hero {
  font-size: var(--fs-h1-hero-mobile);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  max-width: 16ch;
}
p { line-height: var(--lh-relaxed); }
.lead {
  font-size: var(--fs-body-lg);
  color: var(--color-text-muted);
  max-width: 560px;
}
.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.eyebrow-on-dark { color: var(--color-text-on-dark-muted); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Sections */
.section {
  padding-block: var(--space-2xl);
}
.section--alt { background: var(--color-bg-alt); }
.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--color-text-on-dark); }
.section--yellow {
  background: var(--color-primary);
  color: var(--color-text);
}
.section--yellow h2 { color: var(--color-text); }
.section--hero {
  padding-block: var(--space-2xl);
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--fs-button);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t-base), background var(--t-base), color var(--t-base), box-shadow var(--t-base);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta);
}
.btn--secondary {
  background: transparent;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}
.btn--secondary:hover {
  background: var(--color-secondary);
  color: var(--color-text-on-dark);
}
.btn--phone {
  background: var(--color-secondary);
  color: var(--color-text-on-dark);
}
.btn--phone:hover {
  background: var(--color-secondary-deep);
  transform: translateY(-1px);
}
.btn--whatsapp {
  background: var(--color-accent);
  color: var(--color-text-on-dark);
}
.btn--whatsapp:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--color-secondary);
  border-color: transparent;
  padding-inline: 0;
}
.btn--ghost:hover { text-decoration: underline; text-underline-offset: 4px; }
.btn--small { padding: 10px 18px; font-size: var(--fs-body-sm); }
.btn--block { width: 100%; }
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }

/* On dark sections, adjust ghost/secondary */
.section--dark .btn--secondary,
.section--yellow .btn--secondary {
  border-color: var(--color-text);
  color: var(--color-text);
}
.section--dark .btn--secondary {
  border-color: var(--color-text-on-dark);
  color: var(--color-text-on-dark);
}
.section--dark .btn--secondary:hover {
  background: var(--color-text-on-dark);
  color: var(--color-text);
}
.section--yellow .btn--secondary:hover {
  background: var(--color-secondary);
  color: var(--color-text-on-dark);
  border-color: var(--color-secondary);
}
.section--yellow .btn--phone {
  background: var(--color-secondary);
  color: var(--color-text-on-dark);
}

/* CTA row */
.cta-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.cta-row .btn { width: 100%; }

/* Trust strip */
.trust-strip {
  margin-top: var(--space-lg);
  font-size: var(--fs-body-sm);
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-md);
  align-items: center;
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.trust-strip li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-block;
}

/* Hero */
.hero { position: relative; }
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}
.hero__content { max-width: 720px; }
.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
}
.hero__image-frame::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.hero__decoration {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: var(--color-primary-soft);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

/* Sub-page hero */
.subhero {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  padding-block: var(--space-3xl) var(--space-2xl);
  text-align: left;
  position: relative;
}
.subhero__square {
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border-radius: 3px;
  display: inline-block;
  margin-right: var(--space-sm);
  vertical-align: middle;
  transform: translateY(-1px);
}
.subhero h1 { max-width: 22ch; margin-bottom: var(--space-md); }
.subhero .lead { margin-bottom: var(--space-lg); }

/* Stat band */
.stat-band {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding-block: var(--space-3xl);
}
.stat-grid {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 1fr;
}
.stat {
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--fs-stat-mobile);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--space-xs);
}
.stat__label {
  font-size: var(--fs-body);
  color: var(--color-text-on-dark);
  max-width: 28ch;
  margin-inline: auto;
}
.stat-band__divider {
  height: 4px;
  width: 64px;
  background: var(--color-primary);
  margin: var(--space-2xl) auto var(--space-md);
}
.stat-band__caption {
  text-align: center;
  font-size: var(--fs-body-sm);
  color: var(--color-text-on-dark-muted);
}

/* Section heading group */
.section-head {
  max-width: 720px;
  margin-bottom: var(--space-xl);
}
.section-head--center {
  text-align: center;
  margin-inline: auto;
}
.section-head h2 { margin-bottom: var(--space-sm); }
.section-head p { color: var(--color-text-muted); font-size: var(--fs-body-lg); }
.section--dark .section-head p { color: var(--color-text-on-dark-muted); }

/* Service grid */
.service-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
.service-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--color-primary);
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}
.service-card .icon {
  width: 40px;
  height: 40px;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}
.service-card h3 {
  font-size: var(--fs-h3-mobile);
  margin-bottom: var(--space-2xs);
}
.service-card p {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  flex-grow: 1;
}
.service-card__cta {
  margin-top: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  transition: transform var(--t-base);
}
.service-card:hover .service-card__cta { transform: translateX(4px); }
.service-card__cta .arrow { width: 18px; height: 18px; }

/* USP block */
.usp-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}
.usp {
  padding: var(--space-lg);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}
.usp__num {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
}
.usp h3 { margin-bottom: var(--space-2xs); }
.usp p { color: var(--color-text-muted); }

/* Geslaagden grid */
.geslaagden-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
.geslaagde {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
}
.geslaagde img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.geslaagde:hover img { transform: scale(1.03); }
.geslaagde__tag {
  position: absolute;
  bottom: var(--space-xs);
  left: var(--space-xs);
  background: rgba(20,24,31,0.78);
  color: var(--color-text-on-dark);
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

/* Awards strip */
.awards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  align-items: stretch;
}
.award {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  text-align: center;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  min-height: 120px;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.award:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.award img { max-height: 52px; width: auto; }
.award span { color: var(--color-text-muted); font-weight: var(--fw-medium); }

/* Service area */
.area {
  display: grid;
  gap: var(--space-xl);
}
.area__map {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.area__map svg { width: 100%; height: 100%; }

/* Final CTA */
.final-cta {
  text-align: center;
  padding-block: var(--space-3xl);
}
.final-cta h2 {
  font-size: var(--fs-h2-mobile);
  margin-bottom: var(--space-sm);
  max-width: 18ch;
  margin-inline: auto;
}
.final-cta p {
  color: var(--color-text);
  max-width: 540px;
  margin-inline: auto var(--space-lg);
  font-size: var(--fs-body-lg);
  margin-bottom: var(--space-lg);
}
.final-cta .cta-row {
  max-width: 480px;
  margin-inline: auto;
}

/* Process steps */
.steps {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  counter-reset: step;
}
.step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.step__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: var(--fs-h3-mobile); margin-bottom: var(--space-2xs); }
.step p { color: var(--color-text-muted); }

/* Pricing card */
.price-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.price-card h3 { font-size: var(--fs-h3-mobile); }
.price-card p { color: var(--color-text-muted); flex-grow: 1; }
.price-card .price-meta {
  font-size: var(--fs-body-sm);
  color: var(--color-text-muted);
  font-style: normal;
}

/* Feature list */
.feature-list {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
.feature {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.feature .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  margin-top: 2px;
}
.feature h3 { font-size: 1.0625rem; margin-bottom: 2px; }
.feature p { color: var(--color-text-muted); font-size: var(--fs-body); }

/* Definition list (what's included) */
.dl-included {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.dl-included li {
  position: relative;
  padding-left: 28px;
  color: var(--color-text);
}
.dl-included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
}
.dl-excluded li::before { background: var(--color-border); }

/* Callout */
.callout {
  background: var(--color-primary-soft);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  display: grid;
  gap: var(--space-md);
}
.callout h3 { font-size: var(--fs-h3-mobile); }
.callout p { color: var(--color-text); max-width: 60ch; }

/* Two-column generic */
.two-col {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 1fr;
}

/* Form */
.form {
  display: grid;
  gap: var(--space-md);
}
.form__row { display: grid; gap: var(--space-md); grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}
.field .req {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  display: inline-block;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.field textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-body);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--color-text-muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(255, 198, 41, 0.4);
}
.field--error input,
.field--error select,
.field--error textarea {
  border-color: var(--color-error);
}
.field__error {
  font-size: 0.8125rem;
  color: var(--color-error);
  margin-top: 2px;
  display: none;
}
.field--error .field__error { display: block; }

.field-checkbox {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: var(--fs-body-sm);
  color: var(--color-text-muted);
}
.field-checkbox input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary-dark);
  margin-top: 2px;
  flex-shrink: 0;
}
.field-checkbox a { color: var(--color-secondary); text-decoration: underline; }

.form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-status {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  display: none;
}
.form-status--success {
  background: rgba(43, 179, 111, 0.12);
  color: var(--color-success-text);
  border: 1px solid var(--color-accent);
}
.form-status--error {
  background: rgba(215, 38, 61, 0.08);
  color: var(--color-error);
  border: 1px solid var(--color-error);
}
.form-status.is-visible { display: block; }

/* Contact details column */
.contact-details {
  display: grid;
  gap: var(--space-md);
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}
.contact-details h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}
.contact-row {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.contact-row .icon {
  width: 22px;
  height: 22px;
  color: var(--color-secondary);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-row a { color: var(--color-secondary); font-weight: var(--fw-semibold); }
.contact-row a:hover { text-decoration: underline; }
.contact-row__meta { font-size: var(--fs-body-sm); color: var(--color-text-muted); }

/* Map embed */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16/10;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--t-reveal), transform var(--t-reveal);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Scroll padding for in-page anchors with sticky nav */
html { scroll-padding-top: 80px; }

/* Visually-hidden utility */
.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;
}

/* Body lock when drawer open */
body.is-locked { overflow: hidden; }

/* Utilities (small set, used to avoid inline styles) */
.u-text-center { text-align: center; }
.u-mx-auto { margin-inline: auto; }
.u-justify-center { justify-content: center; }
.u-mt-md { margin-top: var(--space-md); }
.u-mt-lg { margin-top: var(--space-lg); }
.u-mt-xl { margin-top: var(--space-xl); }
.u-mt-2xl { margin-top: var(--space-2xl); }
.u-mb-md { margin-bottom: var(--space-md); }
.u-mb-lg { margin-bottom: var(--space-lg); }
.u-img-rounded { border-radius: var(--radius-lg); }
.u-prose-narrow { max-width: 760px; }
.u-text-muted { color: var(--color-text-muted); }
.u-disclaimer {
  font-size: var(--fs-body-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-lg);
}
.legal-prose {
  display: grid;
  gap: var(--space-md);
  color: var(--color-text);
}

/* Hero badge */
.hero__image-frame { position: relative; }
.hero__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(255, 198, 41, 0.45);
  min-width: 76px;
  text-align: center;
}
.hero__badge-num {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-secondary-deep);
}
.hero__badge-label {
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* Review band (below hero) */
.review-band {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-lg);
}
.review-band__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}
.review-band__sep {
  display: none;
  width: 1px;
  height: 40px;
  background: var(--color-border);
  align-self: center;
}
.review-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.review-item__logo {
  height: 20px;
  width: auto;
}
.review-item__icon .icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary-dark);
}
.review-item__stars { font-size: 1.125rem; color: var(--color-primary-dark); line-height: 1; }
.star--full { color: var(--color-primary-dark); }
.review-item__info { display: flex; flex-direction: column; gap: 1px; }
.review-item__info strong { font-size: 1rem; font-weight: var(--fw-bold); color: var(--color-text); }
.review-item__info span { font-size: var(--fs-body-sm); color: var(--color-text-muted); }
.review-band__note {
  font-size: var(--fs-body-sm);
  color: var(--color-text-on-dark-muted);
  margin-top: var(--space-sm);
}

/* Sonja quote */
.sonja-quote {
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-lg);
  border-left: 4px solid var(--color-primary);
  background: var(--color-primary-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.sonja-quote p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: var(--fw-semibold);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}
.sonja-quote cite {
  font-size: var(--fs-body-sm);
  color: var(--color-text-muted);
  font-style: normal;
}

/* Instructor list */
.instructor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.instructor-list li {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  padding-left: var(--space-lg);
  position: relative;
}
.instructor-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}
.instructor-list strong { color: var(--color-text); font-weight: var(--fw-semibold); }

/* Reviews grid */
.reviews-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
.review-card {
  background: var(--color-secondary-mid);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.review-card__stars {
  font-size: 1.125rem;
  color: var(--color-primary);
  letter-spacing: 2px;
}
.review-card__text {
  font-size: var(--fs-body);
  color: var(--color-text-on-dark);
  font-style: italic;
  line-height: var(--lh-relaxed);
  flex-grow: 1;
}
.review-card__author {
  font-size: var(--fs-body-sm);
  color: var(--color-text-on-dark-muted);
  font-weight: var(--fw-semibold);
}

/* Service card highlight */
.service-card--highlight {
  border-color: var(--color-primary);
  background: var(--color-primary-soft);
}
.service-card--highlight::before { background: var(--color-secondary); }

/* Instructeur cards */
.instructeur-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}
.instructeur-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.instructeur-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.instructeur-card__photo-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.instructeur-card__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--t-slow);
}
.instructeur-card:hover .instructeur-card__photo-wrap img {
  transform: scale(1.03);
}
.instructeur-card__photo-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
}
.instructeur-card__initials {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.7;
}
.instructeur-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-grow: 1;
}
.instructeur-card h3 { font-size: var(--fs-h3-mobile); }
.instructeur-card__role {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.instructeur-card p { color: var(--color-text-muted); font-size: var(--fs-body); flex-grow: 1; }
.instructeur-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}
.instructeur-card__tags li {
  background: var(--color-bg-alt);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  padding: 4px 12px;
  color: var(--color-text-muted);
}
.instructeur-card__quote {
  margin-top: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid var(--color-primary);
  background: var(--color-primary-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: var(--fs-body-sm);
  color: var(--color-text);
}

/* FAQ accordion */
.faq {
  display: grid;
  gap: var(--space-sm);
  max-width: 760px;
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.faq-item[open] { box-shadow: var(--shadow-card-hover); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-md) var(--space-lg);
  font-weight: var(--fw-semibold);
  font-size: 1rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: background var(--t-base);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  transform: rotate(45deg);
  transition: transform var(--t-base);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { background: var(--color-bg-alt); }
.faq-item p {
  padding: 0 var(--space-lg) var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
}
.faq-item p a { color: var(--color-secondary); text-decoration: underline; text-underline-offset: 2px; }

/* Award score number */
.award__score {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--color-secondary);
}
.award__score span { color: var(--color-primary-dark); }
