/* =========================================================
   Padel-Reclame.nl — Global Stylesheet
   Monochrome premium: off-white #F4F2ED ↔ anthracite #161616
   Typography: Bodoni Moda (headings) + Inter (body)
   ========================================================= */

/* Optional future accent — change one variable only */
:root {
  --accent: #161616;

  --bg:       #F4F2ED;
  --bg-alt:   #EDEBE4;
  --dark:     #161616;
  --text:     #1C1C1C;
  --muted:    #8A8A86;
  --border:   #E2DFD8;
  --white:    #FAF9F6;

  --serif:  'Bodoni Moda', Georgia, serif;
  --sans:   'Inter', -apple-system, 'Helvetica Neue', sans-serif;

  --nav-h:  68px;
  --max-w:  1200px;
  --t:      220ms ease;

  --section-pad: 96px 0;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font-family: var(--sans); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

.section        { padding: var(--section-pad); }
.section--dark  { background: var(--dark);  color: var(--white); }
.section--alt   { background: var(--bg-alt); }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(244, 242, 237, .97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--t);
}

.nav__inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--dark);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: flex-end;
}

.nav__links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  transition: color var(--t);
  white-space: nowrap;
}
.nav__links a:hover   { color: var(--muted); }
.nav__links a.current { font-weight: 500; }

/* knop in de nav: wint van de generieke nav-linkkleur */
.nav__links a.btn--dark        { color: var(--white); }
.nav__links a.btn--dark:hover  { color: var(--dark); background: transparent; }

/* hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: transform var(--t), opacity var(--t);
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  z-index: 199;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 28px 48px 36px;
  flex-direction: column;
  gap: 20px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 16px;
  color: var(--text);
  padding: 4px 0;
}
/* knop in het mobiele menu: witte tekst behouden (wint van .nav__mobile a) */
.nav__mobile a.btn--dark {
  color: var(--white);
  padding: 14px 20px;
}
.nav__mobile a.btn--dark:hover { color: var(--dark); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}

.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover {
  background: transparent;
  color: var(--dark);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline:hover {
  background: var(--dark);
  color: var(--white);
}

/* on dark backgrounds */
.btn--light {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--light:hover {
  background: transparent;
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(244,242,237,.45);
}
.btn--outline-light:hover {
  background: rgba(244,242,237,.1);
  border-color: rgba(244,242,237,.7);
}

.nav .btn--dark {
  padding: 10px 20px;
  font-size: 11px;
}

/* ── Link arrow ─────────────────────────────────────────── */
.link-arrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: letter-spacing var(--t), opacity var(--t);
  cursor: pointer;
}
.link-arrow:hover { letter-spacing: .12em; }
.section--dark .link-arrow { color: var(--white); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 88px);
  padding-bottom: 80px;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

/* subtle court-grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244,242,237,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,242,237,.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero .container { position: relative; z-index: 3; width: 100%; }

/* hero met foto */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(22,22,22,.78) 0%,
    rgba(22,22,22,.55) 40%,
    rgba(22,22,22,.92) 100%);
}
.hero--photo::after { display: none; }

.hero .eyebrow  { color: rgba(244,242,237,.55); margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-style: italic;
  max-width: 880px;
  margin-bottom: 28px;
}
.hero__sub {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  font-weight: 300;
  color: rgba(244,242,237,.72);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 52px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* bewijsbar in de hero */
.hero__stats {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(244,242,237,.18);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 72px;
}
.stat { min-width: 150px; }
.stat__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.stat__lbl {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,242,237,.5);
  max-width: 200px;
  line-height: 1.6;
}
.hero__src {
  flex-basis: 100%;
  font-size: 11px;
  color: rgba(244,242,237,.35);
  letter-spacing: .04em;
}

/* interior pages — light hero */
.hero--light {
  background: var(--bg);
  color: var(--dark);
  min-height: 50vh;
  align-items: flex-end;
}
.hero--light::after     { display: none; }
.hero--light .eyebrow   { color: var(--muted); }
.hero--light h1         { color: var(--dark); }
.hero--light .hero__sub { color: var(--muted); }

/* ── Volle-breedte fotostrook ───────────────────────────── */
.strip {
  overflow: hidden;
  max-height: 520px;
}
.strip img {
  width: 100%;
  height: clamp(300px, 48vh, 520px);
  object-fit: cover;
  object-position: center;
}

/* zwart-wit behandeling voor contentfoto's */
.img-bw img { filter: grayscale(1) contrast(1.04); }

/* foto-onthulling bij scrollen */
.img-reveal { overflow: hidden; }
.img-reveal img {
  transform: scale(1.1);
  transition: transform 1200ms cubic-bezier(.22, .61, .25, 1);
}
.img-reveal.visible img { transform: scale(1); }

/* ── Section header ─────────────────────────────────────── */
.s-header {
  margin-bottom: 64px;
}
.s-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-style: italic;
  margin-top: 14px;
}
.section--dark .s-header .eyebrow { color: rgba(244,242,237,.4); }

/* ── 3-step grid ────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.section--dark .steps { border-color: rgba(244,242,237,.12); }

.step {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.section--dark .step { border-color: rgba(244,242,237,.12); }

.step__num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 28px;
  color: var(--border);
}
.section--dark .step__num { color: rgba(244,242,237,.1); }

.step h3 {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--dark);
}
.section--dark .step h3 { color: var(--white); }

.step p {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--muted);
}
.section--dark .step p { color: rgba(244,242,237,.5); }

/* ── Content grid (heading + prose) ────────────────────── */
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.prose-grid h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.prose p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 620px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--dark); font-weight: 500; }
.section--dark .prose p      { color: rgba(244,242,237,.6); }
.section--dark .prose strong { color: var(--white); }

.prose .src-line {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-top: 24px;
}
.section--dark .prose .src-line { color: rgba(244,242,237,.35); }

/* ── Split blocks ───────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}
.split__block {
  border-right: 1px solid var(--border);
  transition: background var(--t);
  display: flex;
  flex-direction: column;
}
.split__block:last-child { border-right: none; }
.split__block:hover { background: var(--bg-alt); }

.split__media {
  height: 280px;
  overflow: hidden;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__block:hover .split__media img { filter: grayscale(0) contrast(1); }
.split__media img { transition: filter 600ms ease, transform 1200ms cubic-bezier(.22,.61,.25,1); }

.split__body { padding: 48px 56px 64px; }

.split__body .eyebrow { margin-bottom: 20px; }
.split__body h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-style: italic;
  margin-bottom: 20px;
}
.split__body p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 360px;
}

/* ── Tags ───────────────────────────────────────────────── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}
.tag {
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
}
.section--dark .tag {
  border-color: rgba(244,242,237,.2);
  color: rgba(244,242,237,.55);
}

/* ── Callout box ────────────────────────────────────────── */
.callout {
  border: 1px solid var(--border);
  padding: 48px 56px;
}
.section--dark .callout { border-color: rgba(244,242,237,.12); }
.callout p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
  font-style: italic;
  max-width: 680px;
}
.callout p:last-child { margin-bottom: 0; }
.section--dark .callout p { color: rgba(244,242,237,.6); }
.callout strong {
  color: var(--dark);
  font-style: normal;
  font-weight: 500;
}
.section--dark .callout strong { color: var(--white); }

/* ── FAQ accordion ──────────────────────────────────────── */
.faq { max-width: 760px; }

.faq__item {
  border-top: 1px solid var(--border);
}
.faq__item:last-child { border-bottom: 1px solid var(--border); }

.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-size: .93rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--t);
}
.faq__q:hover { color: var(--muted); }

.faq__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.faq__icon::before {
  width: 100%; height: 1px;
  top: 50%; transform: translateY(-50%);
}
.faq__icon::after {
  width: 1px; height: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: transform var(--t), opacity var(--t);
}
.faq__item.open .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 320ms ease;
}
.faq__a-inner {
  padding-bottom: 24px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ── CTA section ────────────────────────────────────────── */
.cta-sect {
  padding: var(--section-pad);
  text-align: center;
}
.cta-sect h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-style: italic;
  margin-top: 16px;
  margin-bottom: 24px;
}
.cta-sect p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
}
.section--dark .cta-sect p { color: rgba(244,242,237,.55); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 40px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(244,242,237,.1);
}
.footer__brand-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 12px;
}
.footer__slogan {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--white);
  max-width: 260px;
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 13px;
  color: rgba(244,242,237,.45);
  line-height: 1.65;
  max-width: 230px;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244,242,237,.6);
  margin-bottom: 20px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__col a {
  font-size: 13px;
  color: rgba(244,242,237,.6);
  transition: color var(--t);
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: 12px;
  color: rgba(244,242,237,.3);
}
.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: 12px;
  color: rgba(244,242,237,.3);
  transition: color var(--t);
}
.footer__legal a:hover { color: rgba(244,242,237,.6); }

/* ── Trustblok ──────────────────────────────────────────── */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.trust__item {
  padding: 40px;
  border-right: 1px solid var(--border);
}
.trust__item:last-child { border-right: none; }
.trust__item h3 {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.trust__item p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Contact page layout ────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 96px;
}

.contact-info h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-style: italic;
  margin-bottom: 32px;
  color: var(--dark);
}
.contact-intro {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 48px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact-channel__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark);
}
.contact-channel__lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-channel__val {
  font-size: .93rem;
  font-weight: 500;
  color: var(--dark);
}
.contact-channel__val a { transition: color var(--t); }
.contact-channel__val a:hover { color: var(--muted); }

.contact-person {
  border: 1px solid var(--border);
  padding: 20px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.contact-person__photo {
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: center 25%;
  flex-shrink: 0;
}
.contact-person__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.contact-person__role {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color var(--t);
  cursor: pointer;
}
.linkedin-link:hover { color: var(--muted); }
.linkedin-link svg { flex-shrink: 0; }

.contact-meta {
  font-size: 13px;
  color: var(--muted);
  padding: 14px 0;
  border-top: 1px solid var(--border);
  line-height: 1.65;
}
.contact-meta + .contact-meta { border-top: none; padding-top: 0; }

/* ── Contact form card ──────────────────────────────────── */
.form-card {
  background: var(--dark);
  color: var(--white);
  padding: 52px;
}
.form-card__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.form-card__sub {
  font-size: 13px;
  color: rgba(244,242,237,.45);
  margin-bottom: 40px;
}

.f-group { margin-bottom: 24px; }

.f-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(244,242,237,.45);
  margin-bottom: 10px;
}

.f-input,
.f-textarea {
  width: 100%;
  background: rgba(244,242,237,.06);
  border: 1px solid rgba(244,242,237,.14);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color var(--t);
  -webkit-appearance: none;
  border-radius: 0;
}
.f-input::placeholder,
.f-textarea::placeholder { color: rgba(244,242,237,.28); }
.f-input:focus,
.f-textarea:focus { border-color: rgba(244,242,237,.5); }
.f-textarea { resize: vertical; min-height: 110px; }

.f-input.has-error,
.f-textarea.has-error { border-color: rgba(255, 120, 120, .55); }
.f-error {
  font-size: 11px;
  color: rgba(255, 170, 170, .9);
  margin-top: 6px;
  display: none;
}
.f-error.show { display: block; }

/* radio toggle */
.f-radio-row {
  display: flex;
  border: 1px solid rgba(244,242,237,.14);
}
.f-radio-opt { flex: 1; }
.f-radio-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.f-radio-opt label {
  display: block;
  padding: 13px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(244,242,237,.45);
  cursor: pointer;
  transition: background var(--t), color var(--t);
  letter-spacing: .04em;
}
.f-radio-opt:first-child label {
  border-right: 1px solid rgba(244,242,237,.14);
}
.f-radio-opt input:checked + label {
  background: rgba(244,242,237,.1);
  color: var(--white);
}
.f-radio-opt label:hover { color: var(--white); }

.f-radio-row.has-error { border-color: rgba(255,120,120,.55); }

.f-submit {
  width: 100%;
  padding: 16px;
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t), color var(--t);
  margin-top: 8px;
}
.f-submit:hover { background: var(--bg); }
.f-submit:disabled { opacity: .55; cursor: not-allowed; }

.form-success {
  display: none;
  padding: 48px 24px;
  text-align: center;
}
.form-success h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.form-success p {
  font-size: .9rem;
  color: rgba(244,242,237,.55);
  line-height: 1.7;
}

/* ── Juridische pagina's ────────────────────────────────── */
.legal-wrap {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 96px;
  max-width: 760px;
}
.legal-wrap h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  margin-bottom: 12px;
}
.legal-wrap .legal-date {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 56px;
}
.legal-wrap h2 {
  font-size: 1.3rem;
  font-style: italic;
  margin: 48px 0 16px;
}
.legal-wrap p, .legal-wrap li {
  font-size: .93rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 16px;
}
.legal-wrap ul { list-style: none; padding-left: 0; }
.legal-wrap li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.legal-wrap li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
}
.legal-wrap strong { color: var(--dark); font-weight: 500; }
.legal-wrap a { border-bottom: 1px solid var(--border); transition: border-color var(--t); }
.legal-wrap a:hover { border-color: var(--dark); }

/* ── Scroll reveal ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .img-reveal img { transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Thin divider ───────────────────────────────────────── */
.hr {
  border: none;
  border-top: 1px solid var(--border);
}
.section--dark .hr { border-color: rgba(244,242,237,.1); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid     { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps            { grid-template-columns: 1fr; }
  .step             { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child  { border-bottom: none; }
  .section--dark .step { border-color: rgba(244,242,237,.12); }
  .prose-grid       { grid-template-columns: 1fr; gap: 36px; }
  .prose-grid h2    { position: static; }
  .trust            { grid-template-columns: 1fr; }
  .trust__item      { border-right: none; border-bottom: 1px solid var(--border); }
  .trust__item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px 0; }
  .container, .nav__inner, .footer__inner { padding-inline: 24px; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { min-height: 84vh; padding-bottom: 64px; }
  .hero--light { min-height: auto; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }

  .hero__stats { margin-top: 56px; gap: 28px 40px; }
  .stat { min-width: 120px; }

  .split               { grid-template-columns: 1fr; border: 1px solid var(--border); }
  .split__block        { border-right: none; border-bottom: 1px solid var(--border); }
  .split__block:last-child { border-bottom: none; }
  .split__media        { height: 220px; }
  .split__body         { padding: 40px 28px 48px; }

  .callout             { padding: 36px 28px; }

  .contact-wrap        { grid-template-columns: 1fr; gap: 56px; padding-top: calc(var(--nav-h) + 40px); }
  .form-card           { padding: 36px 28px; }

  .footer__grid        { grid-template-columns: 1fr; gap: 0; }
  .footer__col         { padding: 24px 0; border-top: 1px solid rgba(244,242,237,.1); }
  .footer__grid > div:first-child { padding-bottom: 28px; }
  .footer__col h4      { font-size: 12px; color: rgba(244,242,237,.7); margin-bottom: 14px; }
  .footer__bottom      { flex-direction: column; align-items: flex-start; gap: 10px; }

  .cta-sect            { text-align: left; }
  .cta-sect p          { margin-inline: 0; }

  .nav__mobile         { padding-inline: 24px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn { display: inline-block; }
  .s-header { margin-bottom: 48px; }
  .contact-person { flex-direction: row; }
}
