:root {
  --color-primary: #A3047C;
  --color-primary-dark: #7D0066;
  --color-petrol: #0E7C86;
  --color-ochre: #D99A2B;
  --color-soft: #D5D1CA;
  --color-success: #1f9f63;
  --color-star: #f5b301;
  --color-text: #26242A;
  --color-text-muted: #6B6670;
  --color-surface: #f4f2f0;
  --color-surface-map: #f6f5f3;
  --color-surface-dark: #26242A;
  --color-border: #e4e0de;
  --color-bg: #ffffff;
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --font-body: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Zilla Slab", Rockwell, Georgia, serif;
  --content-max: 1200px;
  --focus-ring: 0 0 0 3px rgba(163, 4, 124, 0.3);
  color-scheme: light;
}

@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("/fonts/work-sans-var.woff2") format("woff2");
}
@font-face {
  font-family: "Zilla Slab";
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url("/fonts/zilla-slab-500.woff2") format("woff2");
}
@font-face {
  font-family: "Zilla Slab";
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url("/fonts/zilla-slab-600.woff2") format("woff2");
}
@font-face {
  font-family: "Zilla Slab";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url("/fonts/zilla-slab-700.woff2") format("woff2");
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

@keyframes haay-drop-in {
  0% { transform: translateY(-160px); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes haay-rise-in {
  0% { transform: translateY(160px); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes haay-slide-in {
  0% { transform: translateX(-28px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes haay-wave {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(-11deg); }
  30% { transform: rotate(8deg); }
  45% { transform: rotate(-7deg); }
  60% { transform: rotate(5deg); }
  75% { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}
@keyframes haay-fade-up {
  0% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes haay-star-pop {
  0% { transform: scale(0.4) rotate(-25deg); opacity: 0; }
  65% { transform: scale(1.18) rotate(4deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
#haay-woord, #header-haay-woord { display: inline-block; transform-origin: 12% 90%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-sm); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: #fff; color: var(--color-text); padding: 12px 20px; border-radius: var(--radius-md);
}
.skip-link:focus { left: 24px; top: 12px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.1) blur(4px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .row {
  max-width: var(--content-max); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
@media (min-width: 1200px) {
  .site-header .row { padding-right: 0; }
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--color-text); }
.wordmark { display: flex; flex-direction: column; line-height: 0.98; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.wordmark .accent { color: var(--color-petrol); }
.footer-brand .wordmark { font-size: 20px; }
.accent-footer { color: rgba(255, 255, 255, 0.62); }

.main-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; margin-right: 18px; }
.main-nav a { text-decoration: none; color: var(--color-text); font-weight: 600; font-size: 15px; transition: color 150ms ease-out; }
.main-nav a:hover { color: var(--color-primary); }

.btn { text-decoration: none; font-weight: 600; border-radius: var(--radius-md); display: inline-flex; align-items: center; justify-content: center; border: none; cursor: pointer; font-family: var(--font-body); transition: background 150ms ease-out, border-color 150ms ease-out; }
.btn-primary { background: var(--color-primary); color: #fff; font-size: 16px; padding: 15px 30px; }
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-lg { align-self: flex-start; padding: 15px 32px; }
.btn-outline-teal { background: transparent; color: var(--color-petrol); border: 2px solid var(--color-petrol); font-size: 16px; padding: 13px 28px; }
.btn-outline-teal:hover { background: var(--color-surface); }
.btn-on-dark { background: #fff; color: var(--color-primary); font-weight: 700; font-size: 16px; padding: 14px 26px; }
.btn-on-dark:hover { background: var(--color-surface); }

.btn-call { gap: 9px; font-weight: 700; font-size: 15px; padding: 12px 18px; min-height: 46px; white-space: nowrap; }
.btn-call:hover { background: var(--color-primary-dark); }
.call-tablet { display: none; }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px; background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); cursor: pointer;
}
.menu-toggle span { display: block; height: 2.5px; background: var(--color-text); border-radius: 2px; }

.mobile-nav { border-top: 1px solid var(--color-border); background: #fff; padding: 10px 24px 18px; flex-direction: column; }
.mobile-nav a { text-decoration: none; color: var(--color-text); font-weight: 600; font-size: 17px; padding: 15px 0; border-bottom: 1px solid var(--color-border); }
.mobile-nav-cta { color: var(--color-primary) !important; font-weight: 700 !important; padding: 16px 0 4px !important; border-bottom: none !important; }

@media (max-width: 1039px) {
  .main-nav, .call-full { display: none; }
  .call-tablet { display: inline; }
  .btn-call { margin-left: auto; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: none; }
  .mobile-nav.is-open { display: flex; }
}

@media (max-width: 639px) {
  .call-tablet { display: none; }
  .btn-call { width: 46px; height: 46px; padding: 0; gap: 0; }
}

/* ===== Layout helpers ===== */
section > .eyebrow, .services > h2, .process > h2 { max-width: var(--content-max); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-primary); }
.eyebrow-icon { color: var(--color-petrol); letter-spacing: 0.04em; margin-bottom: 20px; }
.eyebrow-on-dark { color: rgba(255, 255, 255, 0.95); }
h2 { font-size: clamp(24px, 4.5vw, 34px); line-height: 1.15; margin: 16px 0 20px; }
.lead { font-size: 18px; line-height: 1.6; color: var(--color-text-muted); }
.muted { color: var(--color-text-muted); font-size: 18px; line-height: 1.6; }
.section-intro { font-size: 17px; line-height: 1.6; color: var(--color-text-muted); max-width: 680px; margin: 0 0 36px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }

/* ===== Hero ===== */
.hero { background: #fff; border-bottom: 1px solid var(--color-border); }
.hero-grid { max-width: var(--content-max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); min-height: 560px; }
.hero-copy { padding: clamp(48px, 7vw, 88px) 24px; align-self: center; }
.hero-copy h1 { font-size: clamp(30px, 7vw, 54px); line-height: 1.05; letter-spacing: -0.015em; margin: 0 0 18px; }
.hero-copy .lead { margin: 0 0 32px; max-width: 480px; font-size: 19px; }
.hero .eyebrow-icon { display: inline-flex; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-photo { background-image: url('/images/n-douche-zeist.jpg'); background-image: image-set(url('/images/n-douche-zeist.webp') type('image/webp'), url('/images/n-douche-zeist.jpg') type('image/jpeg')); background-size: cover; background-position: center; min-height: 320px; }

/* ===== Intro ===== */
.intro { max-width: var(--content-max); margin: 0 auto; padding: 80px 24px; }
.intro-inner { max-width: 780px; display: flex; flex-direction: column; gap: 16px; }
.intro h2 { margin: 0; }
@media (max-width: 639px) {
  .intro { padding-top: 48px; padding-bottom: 48px; }
}

/* ===== Stats ===== */
.stats { background: var(--color-surface); overflow: hidden; }
.stats-grid { max-width: var(--content-max); margin: 0 auto; padding: 64px 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.stat-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 32px 26px; }
.stat-bar { width: 40px; height: 4px; border-radius: 2px; margin-bottom: 20px; }
.bar-petrol { background: var(--color-petrol); }
.bar-ochre { background: var(--color-ochre); }
.bar-magenta { background: var(--color-primary); }
.bar-soft { background: var(--color-soft); }
.stat-figure { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 6vw, 50px); line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 16px; font-weight: 600; color: var(--color-text-muted); margin-top: 12px; }

/* ===== Services / Process ===== */
.services { max-width: var(--content-max); margin: 0 auto; padding: 48px 24px 80px; scroll-margin-top: 90px; }
.process { background: var(--color-surface); scroll-margin-top: 90px; overflow: hidden; }
.process-inner { max-width: var(--content-max); margin: 0 auto; padding: 48px 24px 80px; }
.service-card, .process-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 32px 28px; min-height: 220px; }
.service-card h3, .process-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 10px; }
.service-card p, .process-card p { font-size: 16px; line-height: 1.55; color: var(--color-text-muted); }
.card-purple { border-top: 4px solid var(--color-petrol); }
.card-pink { border-top: 4px solid var(--color-ochre); }
.card-red { border-top: 4px solid var(--color-primary); }
.service-card-cta { background: var(--color-surface); border: none; display: flex; flex-direction: column; gap: 16px; padding-top: 40px; }
.service-card-cta h3 { font-size: 26px; }
.service-card-cta p { flex: 1; }
.arrow-link { color: var(--color-primary); font-weight: 700; text-decoration: none; }
.arrow-link:hover { color: var(--color-primary-dark); }

.step-number { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 20px; border-radius: var(--radius-md); margin-bottom: 20px; }
.step-purple { background: var(--color-petrol); }
.step-pink { background: var(--color-soft); color: var(--color-text); }
.step-red { background: var(--color-primary); }

/* ===== Gallery ===== */
.gallery { background: #fff; scroll-margin-top: 80px; }
.gallery-inner { max-width: var(--content-max); margin: 0 auto; padding: 80px 24px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.gallery-grid figure { margin: 0; position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-card); transition: transform 220ms ease-out, box-shadow 220ms ease-out; }
.gallery-grid figure:hover { transform: translateY(-6px); box-shadow: 0 14px 28px rgba(38, 36, 42, 0.2); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms ease-out; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; color: #fff; font-weight: 600; font-size: 14px; background: linear-gradient(transparent, rgba(38, 36, 42, 0.78)); }

/* ===== Why ===== */
.why { background: var(--color-surface); scroll-margin-top: 80px; }
.why-grid { max-width: var(--content-max); margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; align-items: center; }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.check-list li { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--color-border); }
.check-list li:last-child { border-bottom: none; }
.check-list strong { display: block; font-size: 18px; }
.check-list div span { font-size: 15px; color: var(--color-text-muted); }
.check { flex-shrink: 0; width: 32px; height: 32px; border-radius: var(--radius-sm); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.check-purple { background: var(--color-petrol); }
.check-pink { background: var(--color-soft); color: var(--color-text); }
.check-red { background: var(--color-primary); }
.check-yellow { background: var(--color-ochre); color: var(--color-text); }

/* ===== About ===== */
.about { max-width: var(--content-max); margin: 0 auto; padding: 24px 24px 80px; scroll-margin-top: 80px; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 56px; align-items: center; }
.about-photo {
  width: 100%; height: 620px;
  clip-path: url(#watervlek); -webkit-clip-path: url(#watervlek);
  filter: drop-shadow(0 14px 30px rgba(38, 36, 42, 0.22));
  background: linear-gradient(160deg, var(--color-petrol), #0A5A62);
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: rgba(255, 255, 255, 0.85); font-weight: 600; font-size: 18px; line-height: 1.5;
}
.about h2 { margin-top: 16px; }

/* ===== Reviews ===== */
.reviews { background: var(--color-surface); scroll-margin-top: 80px; }
.reviews-inner { max-width: var(--content-max); margin: 0 auto; padding: 80px 24px; }
.review-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; margin: 0; }
.review-card .stars { display: inline-flex; gap: 3px; color: var(--color-star); font-size: 18px; }
.review-card p { font-size: 17px; line-height: 1.55; flex: 1; }
.review-card footer { font-weight: 700; font-size: 15px; display: flex; flex-direction: column; }
.review-card footer span { font-weight: 500; color: var(--color-text-muted); }

/* ===== Partner (Q1 Sanitair) ===== */
.partner { scroll-margin-top: 80px; }
.partner-grid { max-width: var(--content-max); margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); align-items: stretch; border-radius: var(--radius-md); overflow: hidden; }
.partner-copy { background: var(--color-petrol); color: #fff; padding: clamp(40px, 6vw, 56px) clamp(28px, 4vw, 48px); }
.partner-copy h2 { color: #fff; }
.partner-copy p { font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.97); margin: 0 0 28px; }
.partner-photo { background-image: url('/images/werk-zeist-700.jpg'); background-image: image-set(url('/images/werk-zeist-700.webp') type('image/webp'), url('/images/werk-zeist-700.jpg') type('image/jpeg')); background-size: cover; background-position: center; min-height: 320px; }

/* ===== Werkgebied ===== */
.area { position: relative; background: var(--color-surface-map); overflow: hidden; }
.area-map { position: absolute; inset: 0; width: 100%; height: 100%; }
.area-card-wrap { position: relative; max-width: var(--content-max); margin: 0 auto; padding: 72px 24px; min-height: 380px; }
.area-card { max-width: 640px; background: rgba(255, 255, 255, 0.92); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-card); }
.area-card h2 { font-size: clamp(23px, 4.5vw, 32px); margin: 14px 0 14px; }
.area-card p { font-size: 17px; line-height: 1.6; color: var(--color-text-muted); margin: 0 0 24px; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { background: var(--color-surface); color: var(--color-text-muted); font-weight: 700; font-size: 14px; padding: 8px 16px; border-radius: var(--radius-md); }

/* ===== Contact ===== */
.contact { max-width: var(--content-max); margin: 0 auto; padding: 80px 24px; scroll-margin-top: 80px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 56px; overflow: hidden; }
.contact-rows { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.contact-row { display: flex; align-items: center; gap: 18px; text-decoration: none; color: var(--color-text); padding: 16px 20px; border: 1px solid var(--color-border); border-radius: var(--radius-md); font-weight: 600; transition: border-color 150ms ease-out; }
.contact-row:hover { border-color: var(--color-primary); }
.contact-icon { width: 52px; height: 52px; flex-shrink: 0; color: #fff; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.icon-purple { background: var(--color-petrol); }
.icon-success { background: var(--color-success); }
.icon-red { background: var(--color-primary); }
.contact-label { display: block; font-size: 13px; color: var(--color-text-muted); font-weight: 600; }
.contact-value { font-size: 18px; }

.contact-panel { background: var(--color-surface); border-radius: var(--radius-md); padding: 40px; }
.contact-panel form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field span { font-size: 16px; font-weight: 600; }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 16px; padding: 14px 16px; border-radius: var(--radius-md);
  border: 1px solid var(--color-border); outline: none; color: var(--color-text); background: #fff;
}
.field textarea { resize: vertical; min-height: 240px; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-error { font-size: 15px; line-height: 1.5; color: var(--color-primary); font-weight: 600; margin: 0; }
.form-privacy { font-size: 13px; color: var(--color-text-muted); }
.form-privacy a { color: var(--color-primary); }
.thank-you { display: flex; flex-direction: column; gap: 12px; padding: 40px 8px; text-align: left; }
.check-badge { width: 48px; height: 48px; background: var(--color-success); color: #fff; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; }
.thank-you h3 { font-size: 24px; margin: 8px 0 0; }
.thank-you p { font-size: 16px; line-height: 1.5; color: var(--color-text-muted); }

/* ===== Footer ===== */
.site-footer { background: var(--color-surface-dark); color: #fff; }
.footer-inner { max-width: var(--content-max); margin: 0 auto; padding: 56px 24px 40px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 16px; color: #fff; }
.footer-brand p { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.65); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-heading { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 14px; }
.footer-cols a, .footer-cols span { display: block; color: #fff; text-decoration: none; font-size: 15px; margin-bottom: 8px; }
.footer-cols div:last-child span { color: rgba(255, 255, 255, 0.75); }
.footer-bar { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-bar span { display: block; max-width: var(--content-max); margin: 0 auto; padding: 20px 24px; font-size: 13px; color: rgba(255, 255, 255, 0.5); }
