:root {
  --sda-dark-green: #397620;
  --sda-light-green: #7EB83B;
  --sda-bg: #F6F7F1;
  --sda-bg-soft: #EEF3E8;
  --sda-card: #FFFFFF;
  --sda-text: #121510;
  --sda-text-muted: rgba(18, 21, 16, 0.66);
  --sda-border: rgba(18, 21, 16, 0.10);
  --sda-shadow: rgba(18, 21, 16, 0.08);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Satoshi, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--sda-text);
  background: var(--sda-bg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sda-breadcrumbs {
  padding: 16px 0 0;
}

.sda-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--sda-text-muted);
}

.sda-breadcrumbs-item:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--sda-text-muted);
}

.sda-breadcrumbs-item a {
  color: var(--sda-dark-green);
  text-decoration: none;
}

.sda-breadcrumbs-item a:hover {
  text-decoration: underline;
}

.sda-breadcrumbs-item span[aria-current] {
  color: var(--sda-text);
}

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

a { color: inherit; }

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 700;
  margin: 0 0 0.5em;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin: 0 0 0.4em;
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 650;
  margin: 0 0 0.35em;
}

p { margin: 0 0 1em; color: var(--sda-text-muted); }

.sda-container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

@media (max-width: 767px) {
  .sda-container { width: min(100% - 32px, 100%); }
}

.sda-section--bg-light {
  background: var(--sda-bg);
}

.sda-section--bg-soft {
  background: var(--sda-bg-soft);
}

.sda-section { padding-block: clamp(36px, 5vw, 72px); }

@media (max-width: 767px) {
  .sda-section { padding-block: 32px; }
}

.sda-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

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

@media (max-width: 900px) {
  .sda-grid-2, .sda-grid-3 { grid-template-columns: 1fr; }
}

.sda-card {
  background: var(--sda-card);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--sda-border);
  box-shadow: 0 18px 60px var(--sda-shadow);
}

.sda-soft-panel {
  background: var(--sda-bg-soft);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 72px);
  overflow: hidden;
}

.sda-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(126, 184, 59, 0.18);
  color: var(--sda-dark-green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.sda-section-intro {
  max-width: 720px;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.sda-section-intro--with-badge {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  max-width: none;
}

.sda-section-intro-copy {
  flex: 1 1 0;
  min-width: 0;
  max-width: 720px;
}

.sda-google-review-badge {
  flex: 0 0 auto;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 243px;
  padding: 26px 29px 23px;
  border-radius: 30px;
  border: 1px solid var(--sda-border);
  background: var(--sda-card);
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sda-google-review-badge-logo {
  display: inline-flex;
  line-height: 0;
}

.sda-google-review-badge-logo svg {
  width: 46px;
  height: 46px;
}

.sda-google-review-badge-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.sda-google-review-badge-rating {
  display: flex;
  align-items: center;
  gap: 13px;
}

.sda-google-review-badge-score {
  font-size: 2.73rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--sda-text);
}

.sda-google-review-badge-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sda-google-review-star {
  position: relative;
  display: inline-flex;
  line-height: 0;
  width: 29px;
  height: 29px;
}

.sda-google-review-star svg {
  width: 29px;
  height: 29px;
}

.sda-google-review-star-fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
}

.sda-google-review-badge.is-stars-active .sda-google-review-star-fill {
  animation: sda-star-fill 720ms cubic-bezier(.22, 1, .36, 1) forwards;
  animation-delay: calc(580ms + var(--star-index, 0) * 150ms);
}

@keyframes sda-star-fill {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 calc(100% - var(--star-target, 0%)) 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sda-google-review-badge.is-stars-active .sda-google-review-star-fill {
    animation: none;
    clip-path: inset(0 calc(100% - var(--star-target, 0%)) 0 0);
  }
}

.sda-google-review-badge-count {
  font-size: 1.36rem;
  font-weight: 600;
  color: var(--sda-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .sda-section-intro--with-badge {
    flex-direction: column;
    align-items: stretch;
  }

  .sda-google-review-badge {
    width: 100%;
    min-width: 0;
    align-self: stretch;
    padding: 32px;
    gap: 12px;
  }

  .sda-google-review-badge-logo svg {
    width: 32px;
    height: 32px;
  }

  .sda-google-review-badge-body {
    gap: 8px;
  }

  .sda-google-review-badge-rating {
    gap: 10px;
  }

  .sda-google-review-badge-score {
    font-size: 1.45rem;
  }

  .sda-google-review-badge-stars {
    gap: 3px;
  }

  .sda-google-review-star,
  .sda-google-review-star svg {
    width: 18px;
    height: 18px;
  }

  .sda-google-review-badge-count {
    font-size: 0.95rem;
  }
}

.sda-section--peek-cards {
  padding-bottom: clamp(24px, 4vw, 48px);
}

.sda-section--peek-cards .sda-section-intro {
  margin-bottom: clamp(16px, 3vw, 28px);
}

.sda-section--peek-cards .sda-grid-3 {
  margin-top: -8px;
}

.sda-section-intro p { font-size: 1.1rem; }

/* Header */
.sda-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 247, 241, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 21, 16, 0.06);
}

.sda-nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.sda-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  color: var(--sda-text);
  flex-shrink: 0;
}

.sda-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.sda-logo span { font-size: 0.95rem; line-height: 1.2; max-width: 140px; }

.sda-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sda-nav-item { position: relative; }

.sda-nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.sda-nav-item.is-open .sda-dropdown,
.sda-nav-item:hover .sda-dropdown,
.sda-nav-item:focus-within .sda-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.sda-nav-trigger,
.sda-nav-link {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  color: var(--sda-text);
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  transition: background 180ms ease, color 180ms ease;
}

.sda-nav-trigger:hover,
.sda-nav-item:hover .sda-nav-trigger,
.sda-nav-link:hover {
  background: rgba(126, 184, 59, 0.16);
  color: var(--sda-dark-green);
}

.sda-nav-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.sda-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 300px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(18, 21, 16, 0.14);
  border: 1px solid rgba(18, 21, 16, 0.08);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1);
  list-style: none;
  margin: 0;
}

.sda-dropdown a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--sda-text);
  text-decoration: none;
  font-weight: 550;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.sda-dropdown a:hover {
  background: var(--sda-bg-soft);
  color: var(--sda-dark-green);
  transform: translateX(3px);
}

.sda-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.sda-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(126, 184, 59, 0.16);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.sda-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--sda-dark-green);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.sda-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sda-hamburger.is-open span:nth-child(2) { opacity: 0; }
.sda-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .sda-desktop-nav { display: none; }
  .sda-hamburger { display: flex; }
  .sda-nav-actions .sda-button { display: none; }
}

.sda-mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .sda-mobile-menu {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    top: 88px;
    bottom: 12px;
    z-index: 10050;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 24px 80px rgba(18, 21, 16, 0.18);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 240ms ease, transform 240ms cubic-bezier(.22, 1, .36, 1), visibility 240ms ease;
    overflow-y: auto;
    max-height: calc(100vh - 100px);
    -webkit-overflow-scrolling: touch;
  }

  .sda-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .sda-mobile-menu:not(.is-open) * {
    pointer-events: none;
  }
}

.sda-mobile-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  color: var(--sda-text);
}

.sda-mobile-accordion-btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: none;
  border-radius: 16px;
  background: none;
  font: inherit;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.sda-mobile-accordion-panel {
  display: none;
  padding: 0 8px 8px;
}

.sda-mobile-accordion-panel.is-open { display: block; }

.sda-mobile-accordion-panel a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 550;
  color: var(--sda-text-muted);
}

.sda-mobile-accordion-panel a:hover {
  background: var(--sda-bg-soft);
  color: var(--sda-dark-green);
}

.sda-mobile-cta { margin-top: 20px; }
.sda-mobile-cta .sda-button { width: 100%; }

/* Buttons */
.sda-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.sda-button-primary {
  color: #ffffff;
  background: var(--sda-dark-green);
  box-shadow: 0 14px 34px rgba(57, 118, 32, 0.24);
}

.sda-button-primary:hover {
  transform: translateY(-2px);
  background: #2f651b;
  box-shadow: 0 18px 44px rgba(57, 118, 32, 0.30);
}

.sda-button-accent {
  color: #121510;
  background: var(--sda-light-green);
}

.sda-button-secondary {
  color: var(--sda-dark-green);
  background: rgba(126, 184, 59, 0.16);
}

.sda-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Hero */
.sda-hero h1 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.sda-hero {
  position: relative;
  padding-top: clamp(28px, 5vw, 41px);
  padding-bottom: clamp(72px, 10vw, 132px);
  background: var(--sda-bg);
}

.sda-hero-scroll-cue {
  position: fixed;
  left: 50%;
  bottom: clamp(18px, 3.5vw, 36px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--sda-dark-green);
  pointer-events: none;
  z-index: 998;
  opacity: 1;
  visibility: visible;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.sda-hero-scroll-cue.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.sda-hero-scroll-house {
  display: block;
  width: 44px;
  height: 44px;
  transform: rotate(180deg);
  transform-origin: center center;
  will-change: transform;
}

.sda-hero-scroll-house svg {
  display: block;
  width: 100%;
  height: 100%;
}

.sda-hero-scroll-label {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(18, 21, 16, 0.55);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.sda-hero-scroll-label.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.sda-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.sda-hero-media {
  min-height: 560px;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(126,184,59,.24), rgba(57,118,32,.10));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.sda-hero-media img {
  max-width: 280px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(18, 21, 16, 0.12));
}

.sda-hero-media--photo {
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.sda-hero-media--photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.sda-hero-trust {
  margin-top: 24px;
  font-weight: 600;
  color: var(--sda-dark-green);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .sda-hero-grid { grid-template-columns: 1fr; }
  .sda-hero-media { min-height: 360px; border-radius: 28px; }
  .sda-hero-media--photo img { min-height: 360px; }
}

/* Service cards */
.sda-service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--sda-border);
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.sda-service-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(180deg, #ffffff, #f6faef);
  box-shadow: 0 22px 70px rgba(18, 21, 16, 0.12);
}

.sda-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(126, 184, 59, 0.18);
  margin-bottom: 20px;
  overflow: hidden;
}

.sda-service-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.sda-service-card h3 { font-size: 1.35rem; }
.sda-service-card p { margin-bottom: 0; }

.sda-overview-card {
  border-radius: 30px;
  padding: 32px;
  background: var(--sda-card);
  border: 1px solid var(--sda-border);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sda-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 70px rgba(18, 21, 16, 0.12);
}

/* Werkwijze */
.sda-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .sda-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .sda-steps { grid-template-columns: 1fr; }
}

.sda-step {
  border-radius: 24px;
  padding: 24px;
  background: var(--sda-card);
  border: 1px solid var(--sda-border);
}

.sda-step-num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(126, 184, 59, 0.18);
  color: var(--sda-dark-green);
  font-weight: 700;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

/* Waarom */
.sda-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 700px) {
  .sda-why-grid { grid-template-columns: 1fr; }
}

.sda-why-item {
  border-radius: 24px;
  padding: 28px;
  background: var(--sda-card);
  border: 1px solid var(--sda-border);
}

/* CTA block */
.sda-cta-block {
  border-radius: 40px;
  padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(145deg, rgba(126,184,59,.18), rgba(57,118,32,.08));
  text-align: center;
}

.sda-cta-block h2 { max-width: 700px; margin-inline: auto; }
.sda-cta-block p { max-width: 560px; margin-inline: auto; }
.sda-cta-block .sda-button-group { justify-content: center; }

/* FAQ */
.sda-faq-list { display: grid; gap: 12px; }

.sda-faq-item {
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--sda-border);
  overflow: hidden;
}

.sda-faq-question {
  min-height: 64px;
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 700;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.sda-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(126, 184, 59, 0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 220ms ease;
}

.sda-faq-item.is-open .sda-faq-icon { transform: rotate(45deg); }

.sda-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 260ms ease, opacity 220ms ease, padding 260ms ease;
  padding: 0 24px;
}

.sda-faq-item.is-open .sda-faq-answer {
  max-height: 400px;
  opacity: 1;
  padding: 0 24px 20px;
}

/* Contact form */
.sda-form {
  display: grid;
  gap: 12px;
}

.sda-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .sda-form-row { grid-template-columns: 1fr; }
}

.sda-input,
.sda-select,
.sda-textarea {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid var(--sda-border);
  background: #fff;
  padding: 0 16px;
  color: var(--sda-text);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.sda-textarea {
  min-height: 132px;
  padding-block: 14px;
  resize: vertical;
}

.sda-input:focus,
.sda-select:focus,
.sda-textarea:focus {
  border-color: rgba(57, 118, 32, 0.46);
  box-shadow: 0 0 0 4px rgba(126, 184, 59, 0.18);
}

.sda-form-message {
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 600;
  display: none;
}

.sda-form-message.is-success {
  display: block;
  background: rgba(126, 184, 59, 0.18);
  color: var(--sda-dark-green);
}

.sda-form-message.is-error {
  display: block;
  background: rgba(200, 50, 50, 0.1);
  color: #8b1a1a;
}

/* Footer */
.sda-footer {
  margin-top: 80px;
  padding: 64px 0 32px;
  background: #17320f;
  color: #fff;
  border-radius: 40px 40px 0 0;
}

.sda-footer a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

.sda-footer a:hover { color: #fff; }

.sda-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .sda-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .sda-footer-grid { grid-template-columns: 1fr; }
}

.sda-footer h4 {
  margin: 0 0 16px;
  font-size: 0.95rem;
  font-weight: 700;
}

.sda-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sda-footer li { margin-bottom: 10px; }

.sda-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
}

.sda-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sda-footer-logo img { width: 44px; height: 44px; }

.sda-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.sda-footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: background 180ms ease, color 180ms ease;
}

.sda-footer-social a:hover {
  background: rgba(126, 184, 59, 0.35);
  color: #fff;
}

/* Floating CTA */
.sda-floating-cta {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  width: min(calc(100% - 32px), 520px);
  z-index: 999;
  transform: translate(-50%, calc(100% + 32px));
  opacity: 0;
  pointer-events: none;
  transition: transform 340ms cubic-bezier(.22, 1, .36, 1), opacity 240ms ease;
}

.sda-floating-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.sda-floating-cta.is-with-scroll-cue {
  bottom: max(72px, env(safe-area-inset-bottom));
}

.sda-floating-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 21, 16, 0.08);
  box-shadow: 0 18px 60px rgba(18, 21, 16, 0.18);
  backdrop-filter: blur(18px);
}

.sda-floating-cta-text {
  padding-left: 14px;
  font-weight: 700;
  color: var(--sda-text);
}

@media (max-width: 520px) {
  .sda-floating-cta-text { display: none; }
  .sda-floating-cta .sda-button { width: 100%; }
}

/* Page template */
:root {
  --sda-page-peek: clamp(40px, 5vh, 56px);
  --sda-page-hero-gap: clamp(20px, 2.5vw, 28px);
}

.sda-page-hero {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: 0;
}

.sda-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding-bottom: var(--sda-page-peek);
}

.sda-page-hero--has-media .sda-page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.sda-page-hero-copy .sda-badge {
  margin-bottom: 16px;
}

.sda-page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.sda-page-hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--sda-text-muted);
  max-width: 42ch;
  margin-top: 1rem;
}

.sda-page-hero-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--sda-border);
  background: linear-gradient(145deg, rgba(126, 184, 59, 0.12), rgba(57, 118, 32, 0.06));
  box-shadow: 0 22px 70px rgba(18, 21, 16, 0.08);
  aspect-ratio: 4 / 5;
  max-height: 480px;
}

.sda-page-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sda-page-content-peek {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * var(--sda-page-peek) + var(--sda-page-hero-gap));
  padding-bottom: clamp(32px, 5vw, 56px);
}

.sda-page-content-peek .sda-soft-panel {
  font-size: 1.05rem;
  line-height: 1.7;
}

.sda-page-content {
  padding-top: 0;
  padding-bottom: clamp(64px, 8vw, 100px);
}

.sda-page-content .sda-soft-panel {
  font-size: 1.05rem;
  line-height: 1.7;
}

.sda-page-content .sda-soft-panel p:last-child { margin-bottom: 0; }

.sda-contact-details {
  margin-top: 0;
}

.sda-contact-page .sda-breadcrumbs {
  padding-top: 12px;
}

.sda-contact-section {
  padding-top: clamp(20px, 3vw, 36px);
  padding-bottom: clamp(40px, 5vw, 64px);
  background: var(--sda-bg-soft);
}

.sda-contact-intro {
  max-width: 52ch;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.sda-contact-intro .sda-badge {
  margin-bottom: 12px;
}

.sda-contact-intro h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0;
}

.sda-contact-intro-subtitle {
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--sda-text-muted);
}

.sda-contact-details-title {
  margin: 0 0 12px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.sda-contact-grid {
  align-items: start;
  gap: clamp(20px, 3vw, 40px);
}

.sda-contact-details p {
  margin-bottom: 0.5em;
}

.sda-contact-details a {
  color: var(--sda-dark-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  :root {
    --sda-page-peek: clamp(36px, 4.5vh, 48px);
    --sda-page-hero-gap: 20px;
  }

  .sda-page-hero--has-media .sda-page-hero-grid {
    grid-template-columns: 1fr;
  }

  .sda-page-hero-media {
    order: 1;
    aspect-ratio: 16 / 10;
    max-height: 320px;
    border-radius: var(--radius-lg);
  }

  .sda-page-hero-copy {
    order: 0;
  }
}

/* Cookie consent */
.sda-cookie-banner {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 640px);
  z-index: 10000;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--sda-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 80px rgba(18, 21, 16, 0.18);
  display: none;
}

.sda-cookie-banner.is-visible { display: block; }

.sda-cookie-banner h3 { font-size: 1.2rem; margin-bottom: 8px; }
.sda-cookie-banner p { font-size: 0.95rem; margin-bottom: 16px; }

.sda-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sda-cookie-settings {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--sda-border);
  display: none;
}

.sda-cookie-settings.is-open { display: block; }

.sda-cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

/* Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.22, 1, .36, 1);
}

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

@media (hover: hover) and (pointer: fine) {
  [data-reveal].is-visible.sda-google-review-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 70px rgba(18, 21, 16, 0.12);
  }
}

/* Focus */
:focus-visible {
  outline: 3px solid rgba(126, 184, 59, 0.5);
  outline-offset: 2px;
}

.sda-page-content .sda-soft-panel p:last-child { margin-bottom: 0; }

.sda-prose .sda-faq-list {
  margin-top: 1em;
}

.sda-prose .sda-faq-item h3,
.sda-prose .sda-faq-question {
  font-size: 1rem;
  letter-spacing: normal;
  margin: 0;
}

.sda-prose h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.sda-prose h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-top: 1.2em;
}

.sda-prose ul,
.sda-prose ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
  color: var(--sda-text-muted);
}

.sda-prose li { margin-bottom: 0.35em; }

.sda-prose-figure {
  margin: 1.5rem 0 2rem;
}

.sda-prose-figure img {
  display: block;
  width: 100%;
  border-radius: var(--sda-radius-lg);
  box-shadow: 0 12px 40px rgba(18, 21, 16, 0.08);
}

.sda-prose-figure figcaption {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  color: rgba(18, 21, 16, 0.62);
}

.sda-flir-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 1.25rem 0 0;
  padding: 10px 14px;
  max-width: 100%;
  border-radius: var(--sda-radius-md);
  background: var(--sda-bg-soft);
  border: 1px solid rgba(18, 21, 16, 0.06);
}

.sda-flir-badge img {
  flex: 0 0 auto;
  width: auto;
  max-width: 96px;
  max-height: 32px;
  height: auto;
  object-fit: contain;
}

.sda-flir-badge span {
  font-size: 0.92rem;
  line-height: 1.45;
}

.sda-matterport-embed {
  position: relative;
  width: 75%;
  max-width: 75%;
  max-height: clamp(220px, 32vw, 380px);
  margin: 1.5em 0 2em;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl, 16px);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 600px) {
  .sda-matterport-embed {
    width: 100%;
    max-width: 100%;
    max-height: none;
    aspect-ratio: 16 / 11;
  }
}

.sda-matterport-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Over ons intro */
.sda-about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid var(--sda-border);
}

.sda-about-intro-points {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}

.sda-about-point {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.sda-about-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(126, 184, 59, 0.18);
  color: var(--sda-dark-green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.sda-about-point-title {
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--sda-text);
}

.sda-prose .sda-about-point-title {
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.sda-about-point-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--sda-text-muted);
}

.sda-about-point-text a {
  color: var(--sda-dark-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sda-about-intro-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--sda-border);
  box-shadow: 0 22px 70px rgba(18, 21, 16, 0.08);
}

.sda-about-intro-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.sda-about-story > p:first-child {
  margin-top: 0;
}

@media (max-width: 900px) {
  .sda-about-intro {
    grid-template-columns: 1fr;
  }

  .sda-about-intro-photo {
    max-width: 320px;
    margin-inline: auto;
    width: 100%;
  }
}

.sda-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .sda-blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .sda-blog-grid { grid-template-columns: 1fr; }
}

.sda-blog-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
  border-radius: 30px;
  background: var(--sda-card);
  border: 1px solid var(--sda-border);
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sda-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 70px rgba(18, 21, 16, 0.12);
}

.sda-blog-card h2 {
  font-size: 1.35rem;
  margin: 0;
}

.sda-blog-card p { margin: 0; flex: 1; }

.sda-blog-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sda-dark-green);
}

.sda-blog-link {
  font-weight: 700;
  color: var(--sda-dark-green);
}

/* 404 */
.sda-404 {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
