/* =========================================================================
   Tuinonderneming Cocquijt - design system v2
   Minimalistisch / editorial. Instrument Serif titels + Hanken Grotesk tekst.
   Licht & neutraal, groen als accent.
   ========================================================================= */

/* ----- Tokens ----------------------------------------------------------- */
:root {
  --paper: #ffffff;
  --paper-soft: #fbfbf9;
  --off: #f5f5f1;
  --off-2: #efefe9;

  --ink: #181a16;
  --ink-soft: #565951;
  --ink-faint: #8c8f85;
  --line: #e7e7e0;
  --line-strong: #d8d8cf;

  --green: #2f5d43;
  --green-deep: #1f3d2d;
  --green-bright: #3c7355;
  --green-tint: #e9f0ea;
  --beige: #f1ece1;

  --font-display: "Bricolage Grotesque", "Hanken Grotesk", sans-serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --container-text: 760px;
  --radius: 2px;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

/* ----- Typografie ------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.7rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h4 { font-size: 1.3rem; }
h1 em, h2 em, h3 em { font-style: normal; color: var(--green); }
.display-italic { font-style: italic; }
p { color: var(--ink-soft); }
strong { font-weight: 600; color: var(--ink); }

.lead {
  font-family: var(--font-body);
  font-size: clamp(1.12rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* index-eyebrow: editorial label met streepje */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow::before { content: ""; width: 1.6rem; height: 1px; background: currentColor; opacity: 0.5; }
.eyebrow.center { justify-content: center; }
.eyebrow.plain::before { display: none; }

/* ----- Layout ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--section-y); }
.section.tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-off { background: var(--paper-soft); }
.bg-off2 { background: var(--off); }
.bg-green { background: var(--green-deep); color: #fff; }
.divider { height: 1px; background: var(--line); border: 0; }
.divider-c { max-width: var(--container); margin-inline: auto; }

.section-head { max-width: 64ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 1rem; }
.section-head p { margin-top: 1.2rem; max-width: 56ch; }
.section-head.center p { margin-inline: auto; }

/* twee-koloms head: label links, titel+tekst rechts */
.head-split { display: grid; grid-template-columns: 0.32fr 0.68fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head-split .lbl { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.head-split h2 { max-width: 18ch; }
.head-split .intro { margin-top: 1.2rem; max-width: 60ch; }

/* ----- Knoppen ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.92em 1.5em; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--green-deep); }
.btn-light:hover { background: var(--green-tint); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--green-deep); border-color: #fff; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  color: var(--green); padding-bottom: 2px;
  border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease), gap 0.3s var(--ease);
}
.link-arrow .arr { transition: transform 0.3s var(--ease); }
.link-arrow:hover { border-color: var(--green); }
.link-arrow:hover .arr { transform: translateX(4px); }

/* ----- Header ----------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.site-header.scrolled { background: rgba(255,255,255,0.9); backdrop-filter: saturate(150%) blur(14px); border-color: var(--line); }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-over { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: var(--green); margin-bottom: 0.35em; }
.brand .brand-name { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 0; color: var(--ink); }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.2rem); }
.nav a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 0.3em 0; transition: color 0.3s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--green); transition: width 0.3s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--ink); }
.header-cta { margin-left: 0.4rem; padding: 0.62em 1.1em; font-size: 0.88rem; }

.nav-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 1100; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--ink); transition: all 0.35s var(--ease); }
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ----- Hero (home) ------------------------------------------------------ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; background: var(--green-deep); overflow: hidden; padding-top: 80px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 16s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,40,28,0.6) 0%, rgba(18,40,28,0.12) 26%, rgba(18,40,28,0.5) 62%, rgba(18,40,28,0.9) 100%); }
.hero-inner { position: relative; z-index: 1; width: 100%; padding-block: clamp(2.5rem, 7vw, 5rem); }
.hero .eyebrow { color: var(--green-200); margin-bottom: 1.4rem; }
.hero .eyebrow::before { background: var(--green-200); }
.hero h1 { color: #fff; letter-spacing: -0.025em; font-size: clamp(2.6rem, 5.6vw, 4.8rem); max-width: 16ch; }
.hero h1 em { color: var(--green-200); }
.hero-text .lead { color: rgba(255,255,255,0.88); margin-top: 1.5rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.9rem; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; margin-top: 1.5rem; }
.hero-chips .chip { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.88rem; color: rgba(255,255,255,0.9); }
.hero-chips .chip svg { width: 17px; height: 17px; color: var(--green-200); flex: none; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.22); margin-top: clamp(2.5rem, 5vw, 4rem); }
.stat-row .stat { padding: 1.6rem 0.5rem 0; border-right: 1px solid rgba(255,255,255,0.16); }
.stat-row .stat:last-child { border-right: 0; }
.stat-row .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; color: #fff; }
.stat-row .lbl { font-size: 0.85rem; color: rgba(255,255,255,0.72); margin-top: 0.55rem; }

/* Header boven de donkere hero (alleen home, niet gescrold) */
.home-dark-hero .site-header:not(.scrolled) .brand-name { color: #fff; }
.home-dark-hero .site-header:not(.scrolled) .brand-over { color: var(--green-200); }
.home-dark-hero .site-header:not(.scrolled) .nav-toggle span { background: #fff; }
.nav-open .nav-toggle span { background: var(--ink) !important; }
@media (min-width: 821px) {
  .home-dark-hero .site-header:not(.scrolled) .nav a { color: rgba(255,255,255,0.86); }
  .home-dark-hero .site-header:not(.scrolled) .nav a:hover,
  .home-dark-hero .site-header:not(.scrolled) .nav a[aria-current="page"] { color: #fff; }
  .home-dark-hero .site-header:not(.scrolled) .header-phone { color: #fff; }
  .home-dark-hero .site-header:not(.scrolled) .header-phone svg { color: var(--green-200); }
}

/* ----- Page hero (binnenpagina's) -------------------------------------- */
.page-hero { padding-top: 80px; }
.page-hero .inner { padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem); }
.crumbs { font-size: 0.84rem; color: var(--ink-faint); margin-bottom: 1.6rem; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { margin-inline: 0.5em; opacity: 0.5; }
.page-hero h1 { max-width: 16ch; }
.page-hero .ph-lead { margin-top: 1.4rem; max-width: 56ch; }
.page-hero .ph-actions { margin-top: 2rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.page-figure img { width: 100%; height: clamp(300px, 48vh, 560px); object-fit: cover; border-radius: var(--radius); background: var(--off); }

/* ----- Diensten grid ---------------------------------------------------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.6rem) clamp(1.2rem, 2.4vw, 2rem); }
.svc-card { display: flex; flex-direction: column; }
.svc-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); background: var(--off); }
.svc-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.svc-card:hover .thumb img { transform: scale(1.04); }
.svc-card .num { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--ink-faint); margin: 1.2rem 0 0.5rem; }
.svc-card h3 { font-size: 1.55rem; }
.svc-card p { font-size: 0.96rem; margin-top: 0.55rem; }
.svc-card .link-arrow { margin-top: 1rem; }

/* lijst-variant (diensten overzicht): grote editorial rijen */
.svc-rows { border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: 0.5fr 1fr 0.9fr; gap: clamp(1.2rem, 3vw, 2.5rem); align-items: center; padding: clamp(1.8rem, 3vw, 2.6rem) 0; border-bottom: 1px solid var(--line); transition: padding-left 0.4s var(--ease); }
.svc-row:hover { padding-left: 0.6rem; }
.svc-row .rn { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--green); line-height: 1; }
.svc-row .rt h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.svc-row .rt p { margin-top: 0.5rem; max-width: 44ch; font-size: 0.96rem; }
.svc-row .rl { display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem; }
.svc-row .rimg { width: 130px; height: 92px; object-fit: cover; border-radius: var(--radius); background: var(--off); display: none; }

/* ----- Feature split ---------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse .media { order: 2; }
.split .media img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: var(--radius); background: var(--off); }
.split .media.land img { aspect-ratio: 4/3; }
.split .content h2 { margin: 1rem 0 0; }
.split .content > p { margin-top: 1.2rem; }

/* ----- Check / USP list ------------------------------------------------- */
.usp-list { display: grid; gap: 0; margin-top: 2rem; }
.usp-item { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.usp-item:last-child { border-bottom: 1px solid var(--line); }
.usp-item .ic { width: 26px; height: 26px; color: var(--green); margin-top: 2px; }
.usp-item h3 { font-size: 1.35rem; }
.usp-item p { font-size: 0.96rem; margin-top: 0.3rem; }
.bg-green .usp-item { border-color: rgba(255,255,255,0.16); }
.bg-green .usp-item .ic { color: #fff; }
.bg-green h1, .bg-green h2, .bg-green h3 { color: #fff; }
.bg-green p { color: rgba(255,255,255,0.8); }
.bg-green .eyebrow { color: #cfe0d4; }

/* compacte check-list */
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 2rem; margin-top: 1.6rem; }
.checks li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--ink-soft); font-size: 0.98rem; }
.checks li svg { flex: none; width: 20px; height: 20px; color: var(--green); margin-top: 3px; }

/* ----- Stappen / werkwijze --------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1rem, 2vw, 1.8rem); }
.steps.cols-4 { grid-template-columns: repeat(4, 1fr); }
.step { padding-top: 1.4rem; border-top: 2px solid var(--ink); }
.step .n { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; color: var(--green); }
.step h3 { font-size: 1.3rem; margin-top: 0.6rem; }
.step p { font-size: 0.92rem; margin-top: 0.5rem; }

/* ----- Reviews ---------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }
.review { padding: 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); display: flex; flex-direction: column; }
.bg-off .review, .bg-off2 .review { background: var(--paper); }
.review .stars { color: var(--green); letter-spacing: 0.15em; font-size: 0.9rem; }
.review blockquote { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.3; margin: 1rem 0 1.4rem; color: var(--ink); flex: 1; }
.review .who { font-size: 0.88rem; color: var(--ink-faint); }
.review .who strong { color: var(--ink); display: block; font-weight: 600; }

.quote-big { max-width: 24ch; margin-inline: auto; text-align: center; }
.quote-big blockquote { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.2; color: var(--ink); }
.quote-big .who { margin-top: 1.6rem; font-size: 0.9rem; color: var(--ink-faint); }
.quote-big .who strong { color: var(--green); }

/* ----- Realisaties grid ------------------------------------------------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.4rem) clamp(1.2rem, 2.4vw, 2rem); }
.work-card { display: flex; flex-direction: column; }
.work-card .ph { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); background: var(--off); }
.work-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.work-card:hover .ph img { transform: scale(1.04); }
.work-card .meta { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1rem; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.work-card h3 { font-size: 1.5rem; margin-top: 0.45rem; }
.work-card.feat { grid-column: span 2; }
.work-card.feat .ph { aspect-ratio: 16/9; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.filter-bar button { padding: 0.5em 1.1em; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); transition: all 0.3s var(--ease); }
.filter-bar button:hover { border-color: var(--ink); color: var(--ink); }
.filter-bar button.active { background: var(--green); color: #fff; border-color: var(--green); }
.work-card.is-hidden { display: none; }

/* ----- Realisatie detail ----------------------------------------------- */
.proj-meta { display: flex; flex-wrap: wrap; gap: 2.5rem; padding: 1.6rem 0; border-block: 1px solid var(--line); margin-top: 2.5rem; }
.proj-meta .m .k { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.proj-meta .m .v { font-family: var(--font-display); font-size: 1.4rem; margin-top: 0.3rem; }
.proj-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.8rem, 1.6vw, 1.2rem); }
.proj-gallery a { overflow: hidden; border-radius: var(--radius); background: var(--off); cursor: zoom-in; }
.proj-gallery a.span2 { grid-column: span 2; }
.proj-gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; transition: transform 0.7s var(--ease); }
.proj-gallery a:hover img { transform: scale(1.03); }
.proj-body { display: grid; grid-template-columns: 1fr 0.5fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.proj-body .prose h2 { margin: 1.8rem 0 0; }
.proj-body .prose h2:first-child { margin-top: 0; }
.proj-body .prose p { margin-top: 1rem; }
.proj-side { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; position: sticky; top: 100px; }
.proj-side h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-bottom: 1rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-row a { padding: 0.4em 0.9em; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 0.85rem; color: var(--ink-soft); transition: all 0.3s var(--ease); }
.tag-row a:hover { border-color: var(--green); color: var(--green); }

/* ----- Dienst-detail rich ----------------------------------------------- */
.svc-intro { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.svc-intro .media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); background: var(--off); position: sticky; top: 100px; }
.svc-intro .prose > p { margin-top: 1.1rem; }
.svc-intro .prose h2 { margin-bottom: 0.4rem; }

.svc-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.svc-nav a { padding: 0.55em 1.05em; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); transition: all 0.3s var(--ease); }
.svc-nav a:hover { border-color: var(--ink); color: var(--ink); }
.svc-nav a[aria-current="page"] { background: var(--green); color: #fff; border-color: var(--green); }

/* ----- FAQ -------------------------------------------------------------- */
.faq { max-width: 820px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; gap: 1.5rem; align-items: center; padding: 1.5rem 0; text-align: left; font-family: var(--font-display); font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--ink); }
.faq-q .pm { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--green); transition: transform 0.3s var(--ease); }
.faq-q .pm::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-q .pm::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .pm::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a .inner { padding-bottom: 1.5rem; color: var(--ink-soft); max-width: 64ch; }

/* ----- CTA -------------------------------------------------------------- */
.cta { text-align: center; }
.cta .inner { max-width: 40ch; margin-inline: auto; }
.cta h2 { color: #fff; }
.cta p { margin-top: 1.1rem; }
.cta .actions { margin-top: 2rem; display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ----- Contact ---------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); }
.info-list { margin-top: 1.5rem; }
.info-row { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.2rem 0; border-top: 1px solid var(--line); align-items: start; }
.info-row:last-child { border-bottom: 1px solid var(--line); }
.info-row .ic { width: 22px; height: 22px; color: var(--green); margin-top: 3px; }
.info-row .k { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.info-row .v { color: var(--ink); font-weight: 500; margin-top: 0.15rem; }
.info-row a.v:hover { color: var(--green); }

.form { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.4rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea { width: 100%; padding: 0.8em 0.95em; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--paper-soft); font: inherit; color: var(--ink); transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form .note { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.8rem; }
.map-embed { margin-top: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--off); aspect-ratio: 16/6; display: grid; place-items: center; color: var(--ink-faint); font-size: 0.9rem; text-align: center; }

/* ----- Footer ----------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: clamp(1.5rem, 3vw, 3rem); padding-bottom: 3rem; }
.site-footer .brand-over { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 0.4rem; }
.site-footer .brand-name { font-family: var(--font-display); font-size: 1.7rem; }
.site-footer .about { color: var(--ink-soft); font-size: 0.95rem; margin-top: 1rem; max-width: 34ch; }
.site-footer h4 { font-family: var(--font-body); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-faint); font-weight: 600; margin-bottom: 1.1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--ink-soft); font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.6rem; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--ink); }

/* ----- Lightbox --------------------------------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 4vw; background: rgba(24,26,22,0.94); }
.lightbox.open { display: flex; animation: fade 0.3s var(--ease); }
@keyframes fade { from { opacity: 0; } }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); }
.lightbox .close { position: absolute; top: 1.4rem; right: 1.6rem; width: 46px; height: 46px; color: #fff; font-size: 1.7rem; }

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

/* ----- Responsive ------------------------------------------------------- */
@media (max-width: 1000px) {
  .svc-grid, .work-grid, .reviews { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .head-split { grid-template-columns: 1fr; }
  .work-card.feat { grid-column: span 2; }
}
@media (max-width: 820px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem; background: var(--paper); padding: 2rem 2.4rem; transform: translateX(100%); transition: transform 0.45s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,0.08); }
  .nav-open .nav { transform: translateX(0); }
  .nav a, .nav a[aria-current="page"] { font-size: 1.2rem; color: var(--ink); }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .split, .svc-intro, .proj-body, .contact-grid, .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: 86svh; }
  .split.reverse .media { order: 0; }
  .svc-intro .media img, .proj-side { position: relative; top: 0; }
  .svc-row { grid-template-columns: auto 1fr; }
  .svc-row .rl { display: none; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-row .stat:nth-child(2) { border-right: 0; }
  .stat-row .stat:nth-child(3), .stat-row .stat:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .svc-grid, .work-grid, .reviews, .checks { grid-template-columns: 1fr; }
  .steps, .steps.cols-4 { grid-template-columns: 1fr; }
  .proj-gallery { grid-template-columns: 1fr; }
  .proj-gallery a.span2 { grid-column: span 1; }
  .work-card.feat { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .proj-meta { gap: 1.4rem 2.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================================
   v3 - creatieve laag (showpiece home): marquee, hover-preview, badge,
   horizontale realisaties, statement, cursor, GSAP-reveals.
   ========================================================================= */
:root { --green-200: #bcd4c2; --green-100: #d8e6db; }

/* Hero-intro: PURE CSS (speelt altijd af, los van de JS/GSAP-ticker) ------ */
.reveal-line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.reveal-line > * { display: block; transform: translateY(110%); animation: lineUp 1s var(--ease) forwards; }
.hero h1 .reveal-line:nth-child(1) > * { animation-delay: 0.15s; }
.hero h1 .reveal-line:nth-child(2) > * { animation-delay: 0.27s; }
.hero h1 .reveal-line:nth-child(3) > * { animation-delay: 0.39s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero [data-hero] { opacity: 0; animation: fadeUp 0.9s var(--ease) forwards; }
.hero [data-hero="eyebrow"] { animation-delay: 0.05s; }
.hero [data-hero="lead"] { animation-delay: 0.55s; }
.hero [data-hero="actions"] { animation-delay: 0.7s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.hero-media { clip-path: inset(0 0 100% 0); animation: clipReveal 1.1s var(--ease) 0.2s forwards; }
@keyframes clipReveal { to { clip-path: inset(0 0 0% 0); } }

.hero-badge { opacity: 0; transform: scale(0.4); animation: badgePop 0.7s var(--ease) 0.9s forwards; }
@keyframes badgePop { to { opacity: 1; transform: none; } }

.stat-row .stat { opacity: 0; animation: fadeUp 0.8s var(--ease) forwards; }
.stat-row .stat:nth-child(1) { animation-delay: 0.6s; }
.stat-row .stat:nth-child(2) { animation-delay: 0.68s; }
.stat-row .stat:nth-child(3) { animation-delay: 0.76s; }
.stat-row .stat:nth-child(4) { animation-delay: 0.84s; }

/* ----- Cursor dot (desktop pointer) ------------------------------------ */
.cursor-dot { position: fixed; top: 0; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--green); pointer-events: none; z-index: 9000; transform: translate(-50%, -50%); transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), opacity .3s; opacity: 0; }
.cursor-on .cursor-dot { opacity: 1; }
.cursor-dot.lg { width: 54px; height: 54px; background: rgba(47, 93, 67, 0.14); }

/* ----- Hero badge (roterend stempel) ----------------------------------- */
.hero-badge { position: absolute; left: clamp(1rem, 2vw, 1.6rem); bottom: clamp(1rem, 2vw, 1.6rem); width: 112px; height: 112px; z-index: 3; background: var(--paper); border-radius: 50%; display: grid; place-items: center; box-shadow: 0 18px 50px rgba(24,26,22,0.18); }
.hero-badge .ring { position: absolute; inset: 0; animation: spin 20s linear infinite; }
.hero-badge .ring text { font-family: var(--font-body); font-size: 8px; letter-spacing: 2.5px; fill: var(--ink-soft); font-weight: 600; }
.hero-badge .mid { width: 24px; height: 24px; color: var(--green); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 820px) { .hero-badge { width: 88px; height: 88px; } .hero-badge .ring text { font-size: 8.6px; } }

/* ----- Marquee ---------------------------------------------------------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: clamp(1rem, 2vw, 1.6rem); }
.marquee .track { display: inline-flex; align-items: center; gap: 2.6rem; white-space: nowrap; will-change: transform; animation: marquee 38s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.marquee .it { font-family: var(--font-display); font-size: clamp(1.7rem, 3.4vw, 3rem); color: var(--ink); line-height: 1; }
.marquee .it.muted { color: var(--ink-faint); font-style: italic; }
.marquee .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----- Diensten index (editorial + hover preview) ---------------------- */
.svc-index { border-top: 1px solid var(--ink); margin-top: 2.5rem; }
.svc-index a { display: grid; grid-template-columns: 4.5rem 1fr auto; align-items: center; gap: 1.5rem; padding: clamp(1.4rem, 2.8vw, 2.3rem) 0; border-bottom: 1px solid var(--line); position: relative; }
.svc-index .rn { font-family: var(--font-body); font-size: 0.85rem; color: var(--ink-faint); padding-top: 0.6rem; align-self: start; }
.svc-index .rname { font-family: var(--font-display); font-size: clamp(2rem, 5.2vw, 3.7rem); line-height: 1; letter-spacing: -0.01em; transition: transform .5s var(--ease), color .4s var(--ease); }
.svc-index .rdesc { font-size: 0.95rem; color: var(--ink-faint); margin-top: 0.5rem; max-width: 46ch; }
.svc-index .rgo { color: var(--ink-faint); transition: transform .4s var(--ease), color .4s var(--ease); font-size: 1.4rem; }
.svc-index a:hover .rname { color: var(--green); transform: translateX(14px); }
.svc-index a:hover .rgo { color: var(--green); transform: translate(6px, 0); }
.svc-index .rthumb { display: none; }

.hover-preview { position: fixed; top: 0; left: 0; width: 300px; height: 380px; pointer-events: none; z-index: 60; opacity: 0; border-radius: var(--radius); overflow: hidden; will-change: transform, opacity; box-shadow: 0 30px 70px rgba(24,26,22,0.25); }
.hover-preview img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .svc-index a { grid-template-columns: 2.8rem 1fr; }
  .svc-index .rgo { display: none; }
  .svc-index .rthumb { display: block; grid-column: 2; width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin-top: 1rem; background: var(--off); }
}

/* ----- Statement (deep green, groot) ----------------------------------- */
.statement { background: var(--green-deep); color: #fff; position: relative; overflow: hidden; }
.statement .eyebrow { color: var(--green-200); }
.statement .big { font-family: var(--font-display); font-size: clamp(2.2rem, 5.2vw, 4.4rem); line-height: 1.12; letter-spacing: -0.01em; max-width: 20ch; margin-top: 1.4rem; }
.statement .big em { color: var(--green-200); }
.statement .sub { color: rgba(255,255,255,0.78); margin-top: 1.6rem; max-width: 50ch; }
.statement .vine { position: absolute; top: 0; bottom: 0; left: 8%; width: 2px; opacity: 0.5; }

/* ----- Horizontale realisaties ----------------------------------------- */
.hsec { position: relative; }
.hsec .hhead { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hwrap { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; }
.hwrap::-webkit-scrollbar { display: none; }
.htrack { display: flex; gap: clamp(1rem, 2vw, 1.6rem); padding-right: var(--gut); width: max-content; }
.hcard { flex: 0 0 clamp(280px, 40vw, 480px); scroll-snap-align: start; }
.hcard .ph { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--off); }
.hcard .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.hcard:hover .ph img { transform: scale(1.05); }
.hcard .meta { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1rem; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.hcard h3 { font-size: 1.6rem; margin-top: 0.4rem; }
.hprog { height: 2px; background: var(--line); margin-top: 2.5rem; position: relative; }
.hprog span { position: absolute; left: 0; top: 0; height: 100%; width: 18%; background: var(--green); }
/* desktop pinned mode: JS schakelt overflow uit en pint */
.hsec.pinned .hwrap { overflow: visible; scroll-snap-type: none; }

/* ----- Section index (vaste zijlabel) ---------------------------------- */
.side-index { position: fixed; left: 0.9rem; bottom: 1.2rem; z-index: 40; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); writing-mode: vertical-rl; transform: rotate(180deg); display: none; }
@media (min-width: 1100px) { .side-index { display: block; } }

/* =========================================================================
   v5 - sectiebanden, CRO en SEO/GEO componenten
   ========================================================================= */
.bg-beige { background: var(--beige); }
.bg-tint { background: var(--green-tint); }
.bg-beige .review, .bg-tint .review, .bg-off .review, .bg-off2 .review { background: #fff; }

/* sectie-scheiding: subtiele toprand wanneer aangrenzende vlakken gelijk zijn */
.section.edge { border-top: 1px solid var(--line); }

/* sterkere sectiekop met nummer-tag */
.kicker { display: inline-flex; align-items: center; gap: 0.7em; font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); }
.kicker .k-num { display: inline-grid; place-items: center; width: 1.7rem; height: 1.7rem; border: 1px solid var(--green); border-radius: 50%; font-size: 0.72rem; }

/* ----- Header telefoon ------------------------------------------------- */
.header-phone { display: inline-flex; align-items: center; gap: 0.45em; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.header-phone svg { width: 16px; height: 16px; color: var(--green); }
.header-phone:hover { color: var(--green); }
@media (max-width: 980px) { .header-phone { display: none; } }

/* ----- Hero chips al gedefinieerd; trust onder hero -------------------- */

/* ----- Reviews: sterren + rating -------------------------------------- */
.rating-head { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.8rem; }
.rating-head .stars { color: var(--green); letter-spacing: 0.12em; font-size: 1.05rem; }
.rating-head .val { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.rating-head .cnt { color: var(--ink-faint); font-size: 0.92rem; }
.review .who .loc { color: var(--ink-faint); font-weight: 400; }

/* ----- Werkgebied (lokale SEO/GEO) ------------------------------------- */
.areas { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem; }
.areas span { padding: 0.55em 1.1em; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 0.92rem; color: var(--ink-soft); background: var(--paper); }
.bg-tint .areas span { background: #fff; }

/* ----- FAQ op band: laat zien dat het klikbaar is --------------------- */
.faq-q { cursor: pointer; }

/* ----- Reassurance-rij (CRO) ------------------------------------------ */
.reassure { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.2rem; }
.reassure li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.reassure li svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 2px; }

/* ----- Sticky mobiele actiebalk (CRO) --------------------------------- */
.sticky-cta { display: none; }
@media (max-width: 820px) {
  body { padding-bottom: 68px; }
  .sticky-cta { display: flex; gap: 0.5rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; padding: 0.6rem; background: rgba(255,255,255,0.96); backdrop-filter: saturate(150%) blur(12px); border-top: 1px solid var(--line); }
  .sticky-cta a { flex: 1; justify-content: center; padding: 0.85em 1em; }
  .nav { padding-bottom: 5rem; }
}

/* ----- Marquee donkere variant (band) --------------------------------- */
.marquee.dark { background: var(--green-deep); border-color: rgba(255,255,255,0.14); }
.marquee.dark .it { color: #fff; }
.marquee.dark .it.muted { color: rgba(255,255,255,0.55); }
.marquee.dark .dot { background: var(--green-200); }

/* ----- Statement: zorg dat knop/teksten op groen kloppen -------------- */
.bg-green .kicker, .statement .kicker { color: var(--green-200); }
.bg-green .kicker .k-num, .statement .kicker .k-num { border-color: var(--green-200); }

/* ----- CTA tekst contrast op groen ------------------------------------ */
.cta .eyebrow { color: var(--green-200); }
