/* ============================================================
   SHANTI — Inner Peace
   Design system: warm crème, diepgroen, goud (uit het logo)
   Typografie: Fraunces (display serif) + Manrope (sans)
   ============================================================ */

:root {
  --cream: #F8F2EC;
  --cream-2: #EFE7DE;
  --cream-3: #E7DDD1;
  --ink: #1D1D1D;
  --ink-soft: #3d3a36;
  --green: #254719;
  --green-deep: #182f10;
  --green-dark: #101F0B;
  --green-2: #396d26;
  --gold: #C08A3E;
  --gold-soft: #D9B57C;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, "Helvetica Neue", sans-serif;

  --radius: 22px;
  --radius-lg: 32px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --shadow-soft: 0 20px 60px -25px rgba(29, 29, 29, .25);
  --shadow-card: 0 30px 80px -35px rgba(24, 47, 16, .35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
::selection { background: var(--green); color: var(--cream); }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display-xl { font-size: clamp(2.9rem, 7.5vw, 6.2rem); }
.display-lg { font-size: clamp(2.3rem, 5vw, 4.2rem); }
.display-md { font-size: clamp(1.8rem, 3.4vw, 2.9rem); }
.display-sm { font-size: clamp(1.35rem, 2.2vw, 1.8rem); }
em.accent {
  font-style: italic;
  font-weight: 400;
  color: var(--green-2);
}
.on-dark em.accent { color: var(--gold-soft); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); }
.muted { color: rgba(29,29,29,.62); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 38px; height: 1px;
  background: var(--gold);
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }
.section { padding: clamp(70px, 10vw, 140px) 0; }
.section-tight { padding: clamp(50px, 7vw, 90px) 0; }
.bg-cream-2 { background: var(--cream-2); }
.bg-green { background: var(--green-deep); }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark p { color: var(--cream); }
.on-dark .muted { color: rgba(248,242,236,.65); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split.reverse > .split-media { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 14px 34px -14px rgba(37, 71, 25, .55);
}
.btn-primary:hover { background: var(--green-2); box-shadow: 0 20px 40px -14px rgba(37, 71, 25, .6); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 14px 34px -14px rgba(192, 138, 62, .6);
}
.btn-gold:hover { background: #ad7a32; }
.btn-outline {
  border: 1.5px solid rgba(29,29,29,.25);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.on-dark .btn-outline { border-color: rgba(248,242,236,.4); color: var(--cream); }
.on-dark .btn-outline:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn-whatsapp {
  background: #1f8f4d;
  color: #fff;
  box-shadow: 0 14px 34px -14px rgba(31, 143, 77, .55);
}
.btn-whatsapp:hover { background: #23a257; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--green);
  font-size: .95rem;
}
.link-arrow svg { width: 18px; height: 18px; transition: transform .3s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 18px 0;
}
.site-header .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.scrolled {
  background: rgba(248, 242, 236, .88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(29,29,29,.07), 0 12px 40px -20px rgba(29,29,29,.18);
  padding: 10px 0;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 62px; width: auto; transition: height .4s; }
.site-header.scrolled .brand img { height: 48px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 14px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 999px;
  transition: background .25s, color .25s;
  position: relative;
}
.main-nav a:hover { color: var(--green-2); }
.main-nav a.active { color: var(--green); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}
.header-cta { flex: none; }
.header-cta .btn { padding: 12px 22px; font-size: .88rem; }

/* Header over hero (transparent, light text) */
.header-on-hero:not(.scrolled) .main-nav a { color: rgba(255,255,255,.92); }
.header-on-hero:not(.scrolled) .main-nav a:hover,
.header-on-hero:not(.scrolled) .main-nav a.active { color: #fff; }
.header-on-hero:not(.scrolled) .brand img { filter: brightness(0) invert(1); }

/* Burger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  position: relative;
  z-index: 130;
  flex: none;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .4s var(--ease-out), opacity .3s, background .3s, top .4s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.header-on-hero:not(.scrolled) .nav-toggle span { background: #fff; }
body.nav-open .nav-toggle span { background: var(--cream) !important; }
body.nav-open .nav-toggle span:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px var(--gutter) 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease-out), visibility .45s;
}
body.nav-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a.menu-link {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 2.9rem);
  color: var(--cream);
  padding: 8px 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .3s;
}
.mobile-menu a.menu-link:hover, .mobile-menu a.menu-link.active { color: var(--gold-soft); }
.mobile-menu a.menu-link .num {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .15em;
}
body.nav-open .mobile-menu a.menu-link { opacity: 1; transform: none; }
.mobile-menu .menu-footer {
  margin-top: 40px;
  color: rgba(248,242,236,.6);
  font-size: .9rem;
  opacity: 0;
  transition: opacity .6s .35s;
}
body.nav-open .mobile-menu .menu-footer { opacity: 1; }
body.nav-open { overflow: hidden; }

@media (max-width: 1080px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero (home, met video) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 100vw;
  height: 56.25vw;       /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;   /* 16:9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16,31,11,.55) 0%, rgba(16,31,11,.18) 40%, rgba(16,31,11,.72) 100%),
    radial-gradient(120% 90% at 20% 85%, rgba(16,31,11,.55), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 120px;
  width: 100%;
}
.hero h1 { color: #fff; max-width: 14ch; }
.hero .hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  color: var(--gold-soft);
  margin-top: 18px;
}
.hero .hero-text {
  color: rgba(255,255,255,.82);
  max-width: 52ch;
  margin-top: 26px;
  font-size: 1.05rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

.scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.75);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(rgba(255,255,255,.8), transparent);
  animation: cue 2.2s var(--ease-out) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Woord-voor-woord reveal in hero */
.words .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.words .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: word-in 1s var(--ease-out) forwards;
}
@keyframes word-in { to { transform: translateY(0); } }

/* ---------- Page hero (subpaginas) ---------- */
.page-hero {
  position: relative;
  min-height: clamp(480px, 68svh, 680px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-dark);
}
.page-hero .hero-content { padding: 180px 0 clamp(50px, 7vw, 90px); }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: var(--gold-soft);
  margin-top: 16px;
  max-width: 46ch;
  line-height: 1.4;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--green-deep);
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid rgba(248,242,236,.08);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--cream);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.marquee-track span::after {
  content: "✦";
  margin: 0 28px;
  color: var(--gold);
  font-size: .8em;
  font-style: normal;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Media frames ---------- */
.frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.frame:hover img { transform: scale(1.04); }
.frame-tall { aspect-ratio: 4 / 5; }
.frame-wide { aspect-ratio: 16 / 10; }
.frame-square { aspect-ratio: 1; }

.collage {
  position: relative;
  padding-bottom: 56px;
}
.collage .frame-main { aspect-ratio: 4/5; width: 86%; }
.collage .frame-float {
  position: absolute;
  right: 0; bottom: 0;
  width: 52%;
  aspect-ratio: 4/3;
  border: 6px solid var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.collage .frame-float img { width: 100%; height: 100%; object-fit: cover; }
.collage .badge-float {
  position: absolute;
  top: -28px; right: 6%;
  width: clamp(90px, 10vw, 130px);
  filter: drop-shadow(0 16px 30px rgba(24,47,16,.25));
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateY(-10px) rotate(2deg); } }

/* ---------- Statement / parallax band ---------- */
.statement {
  position: relative;
  padding: clamp(110px, 16vw, 200px) 0;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@supports (-webkit-touch-callout: none) {
  .statement { background-attachment: scroll; }
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16,31,11,.78), rgba(37,71,25,.55));
}
.statement .container { position: relative; z-index: 1; text-align: center; }
.statement h2 { color: #fff; margin: 0 auto; max-width: 22ch; }
.statement .eyebrow { color: var(--gold-soft); justify-content: center; }
.statement .eyebrow::before { background: var(--gold-soft); }

/* ---------- Offer cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px -20px rgba(29,29,29,.15);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.offer-card .card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.offer-card .card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.offer-card:hover .card-media img { transform: scale(1.07); }
.offer-card .card-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,31,11,.35));
  opacity: 0;
  transition: opacity .5s;
}
.offer-card:hover .card-media::after { opacity: 1; }
.offer-card .card-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.offer-card h3 { font-size: 1.35rem; }
.offer-card p { font-size: .95rem; color: rgba(29,29,29,.65); flex: 1; }
.offer-card .card-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(248,242,236,.92);
  color: var(--green);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}

/* ---------- Icon grid (9D technieken) ---------- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.icon-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  border: 1px solid rgba(29,29,29,.05);
}
.icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.icon-card .icon-wrap {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cream), var(--cream-3));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.icon-card .icon-wrap img { width: 34px; height: 34px; object-fit: contain; }
.icon-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.icon-card p { font-size: .9rem; color: rgba(29,29,29,.62); }
.icon-card .num {
  float: right;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
}

/* ---------- Steps ---------- */
.steps { display: grid; gap: 0; max-width: 760px; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(29,29,29,.1);
}
.step:last-child { border-bottom: none; }
.step .step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  background: var(--white);
}
.step h3 { font-size: 1.15rem; margin-bottom: 4px; }
.step p { color: rgba(29,29,29,.65); font-size: .97rem; }

/* ---------- Pricing chips ---------- */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid rgba(29,29,29,.06);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.price-card.featured {
  background: var(--green-deep);
  color: var(--cream);
}
.price-card.featured h3, .price-card.featured .price { color: var(--cream); }
.price-card.featured p { color: rgba(248,242,236,.7); }
.price-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.price-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.price-card .price small {
  font-family: var(--font-body);
  font-size: .85rem;
  color: inherit;
  opacity: .6;
  font-weight: 600;
}
.price-card p { font-size: .92rem; color: rgba(29,29,29,.65); }

/* ---------- Testimonials ---------- */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  align-items: start;
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 10px 40px -22px rgba(29,29,29,.18);
}
.quote-card::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 1;
  color: var(--gold);
  display: block;
  height: 44px;
}
.quote-card h3 { font-size: 1.2rem; margin-bottom: 10px; font-style: italic; font-weight: 500; }
.quote-card p { font-size: .95rem; color: rgba(29,29,29,.68); }
.quote-card .quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(29,29,29,.08);
}
.quote-card .quote-author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.avatar-initial {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
}
.quote-featured .avatar-initial {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--green-dark);
}
.quote-card .quote-author .name { font-weight: 800; font-size: .92rem; }
.quote-card .quote-author .role { font-size: .8rem; color: rgba(29,29,29,.5); }

.quote-featured {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.quote-featured blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}
.on-dark .quote-featured blockquote { color: var(--cream); }
.quote-featured .quote-author {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 700;
}
.quote-featured .quote-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---------- Accordion ---------- */
.accordion { max-width: 820px; margin: 0 auto; }
.accordion details {
  border-bottom: 1px solid rgba(29,29,29,.12);
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  transition: color .3s;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { color: var(--green-2); }
.accordion summary .acc-icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(29,29,29,.2);
  display: grid;
  place-items: center;
  transition: transform .45s var(--ease-out), background .3s, border-color .3s;
}
.accordion summary .acc-icon::before {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  transition: color .3s;
}
.accordion details[open] summary { color: var(--green); }
.accordion details[open] .acc-icon {
  background: var(--green);
  border-color: var(--green);
  transform: rotate(45deg);
}
.accordion details[open] .acc-icon::before { color: var(--cream); }
.accordion .acc-body {
  padding: 0 4px 30px;
  color: rgba(29,29,29,.7);
  max-width: 68ch;
}
.accordion .acc-body ul { list-style: disc; padding-left: 22px; margin: 12px 0; }
.accordion .acc-body li { margin: 4px 0; }

/* ---------- Video embed ---------- */
.video-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-card);
  background: var(--green-dark);
}
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Notice / info blocks ---------- */
.notice {
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  font-size: .95rem;
}
.notice strong { color: var(--green); }
.check-list li, .cross-list li {
  position: relative;
  padding-left: 34px;
  margin: 10px 0;
}
.check-list li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 1px;
  color: var(--gold);
}
.cross-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--green-deep);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -180px; top: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,138,62,.22), transparent 65%);
}
.cta-band::after {
  content: "";
  position: absolute;
  left: -220px; bottom: -260px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,109,38,.35), transparent 65%);
}
.cta-band .container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: clamp(80px, 11vw, 150px);
  padding-bottom: clamp(80px, 11vw, 150px);
}
.cta-band h2 { color: var(--cream); max-width: 20ch; margin: 0 auto; }
.cta-band p { color: rgba(248,242,236,.7); max-width: 52ch; margin: 20px auto 0; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
}
.contact-line {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(29,29,29,.08);
}
.contact-line:last-of-type { border-bottom: none; }
.contact-line .ico {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--cream);
  display: grid;
  place-items: center;
  color: var(--green);
}
.contact-line .ico svg { width: 20px; height: 20px; }
.contact-line .label { font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.contact-line a:hover { color: var(--green-2); }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 420px;
  height: 100%;
}
.map-frame iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: saturate(.85);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: rgba(248,242,236,.75);
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  padding-bottom: 60px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand img { height: 70px; filter: brightness(0) invert(1) sepia(.2); opacity: .95; }
.footer-mission { margin-top: 22px; max-width: 42ch; font-size: .95rem; line-height: 1.75; }
.site-footer h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
}
.site-footer ul li { margin: 10px 0; }
.site-footer a { transition: color .25s; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(248,242,236,.12);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .85rem;
  color: rgba(248,242,236,.5);
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1f8f4d;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 16px 40px -12px rgba(31,143,77,.65);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Reveal animaties ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
[data-reveal].in-view {
  opacity: 1;
  transform: none;
}
[data-reveal="left"] { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal="left"].in-view,
[data-reveal="right"].in-view,
[data-reveal="scale"].in-view { transform: none; }

/* Op mobiel geen achtergrondvideo: poster volstaat en bespaart data */
@media (max-width: 768px) {
  .hero-media iframe { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Helpers ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.mt-1 { margin-top: 14px; }
.mt-2 { margin-top: 26px; }
.mt-3 { margin-top: 42px; }
.text-center { text-align: center; }
