/* ==================================================================
   Hurenkamp Padel — design system
   Premium & sportief: diep zwart + goud accent, off-white tekst,
   strak, veel ruimte, subtiel glansverloop. Donker thema.
   Vanilla CSS, geen build-stap, geen externe requests.
   ================================================================== */

/* ---- 1. Design tokens ------------------------------------------- */
:root {
  /* Kleuren — zwart & goud */
  --bg:        #0b0b0d;   /* diep zwart — paginabasis */
  --bg-soft:   #101013;   /* iets lichtere sectie */
  --surface:   #17171c;   /* kaarten */
  --surface-2: #1e1e24;   /* verhoogde kaarten / hover */
  --ink:       #f5f3ee;   /* hoofdtekst (warm wit) */
  --ink-soft:  #a8a399;   /* subtekst */
  --ink-dim:   #6f6b62;   /* zeer subtiel */
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.14);

  --gold:      #d8b24c;   /* primair goud */
  --gold-hi:   #ecce77;   /* lichte glans */
  --gold-deep: #b3862d;   /* diep goud */
  --gold-soft: rgba(216,178,76,.12);
  --gold-line: rgba(216,178,76,.30);
  --gold-grad: linear-gradient(135deg, #ecce77 0%, #d8b24c 45%, #b3862d 100%);

  --on-gold:   #16130a;   /* tekst op goud */

  /* Typografie */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;

  /* Vorm & ritme — editorial: strak & rechthoekig */
  --radius:    4px;
  --radius-lg: 6px;
  --radius-sm: 3px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 2px 10px rgba(0,0,0,.35);
  --shadow-md: 0 10px 30px rgba(0,0,0,.45);
  --shadow-lg: 0 26px 60px rgba(0,0,0,.55);
  --glow:      0 0 0 1px var(--gold-line), 0 14px 40px rgba(216,178,76,.14);
  --ring: 0 0 0 3px rgba(216,178,76,.4);

  --wrap: 1160px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
}

/* ---- 2. Reset / base -------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 1.5rem + 3.2vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem); }
p  { margin: 0 0 1rem; }
a  { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hi); }
img, svg, video { max-width: 100%; display: block; height: auto; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2em; }
li { margin: .3em 0; }
strong { font-weight: 650; color: var(--ink); }
::selection { background: rgba(216,178,76,.28); color: #fff; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---- 3. Layout helpers ------------------------------------------ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: var(--section-y); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--edge { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.narrow { max-width: 720px; }
.center { text-align: center; margin-inline: auto; }
.mt-0 { margin-top: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px;
}
.center .eyebrow::before { display: none; }
.section__intro { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.center.section__intro { margin-inline: auto; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.gold { color: var(--gold); }
.gold-text {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---- 4. Buttons ------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font: inherit; font-weight: 650; line-height: 1;
  padding: .95rem 1.6rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--gold-grad); color: var(--on-gold); box-shadow: 0 10px 24px rgba(216,178,76,.24); }
.btn--primary:hover { color: var(--on-gold); box-shadow: 0 14px 30px rgba(216,178,76,.34); filter: brightness(1.05); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.btn--gold-outline { background: transparent; color: var(--gold); border-color: var(--gold-line); }
.btn--gold-outline:hover { border-color: var(--gold); color: var(--gold-hi); background: var(--gold-soft); }
.btn--dark { background: #000; color: var(--ink); border-color: var(--line-2); }
.btn--dark:hover { color: var(--gold); border-color: var(--gold-line); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---- 5. Header / nav -------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,11,13,.72);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); background: rgba(11,11,13,.9); }
.nav { display: flex; align-items: center; gap: 1.25rem; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.brand:hover { text-decoration: none; color: var(--ink); }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name b { font-size: 1.05rem; font-weight: 800; letter-spacing: .02em; }
.brand__name span { font-size: .68rem; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); }

.nav__spacer { flex: 1; }
.nav__menu { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-block; padding: .55rem .75rem; border-radius: 8px;
  color: var(--ink); font-weight: 550; font-size: .97rem; white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.nav__link:hover { text-decoration: none; background: rgba(255,255,255,.05); color: var(--gold); }
.nav__link[aria-current="page"] { color: var(--gold); }
.nav__actions { display: flex; align-items: center; gap: .7rem; }
.nav__tel { display: inline-flex; align-items: center; gap: .45rem; font-weight: 650; color: var(--ink); white-space: nowrap; }
.nav__tel svg { width: 1.1em; height: 1.1em; color: var(--gold); }
.nav__tel:hover { text-decoration: none; color: var(--gold); }

.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2);
  background: var(--surface); border-radius: 10px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after  { transform: translateY(4px); }

/* Dropdown */
.has-sub { position: relative; }
.sub {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: .5rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: translateY(0); }
.sub a { display: block; padding: .6rem .75rem; border-radius: 8px; color: var(--ink); font-size: .95rem; font-weight: 550; }
.sub a:hover { background: rgba(255,255,255,.05); text-decoration: none; color: var(--gold); }

/* ---- 6. Hero ---------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 78% 15%, rgba(216,178,76,.16), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(216,178,76,.07), transparent 60%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero__title { margin-bottom: 1rem; }
.hero__title .accent { color: var(--gold); }
.hero__text { font-size: 1.18rem; color: var(--ink-soft); max-width: 40ch; }
.hero__cta { margin-top: 1.9rem; }
.hero__usps { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: 1.9rem; padding: 0; list-style: none; }
.hero__usps li { display: flex; align-items: center; gap: .5rem; font-weight: 550; font-size: .96rem; color: var(--ink); }
.hero__usps svg { width: 1.15em; height: 1.15em; color: var(--gold); flex: none; }

.hero__media { position: relative; }
.hero__media .media { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--line); }
.hero__badge {
  position: absolute; left: -18px; bottom: 28px; background: var(--surface);
  border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: .9rem 1.1rem; display: flex; align-items: center; gap: .75rem; max-width: 260px;
}
.hero__badge .stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }
.hero__badge b { display: block; font-size: 1.05rem; color: var(--ink); }
.hero__badge small { color: var(--ink-soft); }

/* ---- 7. Media placeholder --------------------------------------- */
.media { position: relative; background: linear-gradient(135deg, #16161b, #202027); }
.media img, .media video { width: 100%; height: 100%; object-fit: cover; }
.media__ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem; text-align: center;
  color: var(--gold); padding: 1rem;
}
.media__ph svg { width: 42px; height: 42px; opacity: .6; }
.media__ph span { font-weight: 600; font-size: .95rem; color: var(--ink); }
.media__ph small { color: var(--ink-dim); font-size: .8rem; }

/* ---- 8. Trust bar ---------------------------------------------- */
.trustbar { border-block: 1px solid var(--line); background: var(--bg-soft); }
.trustbar__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; padding-block: 1.4rem; }
.trustbar__item { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--ink); font-size: .96rem; }
.trustbar__item svg { width: 1.4em; height: 1.4em; color: var(--gold); flex: none; }

/* ---- 9. Cards / grids ------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  display: flex; flex-direction: column;
}
a.card:hover { text-decoration: none; }
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-line); background: var(--surface-2); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; flex: none;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-line);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { color: var(--ink); margin-bottom: .4rem; font-size: 1.22rem; }
.card p { color: var(--ink-soft); margin-bottom: 1rem; }
.card__more {
  margin-top: auto; font-weight: 650; color: var(--gold);
  display: inline-flex; align-items: center; gap: .4rem;
}
.card--link:hover .card__more { gap: .65rem; }
.card__more svg { width: 1.05em; height: 1.05em; transition: transform .18s ease; }

/* ---- 10. Steps -------------------------------------------------- */
.steps { display: grid; gap: clamp(1rem, 2.5vw, 1.8rem); grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: .5rem; }
.step__num {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; color: var(--on-gold); background: var(--gold-grad); margin-bottom: 1rem;
  box-shadow: 0 8px 18px rgba(216,178,76,.22);
}
.step h3 { font-size: 1.12rem; }
.step p { color: var(--ink-soft); margin: 0; }

/* ---- 11. Feature list / split ----------------------------------- */
.feature { display: flex; gap: 1rem; }
.feature__ic {
  width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-line);
}
.feature__ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.feature p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media .media { aspect-ratio: 5 / 4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.checklist { list-style: none; padding: 0; margin: 1.2rem 0; }
.checklist li { display: flex; align-items: flex-start; gap: .65rem; margin: .6rem 0; color: var(--ink); font-weight: 500; }
.checklist svg { width: 1.35em; height: 1.35em; color: var(--gold); flex: none; margin-top: .1em; }

/* ---- 12. Prijzen (tarieven) ------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.2vw, 1.4rem); }
.price {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; position: relative;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.price:hover { transform: translateY(-4px); border-color: var(--gold-line); box-shadow: var(--shadow-md); }
.price--featured { border-color: var(--gold-line); box-shadow: var(--glow); background: linear-gradient(180deg, rgba(216,178,76,.06), var(--surface)); }
.price__tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: var(--on-gold); font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px;
  white-space: nowrap;
}
.price__people { display: flex; justify-content: center; gap: .2rem; color: var(--gold); margin-bottom: .8rem; }
.price__people svg { width: 22px; height: 22px; }
.price h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.price__sub { color: var(--ink-soft); font-size: .9rem; margin-bottom: 1rem; }
.price__amount { font-size: 2.6rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; color: var(--ink); margin-bottom: .2rem; }
.price__amount span { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.price__per { color: var(--ink-dim); font-size: .85rem; margin-bottom: 1.3rem; }
.price .btn { margin-top: auto; }
.price__note { text-align: center; color: var(--ink-soft); font-size: .95rem; margin-top: 1.6rem; }

/* ---- 13. Gallery ------------------------------------------------ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.7rem, 1.6vw, 1.1rem); }
.tile { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.tile .media { aspect-ratio: 4 / 3; }

/* ---- 14. Reviews ------------------------------------------------ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .75rem; }
.review p { color: var(--ink); font-size: 1.02rem; }
.review__who { margin-top: auto; display: flex; align-items: center; gap: .75rem; padding-top: 1rem; }
.review__av { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-line); display: grid; place-items: center; font-weight: 700; }
.review__who b { color: var(--ink); display: block; line-height: 1.1; }
.review__who small { color: var(--ink-soft); }

/* ---- 15. FAQ ---------------------------------------------------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); margin-bottom: .8rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 1.3rem; font-weight: 650; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--gold); line-height: 1; flex: none;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item .faq__a { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq__item .faq__a p:last-child { margin-bottom: 0; }

/* ---- 16. CTA band ---------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, #16130c, #221b0c);
  border: 1px solid var(--gold-line);
  color: var(--ink); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem);
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(216,178,76,.22), transparent 70%); border-radius: 50%;
}
.cta-band h2 { color: var(--ink); }
.cta-band h2 .accent { color: var(--gold); }
.cta-band p { color: var(--ink-soft); max-width: 52ch; }
.cta-band .btn-row { margin-top: 1.6rem; position: relative; }
.cta-band__grid { display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center; }

/* ---- 17. Page hero (interior pages) ----------------------------- */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 80% at 85% 0%, rgba(216,178,76,.1), transparent 60%);
}
.page-hero .wrap { position: relative; }
.crumbs { font-size: .88rem; color: var(--ink-soft); margin-bottom: 1rem; }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: var(--ink); }
.page-hero h1 { margin-bottom: .6rem; }
.page-hero .lead { max-width: 60ch; }

/* prose (legal + article) */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.4rem; }
.prose ul { padding-left: 1.2em; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* ---- 18. Contact ------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .info__ic { width: 48px; height: 48px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-line); }
.info-list .info__ic svg { width: 22px; height: 22px; }
.info-list b { display: block; color: var(--ink); }
.info-list a { color: var(--ink-soft); }
.info-list a:hover { color: var(--gold); }

/* ---- 19. Forms -------------------------------------------------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: clamp(1.4rem, 3vw, 2.2rem); }
.field { margin-bottom: 1.1rem; }
.field > label { display: block; font-weight: 600; color: var(--ink); margin-bottom: .4rem; font-size: .96rem; }
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: .85rem; margin-left: .3rem; }
.input, .textarea, .select {
  width: 100%; font: inherit; color: var(--ink); background: #0f0f13;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  padding: .8rem .95rem; transition: border-color .15s ease, box-shadow .15s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--ink-dim); }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--gold); box-shadow: var(--ring); }
.textarea { min-height: 130px; resize: vertical; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* radio/checkbox card group */
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice span {
  display: flex; align-items: center; gap: .6rem; padding: .85rem 1rem;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); font-weight: 550;
  color: var(--ink); cursor: pointer; transition: border-color .15s ease, background .15s ease;
  height: 100%;
}
.choice input:hover + span { border-color: var(--gold-line); }
.choice input:checked + span { border-color: var(--gold); background: var(--gold-soft); box-shadow: inset 0 0 0 1px var(--gold); }
.choice input:focus-visible + span { box-shadow: var(--ring); }

.check { display: flex; gap: .65rem; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.check input { margin-top: .25em; width: 1.1em; height: 1.1em; accent-color: var(--gold); flex: none; }
.check a { color: var(--gold); }

/* honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* form progress */
.form-progress { display: flex; gap: .5rem; margin-bottom: 1.4rem; }
.form-progress__step { flex: 1; height: 6px; border-radius: 999px; background: var(--line-2); transition: background .2s ease; }
.form-progress__step.is-active { background: var(--gold); }
.form-progress__step.is-done { background: var(--gold-deep); }
.step-label { font-weight: 650; color: var(--gold); font-size: .92rem; margin-bottom: 1rem; }
.form-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.form-error { background: rgba(180,40,40,.14); border: 1px solid rgba(220,80,80,.4); color: #f0a9a9; padding: .8rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: .95rem; }
.form-card p svg { width: 1.05em; height: 1.05em; vertical-align: -.15em; color: var(--gold); }

/* ---- 20. Footer ------------------------------------------------- */
.site-footer { background: #000; border-top: 1px solid var(--line); color: var(--ink-soft); padding-block: clamp(2.5rem, 5vw, 4rem) 1.5rem; }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-brand .brand__name b { color: var(--ink); }
.footer-brand p { color: var(--ink-soft); max-width: 34ch; margin-top: 1rem; }
.footer h4 { color: var(--ink); font-size: .95rem; letter-spacing: .04em; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: .5rem 0; }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact svg { width: 1.1em; height: 1.1em; color: var(--gold); flex: none; margin-top: .25em; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; font-size: .85rem; color: var(--ink-dim); }

/* ---- 21. Reveal animation --------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- 22. Responsive -------------------------------------------- */
@media (max-width: 960px) {
  .grid--3, .grid--4, .reviews, .gallery, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero__grid, .split, .contact-grid, .cta-band__grid { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .hero__media { max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .nav__menu, .nav__tel span { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__actions .btn { display: none; }

  /* Mobile menu overlay. .site-header heeft backdrop-filter → dit fixed
     kind rekent daartegen af; daarom expliciete hoogte i.p.v. inset. */
  .nav__menu {
    position: fixed; top: 74px; left: 0; right: 0;
    height: calc(100vh - 74px); height: calc(100dvh - 74px);
    background: var(--bg); z-index: 90;
    flex-direction: column; align-items: stretch; gap: .2rem; padding: 1.2rem;
    overflow-y: auto; border-top: 1px solid var(--line);
  }
  body.nav-open .nav__menu { display: flex; }
  .nav__menu .nav__link { padding: .85rem 1rem; font-size: 1.1rem; border-radius: 10px; }
  .sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 .5rem 1rem; background: transparent; }
  .has-sub > .nav__link::after { content: " ▾"; color: var(--gold); }
  body.nav-open .nav__mobile-cta { display: flex; margin-top: 1rem; }
}
.nav__mobile-cta { display: none; flex-direction: column; gap: .6rem; }

@media (max-width: 620px) {
  .grid--3, .grid--4, .grid--2, .reviews, .gallery, .steps, .two-col, .choice-grid, .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
  .btn-row .btn { width: 100%; }
  .form-nav .btn { flex: 1; }
}

/* ==================================================================
   23. EDITORIAL LAYER — herontwerp compositie/typografie
   Zelfde zwart+goud tokens, maar redactionele opmaak: mono-labels met
   index-nummers, gigantische uppercase display-type, asymmetrisch/offset,
   scherpe hoeken, volbleed banden. Overschrijft waar nodig (staat later
   in de cascade) en voegt nieuwe .ed-* componenten toe.
   ================================================================== */
body { overflow-x: hidden; }

/* -- Logo (wordmark) in header/footer --------------------------- */
.brand__logo { height: 48px; width: auto; display: block; }
.footer-brand .brand__logo { height: 132px; margin-bottom: .2rem; }
@media (max-width: 1024px) { .brand__logo { height: 40px; } }

/* -- Knoppen: strak rechthoekig, uppercase, letterspaced -------- */
.btn {
  border-radius: 2px; text-transform: uppercase;
  letter-spacing: .13em; font-size: .76rem; font-weight: 700;
  padding: 1.05rem 1.7rem;
}
.btn:hover { transform: none; }
.btn--lg { padding: 1.2rem 2.1rem; font-size: .82rem; }
.btn--primary { box-shadow: none; }
.btn--primary:hover { box-shadow: none; filter: brightness(1.06); }

/* -- Mono-label (eyebrow) met index-nummer ---------------------- */
.eyebrow, .label {
  display: inline-flex; align-items: baseline; gap: .7rem;
  font-family: var(--mono); font-weight: 500; font-size: .74rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
  margin: 0 0 1.4rem;
}
.eyebrow::before { display: none; }
.label__i, .eyebrow__i {
  color: var(--gold); font-weight: 600;
  border-bottom: 1px solid var(--gold-line); padding-bottom: .1em;
}

/* -- Editorial section-head (asymmetrisch, links uitgelijnd) ---- */
.ed-head { max-width: 940px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.ed-h2 {
  font-size: clamp(2rem, 1.2rem + 4vw, 4rem);
  line-height: .98; letter-spacing: -.02em; text-transform: uppercase;
  font-weight: 800; margin: 0;
}
.ed-h2 em, .ed-display em { font-style: normal; color: var(--gold); }
.ed-head .lead { margin-top: 1.3rem; max-width: 56ch; }
.ed-head--center { margin-inline: auto; text-align: left; }

/* -- HERO: volbleed, foto-overlay, gigantische type ------------- */
.ed-hero {
  position: relative; overflow: hidden;
  min-height: min(92vh, 860px); display: flex; align-items: flex-end;
  border-bottom: 1px solid var(--line); background: #0d0d10;
}
.ed-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(11,11,13,.45) 0%, rgba(11,11,13,.55) 45%, rgba(11,11,13,.92) 100%),
    radial-gradient(120% 80% at 72% 8%, rgba(216,178,76,.16), transparent 55%),
    linear-gradient(135deg, #15151b, #0c0c0f 70%);
  background-size: cover; background-position: center;
}
.ed-hero__bg--photo {
  background:
    linear-gradient(90deg, rgba(11,11,13,.94) 0%, rgba(11,11,13,.55) 52%, rgba(11,11,13,.28) 100%),
    linear-gradient(0deg, rgba(11,11,13,.9) 0%, rgba(11,11,13,.1) 55%),
    var(--hero-img) right center / cover no-repeat;
}
.ed-hero__tag {
  position: absolute; top: 1.4rem; right: 1.4rem; z-index: 2;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-dim);
  border: 1px solid var(--line-2); padding: .35rem .6rem; border-radius: 2px;
}
.ed-hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(2.4rem, 6vw, 4.5rem); }
.ed-display {
  font-size: clamp(2.7rem, 1rem + 8.5vw, 6.6rem);
  line-height: .9; letter-spacing: -.03em; text-transform: uppercase;
  font-weight: 800; margin: 0 0 clamp(1.6rem, 4vw, 2.6rem); color: var(--ink);
}
.ed-display__off { display: block; padding-left: clamp(0px, 16vw, 13rem); }
.ed-hero__foot {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 1.6rem 2.5rem;
}
.ed-hero__text { font-size: 1.12rem; color: var(--ink-soft); max-width: 42ch; margin: 0; }

/* -- Mono marquee-strip (vervangt icon-trustbar) ---------------- */
.ed-strip { border-bottom: 1px solid var(--line); background: var(--bg-soft); overflow: hidden; }
.ed-strip__row {
  display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; align-items: center;
  padding-block: 1.15rem; font-family: var(--mono);
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
}
.ed-strip__row span { display: inline-flex; align-items: center; gap: 2.4rem; }
.ed-strip__row span::before { content: "◆"; color: var(--gold); font-size: .7em; }

/* -- Editorial intro (asymmetrisch: kop links, tekst rechts) ---- */
.ed-intro__grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}
.ed-intro__aside { color: var(--ink-soft); }
.ed-intro__aside p { font-size: 1.06rem; }
.ed-intro__aside .btn-row { margin-top: 1.5rem; }

/* -- Genummerde tekst-kaarten (geen icon-chips) ----------------- */
.ed-cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.ed-card { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.ed-cards > .ed-card:nth-child(2n) { border-right: 0; }
.ed-card > a {
  display: flex; flex-direction: column; height: 100%;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.4rem);
  color: var(--ink); transition: background .2s ease;
}
.ed-card > a:hover { text-decoration: none; background: var(--surface); }
.ed-card__i { font-family: var(--mono); font-size: .82rem; color: var(--gold); letter-spacing: .1em; margin-bottom: 1.6rem; }
.ed-card h3 { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); text-transform: uppercase; letter-spacing: -.01em; margin-bottom: .5rem; }
.ed-card p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.ed-card__go { margin-top: auto; font-family: var(--mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); display: inline-flex; gap: .5rem; }
.ed-card > a:hover .ed-card__go { gap: .9rem; }

/* -- Tarieven: strak, links uitgelijnd, grote cijfers ----------- */
.ed-prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); }
.ed-price { padding: clamp(1.5rem, 2.4vw, 2rem); border-right: 1px solid var(--line); display: flex; flex-direction: column; position: relative; }
.ed-prices > .ed-price:last-child { border-right: 0; }
.ed-price--feat { background: linear-gradient(180deg, rgba(216,178,76,.07), transparent 60%); }
.ed-price--feat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-grad); }
.ed-price__tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; min-height: 1em; }
.ed-price h3 { font-size: 1.12rem; text-transform: uppercase; letter-spacing: 0; margin-bottom: .2rem; }
.ed-price__sub { color: var(--ink-soft); font-size: .88rem; margin-bottom: 1.4rem; }
.ed-price__amount { font-size: clamp(2.6rem, 2rem + 2vw, 3.4rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; margin-bottom: .3rem; }
.ed-price__amount span { font-size: 1.1rem; font-weight: 600; color: var(--ink-soft); vertical-align: .9rem; }
.ed-price__per { color: var(--ink-dim); font-size: .82rem; margin-bottom: 1.6rem; font-family: var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.ed-price .btn { margin-top: auto; }

/* -- Aanpak: grote outline-cijfers ------------------------------ */
.ed-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.ed-step { padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.2rem, 2.4vw, 1.8rem) 0; border-right: 1px solid var(--line); }
.ed-steps > .ed-step:last-child { border-right: 0; }
.ed-step__num {
  font-size: clamp(2.4rem, 2rem + 2vw, 3.6rem); font-weight: 800; line-height: 1;
  letter-spacing: -.03em; color: transparent; -webkit-text-stroke: 1.5px var(--gold-line);
  margin-bottom: 1.2rem; display: block;
}
.ed-step h3 { font-size: 1.12rem; text-transform: uppercase; margin-bottom: .4rem; }
.ed-step p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* -- Over Stan: volbleed split (foto naar de rand) -------------- */
.ed-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; border-block: 1px solid var(--line); }
.ed-split__media { position: relative; min-height: 460px; background: linear-gradient(135deg, #16161b, #202027); }
.ed-split__media .media { position: absolute; inset: 0; }
.ed-split__body { padding: clamp(2.2rem, 6vw, 5rem); border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.ed-split__body .ed-h2 { font-size: clamp(1.8rem, 1.2rem + 3vw, 3rem); }

/* -- CTA: gigantische uppercase op near-black ------------------- */
.ed-cta { border: 1px solid var(--gold-line); padding: clamp(2.2rem, 6vw, 4.5rem); position: relative; overflow: hidden; background: linear-gradient(135deg, #16130c, #0e0c07); }
.ed-cta::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(216,178,76,.18), transparent 70%); border-radius: 50%; }
.ed-cta__grid { position: relative; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.8rem 2.5rem; }
.ed-cta h2 { font-size: clamp(2rem, 1.3rem + 4vw, 4rem); text-transform: uppercase; line-height: .95; letter-spacing: -.02em; margin: 0; }
.ed-cta h2 em { font-style: normal; color: var(--gold); }

/* -- FAQ: strakker ---------------------------------------------- */
.faq__item { border-radius: 0; border-left: 0; border-right: 0; border-top: 0; margin-bottom: 0; box-shadow: none; background: transparent; }
.faq { border-top: 1px solid var(--line); }
.faq__item summary { padding-inline: 0; text-transform: none; }

/* ==================================================================
   24. EDITORIAL — legacy componenten (interior-pagina's) upgraden
   Zelfde markup, redactionele opmaak zodat alle subpagina's meebewegen.
   ================================================================== */

/* Page-hero (subpagina-kop) */
.page-hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(1.8rem, 4vw, 2.6rem); }
.page-hero h1 { text-transform: uppercase; font-size: clamp(2.2rem, 1.3rem + 4vw, 4.2rem); line-height: .96; letter-spacing: -.025em; }
.page-hero .lead { margin-top: 1.2rem; }
.crumbs { font-family: var(--mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.crumbs span { color: var(--gold); }

/* Section-intro: links uitgelijnd + uppercase kop (ook als .center) */
.section__intro, .section__intro.center { text-align: left; margin-inline: 0; max-width: 940px; }
.section__intro h2 { text-transform: uppercase; font-size: clamp(1.8rem, 1.2rem + 3vw, 3.2rem); line-height: 1; letter-spacing: -.02em; }

/* Split-secties (lessen/over-stan) */
.split__content h2 { text-transform: uppercase; font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.8rem); line-height: 1; letter-spacing: -.02em; }
.split__media .media { border-radius: 0; }

/* Info-kaarten (over-stan "aanpak"): geen gouden chips, dunne toplijn */
.card { border: 0; border-top: 1px solid var(--line); border-radius: 0; background: transparent; box-shadow: none; padding: 1.5rem 0 0; }
.card__icon { display: none; }
.card h3 { text-transform: uppercase; letter-spacing: -.01em; }
.card--link:hover { transform: none; box-shadow: none; background: transparent; border-color: var(--gold-line); }

/* Prijzen (lessen): editorial tabel, links uitgelijnd, geen icon-chips */
.price-grid { border: 1px solid var(--line); gap: 0; }
.price { text-align: left; border-radius: 0; border-right: 1px solid var(--line); box-shadow: none; padding: clamp(1.4rem, 2.2vw, 1.9rem); }
.price-grid > .price:last-child { border-right: 0; }
.price:hover { transform: none; box-shadow: none; border-color: var(--line); }
.price--featured { border-color: var(--line); box-shadow: none; background: linear-gradient(180deg, rgba(216,178,76,.07), transparent 60%); }
.price--featured::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-grad); }
.price__people { display: none; }
.price h3 { text-transform: uppercase; }
.price__tag { position: static; transform: none; background: none; color: var(--gold); font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; padding: 0; margin-bottom: .7rem; }
.price__amount { letter-spacing: -.03em; }

/* Contact / formulier koppen */
.contact-grid h2, .form-card h2 { text-transform: uppercase; letter-spacing: -.01em; }

/* CTA-band (lessen/over-stan) */
.cta-band { border-radius: 0; }
.cta-band h2 { text-transform: uppercase; font-size: clamp(1.8rem, 1.2rem + 3vw, 3.2rem); line-height: .98; }

@media (max-width: 960px) {
  .price-grid > .price:nth-child(2n) { border-right: 0; }
}
@media (max-width: 620px) {
  .price { border-right: 0; border-bottom: 1px solid var(--line); }
  .price-grid > .price:last-child { border-bottom: 0; }
}

/* -- Responsive editorial --------------------------------------- */
@media (max-width: 960px) {
  .ed-intro__grid { grid-template-columns: 1fr; align-items: start; }
  .ed-prices, .ed-steps { grid-template-columns: repeat(2, 1fr); }
  .ed-prices > .ed-price:nth-child(2n) { border-right: 0; }
  .ed-steps > .ed-step:nth-child(2n) { border-right: 0; }
  .ed-split { grid-template-columns: 1fr; }
  .ed-split__media { min-height: 300px; }
  .ed-split__body { border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 620px) {
  .ed-cards, .ed-prices, .ed-steps { grid-template-columns: 1fr; }
  .ed-card { border-right: 0; }
  .ed-price { border-right: 0; border-bottom: 1px solid var(--line); }
  .ed-prices > .ed-price:last-child { border-bottom: 0; }
  .ed-step { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 1.5rem; }
  .ed-display__off { padding-left: 0; }
  .ed-hero { min-height: 82vh; }
}
