:root {
  --bg: #0a0a0b;
  --bg-soft: #111214;
  --surface: rgba(21, 22, 24, 0.72);
  --surface-border: rgba(255, 255, 255, 0.12);
  --text: #f5f3ef;
  --muted: #b7b7b3;
  --accent: #d64536;
  --accent-hover: #ef5645;
  --line: rgba(255, 255, 255, 0.13);
  --container: 1180px;
  --header-height: 96px;
  --radius-lg: 30px;
  --radius-md: 18px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  transition: background 260ms ease, border-color 260ms ease, height 260ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(8, 8, 9, 0.76);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand__name {
  font-size: 1.26rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand__descriptor {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.87rem;
  font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition: background 200ms ease, border-color 200ms ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: #fff;
  transition: transform 220ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__media,
.hero__video,
.hero__overlay,
.hero__noise {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  background: #151617;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 76% 46%, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.58) 49%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.88) 0%, rgba(5, 5, 6, 0.5) 50%, rgba(5, 5, 6, 0.35) 100%);
}

.hero__noise {
  z-index: 2;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.hero__content {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: clamp(64px, 9vw, 150px);
  align-items: center;
}

.hero__copy {
  max-width: 700px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.2rem, 7.2vw, 7rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  font-weight: 500;
}

.hero h1 span {
  display: block;
  font-weight: 800;
}

.hero__subtitle {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--accent);
  box-shadow: 0 12px 38px rgba(214, 69, 54, 0.28);
}

.button--primary:hover {
  background: var(--accent-hover);
}

.button--ghost {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.hero__trust li {
  position: relative;
  padding-left: 16px;
}

.hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(30, 31, 34, 0.76), rgba(12, 13, 15, 0.58));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%);
}

.contact-card__topline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #54d674;
  box-shadow: 0 0 0 6px rgba(84, 214, 116, 0.1);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  margin-top: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--accent);
  background: rgba(214, 69, 54, 0.12);
}

.contact-card__icon svg {
  width: 21px;
  fill: currentColor;
}

.contact-card__label {
  margin: 28px 0 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.contact-card > p:not(.contact-card__label) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  font-size: 0.9rem;
}

.contact-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card__meta span,
.contact-card__meta strong {
  display: block;
}

.contact-card__meta span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-card__meta strong {
  font-size: 0.82rem;
}

.contact-card__link {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-card__link span {
  font-size: 1.05rem;
  transition: transform 200ms ease;
}

.contact-card__link:hover span {
  transform: translate(3px, -3px);
}

.whatsapp-float {
  position: absolute;
  right: -33px;
  bottom: -33px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 8px solid rgba(10, 10, 11, 0.92);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  transition: transform 220ms ease;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.36);
  animation: whatsapp-pulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.whatsapp-fallback {
  display: none;
  place-items: center;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.45);
  transform: translateX(-50%);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.7), transparent);
}

.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.section {
  padding: 120px 0;
}

.intro {
  background: var(--bg);
}

.intro__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.section-kicker {
  color: var(--accent);
}

.intro h2,
.placeholder-section h2,
.contact-section h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.intro p:not(.section-kicker) {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.placeholder-section {
  min-height: 66vh;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--bg-soft);
}

.placeholder-section:nth-of-type(even) {
  background: var(--bg);
}

.contact-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: #0d0e0f;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 900ms cubic-bezier(.2,.7,.2,1), transform 900ms cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes whatsapp-pulse {
  0% { transform: scale(0.92); opacity: 0.8; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

@media (max-width: 980px) {
  :root {
    --header-height: 82px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    padding: 120px 32px 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    background: rgba(8, 8, 9, 0.97);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 340ms ease, opacity 260ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    font-size: clamp(1.7rem, 7vw, 3.5rem);
  }

  .nav-cta {
    margin-top: 14px;
    font-size: 1rem !important;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 160px;
    padding-bottom: 140px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .contact-card {
    max-width: 520px;
    margin-left: auto;
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    padding-inline: 16px;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(7, 7, 8, 0.58), rgba(7, 7, 8, 0.76) 65%, rgba(7, 7, 8, 0.96));
  }

  .hero__video {
    object-position: center;
  }

  .hero__content {
    align-items: start;
    gap: 56px;
    padding-top: 140px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero__trust {
    display: grid;
    gap: 12px;
  }

  .contact-card {
    width: calc(100% - 10px);
    margin: 0;
    padding: 26px;
    border-radius: 24px;
  }

  .contact-card__icon {
    margin-top: 32px;
  }

  .contact-card__meta {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: -10px;
    bottom: -42px;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 88px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* WhatsApp-gerichte hero update */
:root {
  --whatsapp: #25d366;
  --whatsapp-dark: #16a94d;
}

.hero__content {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 430px);
  gap: clamp(54px, 7vw, 112px);
}

.hero__copy {
  max-width: 660px;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3rem, 5.65vw, 5.65rem);
  line-height: .94;
  letter-spacing: -.058em;
}

.hero__subtitle {
  max-width: 560px;
}

.button__icon {
  width: 19px;
  height: 19px;
  margin-right: 10px;
}

.button__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.button--quote {
  min-width: 192px;
}

.contact-card {
  padding: 34px;
  overflow: visible;
  background: linear-gradient(145deg, rgba(34, 32, 33, .88), rgba(15, 16, 18, .78));
}

.contact-card__intro {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
}

.contact-card__icon {
  width: 88px;
  height: 88px;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #58e97e, var(--whatsapp-dark));
  box-shadow: 0 14px 35px rgba(37, 211, 102, .3), inset 0 1px 0 rgba(255,255,255,.35);
}

.contact-card__icon svg {
  width: 49px;
  fill: currentColor;
}

.contact-card__label {
  margin: 0 0 7px;
  color: rgba(255,255,255,.55);
}

.contact-card h2 {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.contact-card h2 span {
  display: block;
  color: var(--whatsapp);
}

.contact-card > p:not(.contact-card__label) {
  margin-top: 26px;
}

.contact-card__benefits {
  display: grid;
  gap: 15px;
  margin: 26px 0 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.contact-card__benefits li {
  position: relative;
  padding-left: 34px;
  color: rgba(255,255,255,.78);
  font-size: .84rem;
}

.contact-card__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37,211,102,.72);
  border-radius: 50%;
  color: var(--whatsapp);
  transform: translateY(-50%);
  font-size: .72rem;
  font-weight: 800;
}

.contact-card__link {
  min-height: 58px;
  margin-top: 25px;
  padding: 0 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--whatsapp-dark), var(--whatsapp));
  box-shadow: 0 14px 34px rgba(37,211,102,.18);
  font-size: .86rem;
  transition: transform 200ms ease, filter 200ms ease;
}

.contact-card__link:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.contact-card__link-icon {
  width: 24px;
  height: 24px;
  margin-right: 9px;
}

.contact-card__link-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-card__link > span:last-child {
  margin-left: auto;
}

.whatsapp-float {
  right: -46px;
  bottom: -52px;
  width: 112px;
  height: 112px;
  border-width: 10px;
  background: linear-gradient(145deg, #68ea89, var(--whatsapp-dark));
  box-shadow: 0 22px 55px rgba(0,0,0,.48), 0 0 38px rgba(37,211,102,.2);
  overflow: hidden;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  padding: 14px;
  border-radius: 50%;
  object-fit: cover;
}

.whatsapp-fallback {
  width: 58px;
  height: 58px;
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: .9rem;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero h1 {
    font-size: clamp(3rem, 5vw, 4.7rem);
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 400px);
    gap: 48px;
  }
}

@media (max-width: 980px) {
  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.25rem, 9vw, 6rem);
  }

  .contact-card {
    margin-right: 38px;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.8rem, 13.4vw, 4.4rem);
  }

  .contact-card {
    width: calc(100% - 18px);
    margin-right: 18px;
  }

  .contact-card__intro {
    grid-template-columns: 66px 1fr;
    gap: 16px;
  }

  .contact-card__icon {
    width: 66px;
    height: 66px;
  }

  .contact-card__icon svg {
    width: 38px;
  }

  .whatsapp-float {
    right: -20px;
    bottom: -48px;
    width: 92px;
    height: 92px;
  }
}

/* Definitieve hero-verfijning: titel vrij van contactkaart */
@media (min-width: 981px) {
  .hero__content {
    grid-template-columns: minmax(0, 590px) minmax(380px, 430px);
    justify-content: space-between;
    gap: clamp(44px, 5vw, 84px);
  }

  .hero__copy {
    max-width: 590px;
  }

  .hero h1 {
    max-width: 590px;
    font-size: clamp(3.35rem, 4.75vw, 5rem);
    overflow-wrap: normal;
  }
}

/* WhatsApp-logo altijd rond weergeven, ook als het bronbestand vierkant is */
.whatsapp-float {
  isolation: isolate;
}

.whatsapp-float img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  padding: 0;
  border-radius: 50%;
  object-fit: cover;
  clip-path: circle(50% at 50% 50%);
}

.whatsapp-float:focus-visible,
.contact-card__link:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .9);
  outline-offset: 4px;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero__content {
    grid-template-columns: minmax(0, 540px) minmax(350px, 390px);
    gap: 38px;
  }

  .hero__copy,
  .hero h1 {
    max-width: 540px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 4.45vw, 4.25rem);
  }
}

/* Update: correct WhatsApp rendering and remove quote CTA */
.hero__actions,
.button--quote,
.nav-cta {
  display: none !important;
}

.contact-card__icon {
  overflow: hidden;
}

.contact-card__icon img {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 50%;
  object-fit: contain;
  clip-path: circle(50% at 50% 50%);
}

.contact-card__icon-fallback {
  width: 58%;
  height: 58%;
  fill: #fff;
}

.whatsapp-float {
  right: -52px;
  bottom: -58px;
  width: 126px;
  height: 126px;
  border: 0;
  background: transparent;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .5), 0 0 42px rgba(37, 211, 102, .24);
}

.whatsapp-float::after {
  display: none;
}

.whatsapp-float img {
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 50%;
  object-fit: contain;
  clip-path: circle(49% at 50% 50%);
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: -18px;
    bottom: -52px;
    width: 104px;
    height: 104px;
  }
}


/* Versie 5: helderdere hero en randloze WhatsApp-iconen */
.hero__overlay {
  background:
    radial-gradient(circle at 76% 42%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.30) 54%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.54) 0%, rgba(5, 5, 6, 0.28) 48%, rgba(5, 5, 6, 0.18) 100%);
}

.hero__fade {
  height: 105px;
  background: linear-gradient(to bottom, transparent 0%, rgba(13, 14, 15, .38) 58%, var(--bg) 100%);
}

.contact-card__icon,
.whatsapp-float {
  border: 0 !important;
  outline: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #48dc72, #18ad4e);
}

.contact-card__icon img,
.whatsapp-float img,
.whatsapp-fallback,
.contact-card__icon-fallback {
  display: none !important;
}

.whatsapp-mark {
  display: block;
  width: 58%;
  height: 58%;
  fill: #fff;
  flex: 0 0 auto;
}

.contact-card__icon .whatsapp-mark {
  width: 58%;
  height: 58%;
}

.whatsapp-float {
  display: grid;
  place-items: center;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .42), 0 0 34px rgba(37, 211, 102, .2);
}

.whatsapp-float .whatsapp-mark {
  width: 60%;
  height: 60%;
}

@media (max-width: 980px) {
  .hero__overlay {
    background: linear-gradient(180deg, rgba(5, 5, 6, .34) 0%, rgba(5, 5, 6, .48) 62%, rgba(5, 5, 6, .66) 100%);
  }
}


/* Compacte intro en full-width badkamerpresentatie */
.intro--compact {
  padding: clamp(64px, 7vw, 96px) 0 clamp(52px, 6vw, 78px);
}

.intro__grid--compact {
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.55fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
}

.intro__grid--compact .section-kicker--light {
  margin-bottom: .45rem;
  color: rgba(255, 255, 255, .96);
}

.intro__grid--compact h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.85rem);
  line-height: 1.02;
}

.bathroom-showcase {
  position: relative;
  min-height: clamp(560px, 72vw, 860px);
  overflow: hidden;
  isolation: isolate;
  background: #111315;
}

.bathroom-showcase::before,
.bathroom-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: clamp(90px, 13vw, 190px);
  pointer-events: none;
}

.bathroom-showcase::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(8, 9, 10, .62) 35%, transparent 100%);
}

.bathroom-showcase::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-soft) 0%, rgba(8, 9, 10, .5) 38%, transparent 100%);
}

.bathroom-showcase__media,
.bathroom-showcase__media img,
.bathroom-showcase__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bathroom-showcase__media img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.bathroom-showcase__shade {
  background:
    linear-gradient(90deg, rgba(6, 7, 8, .58) 0%, rgba(6, 7, 8, .18) 46%, rgba(6, 7, 8, .28) 100%),
    linear-gradient(180deg, rgba(7, 8, 9, .08), rgba(7, 8, 9, .22));
}

.bathroom-showcase__content {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: clamp(90px, 10vw, 150px);
  padding-bottom: clamp(100px, 12vw, 180px);
}

.bathroom-showcase__card {
  width: min(520px, 46vw);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(20, 22, 24, .7), rgba(10, 11, 12, .48));
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(18px) saturate(118%);
  backdrop-filter: blur(18px) saturate(118%);
}

.bathroom-showcase__card h2 {
  margin: 14px 0 20px;
  max-width: 460px;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 600;
}

.bathroom-showcase__card > p:not(.section-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(.98rem, 1.4vw, 1.08rem);
  line-height: 1.75;
}

.bathroom-showcase__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .9);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bathroom-showcase__note::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

@media (max-width: 980px) {
  .intro__grid--compact {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bathroom-showcase {
    min-height: 700px;
  }

  .bathroom-showcase__content {
    align-items: flex-end;
    justify-content: flex-start;
  }

  .bathroom-showcase__card {
    width: min(620px, 82vw);
  }
}

@media (max-width: 640px) {
  .intro--compact {
    padding: 64px 0 52px;
  }

  .bathroom-showcase {
    min-height: 650px;
  }

  .bathroom-showcase__media img {
    object-position: center;
  }

  .bathroom-showcase__shade {
    background: linear-gradient(180deg, rgba(6, 7, 8, .1) 15%, rgba(6, 7, 8, .72) 82%, rgba(6, 7, 8, .86));
  }

  .bathroom-showcase__content {
    padding-top: 100px;
    padding-bottom: 82px;
  }

  .bathroom-showcase__card {
    width: 100%;
    padding: 26px;
    border-radius: 22px;
  }
}

/* Badkamerkaart links uitgelijnd */
.bathroom-showcase__content {
  justify-content: flex-start;
}

.bathroom-showcase__card {
  margin-right: auto;
  margin-left: 0;
}

/* Spoedservice */
.emergency-showcase {
  position: relative;
  min-height: clamp(620px, 76vh, 860px);
  overflow: hidden;
  isolation: isolate;
  background: #0a0a0b;
}

.emergency-showcase::before,
.emergency-showcase::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  height: 110px;
  pointer-events: none;
}

.emergency-showcase::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.emergency-showcase::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-soft), transparent);
}

.emergency-showcase__media,
.emergency-showcase__media img,
.emergency-showcase__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.emergency-showcase__media img {
  object-fit: cover;
  object-position: center;
}

.emergency-showcase__shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.08) 0%, rgba(5, 6, 7, 0.18) 42%, rgba(5, 6, 7, 0.62) 72%, rgba(5, 6, 7, 0.82) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.06), rgba(5, 6, 7, 0.24));
}

.emergency-showcase__content {
  position: relative;
  z-index: 4;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 96px;
  padding-bottom: 96px;
}

.emergency-showcase__card {
  position: relative;
  width: min(100%, 510px);
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(27, 29, 32, 0.78), rgba(10, 11, 13, 0.62));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.emergency-showcase__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, rgba(225, 90, 56, 0.8), transparent);
  box-shadow: 0 0 34px rgba(225, 90, 56, 0.38);
}

.emergency-showcase__badge {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.emergency-showcase__badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ed66f;
  box-shadow: 0 0 0 6px rgba(78, 214, 111, 0.11);
}

.emergency-showcase__card h2 {
  margin: 0;
  max-width: 430px;
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  line-height: 1.01;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.emergency-showcase__card > p:not(.emergency-showcase__badge) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
  line-height: 1.72;
}

.emergency-showcase__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 30px 0 0;
  padding: 26px 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 600;
}

.emergency-showcase__benefits li {
  position: relative;
  padding-left: 20px;
}

.emergency-showcase__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #54d674;
  font-weight: 800;
}

.emergency-showcase__button {
  min-height: 56px;
  margin-top: 28px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: #25d366;
  color: #07130b;
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.2);
  transition: transform 220ms ease, background 220ms ease;
}

.emergency-showcase__button:hover {
  transform: translateY(-3px);
  background: #33df73;
}

.emergency-showcase__button svg {
  width: 24px;
  fill: currentColor;
}

.emergency-showcase__button span {
  margin-left: auto;
  font-size: 1.1rem;
}

.reveal--from-right {
  transform: translateX(30px);
}

.reveal--from-right.is-visible {
  transform: translateX(0);
}

@media (max-width: 980px) {
  .emergency-showcase {
    min-height: 720px;
  }

  .emergency-showcase__shade {
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.12), rgba(5, 6, 7, 0.35) 48%, rgba(5, 6, 7, 0.76) 100%);
  }

  .emergency-showcase__card {
    width: min(100%, 480px);
  }
}

@media (max-width: 640px) {
  .emergency-showcase {
    min-height: 780px;
  }

  .emergency-showcase__media img {
    object-position: 32% center;
  }

  .emergency-showcase__shade {
    background: linear-gradient(180deg, rgba(5, 6, 7, 0.18), rgba(5, 6, 7, 0.72) 48%, rgba(5, 6, 7, 0.94));
  }

  .emergency-showcase__content {
    align-items: flex-end;
    padding-top: 110px;
    padding-bottom: 86px;
  }

  .emergency-showcase__card {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .emergency-showcase__benefits {
    grid-template-columns: 1fr;
  }
}

/* Light text break between visual showcases */
.craft-section {
  position: relative;
  z-index: 5;
  padding: clamp(84px, 10vw, 142px) 0;
  color: #171819;
  background:
    radial-gradient(circle at 88% 18%, rgba(214, 69, 54, 0.08), transparent 30%),
    linear-gradient(135deg, #f4f1eb 0%, #e8e4dc 100%);
  overflow: hidden;
}

.craft-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image: linear-gradient(rgba(20, 20, 20, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 20, 20, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent, #000 35%, #000 80%, transparent);
}

.craft-section__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  align-items: start;
  gap: clamp(54px, 9vw, 130px);
}

.section-kicker--dark {
  color: #b13a30;
}

.craft-section h2 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(2.45rem, 5.2vw, 5.4rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.craft-section__copy {
  padding-top: clamp(6px, 3vw, 38px);
}

.craft-section__copy > p {
  margin: 0;
  color: #555653;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.85;
}

.craft-section__points {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(16, 17, 18, 0.15);
}

.craft-section__points span {
  position: relative;
  padding: 17px 0 17px 28px;
  border-bottom: 1px solid rgba(16, 17, 18, 0.15);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.craft-section__points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid #c24437;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Contact and interactive map */
.contact-section {
  position: relative;
  padding: clamp(90px, 11vw, 155px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 30%, rgba(214, 69, 54, 0.12), transparent 32%),
    #0e0f10;
}

.contact-section__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(480px, 1.24fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

.contact-section__details h2 {
  max-width: 580px;
  margin: 18px 0 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 600;
}

.contact-section__lead {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.59);
  line-height: 1.75;
}

.contact-section__address {
  display: grid;
  gap: 6px;
  margin-top: 34px;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,.11);
  border-bottom: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.64);
  font-style: normal;
}

.contact-section__address strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.05rem;
}

.contact-section__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.contact-action {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 17px;
  background: rgba(255,255,255,.055);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.contact-action:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.27);
  background: rgba(255,255,255,.09);
}

.contact-action--whatsapp {
  border-color: rgba(37,211,102,.25);
  background: rgba(37,211,102,.1);
}

.contact-action__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}

.contact-action--whatsapp .contact-action__icon {
  color: #07220f;
  background: #25d366;
}

.contact-action svg {
  width: 21px;
  fill: currentColor;
}

.contact-action span:last-child {
  display: grid;
  gap: 3px;
  font-size: .83rem;
  font-weight: 700;
}

.contact-action small {
  color: rgba(255,255,255,.48);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-map {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 34px;
  background: #222;
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
}

.contact-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), inset 0 0 90px rgba(0,0,0,.18);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 590px;
  border: 0;
  filter: grayscale(.88) invert(.9) contrast(.86) brightness(.78) hue-rotate(175deg);
}

.contact-map__label {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 15px;
  background: rgba(12,13,14,.78);
  box-shadow: 0 15px 40px rgba(0,0,0,.3);
  backdrop-filter: blur(14px);
}

.contact-map__label span {
  color: rgba(255,255,255,.48);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-map__label strong {
  font-size: .86rem;
}

@media (max-width: 980px) {
  .craft-section__grid,
  .contact-section__layout {
    grid-template-columns: 1fr;
  }

  .craft-section__copy {
    max-width: 700px;
    padding-top: 0;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .craft-section {
    padding: 76px 0;
  }

  .craft-section__grid {
    gap: 40px;
  }

  .contact-section__actions {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 410px;
  }

  .contact-map {
    border-radius: 24px;
  }
}

/* v9 - rustigere beeldranden, compact vakmanschap en neutrale sectielabels */
.bathroom-showcase::before,
.bathroom-showcase::after,
.emergency-showcase::before,
.emergency-showcase::after {
  height: clamp(150px, 17vw, 245px);
}

.bathroom-showcase::before {
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(10, 11, 12, .82) 24%, rgba(10, 11, 12, .34) 62%, transparent 100%);
}

.bathroom-showcase::after {
  background: linear-gradient(to top, #f4f1eb 0%, rgba(244, 241, 235, .76) 18%, rgba(16, 17, 18, .25) 62%, transparent 100%);
}

.bathroom-showcase__media::before,
.bathroom-showcase__media::after,
.emergency-showcase__media::before,
.emergency-showcase__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(35px, 7vw, 120px);
  pointer-events: none;
}

.bathroom-showcase__media::before,
.emergency-showcase__media::before {
  left: 0;
  background: linear-gradient(to right, rgba(8, 9, 10, .54), transparent);
}

.bathroom-showcase__media::after,
.emergency-showcase__media::after {
  right: 0;
  background: linear-gradient(to left, rgba(8, 9, 10, .42), transparent);
}

.emergency-showcase::before {
  background: linear-gradient(to bottom, #f4f1eb 0%, rgba(244, 241, 235, .72) 15%, rgba(10, 11, 12, .26) 66%, transparent 100%);
}

.emergency-showcase::after {
  background: linear-gradient(to top, var(--bg-soft) 0%, rgba(10, 11, 12, .72) 30%, transparent 100%);
}

.bathroom-showcase .section-kicker,
.emergency-showcase .section-kicker,
.contact-section .section-kicker,
.emergency-showcase__badge {
  color: rgba(255, 255, 255, .88);
}

.bathroom-showcase__note::before {
  background: rgba(255, 255, 255, .72);
}

.craft-section {
  padding: clamp(68px, 7vw, 104px) 0;
}

.craft-section__grid {
  grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.section-kicker--dark {
  color: #343633;
}

.craft-section h2 {
  max-width: 660px;
  margin-top: 14px;
  font-size: clamp(2.2rem, 4.35vw, 4.45rem);
  line-height: 1.01;
}

.craft-section__copy {
  padding-top: 0;
}

.craft-section__copy > p {
  max-width: 650px;
  font-size: clamp(.98rem, 1.2vw, 1.1rem);
  line-height: 1.72;
}

.craft-section__points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
  border: 0;
}

.craft-point {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 20px;
  border: 1px solid rgba(16, 17, 18, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .42);
  box-shadow: 0 14px 35px rgba(31, 30, 27, .06), inset 0 1px 0 rgba(255,255,255,.62);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.craft-point:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 20px 42px rgba(31, 30, 27, .1), inset 0 1px 0 #fff;
}

.craft-point__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #252724;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(16, 17, 18, .1);
}

.craft-point__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.craft-point > span:last-child {
  display: grid;
  gap: 7px;
}

.craft-point strong {
  font-size: .83rem;
  line-height: 1.35;
}

.craft-point small {
  color: #62635f;
  font-size: .72rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .craft-section__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .craft-section__copy > p {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .craft-section__points {
    grid-template-columns: 1fr;
  }

  .craft-point {
    min-height: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .bathroom-showcase::before,
  .bathroom-showcase::after,
  .emergency-showcase::before,
  .emergency-showcase::after {
    height: 130px;
  }
}

/* v10 - grotere iconen, subtielere contactkop en naadloze beeldfades */
.craft-section__points span::before {
  display: none;
}

.craft-point__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 20px;
  color: #171918;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,236,229,.72));
  border: 1px solid rgba(16,17,18,.09);
  box-shadow: 0 12px 28px rgba(31,30,27,.09), inset 0 1px 0 rgba(255,255,255,.9);
}

.craft-point__icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.45;
}

.craft-point {
  min-height: 190px;
  padding: 24px;
}

.craft-point > span:last-child {
  padding: 0;
}

.contact-section__details h2 {
  max-width: 500px;
  font-size: clamp(2rem, 3.4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 560;
}

/* De afbeeldingen zelf lopen transparant uit, zodat er geen zichtbare kleurstap ontstaat. */
.bathroom-showcase__media,
.emergency-showcase__media {
  overflow: hidden;
}

.bathroom-showcase__media img,
.emergency-showcase__media img {
  transform: scale(1.015);
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,.14) 5%,
    rgba(0,0,0,.72) 14%,
    #000 25%,
    #000 75%,
    rgba(0,0,0,.72) 86%,
    rgba(0,0,0,.14) 95%,
    transparent 100%);
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,.14) 5%,
    rgba(0,0,0,.72) 14%,
    #000 25%,
    #000 75%,
    rgba(0,0,0,.72) 86%,
    rgba(0,0,0,.14) 95%,
    transparent 100%);
}

.bathroom-showcase {
  background: linear-gradient(to bottom, var(--bg) 0%, #111315 24%, #111315 76%, #f4f1eb 100%);
}

.emergency-showcase {
  background: linear-gradient(to bottom, #f4f1eb 0%, #0a0a0b 24%, #0a0a0b 78%, var(--bg-soft) 100%);
}

.bathroom-showcase::before,
.bathroom-showcase::after,
.emergency-showcase::before,
.emergency-showcase::after {
  height: clamp(190px, 22vw, 330px);
  filter: blur(8px);
  transform: scaleY(1.04);
  opacity: .72;
}

.bathroom-showcase::before {
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(10,11,12,.74) 22%, rgba(10,11,12,.2) 68%, transparent 100%);
}

.bathroom-showcase::after {
  background: linear-gradient(to top, #f4f1eb 0%, rgba(244,241,235,.58) 22%, rgba(244,241,235,.08) 68%, transparent 100%);
}

.emergency-showcase::before {
  background: linear-gradient(to bottom, #f4f1eb 0%, rgba(244,241,235,.56) 20%, rgba(244,241,235,.08) 66%, transparent 100%);
}

.emergency-showcase::after {
  background: linear-gradient(to top, var(--bg-soft) 0%, rgba(10,11,12,.58) 24%, rgba(10,11,12,.1) 68%, transparent 100%);
}

@media (max-width: 760px) {
  .craft-point__icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    border-radius: 17px;
  }

  .craft-point__icon svg {
    width: 28px;
    height: 28px;
  }

  .craft-point {
    min-height: 0;
  }

  .bathroom-showcase::before,
  .bathroom-showcase::after,
  .emergency-showcase::before,
  .emergency-showcase::after {
    height: 180px;
  }
}

/* v11 - gestapelde diensten met uitklapbare details */
.services-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 150px) 0;
  color: #171817;
  background:
    radial-gradient(circle at 78% 15%, rgba(214, 69, 54, .08), transparent 28%),
    linear-gradient(180deg, #f4f1eb 0%, #ebe7df 100%);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(28, 29, 27, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 29, 27, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

.services-section__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.services-section__intro {
  position: sticky;
  top: 116px;
}

.services-section__intro h2 {
  max-width: 520px;
  margin: 14px 0 22px;
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.services-section__intro > p:last-child {
  max-width: 475px;
  margin: 0;
  color: #5f605c;
  font-size: clamp(.98rem, 1.25vw, 1.12rem);
  line-height: 1.75;
}

.services-accordion {
  display: grid;
  gap: 14px;
}

.service-item {
  overflow: clip;
  border: 1px solid rgba(24, 25, 23, .11);
  border-radius: 24px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 55px rgba(46, 43, 38, .07), inset 0 1px 0 rgba(255,255,255,.82);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.service-item:hover,
.service-item[open] {
  transform: translateY(-2px);
  border-color: rgba(24, 25, 23, .18);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 65px rgba(46, 43, 38, .11), inset 0 1px 0 #fff;
}

.service-item summary {
  min-height: 142px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 52px;
  gap: 24px;
  align-items: center;
  padding: 26px 30px;
  cursor: pointer;
  list-style: none;
}

.service-item summary::-webkit-details-marker { display: none; }

.service-item__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #171817;
  background: linear-gradient(145deg, #fff, #e9e5dd);
  border: 1px solid rgba(24,25,23,.1);
  box-shadow: 0 13px 32px rgba(44,41,36,.1), inset 0 1px 0 #fff;
}

.service-item__icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item__copy {
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 5px 16px;
  align-items: baseline;
}

.service-item__copy small {
  grid-row: 1 / span 2;
  color: #a09d96;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.service-item__copy strong {
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.service-item__copy > span {
  color: #696a66;
  font-size: .91rem;
  line-height: 1.55;
}

.service-item__toggle {
  position: relative;
  width: 48px;
  height: 48px;
  justify-self: end;
  border-radius: 50%;
  border: 1px solid rgba(24,25,23,.15);
  background: rgba(255,255,255,.55);
  transition: transform 260ms ease, background 220ms ease, border-color 220ms ease;
}

.service-item__toggle::before,
.service-item__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1.5px;
  border-radius: 2px;
  background: #191a18;
  transform: translate(-50%, -50%);
  transition: transform 260ms ease, opacity 220ms ease;
}

.service-item__toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.service-item[open] .service-item__toggle { transform: rotate(180deg); background: #191a18; border-color: #191a18; }
.service-item[open] .service-item__toggle::before,
.service-item[open] .service-item__toggle::after { background: #fff; }
.service-item[open] .service-item__toggle::after { opacity: 0; }

.service-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 360ms cubic-bezier(.2,.8,.2,1);
}

.service-item[open] .service-item__panel { grid-template-rows: 1fr; }
.service-item__panel > div { overflow: hidden; }
.service-item__panel p {
  max-width: 650px;
  margin: 0 30px 30px 130px;
  padding-top: 24px;
  color: #555651;
  line-height: 1.75;
  border-top: 1px solid rgba(24,25,23,.1);
}

@media (max-width: 980px) {
  .services-section__layout { grid-template-columns: 1fr; gap: 46px; }
  .services-section__intro { position: static; }
  .services-section__intro h2 { max-width: 720px; }
  .services-section__intro > p:last-child { max-width: 720px; }
}

@media (max-width: 680px) {
  .services-section { padding: 78px 0; }
  .service-item { border-radius: 20px; }
  .service-item summary {
    min-height: 0;
    grid-template-columns: 58px minmax(0, 1fr) 42px;
    gap: 15px;
    padding: 20px;
  }
  .service-item__icon { width: 56px; height: 56px; border-radius: 17px; }
  .service-item__icon svg { width: 27px; height: 27px; }
  .service-item__copy { grid-template-columns: 1fr; gap: 4px; }
  .service-item__copy small { grid-row: auto; font-size: .62rem; }
  .service-item__copy > span { display: none; }
  .service-item__toggle { width: 40px; height: 40px; }
  .service-item__panel p { margin: 0 20px 24px; padding-top: 20px; font-size: .9rem; }
}

/* v12 - zachtere beeldfades, compacte diensten in 2x3 en snellere contactreveal */
.bathroom-showcase,
.emergency-showcase {
  isolation: isolate;
}

.bathroom-showcase__media,
.emergency-showcase__media {
  inset: -2px 0;
}

.bathroom-showcase__media img,
.emergency-showcase__media img {
  transform: scale(1.035);
  -webkit-mask-image: none;
  mask-image: none;
}

.bathroom-showcase::before,
.bathroom-showcase::after,
.emergency-showcase::before,
.emergency-showcase::after {
  z-index: 2;
  height: clamp(240px, 28vw, 430px);
  filter: none;
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.bathroom-showcase::before {
  top: -1px;
  background: linear-gradient(to bottom,
    var(--bg) 0%,
    rgba(10,11,12,.98) 4%,
    rgba(10,11,12,.88) 14%,
    rgba(10,11,12,.58) 34%,
    rgba(10,11,12,.22) 62%,
    transparent 100%);
}

.bathroom-showcase::after {
  bottom: -1px;
  background: linear-gradient(to top,
    #f4f1eb 0%,
    rgba(244,241,235,.98) 4%,
    rgba(244,241,235,.88) 14%,
    rgba(244,241,235,.58) 34%,
    rgba(244,241,235,.22) 62%,
    transparent 100%);
}

.emergency-showcase::before {
  top: -1px;
  background: linear-gradient(to bottom,
    #f4f1eb 0%,
    rgba(244,241,235,.98) 4%,
    rgba(244,241,235,.88) 14%,
    rgba(244,241,235,.58) 34%,
    rgba(244,241,235,.22) 62%,
    transparent 100%);
}

.emergency-showcase::after {
  bottom: -1px;
  background: linear-gradient(to top,
    var(--bg-soft) 0%,
    rgba(10,11,12,.98) 4%,
    rgba(10,11,12,.88) 14%,
    rgba(10,11,12,.58) 34%,
    rgba(10,11,12,.22) 62%,
    transparent 100%);
}

.services-section {
  padding: clamp(72px, 8vw, 116px) 0;
}

.services-section__layout {
  grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr);
  gap: clamp(36px, 5vw, 72px);
}

.services-accordion {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.service-item {
  border-radius: 20px;
}

.service-item summary {
  min-height: 0;
  grid-template-columns: 58px minmax(0, 1fr) 40px;
  gap: 14px;
  padding: 20px;
}

.service-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 17px;
}

.service-item__icon svg {
  width: 27px;
  height: 27px;
}

.service-item__copy {
  grid-template-columns: 1fr;
  gap: 4px;
}

.service-item__copy small {
  grid-row: auto;
  font-size: .62rem;
}

.service-item__copy strong {
  font-size: clamp(1.02rem, 1.25vw, 1.28rem);
}

.service-item__copy > span {
  display: none;
}

.service-item__toggle {
  width: 38px;
  height: 38px;
}

.service-item__panel p {
  margin: 0 20px 22px;
  padding-top: 18px;
  font-size: .88rem;
  line-height: 1.65;
}

.contact-section .reveal {
  transition-duration: 430ms;
}

@media (max-width: 1120px) {
  .services-section__layout {
    grid-template-columns: 1fr;
  }

  .services-section__intro {
    position: static;
  }
}

@media (max-width: 900px) {
  .services-accordion {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .services-accordion {
    grid-template-columns: 1fr;
  }

  .bathroom-showcase::before,
  .bathroom-showcase::after,
  .emergency-showcase::before,
  .emergency-showcase::after {
    height: 230px;
  }
}


/* v13 - rustige diensten in drie rijen van twee */
.services-section {
  padding: clamp(64px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(28, 29, 27, .025), transparent 30%),
    linear-gradient(180deg, #f5f2ec 0%, #eeeae3 100%);
}

.services-section::before {
  opacity: .16;
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 76%, transparent);
}

.services-section__layout {
  display: block;
  max-width: 1120px;
}

.services-section__intro {
  position: static;
  max-width: 680px;
  margin: 0 0 clamp(28px, 4vw, 44px);
}

.services-section__intro h2 {
  max-width: none;
  margin: 10px 0 10px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.services-section__intro > p:last-child {
  max-width: 560px;
  font-size: clamp(.94rem, 1vw, 1.04rem);
  line-height: 1.55;
}

.services-accordion {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-item {
  border-radius: 23px;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 16px 42px rgba(46, 43, 38, .065), inset 0 1px 0 rgba(255,255,255,.78);
}

.service-item:hover,
.service-item[open] {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(46, 43, 38, .095), inset 0 1px 0 #fff;
}

.service-item summary {
  min-height: 116px;
  grid-template-columns: 64px minmax(0, 1fr) 42px;
  gap: 18px;
  padding: 20px 22px;
}

.service-item__icon {
  width: 60px;
  height: 60px;
  border-radius: 19px;
  color: #17a951;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(235,232,225,.86));
}

.service-item__icon svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.65;
}

.service-item__copy {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 3px 12px;
}

.service-item__copy small {
  font-size: .62rem;
  opacity: .75;
}

.service-item__copy strong {
  font-size: clamp(1.12rem, 1.45vw, 1.42rem);
}

.service-item__copy > span {
  display: block;
  font-size: .84rem;
  line-height: 1.45;
}

.service-item__toggle {
  width: 38px;
  height: 38px;
  border-color: rgba(23,169,81,.24);
  background: rgba(23,169,81,.055);
}

.service-item__toggle::before,
.service-item__toggle::after {
  width: 14px;
  background: #168f49;
}

.service-item[open] .service-item__toggle {
  background: #168f49;
  border-color: #168f49;
}

.service-item__panel p {
  margin: 0 22px 22px 104px;
  padding-top: 18px;
  font-size: .88rem;
  line-height: 1.62;
}

@media (max-width: 760px) {
  .services-accordion { grid-template-columns: 1fr; }
  .services-section__intro { margin-bottom: 30px; }
  .service-item summary {
    grid-template-columns: 58px minmax(0, 1fr) 38px;
    gap: 14px;
    padding: 18px;
  }
  .service-item__icon { width: 54px; height: 54px; }
  .service-item__panel p { margin: 0 18px 20px; }
}

/* v14 - premium minimalistische dienstenaccordion */
.services-section {
  padding: clamp(72px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.7), transparent 34%),
    linear-gradient(180deg, #f4f1eb 0%, #efebe4 100%);
}

.services-section::before {
  display: none;
}

.services-section__layout {
  max-width: 1080px;
  margin-inline: auto;
}

.services-section__intro {
  max-width: 620px;
  margin-bottom: clamp(30px, 4vw, 48px);
}

.services-section__intro .section-kicker {
  margin-bottom: 12px;
  color: #7f807b;
}

.services-section__intro h2 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.services-section__intro > p:last-child {
  max-width: 510px;
  color: #6d6e69;
  font-size: clamp(.94rem, 1.1vw, 1.04rem);
  line-height: 1.55;
}

.services-accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.service-item {
  border: 1px solid rgba(24,25,23,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.47);
  box-shadow: 0 8px 28px rgba(42,39,34,.035), inset 0 1px 0 rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-item:hover {
  transform: translateY(-1px);
  border-color: rgba(24,25,23,.17);
  background: rgba(255,255,255,.68);
  box-shadow: 0 14px 36px rgba(42,39,34,.065), inset 0 1px 0 #fff;
}

.service-item[open] {
  transform: none;
  border-color: rgba(24,25,23,.18);
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 46px rgba(42,39,34,.075), inset 0 1px 0 #fff;
}

.service-item summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) minmax(190px, 330px) 42px;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
}

.service-item__icon {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  color: #14984a;
  background: rgba(20,152,74,.075);
  box-shadow: none;
}

.service-item__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.65;
}

.service-item__copy {
  display: contents;
}

.service-item__copy small {
  display: none;
}

.service-item__copy strong {
  min-width: 0;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 1.2;
  letter-spacing: -.028em;
}

.service-item__copy > span {
  display: block;
  color: #747570;
  font-size: .82rem;
  line-height: 1.45;
}

.service-item__toggle {
  width: 38px;
  height: 38px;
  border-color: rgba(24,25,23,.13);
  background: rgba(255,255,255,.58);
}

.service-item__toggle::before,
.service-item__toggle::after {
  width: 13px;
  background: #20211f;
}

.service-item[open] .service-item__toggle {
  transform: rotate(180deg);
  border-color: #1a1b19;
  background: #1a1b19;
}

.service-item__panel {
  transition: grid-template-rows 340ms cubic-bezier(.2,.8,.2,1);
}

.service-item__panel p {
  max-width: 760px;
  margin: 0 62px 24px 90px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(24,25,23,.09);
  color: #565752;
  font-size: .9rem;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .service-item summary {
    grid-template-columns: 46px minmax(0, 1fr) 40px;
    gap: 16px;
    min-height: 84px;
    padding: 18px;
  }

  .service-item__copy > span {
    display: none;
  }

  .service-item__panel p {
    margin: 0 18px 22px 80px;
  }
}

@media (max-width: 560px) {
  .services-section {
    padding: 68px 0;
  }

  .service-item {
    border-radius: 16px;
  }

  .service-item summary {
    grid-template-columns: 42px minmax(0, 1fr) 36px;
    gap: 13px;
    min-height: 76px;
    padding: 15px 16px;
  }

  .service-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .service-item__icon svg {
    width: 22px;
    height: 22px;
  }

  .service-item__copy strong {
    font-size: 1rem;
  }

  .service-item__toggle {
    width: 34px;
    height: 34px;
  }

  .service-item__panel p {
    margin: 0 16px 20px;
    padding-top: 17px;
    font-size: .86rem;
  }
}

/* v15 - lichte intro en volledig naadloze beeldfades */
.intro--compact {
  color: #171819;
  background:
    radial-gradient(circle at 88% 18%, rgba(214, 69, 54, 0.055), transparent 30%),
    linear-gradient(135deg, #f4f1eb 0%, #e8e4dc 100%);
}

.intro__grid--compact .section-kicker--light {
  color: rgba(23, 24, 25, .62);
}

.intro__grid--compact h2 {
  color: #171819;
}

/* De afbeelding zelf loopt transparant uit. Hierdoor ontstaan geen aansluitlijnen. */
.bathroom-showcase,
.emergency-showcase {
  background: #f4f1eb;
}

.bathroom-showcase::before,
.bathroom-showcase::after,
.emergency-showcase::before,
.emergency-showcase::after {
  display: none !important;
}

.bathroom-showcase__media,
.emergency-showcase__media {
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,.08) 3%,
    rgba(0,0,0,.42) 8%,
    #000 16%,
    #000 84%,
    rgba(0,0,0,.42) 92%,
    rgba(0,0,0,.08) 97%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,.08) 3%,
    rgba(0,0,0,.42) 8%,
    #000 16%,
    #000 84%,
    rgba(0,0,0,.42) 92%,
    rgba(0,0,0,.08) 97%,
    transparent 100%
  );
}

.bathroom-showcase__media img,
.emergency-showcase__media img {
  transform: scale(1.018);
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* Onder de spoedfoto loopt de pagina terug naar het donkere sitevlak. */
.emergency-showcase {
  background: linear-gradient(to bottom, #f4f1eb 0%, #f4f1eb 9%, #111315 24%, var(--bg-soft) 100%);
}

@media (max-width: 760px) {
  .bathroom-showcase__media,
  .emergency-showcase__media {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  }
}

/* v16: verfijnde hero-fade, 3D-iconen en reviews */
.hero__fade {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  height: clamp(130px, 20vh, 240px);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 11, 0) 0%,
    rgba(10, 10, 11, 0.08) 20%,
    rgba(10, 10, 11, 0.38) 58%,
    #f7f4ef 100%
  );
}

.craft-point__icon {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,.98), rgba(255,255,255,.42) 38%, transparent 39%),
    linear-gradient(145deg, #ffffff 0%, #f1eee8 58%, #ded9d0 100%);
  box-shadow:
    0 18px 32px rgba(44, 39, 31, 0.14),
    0 4px 8px rgba(44, 39, 31, 0.08),
    inset 1px 1px 0 rgba(255,255,255,.95),
    inset -2px -3px 8px rgba(93, 82, 65, 0.10);
  transform: perspective(180px) rotateX(5deg) rotateY(-5deg);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.craft-point:hover .craft-point__icon {
  transform: perspective(180px) rotateX(0deg) rotateY(0deg) translateY(-4px);
  box-shadow:
    0 24px 40px rgba(44, 39, 31, 0.18),
    0 6px 12px rgba(44, 39, 31, 0.08),
    inset 1px 1px 0 rgba(255,255,255,.95),
    inset -2px -3px 8px rgba(93, 82, 65, 0.10);
}

.craft-point__icon::after {
  content: "";
  position: absolute;
  inset: 9px 12px auto;
  height: 30%;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255,255,255,.75), rgba(255,255,255,0));
  pointer-events: none;
}

.craft-point__icon svg {
  position: relative;
  z-index: 1;
  stroke: #171918;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.9));
}

.reviews-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 148px) 0;
  color: #171817;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,255,255,.85), transparent 32%),
    radial-gradient(circle at 92% 88%, rgba(214, 202, 185, .40), transparent 34%),
    linear-gradient(135deg, #eee9e1 0%, #f7f4ef 48%, #e7e0d7 100%);
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(80,72,61,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,72,61,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.reviews-section .container { position: relative; z-index: 1; }

.reviews-section__header {
  max-width: 680px;
  margin-bottom: clamp(38px, 5vw, 64px);
}

.reviews-section__header h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.6vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.reviews-section__header > p:last-child {
  max-width: 580px;
  margin: 22px 0 0;
  color: #696963;
  line-height: 1.75;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.62), rgba(255,255,255,.30));
  box-shadow:
    0 22px 60px rgba(65, 55, 42, .10),
    inset 0 1px 0 rgba(255,255,255,.88);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.95);
  box-shadow:
    0 30px 76px rgba(65, 55, 42, .15),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card__rating strong {
  color: #6b665d;
  font-size: .78rem;
  letter-spacing: .05em;
}

.stars { display: inline-flex; gap: 4px; }
.stars i {
  width: 18px;
  height: 18px;
  display: block;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 94%,50% 72%,21% 94%,32% 57%,2% 35%,39% 35%);
  background: linear-gradient(145deg, #ffd864, #e7a817 68%, #bd7a08);
  filter: drop-shadow(0 2px 3px rgba(142,92,0,.22));
}
.stars i.is-half { background: linear-gradient(90deg, #f2b629 0 50%, rgba(104,98,87,.18) 50% 100%); }
.stars i.is-empty { background: rgba(104,98,87,.16); box-shadow: inset 0 0 0 1px rgba(104,98,87,.28); }

.review-card blockquote {
  margin: 38px 0 44px;
  color: #262725;
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -.02em;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: #686860;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.review-card__pin {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1.7px solid #1f9c55;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.review-card__pin::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  background: #1f9c55;
  transform: translate(-50%,-50%);
}

@media (max-width: 760px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 240px; }
  .hero__fade { height: 150px; }
}

/* v17: compactere premium review-layout */
.reviews-section {
  padding: clamp(72px, 8vw, 112px) 0 clamp(82px, 9vw, 124px);
}

.reviews-section__header {
  max-width: 760px;
  margin: 0 auto clamp(34px, 4vw, 54px);
  text-align: center;
}

.reviews-section__header .section-kicker {
  justify-content: center;
  margin-bottom: 12px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #2d8e53;
}

.reviews-section__header h2 {
  font-size: clamp(2rem, 3.5vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.reviews-section__header::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, transparent, rgba(31,156,85,.75), transparent);
}

.reviews-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 320px;
  padding: 24px 22px 22px;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(255,255,255,.36));
  box-shadow:
    0 16px 42px rgba(65,55,42,.10),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.review-card__rating {
  gap: 10px;
}

.review-card__rating strong {
  display: none;
}

.stars {
  gap: 3px;
}

.stars i {
  width: 17px;
  height: 17px;
}

.review-card blockquote {
  margin: 28px 0 36px;
  font-size: clamp(.98rem, 1vw, 1.08rem);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: -.015em;
}

.review-card footer {
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: none;
  color: #353631;
}

.review-card__pin {
  width: 14px;
  height: 14px;
  border-color: #1d1f1d;
}

.review-card__pin::after {
  background: #1d1f1d;
}

@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .review-card {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    min-height: 230px;
  }
}

/* v18 - compacte premium diensten en gekleurde 3D-vakmanschapsiconen */
.services-section {
  padding: clamp(64px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(33, 155, 89, .045), transparent 24%),
    linear-gradient(180deg, #f4f1eb 0%, #efebe4 100%);
}

.services-section::before {
  opacity: .12;
  background-size: 96px 96px;
}

.services-section__layout {
  display: block;
}

.services-section__intro {
  position: static;
  max-width: 720px;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.services-section__intro h2 {
  margin: 9px 0 10px;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1;
}

.services-section__intro > p:last-child {
  max-width: 520px;
  font-size: .96rem;
  line-height: 1.55;
}

.services-accordion {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-item {
  border-radius: 19px;
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 12px 34px rgba(46, 43, 38, .055), inset 0 1px 0 rgba(255,255,255,.7);
}

.service-item:hover,
.service-item[open] {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 17px 42px rgba(46, 43, 38, .075), inset 0 1px 0 #fff;
}

.service-item summary {
  min-height: 92px;
  grid-template-columns: 48px minmax(0, 1fr) 36px;
  gap: 16px;
  padding: 17px 18px;
}

.service-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: #16884b;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(233,239,232,.76));
  box-shadow: 0 8px 20px rgba(32, 88, 54, .08), inset 0 1px 0 #fff;
}

.service-item__icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.65;
}

.service-item__copy {
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 2px 10px;
}

.service-item__copy small {
  font-size: .59rem;
}

.service-item__copy strong {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  letter-spacing: -.025em;
}

.service-item__copy > span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #747570;
  font-size: .76rem;
  line-height: 1.45;
}

.service-item__toggle {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.42);
}

.service-item__toggle::before,
.service-item__toggle::after {
  width: 12px;
}

.service-item__panel p {
  margin: 0 18px 20px 82px;
  padding-top: 16px;
  font-size: .84rem;
  line-height: 1.62;
}

/* Gelaagde 3D-iconen zonder externe afbeeldingen */
.craft-point__icon {
  position: relative;
  isolation: isolate;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 22px;
  transform: translateZ(0) rotate(-2deg);
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(234,231,224,.9));
  box-shadow:
    0 18px 26px rgba(48, 45, 39, .13),
    0 5px 8px rgba(48, 45, 39, .09),
    inset 2px 2px 3px rgba(255,255,255,.98),
    inset -3px -3px 6px rgba(80,75,66,.1);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.craft-point__icon::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 7px -5px -7px 7px;
  border-radius: 20px;
  background: var(--icon-depth, rgba(39, 154, 89, .28));
  filter: blur(.2px);
  opacity: .68;
}

.craft-point__icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  background: radial-gradient(circle at 28% 20%, rgba(255,255,255,.92), transparent 46%);
  pointer-events: none;
}

.craft-point__icon svg {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  stroke: var(--icon-color, #16884b);
  stroke-width: 1.8;
  filter: drop-shadow(0 3px 2px rgba(22, 136, 75, .2));
}

.craft-point:nth-child(1) .craft-point__icon {
  --icon-color: #2e73b8;
  --icon-depth: rgba(46, 115, 184, .3);
  background: linear-gradient(145deg, #fbfdff, #e4eef8);
}

.craft-point:nth-child(2) .craft-point__icon {
  --icon-color: #d19122;
  --icon-depth: rgba(209, 145, 34, .29);
  background: linear-gradient(145deg, #fffdf8, #f5ead5);
}

.craft-point:nth-child(3) .craft-point__icon {
  --icon-color: #22945c;
  --icon-depth: rgba(34, 148, 92, .3);
  background: linear-gradient(145deg, #fbfffc, #deefe5);
}

.craft-point:hover .craft-point__icon {
  transform: translateY(-3px) rotate(0deg);
  box-shadow:
    0 22px 32px rgba(48, 45, 39, .16),
    0 7px 10px rgba(48, 45, 39, .1),
    inset 2px 2px 3px rgba(255,255,255,.98),
    inset -3px -3px 6px rgba(80,75,66,.1);
}

@media (max-width: 840px) {
  .services-accordion {
    grid-template-columns: 1fr;
  }

  .service-item__copy > span {
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 680px) {
  .services-section {
    padding: 62px 0;
  }

  .services-section__intro {
    margin-bottom: 28px;
  }

  .service-item summary {
    grid-template-columns: 48px minmax(0, 1fr) 34px;
    padding: 15px;
  }

  .service-item__copy {
    grid-template-columns: 1fr;
  }

  .service-item__copy small {
    display: none;
  }

  .service-item__copy > span {
    display: -webkit-box;
    font-size: .72rem;
  }

  .service-item__panel p {
    margin: 0 15px 18px;
  }

  .craft-point__icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    border-radius: 19px;
  }

  .craft-point__icon svg {
    width: 30px;
    height: 30px;
  }
}


/* v19 — premium diensten en gecentreerde 3D-iconen */
.craft-point__icon {
  position: relative;
  display: grid !important;
  place-items: center !important;
  width: 78px !important;
  height: 78px !important;
  flex: 0 0 78px !important;
  padding: 0 !important;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 24px !important;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(235,231,223,.92)) !important;
  box-shadow: 0 18px 34px rgba(48,45,39,.14), 0 5px 10px rgba(48,45,39,.08), inset 2px 2px 3px #fff, inset -3px -3px 7px rgba(75,68,58,.08) !important;
  transform: translateZ(0);
}
.craft-point__icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,0));
  pointer-events: none;
}
.craft-point__icon svg {
  display: block;
  width: 48px !important;
  height: 48px !important;
  margin: 0 !important;
  overflow: visible;
  transform: none !important;
  filter: drop-shadow(0 7px 7px rgba(28,30,29,.22));
}
.craft-point__icon svg path { stroke: #fff; stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.craft-point__icon svg .icon-body { stroke: rgba(255,255,255,.58); stroke-width: 1.4; }
.craft-point__icon svg .icon-shadow { fill: rgba(30,35,32,.2); stroke: none; transform: translate(2px,3px); }
.craft-point__icon svg .icon-shine { stroke: rgba(255,255,255,.72); stroke-width: 2.2; }
.craft-point:hover .craft-point__icon { transform: translateY(-4px) rotate(-1deg) !important; }

.services-section {
  padding: clamp(72px, 8vw, 112px) 0 !important;
  background:
    radial-gradient(circle at 8% 4%, rgba(37,166,94,.055), transparent 30%),
    linear-gradient(180deg, #f7f4ee 0%, #f3efe8 100%) !important;
}
.services-section::before { opacity: 0 !important; }
.services-section__layout {
  display: block !important;
  max-width: 1180px;
}
.services-section__intro {
  position: static !important;
  max-width: 650px;
  margin: 0 0 38px !important;
}
.services-section__intro h2 {
  margin: 8px 0 8px !important;
  font-size: clamp(2.35rem, 5vw, 4.5rem) !important;
  letter-spacing: -.055em;
  line-height: .98;
}
.services-section__intro > p:last-child {
  margin: 0 !important;
  max-width: 500px !important;
  font-size: clamp(.98rem, 1.35vw, 1.12rem) !important;
  line-height: 1.6;
  color: #74736e;
}
.services-accordion {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: start;
}
.service-item {
  align-self: start;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(48,46,42,.09) !important;
  border-radius: 22px !important;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(250,248,244,.72)) !important;
  box-shadow: 0 14px 35px rgba(45,42,36,.055), inset 0 1px 0 rgba(255,255,255,.9) !important;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease, background .32s ease;
}
.service-item:hover,
.service-item[open] {
  transform: translateY(-3px) !important;
  border-color: rgba(32,153,86,.26) !important;
  background: rgba(255,255,255,.95) !important;
  box-shadow: 0 20px 48px rgba(45,42,36,.085), inset 0 1px 0 #fff !important;
}
.service-item summary {
  min-height: 112px;
  display: grid !important;
  grid-template-columns: 54px minmax(0,1fr) 38px !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 22px 24px !important;
  cursor: pointer;
}
.service-item__icon {
  width: 54px !important;
  height: 54px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(35,154,86,.12) !important;
  border-radius: 17px !important;
  background: linear-gradient(145deg, #fff, #edf4ef) !important;
  box-shadow: 0 10px 22px rgba(38,91,60,.09), inset 1px 1px 0 #fff !important;
}
.service-item__icon svg { width: 26px !important; height: 26px !important; margin: 0 !important; stroke: #179353 !important; }
.service-item__copy {
  min-width: 0;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  align-items: baseline;
  column-gap: 12px !important;
  row-gap: 5px !important;
}
.service-item__copy small {
  grid-column: 1;
  color: #aaa79f !important;
  font-size: .64rem !important;
  letter-spacing: .16em;
  font-weight: 700;
}
.service-item__copy strong {
  grid-column: 2;
  font-size: clamp(1.05rem,1.55vw,1.3rem) !important;
  letter-spacing: -.025em;
  line-height: 1.15;
  white-space: normal;
}
.service-item__copy > span {
  grid-column: 1 / -1;
  display: block !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #77756f !important;
  font-size: .82rem !important;
  line-height: 1.4;
}
.service-item__toggle {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border-color: rgba(27,146,80,.2) !important;
  background: rgba(234,247,239,.72) !important;
}
.service-item__panel p {
  margin: 0 24px 24px 96px !important;
  padding: 18px 0 0 !important;
  border-top: 1px solid rgba(45,42,36,.08);
  font-size: .91rem !important;
  line-height: 1.7;
  color: #66645f;
}

@media (max-width: 820px) {
  .services-accordion { grid-template-columns: 1fr !important; }
  .service-item__copy > span { white-space: normal; }
}
@media (max-width: 600px) {
  .services-section { padding: 64px 0 !important; }
  .services-section__intro { margin-bottom: 26px !important; }
  .service-item summary { min-height: 96px; grid-template-columns: 48px minmax(0,1fr) 36px !important; gap: 14px !important; padding: 18px !important; }
  .service-item__icon { width: 48px !important; height: 48px !important; border-radius: 15px !important; }
  .service-item__copy { grid-template-columns: 1fr !important; }
  .service-item__copy small { display: none !important; }
  .service-item__copy strong { grid-column: 1; }
  .service-item__copy > span { grid-column: 1; font-size: .76rem !important; white-space: nowrap; }
  .service-item__panel p { margin: 0 18px 20px !important; padding-top: 16px !important; }
  .craft-point__icon { width: 70px !important; height: 70px !important; flex-basis: 70px !important; border-radius: 21px !important; }
  .craft-point__icon svg { width: 43px !important; height: 43px !important; }
}

/* Premium footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(42, 206, 112, 0.1), transparent 34rem),
    linear-gradient(180deg, #111514 0%, #090b0b 100%);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.025), transparent 36%);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(190px, .9fr) minmax(320px, 1.7fr) auto;
  align-items: center;
  gap: 3rem;
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}

.site-footer__brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
}

.site-footer__brand strong {
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.site-footer__brand span {
  margin-top: .5rem;
  color: rgba(255, 255, 255, .55);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem 1.2rem;
  font-size: .82rem;
}

.site-footer__meta p {
  margin: 0;
}

.site-footer__meta p + p::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 1.2rem;
  vertical-align: middle;
  border-radius: 999px;
  background: #2ad170;
  box-shadow: 0 0 12px rgba(42, 209, 112, .65);
}

.site-footer__meta a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: color .25s ease, border-color .25s ease;
}

.site-footer__meta a:hover,
.site-footer__meta a:focus-visible {
  color: #48dc86;
  border-color: #48dc86;
}

.site-footer__top {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-height: 48px;
  padding: .7rem .9rem .7rem 1.1rem;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.site-footer__top svg {
  width: 30px;
  height: 30px;
  padding: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  border-radius: 50%;
  background: #24c96a;
}

.site-footer__top:hover,
.site-footer__top:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(72, 220, 134, .5);
  background: rgba(255,255,255,.07);
}

@media (max-width: 860px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }

  .site-footer__meta {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 580px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .site-footer__top {
    width: fit-content;
  }

  .site-footer__meta {
    grid-column: auto;
    grid-row: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__meta p + p::before {
    display: none;
  }
}

/* v22 - premium contactstage met bedrijfsbus en Google Maps */
.contact-section--visual {
  padding: clamp(76px, 9vw, 126px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.045), transparent 30%),
    #0b0c0d;
}

.contact-stage {
  position: relative;
  min-height: clamp(700px, 66vw, 860px);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(330px, .72fr);
  grid-template-rows: 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: clamp(26px, 3vw, 40px);
  background: #151719;
  box-shadow: 0 48px 120px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.055);
}

.contact-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
}

.contact-stage__bus,
.contact-stage__map {
  position: relative;
  min-width: 0;
  min-height: inherit;
  overflow: hidden;
}

.contact-stage__bus img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.contact-stage:hover .contact-stage__bus img {
  transform: scale(1.035);
}

.contact-stage__bus-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,7,8,.12) 0%, rgba(6,7,8,.04) 52%, rgba(6,7,8,.72) 100%),
    linear-gradient(180deg, rgba(7,8,9,.08) 25%, rgba(7,8,9,.68) 100%);
}

.contact-stage__bus-label {
  position: absolute;
  left: clamp(24px, 3vw, 42px);
  bottom: clamp(24px, 3vw, 40px);
  z-index: 2;
  display: grid;
  gap: 7px;
  color: #fff;
}

.contact-stage__bus-label span {
  color: rgba(255,255,255,.58);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-stage__bus-label strong {
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  letter-spacing: -.04em;
}

.contact-stage__map {
  border-left: 1px solid rgba(255,255,255,.1);
  background: #202326;
}

.contact-stage__map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(.92) invert(.9) contrast(.84) brightness(.72) hue-rotate(175deg);
}

.contact-stage__map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,12,13,.35), transparent 38%),
    linear-gradient(180deg, rgba(11,12,13,.08), rgba(11,12,13,.26));
}

.contact-stage__route {
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 20px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px 0 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(10,11,12,.72);
  color: rgba(255,255,255,.9);
  font-size: .73rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
  transition: background .2s ease, transform .2s ease;
}

.contact-stage__route:hover {
  transform: translateY(-2px);
  background: rgba(10,11,12,.9);
}

.contact-stage__route svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-panel {
  position: absolute;
  z-index: 5;
  left: clamp(24px, 4vw, 62px);
  top: clamp(24px, 5vw, 70px);
  width: min(470px, calc(100% - 48px));
  padding: clamp(26px, 3.6vw, 44px);
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(19,21,23,.82), rgba(9,10,11,.67));
  box-shadow: 0 32px 90px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.075);
  backdrop-filter: blur(22px) saturate(118%);
  -webkit-backdrop-filter: blur(22px) saturate(118%);
}

.contact-panel .section-kicker {
  margin-bottom: 14px;
  color: rgba(255,255,255,.54);
}

.contact-panel h2 {
  max-width: 430px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 600;
}

.contact-panel__lead {
  max-width: 410px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.63);
  font-size: .92rem;
  line-height: 1.7;
}

.contact-panel__address {
  display: grid;
  gap: 5px;
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  font-size: .86rem;
  font-style: normal;
}

.contact-panel__address strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: .98rem;
}

.contact-panel__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.contact-panel__action {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.contact-panel__action:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.085);
}

.contact-panel__action--whatsapp {
  border-color: rgba(37,211,102,.26);
  background: rgba(37,211,102,.105);
}

.contact-panel__action-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}

.contact-panel__action--whatsapp .contact-panel__action-icon {
  color: #06220e;
  background: #25d366;
}

.contact-panel__action svg {
  width: 19px;
  fill: currentColor;
}

.contact-panel__action > span:last-child {
  display: grid;
  gap: 2px;
  color: #fff;
  font-size: .79rem;
  font-weight: 750;
}

.contact-panel__action small {
  color: rgba(255,255,255,.46);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .contact-stage {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(610px, 68vw) 360px;
  }

  .contact-stage__bus,
  .contact-stage__bus img,
  .contact-stage__map,
  .contact-stage__map iframe {
    min-height: 0;
  }

  .contact-stage__map {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  .contact-panel {
    top: 36px;
    left: 36px;
  }
}

@media (max-width: 640px) {
  .contact-section--visual {
    padding: 64px 0;
  }

  .contact-stage {
    width: 100%;
    grid-template-rows: minmax(680px, auto) 330px;
    border-radius: 24px;
  }

  .contact-stage__bus img {
    object-position: center;
  }

  .contact-panel {
    position: relative;
    inset: auto;
    width: auto;
    margin: 18px;
    padding: 25px 22px;
  }

  .contact-stage__bus {
    display: flex;
    align-items: flex-start;
  }

  .contact-stage__bus-label {
    left: 24px;
    bottom: 24px;
  }

  .contact-panel h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .contact-panel__actions {
    grid-template-columns: 1fr;
  }

  .contact-stage__route {
    right: 14px;
    top: 14px;
  }
}

/* v23 - badkamer video, premium full-width buscontact en zachte spoedfade */
.bathroom-showcase__media video,
.bathroom-showcase__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* De bus krijgt een breed cinematografisch frame; de kaart vormt een rustige tweede laag. */
.contact-section--visual {
  padding: clamp(72px, 8vw, 112px) 0;
}

.contact-stage {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: clamp(460px, 50vw, 650px) clamp(280px, 28vw, 360px);
  border-radius: clamp(24px, 2.5vw, 34px);
}

.contact-stage__bus,
.contact-stage__map {
  min-height: 0;
}

.contact-stage__bus img {
  min-height: 0;
  object-position: center 52%;
  transform: scale(1.005);
}

.contact-stage:hover .contact-stage__bus img {
  transform: scale(1.018);
}

.contact-stage__bus-shade {
  background:
    linear-gradient(90deg, rgba(6,7,8,.20) 0%, rgba(6,7,8,.04) 54%, rgba(6,7,8,.18) 100%),
    linear-gradient(180deg, rgba(7,8,9,.06) 30%, rgba(7,8,9,.56) 100%);
}

.contact-stage__map {
  border-left: 0;
  border-top: 1px solid rgba(255,255,255,.10);
}

.contact-stage__map iframe {
  min-height: 0;
}

.contact-stage__map::after {
  background:
    linear-gradient(180deg, rgba(11,12,13,.16), transparent 26%),
    linear-gradient(90deg, rgba(11,12,13,.10), transparent 35%);
}

.contact-stage__route {
  top: auto;
  right: clamp(18px, 2.5vw, 30px);
  bottom: clamp(18px, 2.5vw, 30px);
  min-height: 52px;
  padding: 0 19px 0 21px;
  border-color: rgba(255,255,255,.24);
  background: rgba(8,9,10,.88);
  box-shadow: 0 16px 42px rgba(0,0,0,.28);
  font-size: .78rem;
  letter-spacing: .01em;
}

.contact-stage__route:hover {
  background: #fff;
  color: #111315;
}

.contact-panel {
  top: clamp(28px, 4vw, 52px);
  left: clamp(28px, 4vw, 54px);
  width: min(445px, calc(100% - 56px));
  padding: clamp(25px, 3vw, 38px);
}

.contact-panel h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.contact-stage__bus-label {
  left: auto;
  right: clamp(28px, 4vw, 52px);
  bottom: clamp(28px, 3.5vw, 46px);
  text-align: right;
}

/* Extra zachte uitloop aan de onderkant van de spoedafbeelding. */
.emergency-showcase {
  isolation: isolate;
}

.emergency-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: clamp(110px, 15vw, 210px);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(11,12,13,0) 0%,
    rgba(11,12,13,.08) 28%,
    rgba(11,12,13,.42) 67%,
    #0b0c0d 100%
  );
}

.emergency-showcase__content {
  z-index: 4;
}

@media (max-width: 1050px) {
  .contact-stage {
    grid-template-rows: clamp(540px, 70vw, 650px) 340px;
  }

  .contact-panel {
    top: 32px;
    left: 32px;
  }
}

@media (max-width: 640px) {
  .contact-stage {
    grid-template-rows: minmax(650px, auto) 310px;
  }

  .contact-stage__bus {
    display: block;
  }

  .contact-stage__bus img {
    position: absolute;
    inset: 0;
    object-position: center;
  }

  .contact-panel {
    position: relative;
    z-index: 5;
    margin: 18px;
    width: auto;
  }

  .contact-stage__bus-label {
    left: 24px;
    right: auto;
    bottom: 24px;
    text-align: left;
  }

  .contact-stage__route {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
  }
}


/* v24 - losse Google Maps kaart, full-width busframe en lichte spoedfade */
.contact-section--visual {
  padding: clamp(68px, 7vw, 104px) 0;
}

.contact-stage {
  position: relative;
  display: block;
  min-height: clamp(430px, 47vw, 610px);
  overflow: hidden;
  border-radius: clamp(24px, 2.4vw, 34px);
  background: #111315;
  box-shadow: 0 30px 90px rgba(0,0,0,.18);
}

.contact-stage__bus {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.contact-stage__bus img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.003);
}

.contact-stage:hover .contact-stage__bus img {
  transform: scale(1.012);
}

.contact-stage__bus-shade {
  background:
    linear-gradient(90deg, rgba(5,6,7,.63) 0%, rgba(5,6,7,.24) 42%, rgba(5,6,7,.05) 72%, rgba(5,6,7,.12) 100%),
    linear-gradient(180deg, rgba(7,8,9,.04) 44%, rgba(7,8,9,.38) 100%);
}

.contact-panel {
  top: 50%;
  left: clamp(28px, 4vw, 56px);
  width: min(450px, calc(100% - 56px));
  transform: translateY(-50%);
}

.contact-panel h2 {
  font-size: clamp(1.95rem, 3.1vw, 3.1rem);
}

.contact-stage__bus-label {
  display: none !important;
}

.contact-map-card {
  position: relative;
  height: clamp(285px, 29vw, 380px);
  margin-top: clamp(22px, 2.7vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(21,23,25,.10);
  border-radius: clamp(22px, 2vw, 30px);
  background: #e9e7e2;
  box-shadow: 0 24px 70px rgba(21,23,25,.12);
}

.contact-map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  filter: saturate(.82) contrast(.96);
}

.contact-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,11,12,.06), transparent 30%),
    linear-gradient(90deg, rgba(10,11,12,.08), transparent 28%);
}

.contact-map-card .contact-stage__route {
  z-index: 3;
  top: auto;
  right: clamp(18px, 2.3vw, 28px);
  bottom: clamp(18px, 2.3vw, 28px);
}

/* De spoedfoto lost onderaan zacht op in de lichte dienstensectie. */
.emergency-showcase::after {
  height: clamp(150px, 19vw, 260px);
  background: linear-gradient(
    to bottom,
    rgba(247,244,239,0) 0%,
    rgba(247,244,239,.06) 30%,
    rgba(247,244,239,.34) 67%,
    #f7f4ef 100%
  );
}

@media (max-width: 900px) {
  .contact-stage {
    min-height: 610px;
  }

  .contact-panel {
    top: 32px;
    left: 32px;
    transform: none;
  }
}

@media (max-width: 640px) {
  .contact-stage {
    min-height: 700px;
  }

  .contact-stage__bus img {
    object-position: 58% center;
  }

  .contact-panel {
    position: relative;
    top: auto;
    left: auto;
    margin: 18px;
    width: auto;
    transform: none;
  }

  .contact-map-card {
    height: 305px;
    margin-top: 18px;
  }
}

/* v25 - full-bleed contact, echte lichte spoedfade en premium navigatie */

/* Desktopnavigatie: compact glasframe, zonder zware menubalk. */
.site-header {
  padding-inline: max(24px, calc((100vw - var(--container)) / 2));
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 13px max(14px, calc((100vw - var(--container)) / 2 - 14px));
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 16px 48px rgba(0,0,0,0);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, inset .28s ease;
}

.site-header.is-scrolled {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled::before {
  inset-block: 8px;
  background: rgba(10,11,12,.78);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 18px 54px rgba(0,0,0,.24);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
}

.site-nav {
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
}

.site-nav > a:not(.nav-cta) {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  transition: color .2s ease, background .2s ease;
}

.site-nav > a:not(.nav-cta)::after {
  display: none;
}

.site-nav > a:not(.nav-cta):hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  color: #07120b;
  background: #56d47d;
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 10px 28px rgba(35,174,91,.20);
}

.nav-cta:hover {
  color: #07120b;
  background: #72e493;
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
}

.menu-toggle {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(12,13,14,.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Spoedservice: zichtbare, zachte lichte uitloop onder de afbeelding. */
.emergency-showcase {
  position: relative;
  isolation: isolate;
  background: #f7f4ef !important;
}

.emergency-showcase__media {
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 11%,
    #000 72%,
    rgba(0,0,0,.88) 79%,
    rgba(0,0,0,.48) 89%,
    transparent 100%
  ) !important;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 11%,
    #000 72%,
    rgba(0,0,0,.88) 79%,
    rgba(0,0,0,.48) 89%,
    transparent 100%
  ) !important;
}

.emergency-showcase::after {
  display: block !important;
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: clamp(180px, 23vw, 330px);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(247,244,239,0) 0%,
    rgba(247,244,239,.04) 18%,
    rgba(247,244,239,.20) 42%,
    rgba(247,244,239,.62) 75%,
    #f7f4ef 100%
  ) !important;
}

.emergency-showcase__content {
  z-index: 4;
}

/* Contact: bus en kaart als twee zelfstandige full-bleed frames. */
.contact-section--visual {
  overflow: hidden;
  padding: clamp(70px, 7vw, 112px) 0 clamp(76px, 8vw, 124px);
  background: #0b0c0d;
}

.contact-section--visual > .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.contact-stage {
  width: 100%;
  min-height: clamp(500px, 55vw, 760px);
  border-radius: 0;
  box-shadow: none;
}

.contact-stage__bus img {
  object-position: center 55%;
}

.contact-panel {
  left: max(24px, calc((100vw - var(--container)) / 2));
  width: min(460px, calc(100vw - 48px));
}

.contact-map-card {
  width: 100%;
  height: clamp(340px, 36vw, 500px);
  margin-top: clamp(26px, 3vw, 44px);
  border: 0;
  border-radius: 0;
  background: #08090a;
  box-shadow: none;
}

.contact-map-card iframe {
  filter: grayscale(1) invert(.92) contrast(1.10) brightness(.72) saturate(.30);
  transform: scale(1.01);
}

.contact-map-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,7,8,.34), transparent 24%, transparent 75%, rgba(6,7,8,.35)),
    linear-gradient(90deg, rgba(6,7,8,.22), transparent 18%, transparent 82%, rgba(6,7,8,.22));
}

.contact-map-card::after {
  z-index: 2;
  background: linear-gradient(180deg, rgba(8,9,10,.15), transparent 30%);
}

.contact-map-card .contact-stage__route {
  z-index: 4;
  right: max(22px, calc((100vw - var(--container)) / 2));
  bottom: clamp(22px, 3vw, 36px);
  min-height: 54px;
  padding: 0 24px;
  color: #0c0d0e;
  background: #f7f4ef;
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}

.contact-map-card .contact-stage__route:hover {
  background: #fff;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .site-header::before {
    inset-inline: 10px;
  }

  .site-nav {
    inset: 10px;
    padding: 112px 24px 34px;
    justify-content: flex-start;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 26px;
    background:
      radial-gradient(circle at 82% 14%, rgba(86,212,125,.11), transparent 28%),
      rgba(9,10,11,.96);
    box-shadow: 0 30px 90px rgba(0,0,0,.42);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transform: translateY(-18px) scale(.985);
  }

  .site-nav.is-open {
    transform: translateY(0) scale(1);
  }

  .site-nav > a:not(.nav-cta),
  .site-nav .nav-cta {
    width: 100%;
    justify-content: flex-start;
    padding: 15px 18px;
    border-radius: 14px;
    font-size: clamp(1.45rem, 6vw, 2.25rem);
  }

  .site-nav > a:not(.nav-cta) {
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .site-nav .nav-cta {
    margin-top: 14px;
    justify-content: center;
    color: #07120b;
    font-size: 1rem;
  }

  .contact-stage {
    min-height: 650px;
  }

  .contact-panel {
    left: 32px;
  }
}

@media (max-width: 640px) {
  .site-header::before {
    inset: 7px 8px;
    border-radius: 18px;
  }

  .brand__name {
    font-size: 1.08rem;
  }

  .brand__descriptor {
    font-size: .58rem;
  }

  .contact-stage {
    min-height: 720px;
  }

  .contact-stage__bus img {
    object-position: 62% center;
  }

  .contact-panel {
    left: auto;
    width: auto;
    margin: 18px;
  }

  .contact-map-card {
    height: 340px;
  }

  .contact-map-card .contact-stage__route {
    right: 18px;
    bottom: 18px;
    min-height: 50px;
    padding-inline: 20px;
  }

  .emergency-showcase::after {
    height: 220px;
  }
}

/* v26 - compactere full-width busfoto met zachte fades en reviewnamen */
.contact-section--visual {
  padding-top: clamp(58px, 5.5vw, 88px);
}

.contact-stage {
  min-height: clamp(390px, 38vw, 530px);
  overflow: hidden;
  background: #0b0c0d;
}

.contact-stage__bus {
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,.56) 7%,
    #000 17%,
    #000 83%,
    rgba(0,0,0,.58) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0,0,0,.56) 7%,
    #000 17%,
    #000 83%,
    rgba(0,0,0,.58) 94%,
    transparent 100%
  );
}

.contact-stage__bus img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  transform: scale(1.015);
}

.contact-stage__bus-shade {
  background:
    linear-gradient(90deg, rgba(5,6,7,.78) 0%, rgba(5,6,7,.42) 37%, rgba(5,6,7,.10) 67%, rgba(5,6,7,.20) 100%),
    linear-gradient(180deg, rgba(8,9,10,.30), transparent 24%, transparent 72%, rgba(8,9,10,.34));
}

.contact-panel {
  top: 50%;
  width: min(430px, calc(100vw - 48px));
  padding: clamp(24px, 2.5vw, 32px);
  border-radius: 24px;
  transform: translateY(-50%);
}

.contact-panel h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
}

.contact-panel__lead {
  margin-top: 12px;
  line-height: 1.55;
}

.contact-panel__address {
  margin-top: 20px;
}

.contact-panel__actions {
  margin-top: 22px;
}

.contact-map-card {
  margin-top: clamp(18px, 2vw, 28px);
  height: clamp(300px, 30vw, 420px);
}

.review-card footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.review-card footer > strong {
  color: #171817;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

.review-card footer > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(23,24,23,.58);
  font-size: .75rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .contact-stage {
    min-height: 500px;
  }

  .contact-panel {
    left: 28px;
    width: min(410px, calc(100vw - 56px));
  }
}

@media (max-width: 640px) {
  .contact-stage {
    min-height: 570px;
  }

  .contact-stage__bus {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 11%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 11%, #000 88%, transparent 100%);
  }

  .contact-stage__bus img {
    object-position: 64% center;
  }

  .contact-panel {
    top: auto;
    bottom: 26px;
    left: 18px;
    right: 18px;
    width: auto;
    margin: 0;
    transform: none;
  }

  .review-card footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .contact-map-card {
    height: 320px;
  }
}


/* v27 - titel en header zonder scrollframe */
.site-header::before {
  content: none !important;
  display: none !important;
}

.site-header.is-scrolled {
  background: rgba(10, 11, 12, 0.82);
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

@media (max-width: 980px) {
  .site-header.is-scrolled {
    background: rgba(10, 11, 12, 0.9);
  }
}


/* Voor / na projecten */
.before-after-section {
  position: relative;
  padding: clamp(76px, 8vw, 118px) 0;
  overflow: hidden;
  color: #171819;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.86), transparent 32%),
    linear-gradient(180deg, #f4f1eb 0%, #eeeae3 100%);
}

.before-after-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image: linear-gradient(rgba(20, 21, 22, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 21, 22, .025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.before-after-section .container {
  position: relative;
  z-index: 1;
}

.before-after-section__header {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  column-gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.before-after-section__header .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 14px;
}

.before-after-section__header h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 600;
}

.before-after-section__header > p:last-child {
  margin: 0 0 4px;
  max-width: 590px;
  color: #66645f;
  font-size: .96rem;
  line-height: 1.75;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.before-after-card {
  overflow: hidden;
  border: 1px solid rgba(28, 29, 30, .09);
  border-radius: 24px;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 18px 48px rgba(35, 31, 25, .07);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.before-after-card:hover {
  transform: translateY(-4px);
  border-color: rgba(28, 29, 30, .14);
  box-shadow: 0 26px 70px rgba(35, 31, 25, .11);
}

.compare {
  --position: 50%;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  isolation: isolate;
  background: #d8d5cf;
  cursor: ew-resize;
}

.compare__media,
.compare__image,
.compare__after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compare__image {
  max-width: none;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.compare__after {
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
  will-change: clip-path;
}

.compare::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 9, 10, .12), transparent 24%, transparent 70%, rgba(8, 9, 10, .12));
}

.compare__label {
  position: absolute;
  z-index: 5;
  top: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  background: rgba(8, 9, 10, .44);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.compare__label--before { left: 16px; }
.compare__label--after { right: 16px; }

.compare__divider {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 0 18px rgba(0, 0, 0, .18);
  pointer-events: none;
}

.compare__divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  background: rgba(14, 15, 16, .72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.compare__divider i {
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
}

.compare__divider i:first-child { transform: rotate(-45deg); margin-left: 4px; }
.compare__divider i:last-child { transform: rotate(135deg); margin-right: 4px; }

.compare__range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare__range:focus-visible + * { outline: none; }

.before-after-card__body {
  min-height: 148px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 22px 22px 24px;
}

.before-after-card__index {
  display: block;
  margin-bottom: 8px;
  color: #8b8983;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.before-after-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.before-after-card__body p {
  margin: 1px 0 0;
  color: #74716b;
  font-size: .77rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .before-after-section__header {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .before-after-grid { grid-template-columns: 1fr; }
  .before-after-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  }
  .compare { aspect-ratio: 16 / 10; }
  .before-after-card__body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
  }
}

@media (max-width: 680px) {
  .before-after-section { padding: 66px 0; }
  .before-after-section__header { margin-bottom: 28px; }
  .before-after-card { display: block; border-radius: 20px; }
  .before-after-card__body {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
  .compare { aspect-ratio: 1 / .78; }
  .compare__divider span { width: 40px; height: 40px; }
}

/* v31 - inhoudelijke prioriteiten en uitlijning */
#intro,
#diensten,
#dakwerk,
#voor-na,
#reviews,
#contact {
  scroll-margin-top: 96px;
}

.contact-panel__actions {
  grid-template-columns: minmax(0, 1fr) !important;
}

.craft-section__grid {
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.craft-section h2 {
  max-width: 680px;
  font-size: clamp(2.5rem, 4.7vw, 4.9rem);
  line-height: 1.02;
}

.craft-section__copy {
  padding-top: 0;
}

.service-item--featured {
  border-color: rgba(29, 151, 83, .32) !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(42, 209, 112, .15), transparent 34%),
    linear-gradient(145deg, #fff, #eef8f1) !important;
  box-shadow: 0 20px 46px rgba(31, 116, 69, .12), inset 0 1px 0 #fff !important;
}

.service-item--featured .service-item__copy small {
  color: #138247 !important;
}

.service-item--featured .service-item__icon {
  border-color: rgba(35, 154, 86, .24) !important;
  background: linear-gradient(145deg, #f8fffa, #dff3e6) !important;
}

.roof-highlight {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(42, 209, 112, .11), transparent 30rem),
    linear-gradient(135deg, #f0eee8 0%, #fbfaf7 100%);
}

.roof-highlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.roof-highlight__media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 32px 80px rgba(31, 34, 31, .16);
}

.roof-highlight__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.roof-highlight__content h2 {
  max-width: 650px;
  margin: 16px 0 24px;
  color: #171918;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.roof-highlight__content > p:not(.section-kicker) {
  max-width: 600px;
  margin: 0;
  color: #5f615e;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.8;
}

.roof-highlight__content ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.roof-highlight__content li {
  position: relative;
  padding-left: 27px;
  color: #353835;
  font-size: .92rem;
  font-weight: 700;
}

.roof-highlight__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 10px;
  height: 10px;
  border: 2px solid #199456;
  border-radius: 50%;
}

.roof-highlight__content > a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 22px;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: #169653;
  box-shadow: 0 14px 30px rgba(22, 150, 83, .22);
  font-size: .88rem;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease;
}

.roof-highlight__content > a:hover,
.roof-highlight__content > a:focus-visible {
  transform: translateY(-2px);
  background: #117c44;
}

.site-footer__inner {
  min-height: 0;
  grid-template-columns: minmax(220px, 1.15fr) minmax(190px, .85fr) minmax(200px, .9fr) auto;
  align-items: start;
  gap: clamp(30px, 5vw, 72px);
  padding-top: 4.5rem;
  padding-bottom: 2.4rem;
}

.site-footer__brand p {
  max-width: 290px;
  margin: 1.35rem 0 0;
  color: rgba(255,255,255,.62);
  font-size: .88rem;
  line-height: 1.7;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .72rem;
}

.site-footer__column h2 {
  margin: 0 0 .4rem;
  color: #fff;
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-footer__column a,
.site-footer__column address,
.site-footer__column p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  font-style: normal;
  line-height: 1.65;
}

.site-footer__column a {
  text-decoration: none;
  transition: color .22s ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: #48dc86;
}

.site-footer__top {
  align-self: start;
}

.site-footer__meta {
  grid-column: 1 / -1;
  width: 100%;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255,255,255,.09);
}

@media (max-width: 980px) {
  .craft-section__grid,
  .roof-highlight__grid {
    grid-template-columns: 1fr;
  }

  .roof-highlight__media,
  .roof-highlight__media img {
    min-height: 440px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr auto;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__meta {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .craft-section h2,
  .roof-highlight__content h2 {
    font-size: clamp(2.25rem, 11vw, 3.55rem);
  }

  .roof-highlight {
    padding: 68px 0;
  }

  .roof-highlight__grid {
    gap: 38px;
  }

  .roof-highlight__media,
  .roof-highlight__media img {
    min-height: 330px;
    border-radius: 22px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer__brand,
  .site-footer__meta {
    grid-column: auto;
  }

  .site-footer__meta {
    grid-row: auto;
  }
}

/* v32 - stabiele hero op desktop, tablet en mobiel */
.whatsapp-sticky {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 1200;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #4ae078, #15aa4c);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34), 0 0 26px rgba(37, 211, 102, .2);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.whatsapp-sticky svg {
  width: 58%;
  height: 58%;
  fill: currentColor;
}

.whatsapp-sticky:hover,
.whatsapp-sticky:focus-visible {
  transform: translateY(-4px) scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .38), 0 0 32px rgba(37, 211, 102, .3);
}

.whatsapp-sticky:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .95);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .hero {
    min-height: 100svh;
    height: auto;
  }

  .hero__content {
    min-height: 100svh;
    height: auto;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start;
    gap: 48px;
    padding-top: 150px;
    padding-bottom: 112px;
  }

  .hero__copy,
  .contact-card {
    grid-column: 1;
    position: relative;
    width: 100%;
    margin-right: 0;
  }

  .hero__copy {
    max-width: 760px;
  }

  .contact-card {
    max-width: 520px;
    margin-left: auto;
  }

  .whatsapp-sticky {
    right: max(20px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 640px) {
  .hero__content {
    gap: 38px;
    padding-top: 132px;
    padding-bottom: 96px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 10.25vw, 3.25rem);
    letter-spacing: -.055em;
  }

  .hero__copy,
  .contact-card {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-card {
    padding: 24px;
    border-radius: 22px;
  }

  .contact-card__intro {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 15px;
  }

  .contact-card__icon {
    width: 58px;
    height: 58px;
  }

  .contact-card h2 {
    font-size: 1.65rem;
  }

  .contact-card__benefits {
    gap: 13px;
    margin-top: 22px;
    padding: 21px 0;
  }

  .contact-card__link {
    min-height: 56px;
    margin-top: 22px;
  }

  .whatsapp-sticky {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 62px;
    height: 62px;
  }
}

/* v33 - volledige diensten, service-CTA's en contactmail */
.contact-card__intro {
  grid-template-columns: minmax(0, 1fr);
}

.service-item__panel p {
  margin-bottom: 14px !important;
}

.service-item__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
  margin: 0 24px 24px 96px;
  padding: 0 17px;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #168f49, #24c96a);
  box-shadow: 0 10px 24px rgba(22, 143, 73, .18);
  font-size: .78rem;
  font-weight: 800;
  transition: transform .22s ease, filter .22s ease;
}

.service-item__cta:hover,
.service-item__cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.service-item__cta:focus-visible {
  outline: 3px solid rgba(22, 143, 73, .32);
  outline-offset: 3px;
}

.contact-panel__email {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  color: #72e493;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(114, 228, 147, .35);
  transition: color .22s ease, border-color .22s ease;
}

.contact-panel__email:hover,
.contact-panel__email:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,.72);
}

@media (max-width: 600px) {
  .service-item__panel p {
    margin-bottom: 12px !important;
  }

  .service-item__cta {
    width: calc(100% - 36px);
    margin: 0 18px 20px;
    font-size: .75rem;
  }
}
