/* ==========================================================================
   KLS Zeilmakerij & Bootstoffering — "Doek & Naad"
   Ontwerpsysteem: canvas-panelen verbonden door gestikte naden.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Doek (licht) */
  --doek: #f1efe7;
  --doek-2: #e8e5d9;
  --lijn: #d3cfc0;
  --inkt: #152430;
  --inkt-zacht: #51606b;

  /* Diepwater (donker) */
  --water: #0e2433;
  --water-2: #16334a;
  --water-lijn: #29465c;
  --zeil: #eef0e9;
  --zeil-zacht: #9db0bc;

  /* Signaal (accent) */
  --signaal: #e8622e;
  --signaal-donker: #b8431a;

  /* Type */
  --f-display: "Archivo", "Arial Narrow", sans-serif;
  --f-body: "Instrument Sans", system-ui, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Maat */
  --radius: 5px;
  --omslag: 1180px;

  color-scheme: light;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--inkt);
  background-color: var(--doek);
  /* subtiele doek-weving */
  background-image:
    repeating-linear-gradient(0deg, rgba(21, 36, 48, 0.022) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(21, 36, 48, 0.022) 0 1px, transparent 1px 5px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul[class], nav ul, .voet ul, .specs ul { list-style: none; padding: 0; }

/* Cross-document view transitions (progressive enhancement) */
@view-transition { navigation: auto; }

::selection { background: var(--signaal); color: var(--zeil); }

:focus-visible {
  outline: 2px dashed var(--signaal);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--signaal);
  color: var(--zeil);
  font-family: var(--f-mono);
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; }

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--f-display);
  line-height: 1;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.display {
  font-size: clamp(3rem, 9.5vw, 6.75rem);
  font-weight: 800;
  font-stretch: 76%;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.92;
}
.display em {
  font-style: normal;
  color: var(--signaal);
}

.kop-2 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 800;
  font-stretch: 80%;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
}

.kop-3 {
  font-size: 1.35rem;
  font-weight: 700;
  font-stretch: 92%;
  line-height: 1.25;
}

p { max-width: 65ch; }
.zacht { color: var(--inkt-zacht); }

.intro {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

/* Maatlabel: mono eyebrow met meetstreepjes */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signaal-donker);
}
.tag::before {
  content: "";
  width: 34px;
  height: 9px;
  flex: none;
  background:
    repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 8px),
    linear-gradient(currentColor, currentColor) 0 100% / 100% 1px no-repeat;
}

/* ---------- Naad (gestikte scheiding) ---------- */
.naad {
  height: 2px;
  border: 0;
  background: repeating-linear-gradient(90deg, currentColor 0 11px, transparent 11px 19px);
  color: var(--lijn);
  opacity: 0.9;
}

/* ---------- Layout ---------- */
.omslag {
  width: min(var(--omslag), 100% - clamp(2.5rem, 8vw, 6rem));
  margin-inline: auto;
}
.omslag--smal { max-width: 800px; }

.sectie { padding-block: clamp(4rem, 9vw, 7.5rem); }
.sectie--plat { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* Donkere panelen */
.water {
  background-color: var(--water);
  background-image: none;
  color: var(--zeil);
}
.water .zacht { color: var(--zeil-zacht); }
.water .tag { color: var(--signaal); }
.water .naad { color: var(--water-lijn); }
.water .kop-3 { color: var(--zeil); }

.sectie-kop { margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.sectie-kop .tag { margin-bottom: 1rem; }
.sectie-kop p { margin-top: 1.1rem; }

/* ---------- Knoppen ---------- */
.knop {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--f-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  position: relative;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, translate 0.18s ease;
}
.knop--vol {
  background: var(--signaal);
  color: #fff;
}
.knop--vol:hover { background: var(--signaal-donker); translate: 0 -2px; }
.knop--lijn {
  border-color: currentColor;
  color: inherit;
}
.knop--lijn:hover { border-style: dashed; translate: 0 -2px; }
.knop svg { width: 1em; height: 1em; }

/* ---------- Header ---------- */
.kop-balk {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--water);
  color: var(--zeil);
  border-bottom: 2px dashed var(--water-lijn);
}
.kop-balk__binnen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.logo__merk {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 110%;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--zeil);
}
.logo__merk span { color: var(--signaal); }
.logo__sub {
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--zeil-zacht);
  line-height: 1.5;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1.2vw, 0.85rem);
}
.site-nav a,
.site-nav .sub-knop {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.65rem;
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--zeil-zacht);
  border-radius: 3px;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.site-nav a:hover, .site-nav .sub-knop:hover { color: var(--zeil); }
.site-nav a.actief {
  color: var(--zeil);
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-color: var(--signaal);
  text-underline-offset: 6px;
}
.site-nav .knop--vol { color: #fff; padding: 0.6rem 1.1rem; }
.site-nav .knop--vol:hover { color: #fff; }

/* Dropdown Diensten */
.heeft-sub { position: relative; }
.sub-knop svg { width: 0.7em; height: 0.7em; transition: rotate 0.15s ease; }
.sub-knop[aria-expanded="true"] svg { rotate: 180deg; }
.sub-lijst {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  padding: 0.5rem;
  background: var(--water-2);
  border: 1px solid var(--water-lijn);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(5, 15, 24, 0.45);
  display: none;
  flex-direction: column;
  gap: 0.1rem;
}
/* Onzichtbare brug over de 10px ruimte tussen knop en lijst,
   zodat :hover niet wegvalt onderweg naar het menu */
.sub-lijst::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.sub-lijst.open { display: flex; }
/* Desktop met muis: puur CSS-hover — sluit altijd vanzelf */
@media (hover: hover) and (min-width: 901px) {
  .heeft-sub:hover .sub-lijst { display: flex; }
}
.sub-lijst a { display: block; width: 100%; }

.menu-knop {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.75rem 0.5rem;
}
.menu-knop span {
  width: 26px;
  height: 2px;
  background: var(--zeil);
  transition: translate 0.2s ease, rotate 0.2s ease, opacity 0.2s ease;
}
.menu-knop[aria-expanded="true"] span:nth-child(1) { translate: 0 7px; rotate: 45deg; }
.menu-knop[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-knop[aria-expanded="true"] span:nth-child(3) { translate: 0 -7px; rotate: -45deg; }

/* ---------- Held (hero) ---------- */
.held {
  position: relative;
  overflow: clip;
  padding-block: clamp(4rem, 8vw, 6.5rem) 0;
}
.held__raster {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.held .tag { margin-bottom: 1.4rem; }
.held__tekst p {
  margin-top: 1.6rem;
  max-width: 46ch;
}
.held__acties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

/* Specs-strook onder de held */
.specs {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 2px dashed var(--water-lijn);
  padding-block: 1.1rem 1.4rem;
}
.specs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zeil-zacht);
}
.specs li::before {
  content: "▸ ";
  color: var(--signaal);
}

/* Kleine held voor subpagina's */
.held--sub { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.held--sub .display { font-size: clamp(2.6rem, 7vw, 5rem); }
.held--sub p { margin-top: 1.5rem; max-width: 58ch; }

/* ---------- Sloep-tekening ---------- */
.sloep { width: 100%; height: auto; }
.sloep .lijn,
.sloep .stik,
.sloep .accent {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sloep .lijn { stroke: var(--zeil); stroke-width: 2.5; }
.sloep .lijn--dun { stroke: var(--zeil-zacht); stroke-width: 1.6; }
.sloep .stik {
  stroke: var(--signaal);
  stroke-width: 2.5;
  stroke-dasharray: 0.018 0.022;
}
.sloep .accent { stroke: var(--signaal); stroke-width: 2.5; }
.sloep .vlag { fill: var(--signaal); stroke: none; }
.sloep .romp-tekst {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.25em;
  fill: var(--zeil-zacht);
}
.sloep .water-golf {
  stroke: var(--water-lijn);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 14 10;
}

/* Naai-animatie bij laden */
@keyframes tekenen { to { stroke-dashoffset: 0; } }
@keyframes deinen {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 7px; }
}
.js .sloep .lijn,
.js .sloep .lijn--dun,
.js .sloep .accent {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: tekenen 1.4s ease forwards;
  animation-delay: var(--d, 0s);
}
.js .sloep .stik {
  stroke-dashoffset: 1;
  animation: tekenen 2.2s linear forwards;
  animation-delay: var(--d, 0.9s);
}
.js .sloep .vlag,
.js .sloep .romp-tekst {
  opacity: 0;
  animation: opduiken 0.8s ease forwards;
  animation-delay: 1.6s;
}
@keyframes opduiken { to { opacity: 1; } }
.sloep__boot { animation: deinen 7s ease-in-out infinite; animation-delay: 2.4s; }

/* ---------- Panelen (kaarten) ---------- */
.panelen {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
}
.paneel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  background: var(--doek);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  text-decoration: none;
  transition: translate 0.2s ease, box-shadow 0.2s ease;
}
.paneel::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px dashed var(--signaal);
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.paneel:hover, .paneel:focus-visible {
  translate: 0 -4px;
  box-shadow: 0 16px 34px rgba(21, 36, 48, 0.12);
}
.paneel:hover::after, .paneel:focus-visible::after { opacity: 1; }
.paneel__icoon {
  width: 54px;
  height: 54px;
  color: var(--signaal-donker);
}
.paneel__icoon svg { width: 100%; height: 100%; }
.paneel .kop-3 { margin-top: 0.25rem; }
.paneel p { font-size: 0.98rem; color: var(--inkt-zacht); }
.paneel__voet {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signaal-donker);
}
.paneel__voet::after { content: " →"; }

/* Donkere variant */
.water .paneel {
  background: var(--water-2);
  border-color: var(--water-lijn);
}
.water .paneel p { color: var(--zeil-zacht); }
.water .paneel__icoon, .water .paneel__voet { color: var(--signaal); }

/* Brede servicebalk-kaart */
.paneel--breed {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: clamp(1.1rem, 2.5vw, 1.75rem);
}
.paneel--breed .paneel__tekst { flex: 1 1 380px; }
.paneel--breed .paneel__voet { margin: 0; padding: 0; }

/* ---------- Foto's ---------- */
.foto {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--water-lijn);
  margin: 0;
}
.foto img { width: 100%; height: 100%; object-fit: cover; }
.foto::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px dashed rgba(238, 240, 233, 0.55);
  border-radius: 3px;
  pointer-events: none;
}
.foto--staand { aspect-ratio: 3 / 2; }

/* Volle-breedte fotoband */
.band-foto {
  position: relative;
  overflow: clip;
  max-height: 460px;
}
.band-foto img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
}
.band-foto figcaption {
  position: absolute;
  left: clamp(1.25rem, 5vw, 3rem);
  bottom: 1.25rem;
  padding: 0.5rem 0.9rem;
  background: var(--water);
  color: var(--zeil);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px dashed var(--water-lijn);
}

/* Paneel met foto bovenin */
.paneel--foto { padding: 0; overflow: hidden; }
.paneel--foto .paneel__foto {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-bottom: 2px dashed var(--lijn);
}
.paneel--foto .paneel__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.35s ease;
}
.paneel--foto:hover .paneel__foto img,
.paneel--foto:focus-visible .paneel__foto img { scale: 1.05; }
.paneel--foto .paneel__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
}

/* ---------- Werkwijze / stappen ---------- */
.stappen {
  position: relative;
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.6rem);
  max-width: 760px;
  padding-left: clamp(2.2rem, 5vw, 3.2rem);
}
.stappen::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--signaal) 0 10px, transparent 10px 18px);
  opacity: 0.85;
}
.water .stappen::before {
  background: repeating-linear-gradient(180deg, var(--signaal) 0 10px, transparent 10px 18px);
}
.stap { position: relative; }
.stap::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(2.2rem, 5vw, 3.2rem) + 2px);
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--doek);
  border: 3px solid var(--signaal);
}
.water .stap::before { background: var(--water); }
.stap__nr {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signaal-donker);
}
.water .stap__nr { color: var(--signaal); }
.stap h3 { margin-block: 0.35rem 0.5rem; }
.stap p { color: var(--inkt-zacht); }
.water .stap p { color: var(--zeil-zacht); }

/* Compacte 4-fasen rij (home) */
.fasen {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
  counter-reset: fase;
}
.fase {
  padding: 1.6rem 1.5rem;
  background: var(--water-2);
  border: 1px solid var(--water-lijn);
  border-radius: var(--radius);
}
.fase__nr {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--signaal);
}
.fase h3 { margin-block: 0.5rem 0.55rem; font-size: 1.15rem; }
.fase p { font-size: 0.95rem; color: var(--zeil-zacht); }

/* ---------- USP-lijst ---------- */
.usps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3.5vw, 2.5rem) clamp(2rem, 5vw, 4rem);
}
.usp { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; }
.usp__icoon {
  width: 44px;
  height: 44px;
  color: var(--signaal-donker);
}
.usp__icoon svg { width: 100%; height: 100%; }
.usp h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.usp p { font-size: 0.98rem; color: var(--inkt-zacht); }

/* ---------- Cijfers / feiten ---------- */
.feiten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  text-align: left;
}
.feit {
  border-top: 2px dashed var(--lijn);
  padding-top: 1rem;
}
.water .feit { border-color: var(--water-lijn); }
.feit__cijfer {
  font-family: var(--f-display);
  font-weight: 800;
  font-stretch: 80%;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--signaal-donker);
}
.water .feit__cijfer { color: var(--signaal); }
.feit__label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
  margin-top: 0.5rem;
}
.water .feit__label { color: var(--zeil-zacht); }

/* ---------- Twee kolommen ---------- */
.twee {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.twee > * > p + p { margin-top: 1rem; }

/* ---------- Chips (materialen) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.chip {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border: 1.5px dashed var(--signaal-donker);
  border-radius: 999px;
  color: var(--signaal-donker);
}
.water .chip { border-color: var(--signaal); color: var(--signaal); }

/* ---------- Inhoudsblokken (subpagina's) ---------- */
.blok + .blok { margin-top: clamp(2.5rem, 5vw, 4rem); }
.blok h2 { margin-bottom: 1rem; }
.blok h3 { margin-block: 1.5rem 0.5rem; }
.blok ul:not([class]) {
  padding-left: 1.2rem;
  color: var(--inkt-zacht);
}
.blok ul:not([class]) li { margin-block: 0.35rem; }
.blok ul:not([class]) li::marker { content: "▸ "; color: var(--signaal-donker); }

/* ---------- Tabel ---------- */
.tabel-wrap {
  overflow-x: auto;
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}
table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
caption {
  text-align: left;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
  padding: 0.9rem 1.1rem 0.4rem;
}
th, td {
  text-align: left;
  padding: 0.8rem 1.1rem;
  border-top: 1px dashed var(--lijn);
}
thead th {
  border-top: 0;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--signaal-donker);
}
tbody th { font-weight: 600; }
td { color: var(--inkt-zacht); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.8rem; margin-top: 1.75rem; }
.faq details {
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  background: var(--doek);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--f-mono);
  font-size: 1.2rem;
  color: var(--signaal-donker);
  flex: none;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary {
  border-bottom: 2px dashed var(--lijn);
}
.faq details p {
  padding: 1rem 1.25rem 1.2rem;
  color: var(--inkt-zacht);
}

/* ---------- CTA-band ---------- */
.cta-band { text-align: left; }
.cta-band__binnen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}
.cta-band .kop-2 { max-width: 16ch; }
.cta-band p { margin-top: 1rem; }
.cta-band__acties {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}

/* ---------- Formulier ---------- */
.formulier { display: grid; gap: 1.15rem; }
.veld { display: grid; gap: 0.4rem; }
.veld label {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
}
.veld input,
.veld select,
.veld textarea {
  font: inherit;
  color: var(--inkt);
  padding: 0.75rem 0.9rem;
  background: #fbfaf6;
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  width: 100%;
}
.veld input:focus-visible,
.veld select:focus-visible,
.veld textarea:focus-visible {
  outline: 2px dashed var(--signaal);
  outline-offset: 2px;
}
.veld textarea { min-height: 140px; resize: vertical; }
.veld-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.form-noot {
  font-size: 0.9rem;
  color: var(--inkt-zacht);
}

/* Contactkaart */
.contact-kaart {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--water);
  color: var(--zeil);
  border-radius: var(--radius);
}
.contact-kaart .tag { color: var(--signaal); }
.contact-regel {
  display: grid;
  gap: 0.15rem;
}
.contact-regel .label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--zeil-zacht);
}
.contact-regel a {
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
}
.contact-regel a:hover { color: var(--signaal); }

/* ---------- Footer ---------- */
.voet {
  background: var(--water);
  background-image: none;
  color: var(--zeil);
  border-top: 2px dashed var(--water-lijn);
  overflow: clip;
}
.voet__merk {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 76%;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--water-lijn);
  user-select: none;
  padding-top: clamp(2rem, 5vw, 3.5rem);
  white-space: nowrap;
}
.voet__raster {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.voet h2 {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signaal);
  margin-bottom: 1rem;
}
.voet p, .voet li { font-size: 0.95rem; color: var(--zeil-zacht); }
.voet ul { display: grid; gap: 0.45rem; }
.voet a { text-decoration: none; color: var(--zeil-zacht); }
.voet a:hover { color: var(--zeil); }
.voet__onder {
  border-top: 2px dashed var(--water-lijn);
  padding-block: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--zeil-zacht);
}

/* ---------- Onthullen bij scroll ---------- */
.js .onthul {
  opacity: 0;
  translate: 0 18px;
  transition: opacity 0.6s ease, translate 0.6s ease;
}
.js .onthul.zichtbaar {
  opacity: 1;
  translate: 0 0;
}

/* ---------- Beweging uit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .sloep .lijn,
  .js .sloep .lijn--dun,
  .js .sloep .accent,
  .js .sloep .stik { stroke-dasharray: none; stroke-dashoffset: 0; animation: none; }
  .js .sloep .stik { stroke-dasharray: 0.018 0.022; }
  .js .sloep .vlag, .js .sloep .romp-tekst { opacity: 1; animation: none; }
  .js .onthul { opacity: 1; translate: 0 0; }
}

/* ---------- Responsief ---------- */
@media (max-width: 1040px) {
  .panelen { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fasen { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .held__raster { grid-template-columns: 1fr; }
  .held__beeld { max-width: 560px; }
  .twee { grid-template-columns: 1fr; }
  .usps { grid-template-columns: 1fr; }
  .cta-band__binnen { grid-template-columns: 1fr; }
  .cta-band__acties { flex-direction: row; flex-wrap: wrap; }
  .voet__raster { grid-template-columns: 1fr 1fr; }

  /* Mobiel menu */
  .menu-knop { display: flex; }
  .site-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--water);
    padding: 1.5rem;
    display: none;
    overflow-y: auto;
    z-index: 49;
    border-top: 2px dashed var(--water-lijn);
  }
  .site-nav.open { display: block; }
  .site-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .heeft-sub .sub-lijst.open { display: flex; }
  .site-nav a, .site-nav .sub-knop {
    font-size: 1rem;
    padding: 0.85rem 0.75rem;
    width: 100%;
  }
  .heeft-sub .sub-lijst {
    position: static;
    box-shadow: none;
    border: 0;
    border-left: 2px dashed var(--water-lijn);
    border-radius: 0;
    background: transparent;
    margin-left: 0.75rem;
  }
  .site-nav .knop--vol { justify-content: center; margin-top: 0.75rem; }
}

@media (max-width: 620px) {
  .panelen { grid-template-columns: 1fr; }
  .fasen { grid-template-columns: 1fr; }
  .veld-rij { grid-template-columns: 1fr; }
  .voet__raster { grid-template-columns: 1fr; }
  .display { font-size: clamp(2.6rem, 13vw, 3.6rem); }
}
