/* Berends Hoveniers - huisstijl
   Palet "werkdag in het groen": dennengroen, mos, loof, papierwit, humus,
   signaaloranje (alleen voor call-to-action, afgeleid van werkkleding/machines). */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/bricolage-normal-400-800.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-normal-400-700.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-italic-400-700.woff2") format("woff2");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/plexmono-normal-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/plexmono-normal-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

:root {
  --dennen: #1c3527;
  --dennen-diep: #12241a;
  --mos: #47714f;
  --loof: #a8c686;
  --loof-licht: #e4ecd7;
  --papier: #f4f6ef;
  --wit: #ffffff;
  --humus: #212b1e;
  --grijs: #5a6355;
  --signaal: #d95d1e;
  --signaal-donker: #b84a12;
  --lijn: #d8dfcd;

  --font-display: "Bricolage Grotesque", "Archivo", sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --maat: 1120px;
  --radius: 10px;
  --schaduw: 0 2px 14px rgba(28, 53, 39, 0.10);
}

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

body {
  font-family: var(--font-body);
  color: var(--humus);
  background: var(--papier);
  line-height: 1.65;
  font-size: 1.0625rem;
}

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

a { color: var(--mos); text-underline-offset: 3px; }
a:hover { color: var(--dennen); }
:focus-visible { outline: 3px solid var(--signaal); outline-offset: 2px; border-radius: 2px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; color: var(--dennen); }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.15rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

.wrap { max-width: var(--maat); margin: 0 auto; padding: 0 1.25rem; }
section { padding: 3.5rem 0; }
.sectie-kop { max-width: 46rem; margin-bottom: 2rem; }
.sectie-kop p { margin-top: 0.75rem; color: var(--grijs); }

/* Signatuur: plantenlabel-eyebrow (steker zoals in een border) */
.label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dennen);
  background: var(--loof-licht);
  border: 1px solid var(--loof);
  padding: 0.3rem 1.1rem 0.3rem 0.7rem;
  margin-bottom: 0.9rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.75rem) 50%, 100% 100%, 0 100%);
}
.label--omgekeerd { background: rgba(228, 236, 215, 0.16); border-color: rgba(168, 198, 134, 0.5); color: var(--loof-licht); }

/* Knoppen */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 0.85rem 1.5rem;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primair { background: var(--signaal); color: var(--wit); }
.btn-primair:hover { background: var(--signaal-donker); color: var(--wit); }
.btn-rustig { background: transparent; color: var(--dennen); border: 2px solid var(--mos); }
.btn-rustig:hover { background: var(--loof-licht); color: var(--dennen); }
.btn-donker { background: var(--dennen); color: var(--wit); }
.btn-donker:hover { background: var(--dennen-diep); color: var(--wit); }
.hero .btn-rustig, .cta-blok .btn-rustig { color: var(--wit); border-color: rgba(255,255,255,0.65); }
.hero .btn-rustig:hover, .cta-blok .btn-rustig:hover { background: rgba(255,255,255,0.12); color: var(--wit); }

/* Topbalk */
.topbalk {
  background: var(--dennen-diep);
  color: var(--loof-licht);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.35rem 0;
}
.topbalk .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbalk a { color: var(--loof-licht); text-decoration: none; }
.topbalk a:hover { color: var(--wit); text-decoration: underline; }

/* Header */
header.site {
  background: var(--dennen);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.8rem; padding-bottom: 0.8rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo svg { flex: none; }
.logo b {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--wit);
  line-height: 1.1;
}
.logo span { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--loof); }

nav.hoofd ul { list-style: none; display: flex; gap: 0.25rem; align-items: center; }
nav.hoofd a {
  display: block;
  color: var(--loof-licht);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
}
nav.hoofd a:hover { background: rgba(255,255,255,0.1); color: var(--wit); }
nav.hoofd a[aria-current="page"] { background: rgba(168,198,134,0.18); color: var(--wit); }
nav.hoofd .nav-bel { background: var(--signaal); color: var(--wit); font-weight: 700; margin-left: 0.4rem; }
nav.hoofd .nav-bel:hover { background: var(--signaal-donker); }

.nav-knop {
  display: none;
  background: none;
  border: 2px solid var(--loof);
  color: var(--wit);
  font: inherit;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-knop { display: block; }
  nav.hoofd { position: absolute; top: 100%; left: 0; right: 0; background: var(--dennen); display: none; box-shadow: var(--schaduw); }
  nav.hoofd.open { display: block; }
  nav.hoofd ul { flex-direction: column; align-items: stretch; padding: 0.75rem 1.25rem 1.25rem; gap: 0.15rem; }
  nav.hoofd .nav-bel { margin-left: 0; text-align: center; margin-top: 0.5rem; }
}

/* Hero */
.hero { position: relative; color: var(--wit); padding: 0; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(18,36,26,0.92) 0%, rgba(18,36,26,0.72) 45%, rgba(18,36,26,0.35) 100%);
}
.hero .wrap { position: relative; z-index: 1; padding-top: 4.5rem; padding-bottom: 4.5rem; max-width: var(--maat); }
.hero h1 { color: var(--wit); max-width: 17ch; }
.hero .intro { max-width: 34rem; margin: 1.1rem 0 1.6rem; font-size: 1.13rem; color: #e9eee2; }
.hero-regio { font-family: var(--font-mono); font-size: 0.85rem; color: var(--loof); margin-top: 1.4rem; }
.hero-acties { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Kleine paginahero */
.pagina-kop { background: var(--dennen); color: var(--wit); padding: 2.75rem 0; }
.pagina-kop h1 { color: var(--wit); }
.pagina-kop .intro { max-width: 40rem; margin-top: 0.9rem; color: #dfe7d6; }
.kruimel { font-family: var(--font-mono); font-size: 0.78rem; margin-bottom: 1rem; }
.kruimel a { color: var(--loof); text-decoration: none; }
.kruimel a:hover { text-decoration: underline; color: var(--wit); }
.kruimel span { color: #b9c4ae; }

/* Contactstrip onder hero */
.contactstrip { background: var(--loof-licht); border-bottom: 1px solid var(--lijn); padding: 0.9rem 0; }
.contactstrip .wrap { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; justify-content: center; }
.contactstrip a { font-weight: 600; text-decoration: none; color: var(--dennen); }
.contactstrip a:hover { text-decoration: underline; }
.contactstrip .mono { font-family: var(--font-mono); font-size: 0.9rem; }

/* Kaarten */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.kaart {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.kaart img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.kaart-body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.kaart-body p { color: var(--grijs); font-size: 0.98rem; flex: 1; }
.kaart-body .meer { font-weight: 600; text-decoration: none; color: var(--signaal-donker); }
.kaart-body .meer:hover { text-decoration: underline; }
a.kaart-link { text-decoration: none; color: inherit; transition: box-shadow 0.15s ease, transform 0.15s ease; }
a.kaart-link:hover { box-shadow: var(--schaduw); transform: translateY(-2px); }

/* Voordelen */
.voordeel { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius); padding: 1.4rem; }
.voordeel h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.voordeel p { color: var(--grijs); font-size: 0.95rem; }
.voordeel .mono { font-family: var(--font-mono); color: var(--mos); font-size: 0.8rem; display: block; margin-bottom: 0.55rem; }

/* Particulier / zakelijk split */
.split { background: var(--dennen); color: var(--wit); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.split h3 { color: var(--wit); font-size: 1.35rem; }
.split p { color: #dfe7d6; flex: 1; }
.split ul { color: #dfe7d6; padding-left: 1.2rem; }
.split.zakelijk { background: var(--mos); }

/* Seizoensstrip (signatuur): jaarrond werk */
.seizoenen { background: var(--dennen-diep); color: var(--wit); }
.seizoenen h2 { color: var(--wit); }
.seizoenen .sectie-kop p { color: #c3cdb8; }
.seizoen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(168,198,134,0.35); border: 1px solid rgba(168,198,134,0.35); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 780px) { .seizoen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .seizoen-grid { grid-template-columns: 1fr; } }
.seizoen { background: var(--dennen); padding: 1.4rem 1.3rem 1.6rem; }
.seizoen b { font-family: var(--font-mono); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--loof); display: block; margin-bottom: 0.6rem; }
.seizoen ul { list-style: none; }
.seizoen li { padding: 0.28rem 0; font-size: 0.95rem; color: #e4e9dd; border-bottom: 1px dashed rgba(168,198,134,0.25); }
.seizoen li:last-child { border-bottom: 0; }

/* Opdrachtgevers */
.opdrachtgevers ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.opdrachtgevers li {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  color: var(--humus);
}

/* Over-blok */
.over-blok { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 820px) { .over-blok { grid-template-columns: 1fr; } }
.over-blok img { border-radius: var(--radius); box-shadow: var(--schaduw); }

/* FAQ */
.faq details { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius); margin-bottom: 0.8rem; }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-display); padding: 1rem 1.25rem; color: var(--dennen); list-style: none; position: relative; padding-right: 3rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); font-size: 1.3rem; color: var(--mos); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p, .faq details ul { padding: 0 1.25rem 1.1rem; color: var(--grijs); }
.faq details ul { padding-left: 2.4rem; }

/* CTA-blok */
.cta-blok { background: linear-gradient(120deg, var(--dennen-diep), var(--dennen)); color: var(--wit); border-radius: var(--radius); padding: 2.75rem 2.5rem; text-align: center; }
.cta-blok h2 { color: var(--wit); }
.cta-blok p { color: #dfe7d6; max-width: 38rem; margin: 0.8rem auto 1.5rem; }
.cta-blok .hero-acties { justify-content: center; }
.cta-blok .mono { font-family: var(--font-mono); font-size: 0.85rem; color: var(--loof); display: block; margin-top: 1.2rem; }
.cta-blok a.tel-groot { color: var(--wit); }

/* Projectkaarten */
.project-meta { font-family: var(--font-mono); font-size: 0.75rem; color: var(--mos); text-transform: uppercase; letter-spacing: 0.08em; }

/* Inhoudspagina's */
.inhoud { max-width: 46rem; }
.inhoud h2 { margin: 2rem 0 0.7rem; }
.inhoud h3 { margin: 1.4rem 0 0.5rem; }
.inhoud p, .inhoud ul, .inhoud ol { margin-bottom: 1rem; }
.inhoud ul, .inhoud ol { padding-left: 1.3rem; }
.inhoud table { border-collapse: collapse; width: 100%; margin-bottom: 1rem; }
.inhoud th, .inhoud td { border: 1px solid var(--lijn); padding: 0.5rem 0.75rem; text-align: left; font-size: 0.95rem; }
.inhoud th { background: var(--loof-licht); font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* Werkwijze (genummerd: echte volgorde) */
.stappen { list-style: none; counter-reset: stap; max-width: 46rem; }
.stappen li { counter-increment: stap; position: relative; padding: 0 0 1.4rem 3.4rem; }
.stappen li::before {
  content: counter(stap);
  position: absolute; left: 0; top: 0;
  width: 2.3rem; height: 2.3rem;
  border-radius: 50%;
  background: var(--loof-licht);
  border: 2px solid var(--mos);
  color: var(--dennen);
  font-family: var(--font-display);
  font-weight: 700;
  display: grid; place-items: center;
}
.stappen li:not(:last-child)::after { content: ""; position: absolute; left: 1.12rem; top: 2.5rem; bottom: 0.2rem; width: 2px; background: var(--lijn); }
.stappen b { font-family: var(--font-display); color: var(--dennen); display: block; }
.stappen p { color: var(--grijs); font-size: 0.98rem; }

/* NAP / contact */
.nap { background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius); padding: 1.6rem; }
.nap dt { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mos); margin-top: 0.9rem; }
.nap dt:first-child { margin-top: 0; }
.nap dd { font-weight: 600; font-size: 1.05rem; }
.nap dd a { text-decoration: none; color: var(--dennen); }
.nap dd a:hover { text-decoration: underline; }
.map-link { display: block; position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--lijn); text-decoration: none; }
.map-link img { width: 100%; }
.map-link span {
  position: absolute; right: 0.8rem; bottom: 0.8rem;
  background: var(--dennen);
  color: var(--wit);
  font-family: var(--font-mono); font-size: 0.78rem;
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
}

/* Footer */
footer.site { background: var(--dennen-diep); color: #c3cdb8; padding: 3rem 0 2rem; margin-top: 3.5rem; }
footer.site .kolommen { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 860px) { footer.site .kolommen { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer.site .kolommen { grid-template-columns: 1fr; } }
footer.site h3 { color: var(--wit); font-size: 0.95rem; font-family: var(--font-mono); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.9rem; }
footer.site ul { list-style: none; }
footer.site li { padding: 0.2rem 0; }
footer.site a { color: #c3cdb8; text-decoration: none; }
footer.site a:hover { color: var(--wit); text-decoration: underline; }
footer.site .keurmerken { display: flex; gap: 1rem; align-items: center; margin-top: 1rem; }
footer.site .keurmerken img { background: var(--wit); border-radius: 8px; padding: 0.4rem; height: 56px; width: auto; }
footer.site .onderregel { border-top: 1px solid rgba(168,198,134,0.25); margin-top: 2.2rem; padding-top: 1.2rem; font-size: 0.85rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-family: var(--font-mono); }

/* Diverse */
.center { text-align: center; }
.tel-groot { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; text-decoration: none; color: var(--dennen); }
.uitgelicht { background: var(--loof-licht); border-left: 5px solid var(--mos); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.1rem 1.4rem; margin: 1.4rem 0; }
.uitgelicht p { margin: 0; }
.foto-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
@media (max-width: 620px) { .foto-rij { grid-template-columns: 1fr; } }
.foto-rij figure { margin: 0; }
.foto-rij img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.foto-rij figcaption { font-family: var(--font-mono); font-size: 0.78rem; color: var(--grijs); margin-top: 0.4rem; }
