/* ==========================================================================
   GK Vloeren — Arnhem
   Premium vloerspecialist. Design system.
   Headings: Montserrat. Body: Inter.
   ========================================================================== */

:root {
  /* Color */
  --primary: #1A1A1A;
  --accent: #C8A96E;
  --accent-hover: #A88B52;
  --accent-ink: #8A6D3B; /* accent-coloured TEXT on light bg (WCAG AA: 4.8:1 on white) */
  --accent-soft: #F3ECDD;
  --text: #2C2C2C;
  --text-muted: #6B7280;
  --bg: #FFFFFF;
  --bg-alt: #F9F8F6;
  --bg-dark: #161513;
  --border: #E5E2DC;
  --overlay: rgba(20, 18, 15, 0.45);
  --error: #D04040;
  --success: #3A7D5F;
  --whatsapp: #25D366;

  /* Type */
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing (8px grid) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 120px;

  /* Radius */
  --r-btn: 4px;
  --r-card: 10px;
  --r-input: 6px;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(20, 18, 15, 0.06), 0 1px 2px rgba(20, 18, 15, 0.04);
  --shadow-md: 0 10px 30px -12px rgba(20, 18, 15, 0.18);
  --shadow-lg: 0 28px 60px -24px rgba(20, 18, 15, 0.28);
  --ring: 0 0 0 3px rgba(200, 169, 110, 0.45);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem); }
p { text-wrap: pretty; }

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

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

/* ----- Layout helpers ----- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.section { padding-block: clamp(56px, 4vw + 40px, 104px); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #E9E6E0; }

.section-head { max-width: 660px; margin-bottom: clamp(36px, 4vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: var(--space-2);
}
.section--dark .eyebrow { color: var(--accent); }

.lead { font-size: 1.12rem; color: var(--text-muted); margin-top: var(--space-2); }
.section--dark .lead { color: #C7C2B8; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-btn);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--accent); color: var(--primary); box-shadow: 0 8px 22px -10px rgba(200, 169, 110, 0.9); }
.btn--primary:hover { background: var(--accent-hover); color: var(--primary); box-shadow: 0 14px 30px -12px rgba(168, 139, 82, 0.9); }

.btn--outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }

.btn--ghost-light { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); color: #fff; backdrop-filter: blur(4px); }
.btn--ghost-light:hover { background: #fff; color: var(--primary); border-color: #fff; }

.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { background: #1da851; }

.btn--lg { padding: 17px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ----- Header / nav (dark bar) ----- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(22, 21, 19, 0.82);
  backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(22, 21, 19, 0.97);
  box-shadow: 0 12px 34px -16px rgba(0, 0, 0, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 78px;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand__logo { height: 46px; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); margin-inline: auto; }
.nav__links a {
  font-weight: 600;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.82);
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.nav__links a:hover, .nav__links a:focus-visible { color: #fff; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after, .nav__links a:focus-visible::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: 18px; flex: none; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.94rem; color: rgba(255, 255, 255, 0.9); white-space: nowrap; transition: color 0.2s var(--ease); }
.nav__phone:hover { color: var(--accent); }
.nav__phone svg { width: 17px; height: 17px; color: var(--accent); }

.nav__toggle { display: none; background: none; border: 0; padding: 8px; color: #fff; }
.nav__toggle svg { width: 28px; height: 28px; }

/* ----- Hero ----- */
.hero {
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: 140px;
  padding-bottom: clamp(56px, 6vw, 96px);
}
.hero__content { max-width: 600px; }
.hero__tagline {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: var(--space-3);
}
.hero h1 {
  font-size: clamp(2.3rem, 1.4rem + 3.6vw, 3.7rem);
  line-height: 1.08;
  margin-bottom: var(--space-3);
}
.hero h1 em { font-style: normal; color: var(--accent-ink); }
.hero__sub { font-size: 1.18rem; color: var(--text-muted); max-width: 30em; margin-bottom: var(--space-4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: var(--space-4); }

.hero__rating { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.rating-score { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--primary); line-height: 1; }
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 17px; height: 17px; }
.rating-meta { font-size: 0.9rem; color: var(--text-muted); }
.rating-meta strong { color: var(--text); }

/* Hero image */
.hero__media { position: relative; }
.hero__photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
  max-width: 460px;
  margin-left: auto;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  left: -22px; top: 26px; bottom: auto;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 240px;
}
.hero__badge .ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-hover); flex: none; }
.hero__badge .ico svg { width: 22px; height: 22px; }
.hero__badge b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--primary); line-height: 1.1; }
.hero__badge span { font-size: 0.82rem; color: var(--text-muted); }

/* ----- Trust strip ----- */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); }
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  padding-block: var(--space-4);
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 26px; height: 26px; color: var(--accent-hover); flex: none; }
.trust-item span { font-weight: 600; font-size: 0.96rem; line-height: 1.3; }

/* ----- Diensten ----- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--space-4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__ico { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-hover); margin-bottom: var(--space-3); }
.card__ico svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 1rem; }

/* ----- Werkwijze (steps) ----- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); counter-reset: step; }
.step { position: relative; padding-top: var(--space-2); }
.step__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent-hover);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: var(--space-2);
  background: var(--bg);
}
.section--dark .step__num { background: transparent; color: var(--accent); }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.98rem; }
.section--dark .step p { color: #B9B4AA; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 26px; left: 64px; right: -12px; height: 1.5px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ----- Vloersoorten ----- */
.floors { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.floor {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-sm);
  display: block;
}
.floor img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.floor:hover img { transform: scale(1.05); }
.floor__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0) 38%, rgba(20,18,15,0.78) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-4);
  color: #fff;
}
.floor__overlay h3 { color: #fff; margin-bottom: 4px; }
.floor__overlay p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.floor__more { margin-top: 10px; font-weight: 700; font-size: 0.9rem; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.floor__more svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.floor:hover .floor__more svg { transform: translateX(4px); }

/* ----- Recent werk (delivery story) ----- */
.werk { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.werk-card {
  background: var(--bg);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.werk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.werk-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.werk-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.werk-card:hover .werk-card__media img { transform: scale(1.04); }
.werk-card__step {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 30px;
}
.werk-card__body { padding: var(--space-3); }
.werk-card__body h3 { font-size: 1.22rem; margin-bottom: 6px; }
.werk-card__body p { color: var(--text-muted); font-size: 0.98rem; }
.werk-cta { margin-top: var(--space-5); text-align: center; }

/* ----- Reviews ----- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.review {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.review .stars svg { width: 18px; height: 18px; }
.review__quote { font-size: 1.05rem; color: var(--text); line-height: 1.6; }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: var(--space-2); }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-hover);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
  flex: none;
}
.review__name { font-weight: 700; color: var(--primary); }
.review__city { font-size: 0.88rem; color: var(--text-muted); }

.reviews-summary {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: var(--space-3) var(--space-4); margin-bottom: var(--space-4);
  flex-wrap: wrap; text-align: center;
}
.reviews-summary .rating-score { font-size: 2.6rem; }

/* ----- CTA band ----- */
.cta-band { background: var(--primary); color: #fff; }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; max-width: 16em; }
.cta-band p { color: rgba(255,255,255,0.75); margin-top: 10px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ----- Contact ----- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-list { display: grid; gap: var(--space-3); margin-top: var(--space-4); }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row .ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-hover); flex: none; }
.contact-row .ico svg { width: 22px; height: 22px; }
.contact-row b { display: block; color: var(--primary); }
.contact-row a, .contact-row span { color: var(--text-muted); }
.contact-row a:hover { color: var(--accent-hover); }
.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 40px);
}

/* ----- WhatsApp floating ----- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.7);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* ----- Footer ----- */
.footer { background: var(--bg-dark); color: #B9B4AA; padding-block: var(--space-7) var(--space-4); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-4); }
.footer__logo img { width: 150px; height: auto; margin-bottom: var(--space-3); }
.footer p { font-size: 0.95rem; line-height: 1.7; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: var(--space-2); }
.footer ul { display: grid; gap: 10px; }
.footer a { color: #B9B4AA; transition: color 0.2s var(--ease); }
.footer a:hover { color: var(--accent); }
.footer__nap { font-style: normal; }
.footer__nap a { color: #B9B4AA; }
.footer__bottom {
  margin-top: var(--space-6); padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: var(--space-2); flex-wrap: wrap;
  font-size: 0.85rem; color: #8B867C;
}
.footer__bottom a { color: #8B867C; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; }
.footer__social a:hover { border-color: var(--accent); color: var(--accent); }
.footer__social svg { width: 18px; height: 18px; }

/* ----- Reveal animation ----- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ==========================================================================
   Offerte form (4 steps)
   ========================================================================== */
.offerte-hero {
  background: var(--bg-dark);
  color: #fff;
  padding-top: 140px;
  padding-bottom: var(--space-6);
}
.offerte-hero h1 { color: #fff; font-size: clamp(2.1rem, 1.4rem + 3vw, 3.2rem); }
.offerte-hero .lead { color: #C7C2B8; max-width: 36em; }
.offerte-hero__badges { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-3); }
.offerte-hero__badges span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; color: #E9E6E0; }
.offerte-hero__badges svg { width: 18px; height: 18px; color: var(--accent); }

.form-wrap { max-width: 760px; margin-inline: auto; margin-top: -56px; position: relative; z-index: 2; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-lg); padding: clamp(24px, 4vw, 48px); }

/* Progress */
.progress { display: flex; gap: 8px; margin-bottom: var(--space-4); }
.progress__seg { flex: 1; height: 6px; border-radius: 4px; background: var(--border); overflow: hidden; }
.progress__seg::after { content: ""; display: block; height: 100%; width: 0; background: var(--accent); transition: width 0.4s var(--ease); }
.progress__seg.done::after { width: 100%; }
.progress__seg.active::after { width: 100%; }
.progress-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: var(--space-3); font-weight: 600; letter-spacing: 0.02em; }

.fstep { display: none; animation: fade 0.4s var(--ease); }
.fstep.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: none; } }
.fstep h2 { font-size: 1.5rem; margin-bottom: 4px; }
.fstep__hint { color: var(--text-muted); margin-bottom: var(--space-3); font-size: 0.96rem; }

.field { margin-bottom: var(--space-3); }
.field > label { display: block; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.field .req { color: var(--accent-hover); }
.field input[type=text], .field input[type=email], .field input[type=tel], .field input[type=number], .field input[type=date], .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-input);
  background: #fff;
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
.field .hint { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }
.field-error { color: var(--error); font-size: 0.85rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid select { border-color: var(--error); }
.field.invalid .field-error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }

/* option tiles */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tile { position: relative; }
.tile input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.tile label {
  display: flex; flex-direction: column; gap: 4px;
  border: 1.5px solid var(--border); border-radius: var(--r-input);
  padding: 14px; cursor: pointer; height: 100%;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.tile label b { color: var(--primary); font-size: 0.98rem; }
.tile label span { font-size: 0.82rem; color: var(--text-muted); }
.tile input:checked + label { border-color: var(--accent); background: var(--accent-soft); box-shadow: var(--ring); }
.tile input:focus-visible + label { box-shadow: var(--ring); }

/* checkbox list */
.checks { display: grid; gap: 10px; }
.check { display: flex; gap: 12px; align-items: flex-start; border: 1.5px solid var(--border); border-radius: var(--r-input); padding: 12px 14px; cursor: pointer; transition: border-color 0.2s var(--ease), background 0.2s var(--ease); }
.check:hover { border-color: var(--accent); }
.check input { width: 20px; height: 20px; accent-color: var(--accent-hover); margin-top: 2px; flex: none; }
.check span b { display: block; color: var(--primary); }
.check span small { color: var(--text-muted); }

.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: var(--space-4); }
.form-nav .btn--back { background: none; border-color: var(--border); color: var(--text-muted); }
.form-nav .btn--back:hover { border-color: var(--primary); color: var(--primary); background: none; transform: translateY(-2px); }
.form-nav__spacer { flex: 1; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: var(--text-muted); margin-top: var(--space-2); }
.consent input { width: 20px; height: 20px; accent-color: var(--accent-hover); margin-top: 2px; flex: none; }
.consent a { color: var(--accent-hover); text-decoration: underline; }

/* ----- Generic page (privacy/cookies/bedankt) ----- */
.page-hero { background: var(--bg-dark); color: #fff; padding-top: 140px; padding-bottom: var(--space-6); }
.page-hero h1 { color: #fff; }
.prose { max-width: 720px; }
.prose h2 { font-size: 1.6rem; margin-top: var(--space-5); margin-bottom: var(--space-2); }
.prose h3 { margin-top: var(--space-3); margin-bottom: 8px; }
.prose p, .prose li { color: var(--text); }
.prose ul { list-style: disc; padding-left: 1.4em; display: grid; gap: 8px; margin-block: var(--space-2); }
.prose a { color: var(--accent-hover); text-decoration: underline; }

.bedankt { text-align: center; max-width: 620px; margin-inline: auto; }
.bedankt__ico { width: 84px; height: 84px; border-radius: 50%; background: var(--accent-soft); color: var(--success); display: grid; place-items: center; margin: 0 auto var(--space-3); }
.bedankt__ico svg { width: 44px; height: 44px; }
.bedankt .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: var(--space-4); }

/* ==========================================================================
   Mobile nav overlay
   ========================================================================== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg-dark); color: #fff;
  display: flex; flex-direction: column;
  padding: 28px clamp(20px, 6vw, 40px) 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  visibility: hidden;
}
.mobile-nav.open { transform: none; visibility: visible; }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-5); }
.mobile-nav__top img { height: 46px; width: auto; }
.mobile-nav__close { background: none; border: 0; color: #fff; padding: 8px; }
.mobile-nav__close svg { width: 30px; height: 30px; }
.mobile-nav a.m-link { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav__actions { margin-top: auto; display: grid; gap: 12px; padding-top: var(--space-4); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .nav__phone { display: none; }
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; padding-top: 120px; }
  .hero__media { max-width: 420px; margin-inline: auto; }
  .hero__photo { margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-5) var(--space-4); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .step:not(:last-child)::after { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }
  .cards, .reviews, .werk { grid-template-columns: 1fr; }
  .floors { grid-template-columns: 1fr; }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .tiles { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { flex: 1; }
  .hero__badge { left: 50%; transform: translateX(-50%); top: auto; bottom: -26px; }
  .hero__photo { margin-bottom: 30px; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .trust-strip__inner { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr; }
  .form-nav { flex-direction: column-reverse; }
  .form-nav .btn { width: 100%; }
}

/* ==========================================================================
   SEO landing pages
   ========================================================================== */
.landing-hero .lead { max-width: 46em; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: var(--space-3); }
.breadcrumb a { color: rgba(255,255,255,0.78); transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin-inline: 6px; }
.landing-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--space-4); }

.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.split__body > p { margin-bottom: var(--space-3); color: var(--text); }
.split__body > p:first-child { font-size: 1.12rem; }
.ticklist { display: grid; gap: 12px; margin: var(--space-3) 0 var(--space-4); }
.ticklist li { display: flex; gap: 12px; align-items: flex-start; }
.ticklist__ico { color: var(--accent-ink); display: grid; place-items: center; width: 24px; height: 24px; flex: none; margin-top: 1px; }
.ticklist__ico svg { width: 20px; height: 20px; }
.split__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: var(--space-2); }

.split__media { position: sticky; top: 100px; }
.split__media img { width: 100%; border-radius: var(--r-card); box-shadow: var(--shadow-md); aspect-ratio: 16/10; object-fit: cover; }
.split__card { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-card); padding: 16px 20px; box-shadow: var(--shadow-sm); margin-top: -34px; margin-left: 20px; position: relative; width: max-content; max-width: calc(100% - 40px); }
.split__card .rating-score { font-size: 2rem; }

.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--primary); cursor: pointer; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--accent-hover); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq__plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item[open] .faq__plus::after { transform: scaleY(0); }
.faq__a { padding: 0 22px 20px; color: var(--text-muted); }
.faq__item[open] .faq__q { color: var(--accent-ink); }

.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.related-card { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-input); padding: 16px 20px; font-weight: 600; color: var(--primary); transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.related-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.related-card svg { width: 18px; height: 18px; color: var(--accent-hover); flex: none; transition: transform 0.25s var(--ease); }
.related-card:hover svg { transform: translateX(4px); }

/* Hub / overzicht page */
.hub-group { margin-bottom: var(--space-5); }
.hub-group h2 { font-size: 1.4rem; margin-bottom: var(--space-2); padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.hub-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 24px; }
.hub-links a { display: inline-flex; align-items: center; gap: 8px; padding: 7px 0; color: var(--text); font-size: 0.96rem; transition: color 0.2s var(--ease); }
.hub-links a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }
.hub-links a:hover { color: var(--accent-ink); }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__media { position: static; order: -1; }
  .split__card { margin-left: 0; }
  .related-grid { grid-template-columns: 1fr; }
  .hub-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hub-links { grid-template-columns: 1fr; }
}
