/* ============================================================
   COMPONENTS — Grafischie v2
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   HEADER
   ──────────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  height: 64px;
  background: rgba(248, 245, 240, 0.96);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  transition: box-shadow var(--ease), background var(--ease);
}

[data-theme="dark"] .site-header {
  background: rgba(29, 28, 26, 0.96);
}

.site-header.is-scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: var(--s6);
  gap: var(--s8);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.site-logo svg { height: 36px; width: auto; }

/* Nav */
.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--s6);
  list-style: none;
}

.site-nav__link {
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding-block: var(--s1);
  border-bottom: 1.5px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--ink);
  border-bottom-color: var(--schie);
}

.site-header__controls {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: var(--s2);
  transition: background var(--ease);
}

.nav-toggle:hover { background: var(--surface-dim); }

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  color: var(--ink-2);
  cursor: pointer;
  transition: color var(--ease), background var(--ease);
}

.theme-toggle:hover { color: var(--ink); background: var(--surface-dim); }
.theme-toggle svg { width: 16px; height: 16px; }

.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

@media (max-width: 767px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset-block-start: 64px;
    inset-inline: 0;
    bottom: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--s8) var(--s6);
    gap: var(--s6);
    transform: translateX(100%);
    transition: transform var(--ease);
    border-top: 1px solid var(--rule);
    overflow-y: auto;
  }

  .site-nav.is-open { transform: translateX(0); }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .site-nav__link {
    font-size: var(--t-lg);
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--ink);
    padding-block: var(--s3);
    border-bottom: none;
    display: block;
  }
}

/* ────────────────────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--t-sm);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
  min-height: 44px;
  letter-spacing: 0.01em;
}

.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Primair — donker */
.btn--primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn--primary:hover {
  background: var(--ink-2);
  border-color: var(--ink-2);
  color: var(--bg);
}

/* Lijn */
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}

.btn--outline:hover {
  border-color: var(--ink);
  background: var(--surface-dim);
}

/* Schie-kleur */
.btn--schie {
  background: var(--schie);
  color: #ffffff;
  border-color: var(--schie);
}

.btn--schie:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
}

/* Nav CTA */
.btn--nav-cta {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  padding: var(--s2) var(--s4);
  font-size: var(--t-xs);
  min-height: 36px;
}

.btn--nav-cta:hover {
  background: var(--ink-2);
  border-color: var(--ink-2);
}

/* Op donkere achtergrond */
.on-dark .btn--primary,
.cta-block .btn--primary {
  background: var(--schie);
  color: #ffffff;
  border-color: var(--schie);
}

.on-dark .btn--primary:hover,
.cta-block .btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ────────────────────────────────────────────────────────────
   HERO — regel van derden
   Kolom A (2fr): tekst + propositie  — warm papier
   Kolom B (1fr): actie-kolom         — licht wit
   Kolom C (1fr): grafisch ornament   — licht schie
   ──────────────────────────────────────────────────────────── */

.hero {
  padding-top: 64px;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}

/* Zone A */
.hero__a {
  background: var(--bg-paper);
  border-right: 1px solid var(--rule);
  padding: var(--s20) var(--s12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s8);
  position: relative;
  overflow: hidden;
}

/* Alles behalve de kaart boven de kaart */
.hero__a > *:not(.hero__map) {
  position: relative;
  z-index: 1;
}

/* Zone B */
.hero__b {
  background: var(--surface);
  border-right: 1px solid var(--rule);
  padding: var(--s16) var(--s8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s6);
}

/* Zone C */
.hero__c {
  background: var(--schie-light);
  padding: var(--s12) var(--s8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s6);
  position: relative;
  overflow: hidden;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--schie);
  animation: fadeUp 0.5s var(--ease) 0.05s both;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--schie);
  flex-shrink: 0;
}

.hero__title {
  font-size: var(--t-2xl);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  animation: fadeUp 0.65s var(--ease) 0.12s both;
}

.hero__title em {
  font-style: normal;
  color: var(--schie);
}

.hero__lead {
  font-size: var(--t-base);
  line-height: 1.72;
  color: var(--ink-2);
  max-width: 48ch;
  margin: 0;
  animation: fadeUp 0.6s var(--ease) 0.2s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow,
  .hero__title,
  .hero__lead { animation: none; opacity: 1; }
}

/* Schiedam kaart — achtergrond zone A */
.hero__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Schie hoofdstroom op kaart */
.map-schie-main {
  stroke-dasharray: 18 11;
  stroke-dashoffset: 0;
  opacity: 0;
  animation:
    mapSchieIn  1.8s ease 0.6s forwards,
    mapSchieFlow 2.4s linear 0.6s infinite;
}

.map-schie-bank {
  stroke-dasharray: 5 14;
  stroke-dashoffset: 0;
  opacity: 0;
  animation:
    mapSchieBankIn   2.2s ease 0.9s forwards,
    mapSchieBankFlow 3.8s linear 0.9s infinite;
}

.map-schie-label {
  opacity: 0;
  animation: mapLabelIn 1.2s ease 2s forwards;
}

@keyframes mapSchieIn {
  from { opacity: 0; }
  to   { opacity: 0.55; }
}

@keyframes mapSchieBankIn {
  from { opacity: 0; }
  to   { opacity: 0.32; }
}

@keyframes mapSchieFlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -29; }
}

@keyframes mapSchieBankFlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -19; }
}

@keyframes mapLabelIn {
  from { opacity: 0; }
  to   { opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
  .map-schie-main  { animation: none; opacity: 0.55; stroke-dasharray: 18 11; }
  .map-schie-bank  { animation: none; opacity: 0.32; stroke-dasharray: 5 14; }
  .map-schie-label { animation: none; opacity: 0.6; }
}

/* Schie rivier lijn in zone A */
.hero__river {
  position: absolute;
  right: 16px;
  top: 0;
  height: 100%;
  width: 72px;
  pointer-events: none;
}

/* Rivier — fade in op load, daarna naadloze stroom */
.river-main {
  stroke-dasharray: 18 11;   /* cyclus = 29px → animatie = -29 = naadloos */
  stroke-dashoffset: 0;
  opacity: 0;
  animation:
    riverFadeIn 1.2s ease 0.3s forwards,
    riverFlow   2.4s linear 0.3s infinite;
}

.river-bank {
  stroke-dasharray: 5 14;    /* cyclus = 19px → animatie = -19 = naadloos */
  stroke-dashoffset: 0;
  opacity: 0;
  animation:
    riverBankFadeIn 1.6s ease 0.6s forwards,
    riverBankFlow   3.8s linear 0.6s infinite;
}

.river-label {
  opacity: 0;
  animation: riverLabelFade 1s ease 1.4s forwards;
}

@keyframes riverFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes riverBankFadeIn {
  from { opacity: 0; }
  to   { opacity: 0.45; }
}

/* Animatie = exact één cyclus → geen zichtbare naad */
@keyframes riverFlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -29; }
}

@keyframes riverBankFlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -19; }
}

@keyframes riverLabelFade {
  from { opacity: 0; }
  to   { opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  .river-main  { animation: none; opacity: 1; }
  .river-bank  { animation: none; opacity: 0.45; }
  .river-label { animation: none; opacity: 0.55; }
}

/* Zone B content */
.hero__b-label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--schie);
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.hero__b-label::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--schie);
}

.hero__b-heading {
  font-size: var(--t-md);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero__b-body {
  font-size: var(--t-sm);
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.hero__b-actions {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  align-items: flex-start;
}

.hero__b-phone {
  font-size: var(--t-xs);
  color: var(--ink-3);
  padding-top: var(--s2);
}

.hero__b-phone a {
  color: var(--schie);
  font-weight: 700;
  text-decoration: none;
}

/* Zone C — statistieken + ornament */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.hero__stat {
  padding-bottom: var(--s5);
  border-bottom: 1px solid var(--schie-mid);
}

.hero__stat:last-child { border-bottom: none; padding-bottom: 0; }

.hero__stat-val {
  font-family: var(--font-head);
  font-size: var(--t-xl);
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-lbl {
  font-size: var(--t-xs);
  color: var(--schie);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-top: 3px;
}

.hero__c-label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--schie);
  margin: 0;
  max-width: none;
  padding-bottom: var(--s5);
  border-bottom: 1px solid var(--schie-mid);
}

.hero__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--s4);
  align-items: start;
  padding-block: var(--s5);
  border-bottom: 1px solid var(--schie-mid);
}

.hero__step:last-child { border-bottom: none; }

.hero__step-num {
  font-family: var(--font-head);
  font-size: var(--t-xs);
  font-weight: 900;
  color: var(--schie);
  letter-spacing: 0.05em;
  padding-top: 3px;
}

.hero__step-title {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 3px;
  max-width: none;
  line-height: 1.3;
}

.hero__step-body {
  font-size: var(--t-xs);
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
  max-width: none;
}

/* Hero responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .hero__a { padding: var(--s16) var(--s8); }
  .hero__b { padding: var(--s12) var(--s6); }
  .hero__c { padding: var(--s10) var(--s6); }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__a {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: var(--s12) var(--s6);
  }

  .hero__b {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: var(--s10) var(--s6);
  }

  .hero__c {
    padding: var(--s10) var(--s6);
    min-height: 220px;
  }

  .hero__lead { max-width: none; }
  .hero__river { display: none; }
}

/* ────────────────────────────────────────────────────────────
   POSITIONERING SECTIE
   ──────────────────────────────────────────────────────────── */

.pos-section {
  padding-block: var(--s24);
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.pos-section__inner {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: var(--s6);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s16);
  align-items: center;
}

@media (max-width: 767px) {
  .pos-section__inner { grid-template-columns: 1fr; gap: var(--s10); }
}

.pos-section__heading {
  font-size: var(--t-xl);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 22ch;
  margin-bottom: var(--s6);
}

.pos-section__body {
  font-size: var(--t-base);
  color: var(--ink-2);
  line-height: 1.72;
  max-width: 52ch;
  margin: 0;
}

.pos-points {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.pos-point {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  border-left: 3px solid var(--schie);
}

.pos-point__text {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
  max-width: none;
}

/* ────────────────────────────────────────────────────────────
   ROUTES SECTIE
   ──────────────────────────────────────────────────────────── */

.routes-section {
  padding-block: var(--s24);
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
}

.routes-section__inner {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: var(--s6);
}

.routes-section__header {
  margin-bottom: var(--s12);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s12);
  align-items: end;
}

@media (max-width: 767px) {
  .routes-section__header { grid-template-columns: 1fr; gap: var(--s4); }
}

.routes-section__title {
  font-size: var(--t-xl);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.routes-section__intro {
  font-size: var(--t-base);
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
  max-width: none;
}

.routes-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s4);
}

@media (max-width: 900px) {
  .routes-grid { grid-template-columns: 1fr 1fr; }
  .route-card--featured { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .routes-grid { grid-template-columns: 1fr; }
  .route-card--featured { grid-column: auto; }
}

.route-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: box-shadow var(--ease), transform var(--ease);
  text-decoration: none;
  color: inherit;
}

.route-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}

.route-card--featured {
  background: var(--surface);
  border-color: var(--schie-mid);
  padding: var(--s10);
}

.route-card__num {
  font-family: var(--font-body);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--schie);
  text-transform: uppercase;
}

.route-card__title {
  font-size: var(--t-md);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.route-card--featured .route-card__title { font-size: var(--t-lg); }

.route-card__body {
  font-size: var(--t-sm);
  color: var(--ink-2);
  line-height: 1.65;
  flex: 1;
  margin: 0;
  max-width: none;
}

.route-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 1px;
  margin-top: auto;
  width: fit-content;
  transition: color var(--ease), border-color var(--ease), gap var(--ease);
}

.route-card__link:hover {
  color: var(--schie);
  border-bottom-color: var(--schie);
  gap: var(--s3);
}

/* ────────────────────────────────────────────────────────────
   DIENSTEN SECTIE
   ──────────────────────────────────────────────────────────── */

.diensten-section {
  padding-block: var(--s24);
  background: var(--bg-off);
  border-bottom: 1px solid var(--rule);
}

.diensten-section__inner {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: var(--s6);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--s16);
  align-items: start;
}

@media (max-width: 900px) {
  .diensten-section__inner { grid-template-columns: 1fr; gap: var(--s10); }
}

.diensten-section__intro-title {
  font-size: var(--t-xl);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--s6);
}

.diensten-section__intro-body {
  font-size: var(--t-base);
  color: var(--ink-2);
  line-height: 1.72;
  margin-bottom: var(--s8);
  max-width: none;
}

.diensten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

@media (max-width: 580px) {
  .diensten-grid { grid-template-columns: 1fr; }
}

.dienst-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  transition: box-shadow var(--ease);
}

.dienst-card:hover { box-shadow: var(--sh-sm); }

.dienst-card__num {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--schie);
}

.dienst-card__title {
  font-size: var(--t-base);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.dienst-card__body {
  font-size: var(--t-sm);
  color: var(--ink-2);
  line-height: 1.62;
  margin: 0;
  max-width: none;
}

/* ────────────────────────────────────────────────────────────
   PRODUCTEN SECTIE
   ──────────────────────────────────────────────────────────── */

.producten-section {
  padding-block: var(--s24);
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
}

.producten-section__inner {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: var(--s6);
}

.producten-section__header {
  margin-bottom: var(--s12);
  max-width: var(--w-default);
}

.producten-section__title {
  font-size: var(--t-xl);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--s4);
}

.producten-section__intro {
  font-size: var(--t-base);
  color: var(--ink-2);
  line-height: 1.72;
  max-width: 60ch;
  margin: 0;
}

.producten-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}

@media (max-width: 1024px) {
  .producten-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .producten-list { grid-template-columns: 1fr 1fr; }
}

.product-item {
  background: var(--surface);
  padding: var(--s8) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.product-item__title {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.product-item__body {
  font-size: var(--t-xs);
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
  max-width: none;
}

.producten-section__cta {
  margin-top: var(--s10);
}

/* ────────────────────────────────────────────────────────────
   WAAROM SECTIE
   ──────────────────────────────────────────────────────────── */

.waarom-section {
  padding-block: var(--s24);
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.waarom-section__inner {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: var(--s6);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s16);
  align-items: start;
}

@media (max-width: 900px) {
  .waarom-section__inner { grid-template-columns: 1fr; gap: var(--s10); }
}

.waarom-section__title {
  font-size: var(--t-xl);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--s6);
}

.waarom-section__body {
  font-size: var(--t-base);
  color: var(--ink-2);
  line-height: 1.72;
  margin-bottom: var(--s8);
  max-width: none;
}

.waarom-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.waarom-item {
  padding-block: var(--s6);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s4);
  align-items: start;
}

.waarom-item:last-child { border-bottom: none; }

.waarom-item__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--schie);
  margin-top: 0.55em;
  flex-shrink: 0;
}

.waarom-item__title {
  font-size: var(--t-sm);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.waarom-item__body {
  font-size: var(--t-sm);
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

/* ────────────────────────────────────────────────────────────
   PRAKTIJK SECTIE
   ──────────────────────────────────────────────────────────── */

.praktijk-section {
  padding-block: var(--s24);
  background: var(--bg-off);
  border-bottom: 1px solid var(--rule);
}

.praktijk-section__inner {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: var(--s6);
}

.praktijk-section__header {
  margin-bottom: var(--s12);
}

.praktijk-section__title {
  font-size: var(--t-xl);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--s4);
}

.praktijk-section__intro {
  font-size: var(--t-base);
  color: var(--ink-2);
  line-height: 1.72;
  max-width: 58ch;
  margin: 0;
}

.praktijk-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--s4);
}

@media (max-width: 900px) {
  .praktijk-grid { grid-template-columns: 1fr 1fr; }
  .praktijk-card--main { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .praktijk-grid { grid-template-columns: 1fr; }
  .praktijk-card--main { grid-column: auto; }
}

.praktijk-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease);
}

.praktijk-card:hover { box-shadow: var(--sh-md); }

.praktijk-card__img {
  aspect-ratio: 4/3;
  background: var(--schie-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--s6);
}

.praktijk-card--main .praktijk-card__img {
  aspect-ratio: 16/9;
}

.praktijk-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.praktijk-card__body {
  padding: var(--s6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.praktijk-card__title {
  font-size: var(--t-base);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.praktijk-card__desc {
  font-size: var(--t-sm);
  color: var(--ink-2);
  line-height: 1.62;
  margin: 0;
  max-width: none;
}

.praktijk-section__cta {
  margin-top: var(--s10);
}

/* ────────────────────────────────────────────────────────────
   CTA SECTIE
   ──────────────────────────────────────────────────────────── */

.cta-block {
  background: #1a1714;
  padding-block: var(--s32);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.cta-block__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--s8);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s20);
  align-items: center;
}

@media (max-width: 900px) {
  .cta-block__inner { grid-template-columns: 1fr; gap: var(--s10); }
}

@media (max-width: 767px) {
  .cta-block__inner { padding-inline: var(--s6); }
}

.cta-block__eyebrow {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--schie);
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s5);
  opacity: 0.85;
}

.cta-block__eyebrow::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--schie);
}

.cta-block__title {
  font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem);
  font-weight: 800;
  color: #f5f1eb;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: var(--s5);
}

.cta-block__body {
  font-size: var(--t-base);
  color: rgba(245,241,235,0.48);
  line-height: 1.78;
  margin: 0;
  max-width: 54ch;
  font-weight: 400;
}

.cta-block__actions {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  align-items: stretch;
  flex-shrink: 0;
  padding: var(--s8);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
}

.cta-block__phone {
  font-size: var(--t-xs);
  color: rgba(245,241,235,0.32);
  padding-top: var(--s2);
  text-align: center;
}

.cta-block__phone a {
  color: rgba(245,241,235,0.52);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--ease);
}

.cta-block__phone a:hover { color: var(--schie); }

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */

.site-footer {
  background: #161310;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: var(--s16) var(--s12);
}

.site-footer__inner {
  max-width: var(--w-wide);
  margin-inline: auto;
  padding-inline: var(--s8);
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.1fr;
  gap: var(--s16);
  align-items: start;
}

@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; padding-inline: var(--s6); }
}

@media (max-width: 560px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: var(--s10); }
}

.footer-nav__heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,241,235,0.28);
  margin-bottom: var(--s5);
  max-width: none;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-nav__list a {
  font-size: var(--t-sm);
  color: rgba(245,241,235,0.5);
  text-decoration: none;
  transition: color var(--ease);
  line-height: 1.4;
}

.footer-nav__list a:hover { color: #f5f1eb; }

.footer-brand__meta {
  font-size: var(--t-xs);
  color: rgba(245,241,235,0.22);
  margin-top: var(--s2);
  max-width: none;
}

.footer-brand__tagline {
  font-size: var(--t-sm);
  color: rgba(245,241,235,0.38);
  margin-top: var(--s3);
  max-width: 34ch;
  line-height: 1.5;
}

.footer-brand__copy {
  margin-top: var(--s8);
  font-size: var(--t-xs);
  color: rgba(245,241,235,0.18);
  max-width: none;
}

.footer-juridisch-links {
  margin-top: var(--s4);
  font-size: var(--t-xs);
  color: rgba(245,241,235,0.28);
}

.footer-juridisch-links a {
  color: rgba(245,241,235,0.38);
  text-decoration: none;
  transition: color var(--ease);
}

.footer-juridisch-links a:hover {
  color: rgba(245,241,235,0.6);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  align-items: flex-start;
}

.footer-contact a {
  font-size: var(--t-sm);
  color: rgba(245,241,235,0.5);
  text-decoration: none;
  transition: color var(--ease);
}

.footer-contact a:hover { color: #f5f1eb; }

.footer-cta-btn {
  margin-top: var(--s4);
  align-self: flex-start;
}

/* Social knoppen + theme toggle rij */
.footer-bottom-row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-top: var(--s5);
  flex-wrap: wrap;
}

.footer-socials {
  display: flex;
  gap: var(--s3);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  border: 1px solid rgba(248,245,240,0.12);
  color: rgba(248,245,240,0.4);
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-social:hover {
  color: #ffffff;
  border-color: var(--schie);
  background: rgba(58,122,130,0.15);
}

.theme-toggle--footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  border: 1px solid rgba(248,245,240,0.12);
  background: none;
  color: rgba(248,245,240,0.4);
  cursor: pointer;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
  margin-left: var(--s2);
}

.theme-toggle--footer:hover {
  color: #ffffff;
  border-color: var(--schie);
  background: rgba(58,122,130,0.15);
}

.theme-toggle--footer svg { width: 20px; height: 20px; }

/* ────────────────────────────────────────────────────────────
   PAGE HEADER
   ──────────────────────────────────────────────────────────── */

.page-header {
  padding-top: calc(64px + var(--s16));
  padding-bottom: var(--s16);
  padding-inline: var(--s6);
  background: var(--bg-paper);
  border-bottom: 1px solid var(--rule);
}

.page-header__wrap {
  max-width: var(--w-wide);
  margin-inline: auto;
}

.page-header__kicker {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--schie);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s4);
}

.page-header__kicker::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--schie);
}

.page-header__title {
  font-size: var(--t-2xl);
  font-weight: 900;
  line-height: 1.05;
  max-width: 22ch;
  letter-spacing: -0.025em;
}

.page-header__intro {
  margin-top: var(--s6);
  font-size: var(--t-lg);
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--ink-2);
  max-width: 55ch;
  line-height: 1.5;
}

/* ────────────────────────────────────────────────────────────
   CONTACTPAGINA
   ──────────────────────────────────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s16);
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: var(--s6);
  padding-block: var(--s24);
}

@media (max-width: 767px) {
  .contact-layout { grid-template-columns: 1fr; gap: var(--s12); }
}

.contact-info h1 { font-size: var(--t-xl); margin-bottom: var(--s4); }
.contact-info p  { margin-bottom: var(--s4); }

.contact-details {
  margin-top: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--t-sm);
  color: var(--ink-2);
}

.contact-detail svg { width: 17px; height: 17px; color: var(--schie); flex-shrink: 0; }
.contact-detail a   { color: var(--ink-2); }
.contact-detail a:hover { color: var(--schie); }

/* ────────────────────────────────────────────────────────────
   FORMULIEREN
   ──────────────────────────────────────────────────────────── */

.form { display: flex; flex-direction: column; gap: var(--s6); }

.form-group { display: flex; flex-direction: column; gap: var(--s2); }

.form-label {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink-2);
}

.form-label .optional {
  font-weight: 400;
  color: var(--ink-3);
  font-size: var(--t-xs);
  margin-left: var(--s1);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--s3) var(--s4);
  background: var(--surface);
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-md);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-base);
  transition: border-color var(--ease), box-shadow var(--ease);
  min-height: 44px;
  appearance: none;
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-3); }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--schie);
  box-shadow: 0 0 0 3px rgba(58, 122, 130, 0.12);
}

.form-input.is-error,
.form-textarea.is-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-error { font-size: var(--t-xs); color: #c0392b; display: none; margin-top: var(--s1); }
.form-error.is-visible { display: block; }

.form-success {
  padding: var(--s6);
  background: var(--schie-light);
  border: 1px solid var(--schie-mid);
  border-radius: var(--r-md);
  font-size: var(--t-base);
  color: var(--ink);
  display: none;
}

.form-success.is-visible { display: block; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a837a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s4) center;
  padding-right: var(--s10);
  cursor: pointer;
}

.form-submit { align-self: flex-start; }

/* ────────────────────────────────────────────────────────────
   OFFERTE PAGINA
   ──────────────────────────────────────────────────────────── */

.offerte-layout {
  max-width: var(--w-narrow);
  margin-inline: auto;
  padding-inline: var(--s6);
  padding-bottom: var(--s24);
}

.offerte-expect {
  margin-top: var(--s8);
  padding: var(--s4) var(--s6);
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--rule);
  font-size: var(--t-sm);
  color: var(--ink-2);
}

/* ────────────────────────────────────────────────────────────
   OVER ONS PAGINA
   ──────────────────────────────────────────────────────────── */

.over-page {
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: var(--s6);
  padding-bottom: var(--s24);
}

/* ────────────────────────────────────────────────────────────
   404
   ──────────────────────────────────────────────────────────── */

.not-found {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  background: var(--bg);
}

.not-found__inner {
  max-width: var(--w-default);
  margin-inline: auto;
  padding-inline: var(--s6);
  padding-block: var(--s24);
}

.not-found__code {
  font-family: var(--font-head);
  font-size: var(--t-2xl);
  font-weight: 900;
  color: var(--surface-dim);
  line-height: 1;
  margin-bottom: var(--s6);
}

/* ────────────────────────────────────────────────────────────
   KEYFRAMES
   ──────────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
