/* ============================================================
   HET TAKENSPEL — stylesheet
   Een initiatief van Bewegingmakers
   ------------------------------------------------------------
   Opbouw:
     1.  Design-tokens (kleuren, typografie, ruimte)  <-- pas hier de huisstijl aan
     2.  Basis / reset
     3.  Layout (container, secties, grids)
     4.  Header & navigatie
     5.  Footer
     6.  Knoppen & badges
     7.  Componenten (hero, kaarten, waarde-blokken, sporen, product, formulier)
     8.  Hulpklassen
     9.  Responsive
   ============================================================ */

/* ====== 1. DESIGN-TOKENS ==================================== */
:root {
  /* Basiskleuren — teal/wit is leidend */
  --teal-900: #11424a;
  --teal-700: #1f6f78;
  --teal-600: #2a8c93;
  --teal-500: #3aa6ad;
  --teal-300: #8fd0d3;
  --teal-200: #c2e6e7;
  --teal-100: #e6f4f4;
  --teal-50:  #f3fafa;

  /* Accentkleuren — afgeleid van de spelkaarten, spaarzaam gebruiken */
  --accent-orange:  #e8821e;
  --accent-purple:  #8a5bb0;
  --accent-green:   #5fa83f;
  --accent-mint:    #44c3b4;
  --accent-blue:    #33408f;
  --accent-red:     #d8483f;

  /* Neutralen */
  --ink:    #1d2a30;   /* hoofdtekst */
  --slate:  #51626b;   /* secundaire tekst */
  --muted:  #7a8b92;
  --line:   #e4edee;   /* lijnen / randen */
  --white:  #ffffff;
  --offwhite: #f6fafa;

  /* Typografie */
  --font-head: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Vorm & ruimte */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(31, 111, 120, 0.07);
  --shadow:    0 10px 30px rgba(31, 111, 120, 0.10);
  --shadow-lg: 0 24px 60px rgba(17, 66, 74, 0.16);

  --container: 1140px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --section-y: clamp(3.5rem, 8vw, 6.5rem);
}

/* ====== 2. BASIS / RESET ==================================== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--teal-900);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.45rem); }

p { margin: 0 0 1rem; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { text-decoration: underline; }

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

ul { margin: 0; padding: 0; }

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

.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--teal-700);
  color: #fff; padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 200; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; text-decoration: none; }

/* ====== 3. LAYOUT =========================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tint { background: var(--teal-50); }
.section--teal {
  background: linear-gradient(160deg, var(--teal-700), var(--teal-600));
  color: #eafafa;
}
.section--teal h2, .section--teal h3 { color: #fff; }

.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.9rem;
}
.section--teal .eyebrow { color: var(--teal-200); }
.eyebrow::before {
  content: ""; width: 1.6rem; height: 2px;
  background: currentColor; border-radius: 2px;
}
.section-head.center .eyebrow::before { display: none; }

.lead { font-size: 1.15rem; color: var(--slate); }
.section--teal .lead { color: #d6f0f0; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ====== 4. HEADER & NAVIGATIE =============================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__mark { flex: none; width: 40px; height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.2rem; color: var(--teal-900); letter-spacing: -0.01em;
}
.brand__sub { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.02em; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 0.4rem; }
.nav__links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav__link {
  display: block; padding: 0.5rem 0.85rem;
  font-family: var(--font-head); font-weight: 500; font-size: 0.96rem;
  color: var(--slate); border-radius: var(--radius-pill);
  transition: color 0.15s, background 0.15s;
}
.nav__link:hover { color: var(--teal-700); background: var(--teal-50); text-decoration: none; }
.nav__link[aria-current="page"] { color: var(--teal-700); background: var(--teal-100); }

.nav__cta { margin-left: 0.4rem; }

.nav-toggle {
  display: none; flex: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; cursor: pointer; color: var(--teal-800);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ====== 5. FOOTER =========================================== */
.site-footer {
  background: var(--teal-900); color: #cfe7e7;
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}
.site-footer a { color: #eafafa; }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.4fr 1fr 1.3fr;
}
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: var(--teal-300); }
.footer-about { margin-top: 1rem; max-width: 32ch; color: #aacccc; font-size: 0.95rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-col a:hover { color: var(--teal-200); }
.footer-contact div { margin-bottom: 0.85rem; }
.footer-contact .name { color: #fff; font-weight: 600; }
.footer-contact .role { font-size: 0.82rem; color: var(--teal-300); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: #9bc1c1;
}
.footer-accent-strip { display: flex; height: 5px; border-radius: 3px; overflow: hidden; margin-bottom: 2.5rem; }
.footer-accent-strip span { flex: 1; }

/* ====== 6. KNOPPEN & BADGES ================================= */
.btn {
  --btn-bg: var(--teal-600);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  line-height: 1; text-align: center;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent; border-radius: var(--radius-pill);
  cursor: pointer; transition: transform 0.12s ease, box-shadow 0.15s, background 0.15s;
  box-shadow: var(--shadow-sm);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }

.btn--primary { --btn-bg: var(--teal-600); }
.btn--primary:hover { --btn-bg: var(--teal-700); }
.btn--accent { --btn-bg: var(--accent-orange); }
.btn--accent:hover { --btn-bg: #d4730f; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--teal-700);
  border-color: var(--teal-300); box-shadow: none;
}
.btn--ghost:hover { --btn-bg: var(--teal-50); border-color: var(--teal-500); }
.btn--white { --btn-bg: #fff; --btn-fg: var(--teal-700); }
.btn--white:hover { --btn-bg: #eafafa; }
.btn--lg { padding: 1rem 1.85rem; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] {
  opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none;
}

.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--teal-100); color: var(--teal-700);
}
.badge--soft { background: rgba(255,255,255,0.15); color: #eafafa; }

/* ====== 7. COMPONENTEN ===================================== */

/* --- Hero --- */
.hero { position: relative; overflow: hidden; background: var(--teal-50); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(68,195,180,0.18), transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(138,91,176,0.10), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero h1 { margin-bottom: 1rem; }
.hero__lead { font-size: 1.2rem; color: var(--slate); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.25rem; }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--teal-700); }
.hero__meta span { font-size: 0.88rem; color: var(--muted); }
.hero__art { position: relative; }
.hero__art img, .hero__art svg { width: 100%; border-radius: var(--radius-lg); }

/* --- Algemene kaart --- */
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm); height: 100%;
  transition: transform 0.15s, box-shadow 0.18s, border-color 0.18s;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-200); }
.card h3 { margin-bottom: 0.5rem; }
.card p:last-child { margin-bottom: 0; }

/* Icoon-chip met accentkleur */
.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--teal-100); color: var(--teal-700);
  margin-bottom: 1.1rem;
}
.icon-chip svg { width: 28px; height: 28px; }
.icon-chip[data-accent="orange"] { background: #fdeede; color: var(--accent-orange); }
.icon-chip[data-accent="purple"] { background: #f1e9f7; color: var(--accent-purple); }
.icon-chip[data-accent="green"]  { background: #e9f4e2; color: var(--accent-green); }
.icon-chip[data-accent="mint"]   { background: #ddf6f2; color: #1d9b8c; }
.icon-chip[data-accent="blue"]   { background: #e6e9f6; color: var(--accent-blue); }
.icon-chip[data-accent="red"]    { background: #fae6e4; color: var(--accent-red); }

/* --- Twee sporen (spel kopen vs. trainingen) --- */
.tracks { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.25rem, 3vw, 2rem); align-items: stretch; }
.track {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.track--featured {
  border: 2px solid var(--teal-300);
  background: linear-gradient(180deg, var(--teal-50), #fff);
  box-shadow: var(--shadow);
}
.track__tag {
  position: absolute; top: -0.85rem; left: clamp(1.75rem, 3vw, 2.5rem);
}
.track h3 { font-size: 1.4rem; }
.track ul { list-style: none; display: grid; gap: 0.7rem; margin: 1.25rem 0 1.75rem; }
.track li { display: flex; gap: 0.65rem; align-items: flex-start; }
.track li svg { flex: none; width: 1.25rem; height: 1.25rem; color: var(--teal-500); margin-top: 0.15rem; }
.track .btn { margin-top: auto; }

/* --- Waarde-blokken / lijst met checks --- */
.checklist { list-style: none; display: grid; gap: 0.85rem; }
.checklist li { display: flex; gap: 0.75rem; align-items: flex-start; }
.checklist li svg { flex: none; width: 1.4rem; height: 1.4rem; color: var(--accent-green); margin-top: 0.1rem; }

/* --- Stappen --- */
.steps { counter-reset: step; display: grid; gap: 1.5rem; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step__num {
  counter-increment: step; flex: none;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal-100); color: var(--teal-700);
  font-family: var(--font-head); font-weight: 700;
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: 0.25rem; font-size: 1.15rem; }

/* --- Feiten / quick facts strip --- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.fact {
  text-align: center; padding: 1.5rem 1rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.fact strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--teal-700); }
.fact span { font-size: 0.9rem; color: var(--slate); }

/* --- Product / prijs --- */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.product__media {
  background: linear-gradient(160deg, var(--teal-100), var(--teal-200));
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid; place-items: center;
}
.product__media img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* --- Foto's (sfeer/product) --- */
.photo { margin: 0; }
.photo img { width: 100%; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.photo--band img { max-height: 460px; object-fit: cover; object-position: center 30%; }
.photo figcaption { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 0.85rem; }
.card-photo { width: 100%; display: block; border-radius: var(--radius); margin: 0.75rem 0 0.25rem; }

/* --- Visuele tegels (toepassingsmomenten) met klik-pop-up --- */
.tile { position: relative; }
.tile__btn {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0.9rem; width: 100%; height: 100%;
  padding: clamp(1.6rem, 3vw, 2.1rem) 1.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); cursor: pointer; font: inherit; color: inherit;
  transition: transform 0.15s, box-shadow 0.18s, border-color 0.18s;
}
.tile__btn:hover, .tile__btn:focus-visible {
  transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-200);
}
.tile.is-open .tile__btn { border-color: var(--teal-300); box-shadow: var(--shadow); }
.tile__title { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--teal-900); }
.icon-chip--lg { width: 76px; height: 76px; border-radius: 22px; margin-bottom: 0; }
.icon-chip--lg svg { width: 38px; height: 38px; }

/* '+'-indicator die naar '×' draait wanneer de tegel open is */
.tile__more {
  position: relative; width: 26px; height: 26px; margin-top: auto;
  border-radius: 50%; background: var(--teal-100);
  transition: transform 0.25s ease, background 0.18s;
}
.tile__more::before, .tile__more::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px; border-radius: 2px; background: var(--teal-700);
  transform: translate(-50%, -50%);
}
.tile__more::after { transform: translate(-50%, -50%) rotate(90deg); }
.tile.is-open .tile__more { transform: rotate(45deg); background: var(--teal-200); }

/* De pop-up: licht, ruim, aan de zijkant van de tegel */
.tile__pop {
  position: absolute; top: 50%; left: calc(100% + 14px);
  transform: translateY(-50%) scale(0.97); transform-origin: left center;
  width: 320px; max-width: min(340px, 80vw);
  background: #fff; color: var(--ink);
  border: 1px solid var(--teal-200); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.2rem 1.35rem; text-align: left;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease; z-index: 40;
}
.tile__pop-title {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 1.02rem; color: var(--teal-900); margin-bottom: 0.4rem;
}
.tile__pop p { margin: 0; font-size: 0.95rem; line-height: 1.55; color: var(--slate); }
.tile__pop::before {
  content: ""; position: absolute; top: 50%; left: -8px;
  width: 14px; height: 14px; background: #fff;
  border-left: 1px solid var(--teal-200); border-bottom: 1px solid var(--teal-200);
  transform: translateY(-50%) rotate(45deg);
}
.tile.is-open .tile__pop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

/* Variant: pop-up links van de tegel (voor tegels aan de rechterrand) */
.tile--popleft .tile__pop { left: auto; right: calc(100% + 14px); transform-origin: right center; }
.tile--popleft .tile__pop::before {
  left: auto; right: -8px;
  border-left: 0; border-bottom: 0;
  border-right: 1px solid var(--teal-200); border-top: 1px solid var(--teal-200);
}

/* Smalle schermen: pop-up onder de tegel, volle breedte */
@media (max-width: 760px) {
  .tile__pop, .tile--popleft .tile__pop {
    position: static; left: auto; right: auto; top: auto;
    transform: none; width: auto; max-width: none;
    margin-top: 0.85rem; display: none; box-shadow: var(--shadow);
  }
  .tile__pop::before { display: none; }
  .tile.is-open .tile__pop { display: block; transform: none; }
}

/* --- Scroll-reveal (zacht inzweven bij scrollen) --- */
.reveal-ready .hero__content, .reveal-ready .hero__art,
.reveal-ready .section-head, .reveal-ready .card, .reveal-ready .tile,
.reveal-ready .track, .reveal-ready .fact, .reveal-ready .step,
.reveal-ready .photo, .reveal-ready .price-card, .reveal-ready .product__media,
.reveal-ready .cta-band, .reveal-ready .quote, .reveal-ready .form-card {
  opacity: 0;
}
.reveal-ready .is-revealed {
  opacity: 1;
  animation: reveal-in 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
}
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* De 'Maatwerk'-kaart (en andere .no-hide) blijft altijd zichtbaar.
   Hogere specificiteit dan de verberg-regel hierboven. */
.reveal-ready .card.no-hide { opacity: 1; }

/* --- Typmachine-effect --- */
.tw-ready [data-typewriter] { visibility: hidden; }
[data-typewriter].tw-on { visibility: visible; }
.tw-caret {
  display: inline-block; width: 2px; height: 1em;
  margin-left: 3px; vertical-align: -0.12em;
  background: currentColor; border-radius: 1px;
  animation: tw-blink 0.9s steps(1) infinite;
}
@keyframes tw-blink { 50% { opacity: 0; } }

/* --- Stappen 'Van vraag naar beweging': één voor één in beeld --- */
.seq-ready .seq-card { opacity: 0; transform: translateY(22px); }
.seq-card.is-in {
  opacity: 1; transform: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem); box-shadow: var(--shadow);
}
.price-card__price { display: flex; align-items: baseline; gap: 0.5rem; margin: 0.5rem 0 0.25rem; }
.price-card__amount { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--teal-900); }
.price-card__note { color: var(--muted); font-size: 0.92rem; }
.price-card .btn { margin-top: 1.5rem; }
.price-card__hint { font-size: 0.85rem; color: var(--muted); margin-top: 0.85rem; text-align: center; }

/* --- Personen (Over ons) --- */
.person { text-align: left; }
.person__photo {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center;
  border-radius: var(--radius); margin-bottom: 1.1rem; display: block;
}
.person h3 { margin-bottom: 0.15rem; }
.person__role { color: var(--accent-orange); font-weight: 600; font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 0.75rem; }
.person__contact { display: grid; gap: 0.25rem; font-size: 0.92rem; margin-top: 0.75rem; }

/* --- Placeholder (algemeen, voor eigen beeld) --- */
.placeholder-img {
  display: grid; place-items: center; text-align: center;
  background:
    repeating-linear-gradient(135deg, var(--teal-50) 0 16px, var(--teal-100) 16px 32px);
  border: 1px dashed var(--teal-300); border-radius: var(--radius-lg);
  color: var(--teal-700); padding: 2rem; min-height: 220px;
}
.placeholder-img small { display: block; color: var(--muted); margin-top: 0.35rem; }

/* --- CTA-band --- */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 1.5rem; }
.cta-band__actions { display: inline-flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-top: 1.75rem; }

/* --- Quote --- */
.quote {
  font-family: var(--font-head); font-size: clamp(1.3rem, 1rem + 1.5vw, 1.9rem);
  font-weight: 600; line-height: 1.35; color: var(--teal-900);
  max-width: 24ch;
}
.section--teal .quote { color: #fff; }

/* ====== FORMULIER ========================================== */
.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 1.25rem; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--teal-900); }
.field .req { color: var(--accent-red); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink);
  padding: 0.8rem 0.95rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--offwhite);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-500); background: #fff;
  box-shadow: 0 0 0 3px rgba(58, 166, 173, 0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--accent-red); }
.field__error { color: var(--accent-red); font-size: 0.82rem; min-height: 1em; }
.form-note { font-size: 0.88rem; color: var(--muted); margin-top: 0.5rem; }

.form-success {
  display: none; text-align: center; padding: 1rem;
}
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 72px; height: 72px; margin: 0 auto 1.25rem;
  border-radius: 50%; background: #e9f4e2; color: var(--accent-green);
  display: grid; place-items: center;
}
.form-success__icon svg { width: 38px; height: 38px; }
.is-hidden { display: none !important; }

/* ====== 8. HULPKLASSEN ===================================== */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.measure { max-width: 62ch; }
.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;
}

/* ====== 9. RESPONSIVE ===================================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 520px; }
  .product { grid-template-columns: 1fr; }
  .tracks { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  /* Mobiele navigatie */
  .nav__links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0.25rem;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow); transform: translateY(-130%);
    transition: transform 0.25s ease; max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav.is-open .nav__links { transform: translateY(0); }
  .nav__link { padding: 0.85rem 1rem; font-size: 1.05rem; }
  .nav__cta { margin: 0.5rem 0 0; }
  .nav__cta .btn { width: 100%; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}

/* Respecteer voorkeur voor minder beweging */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
