/* ═══════════════════════════════════════════════════════════
   Proteas Group — Protection Assured
   Palette: deep forest green + gold on warm cream
   Type: Bricolage Grotesque (display) / Archivo (body)
   ═══════════════════════════════════════════════════════════ */

:root {
  --green-950: #08140f;
  --green-900: #0c2118;
  --green-800: #0f3f2e;
  --green-600: #14583f;
  --gold: #c9a85d;
  --gold-light: #e6d294;
  --cream: #f5f3ed;
  --cream-dark: #ebe7dc;
  --ink: #17201b;
  --muted: #5d6a62;
  --white: #ffffff;

  --font-display: "Bricolage Grotesque", "Archivo", sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;

  --container: 1200px;
  --radius: 18px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.35rem; line-height: 1.2; }
h2 em { font-style: normal; color: var(--gold); }
.dark h2 em { color: var(--gold-light); }

p { margin: 0 0 1em; }

a { color: inherit; }

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

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-800);
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: var(--gold);
  flex: none;
}
.dark .eyebrow { color: var(--gold); }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ─── Dark sections ─── */
.dark {
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(201, 168, 93, 0.08), transparent 60%),
    var(--green-900);
  color: #dbe7e1;
}
.dark h2, .dark h3 { color: var(--white); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-gold {
  background: var(--gold);
  color: var(--green-950);
}
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 10px 30px -10px rgba(201, 168, 93, 0.55); }

.btn-green {
  background: var(--green-800);
  color: var(--white);
}
.btn-green:hover { background: var(--green-600); box-shadow: 0 10px 30px -10px rgba(15, 63, 46, 0.5); }

.btn-outline {
  border-color: rgba(23, 32, 27, 0.25);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { border-color: var(--green-800); background: rgba(15, 63, 46, 0.06); }

.btn-small { padding: 0.65rem 1.35rem; font-size: 0.875rem; }

/* ─── Skip link ─── */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--green-800);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ═══════════ HEADER ═══════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: transform 0.4s var(--ease-out), background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(245, 243, 237, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(23, 32, 27, 0.08);
}
.site-header.hidden { transform: translateY(-100%); }

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-img { height: 54px; width: auto; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -0.01em; }
.logo-text span { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a:not(.btn) {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.3rem 0;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn):focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; }

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 120;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ═══════════ HERO (schuine splitsing) ═══════════ */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--green-950) 0%, var(--green-900) 55%, var(--green-800) 100%);
  color: #dbe7e1;
  overflow: clip;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(80vh, 800px);
  padding: calc(var(--header-h) + clamp(2.5rem, 7vh, 5rem)) 0 clamp(3.5rem, 7vw, 5.5rem);
  width: min(100% - 2.5rem, 1320px);
}

.hero-foto {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 4% 100%);
  z-index: 0;
}
.hero-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  will-change: transform;
}
.hero-foto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 20, 15, 0.45) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero .eyebrow { color: var(--gold); }

.hero-protea {
  position: absolute;
  left: 1.5rem;
  bottom: 1.2rem;
  width: clamp(10rem, 14vw, 13rem);
  height: auto;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.hero-title {
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  font-weight: 800;
  margin: 0 0 1.4rem;
  color: var(--white);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; will-change: transform; }
.hero-title .accent { color: var(--gold-light); }

.hero-text {
  max-width: 44ch;
  font-size: 1.05rem;
  color: #cbd6cf;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }
.hero .btn-outline { border-color: rgba(255, 255, 255, 0.35); color: var(--white); }
.hero .btn-outline:hover { border-color: var(--gold); background: rgba(201, 168, 93, 0.12); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: #b7c4bd;
}
.hero-trust strong { color: var(--white); }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ticker */
.ticker {
  position: relative;
  z-index: 3;
  border-block: 1px solid rgba(23, 32, 27, 0.1);
  padding: 1rem 0;
  overflow: hidden;
  background: var(--cream-dark);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
  white-space: nowrap;
}
.ticker-track i { font-style: normal; color: var(--gold); font-size: 0.8rem; }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ═══════════ STATS ═══════════ */
.stats { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat > span { font-size: 0.9rem; color: #b7c4bd; }
.stat strong span { font-size: inherit; color: inherit; }

/* ═══════════ DIENSTEN ═══════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green-950);
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  text-decoration: none;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 55px -25px rgba(8, 20, 15, 0.5); }

.card-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s;
}
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 20, 15, 0.92) 8%, rgba(8, 20, 15, 0.35) 45%, rgba(8, 20, 15, 0.12) 100%);
}
.card:hover .card-media img { transform: scale(1.06); }

.card-body {
  padding: 1.6rem;
  color: #e9ede9;
}
.card-index {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 93, 0.5);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.9rem;
}
.card-body h3 { color: var(--white); margin-bottom: 0.4rem; }
.card-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #cbd6cf;
}

/* ═══════════ OVER ONS ═══════════ */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.over-copy p { color: #cbd6cf; max-width: 52ch; }

.values {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.values li {
  position: relative;
  padding-left: 2.1rem;
  font-weight: 500;
  color: var(--white);
}
.values li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M3 10.5 8 15l9-10' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M3 10.5 8 15l9-10' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.over-media {
  position: relative;
  min-height: 480px;
}
.over-photo-main {
  position: absolute;
  inset: 0 15% 8% 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.over-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 72%; }

.over-photo-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--green-900);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.65);
}
.over-photo-small img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════ WERKWIJZE ═══════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(23, 32, 27, 0.08);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.8rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px -25px rgba(15, 63, 46, 0.35);
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { margin: 0; font-size: 0.94rem; color: var(--muted); }

/* ═══════════ FOTOGALERIJ (bento) ═══════════ */
.galerij { padding: 0 0 clamp(3rem, 6vw, 5rem); }
.galerij-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.galerij-grid figure {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 35px -22px rgba(8, 20, 15, 0.4);
  will-change: transform;
}
.galerij-grid figure:nth-child(1),
.galerij-grid figure:nth-child(6) { grid-row: span 2; }
.galerij-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  transition: transform 0.6s var(--ease-out), filter 0.6s;
}
.galerij-grid figure:hover img { transform: scale(1.05); filter: saturate(1.12); }
.js .galerij-grid figure { opacity: 0; }
@media (max-width: 900px) {
  .galerij-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}
@media (prefers-reduced-motion: reduce) {
  .js .galerij-grid figure { opacity: 1; }
}

/* ═══════════ VOLG-WATERMERK (na de statsbalk) ═══════════ */
.protea-volger {
  position: fixed;
  left: -3.5rem;
  bottom: -2.5rem;
  width: clamp(11rem, 16vw, 16rem);
  opacity: 0;
  z-index: 95;
  pointer-events: none;
  will-change: transform, opacity;
}
@media (max-width: 900px) {
  .protea-volger { width: 9rem; left: -2.5rem; }
}

/* ═══════════ GOOGLE RECENSIES ═══════════ */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: #dbe7e1;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-out);
}
.review-badge:hover { border-color: var(--gold); background: rgba(201, 168, 93, 0.1); transform: translateY(-2px); }
.review-badge .stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.95rem; }
.review-badge strong { color: var(--white); font-weight: 600; }

/* ═══════════ VACATURES CTA ═══════════ */
.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(201, 168, 93, 0.16), transparent 55%),
    var(--green-800);
  color: #dbe7e1;
}
.cta-copy { padding: clamp(2.2rem, 5vw, 4rem); align-self: center; }
.cta-copy .eyebrow { color: var(--gold); }
.cta-copy h2 { color: var(--white); }
.cta-copy h2 em { color: var(--gold-light); font-style: normal; }
.cta-copy p { color: #cbd6cf; max-width: 42ch; margin-bottom: 1.8rem; }
.cta-copy .btn-green { background: var(--gold); color: var(--green-950); }
.cta-copy .btn-green:hover { background: var(--gold-light); }

.cta-media { position: relative; min-height: 320px; }
.cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════ CONTACT ═══════════ */
.contact-section .split { align-items: start; }
.contact-section p { color: #cbd6cf; max-width: 46ch; }

.contact-list {
  display: grid;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 1.05rem;
}
.contact-list a {
  color: var(--gold-light);
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.contact-list a:hover { border-color: var(--gold); }
.contact-list span { color: #b7c4bd; }

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  gap: 1.1rem;
}
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #dbe7e1;
}
.field label span { color: var(--gold); }
.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--white);
  background: rgba(8, 20, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 93, 0.22);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { margin: 0; font-size: 0.8rem; color: #8fa197; }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--green-950);
  color: #b7c4bd;
  padding: 2.8rem 0;
  font-size: 0.92rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-brand .logo-mark { width: 34px; height: 37px; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -0.01em; color: var(--white); }
.footer-brand p { margin: 0.1rem 0 0; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.footer-nav { display: flex; gap: 1.6rem; }
.footer-nav a { text-decoration: none; transition: color 0.25s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy { margin: 0; }

/* ═══════════ DROPDOWN NAV ═══════════ */
.dropdown { position: relative; }
.dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 0;
  padding: 0.3rem 0;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: inherit;
  cursor: pointer;
}
.dropdown > button::after {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  translate: -50% 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid rgba(23, 32, 27, 0.08);
  border-radius: 14px;
  box-shadow: 0 24px 50px -20px rgba(8, 20, 15, 0.35);
  padding: 0.5rem;
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s var(--ease-out), visibility 0.25s;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.9rem;
  left: 0;
  right: 0;
  height: 0.9rem;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: 9px;
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--green-800); }

.nav-links a[aria-current="page"]:not(.btn)::after { transform: scaleX(1); }

/* Lichte headertekst boven de donkere page-hero (tot er gescrold is) */
.page-dark .site-header:not(.scrolled):not(.menu-open) .nav-links a:not(.btn),
.page-dark .site-header:not(.scrolled):not(.menu-open) .dropdown > button,
.page-dark .site-header:not(.scrolled):not(.menu-open) .logo-text strong { color: var(--cream); }
.page-dark .site-header:not(.scrolled):not(.menu-open) .logo-text span { color: #b7c4bd; }
.page-dark .site-header:not(.scrolled):not(.menu-open) .menu-btn span { background: var(--cream); }

/* ═══════════ PAGE HERO (subpagina's) ═══════════ */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(201, 168, 93, 0.12), transparent 60%),
    var(--green-900);
  color: #dbe7e1;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: 3rem;
  bottom: 1.5rem;
  width: 15rem;
  height: 15rem;
  background: url("assets/img/watermerk-protea.webp") bottom right / contain no-repeat;
  opacity: 0.55;
  pointer-events: none;
}
.page-hero.has-foto::after { display: none; }

/* pagina-hero met foto (dienstpagina's): schuine foto rechts + trage zoom */
.page-hero.has-foto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(66vh, 680px);
}
.page-hero-foto {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 5% 100%);
  overflow: hidden;
}
.page-hero-foto.breed {
  width: 63%;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 3% 100%);
}
.page-hero-foto.smal {
  width: 45%;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 5% 100%);
}
.page-hero-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.page-hero-foto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(12, 33, 24, 0.55) 0%, rgba(12, 33, 24, 0.05) 45%);
}
@keyframes kenburns {
  from { transform: scale(1.01); }
  to { transform: scale(1.06); }
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero.has-foto h1 { max-width: 13ch; }
.page-hero.has-foto p { max-width: 40ch; }
@media (max-width: 820px) {
  .page-hero.has-foto { display: flex; flex-direction: column; padding-bottom: 0; }
  .page-hero-foto {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: 34vh;
    min-height: 240px;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    margin-top: 2rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-foto img { animation: none; }
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.9rem;
  max-width: 16ch;
}
.page-hero h1 em { font-style: normal; color: var(--gold-light); }
.page-hero p { max-width: 52ch; font-size: 1.1rem; color: #cbd6cf; margin-bottom: 1.6rem; }

/* ═══════════ TILES (contentkaarten) ═══════════ */
.tiles { display: grid; gap: 1.4rem; }
.tiles.cols-3 { grid-template-columns: repeat(3, 1fr); }
.tiles.cols-4 { grid-template-columns: repeat(4, 1fr); }
.tile {
  background: var(--white);
  border: 1px solid rgba(23, 32, 27, 0.08);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.tile:hover { transform: translateY(-5px); box-shadow: 0 24px 45px -25px rgba(15, 63, 46, 0.3); }
.tile h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.tile p { margin: 0; font-size: 0.95rem; color: var(--muted); }
.tile .eyebrow { margin-bottom: 0.7rem; font-size: 0.72rem; }
.tile-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: rgba(15, 63, 46, 0.08);
  color: var(--green-800);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  transition: transform 0.35s var(--ease-out), background 0.35s, color 0.35s;
}
.tile-icon svg { width: 1.5rem; height: 1.5rem; }
.tile:hover .tile-icon { transform: rotate(-6deg) scale(1.1); background: var(--gold); color: var(--green-950); }
.tile-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}
.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-800);
  text-decoration: none;
}
.tile-link::after { content: "→"; color: var(--gold); transition: transform 0.25s var(--ease-out); }
.tile-link:hover::after { transform: translateX(4px); }

.dark .tile {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.dark .tile h3 { color: var(--white); }
.dark .tile p { color: #cbd6cf; }

/* checklist op licht */
.checklist {
  list-style: none;
  margin: 1.6rem 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.checklist li {
  position: relative;
  padding-left: 2.1rem;
  font-weight: 500;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M3 10.5 8 15l9-10' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M3 10.5 8 15l9-10' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* detail blocks (evenementen) */
.detail-block {
  border-left: 3px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.6rem;
  margin-bottom: 2.2rem;
  max-width: 72ch;
}
.detail-block h3 { margin-bottom: 0.5rem; }
.detail-block p { margin: 0; color: var(--muted); }
.dark .detail-block p { color: #cbd6cf; }

/* split foto op subpagina's */
.split-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(8, 20, 15, 0.45);
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.4; }

/* ═══════════ TEAM ═══════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.4rem;
}
.team-card {
  background: var(--white);
  border: 1px solid rgba(23, 32, 27, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding-bottom: 1.4rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 24px 45px -25px rgba(15, 63, 46, 0.3); }
.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 25%;
  margin-bottom: 1.1rem;
}
.team-card h3 { font-size: 1.05rem; margin: 0 0.6rem 0.15rem; }
.team-card .role { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }

/* ═══════════ CTA BAND ═══════════ */
.cta-band {
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(201, 168, 93, 0.15), transparent 60%),
    var(--green-800);
  color: #dbe7e1;
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 52ch; margin: 0 auto 1.8rem; color: #cbd6cf; }
.cta-band .hero-actions { justify-content: center; margin: 0; }

/* ═══════════ FORMULIEREN (uitgebreid) ═══════════ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--white);
  background: rgba(8, 20, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 168, 93, 0.22); }
.field select option { color: var(--ink); background: var(--white); }
.field input[type="file"] { padding: 0.65rem; }
.field input[type="file"]::file-selector-button {
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-950);
  background: var(--gold);
  border: 0;
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  margin-right: 0.8rem;
  cursor: pointer;
}
.checkbox-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; padding-top: 0.3rem; }
.checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: #dbe7e1;
  font-weight: 400;
  cursor: pointer;
}
.checkbox-row input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--gold);
  cursor: pointer;
}

/* ═══════════ CONTACT EXTRA'S ═══════════ */
.contact-map {
  margin-top: 1.8rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-map iframe { display: block; width: 100%; height: 280px; border: 0; }
.socials { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold-light);
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
}
.socials a:hover { background: rgba(201, 168, 93, 0.15); border-color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 1.15rem; height: 1.15rem; }
.keurmerken { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.keurmerken a {
  background: var(--white);
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  display: inline-flex;
  align-items: center;
}
.keurmerken img { height: 44px; width: auto; }

/* ═══════════ FOOTER (uitgebreid) ═══════════ */
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.4rem;
}
.footer-cols h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.footer-cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-cols a { text-decoration: none; transition: color 0.25s; }
.footer-cols a:hover { color: var(--gold-light); }
.footer-about p { margin: 0.9rem 0 0; font-size: 0.92rem; max-width: 34ch; }
.footer-about .footer-brand p { margin: 0.1rem 0 0; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: #8fa197;
}

/* ═══════════ REVEAL (JS hook) ═══════════ */
.js [data-reveal],
.js [data-hero-fade] {
  opacity: 0;
}
.js .hero-title .line > span { transform: translateY(110%); }
.js .hero-foto { opacity: 0; transform: translateX(4%); }

/* Scroll-voortgangsbalk */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 130;
  pointer-events: none;
}

/* No-JS en reduced motion: alles gewoon zichtbaar */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .js [data-reveal], .js [data-hero-fade] { opacity: 1; }
  .js .hero-title .line > span { transform: none; }
  .js .hero-foto { opacity: 1; transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .tiles.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .tiles.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero { display: flex; flex-direction: column; }
  .hero-inner {
    order: 1;
    min-height: 0;
    padding-bottom: 2.5rem;
  }
  .hero-foto {
    order: 2;
    position: relative;
    inset: auto;
    width: 100%;
    height: 46vh;
    min-height: 300px;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }
  .hero-foto img { object-position: 55% 35%; }
  .hero .ticker { order: 3; }
  .hero-protea { left: auto; right: -2.5rem; top: 6rem; bottom: auto; width: 11rem; }
  .split { grid-template-columns: 1fr; }
  .over-media { min-height: 0; height: auto; margin-bottom: 1.4rem; }
  .over-photo-main { position: relative; inset: auto; }
  .over-photo-main img { aspect-ratio: 4 / 5; }
  .over-photo-small { width: 46%; bottom: -1.4rem; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-media { min-height: 280px; }

  .nav-desktop-cta { display: none; }
  .menu-btn { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    background: var(--green-950);
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease-out), visibility 0.45s;
    visibility: hidden;
    z-index: 110;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }

  /* Open menu: transform/backdrop-filter op de header zouden anders het
     containing block van de fixed overlay worden en 'm laten inklappen. */
  .site-header.menu-open {
    transform: none;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
  }
  .site-header.menu-open .logo-wrap { position: relative; z-index: 120; }
  .site-header.menu-open .logo-text strong { color: var(--cream); }
  .site-header.menu-open .logo-text span { color: #b7c4bd; }
  .nav-links a:not(.btn) {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
  }
  .nav-links .nav-cta { display: inline-flex; margin-top: 0.8rem; }
  .site-header.menu-open .menu-btn span { background: var(--cream); }

  /* dropdown in mobiel menu: uitklaplijst in plaats van zwevend paneel */
  .dropdown { display: flex; flex-direction: column; align-items: center; }
  .dropdown > button {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
  }
  .dropdown-menu {
    position: static;
    translate: none;
    transform: none;
    display: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0.4rem 0 0;
    text-align: center;
  }
  .dropdown.open .dropdown-menu { display: grid; }
  .dropdown-menu a { color: #b7c4bd !important; font-size: 1.05rem !important; font-family: var(--font-body) !important; }
  .dropdown-menu a:hover { background: transparent; color: var(--gold-light); }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 400px; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; text-align: center; }
  .tiles.cols-4, .tiles.cols-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 1.8rem; }
  .logo-img { height: 46px; }
}
