:root {
      --green-900: #1a3a28;
      --green-800: #234a32;
      --green-700: #2d5a3d;
      --green-600: #3d6b4a;
      --green-500: #4a7c59;
      --green-400: #6b9a78;
      --green-100: #e8f0ea;
      --green-50: #f4f8f5;
      --cream: #faf9f6;
      --white: #ffffff;
      --ink: #1c241e;
      --ink-2: #3d4a40;
      --muted: #6b7a6f;
      --line: #dce5de;
      --sand: #f0ebe3;
      --accent: #c4a574;
      --shadow: 0 12px 40px rgba(26, 58, 40, 0.08);
      --shadow-sm: 0 4px 16px rgba(26, 58, 40, 0.06);
      --radius: 16px;
      --radius-sm: 10px;
      --max: 1120px;
      --font: "DM Sans", system-ui, -apple-system, sans-serif;
      --display: "Fraunces", Georgia, serif;
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }
    body {
      font-family: var(--font);
      color: var(--ink);
      background: var(--cream);
      line-height: 1.65;
      font-size: 1rem;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      max-width: 100%;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    .skip-link {
      position: absolute;
      left: 1rem;
      top: -4rem;
      z-index: 500;
      background: var(--green-800);
      color: #fff;
      padding: 0.65rem 1rem;
      border-radius: 8px;
      font-weight: 700;
    }
    .skip-link:focus {
      top: max(0.75rem, env(safe-area-inset-top));
      outline: 3px solid var(--green-400);
      outline-offset: 2px;
    }
    a:focus-visible,
    button:focus-visible,
    .btn:focus-visible,
    .channel:focus-visible,
    .nav-drop-btn:focus-visible,
    .js-zoom:focus-visible,
    .service-card:focus-visible {
      outline: 3px solid var(--green-500);
      outline-offset: 2px;
    }
    ul { list-style: none; }
    button, input, select, textarea { font: inherit; }
    /* Voorkomt iOS-zoom bij focus op inputs */
    input, select, textarea { font-size: 16px; }

    .container {
      width: min(100% - 2.5rem, var(--max));
      margin-inline: auto;
    }

    /* —— Header —— */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(250, 249, 246, 0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, box-shadow 0.3s;
      padding-top: env(safe-area-inset-top, 0px);
    }
    .header.scrolled {
      border-color: var(--line);
      box-shadow: 0 2px 20px rgba(26, 58, 40, 0.04);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.7rem 0;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      min-width: 0;
    }
    .logo img {
      width: auto;
      height: 58px;
      max-width: min(220px, 52vw);
      object-fit: contain;
      border-radius: 0;
      background: transparent;
    }
    .header .logo img {
      height: 64px;
      max-width: min(240px, 54vw);
    }
    .logo-text {
      display: none;
    }
    .logo-text strong {
      font-family: var(--display);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--green-700);
      letter-spacing: 0.01em;
    }
    .logo-text span {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 1.75rem;
    }
    .nav a {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--ink-2);
      transition: color 0.2s;
    }
    .nav a:hover { color: var(--green-700); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.85rem 1.4rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn:active { transform: translateY(0); }
    .btn-primary {
      background: var(--green-700);
      color: var(--white);
      box-shadow: 0 4px 16px rgba(45, 90, 61, 0.28);
    }
    .btn-primary:hover {
      background: var(--green-800);
      box-shadow: 0 8px 24px rgba(45, 90, 61, 0.32);
    }
    /* Offerte-CTA — rustig, geen pulserende animatie */
    .btn-cta {
      background: var(--green-700);
      color: #fff !important;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.01em;
      padding: 0.9rem 1.4rem;
      box-shadow: 0 4px 16px rgba(45, 90, 61, 0.25);
      border: none;
      white-space: nowrap;
    }
    .btn-cta:hover {
      background: var(--green-800);
      box-shadow: 0 6px 20px rgba(45, 90, 61, 0.3);
      transform: translateY(-1px);
      color: #fff !important;
    }
    .nav .btn-cta {
      margin-left: 0.35rem;
      padding: 0.7rem 1.15rem;
      font-size: 0.9rem;
    }
    .hero-actions .btn-cta {
      font-size: 1rem;
      padding: 0.95rem 1.5rem;
      min-height: 48px;
    }
    /* Vaste knop op mobiel — altijd in beeld */
    .cta-float {
      display: none;
      position: fixed;
      left: max(1rem, env(safe-area-inset-left));
      right: max(1rem, env(safe-area-inset-right));
      bottom: max(1rem, env(safe-area-inset-bottom));
      z-index: 150;
      padding: 1rem 1.25rem;
      min-height: 52px;
      font-size: 1.05rem;
      font-weight: 800;
      text-align: center;
      border-radius: 999px;
      box-shadow: 0 10px 32px rgba(26, 58, 40, 0.35);
      transition: opacity 0.2s, visibility 0.2s;
    }
    .cta-float.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .btn-secondary {
      background: var(--white);
      color: var(--green-700);
      border: 1.5px solid var(--green-500);
    }
    .btn-secondary:hover { background: var(--green-50); }
    .btn-light {
      background: var(--white);
      color: var(--green-800);
      box-shadow: var(--shadow-sm);
    }
    .btn-light:hover { box-shadow: var(--shadow); }
    .btn-whatsapp {
      background: #25d366;
      color: #fff;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    }
    .btn-whatsapp:hover { background: #1ebe57; }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--white);
      cursor: pointer;
      place-items: center;
      flex-direction: column;
      gap: 5px;
    }
    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background: var(--green-700);
      border-radius: 2px;
      transition: 0.25s;
    }

    /* —— Hero —— */
    .hero {
      position: relative;
      padding: 3.25rem 0 3.5rem;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, var(--green-50) 0%, var(--cream) 100%);
      z-index: -1;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 2.5rem 3rem;
      align-items: center;
    }
    .hero--compact .hero-grid {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
    }
    .hero--compact .hero-logo {
      display: none;
    }
    .hero-brand {
      width: 100%;
      display: flex;
      justify-content: center;
      margin: 0 0 0.5rem;
    }
    .hero-brand img {
      width: min(38rem, 94%);
      height: auto;
      object-fit: contain;
    }
    .hero-copy {
      max-width: 40rem;
      min-width: 0;
      width: 100%;
    }
    .hero--compact .hero-copy {
      text-align: center;
    }
    .hero--compact .hero-lead,
    .hero--compact .hero-audience {
      margin-inline: auto;
    }
    .hero--compact .hero-pillars,
    .hero--compact .hero-actions {
      justify-content: center;
    }
    .hero-logo {
      flex-shrink: 0;
      width: min(220px, 28vw);
      aspect-ratio: 1;
      background: var(--white);
      border-radius: 24px;
      padding: 1.25rem;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
    }
    .hero-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green-600);
      margin-bottom: 1rem;
    }
    .hero h1 {
      font-family: var(--display);
      font-size: clamp(1.7rem, 4vw, 2.85rem);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--green-900);
      margin-bottom: 1rem;
      overflow-wrap: break-word;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--green-600);
    }
    .hero-h1-line {
      display: block;
    }
    .hero-lead {
      font-size: 1.08rem;
      color: var(--ink-2);
      max-width: 36rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
      overflow-wrap: break-word;
    }
    .hero-audience {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--green-800);
      max-width: 36rem;
      margin: -0.85rem 0 1rem;
      line-height: 1.45;
    }
    .hero-lead-break { display: none; }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }
    .hero-reassure {
      font-size: 0.9rem;
      color: var(--muted);
      margin: 0;
    }
    .hero-pillars {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin: 0 0 1.5rem;
      padding: 0;
      list-style: none;
    }
    .hero-pillars li {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--green-800);
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 0.4rem 0.9rem;
      flex-shrink: 0;
    }
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem 1.25rem;
      font-size: 0.88rem;
      color: var(--muted);
    }
    .trust-row span + span::before {
      content: "·";
      margin-right: 1.25rem;
      color: var(--line);
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--ink-2);
    }
    .trust-item svg {
      width: 20px;
      height: 20px;
      color: var(--green-600);
      flex-shrink: 0;
    }

    .hero-card {
      display: none;
      background: var(--white);
      border-radius: 24px;
      padding: 1.5rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
      position: relative;
    }
    .hero-card-logo {
      width: 100%;
      max-width: 340px;
      margin: 0 auto 1.25rem;
      border-radius: 16px;
      background: linear-gradient(145deg, #f8fbf9, #eef5f0);
      padding: 1.5rem;
    }
    .hero-card-logo img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
    }
    .stat {
      text-align: center;
      padding: 0.85rem 0.5rem;
      background: var(--green-50);
      border-radius: var(--radius-sm);
    }
    .stat strong {
      display: block;
      font-family: var(--display);
      font-size: 1.35rem;
      color: var(--green-700);
      line-height: 1.2;
    }
    .stat span {
      font-size: 0.75rem;
      color: var(--muted);
      font-weight: 500;
    }

    /* —— Realisaties (portfolio) —— */
    .realisaties {
      background: var(--white);
      padding: 4rem 0 4.5rem;
    }
    .realisaties .section-head {
      margin-bottom: 1.75rem;
      max-width: 32rem;
    }
    .realisaties-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
    }
    .realisatie-item {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: var(--sand);
      aspect-ratio: 3 / 4;
      cursor: pointer;
      border: none;
      padding: 0;
      width: 100%;
      text-align: left;
      font: inherit;
      color: inherit;
      display: block;
    }
    .realisatie-item:focus-visible {
      outline: 3px solid var(--green-500);
      outline-offset: 3px;
    }
    .realisatie-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s var(--ease);
    }
    .realisatie-item:hover img { transform: scale(1.03); }
    .realisatie-item .realisatie-cap {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 1.75rem 0.85rem 0.75rem;
      background: linear-gradient(transparent, rgba(26, 58, 40, 0.75));
      color: #fff;
      font-size: 0.82rem;
      font-weight: 600;
      line-height: 1.25;
      pointer-events: none;
      opacity: 0;
      transform: translateY(4px);
      transition: opacity 0.25s, transform 0.25s;
    }
    .realisatie-item:hover .realisatie-cap,
    .realisatie-item:focus-visible .realisatie-cap {
      opacity: 1;
      transform: translateY(0);
    }
    .realisaties-note {
      margin-top: 1.15rem;
      text-align: center;
      font-size: 0.88rem;
      color: var(--muted);
    }

    /* —— Feature video (badkamer-oplevering, tegelvloer, …) —— */
    .feature-video {
      background: var(--sand);
      padding: 3.5rem 0 4rem;
    }
    .feature-video--light {
      background: var(--cream);
    }
    .feature-video .section-head {
      margin-bottom: 1.5rem;
      max-width: 34rem;
    }
    .feature-video-player-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
    .feature-video-player {
      position: relative;
      width: min(100%, 420px);
      aspect-ratio: 9 / 16;
      border-radius: 16px;
      overflow: hidden;
      background: #1a1a1a;
      box-shadow: 0 12px 40px rgba(26, 58, 40, 0.18);
    }
    .feature-video-player video,
    .feature-video-player .feature-video-poster {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .feature-video-player video {
      z-index: 1;
      background: #000;
    }
    .feature-video-player:not(.is-playing) video {
      opacity: 0;
      pointer-events: none;
    }
    .feature-video-player.is-playing video {
      opacity: 1;
      pointer-events: auto;
    }
    .feature-video-player.is-playing .feature-video-poster,
    .feature-video-player.is-playing .feature-video-play {
      opacity: 0;
      pointer-events: none;
    }
    .feature-video-poster {
      z-index: 2;
      transition: opacity 0.25s var(--ease);
    }
    .feature-video-play {
      position: absolute;
      z-index: 3;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 4.5rem;
      height: 4.5rem;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.95);
      color: var(--green-800);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
      transition: transform 0.25s var(--ease), background 0.2s, box-shadow 0.25s;
      padding: 0;
    }
    .feature-video-play:hover,
    .feature-video-play:focus-visible {
      background: #fff;
      transform: translate(-50%, -50%) scale(1.06);
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
    }
    .feature-video-play:focus-visible {
      outline: 3px solid var(--green-500);
      outline-offset: 3px;
    }
    .feature-video-play svg {
      width: 1.65rem;
      height: 1.65rem;
      margin-left: 0.15rem; /* optical center play triangle */
    }
    .feature-video-duration {
      font-size: 0.88rem;
      color: var(--muted);
      font-weight: 500;
    }
    .feature-video-meta {
      text-align: center;
      max-width: 28rem;
    }
    .feature-video-meta p {
      margin: 0.35rem 0 0;
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .feature-video-player.is-error::after {
      content: "Video kon niet geladen worden";
      position: absolute;
      z-index: 4;
      left: 50%;
      bottom: 1rem;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.75);
      color: #fff;
      font-size: 0.8rem;
      padding: 0.4rem 0.75rem;
      border-radius: 8px;
      max-width: calc(100% - 1.5rem);
      text-align: center;
      white-space: normal;
    }
    @media (prefers-reduced-motion: reduce) {
      .feature-video-play,
      .feature-video-poster {
        transition: none;
      }
      .feature-video-play:hover,
      .feature-video-play:focus-visible {
        transform: translate(-50%, -50%);
      }
    }

    /* —— Lightbox —— */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 400;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
      background: rgba(12, 22, 16, 0.92);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s var(--ease), visibility 0.25s;
    }
    .lightbox.is-open {
      opacity: 1;
      visibility: visible;
    }
    .lightbox-inner {
      position: relative;
      max-width: min(960px, 100%);
      max-height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
    .lightbox-inner img {
      max-width: 100%;
      max-height: min(78vh, 900px);
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 10px;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
      background: #111;
    }
    .lightbox-meta {
      color: #fff;
      text-align: center;
      font-size: 0.95rem;
      font-weight: 600;
    }
    .lightbox-meta span {
      display: block;
      margin-top: 0.2rem;
      font-size: 0.8rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.7);
    }
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      border: none;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      cursor: pointer;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      min-width: 44px;
      min-height: 44px;
    }
    .lightbox-close:hover,
    .lightbox-prev:hover,
    .lightbox-next:hover {
      background: rgba(255, 255, 255, 0.22);
    }
    .lightbox-close:focus-visible,
    .lightbox-prev:focus-visible,
    .lightbox-next:focus-visible {
      outline: 2px solid #fff;
      outline-offset: 2px;
    }
    .lightbox-close {
      top: max(0.75rem, env(safe-area-inset-top));
      right: max(0.75rem, env(safe-area-inset-right));
      z-index: 2;
      width: 48px;
      height: 48px;
      font-size: 1.5rem;
      line-height: 1;
    }
    .lightbox-prev,
    .lightbox-next {
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      z-index: 2;
    }
    .lightbox-prev { left: max(0.5rem, env(safe-area-inset-left)); }
    .lightbox-next { right: max(0.5rem, env(safe-area-inset-right)); }
    body.lightbox-open { overflow: hidden; }

    /* —— Sections —— */
    section { padding: 4rem 0; }
    .section-head {
      max-width: 34rem;
      margin-bottom: 2rem;
    }
    .section-head.center {
      text-align: center;
      margin-inline: auto;
    }
    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green-500);
      margin-bottom: 0.5rem;
    }
    h2 {
      font-family: var(--display);
      font-size: clamp(1.75rem, 3vw, 2.35rem);
      font-weight: 600;
      line-height: 1.2;
      color: var(--green-900);
      letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
    }
    .section-head p {
      color: var(--ink-2);
      font-size: 1.05rem;
    }

    /* —— Services —— */
    .services { background: var(--cream); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    @media (min-width: 960px) {
      .services-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.6rem 1.4rem;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .service-card:hover {
      border-color: var(--green-400);
      box-shadow: var(--shadow-sm);
    }
    .service-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--green-100);
      color: var(--green-700);
      display: grid;
      place-items: center;
      margin-bottom: 1rem;
    }
    .service-icon svg { width: 22px; height: 22px; }
    .service-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--green-900);
      margin-bottom: 0.45rem;
    }
    .service-card p {
      color: var(--ink-2);
      font-size: 0.92rem;
      line-height: 1.55;
    }
    .service-card ul {
      margin-top: 0.85rem;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .service-card ul li {
      font-size: 0.85rem;
      color: var(--muted);
      padding-left: 1rem;
      position: relative;
    }
    .service-card ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--green-400);
    }

    /* —— Why —— */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    .why-visual {
      background: linear-gradient(160deg, var(--green-700), var(--green-900));
      border-radius: 24px;
      padding: 2.5rem;
      color: #e8f0ea;
      min-height: 380px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      position: relative;
      overflow: hidden;
    }
    .why-visual::before {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border: 40px solid rgba(255,255,255,0.06);
      border-radius: 50%;
      top: -60px;
      right: -40px;
    }
    .why-visual::after {
      content: "";
      position: absolute;
      width: 140px;
      height: 140px;
      background: rgba(255,255,255,0.04);
      border-radius: 50%;
      bottom: 40px;
      right: 50px;
    }
    .why-quote {
      position: relative;
      z-index: 1;
      font-family: var(--display);
      font-size: 1.45rem;
      font-weight: 500;
      line-height: 1.35;
      font-style: italic;
      margin-bottom: 1.25rem;
    }
    .why-author {
      position: relative;
      z-index: 1;
      font-size: 0.9rem;
      opacity: 0.85;
      font-weight: 500;
    }
    .why-list { display: flex; flex-direction: column; gap: 1.25rem; }
    .why-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 1rem;
      align-items: start;
    }
    .why-num {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--green-100);
      color: var(--green-700);
      font-weight: 700;
      font-size: 0.9rem;
      display: grid;
      place-items: center;
    }
    .why-item h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--green-900);
      margin-bottom: 0.25rem;
    }
    .why-item p {
      color: var(--ink-2);
      font-size: 0.95rem;
    }

    /* —— Process —— */
    .process { background: var(--green-50); }
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      counter-reset: step;
    }
    .step {
      background: var(--white);
      border-radius: var(--radius);
      padding: 1.5rem;
      border: 1px solid var(--line);
      position: relative;
    }
    .step::before {
      counter-increment: step;
      content: "0" counter(step);
      font-family: var(--display);
      font-size: 2rem;
      font-weight: 600;
      color: var(--green-100);
      display: block;
      line-height: 1;
      margin-bottom: 1rem;
    }
    .step h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--green-900);
      margin-bottom: 0.4rem;
    }
    .step p {
      font-size: 0.92rem;
      color: var(--ink-2);
    }

    /* —— Area —— */
    .area-box {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 2rem;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .area-content { padding: 2.5rem; }
    .area-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }
    .area-tags span {
      background: var(--green-50);
      border: 1px solid var(--line);
      color: var(--green-800);
      font-size: 0.85rem;
      font-weight: 500;
      padding: 0.4rem 0.85rem;
      border-radius: 999px;
    }
    .area-side {
      background: linear-gradient(180deg, var(--green-600), var(--green-800));
      color: #fff;
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1.25rem;
    }
    .area-side h3 {
      font-family: var(--display);
      font-size: 1.4rem;
      font-weight: 600;
    }
    .area-side p { opacity: 0.9; font-size: 0.95rem; }
    .area-side .btn { align-self: flex-start; }

    /* —— CTA band —— */
    .cta-band {
      padding: 0 0 4.5rem;
    }
    .cta-inner {
      background: linear-gradient(135deg, var(--green-800), var(--green-700) 50%, var(--green-600));
      border-radius: 28px;
      padding: 3rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .cta-inner::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      top: -120px;
      right: -60px;
    }
    .cta-inner h2 {
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .cta-inner p {
      opacity: 0.9;
      max-width: 32rem;
      position: relative;
    }
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      position: relative;
    }

    /* —— Contact —— */
    .contact { background: var(--white); padding-bottom: 5rem; }
    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 2.5rem;
      align-items: start;
    }
    .contact-info h2 { margin-bottom: 0.75rem; }
    .contact-info > p {
      color: var(--ink-2);
      margin-bottom: 1.75rem;
    }
    .contact-info > p.contact-area {
      color: var(--muted);
      font-size: 0.9rem;
      margin-top: -1rem;
      margin-bottom: 1.75rem;
    }
    .contact-channels {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      margin-bottom: 2rem;
    }
    .channel {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding: 1rem 1.1rem;
      background: var(--cream);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      transition: border-color 0.2s, background 0.2s;
    }
    .channel:hover {
      border-color: var(--green-400);
      background: var(--green-50);
    }
    .channel-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: var(--white);
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      color: var(--green-700);
      flex-shrink: 0;
    }
    .channel-icon svg { width: 20px; height: 20px; }
    .channel strong {
      display: block;
      font-size: 0.92rem;
      color: var(--green-900);
    }
    .channel span {
      font-size: 0.85rem;
      color: var(--muted);
    }

    /* —— Contactgegevens —— */
    .gegevens {
      background: var(--green-50);
      padding: 4rem 0 4.5rem;
    }
    .gegevens-card {
      max-width: 640px;
      margin: 0 auto;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 2rem 2.25rem;
      box-shadow: var(--shadow-sm);
    }
    .gegevens-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .gegevens-item {
      display: grid;
      grid-template-columns: 8.5rem 1fr;
      gap: 0.75rem 1.25rem;
      align-items: baseline;
      padding: 1rem 0;
      border-bottom: 1px solid var(--line);
    }
    .gegevens-item:last-child { border-bottom: none; padding-bottom: 0; }
    .gegevens-item:first-child { padding-top: 0; }
    .gegevens-item dt {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .gegevens-item dd {
      margin: 0;
      font-size: 1.02rem;
      font-weight: 600;
      color: var(--green-900);
      word-break: break-word;
      overflow-wrap: anywhere;
    }
    .gegevens-item dd a {
      color: var(--green-700);
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-thickness: 1px;
    }
    .gegevens-item dd a:hover { color: var(--green-800); }
    .gegevens-item dd.is-placeholder,
    .gegevens-item dd.is-pending {
      font-weight: 500;
      font-style: italic;
      color: var(--muted);
    }
    .gegevens-item[hidden] { display: none; }
    .gegevens-note {
      margin-top: 1.25rem;
      font-size: 0.85rem;
      color: var(--muted);
      text-align: center;
    }

    .form-card {
      background: var(--cream);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 2rem;
      box-shadow: var(--shadow-sm);
    }
    .form-card h3 {
      font-family: var(--display);
      font-size: 1.35rem;
      color: var(--green-900);
      margin-bottom: 0.35rem;
    }
    .form-card > p,
    #formWrapper > p {
      color: var(--muted);
      font-size: 0.92rem;
      margin-bottom: 1.5rem;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .field {
      margin-bottom: 1rem;
    }
    .field label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--ink-2);
      margin-bottom: 0.4rem;
    }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 1.5px solid var(--line);
      border-radius: 12px;
      background: var(--white);
      color: var(--ink);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--green-500);
      box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.15);
    }
    .field textarea { min-height: 120px; resize: vertical; }
    .form-note {
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: 0.45rem;
      text-align: center;
    }
    .form-reassure {
      margin-top: 0.75rem;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--green-800);
      text-align: center;
      padding-inline: 0.35rem;
      overflow-wrap: anywhere;
    }
    .form-error {
      color: #b42318;
      font-weight: 600;
    }
    .form-error[hidden] { display: none; }
    .form-hp {
      position: absolute;
      left: -9999px;
      height: 0;
      overflow: hidden;
    }
    .btn-block { width: 100%; }
    .process-note {
      margin-top: 1.25rem;
      text-align: center;
      font-size: 0.92rem;
      color: var(--muted);
      padding-inline: 0.5rem;
      overflow-wrap: anywhere;
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 2rem 1rem;
    }
    .form-success.show { display: block; }
    .form-success svg {
      width: 56px;
      height: 56px;
      color: var(--green-600);
      margin: 0 auto 1rem;
    }
    .form-success h3 {
      font-family: var(--display);
      color: var(--green-900);
      margin-bottom: 0.5rem;
    }
    .form-success p { color: var(--ink-2); }

    /* —— Footer —— */
    .footer {
      background: var(--green-900);
      color: rgba(255,255,255,0.75);
      padding: 2.5rem 0 1.75rem;
    }
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      padding-bottom: 1.75rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 1.25rem;
    }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .footer-brand img {
      width: auto;
      height: 72px;
      max-width: 200px;
      object-fit: contain;
      background: #fff;
      border-radius: 12px;
      padding: 6px 10px;
    }
    .footer-brand strong {
      display: none;
    }
    .footer-brand span {
      font-size: 0.8rem;
      opacity: 0.7;
    }
    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem;
    }
    .footer-nav a {
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .footer-nav a:hover { color: #fff; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.75rem;
      font-size: 0.82rem;
    }
    .footer-address {
      flex-basis: 100%;
      font-size: 0.8rem;
      opacity: 0.85;
    }
    .footer-bottom a[href="/privacy/"],
    .footer-nav a[href="/privacy/"] {
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* —— Tablet (iPad) —— */
    @media (max-width: 1024px) {
      .container {
        width: min(100% - 2rem, var(--max));
      }
      .nav {
        gap: 1rem;
      }
      .nav a:not(.btn) {
        font-size: 0.88rem;
      }
      .hero {
        padding: 2.75rem 0 3.25rem;
      }
      .hero h1 {
        font-size: clamp(1.9rem, 4.2vw, 2.75rem);
      }
      .hero-lead {
        font-size: 1.05rem;
        line-height: 1.65;
      }
      .hero-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
      }
      .hero-logo {
        width: min(180px, 26vw);
      }
      section {
        padding: 3.5rem 0;
      }
      .realisaties { padding: 3.25rem 0 3.75rem; }
      .realisaties-grid { grid-template-columns: repeat(3, 1fr); }
      .services-grid {
        grid-template-columns: 1fr;
        max-width: 28rem;
        margin-inline: auto;
      }
      @media (min-width: 720px) {
        .services-grid {
          grid-template-columns: repeat(2, 1fr);
          max-width: none;
        }
      }
      .steps {
        grid-template-columns: repeat(2, 1fr);
      }
      .why-quote {
        font-size: 1.3rem;
      }
      .form-card {
        padding: 1.6rem;
      }
    }

    /* —— Tablet portrait / small iPad + large phone landscape —— */
    @media (max-width: 900px) {
      body {
        font-size: 1.05rem;
        line-height: 1.7;
      }
      .container {
        width: min(100% - 1.75rem, var(--max));
      }
      .hero-pillars { flex-wrap: wrap; }
      .hero-grid,
      .why-grid,
      .contact-grid,
      .area-box {
        grid-template-columns: 1fr;
      }
      .hero-grid {
        gap: 1.5rem;
        justify-items: start;
        grid-template-columns: 1fr;
      }
      .hero-logo {
        display: none;
      }
      .why-grid { gap: 2rem; }
      .contact-grid { gap: 2rem; }
      .gegevens-card { padding: 1.6rem 1.35rem; }
      .gegevens-item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        padding: 0.9rem 0;
      }
      .services-grid { grid-template-columns: 1fr; gap: 0.85rem; }
      .steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .realisaties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
      }
      .realisatie-item .realisatie-cap {
        opacity: 1;
        transform: none;
        font-size: 0.8rem;
        padding: 1.5rem 0.65rem 0.65rem;
      }
      .nav {
        position: fixed;
        top: calc(68px + env(safe-area-inset-top, 0px));
        left: 1rem;
        right: 1rem;
        bottom: auto;
        max-height: min(70vh, 480px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        gap: 0.15rem;
        display: none;
        z-index: 120;
      }
      .nav.open { display: flex; }
      .nav a {
        padding: 0.9rem 1rem;
        min-height: 48px;
        border-radius: 12px;
        font-size: 1.05rem;
        font-weight: 600;
        display: flex;
        align-items: center;
      }
      .nav a:hover,
      .nav a:active { background: var(--green-50); }
      .nav .btn,
      .nav .btn-cta {
        margin-top: 0.5rem;
        text-align: center;
        justify-content: center;
        width: 100%;
        min-height: 52px;
        font-size: 1.05rem;
      }
      .menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
      }
      .logo img {
        width: auto;
        height: 48px;
        max-width: min(168px, 48vw);
      }
      .hero {
        padding: 2rem 0 2.75rem;
      }
      .hero h1 {
        font-size: clamp(1.55rem, 6.2vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 1rem;
      }
      .hero-lead {
        font-size: 1.08rem;
        line-height: 1.7;
        max-width: none;
      }
      .hero-actions {
        gap: 0.85rem;
      }
      .hero-actions .btn {
        min-height: 52px;
      }
      .trust-row {
        gap: 0.85rem 1.25rem;
      }
      .trust-item {
        font-size: 0.98rem;
      }
      .section-head {
        margin-bottom: 1.75rem;
        max-width: none;
      }
      .section-head p {
        font-size: 1.05rem;
        line-height: 1.7;
      }
      h2 {
        font-size: clamp(1.55rem, 5vw, 2.1rem);
        line-height: 1.25;
      }
      .service-card {
        padding: 1.35rem 1.2rem;
      }
      .service-card h3 {
        font-size: 1.1rem;
      }
      .service-card p {
        font-size: 1rem;
        line-height: 1.65;
      }
      .why-visual {
        min-height: 280px;
        padding: 2rem 1.5rem;
      }
      .why-quote {
        font-size: 1.25rem;
        line-height: 1.45;
      }
      .why-item h3 {
        font-size: 1.08rem;
      }
      .why-item p {
        font-size: 1rem;
        line-height: 1.65;
      }
      .step {
        padding: 1.25rem;
      }
      .step h3 {
        font-size: 1.08rem;
      }
      .step p {
        font-size: 1rem;
        line-height: 1.6;
      }
      .area-content,
      .area-side {
        padding: 1.75rem 1.5rem;
      }
      .area-side h3 {
        font-size: 1.3rem;
      }
      .area-side p,
      .area-content p {
        font-size: 1.05rem;
        line-height: 1.7;
      }
      .cta-band {
        padding: 0 0 3rem;
      }
      .cta-inner {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        gap: 1.25rem;
      }
      .cta-inner h2 {
        font-size: 1.55rem;
      }
      .cta-inner p {
        font-size: 1.05rem;
        line-height: 1.65;
      }
      .form-row { grid-template-columns: 1fr; }
      .hero-stats { grid-template-columns: repeat(3, 1fr); }
      .area-side { order: -1; }
      .form-card {
        padding: 1.4rem 1.2rem;
        border-radius: 18px;
      }
      .form-card h3 {
        font-size: 1.3rem;
      }
      .field label {
        font-size: 0.95rem;
        margin-bottom: 0.45rem;
      }
      .field input,
      .field select,
      .field textarea {
        padding: 0.9rem 1rem;
        min-height: 48px;
        font-size: 16px;
        border-radius: 12px;
      }
      .field textarea {
        min-height: 140px;
      }
      .channel {
        padding: 1rem;
        min-height: 64px;
      }
      .channel strong {
        font-size: 1rem;
      }
      .channel span {
        font-size: 0.92rem;
      }
      .contact { padding-bottom: 4rem; }
      .footer {
        padding: 2rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px));
      }
      .footer-brand strong {
        font-size: 1rem;
      }
      .footer-nav a {
        font-size: 0.95rem;
        padding: 0.35rem 0;
      }
    }

    /* —— Telefoon —— */
    @media (max-width: 640px) {
      body {
        font-size: 1.06rem;
      }
      .container {
        width: min(100% - 2rem, var(--max));
      }
      .logo-text { display: none; }
      .logo img {
        width: auto;
        height: 44px;
        max-width: min(150px, 46vw);
      }
      .hero-grid {
        grid-template-columns: 1fr;
        justify-items: start;
      }
      .hero-logo {
        display: none;
      }
      .hero h1 {
        font-size: 1.42rem;
        letter-spacing: -0.03em;
        line-height: 1.22;
      }
      .hero-lead {
        font-size: 0.98rem;
        line-height: 1.55;
      }
      .hero-lead-break { display: inline; }
      .dienst-hero h1 {
        font-size: 1.42rem;
        letter-spacing: -0.03em;
        line-height: 1.22;
      }
      .dienst-hero-lead {
        font-size: 0.98rem;
        line-height: 1.55;
      }
      .services-grid {
        grid-template-columns: 1fr;
      }
      .steps {
        grid-template-columns: 1fr;
      }
      .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.55rem;
      }
      .stat {
        padding: 0.95rem 0.75rem;
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 0.65rem;
      }
      .stat strong {
        font-size: 1.2rem;
        min-width: 3ch;
      }
      .stat span {
        font-size: 0.92rem;
      }
      .realisaties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.55rem;
      }
      .realisatie-item .realisatie-cap {
        opacity: 1;
        transform: none;
        font-size: 0.75rem;
        padding: 1.4rem 0.55rem 0.55rem;
        font-weight: 600;
      }
      .realisaties-note {
        font-size: 0.88rem;
        text-align: center;
      }
      .hero-pillars {
        flex-wrap: wrap;
        gap: 0.4rem;
      }
      .hero-pillars li {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
      }
      .hero-audience {
        font-size: 0.88rem;
        margin-top: -0.55rem;
        margin-bottom: 0.85rem;
      }
      .lightbox-prev,
      .lightbox-next {
        width: 44px;
        height: 44px;
      }
      .trust-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
      }
      .cta-inner {
        padding: 1.75rem 1.25rem;
      }
      .hero-actions .btn,
      .cta-actions .btn {
        width: 100%;
      }
      .cta-float {
        display: inline-flex;
      }
      body {
        padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
      }
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 0.4rem;
        font-size: 0.88rem;
      }
      .area-tags span {
        font-size: 0.9rem;
        padding: 0.45rem 0.85rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .realisatie-item img { transition: none; }
    }

    /* Touch: grotere klikvlakken */
    @media (hover: none) and (pointer: coarse) {
      .nav a:not(.btn) {
        min-height: 48px;
      }
      .service-card:hover,
      .realisatie-item:hover img {
        transform: none;
      }
      .btn:hover {
        transform: none;
      }
      .btn-cta:hover {
        transform: none;
      }
    }


/* —— Compacte homepage —— */
.hero--compact { padding: 1.75rem 0 2.25rem; }
.hero--compact .hero-grid {
  justify-items: center;
}
@media (max-width: 900px) {
  .hero-brand img {
    width: min(26rem, 88vw);
  }
}
@media (max-width: 640px) {
  .hero-brand img {
    width: min(20.5rem, 86vw);
  }
  .hero--compact { padding: 1.25rem 0 1.75rem; }
}
.home-intro {
  font-size: 1.02rem;
  color: var(--ink-2);
  max-width: 38rem;
  margin: 0 0 1.15rem;
  line-height: 1.65;
}
.home-intro a {
  color: var(--green-700);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.home-intro a:hover { color: var(--green-900); }
.services--compact { padding-top: 2.25rem; }
.service-card--compact { padding: 1.25rem 1.2rem 1.15rem; }
.service-card--compact h3 { margin-bottom: 0.35rem; }
.service-card--compact p { margin: 0; }
.realisaties--compact { padding-top: 2.25rem; padding-bottom: 2.5rem; }
.home-work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.home-work {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  margin: 0;
  min-width: 0;
}
.home-work img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.home-work .js-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.home-work a,
.home-work-cap {
  display: block;
  padding: 0.7rem 0.8rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-800);
}
.home-work-cap {
  padding: 0;
}
.home-work-cap a {
  padding: 0.7rem 0.8rem 0.85rem;
}
.home-work-cap strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-800);
}
.home-work-cap span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.35;
  overflow-wrap: anywhere;
}
[data-page="home"] .hero,
[data-page="home"] .realisaties,
[data-page="home"] .why--home,
[data-page="home"] .services,
[data-page="home"] .process,
[data-page="home"] .werkgebied,
[data-page="home"] .gegevens,
[data-page="home"] .contact {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}
.why--home {
  background: var(--white);
  padding: 2.5rem 0 2.25rem;
}
.why--home .section-head {
  max-width: 40rem;
  margin-bottom: 1.25rem;
}
.why--home .section-head p {
  overflow-wrap: anywhere;
}
.why-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 44rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.why-points li {
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-900);
}
@media (max-width: 640px) {
  .why-points { grid-template-columns: 1fr; }
}
.home-work:hover,
.home-work:focus-within { border-color: var(--green-400); box-shadow: var(--shadow-sm); }
.home-work .js-zoom:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
}
.js-zoom { cursor: zoom-in; }
.dienst-hero-media .js-zoom,
.dienst-gallery .js-zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
@media (max-width: 900px) {
  .home-work-grid { grid-template-columns: repeat(2, 1fr); }
}

/* —— Staging: diensten-nav, klikbare kaarten, dienstpagina’s —— */
.nav-item {
  position: relative;
}
.nav-item > a,
.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-drop-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
}
.nav-drop-btn:hover { color: var(--green-700); }
.nav-drop-btn::after {
  content: "▾";
  font-size: 0.7em;
  opacity: 0.7;
}
.nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 15.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.45rem;
  padding-top: 0.65rem;
  z-index: 130;
}
.nav-item:hover .nav-sub,
.nav-item:focus-within .nav-sub,
.nav-item.is-open .nav-sub {
  display: block;
}
.nav-sub a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.88rem;
  white-space: nowrap;
}
.nav-sub a:hover,
.nav-sub a[aria-current="page"] {
  background: var(--green-50);
  color: var(--green-700);
}
.hero-pillars a {
  color: inherit;
  display: inline-block;
}
.hero-pillars a:hover {
  color: var(--green-700);
}
a.service-card {
  display: block;
  color: inherit;
  height: 100%;
}
a.service-card .service-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-700);
}
.staging-banner {
  background: var(--green-900);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0.45rem 0.75rem;
  line-height: 1.4;
  text-wrap: balance;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}
.staging-banner strong { font-weight: 700; }
@media (max-width: 640px) {
  .staging-banner {
    font-size: 0.72rem;
    letter-spacing: 0;
  }
  .staging-banner-rest { display: block; }
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--green-700); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

.dienst-hero {
  padding: 3.25rem 0 3.5rem;
}
.dienst-hero--tight { padding: 1.75rem 0 1.25rem; }
.dienst-hero-media .feature-video-player-wrap { margin: 0; }
.dienst-one { max-width: 40rem; margin: 0 0 0.75rem; color: var(--ink-2); }
.dienst-note { margin-top: 1rem; font-size: 0.92rem; color: var(--muted); }
.dienst-note a { color: var(--green-700); font-weight: 650; }
.sister-label {
  margin: 1.75rem 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-500);
}
.sister-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.35rem;
}
.sister-label + .sister-line {
  margin-top: 0;
}
.sister-line .sister-card { padding: 0.55rem 0.95rem; }
.dienst-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 2.5rem;
  align-items: center;
}
.dienst-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--green-900);
  margin-bottom: 1rem;
  font-weight: 600;
}
.dienst-hero-lead {
  font-size: 1.08rem;
  color: var(--ink-2);
  max-width: 38rem;
  margin-bottom: 1.5rem;
  overflow-wrap: anywhere;
}
.dienst-hero .hero-audience {
  margin-top: -0.85rem;
  margin-bottom: 1rem;
}
.dienst-hero .hero-pillars {
  margin: 0 0 1.25rem;
}
.dienst-hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.dienst-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.prose-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.prose-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-2);
}
.prose-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
}

.dienst-extra {
  margin-top: 0.9rem;
  color: var(--ink-2);
  max-width: 42rem;
}
.dienst-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.dienst-gallery:has(figure:only-child) {
  grid-template-columns: minmax(0, 22rem);
}
.dienst-gallery:has(> figure:first-child:nth-last-child(2)) {
  grid-template-columns: repeat(2, minmax(0, 22rem));
}
.dienst-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}
.dienst-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.dienst-gallery figcaption {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 44rem;
  margin-inline: auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1rem 1.15rem;
  min-height: 48px;
  font-weight: 650;
  color: var(--green-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  overflow-wrap: anywhere;
}
.faq-q::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--green-700);
  font-weight: 500;
}
.faq-q[aria-expanded="true"]::after { content: "–"; }
.faq-a {
  padding: 0 1.15rem 1.1rem;
  color: var(--ink-2);
}
.faq-a[hidden] { display: none; }

.sister-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.sister-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  color: inherit;
}
.sister-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-sm);
}
.sister-card strong {
  display: block;
  color: var(--green-900);
  margin-bottom: 0.35rem;
}
.sister-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-diensten {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.88rem;
}
.footer-diensten a { color: var(--green-700); font-weight: 600; }
.footer-diensten a:hover { text-decoration: underline; }
.footer-diensten a[aria-current="page"] { color: var(--ink); }

@media (max-width: 900px) {
  .nav-drop-btn {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    min-height: 48px;
    font-size: 1.05rem;
    font-weight: 600;
  }
  .nav-item { display: block; }
  .nav-item.is-open .nav-sub,
  .nav-sub {
    display: flex;
    position: static;
    transform: none;
    min-width: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 0.75rem;
    flex-direction: column;
  }
  .nav-sub a {
    font-size: 0.95rem;
    font-weight: 550;
    min-height: 44px;
  }
  .dienst-hero-grid,
  .sister-grid {
    grid-template-columns: 1fr;
  }
  .dienst-hero h1 {
    font-size: clamp(1.55rem, 6.2vw, 2.2rem);
    line-height: 1.2;
  }
  .dienst-hero-lead {
    font-size: 1rem;
  }
  .dienst-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .dienst-hero-media img,
  .dienst-gallery img {
    aspect-ratio: 4 / 3;
  }
}

.werkgebied {
  background: var(--cream);
}
.werkgebied-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(10rem, 0.5fr) minmax(10rem, 0.5fr);
  grid-template-areas: "map core around";
  gap: 1.25rem 1.75rem;
  align-items: start;
}
.werkgebied-map-card {
  grid-area: map;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.werkgebied-map {
  height: 360px;
  background: var(--green-50);
}
.werkgebied-map-fallback {
  margin: 0;
  padding: 1.25rem 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.werkgebied-map .leaflet-container {
  width: 100%;
  height: 100%;
  font: inherit;
  background: var(--green-50);
}
.werkgebied-map .leaflet-control-attribution {
  font-size: 0.68rem;
  background: rgba(250, 249, 246, 0.9);
}
.werkgebied-map-cap {
  margin: 0;
  padding: 0.7rem 1rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}
.werkgebied-core,
.werkgebied-around {
  min-width: 0;
}
.werkgebied-core { grid-area: core; }
.werkgebied-around { grid-area: around; }
.werkgebied h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 0.55rem;
}
.werkgebied ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.28rem;
}
.werkgebied li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-2);
  font-size: 0.98rem;
}
.werkgebied li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-500);
}
.werkgebied-note {
  margin: 1rem 0 0.75rem;
  color: var(--ink-2);
  font-size: 0.95rem;
}
.werkgebied-cta a {
  color: var(--green-700);
  font-weight: 700;
  text-underline-offset: 0.15em;
  text-decoration: underline;
}
.werkgebied-cta a:hover { color: var(--green-900); }
.werkgebied-pin {
  background: var(--green-700);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(26, 58, 40, 0.25);
}
@media (max-width: 900px) {
  .werkgebied-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "core"
      "map"
      "around";
    gap: 1.15rem;
  }
  .werkgebied-map { height: 260px; }
}

.field-check label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.45;
  cursor: pointer;
}
.field-check input[type="checkbox"] {
  width: auto;
  min-width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--green-700);
  flex-shrink: 0;
}
.field-check a {
  color: var(--green-700);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 180;
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.95rem 1.25rem calc(0.95rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 28px rgba(26, 58, 40, 0.22);
}
.cookie-bar[hidden] { display: none; }
.cookie-bar-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-bar p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 42rem;
  line-height: 1.5;
}
.cookie-bar a {
  color: #fff;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-bar .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}
.cookie-bar .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.cookie-bar .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
body.cookie-bar-open {
  padding-bottom: calc(7.5rem + env(safe-area-inset-bottom));
}
@media (max-width: 900px) {
  body.cookie-bar-open .cta-float {
    bottom: calc(7.25rem + env(safe-area-inset-bottom));
  }
}

.legal-page {
  padding: 2.75rem 0 4rem;
}
.legal-page .container {
  max-width: 44rem;
}
.legal-page h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--green-900);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.legal-updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
}
.legal-page h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--green-900);
  margin: 1.75rem 0 0.6rem;
  font-weight: 600;
}
.legal-page p,
.legal-block {
  color: var(--ink-2);
  margin-bottom: 0.75rem;
}
.legal-page ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0 0 0.85rem;
  color: var(--ink-2);
}
.legal-page li { margin: 0.25rem 0; }
.legal-page a {
  color: var(--green-700);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.error-page {
  padding: 3.25rem 0 4.5rem;
  text-align: left;
}
.error-page h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--green-900);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.error-page .error-lead {
  color: var(--ink-2);
  font-size: 1.05rem;
  max-width: 38rem;
  margin-bottom: 1.5rem;
}
.error-page .hero-actions {
  margin-bottom: 0.5rem;
}
