/* =========================================================
   Klusjesman Rhenen — stylesheet
   Palet: werkbroek-navy + duimstok-geel, stucwerk-witte vlakken.
   Signatuur: de duimstok (gele meetlat-strip met maatstreepjes).
   ========================================================= */

:root {
  --ink: #22303c;        /* werkbroek-navy */
  --ink-deep: #18222b;   /* footer / diepe vlakken */
  --geel: #f5b01f;       /* duimstok-geel */
  --geel-diep: #d99400;  /* hover */
  --papier: #f3f4f1;     /* stucwerk-wit */
  --wit: #ffffff;
  --slate: #52616e;      /* secundaire tekst */
  --lijn: #d9ded9;
  --wa: #1faa53;         /* WhatsApp */
  --wa-diep: #178a43;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

  --schaduw: 4px 4px 0 rgba(34, 48, 60, 0.18);
  --radius: 5px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--wit);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ink); }
a:hover { color: var(--geel-diep); }

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Duimstok: de signatuur-strip ---------- */
/* Gele meetlat met kleine en grote maatstreepjes, puur CSS. */
.ruler {
  height: 14px;
  background-color: var(--geel);
  background-image:
    repeating-linear-gradient(90deg,
      transparent 0, transparent 48px,
      var(--ink) 48px, var(--ink) 50px),
    repeating-linear-gradient(90deg,
      transparent 0, transparent 9px,
      rgba(34, 48, 60, 0.75) 9px, rgba(34, 48, 60, 0.75) 10px);
  background-size: 100% 100%, 100% 45%;
  background-repeat: repeat-x;
  background-position: 0 0, 0 100%;
}
.ruler.thin { height: 8px; }

/* ---------- Typografie ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.08;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 6vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--geel);
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.9rem;
}

.lead { font-size: 1.15rem; color: var(--slate); max-width: 46rem; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.15rem;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  cursor: pointer;
}
.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(34, 48, 60, 0.18);
}
.btn-primary { background: var(--geel); color: var(--ink); }
.btn-primary:hover { background: var(--geel-diep); color: var(--ink); }
.btn-wa { background: var(--wa); color: var(--wit); }
.btn-wa:hover { background: var(--wa-diep); color: var(--wit); }
.btn-ghost { background: var(--wit); color: var(--ink); }
.btn-ghost:hover { background: var(--papier); color: var(--ink); }
.btn svg { flex: 0 0 auto; }

/* ---------- Header ---------- */
.site-header {
  background: var(--wit);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.45rem;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.logo .logo-blok {
  background: var(--geel);
  border: 2px solid var(--ink);
  border-radius: 3px;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.logo span.sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--slate);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--ink);
  padding: 0.3rem 0.1rem;
  border-bottom: 3px solid transparent;
}
.site-nav a:hover { border-bottom-color: var(--geel); color: var(--ink); }
.site-nav a[aria-current="page"] { border-bottom-color: var(--geel); }
.nav-bel { margin-left: 0.4rem; }
.site-nav .btn { font-size: 1rem; padding: 0.45rem 0.95rem; box-shadow: 2px 2px 0 rgba(34,48,60,0.18); }

.nav-toggle {
  display: none;
  background: var(--wit);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.4rem 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 840px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.4rem; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--wit);
    border-bottom: 2px solid var(--ink);
  }
  .site-nav.open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
  }
  .site-nav li { border-bottom: 1px solid var(--lijn); }
  .site-nav li:last-child { border-bottom: none; padding-top: 0.75rem; }
  .site-nav a { display: block; padding: 0.75rem 0.2rem; border-bottom: none; }
  .site-nav .btn { justify-content: center; display: inline-flex; width: 100%; }
}

/* ---------- Hero ---------- */
.hero { background: var(--papier); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 1.25rem 3rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero h1 .accent {
  background: var(--geel);
  padding: 0 0.35rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero .regio {
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 1.5rem;
  max-width: 34rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.6rem; }
.hero-foto {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--geel);
  overflow: hidden;
}
.hero-foto img { width: 100%; height: 100%; object-fit: cover; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; padding: 0; margin: 0; }
.trust-chips li {
  background: var(--wit);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.trust-chips li::before { content: "✓ "; color: var(--geel-diep); font-weight: 700; }

@media (max-width: 840px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 2.25rem; }
  .hero-foto { order: -1; max-height: 300px; }
}

/* ---------- Secties ---------- */
.sectie { padding: 3.5rem 0; }
.sectie.papier { background: var(--papier); }
.sectie-kop { max-width: 46rem; margin-bottom: 2rem; }

/* Gele banner: Geen klus te klein! */
.banner {
  background: var(--geel);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.banner-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.6rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.banner h2 { margin: 0; font-size: clamp(1.6rem, 4vw, 2.2rem); }
.banner .btn { background: var(--ink); color: var(--wit); border-color: var(--ink-deep); }
.banner .btn:hover { background: var(--ink-deep); color: var(--wit); }

/* ---------- Klusbriefje: checklist-kaarten ---------- */
.kaarten {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.4rem;
}
.kaart {
  background: var(--wit);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  padding: 1.4rem 1.4rem 1.2rem;
}
.papier .kaart { background: var(--wit); }
.kaart h3 { margin-bottom: 0.7rem; }
.kaart ul.checklist { margin: 0; }

ul.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.checklist li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.45rem;
}
ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--geel);
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
  color: var(--ink);
}

/* ---------- Fotogalerij ---------- */
.galerij {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.4rem;
}
.galerij figure {
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--wit);
  box-shadow: var(--schaduw);
  overflow: hidden;
}
.galerij img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.galerij figcaption {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  padding: 0.55rem 0.8rem;
  border-top: 2px solid var(--ink);
  background: var(--papier);
}

/* ---------- Stappen (zo werkt het) ---------- */
.stappen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  counter-reset: stap;
}
.stap {
  background: var(--wit);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  padding: 1.4rem;
}
.stap .stapnr {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  background: var(--geel);
  border: 2px solid var(--ink);
  border-radius: 3px;
  width: 2.4rem;
  height: 2.4rem;
  line-height: 2.15rem;
  text-align: center;
  margin-bottom: 0.8rem;
}
.stap p { margin: 0; color: var(--slate); }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--wit);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  box-shadow: var(--schaduw);
}
.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--geel-diep);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0; padding: 0 1.2rem 1rem; color: var(--slate); }

/* ---------- Contactblok ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.nap {
  background: var(--wit);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  padding: 1.5rem;
}
.nap p { margin: 0.3rem 0; }
.nap .naam { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.3rem; }
.nap a { font-weight: 600; }

.contact-acties { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.contact-acties .btn { width: 100%; max-width: 340px; justify-content: center; }

.map-link {
  display: block;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
  text-decoration: none;
  max-width: 640px;
}
.map-link img { width: 100%; }
.map-link span {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.55rem 0.9rem;
  background: var(--geel);
  border-top: 2px solid var(--ink);
  color: var(--ink);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.9rem;
  color: var(--slate);
  padding: 0.9rem 0 0;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 0.4rem; color: var(--lijn); }
.breadcrumb a { color: var(--slate); }

/* ---------- Pagina-kop ---------- */
.pagina-kop { background: var(--papier); padding: 2.2rem 0 2.6rem; }
.pagina-kop h1 { margin-bottom: 0.4rem; }
.pagina-kop .lead { margin: 0; }

/* ---------- Over ons ---------- */
.over-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 760px) { .over-grid { grid-template-columns: 1fr; } }
.portret {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--geel);
  overflow: hidden;
  margin: 0;
}
.portret figcaption {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.55rem 0.9rem;
  background: var(--papier);
  border-top: 2px solid var(--ink);
}
.portret img { width: 100%; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-deep);
  color: #cfd8de;
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
}
.site-footer h3 {
  color: var(--wit);
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}
.site-footer a { color: #cfd8de; }
.site-footer a:hover { color: var(--geel); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.1rem 0;
  font-size: 0.9rem;
  color: #9fb0bb;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

/* ---------- 404 ---------- */
.nietgevonden { text-align: center; padding: 5rem 1.25rem; }
.nietgevonden .groot {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 15vw, 8rem);
  line-height: 1;
  color: var(--geel);
  -webkit-text-stroke: 3px var(--ink);
}
.nietgevonden .hero-cta { justify-content: center; margin-top: 1.5rem; }

/* ---------- Diversen ---------- */
.tekstblok { max-width: 46rem; }
.tekstblok p { margin-top: 0; }
.subtiel { color: var(--slate); font-size: 0.95rem; }
.sectie-cta { margin-top: 2rem; }
