/* ============================================================
   Schoorsteenveegbedrijf Van Gelder — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Brand colors */
  --anthracite: #211f1d;
  --anthracite-2: #2a2724;
  --anthracite-3: #353029;
  --ink: #2a2622;
  --muted: #6f675e;
  --muted-2: #8c847a;
  --line: #e4ddd0;
  --line-dark: #3c372f;

  --cream: #f4efe6;
  --paper: #faf7f1;
  --white: #ffffff;

  --rust: #c2542a;
  --rust-strong: #a8451f;
  --rust-soft: #f3e2d6;
  --rust-tint: #fbeee4;

  --green: #235c47;
  --green-soft: #e1ece6;

  --gold: #b78a3c;

  /* Type */
  --font-head: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(33, 31, 29, 0.06), 0 2px 8px rgba(33, 31, 29, 0.05);
  --shadow-md: 0 6px 24px rgba(33, 31, 29, 0.10);
  --shadow-lg: 0 20px 56px rgba(33, 31, 29, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--anthracite);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; }

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

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--rust);
  display: inline-block;
}
.eyebrow svg { width: 15px; height: 15px; flex: none; }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: #e8a07a; }
.eyebrow--light::before { background: #e8a07a; }

.h-display { font-size: clamp(34px, 5.4vw, 60px); font-weight: 800; }
.h-section { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; }
.lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); line-height: 1.6; }

.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--rust); color: #fff; box-shadow: 0 6px 18px rgba(194, 84, 42, 0.32); }
.btn--primary:hover { background: var(--rust-strong); box-shadow: 0 10px 26px rgba(194, 84, 42, 0.40); }

.btn--ghost { background: transparent; color: var(--anthracite); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--anthracite); background: #fff; }

.btn--ondark { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.24); }
.btn--ondark:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.45); }

.btn--white { background: #fff; color: var(--anthracite); }
.btn--white:hover { background: var(--cream); }

.btn--lg { padding: 18px 30px; font-size: 17px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.topbar {
  background: var(--anthracite);
  color: #d9d2c8;
  font-size: 13.5px;
  letter-spacing: 0.01em;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 20px;
}
.topbar a { color: #f0e9dd; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar .topbar__left { display: flex; gap: 22px; }
.topbar svg { width: 15px; height: 15px; opacity: 0.85; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 247, 241, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

/* Logo / wordmark placeholder */
.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo__mark {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--anthracite);
  color: #fff;
  display: grid; place-items: center;
  flex: none;
  position: relative;
  overflow: hidden;
}
.logo__mark svg { width: 26px; height: 26px; }
.logo__mark::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--rust);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--anthracite); letter-spacing: -0.02em; }
.logo__sub { font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rust); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.nav a:hover { background: var(--cream); color: var(--anthracite); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex; flex-direction: column; align-items: flex-end; text-decoration: none; line-height: 1.1;
}
.header-phone span { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.header-phone strong { font-family: var(--font-head); font-size: 18px; color: var(--anthracite); letter-spacing: -0.01em; white-space: nowrap; }

.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--anthracite);
  color: #f3ece1;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(194,84,42,0.22), transparent 55%),
    radial-gradient(80% 70% at 0% 100%, rgba(35,92,71,0.18), transparent 60%);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(56px, 7vw, 96px);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  padding: 8px 15px 8px 11px;
  font-size: 13.5px; font-weight: 600;
  color: #f0e7da;
  margin-bottom: 26px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #54c08a; box-shadow: 0 0 0 4px rgba(84,192,138,0.22); }
.hero h1 { color: #fff; font-size: clamp(36px, 5.4vw, 62px); font-weight: 800; }
.hero h1 .accent { color: #f0966a; }
.hero__sub { margin-top: 22px; font-size: clamp(17px, 1.9vw, 20px); color: #cfc6b8; max-width: 30em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trustline {
  margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 22px;
  font-size: 14.5px; color: #bcb3a4;
}
.hero__trustline span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trustline svg { width: 17px; height: 17px; color: #54c08a; }

.hero__media { position: relative; }
.hero__pricecard {
  position: absolute; left: -26px; bottom: -26px;
  background: #fff; color: var(--ink);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  max-width: 260px;
}
.hero__pricecard .pc-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--rust-tint); color: var(--rust); display: grid; place-items: center; flex: none; }
.hero__pricecard .pc-icon svg { width: 22px; height: 22px; }
.hero__pricecard strong { font-family: var(--font-head); display: block; font-size: 16px; }
.hero__pricecard span { font-size: 13px; color: var(--muted); }

/* ---------- Image placeholder ---------- */
.ph {
  position: relative;
  background-color: #cabfae;
  background-image:
    repeating-linear-gradient(135deg, rgba(33,31,29,0.05) 0 2px, transparent 2px 11px);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #5d544a;
  border: 1px solid rgba(33,31,29,0.07);
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #6a6055;
  background: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(33,31,29,0.08);
  text-align: center;
  max-width: 80%;
}
.ph--dark { background-color: #34302a; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 11px); color: #b9af9f; }
.ph--dark::after { background: rgba(0,0,0,0.35); color: #cfc4b2; border-color: rgba(255,255,255,0.1); }
.hero__media .ph { aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); }

/* Real photos inside .ph slots */
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ph:has(img) { background: none; border-color: rgba(33,31,29,0.10); }
.ph:has(img)::after { display: none; }

/* ---------- Trust strip ---------- */
.truststrip { background: var(--cream); border-bottom: 1px solid var(--line); }
.truststrip .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border-radius: 0;
}
.trust-item {
  background: var(--cream);
  padding: 26px 22px;
  display: flex; align-items: center; gap: 14px;
}
.trust-item__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--white); color: var(--rust); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); }
.trust-item__icon svg { width: 21px; height: 21px; }
.trust-item strong { font-family: var(--font-head); font-size: 15.5px; display: block; color: var(--anthracite); line-height: 1.2; }
.trust-item span { font-size: 13px; color: var(--muted); }

/* ---------- Intro / team ---------- */
.intro { background: var(--paper); }
.intro__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.intro__media { position: relative; }
.intro__media .ph { aspect-ratio: 5 / 4; }
.intro__stamp {
  position: absolute; right: -18px; top: -18px;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--green); color: #eaf2ee;
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--paper);
}
.intro__stamp b { font-family: var(--font-head); font-size: 28px; line-height: 1; }
.intro__stamp small { font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; max-width: 90px; }
.intro p + p { margin-top: 18px; }
.intro .sig { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.intro .sig__name { font-family: var(--font-head); font-weight: 700; color: var(--anthracite); }
.intro .sig__role { font-size: 14px; color: var(--muted); }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 15px; font-size: 14px; font-weight: 600; color: var(--anthracite);
}
.pill svg { width: 15px; height: 15px; color: var(--green); }

/* ---------- Services ---------- */
.services { background: var(--cream); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d8cfbf; }
.service-card__icon { width: 50px; height: 50px; border-radius: 12px; background: var(--rust-tint); color: var(--rust); display: grid; place-items: center; margin-bottom: 18px; }
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 20px; margin-bottom: 8px; }
.service-card p { font-size: 15px; color: var(--muted); }
.service-card .more { margin-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--rust); display: inline-flex; align-items: center; gap: 6px; }
.service-card .more svg { width: 15px; height: 15px; transition: transform 0.18s; }
.service-card:hover .more svg { transform: translateX(3px); }

/* ---------- Pricing / place check ---------- */
.pricing { background: var(--anthracite); color: #efe8dc; position: relative; overflow: hidden; }
.pricing::before { content:""; position:absolute; inset:0; background: radial-gradient(90% 80% at 90% 10%, rgba(194,84,42,0.16), transparent 55%); pointer-events:none; }
.pricing .wrap { position: relative; }
.pricing h2 { color: #fff; }
.pricing .lead { color: #cabfae; }

.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 12px; }

.checker {
  background: #fff; color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.checker h3 { font-size: 22px; margin-bottom: 6px; }
.checker > p.sub { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; }
.checker__field { position: relative; }
.checker label { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--anthracite); display: block; margin-bottom: 8px; }
.checker input {
  width: 100%;
  font-family: var(--font-body); font-size: 17px;
  padding: 15px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.checker input:focus { outline: none; border-color: var(--rust); background: #fff; box-shadow: 0 0 0 4px rgba(194,84,42,0.12); }
.checker input::placeholder { color: var(--muted-2); }

.suggest {
  list-style: none; margin: 8px 0 0; padding: 0;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; box-shadow: var(--shadow-md);
  max-height: 240px; overflow: auto;
  position: absolute; left: 0; right: 0; z-index: 5;
}
.suggest li { padding: 11px 16px; cursor: pointer; font-size: 15.5px; display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.suggest li:hover, .suggest li[aria-selected="true"] { background: var(--cream); }
.suggest li .pr { font-family: var(--font-head); font-weight: 700; color: var(--rust); font-size: 14px; }
.suggest .empty { color: var(--muted); cursor: default; }
.suggest .empty:hover { background: #fff; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip {
  font-family: var(--font-head); font-weight: 500; font-size: 13.5px;
  padding: 7px 13px; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--paper); color: var(--ink);
  cursor: pointer; transition: all 0.16s;
}
.chip:hover { border-color: var(--rust); color: var(--rust); background: var(--rust-tint); }

.result {
  margin-top: 22px;
  border-radius: var(--radius);
  border: 1.5px solid var(--rust-soft);
  background: var(--rust-tint);
  padding: 22px;
  display: none;
}
.result.show { display: block; animation: pop 0.28s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.result__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.result__place { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--anthracite); }
.result__price { font-family: var(--font-head); font-weight: 800; font-size: 38px; color: var(--rust); line-height: 1; }
.result__price small { font-size: 15px; font-weight: 600; color: var(--muted); }
.result__meta { margin-top: 12px; font-size: 14.5px; color: #6c5142; display: grid; gap: 7px; }
.result__meta div { display: flex; align-items: center; gap: 9px; }
.result__meta svg { width: 16px; height: 16px; color: var(--rust); flex: none; }
.result__actions { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
.result--miss { border-color: var(--line); background: var(--cream); }
.result--miss .result__place { display: block; margin-bottom: 8px; }

/* Pricing table */
.ptable { display: grid; gap: 10px; }
.ptable__row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.ptable__row .regio { font-size: 14.5px; color: #ddd4c6; }
.ptable__row .regio b { color: #fff; font-family: var(--font-head); font-weight: 600; display: block; font-size: 15.5px; margin-bottom: 3px; }
.ptable__price { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: #f0966a; white-space: nowrap; }
.ptable__row--extra { background: rgba(35,92,71,0.22); border-color: rgba(84,192,138,0.3); }
.ptable__row--extra .ptable__price { color: #7ad3a6; }
.pricing__note { margin-top: 18px; font-size: 13.5px; color: #ab9f8d; display: flex; align-items: center; gap: 9px; }
.pricing__note svg { width: 16px; height: 16px; flex: none; color: #7ad3a6; }

/* ---------- Work area ---------- */
.area { background: var(--paper); }
.area__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 64px); align-items: center; }
.area__places { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 8px; }
.area__place {
  font-size: 14.5px; padding: 8px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); color: var(--ink); font-weight: 500;
}
.area__place--more { background: var(--anthracite); color: #fff; border-color: var(--anthracite); }
.area__map .ph { aspect-ratio: 4 / 3; }

/* ---------- Why annual ---------- */
.why { background: var(--cream); }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 64px); align-items: center; }
.why__list { display: grid; gap: 16px; margin-top: 8px; }
.why__item { display: flex; gap: 16px; align-items: flex-start; }
.why__item .num { width: 38px; height: 38px; border-radius: 10px; background: var(--green); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; flex: none; }
.why__item h4 { font-size: 18px; margin-bottom: 3px; }
.why__item p { font-size: 15px; color: var(--muted); }
.why__media .ph { aspect-ratio: 3 / 4; }

/* ---------- Reviews ---------- */
.reviews { background: var(--paper); }
.reviews__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.rating { display: flex; align-items: center; gap: 12px; }
.rating__stars { display: flex; gap: 3px; color: var(--gold); }
.rating__stars svg { width: 22px; height: 22px; }
.rating__num { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--anthracite); }
.rating__num span { color: var(--muted); font-weight: 500; font-size: 14px; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; }
.review-card .stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 14px; }
.review-card .stars svg { width: 17px; height: 17px; }
.review-card p { font-size: 15.5px; color: var(--ink); line-height: 1.55; }
.review-card .who { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; }
.review-card .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: var(--rust); flex: none; }
.review-card .who b { font-family: var(--font-head); font-size: 15px; display: block; }
.review-card .who span { font-size: 13px; color: var(--muted); }

/* ---------- Warning malafide ---------- */
.warn { background: var(--paper); }
.warn__box {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 44px);
  background: var(--anthracite-2);
  color: #e9e1d4;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 52px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.warn__box::before { content:""; position:absolute; left:0; top:0; bottom:0; width:5px; background: var(--rust); }
.warn__icon { width: 76px; height: 76px; border-radius: 16px; background: rgba(194,84,42,0.18); color: #f0966a; display: grid; place-items: center; flex: none; }
.warn__icon svg { width: 38px; height: 38px; }
.warn h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.warn p { color: #cdc4b5; font-size: 16px; max-width: 56ch; }
.warn p + p { margin-top: 12px; }
.warn .warn__cta { margin-top: 22px; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq__list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--anthracite);
  padding: 22px 44px 22px 0; position: relative; display: block;
}
.faq__q::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c2542a' stroke-width='2.5' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  transform: translateY(-50%) rotate(0deg); transition: transform 0.25s ease;
}
.faq__item.open .faq__q::after { transform: translateY(-50%) rotate(135deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq__a p { padding: 0 30px 24px 0; color: var(--muted); font-size: 15.5px; }
.faq__aside { position: sticky; top: 100px; }
.faq__aside .card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.faq__aside h3 { font-size: 21px; margin-bottom: 10px; }
.faq__aside p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }

/* ---------- Final CTA ---------- */
.cta { background: var(--anthracite); color: #f1eadd; position: relative; overflow: hidden; }
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(80% 120% at 50% 0%, rgba(194,84,42,0.20), transparent 60%); pointer-events:none; }
.cta .wrap { position: relative; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(30px, 4.4vw, 48px); }
.cta p { color: #cabfae; font-size: 19px; margin: 18px auto 0; max-width: 46ch; }
.cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.cta__phone { margin-top: 22px; font-size: 15px; color: #ab9f8d; }
.cta__phone a { color: #f0966a; font-weight: 700; text-decoration: none; }

/* ---------- Footer ---------- */
.footer { background: #191816; color: #b1a899; padding-block: 60px 28px; font-size: 14.5px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand .logo__name, .footer__brand .logo__mark { }
.footer .logo__name { color: #fff; }
.footer p { margin-top: 16px; color: #9c9384; max-width: 30ch; }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: #b1a899; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__contact div { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer__contact svg { width: 17px; height: 17px; color: var(--rust); flex: none; margin-top: 2px; }
.footer__bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid #2c2a26; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; color: #807868; }
.footer__bottom a { color: #807868; }

/* ---------- Sticky mobile bar ---------- */
.mobilebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  background: rgba(25,24,22,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid #34302a;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobilebar a { flex: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .menu-toggle {
    display: inline-grid; place-items: center; width: 46px; height: 46px;
    border-radius: 10px; border: 1px solid var(--line); background: #fff; cursor: pointer;
  }
  .menu-toggle svg { width: 24px; height: 24px; }
}

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; }
  .hero__media .ph { aspect-ratio: 16 / 10; }
  .hero__pricecard { left: auto; right: 12px; bottom: -20px; }
  .intro__grid, .area__grid, .why__grid, .pricing__grid, .faq__grid { grid-template-columns: 1fr; }
  .faq__aside { position: static; }
  .services__grid, .reviews__grid { grid-template-columns: 1fr 1fr; }
  .truststrip .wrap { grid-template-columns: 1fr 1fr; }
  .warn__box { grid-template-columns: 1fr; text-align: left; }
  .why__media { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  .header-actions .btn--primary { display: none; }
  .mobilebar { display: flex; }
  body { padding-bottom: 76px; }
  .services__grid, .reviews__grid { grid-template-columns: 1fr; }
  .pricing__grid { gap: 28px; }
  .intro__stamp { width: 92px; height: 92px; right: 10px; top: -14px; }
  .intro__stamp b { font-size: 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .reviews__grid .review-card:nth-child(n+3) { display: none; }
}

/* mobile nav drawer */
.drawer { position: fixed; inset: 0; z-index: 90; display: none; }
.drawer.open { display: block; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(25,24,22,0.5); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(82vw, 340px);
  background: var(--paper); padding: 24px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform 0.28s ease;
}
.drawer.open .drawer__panel { transform: none; }
.drawer__close { align-self: flex-end; background: none; border: none; cursor: pointer; padding: 8px; }
.drawer__close svg { width: 26px; height: 26px; }
.drawer a { text-decoration: none; font-family: var(--font-head); font-weight: 600; font-size: 19px; color: var(--anthracite); padding: 12px 8px; border-bottom: 1px solid var(--line); }
.drawer .btn { margin-top: 16px; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .result.show { animation: none; }
}

/* nav active state */
.nav a[aria-current="page"] { color: var(--rust); background: var(--rust-tint); }
.drawer a[aria-current="page"] { color: var(--rust); }

/* service-card as link */
a.service-card { text-decoration: none; color: inherit; display: block; }
a.service-card:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; }

/* ============================================================
   SUBPAGE COMPONENTS
   ============================================================ */

/* Page hero (interior pages) */
.page-hero { background: var(--anthracite); color: #efe8dc; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(110% 90% at 100% 0%, rgba(194,84,42,0.20), transparent 55%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; padding-block: clamp(40px, 6vw, 76px); }
.page-hero--media .wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 4.6vw, 52px); font-weight: 800; max-width: 16ch; }
.page-hero__sub { margin-top: 18px; font-size: clamp(17px, 1.9vw, 20px); color: #cabfae; max-width: 46ch; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.page-hero__media .ph { aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); }
.page-hero--center .wrap { text-align: center; }
.page-hero--center h1 { margin-inline: auto; }
.page-hero--center .page-hero__sub { margin-inline: auto; }
.page-hero--center .page-hero__cta { justify-content: center; }

/* Breadcrumb */
.crumbs { background: var(--anthracite-2); }
.crumbs .wrap { display: flex; align-items: center; gap: 8px; padding-block: 13px; font-size: 13.5px; color: #a89e8e; flex-wrap: wrap; }
.crumbs a { color: #cabfae; text-decoration: none; }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 14px; height: 14px; opacity: 0.6; }
.crumbs span[aria-current] { color: #efe8dc; }

/* Prose / content body */
.prose { max-width: 720px; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); margin-top: 40px; margin-bottom: 14px; }
.prose h3 { font-size: 20px; margin-top: 28px; margin-bottom: 10px; }
.prose p { margin-bottom: 16px; color: var(--ink); }
.prose p.lead { color: var(--muted); }
.prose ul { margin: 0 0 18px; padding-left: 0; list-style: none; display: grid; gap: 11px; }
.prose ul li { position: relative; padding-left: 30px; color: var(--ink); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23235c47' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
.prose strong { color: var(--anthracite); }
.prose a:not(.btn) { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }

/* Two-column layout with sticky aside */
.layout-2col { display: grid; grid-template-columns: 1fr 360px; gap: clamp(36px, 5vw, 64px); align-items: start; }
.aside-sticky { position: sticky; top: 96px; display: grid; gap: 18px; }

/* Info / CTA card */
.infocard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.infocard--dark { background: var(--anthracite-2); border-color: var(--line-dark); color: #e9e1d4; }
.infocard--dark h3 { color: #fff; }
.infocard--dark p { color: #cabfae; }
.infocard h3 { font-size: 20px; margin-bottom: 8px; }
.infocard p { font-size: 15px; color: var(--muted); margin-bottom: 16px; }
.infocard .btn { margin-bottom: 8px; }
.infocard__price { font-family: var(--font-head); font-weight: 800; font-size: 34px; color: var(--rust); line-height: 1; }
.infocard__price small { font-size: 15px; font-weight: 600; color: var(--muted); }

/* Mini price list (compact) */
.miniprices { display: grid; gap: 8px; margin-top: 6px; }
.miniprices > div { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.miniprices > div:last-child { border-bottom: none; }
.miniprices b { font-family: var(--font-head); color: var(--rust); white-space: nowrap; }
.miniprices span { color: var(--muted); }

/* Feature/step grid */
.steps { display: grid; gap: 18px; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.step__n { width: 38px; height: 38px; border-radius: 10px; background: var(--anthracite); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; margin-bottom: 16px; }
.step h3 { font-size: 18px; margin-bottom: 7px; }
.step p { font-size: 15px; color: var(--muted); }

/* Choice cards (afspraak: nieuwe/bestaande klant) */
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.choice {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column;
  transition: transform 0.18s, box-shadow 0.2s, border-color 0.2s;
}
.choice:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #d8cfbf; }
.choice--primary { border-color: var(--rust); box-shadow: 0 10px 30px rgba(194,84,42,0.12); }
.choice__tag { align-self: flex-start; font-family: var(--font-head); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; margin-bottom: 16px; }
.choice--primary .choice__tag { background: var(--rust-tint); color: var(--rust); }
.choice--ghost .choice__tag { background: var(--cream); color: var(--muted); }
.choice__icon { width: 54px; height: 54px; border-radius: 13px; background: var(--cream); color: var(--rust); display: grid; place-items: center; margin-bottom: 18px; }
.choice__icon svg { width: 28px; height: 28px; }
.choice h3 { font-size: 23px; margin-bottom: 10px; }
.choice p { color: var(--muted); font-size: 15.5px; margin-bottom: 22px; flex: 1; }
.choice .btn { width: 100%; }
.choice__steps { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.choice__steps li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); }
.choice__steps li svg { width: 17px; height: 17px; color: var(--green); flex: none; margin-top: 3px; }

/* Planning module mock */
.planmock { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.planmock__bar { background: var(--anthracite); color: #fff; display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.planmock__bar .logo__name { color: #fff; font-size: 15px; }
.planmock__bar .logo__sub { font-size: 10px; }
.planmock__body { padding: 26px; }
.planmock__steps { display: flex; gap: 8px; margin-bottom: 22px; }
.planmock__steps .s { flex: 1; height: 5px; border-radius: 3px; background: var(--line); }
.planmock__steps .s.on { background: var(--rust); }
.planmock__cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.planmock__cal span { aspect-ratio: 1; display: grid; place-items: center; border-radius: 8px; font-size: 13px; background: var(--paper); border: 1px solid var(--line); color: var(--muted); }
.planmock__cal span.free { background: var(--green-soft); color: var(--green); font-weight: 600; border-color: transparent; cursor: pointer; }
.planmock__cal span.sel { background: var(--rust); color: #fff; border-color: transparent; }
.planmock__cal span.dim { opacity: 0.4; }

/* Contact form */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; gap: 7px; }
.form-row label { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--anthracite); }
.form-row label .opt { color: var(--muted-2); font-weight: 500; }
.input, .textarea, select.input {
  width: 100%; font-family: var(--font-body); font-size: 16px;
  padding: 14px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink); transition: border-color 0.16s, box-shadow 0.16s;
}
.input:focus, .textarea:focus, select.input:focus { outline: none; border-color: var(--rust); box-shadow: 0 0 0 4px rgba(194,84,42,0.12); }
.textarea { min-height: 130px; resize: vertical; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13px; color: var(--muted); }
.form-success { display: none; background: var(--green-soft); border: 1px solid var(--green); border-radius: var(--radius); padding: 20px; color: var(--green); font-weight: 600; }
.form-success.show { display: flex; gap: 12px; align-items: center; }
.form-success svg { width: 22px; height: 22px; flex: none; }

/* Contact detail list */
.contact-list { display: grid; gap: 4px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--rust-tint); color: var(--rust); display: grid; place-items: center; flex: none; }
.contact-row .ic svg { width: 22px; height: 22px; }
.contact-row h4 { font-size: 16px; margin-bottom: 3px; }
.contact-row a, .contact-row p { color: var(--muted); font-size: 15px; text-decoration: none; }
.contact-row a:hover { color: var(--rust); }

/* Knowledge / blog cards */
.kb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.kb-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.18s, box-shadow 0.2s; text-decoration: none; color: inherit; }
.kb-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.kb-card .ph { aspect-ratio: 16 / 9; border-radius: 0; }
.kb-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.kb-card__cat { font-family: var(--font-head); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rust); margin-bottom: 10px; }
.kb-card h3 { font-size: 18px; line-height: 1.25; margin-bottom: 8px; }
.kb-card p { font-size: 14.5px; color: var(--muted); flex: 1; }
.kb-card .more { margin-top: 14px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--rust); display: inline-flex; align-items: center; gap: 6px; }
.kb-card .more svg { width: 15px; height: 15px; }

/* Section background variants */
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-white { background: var(--white); }

/* Related services strip */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related a { display: flex; align-items: center; gap: 12px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; text-decoration: none; color: var(--anthracite); font-family: var(--font-head); font-weight: 600; font-size: 15px; transition: border-color 0.18s, transform 0.18s; }
.related a:hover { border-color: var(--rust); transform: translateY(-2px); }
.related a svg { width: 18px; height: 18px; color: var(--rust); margin-left: auto; }

/* Area cluster grid (SEO pages) */
.area-cluster { display: flex; flex-wrap: wrap; gap: 9px; }

/* CTA band (reusable) */
.ctaband { background: var(--rust); color: #fff; }
.ctaband .wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding-block: clamp(32px, 4vw, 48px); }
.ctaband h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); }
.ctaband p { color: rgba(255,255,255,0.9); margin-top: 6px; }
.ctaband__actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .layout-2col { grid-template-columns: 1fr; }
  .aside-sticky { position: static; }
  .page-hero--media .wrap { grid-template-columns: 1fr; }
  .page-hero__media { max-width: 460px; }
  .steps--3, .kb-grid, .related { grid-template-columns: 1fr 1fr; }
  .choices { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .form-2 { grid-template-columns: 1fr; }
  .steps--3, .kb-grid, .related { grid-template-columns: 1fr; }
  .ctaband .wrap { flex-direction: column; align-items: flex-start; }
}

/* Plan-note callout (afspraak) */
.plan-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--rust-tint); border: 1px solid var(--rust-soft);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 26px;
}

/* Hoogwerker / safety notice band */
.notice-band { background: var(--paper); padding-block: 8px 0; }
.notice-band + .pricing, .notice-band + section { }
.notice {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center;
  background: var(--green-soft); border: 1px solid #bcd6c9;
  border-left: 5px solid var(--green);
  border-radius: var(--radius); padding: 24px 28px;
  max-width: var(--maxw); margin-inline: auto;
}
.notice__icon { width: 56px; height: 56px; border-radius: 13px; background: var(--green); color: #fff; display: grid; place-items: center; flex: none; }
.notice__icon svg { width: 28px; height: 28px; }
.notice__body h3 { font-size: 19px; margin-bottom: 6px; color: var(--green); }
.notice__body p { font-size: 15px; color: #335c4d; }
@media (max-width: 720px) {
  .notice { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .notice__icon { width: 48px; height: 48px; }
}
.plan-note svg { width: 24px; height: 24px; color: var(--rust); flex: none; margin-top: 2px; }
.plan-note p { font-size: 15.5px; color: #6c5142; }
.plan-note strong { color: var(--anthracite); }
.plan-note a { color: var(--rust); font-weight: 600; text-decoration: none; white-space: nowrap; }

/* ============================================================
   MOBILE REFINEMENTS
   ============================================================ */
@media (max-width: 720px) {
  :root { --gutter: 18px; }
  .section { padding-block: clamp(40px, 11vw, 60px); }
  .hero h1 { font-size: clamp(30px, 9vw, 40px); }
  .h-display { font-size: clamp(30px, 9vw, 44px); }
  .page-hero h1 { font-size: clamp(28px, 8.5vw, 40px); }
  .h-section { font-size: clamp(25px, 7vw, 34px); }

  /* price table rows: stack price under region */
  .ptable__row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 15px 16px; }
  .ptable__price { font-size: 22px; }

  /* hero price card: keep in flow, not overlapping */
  .hero__pricecard { position: static; max-width: none; margin-top: 14px; }
  .hero__media .ph { aspect-ratio: 4 / 3; }

  /* stamps & badges scale */
  .intro__stamp { width: 84px; height: 84px; right: 8px; top: -12px; border-width: 2px; }
  .intro__stamp b { font-size: 20px; }
  .intro__stamp small { font-size: 9px; }

  /* warning + cards padding */
  .warn__box { padding: 26px 20px; }
  .choice { padding: 26px 22px; }
  .checker { padding: 24px 20px; }
  .infocard { padding: 22px; }

  /* over-ons "four promises" stack to 2 then 1 */
  .steps[style*="repeat(4"] { grid-template-columns: 1fr 1fr !important; }

  /* breadcrumbs wrap nicely, allow horizontal scroll if long */
  .crumbs .wrap { font-size: 12.5px; }

  /* sticky mobile bar height comfortable tap targets */
  .mobilebar .btn { padding: 14px 12px; font-size: 15px; }

  /* plan-note stacks */
  .plan-note { flex-direction: column; gap: 10px; }
  .plan-note a { white-space: normal; }

  /* area place chips a touch smaller */
  .area__place { font-size: 13.5px; padding: 7px 12px; }

  /* page hero cta full-width buttons for easy tapping */
  .page-hero__cta .btn, .hero__cta .btn { flex: 1 1 auto; }
}

@media (max-width: 420px) {
  .steps[style*="repeat(4"] { grid-template-columns: 1fr !important; }
  .reviews__grid .review-card:nth-child(n+2) { display: none; }
}
