/* ==========================================================================
   Milan Pardijs - Massagepraktijk Borculo
   Design system
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand (overgenomen van de huidige site) */
  --teal-50:  #E9F8F9;
  --teal-100: #D3F0F4;
  --teal-200: #AFE3EA;
  --teal-300: #7CCEDA;
  --teal-400: #3AA6B9;
  --teal-500: #2997AA;
  --teal-600: #21808F;
  --teal-700: #1A6674;

  --ink-900: #061114;
  --ink-800: #091118;
  --ink-700: #1C2125;
  --ink-600: #2E2D2A;
  --ink-500: #4A5257;
  --ink-400: #6B767C;
  --ink-300: #9AA4A9;

  --paper:   #FAF9F9;
  --white:   #FFFFFF;
  --sand:    #BFA06A;

  /* Donkere oppervlakken, opgebouwd rond de merkkleuren */
  --surface-0: #070F12;
  --surface-1: #0C171B;
  --surface-2: #112128;
  --surface-3: #182C34;

  /* Rollen */
  --bg:            var(--surface-0);
  --bg-elevated:   var(--surface-2);
  --bg-tint:       var(--surface-1);
  --bg-dark:       var(--ink-900);
  --heading:       #F1F7F8;
  --text:          #DDE7EA;
  --text-strong:   #F1F7F8;
  --text-soft:     #A2B4BA;
  --text-faint:    #7B8E95;
  --accent:        var(--teal-400);
  --accent-strong: #45B9CC;
  --accent-deep:   #8AD8E4;
  --line:          rgba(255, 255, 255, 0.10);
  --line-soft:     rgba(255, 255, 255, 0.055);

  /* Typografie */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.38vw, 1.42rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.72vw, 1.95rem);
  --step-3:  clamp(1.75rem, 1.48rem + 1.32vw, 2.65rem);
  --step-4:  clamp(2.1rem, 1.6rem + 2.4vw, 3.6rem);

  /* Ruimte */
  --gutter: clamp(1.15rem, 4vw, 2rem);
  --section-y: clamp(3.75rem, 8vw, 7rem);
  --maxw: 1180px;
  --maxw-narrow: 760px;

  /* Vorm */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.35), 0 12px 28px -8px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.4), 0 28px 60px -18px rgba(0, 0, 0, 0.75);
  --ring: 0 0 0 3px rgba(58, 166, 185, 0.35);

  color-scheme: dark;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture, iframe { display: block; max-width: 100%; }
/* .field is display:grid en zou het UA-[hidden] anders overrulen */
[hidden] { display: none !important; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--heading);
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p  { text-wrap: pretty; }

a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #B4E9F1; }

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

::selection { background: var(--teal-500); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--tint { background: var(--bg-tint); }
.section--paper { background: var(--surface-1); }

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.75rem; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--accent-strong);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-soft); font-size: var(--step-1); margin-top: 1rem; }

.lede { font-size: var(--step-1); color: var(--text-soft); line-height: 1.55; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--accent-strong);
  --btn-fg: var(--ink-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: var(--step-0);
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  box-shadow: 0 1px 2px rgba(6,17,20,0.08);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(69, 185, 204, 0.5);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover {
  border-color: var(--accent);
  background: rgba(58, 166, 185, 0.12);
  --btn-fg: var(--accent-deep);
  box-shadow: 0 8px 18px -10px rgba(6,17,20,0.3);
}

.btn--onDark {
  --btn-bg: #fff;
  --btn-fg: var(--ink-900);
}
.btn--onDark:hover { box-shadow: 0 12px 26px -10px rgba(0,0,0,0.55); }

.btn--outlineLight {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255,255,255,0.32);
  box-shadow: none;
}
.btn--outlineLight:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
}

.btn--lg { padding: 1rem 2rem; font-size: var(--step-1); }
.btn .ico { width: 1.05em; height: 1.05em; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-row--center { justify-content: center; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-deep);
}
.textlink .ico { transition: transform 0.2s ease; width: 1em; height: 1em; }
.textlink:hover .ico { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 15, 18, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(7, 15, 18, 0.92);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 4.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--heading);
  margin-right: auto;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: grid; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.015em;
}
.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 0.15rem; }
.nav a {
  position: relative;
  padding: 0.55rem 0.85rem;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.16s ease, background 0.16s ease;
}
.nav a:hover { color: var(--accent-deep); background: rgba(58, 166, 185, 0.12); }
.nav a[aria-current="page"] { color: var(--accent-deep); font-weight: 600; }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.header-cta { display: inline-flex; }

/* De knop binnen .nav hoort alleen bij het mobiele menu. Op desktop zou hij
   naast .header-cta een tweede "Afspraak boeken" opleveren. */
@media (min-width: 1081px) {
  .nav > .btn { display: none; }
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease, background 0.15s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease, top 0.22s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed;
    inset: 4.6rem 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 1rem var(--gutter) 1.6rem;
    background: var(--surface-1);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 0.8rem 0.9rem; font-size: 1.05rem; white-space: normal; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav .btn { margin-top: 0.75rem; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90rem 40rem at 78% -14%, rgba(58,166,185,0.18), transparent 62%),
    radial-gradient(60rem 34rem at -8% 8%, rgba(191,160,106,0.10), transparent 58%),
    linear-gradient(180deg, var(--surface-1) 0%, var(--surface-0) 78%);
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(3.5rem, 8vw, 6rem);
  border-bottom: 1px solid var(--line-soft);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 65%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 65%);
}
.hero > .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em {
  font-style: italic;
  color: var(--accent-deep);
}
.hero .lede { max-width: 34rem; margin-bottom: 1.9rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem 0.4rem 0.45rem;
  margin-bottom: 1.5rem;
  border-radius: var(--r-pill);
  background: rgba(58, 166, 185, 0.10);
  border: 1px solid rgba(58, 166, 185, 0.35);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--accent-deep);
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 1.4rem; height: 1.4rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}
.hero-badge .dot svg { width: 0.8rem; height: 0.8rem; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--text-soft);
}
.hero-points li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-points svg { width: 1rem; height: 1rem; color: var(--accent); flex: none; }

/* Hero visueel */
.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(155deg, var(--surface-3), var(--surface-1));
  border: 1px solid var(--line);
  color: #fff;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 26rem; height: 26rem;
  background: radial-gradient(circle, rgba(58,166,185,0.42), transparent 66%);
  z-index: -1;
}
.hero-card h2 {
  color: #fff;
  font-size: var(--step-2);
  margin-bottom: 0.4rem;
}
.hero-card > p { color: rgba(255,255,255,0.68); font-size: var(--step--1); }

.mini-prices {
  width: 100%;
  margin: 1.6rem 0 0;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.mini-prices thead th {
  padding: 0 0 0.6rem;
  font-size: var(--step--1);
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-align: right;
}
.mini-prices tbody th,
.mini-prices td { padding: 0.9rem 0; border-top: 1px solid rgba(255,255,255,0.12); }
.mini-prices tbody th { font-weight: 600; text-align: left; padding-right: 0.75rem; }
.mini-prices td {
  width: 3.6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal-200);
  text-align: right;
  white-space: nowrap;
}
.mini-prices td.vast { width: auto; }
.mini-prices .vast-inner { display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; }
.mini-prices .vast-tag {
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
@media (max-width: 26rem) {
  .mini-prices td { width: 3rem; font-size: 1.05rem; }
  .mini-prices tbody th { font-size: var(--step--1); }
  .mini-prices .vast-tag { font-size: 0.7rem; padding: 0.15rem 0.5rem; }
}
.hero-card .note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: var(--step--1);
  color: rgba(255,255,255,0.62);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.hero-card .note svg { width: 1.1rem; height: 1.1rem; color: var(--sand); flex: none; margin-top: 0.15rem; }

/* Page hero (binnenpagina's) */
.pagehead {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.25rem) clamp(2.5rem, 5vw, 3.75rem);
  background:
    radial-gradient(70rem 30rem at 82% -30%, rgba(58,166,185,0.20), transparent 60%),
    linear-gradient(180deg, var(--surface-1), var(--surface-0));
  border-bottom: 1px solid var(--line-soft);
}
.pagehead .wrap { position: relative; z-index: 1; }
.pagehead h1 { max-width: 20ch; }
.pagehead .lede { max-width: 48rem; margin-top: 1.15rem; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: var(--step--1);
  color: var(--text-faint);
  margin-bottom: 1.1rem;
}
.crumbs a { color: var(--text-soft); text-decoration: none; }
.crumbs a:hover { color: var(--accent-deep); text-decoration: underline; }
.crumbs span[aria-hidden] { opacity: 0.5; }

/* ---------- Trustbar ---------- */
.trustbar {
  border-block: 1px solid var(--line);
  background: var(--surface-1);
}
.trustbar ul {
  list-style: none;
  margin: 0;
  padding: 1.35rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.1rem 1.75rem;
}
.trustbar li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text-soft);
}
.trustbar svg { width: 1.35rem; height: 1.35rem; color: var(--accent); flex: none; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.2vw, 1.7rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr)); }

.card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card h3 { margin-bottom: 0.55rem; }
.card p { color: var(--text-soft); }

.card--lift:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 166, 185, 0.45);
  box-shadow: var(--shadow-md);
}

.card-ico {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: rgba(58, 166, 185, 0.14);
  color: var(--accent-deep);
  margin-bottom: 1.1rem;
}
.card-ico svg { width: 1.45rem; height: 1.45rem; }

/* Price cards */
.price-card { display: flex; flex-direction: column; }
.price-card .card-ico { background: linear-gradient(140deg, rgba(58,166,185,0.24), rgba(58,166,185,0.08)); }
.price-card.is-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}
.price-card .tag {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 0.6rem;
}
.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.price-list .dur { color: var(--text-soft); font-size: var(--step--1); font-weight: 500; }
.price-list .amt {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}
.price-card > p:first-of-type { flex: 1; }
.price-card .btn { margin-top: 1.4rem; width: 100%; }

/* Split section */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--top { align-items: start; }

.portrait {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(150deg, var(--surface-3), var(--surface-1));
  border: 1px solid var(--line);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-lg);
}
.portrait::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 24rem; height: 24rem;
  background: radial-gradient(circle, rgba(191,160,106,0.32), transparent 66%);
  z-index: -1;
}
.portrait img {
  width: clamp(4.5rem, 9vw, 6rem);
  border-radius: var(--r-md);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}
.portrait h3 { color: #fff; font-size: var(--step-2); }
.portrait .role {
  color: var(--teal-200);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0.5rem 0 1.1rem;
}
.portrait p { color: rgba(255,255,255,0.72); }
.portrait dl {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  gap: 1.25rem;
}
.portrait dt {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.portrait dd {
  margin: 0.3rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.8rem; }
.checklist li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--text-soft);
}
.checklist svg { width: 1.35rem; height: 1.35rem; color: var(--accent); margin-top: 0.15rem; }
.checklist strong { color: var(--text-strong); font-weight: 600; }

/* Numbered steps */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; gap: 1.25rem; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1rem;
  align-items: start;
}
.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: rgba(58, 166, 185, 0.12);
  border: 1px solid var(--teal-700);
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.steps h3 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 700; margin-bottom: 0.2rem; }
.steps p { color: var(--text-soft); font-size: 0.97rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: start;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; }
.info-item {
  display: grid;
  grid-template-columns: 2.9rem 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.info-item .ico-box {
  width: 2.9rem; height: 2.9rem;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(58, 166, 185, 0.14);
  color: var(--accent-deep);
}
.info-item .ico-box svg { width: 1.3rem; height: 1.3rem; }
.info-item dt {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.info-item dd { margin: 0; font-weight: 600; color: var(--text-strong); }
.info-item dd a { color: inherit; text-decoration: none; }
.info-item dd a:hover { color: var(--accent-deep); text-decoration: underline; }
.info-item dd .sub { display: block; font-weight: 400; color: var(--text-soft); font-size: 0.93rem; }

/* Form */
.form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.35rem);
  box-shadow: var(--shadow-md);
}
.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 1rem;
}
.field { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.field > label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-strong);
}
.field .req { color: var(--accent-strong); }
.field .hint { font-size: 0.82rem; color: var(--text-faint); font-weight: 400; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface-1);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--teal-600); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: var(--surface-2);
  border-color: var(--accent);
  box-shadow: var(--ring);
}
.field textarea { min-height: 8.5rem; resize: vertical; }

/* Selects: native pijl vervangen door een eigen chevron */
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238AD8E4' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 1rem;
}
.field select::-ms-expand { display: none; }
.field select option {
  background: var(--surface-2);
  color: var(--text);
}

/* Twee velden naast elkaar: als het ene label afbreekt, bleven de invoervelden
   niet meer op één lijn staan. Uitlijnen op de onderkant lost dat op. */
.field-row { align-items: end; }
.field-row .field { margin-bottom: 0; }
.field-row + .field-row,
.field-row + .field,
.field-row + .booking-price { margin-top: 1rem; }
.field-note {
  font-size: 0.88rem;
  color: var(--text-soft);
  background: rgba(58, 166, 185, 0.10);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 0.9rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 1.25rem;
}
.field-note ul { margin: 0.4rem 0 0; padding-left: 1.1rem; }
.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.form-foot p { font-size: 0.85rem; color: var(--text-faint); }

.map-frame {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface-2);
}
.map-frame iframe { width: 100%; height: 260px; border: 0; }

/* ---------- Voorwaarden ---------- */
.legal-layout {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 900px) { .legal-layout { grid-template-columns: 1fr; } }

.toc {
  position: sticky;
  top: 6.2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) { .toc { position: static; } }
.toc h2 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.1rem; }
.toc a {
  display: block;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--text-soft);
  text-decoration: none;
  border-left: 2px solid transparent;
}
.toc a:hover { background: rgba(58, 166, 185, 0.12); color: var(--accent-deep); }
.toc a.is-active {
  color: var(--accent-deep);
  font-weight: 600;
  background: rgba(58, 166, 185, 0.14);
  border-left-color: var(--accent);
}

.prose { max-width: 46rem; }
.prose h2 {
  font-size: var(--step-2);
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 1.9rem;
  color: var(--text-strong);
}
.prose p, .prose ul, .prose ol { margin-top: 0.85rem; color: var(--text-soft); }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: 0.4rem; }
.prose li::marker { color: var(--accent); }

.callout {
  margin-top: 1.75rem;
  border: 1px solid rgba(58, 166, 185, 0.32);
  background: rgba(58, 166, 185, 0.09);
  border-radius: var(--r-md);
  padding: 1.35rem 1.5rem;
}
.callout h3 { margin-top: 0; color: var(--accent-deep); }
.callout p { color: var(--text-soft); }
.callout--warn {
  border-color: rgba(191, 160, 106, 0.38);
  background: rgba(191, 160, 106, 0.10);
}
.callout--warn h3 { color: #E0C08A; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--surface-2), var(--surface-0) 68%);
  color: #fff;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -55% auto auto -12%;
  width: 34rem; height: 34rem;
  background: radial-gradient(circle, rgba(58,166,185,0.36), transparent 66%);
  z-index: -1;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -10% -60% auto;
  width: 30rem; height: 30rem;
  background: radial-gradient(circle, rgba(191,160,106,0.22), transparent 66%);
  z-index: -1;
}
.cta-band .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 2rem;
  align-items: center;
  padding-block: clamp(3rem, 6vw, 4.75rem);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.72); margin-top: 0.9rem; max-width: 34rem; }
.cta-band .eyebrow { color: var(--teal-200); }
.cta-band .btn-row { justify-content: flex-start; }
@media (min-width: 60rem) { .cta-band .btn-row { justify-content: flex-end; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.66);
  font-size: 0.95rem;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(9rem, 1fr));
  gap: 2.25rem;
  padding-block: clamp(2.75rem, 5vw, 4rem);
}
.site-footer .brand { color: #fff; margin-right: 0; }
.site-footer .brand-sub { color: rgba(255,255,255,0.45); }
.footer-about { margin-top: 1.1rem; max-width: 28rem; }

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.9rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.socials { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.socials a {
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.8);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.socials svg { width: 1.1rem; height: 1.1rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

@media print {
  .site-header, .cta-band, .site-footer, .toc, .skip-link { display: none !important; }
  body { background: #fff; }
  .prose { max-width: none; }
}

/* ==========================================================================
   Motion layer
   ========================================================================== */

/* View transitions tussen pagina's (progressive enhancement) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out 0.22s ease both; }
::view-transition-new(root) { animation: vt-in 0.34s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-6px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(10px); } }

/* ---------- Scroll-voortgangsbalk ---------- */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 120;
  background: linear-gradient(90deg, var(--accent), var(--teal-600) 55%, var(--sand));
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
  pointer-events: none;
}
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    animation: progress-grow linear both;
    animation-timeline: scroll(root block);
  }
  @keyframes progress-grow { to { transform: scaleX(1); } }
}

/* ---------- Hero: aurora ---------- */
.hero { isolation: isolate; }
.aurora {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.aurora span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  will-change: transform;
}
.aurora span:nth-child(1) {
  width: 32rem; height: 32rem;
  top: -14rem; right: -8rem;
  background: radial-gradient(circle, rgba(58,166,185,0.55), transparent 68%);
  animation: drift-a 22s ease-in-out infinite alternate;
}
.aurora span:nth-child(2) {
  width: 26rem; height: 26rem;
  bottom: -13rem; left: -6rem;
  background: radial-gradient(circle, rgba(191,160,106,0.42), transparent 68%);
  animation: drift-b 27s ease-in-out infinite alternate;
}
.aurora span:nth-child(3) {
  width: 20rem; height: 20rem;
  top: 28%; left: 42%;
  background: radial-gradient(circle, rgba(124,206,218,0.4), transparent 68%);
  animation: drift-c 19s ease-in-out infinite alternate;
}
@keyframes drift-a { to { transform: translate3d(-5rem, 3.5rem, 0) scale(1.14); } }
@keyframes drift-b { to { transform: translate3d(4rem, -3rem, 0) scale(1.18); } }
@keyframes drift-c { to { transform: translate3d(-3.5rem, -4.5rem, 0) scale(0.86); } }

/* Zachte parallax/fade van de hero bij scrollen */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-grid {
      animation: hero-fade linear both;
      animation-timeline: view(block);
      animation-range: exit 10% exit 90%;
    }
    @keyframes hero-fade {
      to { opacity: 0.15; transform: translateY(-2.5rem) scale(0.975); }
    }
  }
}

/* ---------- Entree-animatie bij laden ---------- */
@media (prefers-reduced-motion: no-preference) {
  .enter {
    opacity: 0;
    animation: enter-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--d, 0ms);
  }
  .enter--right { animation-name: enter-right; }
  .enter--scale { animation-name: enter-scale; }
}
@keyframes enter-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes enter-right { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
@keyframes enter-scale { from { opacity: 0; transform: translateY(26px) scale(0.965); } to { opacity: 1; transform: none; } }

/* Kop woord voor woord */
.reveal-words { display: inline; }
/* Voorkomt een flits van de ongesplitste kop. Het safety-net toont de kop
   alsnog wanneer main.js niet laadt of vastloopt. */
@media (prefers-reduced-motion: no-preference) {
  .js [data-words]:not(.reveal-words) {
    opacity: 0;
    animation: safety-show 0s linear 1.2s forwards;
  }
}
@keyframes safety-show { to { opacity: 1; } }
.reveal-words .word {
  display: inline-block;
  white-space: pre;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal-words .word {
    opacity: 0;
    transform: translateY(0.55em) rotate(2deg);
    animation: word-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--i, 0) * 55ms + 120ms);
  }
}
@keyframes word-in { to { opacity: 1; transform: none; } }

/* Glanzende highlight in de kop */
.shine {
  background: linear-gradient(100deg, var(--teal-300) 12%, var(--teal-200) 34%, #F2DFB8 52%, var(--teal-200) 68%, var(--teal-300) 88%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  .shine { animation: shine-sweep 9s ease-in-out 1.4s infinite; }
}
@keyframes shine-sweep {
  0%, 62%, 100% { background-position: 130% 0; }
  22%           { background-position: -30% 0; }
}

/* Pulserende badge-stip */
.hero-badge .dot { position: relative; }
@media (prefers-reduced-motion: no-preference) {
  .hero-badge .dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--accent);
    animation: ping 2.8s cubic-bezier(0, 0, 0.2, 1) infinite;
  }
}
@keyframes ping {
  0%        { transform: scale(1);   opacity: 0.7; }
  70%, 100% { transform: scale(1.9); opacity: 0; }
}

/* ---------- Tilt op de herokaart ---------- */
.tilt-wrap { perspective: 1100px; }
.tilt {
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.tilt.is-tilting { transition: transform 0.08s linear; }
.tilt-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(22rem 22rem at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.16), transparent 62%);
  transition: opacity 0.35s ease;
}
.tilt:hover .tilt-glare { opacity: 1; }
@media (hover: none), (prefers-reduced-motion: reduce) {
  .tilt { transform: none !important; }
  .tilt-glare { display: none; }
}

/* Tariefregels die een voor een binnenkomen */
@media (prefers-reduced-motion: no-preference) {
  .mini-prices tbody tr {
    opacity: 0;
    animation: enter-right 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(560ms + var(--i, 0) * 70ms);
  }
}
.mini-prices tbody tr { transition: background 0.2s ease; }
.mini-prices tbody tr:hover { background: rgba(255,255,255,0.05); }

/* ---------- Reveal-varianten ---------- */
.reveal-left  { opacity: 0; transform: translateX(-26px); }
.reveal-right { opacity: 0; transform: translateX(26px); }
.reveal-zoom  { opacity: 0; transform: scale(0.95); }
.reveal-left, .reveal-right, .reveal-zoom {
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.is-visible, .reveal-right.is-visible, .reveal-zoom.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-left, .reveal-right, .reveal-zoom { opacity: 1; transform: none; }
}

/* Onderstreping die zichzelf tekent */
.draw {
  position: relative;
  display: inline-block;
}
.draw::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.12em;
  height: 0.09em;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--sand));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.is-visible .draw::after { transform: scaleX(1); }

/* ---------- Kaart-interacties ---------- */
.card--lift { overflow: hidden; }
.card--lift::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(18rem 18rem at var(--mx, 50%) var(--my, 0%), rgba(58,166,185,0.12), transparent 60%);
  transition: opacity 0.4s ease;
}
.card--lift:hover::after { opacity: 1; }

.card-ico { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, color 0.3s ease; }
.card--lift:hover .card-ico {
  transform: translateY(-3px) rotate(-6deg) scale(1.06);
  background: var(--accent);
  color: #fff;
}

.price-card .amt { transition: color 0.25s ease, transform 0.25s ease; }
.card--lift:hover .price-list .amt { color: var(--accent-deep); }

/* Knoppen met veegeffect */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-102%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover::before { transform: translateX(102%) skewX(-18deg); }
.btn--ghost::before { background: linear-gradient(90deg, transparent, rgba(58,166,185,0.18), transparent); }

/* Trustbar-iconen ploppen binnen */
.trustbar li { transition: transform 0.25s ease, color 0.25s ease; }
.trustbar li:hover { transform: translateY(-2px); color: var(--accent-deep); }
.trustbar svg { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.trustbar li:hover svg { transform: scale(1.18) rotate(-6deg); }

/* ---------- Statistieken met telanimatie ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat .val {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.1rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
}
.stat .lbl {
  margin-top: 0.55rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Klantenkaart ---------- */
.loyalty {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.stamp-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
}
.stamp-dot {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(58, 166, 185, 0.10);
  border: 1px dashed var(--teal-600);
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, color 0.25s ease;
}
.stamp-dot:hover { transform: scale(1.1); background: rgba(58, 166, 185, 0.22); }
.stamp-dot--reward {
  background: var(--accent);
  border: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 8px 20px -8px rgba(33,128,143,0.7);
}
@media (prefers-reduced-motion: no-preference) {
  .is-visible .stamp-dot {
    animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: calc(var(--i, 0) * 65ms);
  }
}
@keyframes pop-in { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: none; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.75rem; }
.faq details {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.faq details[open] { border-color: rgba(58, 166, 185, 0.40); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-weight: 600;
  color: var(--text-strong);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: rgba(58, 166, 185, 0.10); color: var(--accent-deep); }
.faq summary::after {
  content: "";
  width: 0.62rem; height: 0.62rem;
  margin-left: auto;
  flex: none;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 1px;
  opacity: 0.55;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}
.faq details[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
  opacity: 1;
}
.faq .answer { overflow: hidden; }
.faq .answer p {
  padding: 0 1.3rem 1.25rem;
  color: var(--text-soft);
  margin: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .faq details[open] .answer { animation: slide-down 0.34s cubic-bezier(0.22, 1, 0.36, 1); }
}
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Loper onderaan de hero ---------- */
.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2.5rem;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text-faint);
  text-decoration: none;
}
.scroll-hint .mouse {
  width: 1.35rem; height: 2.1rem;
  border: 2px solid currentColor;
  border-radius: 99px;
  position: relative;
  opacity: 0.6;
}
.scroll-hint .mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 0.35rem;
  width: 3px; height: 6px;
  margin-left: -1.5px;
  border-radius: 99px;
  background: currentColor;
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-hint .mouse::after { animation: wheel 1.9s ease-in-out infinite; }
}
@keyframes wheel {
  0%, 100% { transform: translateY(0);     opacity: 1; }
  60%      { transform: translateY(0.6rem); opacity: 0; }
}
.scroll-hint:hover { color: var(--accent-deep); }

/* ==========================================================================
   Afspraak-dialoog
   ========================================================================== */
.booking {
  /* inset + margin:auto centreert de dialoog betrouwbaar in beeld */
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(42rem, calc(100vw - 2rem));
  max-height: min(88dvh, 52rem);
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg-elevated);
  color: var(--text);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* display:flex hierboven overrulet de UA-regel dialog:not([open]){display:none},
   want auteurstijlen winnen altijd van de browserstijl. Zonder deze regel blijft
   de dialoog altijd zichtbaar en is hij niet weg te klikken. */
.booking:not([open]) { display: none; }

.booking::backdrop {
  background: rgba(6, 17, 20, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
@media (prefers-reduced-motion: no-preference) {
  .booking[open] { animation: dlg-in 0.32s cubic-bezier(0.22, 1, 0.36, 1); }
  .booking[open]::backdrop { animation: fade-in 0.32s ease; }
}
@keyframes dlg-in {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

/* Kopblok */
.booking-head {
  position: relative;
  flex: none;
  padding: clamp(1.5rem, 4vw, 2.1rem) clamp(1.35rem, 4vw, 2.1rem) 1.35rem;
  background:
    radial-gradient(34rem 14rem at 88% -40%, rgba(58,166,185,0.22), transparent 62%),
    linear-gradient(180deg, var(--surface-3), var(--surface-2));
  border-bottom: 1px solid var(--line);
}
.booking-head .eyebrow { margin-bottom: 0.6rem; }
.booking-head h2 { font-size: var(--step-2); }
.booking-head p {
  margin-top: 0.65rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  max-width: 34rem;
}

.booking-close-form { position: absolute; top: 0; right: 0; z-index: 2; }
.booking-close {
  margin: 0.85rem 0.85rem 0 0;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.booking-close svg { width: 1.05rem; height: 1.05rem; }
.booking-close:hover {
  background: var(--accent-strong);
  color: #fff;
  border-color: var(--accent-strong);
  transform: rotate(90deg);
}

/* Formulier */
.booking-body {
  padding: clamp(1.35rem, 4vw, 2.1rem);
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}
.booking-body .field:last-of-type { margin-bottom: 0; }

.booking-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.25rem 0 1.15rem;
  padding: 0.7rem 0.95rem;
  border-radius: var(--r-sm);
  background: rgba(58, 166, 185, 0.10);
  border: 1px solid rgba(58, 166, 185, 0.30);
  font-size: 0.92rem;
  color: var(--text-soft);
}
.booking-price strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-deep);
  margin-left: auto;
  letter-spacing: -0.02em;
}

.booking-error {
  margin: 0 0 1rem;
  padding: 0.7rem 0.95rem;
  border-radius: var(--r-sm);
  background: rgba(214, 106, 106, 0.14);
  border: 1px solid rgba(214, 106, 106, 0.38);
  color: #F0A8A8;
  font-size: 0.9rem;
  font-weight: 500;
}

.booking-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}
/* .btn staat standaard op nowrap; in deze twee knoppen past het label dan niet.
   Hier mag het afbreken en blijft het gecentreerd. */
.booking-actions .btn {
  width: 100%;
  white-space: normal;
  text-align: center;
  padding-inline: 1.1rem;
  line-height: 1.3;
}
.booking-actions .btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--wa { --btn-bg: #25D366; --btn-fg: #06140B; }
.btn--wa:hover { box-shadow: 0 10px 22px -8px rgba(37, 211, 102, 0.55); }

.booking-foot {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-faint);
}

/* Ongeldig veld na een verzendpoging */
.booking .field input:user-invalid,
.booking .field select:user-invalid,
.booking .field.has-error input,
.booking .field.has-error select {
  border-color: #D98A8A;
  box-shadow: 0 0 0 3px rgba(217, 138, 138, 0.22);
}

@media (max-width: 34rem) {
  .booking {
    width: 100vw;
    max-width: 100vw;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
    border: 0;
  }
  .booking-body { max-height: none; }
}

.booking-hint {
  display: flex;
  gap: 0.6rem;
  margin: 0 0 1.15rem;
  padding: 0.8rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(191, 160, 106, 0.09);
  border: 1px solid rgba(191, 160, 106, 0.28);
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-soft);
}
.booking-hint::before {
  content: "\24D8";
  color: var(--sand);
  font-size: 1rem;
  line-height: 1.3;
}

/* ==========================================================================
   Foto's
   ========================================================================== */
picture { display: block; }

/* Hero met sfeerfoto eronder */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.4;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,15,18,0.55) 0%, rgba(7,15,18,0.82) 55%, var(--surface-0) 100%),
    linear-gradient(100deg, rgba(7,15,18,0.9) 12%, rgba(7,15,18,0.35) 62%);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-photo img { animation: ken-burns 34s ease-in-out infinite alternate; }
}
@keyframes ken-burns {
  from { transform: scale(1)    translateY(0); }
  to   { transform: scale(1.09) translateY(-1.5%); }
}

/* Foto boven in een kaart */
.card-media {
  margin: calc(clamp(1.4rem, 2.4vw, 1.9rem) * -1);
  margin-bottom: 1.35rem;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: var(--surface-1);
}
.card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
  filter: saturate(0.92);
}
.card--lift:hover .card-media img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.price-card .card-media + .card-ico {
  margin-top: -3.4rem;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

/* Portretfoto in de donkere kaart */
.portrait { padding: 0; overflow: hidden; }
.portrait-media { position: relative; }
.portrait-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}
.portrait-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, var(--surface-1) 92%);
}
.portrait-body {
  position: relative;
  margin-top: -3.5rem;
  padding: 0 clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.25rem);
}

/* Losse beeldbanden */
.fig {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.fig img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.fig--tall img { aspect-ratio: 4 / 5; }
.fig figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.35rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(7,15,18,0.88));
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}

/* Volle-breedte beeldband tussen secties */
.band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.band img {
  width: 100%;
  height: clamp(16rem, 34vw, 26rem);
  object-fit: cover;
  object-position: center 45%;
}
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,15,18,0.7), rgba(7,15,18,0.35) 45%, rgba(7,15,18,0.85));
}
.band-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--gutter);
  z-index: 1;
}
.band-text p {
  max-width: 34rem;
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-style: italic;
  color: #fff;
  text-wrap: balance;
}

/* NGS-keurmerk */
.ngs-logo img {
  width: clamp(9rem, 18vw, 12rem);
  height: auto;
  border-radius: 10px;
}
.ngs-mark {
  display: inline-flex;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  /* Zuiver wit, niet 0.94: het lichte NGS-logo heeft een witte achtergrond
     en zou anders als een lichter vlak binnen het kader zichtbaar zijn. */
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.ngs-mark img { width: clamp(8rem, 16vw, 10.5rem); height: auto; display: block; }
/* Het branche-logo is veel breder en lager dan het keurmerk. */
.ngs-mark--breed img { width: clamp(11rem, 24vw, 15rem); }

/* Klantenkaart-foto */
.kaart-foto img {
  width: 100%;
  max-width: 24rem;
  height: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.kaart-foto img:hover { transform: rotate(-1.5deg) scale(1.02); }

/* Merk in de header en footer */
.brand picture { flex: none; }
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: none;
}

/* ==========================================================================
   Accordeon (opleidingen)
   ========================================================================== */
.accordeon { display: grid; gap: 0.7rem; }

.accordeon details {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.accordeon details[open] {
  border-color: rgba(58, 166, 185, 0.40);
  box-shadow: var(--shadow-md);
}

.accordeon summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.35rem;
  font-weight: 600;
  font-size: var(--step-0);
  color: var(--text-strong);
  cursor: pointer;
  list-style: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.accordeon summary::-webkit-details-marker { display: none; }
.accordeon summary:hover { background: rgba(58, 166, 185, 0.08); color: var(--accent-deep); }
.accordeon details[open] summary { color: var(--accent-deep); }

/* Zelfde chevron als bij de veelgestelde vragen op de homepage */
.accordeon summary::after {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  margin-left: auto;
  flex: none;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 1px;
  opacity: 0.55;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}
.accordeon details[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
  opacity: 1;
}

.accordeon-tekst {
  padding: 0 1.35rem 1.3rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.1rem;
  margin-top: -1px;
}
.accordeon-tekst p { color: var(--text-soft); }
.accordeon-tekst p + p { margin-top: 0.85rem; }

@media (prefers-reduced-motion: no-preference) {
  .accordeon details[open] .accordeon-tekst {
    animation: acc-open 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@keyframes acc-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
