/* ============================================================
   Hoveniersbedrijf J. van Stijn Tuinverzorging
   Design system — matches inspiration mockups (brand-guidelines)
   ============================================================ */

/* ---- Fonts (self-hosted DM Sans variable) ---- */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/dmsans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/dmsans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- Tokens ---- */
:root {
  --green: #1D4D2E;
  --green-hover: #163D23;
  --green-light: #EAF0EB;
  --green-tint: rgba(29, 77, 46, 0.06);
  --cream: #F5F0E8;
  --cream-deep: #EFE8DC;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --body: #3D3D35;
  --muted: #6B7060;
  --border: #E2DDD4;
  --border-soft: #ECE7DE;
  --gold: #D4A020;
  --success: #2E7D52;
  --error: #C0392B;
  --wa: #25D366;

  --font: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius-btn: 6px;
  --radius-card: 12px;
  --radius-tag: 5px;

  --shadow-sm: 0 1px 3px rgba(26, 26, 26, 0.06), 0 1px 2px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 8px 30px rgba(26, 40, 26, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 40, 20, 0.22);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* z-scale */
  --z-sticky: 100;
  --z-drawer: 200;
  --z-float: 300;
  --z-toast: 400;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 3px; }

/* ---- Typography ---- */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; text-wrap: balance; }
h1 { font-size: clamp(2.15rem, 5.2vw, 3.75rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.125rem, 1.6vw, 1.375rem); }
p { text-wrap: pretty; }
strong { font-weight: 700; color: var(--ink); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-label--light { color: rgba(255,255,255,0.9); }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: 1340px; }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--cream { background: var(--cream); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--body); max-width: 60ch; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-weight: 700; font-size: 0.9375rem; letter-spacing: -0.01em;
  padding: 0.9em 1.6em; border-radius: var(--radius-btn);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform; text-align: center; line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green); color: var(--white); box-shadow: 0 4px 14px rgba(29,77,46,0.24); }
.btn--primary:hover { background: var(--green-hover); box-shadow: 0 8px 22px rgba(29,77,46,0.30); transform: translateY(-2px); }
.btn--outline { background: transparent; border: 2px solid var(--green); color: var(--green); }
.btn--outline:hover { background: var(--green-tint); transform: translateY(-2px); }
.btn--outline-white { background: rgba(255,255,255,0.04); border: 2px solid rgba(255,255,255,0.85); color: var(--white); backdrop-filter: blur(2px); }
.btn--outline-white:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn--ghost { color: var(--green); border: 2px solid var(--border); background: var(--white); }
.btn--ghost:hover { border-color: var(--green); background: var(--green-tint); }
.btn--lg { padding: 1.05em 1.9em; font-size: 1rem; }
.btn--block { width: 100%; }
.btn .ico { width: 1.15em; height: 1.15em; flex: none; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.5em; color: var(--green); font-weight: 700; font-size: 0.95rem; }
.link-arrow .ico { width: 1.1em; height: 1.1em; transition: transform .3s var(--ease); }
.link-arrow:hover .ico { transform: translateX(4px); }

/* ---- Trust strip ---- */
.trust-strip { display: flex; flex-wrap: wrap; gap: 1.25rem 1.75rem; align-items: center; }
.trust-item { display: inline-flex; align-items: center; gap: 0.55em; font-size: 0.9rem; font-weight: 500; }
.trust-item .ico { width: 1.15em; height: 1.15em; flex: none; }
.trust-strip--light .trust-item { color: rgba(255,255,255,0.94); }
.trust-strip--light .ico circle, .trust-strip--light .ico path { stroke: #fff; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(26,40,26,0.07); }
.nav { display: flex; align-items: center; gap: 1.5rem; height: 74px; }
.nav__logo { display: flex; align-items: center; gap: 0.6rem; flex: none; }
.nav__logo img { width: 46px; height: 46px; }
.nav__logo-word { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-word .l1 { font-size: 0.62rem; letter-spacing: 0.28em; font-weight: 600; color: var(--muted); }
.nav__logo-word .l2 { font-size: 1.02rem; letter-spacing: 0.02em; font-weight: 800; color: var(--green); }
.nav__links { display: flex; align-items: center; gap: 1.9rem; margin-left: auto; }
.nav__links a { font-size: 0.9375rem; font-weight: 500; color: var(--body); position: relative; padding: 4px 0; transition: color .2s var(--ease); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--green); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--green); border-radius: 2px;
}
.nav__has-drop { display: inline-flex; align-items: center; gap: 0.3em; }
.nav__has-drop .ico { width: 0.9em; height: 0.9em; }
.nav__actions { display: flex; align-items: center; gap: 1.1rem; flex: none; }
.nav__phone { display: inline-flex; align-items: center; gap: 0.6rem; }
.nav__phone .ring { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--green-light); color: var(--green); }
.nav__phone .ring .ico { width: 1.15em; height: 1.15em; }
.nav__phone .lbl { display: flex; flex-direction: column; line-height: 1.15; }
.nav__phone .lbl small { font-size: 0.68rem; color: var(--muted); font-weight: 500; }
.nav__phone .lbl b { font-size: 0.92rem; color: var(--ink); font-weight: 700; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 8px; align-items: center; justify-content: center; color: var(--ink); }
.nav__toggle svg { width: 26px; height: 26px; }

/* dropdown */
.nav__dropdown { position: relative; }
.nav__menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--white); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-md);
  padding: 0.5rem; min-width: 230px; opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.nav__dropdown:hover .nav__menu, .nav__dropdown:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__menu a { display: block; padding: 0.6rem 0.8rem; border-radius: 8px; font-size: 0.9rem; }
.nav__menu a:hover { background: var(--green-light); color: var(--green); }
.nav__menu a::after { display: none; }

/* mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(20,30,20,0.5); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease); z-index: var(--z-drawer); }
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(88vw, 360px);
  background: var(--white); z-index: calc(var(--z-drawer) + 1); padding: 1.5rem 1.5rem 2rem;
  transform: translateX(100%); transition: transform .35s var(--ease-expo); display: flex; flex-direction: column; overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.drawer__close { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 8px; }
.drawer__close svg { width: 24px; height: 24px; }
.drawer nav a { display: block; padding: 0.85rem 0.5rem; font-size: 1.05rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--border-soft); }
.drawer nav a:hover { color: var(--green); }
.drawer__sub a { font-size: 0.95rem; font-weight: 500; color: var(--body); padding-left: 1.25rem; }
.drawer__cta { margin-top: 1.5rem; display: grid; gap: 0.75rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(15,26,17,0.86) 0%, rgba(15,26,17,0.62) 38%, rgba(15,26,17,0.20) 66%, rgba(15,26,17,0.05) 100%),
    linear-gradient(0deg, rgba(15,26,17,0.45) 0%, rgba(15,26,17,0) 45%);
}
.hero__inner { position: relative; padding-block: clamp(4rem, 11vw, 8.5rem); min-height: min(88vh, 820px); display: flex; align-items: center; }
.hero__content { max-width: 640px; color: #fff; }
.hero__content h1 { color: #fff; margin-bottom: 1.1rem; }
.hero__content h1 .accent { display: block; color: #fff; }
.hero__sub { font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: rgba(255,255,255,0.92); max-width: 52ch; margin-bottom: 1.9rem; line-height: 1.6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }
.hero__trust { margin-top: 0.5rem; }

.hero-review {
  position: absolute; bottom: clamp(1.5rem, 4vw, 3rem); right: clamp(1.5rem, 4vw, 3rem); z-index: 2;
  background: var(--white); border-radius: 14px; padding: 1.25rem 1.4rem; width: 288px; box-shadow: var(--shadow-lg);
}
.hero-review .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 0.6rem; }
.hero-review .quote { font-style: italic; font-size: 0.9rem; color: var(--body); line-height: 1.55; }
.hero-review .who { font-size: 0.82rem; color: var(--muted); margin-top: 0.75rem; font-weight: 600; }

/* page hero variant (service/contact) — a touch shorter */
.hero--page .hero__inner { min-height: min(66vh, 600px); }
.hero--page.hero--split .hero__inner { align-items: center; }

/* circular hero badge (tuinaanleg) */
.hero-badge {
  position: absolute; bottom: clamp(1.5rem, 4vw, 3rem); right: clamp(1.5rem, 5vw, 4rem); z-index: 2;
  width: 168px; height: 168px; border-radius: 50%; background: var(--cream); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1.25rem;
}
.hero-badge .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 0.5rem; }
.hero-badge p { font-size: 0.8rem; color: var(--body); line-height: 1.4; }
.hero-badge .who { font-size: 0.72rem; color: var(--muted); margin-top: 0.5rem; font-weight: 600; }
@media (max-width: 720px) { .hero-badge { display: none; } }

/* hero with side card (contact) */
.hero__grid { display: grid; grid-template-columns: 1.4fr 0.85fr; gap: 2rem; align-items: center; width: 100%; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } .hero__grid .hero-contact-card { display: none; } }

/* price indication block */
.price-note { background: var(--green-light); border: 1px solid #cfe0d2; border-radius: 14px; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.price-note b { color: var(--green-hover); }
.price-note .amt { font-size: 1.6rem; font-weight: 800; color: var(--green); letter-spacing: -0.02em; }
.price-note small { color: var(--muted); display: block; margin-top: 0.35rem; font-size: 0.82rem; }

/* info split: text + map/address */
.info-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
@media (max-width: 900px) { .info-split { grid-template-columns: 1fr; } }

/* ============================================================
   USP bar (tuinaanleg / contact)
   ============================================================ */
.usp-bar { background: var(--white); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: repeat(4, 1fr); }
.usp-bar__item { display: flex; gap: 0.9rem; padding: 1.5rem 1.4rem; }
.usp-bar__item + .usp-bar__item { border-left: 1px solid var(--border-soft); }
.usp-bar__ico { width: 44px; height: 44px; border-radius: 10px; background: var(--green-light); color: var(--green); display: grid; place-items: center; flex: none; }
.usp-bar__ico svg { width: 22px; height: 22px; }
.usp-bar__item b { display: block; color: var(--ink); font-size: 0.95rem; margin-bottom: 0.2rem; }
.usp-bar__item span { font-size: 0.85rem; color: var(--muted); line-height: 1.45; }
.usp-bar--pull { margin-top: -3.5rem; position: relative; z-index: 3; }

/* ============================================================
   Services
   ============================================================ */
.services__grid { display: grid; grid-template-columns: 0.72fr 2fr; gap: clamp(2rem, 4vw, 3.25rem); align-items: start; }
.services__intro h2 { margin-bottom: 1.1rem; }
.services__intro p { margin-bottom: 1.75rem; }
.service-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border); }
.service-card__media { aspect-ratio: 16/10; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 1rem 1.15rem 1.15rem; display: flex; gap: 0.8rem; align-items: flex-start; }
.service-card__ico { width: 34px; height: 34px; flex: none; color: var(--green); margin-top: 2px; }
.service-card__ico svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.15rem; overflow-wrap: break-word; hyphens: auto; }
.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.45; overflow-wrap: break-word; }
.service-card__body > div { min-width: 0; }

/* ============================================================
   Projects grid (asymmetric)
   ============================================================ */
.projects__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 2.25rem; flex-wrap: wrap; }
.projects__head .intro { max-width: 40ch; }
.projects__head p { color: var(--body); margin-top: 0.9rem; }
.project-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; grid-auto-rows: 232px; grid-auto-flow: row dense; gap: 1.1rem; }
.project-card {
  position: relative; border-radius: var(--radius-card); overflow: hidden; isolation: isolate; min-height: 240px;
  display: flex; align-items: flex-end; color: #fff; transition: transform .4s var(--ease); box-shadow: var(--shadow-sm);
}
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s var(--ease); }
.project-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(12,22,13,0.82) 0%, rgba(12,22,13,0.30) 46%, rgba(12,22,13,0) 74%); }
.project-card:hover { transform: translateY(-4px); }
.project-card:hover img { transform: scale(1.05); }
.project-card__body { padding: 1.15rem 1.25rem 1.2rem; width: 100%; }
.project-card__loc { display: inline-flex; align-items: center; gap: 0.35em; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 0.4rem; }
.project-card__loc .ico { width: 0.95em; height: 0.95em; }
.project-card h3 { color: #fff; font-size: 1.12rem; letter-spacing: -0.02em; margin-bottom: 0.7rem; text-shadow: 0 1px 12px rgba(0,0,0,0.3); }
.project-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  background: var(--green); color: #fff; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.28em 0.65em; border-radius: var(--radius-tag);
}
.project-card .tag { background: rgba(29,77,46,0.92); backdrop-filter: blur(2px); }
.project-card--tall { grid-row: span 2; }
.project-card--wide { grid-column: span 1; }
.projects__foot { display: flex; justify-content: center; margin-top: 2rem; }

/* ============================================================
   Split zakelijk / particulier
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split__card { position: relative; isolation: isolate; min-height: 440px; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.split__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.split__card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(12,24,14,0.86) 0%, rgba(12,24,14,0.42) 55%, rgba(12,24,14,0.15) 100%); }
.split__card:hover img { transform: scale(1.04); }
.split__body { padding: clamp(2rem, 4vw, 3.25rem); max-width: 480px; }
.split__body h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.9rem; }
.split__body p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; font-size: 0.98rem; }

/* ============================================================
   Process / werkwijze
   ============================================================ */
.process__head { text-align: center; max-width: 46ch; margin: 0 auto 3rem; }
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; position: relative; }
.process::before {
  content: ""; position: absolute; top: 26px; left: 10%; right: 10%; height: 2px;
  background-image: linear-gradient(90deg, var(--green) 40%, transparent 0); background-size: 12px 2px; background-repeat: repeat-x; opacity: 0.4; z-index: 0;
}
.process__step { text-align: center; position: relative; z-index: 1; }
.process__circle { width: 54px; height: 54px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; margin: 0 auto 1rem; box-shadow: 0 0 0 6px var(--cream); }
.section--cream .process__circle { box-shadow: 0 0 0 6px var(--cream); }
.process__circle svg { width: 24px; height: 24px; }
.process__step--ghost .process__circle { background: var(--white); color: var(--green); border: 2px solid var(--green); }
.process__step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.process__num { color: var(--green); font-weight: 700; }
.process__step p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; max-width: 22ch; margin-inline: auto; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.reviews__score { display: flex; align-items: center; gap: 1rem; }
.reviews__score .big { font-size: 2.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.reviews__score .stars { color: var(--green); font-size: 1.1rem; letter-spacing: 2px; }
.reviews__score small { color: var(--muted); font-size: 0.85rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.75rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.review-card__mark { font-family: Georgia, serif; font-size: 3rem; line-height: 0.7; color: var(--green); opacity: 0.28; margin-bottom: 0.5rem; height: 28px; }
.review-card blockquote { font-style: italic; font-size: 0.96rem; color: var(--body); line-height: 1.6; flex: 1; }
.review-card__who { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.4rem; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 0.9rem; flex: none; }
.review-card__who b { display: block; font-size: 0.9rem; color: var(--ink); }
.review-card__who span { font-size: 0.82rem; color: var(--muted); }
.reviews__dots { display: flex; gap: 0.4rem; justify-content: center; margin-top: 1.75rem; }
.reviews__dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background .2s, width .2s; }
.reviews__dots button[aria-selected="true"] { background: var(--green); width: 22px; border-radius: 4px; }

/* ============================================================
   FAQ + Werkgebied (two-column band)
   ============================================================ */
.faq-region { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq__intro h2, .region__head h2 { font-size: clamp(1.4rem, 2.3vw, 1.9rem); margin-bottom: 1rem; }
.accordion { margin-top: 0.5rem; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:first-child { border-top: 1px solid var(--border); }
.acc-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.15rem 0.25rem; font-size: 1rem; font-weight: 600; color: var(--ink); }
.acc-trigger:hover { color: var(--green); }
.acc-icon { position: relative; width: 20px; height: 20px; flex: none; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: var(--green); border-radius: 2px; transition: transform .3s var(--ease); }
.acc-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.acc-icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.acc-trigger[aria-expanded="true"] .acc-icon::after { transform: scaleY(0); }
.acc-panel { overflow: hidden; height: 0; transition: height .35s var(--ease); }
.acc-panel__inner { padding: 0 0.25rem 1.25rem; color: var(--body); font-size: 0.94rem; line-height: 1.65; max-width: 60ch; }
.acc-item.is-open { background: linear-gradient(90deg, var(--green-tint), transparent 60%); }

.region__map { border-radius: 16px; overflow: hidden; position: relative; border: 1px solid var(--border); box-shadow: var(--shadow-sm); background: var(--cream-deep); }
.region__map img { width: 100%; height: 100%; object-fit: cover; }
.region__pin { position: absolute; width: 16px; height: 16px; background: var(--green); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.25); transform: translate(-50%, -50%); }
.region__pin--main { width: 22px; height: 22px; background: var(--error); }
.region__pin--main::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(192,57,43,0.4); animation: ping 2.2s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .region__pin--main::after { animation: none; } }
.region__intro { color: var(--body); margin-bottom: 1.5rem; }
.region-list { columns: 2; column-gap: 1.5rem; }
.region-list li { display: flex; align-items: center; gap: 0.6em; font-size: 0.92rem; padding: 0.35rem 0; break-inside: avoid; }
.region-list .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none; }
.region__foot { margin-top: 1.5rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; isolation: isolate; border-radius: 18px; overflow: hidden; color: #fff; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(20,45,25,0.94), rgba(20,45,25,0.72)); }
.cta-band--solid { background: var(--green); }
.cta-band--solid::after { display: none; }
.cta-band__inner { padding: clamp(2rem, 4vw, 3.25rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band__inner h2 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); max-width: 20ch; }
.cta-band__inner p { color: rgba(255,255,255,0.9); margin-top: 0.6rem; max-width: 46ch; }

/* ============================================================
   Content section (tuinaanleg)
   ============================================================ */
.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.content-split__media img { border-radius: 16px; width: 100%; box-shadow: var(--shadow-md); }
.prose h2 { margin-bottom: 1rem; }
.prose h3 { margin: 1.75rem 0 0.75rem; }
.prose p { color: var(--body); margin-bottom: 1rem; }
.prose p:last-child { margin-bottom: 0; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem 1.5rem; margin: 1.5rem 0; }
.check-list li { display: flex; align-items: flex-start; gap: 0.6em; font-size: 0.94rem; color: var(--body); }
.check-list .ico { width: 1.2em; height: 1.2em; color: var(--green); flex: none; margin-top: 2px; }

.feature-row { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem clamp(1.5rem, 3vw, 2.25rem); }
.feature-row__media { width: 190px; aspect-ratio: 3/2; border-radius: 12px; overflow: hidden; flex: none; position: relative; }
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-row__ico { position: absolute; right: -18px; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; background: var(--white); color: var(--green); display: grid; place-items: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.feature-row h3 { margin-bottom: 0.4rem; }
.feature-row p { font-size: 0.94rem; color: var(--body); max-width: 60ch; }

/* mini benefit trio */
.benefit-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.benefit { text-align: center; }
.benefit__ico { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--green); color: var(--green); display: grid; place-items: center; margin: 0 auto 1rem; }
.benefit__ico svg { width: 26px; height: 26px; }
.benefit b { display: block; color: var(--ink); margin-bottom: 0.25rem; }
.benefit span { font-size: 0.85rem; color: var(--muted); }

/* region chips + link columns */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2rem; }
.chip { border: 1px solid var(--border); background: var(--white); color: var(--body); border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.88rem; font-weight: 600; transition: all .2s var(--ease); }
.chip:hover { border-color: var(--green); color: var(--green); background: var(--green-tint); }
.region-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.region-cols h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 1rem; }
.region-cols ul { display: grid; gap: 0.55rem; }
.region-cols a { font-size: 0.94rem; color: var(--body); display: inline-flex; align-items: center; gap: 0.4em; }
.region-cols a:hover { color: var(--green); }
.region-cols a .ico { width: 0.9em; height: 0.9em; color: var(--green); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-sm); }
.card--pad { padding: clamp(1.5rem, 3vw, 2.25rem); }
.form-head h2 { font-size: clamp(1.4rem, 2.3vw, 1.9rem); margin-bottom: 0.5rem; }
.form-head p { color: var(--muted); margin-bottom: 1.75rem; font-size: 0.95rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--error); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.95rem; border: 1px solid var(--border); border-radius: 10px; background: var(--white); color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease); font-size: 0.95rem;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-tint); }
.field input::placeholder, .field textarea::placeholder { color: #9a9a8f; }
.field .err-msg { font-size: 0.8rem; color: var(--error); display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--error); }
.field.is-invalid .err-msg { display: block; }
.form-consent { font-size: 0.82rem; color: var(--muted); margin-top: 1rem; }
.form-consent a { color: var(--green); text-decoration: underline; }
.form-success { display: none; background: var(--green-light); border: 1px solid #cfe0d2; border-radius: 12px; padding: 1.25rem 1.4rem; color: var(--green-hover); font-weight: 500; }
.form-success.is-visible { display: flex; gap: 0.75rem; align-items: flex-start; }
.form-success .ico { width: 1.4em; height: 1.4em; color: var(--success); flex: none; }

/* contact side cards */
.contact-list { display: grid; gap: 1.25rem; }
.contact-list__row { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-list__ico { width: 42px; height: 42px; border-radius: 10px; background: var(--green-light); color: var(--green); display: grid; place-items: center; flex: none; }
.contact-list__ico svg { width: 20px; height: 20px; }
.contact-list b { display: block; color: var(--ink); font-size: 0.95rem; }
.contact-list a, .contact-list span { color: var(--body); font-size: 0.95rem; }
.contact-list a:hover { color: var(--green); }

/* hero side contact card (contact page) */
.hero-contact-card { position: relative; z-index: 2; background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 1.6rem 1.75rem; width: min(360px, 90vw); }
.hero-contact-card h2 { font-size: 1.15rem; margin-bottom: 1.1rem; }

.map-embed { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/11; background: var(--cream-deep); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--green); color: rgba(255,255,255,0.72); padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer-brand__logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.footer-brand__logo img { width: 44px; height: 44px; filter: brightness(0) invert(1); }
.footer-brand__logo .fw { display: flex; flex-direction: column; line-height: 1; }
.footer-brand__logo .fw .l1 { font-size: 0.6rem; letter-spacing: 0.28em; color: rgba(255,255,255,0.7); font-weight: 600; }
.footer-brand__logo .fw .l2 { font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: 0.02em; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 30ch; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.65rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.1); display: grid; place-items: center; color: #fff; transition: background .2s var(--ease); }
.footer-social a:hover { background: rgba(255,255,255,0.22); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h3 { color: #fff; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.13em; font-weight: 700; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { font-size: 0.9rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-contact-line { font-size: 0.9rem; line-height: 1.7; }
.footer-contact-line a:hover { color: #fff; }
.footer-badges { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-badges .badge { background: #fff; border-radius: 10px; padding: 0.5rem 0.7rem; display: grid; place-items: center; }
.footer-badges .badge svg { display: block; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.5rem; flex-wrap: wrap; font-size: 0.82rem; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom nav { display: flex; gap: 1.25rem; }

/* ============================================================
   WhatsApp float + back-to-top
   ============================================================ */
.floaters { position: fixed; right: clamp(1rem, 3vw, 1.5rem); bottom: clamp(1rem, 3vw, 1.5rem); z-index: var(--z-float); display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,0.22); transition: transform .25s var(--ease); }
.fab:hover { transform: scale(1.08); }
.fab--wa { background: var(--wa); color: #fff; }
.fab--wa svg { width: 30px; height: 30px; }
.fab--call { background: var(--green); color: #fff; }
.fab--call svg { width: 24px; height: 24px; }
.fab--top { width: 44px; height: 44px; background: var(--white); color: var(--green); border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(10px); }
.fab--top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.fab--top svg { width: 20px; height: 20px; }

/* ============================================================
   Reveal on scroll (enhances already-visible default)
   ============================================================ */
/* Content is visible by DEFAULT. The hidden state is applied only when JS is
   active (html.js, set synchronously in <head>), so no-JS + headless never
   ship blank. A JS safety timer reveals everything even if IntersectionObserver
   never fires. */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-expo), transform .7s var(--ease-expo); }
  html.js .reveal.is-in { opacity: 1; transform: none; }
  html.js .reveal[data-d="1"] { transition-delay: .08s; }
  html.js .reveal[data-d="2"] { transition-delay: .16s; }
  html.js .reveal[data-d="3"] { transition-delay: .24s; }
  html.js .reveal[data-d="4"] { transition-delay: .32s; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .nav__links, .nav__phone .lbl, .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__phone { display: inline-flex; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.25rem; }
  .process::before { display: none; }
  .faq-region { grid-template-columns: 1fr; }
  .region-cols { grid-template-columns: 1fr; gap: 1.75rem; }
  .content-split { grid-template-columns: 1fr; }
  .content-split--reverse .content-split__media { order: -1; }
  .split { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .usp-bar { grid-template-columns: 1fr 1fr; }
  .usp-bar__item:nth-child(3) { border-left: none; }
  .usp-bar__item:nth-child(odd) { border-left: none; }
  .usp-bar__item:nth-child(2) { border-left: 1px solid var(--border-soft); }
  .usp-bar__item:nth-child(4) { border-left: 1px solid var(--border-soft); }
  .usp-bar__item:nth-child(n+3) { border-top: 1px solid var(--border-soft); }
}
@media (max-width: 720px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card--tall { grid-row: span 1; }
  .reviews__grid { grid-template-columns: 1fr; scroll-snap-type: x mandatory; grid-auto-flow: column; grid-auto-columns: 86%; overflow-x: auto; scroll-padding: var(--gutter); margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
  .reviews__grid .review-card { scroll-snap-align: start; }
  .form-grid { grid-template-columns: 1fr; }
  .benefit-trio { grid-template-columns: 1fr; gap: 1.75rem; }
  .feature-row { grid-template-columns: 1fr; text-align: left; }
  .feature-row__media { width: 100%; aspect-ratio: 16/9; }
  .feature-row__ico { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .check-list { grid-template-columns: 1fr; }
  .hero-review { display: none; }
}
@media (max-width: 560px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .service-card__body { flex-direction: column; gap: 0.55rem; padding: 0.85rem 0.95rem 1.05rem; }
  .service-card__ico { width: 30px; height: 30px; margin-top: 0; }
  .service-card h3 { font-size: 0.98rem; }
  .service-card p { font-size: 0.82rem; }
  .usp-bar { grid-template-columns: 1fr; }
  .usp-bar__item { border-left: none !important; }
  .usp-bar__item + .usp-bar__item { border-top: 1px solid var(--border-soft); }
  .project-grid { grid-template-columns: 1fr; }
  .region-list { columns: 1; }
  .reviews__grid { grid-auto-columns: 90%; }
}
