/* ============================================
   CARPE HORTUS — Redesign Demo
   Archetype: Trades / Hovenier
   Palette: Forest green #2D6A2D, Sage #4A8C3F,
            Warm cream #F5F0E8, Gold #D4A853, White #fff
   Type: Playfair Display (display) + DM Sans (body)
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:   #2D6A2D;
  --green-mid:    #3d7a35;
  --green-sage:   #4A8C3F;
  --green-light:  #e8f0e6;
  --gold:         #D4A853;
  --gold-dark:    #b8903e;
  --cream:        #F5F0E8;
  --white:        #ffffff;
  --ink:          #1a1e1a;
  --ink-mid:      #3d4439;
  --ink-soft:     #6b7560;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(30,50,20,.08);
  --shadow-md:    0 6px 24px rgba(30,50,20,.12);
  --shadow-lg:    0 16px 48px rgba(30,50,20,.16);
  --transition:   0.3s ease;
  --container:    1200px;
  --header-h:     72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

/* ---------- UTILITIES ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}

.section-header--light .section-label { color: rgba(255,255,255,0.7); }
.section-header--light h2 { color: var(--white); }
.section-header--light .section-intro { color: rgba(255,255,255,0.75); }

h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(45,106,45,0.08);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.01em;
}

.logo--footer .logo-text { color: var(--white); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-deep);
  transition: width var(--transition);
}

.main-nav a:hover, .main-nav a:focus-visible {
  color: var(--green-deep);
}
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--green-deep) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--green-mid) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(45,106,45,0.1);
  box-shadow: var(--shadow-lg);
  padding: 20px 0;
}

.mobile-menu.open { display: block; }

.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu a {
  display: block;
  padding: 14px clamp(20px, 5vw, 60px);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--green-light); color: var(--green-deep); }

/* sticky mobile call */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background: var(--green-deep);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 8px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  transition: background var(--transition), transform var(--transition);
}
.sticky-call svg { width: 18px; height: 18px; }
.sticky-call:hover { background: var(--green-mid); transform: scale(1.04); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(48px, 8vw, 96px);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,30,10,0.15) 0%,
    rgba(10,30,10,0.35) 40%,
    rgba(10,30,10,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 0;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,168,83,0.92);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 600px;
}

.stat {
  flex: 1;
  min-width: 120px;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat:last-child { border-right: none; }

.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll svg { width: 28px; height: 28px; }
.hero-scroll:hover { color: var(--white); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- DIENSTEN ---------- */
.diensten {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--white);
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dienst-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45,106,45,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.dienst-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dienst-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.dienst-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dienst-card:hover .dienst-img-wrap img { transform: scale(1.04); }

.dienst-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dienst-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green-deep);
}
.dienst-icon svg { width: 22px; height: 22px; }

.dienst-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.dienst-body p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}

.dienst-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.dienst-list li {
  font-size: 0.88rem;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
}

.dienst-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* Extra diensten strip */
.extra-diensten {
  margin-top: 48px;
  padding: 28px 36px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.extra-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  white-space: nowrap;
}

.extra-items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-mid);
}
.extra-item svg { width: 18px; height: 18px; color: var(--green-sage); flex-shrink: 0; }

/* ---------- PROJECTS / GALLERY ---------- */
.projecten {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--ink);
}

/* CSS Masonry — no gaps, tessellating */
.gallery-masonry {
  column-count: 3;
  column-gap: 0;
  width: 100%;
  padding: 0;
}

.gallery-item {
  break-inside: avoid;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

/* tall items span extra rows by using a taller image  */
.gallery-item--tall img { aspect-ratio: 4/5; object-fit: cover; }
.gallery-item--wide img { aspect-ratio: 16/9; object-fit: cover; }
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(10,30,10,0.85) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-item:hover figcaption { transform: translateY(0); }

.gallery-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.gallery-cta {
  padding-top: 48px;
  text-align: center;
}

/* ---------- TRUST BAND ---------- */
.trust-band {
  background: var(--green-deep);
  padding: 32px 0;
}

.trust-inner {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: space-between;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
}

.trust-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.trust-item strong { color: var(--white); }

/* ---------- WERKWIJZE ---------- */
.werkwijze {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--cream);
}

.werkwijze .section-label { color: var(--green-sage); }

.werkwijze-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-deep);
  opacity: 0.18;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  text-align: right;
  letter-spacing: -0.02em;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---------- OVER ONS ---------- */
.over-ons {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--white);
}

.over-ons-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.over-ons-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.over-ons-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.over-ons-text .section-label { color: var(--green-sage); }

.over-ons-text h2 { margin-bottom: 20px; }

.over-ons-text p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.team-names {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.team-names span {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--green-deep);
  background: var(--green-light);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ---------- REVIEWS ---------- */
.reviews {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--green-deep);
}

.review-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.review-score span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: background var(--transition), transform var(--transition);
}

.review-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-card p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.review-card footer cite {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
}

/* ---------- WERKGEBIED ---------- */
.werkgebied {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--cream);
}

.werkgebied-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.werkgebied-text .section-label { color: var(--green-sage); }

.werkgebied-text h2 { margin-bottom: 20px; }

.werkgebied-text > p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 20px;
}

.area-list li {
  font-size: 0.95rem;
  color: var(--ink-mid);
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}

.area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-sage);
}

.area-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
}

.werkgebied-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-embed iframe {
  display: block;
  border-radius: var(--radius-md);
}

/* ---------- CONTACT ---------- */
.contact {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info .section-label { color: var(--green-sage); }

.contact-info h2 { margin-bottom: 20px; }

.contact-info > p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--ink-mid);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-detail svg { width: 20px; height: 20px; color: var(--green-sage); flex-shrink: 0; }
.contact-detail:is(a):hover { color: var(--green-deep); }
.contact-detail--text { cursor: default; }

/* Contact form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-sm);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-mid);
}

.form-group label span { color: var(--green-sage); }

.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(45,106,45,0.2);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-sage);
  box-shadow: 0 0 0 3px rgba(74,140,63,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #a8b5a0; }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: -8px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  padding: clamp(48px, 8vw, 80px) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .logo-text { color: var(--white); }

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover { background: var(--green-deep); color: var(--white); }
.social-links svg { width: 18px; height: 18px; }

.footer-nav h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-contact h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-contact address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact p { font-size: 0.92rem; color: rgba(255,255,255,0.65); }
.footer-contact a { transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .sticky-call { display: flex; }
  .diensten-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .werkwijze-steps { grid-template-columns: 1fr; }
  .over-ons-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .werkgebied-inner { grid-template-columns: 1fr; }
  .gallery-masonry { column-count: 2; }
  .trust-inner { justify-content: center; gap: 8px; }
}

@media (max-width: 600px) {
  .gallery-masonry { column-count: 1; }
  .hero-stats { flex-wrap: wrap; }
  .stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat:last-child, .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .extra-diensten { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ---------- FOCUS / ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--green-sage);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- PRINT ---------- */
@media print {
  .site-header, .sticky-call, .hero-scroll { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-media { display: none; }
  .hero-content { color: var(--ink); }
}
