/* ==========================================================================
   STIJLGIDS — GEWOONLeven.
   Bron-van-waarheid voor design-tokens + design-keuzes van deze site.
   Bij elke kleur-/font-/spacing-wijziging: pas zowel de :root-variabele
   hieronder als deze comments aan, zodat de stijlgids in sync blijft.
   ========================================================================== */

/* PRIMAIRE KLEUR
   #5C7A5E — saliegroen / bosgroen (gedempt). Gebruikt voor: nav-brand accent,
   section-labels, stap-nummers, bewijs-achtergrond, footer-achtergrond.
   Bewust gekozen: past bij wandelcoaching in de natuur, rust en hoop; geen
   felle tint die agressief overkomt in een rouwcontext. */

/* ACCENT KLEUR
   #C8A97E — warm zand / licht terracotta. Gebruikt voor: .btn-accent
   (primaire CTA-knoppen), hero-badge, mobile-sticky-CTA, aanbod-featured.
   Bewust gekozen: warmte, moederlijkheid, aards; contrasteert zacht met het
   groen zonder te schreeuwen. */

/* ACHTERGROND / NEUTRAAL
   #F7F3EE — gebroken wit, warm. Gebruikt voor: body-achtergrond, kaart-
   achtergrond alternatieven. Geeft lucht en rust aan de pagina; nooit koud
   zuiver wit in dit merk. */

/* TEKST
   Body: #2D2D2D (bijna-zwart, warm), Headings: #1A2E1B (donker bosgroen).
   Lijn-hoogte body 1.7, headings 1.2. */

/* TYPOGRAFIE
   Body: system-font-stack (Georgia, 'Times New Roman', serif als serif-body;
   of gewoon: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif).
   Hier gebruiken we een warme sans-serif stack voor leesbaarheid.
   Headings: dezelfde stack maar iets zwaarder.
   Schaal: 1rem body, 1.15rem h3, 1.4rem h2, clamp(1.8rem, 5vw, 3rem) h1. */

/* SPACING-SCHAAL
   Op basis van 1rem (16px). Section-padding: clamp(3.5rem, 9vw, 6rem) vertical.
   Container-padding: 16px mobile, 24px desktop. */

/* RADIUS + SHADOWS
   --radius: 10px, --radius-lg: 18px, --radius-pill: 100px.
   Schaduwen: subtiel aards: 0 2px 12px rgba(92,122,94,.10). */

/* KNOPPEN
   .btn-accent: zand (#C8A97E) achtergrond, wit/donker tekst, radius 100px,
   hover: 8% donkerder (#b5956a). Mobile: full-width sticky.
   .btn-ghost: transparant, rand in primaire kleur.
   .btn-outline: wit achtergrond, rand in primaire kleur.
   .btn-soft: licht groen achtergrond, donker tekst (op kaarten). */

/* ==========================================================================
   RESET + MOBILE FUNDAMENT (sectie 9.1)
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; max-width: 100%; }
body { overflow-x: hidden; max-width: 100%; min-width: 320px; margin: 0;
       font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                    'Helvetica Neue', Arial, sans-serif;
       font-size: 1rem; line-height: 1.7; color: var(--color-ink);
       background-color: var(--color-bg); }
img, video, iframe, svg { max-width: 100%; height: auto; }
table { max-width: 100%; }
pre, code { max-width: 100%; overflow-x: auto; word-wrap: break-word; }
p, li, dd, dt, td, h1, h2, h3, h4 { overflow-wrap: anywhere; word-break: normal; }

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */

:root {
  --color-primary:    #5C7A5E;
  --color-primary-dk: #3f5740;
  --color-accent:     #C8A97E;
  --color-accent-dk:  #b5956a;
  --color-bg:         #F7F3EE;
  --color-bg-section: #EEE9E2;
  --color-ink:        #2D2D2D;
  --color-heading:    #1A2E1B;
  --color-muted:      #6B6B6B;
  --color-white:      #FFFFFF;
  --color-border:     rgba(92,122,94,.18);

  --radius:      10px;
  --radius-lg:   18px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(92,122,94,.08);
  --shadow-md: 0 4px 20px rgba(92,122,94,.12);

  --section-pad: clamp(3.5rem, 9vw, 6rem);
  --container-pad: 16px;
}

@media (min-width: 720px) {
  :root { --container-pad: 24px; }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.container {
  width: min(1080px, 100% - calc(var(--container-pad) * 2));
  margin-inline: auto;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* Skip-link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 8px 14px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* Section labels + titles */
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.2;
  margin: 0 0 1rem;
}
.section-intro {
  color: var(--color-muted);
  max-width: 64ch;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
  white-space: normal;
  text-align: center;
}
@media (min-width: 720px) {
  .btn { white-space: nowrap; }
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-accent:hover { background: var(--color-accent-dk); border-color: var(--color-accent-dk); }

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-ghost:hover { background: var(--color-primary); color: var(--color-white); }

.btn-outline {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); }

.btn-soft {
  background: rgba(200,169,126,.15);
  color: var(--color-primary-dk);
  border-color: rgba(200,169,126,.5);
}
.btn-soft:hover { background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }

.btn-full { display: block; width: 100%; }

/* ==========================================================================
   HEADER + NAV
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(247,243,238,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}

.nav-toggle { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px var(--container-pad);
  gap: 14px;
  max-width: min(1080px, 100%);
  margin-inline: auto;
}

.brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-heading);
  text-decoration: none;
  letter-spacing: -.02em;
}
.brand-dot { color: var(--color-primary); }

.brand--logo { display: flex; align-items: center; }
.brand__logo { height: 44px; width: auto; display: block; mix-blend-mode: multiply; }

.hamburger {
  display: none;
  cursor: pointer;
  width: 32px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  height: 3px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: var(--color-ink);
  font-weight: 500;
  font-size: .92rem;
}
.nav-menu a:hover { color: var(--color-primary); }
.nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.nav-cta:hover { background: var(--color-accent-dk) !important; color: var(--color-white) !important; }

@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: stretch;
    padding: 8px 0;
    background: var(--color-bg);
  }
  .nav-menu li { border-top: 1px solid var(--color-border); }
  .nav-menu a { display: block; padding: 14px 8px; }
  .nav-toggle:checked ~ .site-nav .nav-menu { display: flex; }
  .nav-toggle:checked ~ .site-nav .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .nav-toggle:checked ~ .site-nav .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .site-nav .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  background: linear-gradient(135deg, #EBF0EB 0%, #F7F3EE 60%, #EEE9E2 100%);
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 720px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: .75rem;
}

.hero__title {
  font-size: clamp(1.7rem, 4.5vw, 2.9rem);
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.15;
  margin: 0 0 1.1rem;
}

.hero__sub {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 52ch;
  margin-bottom: 2rem;
  line-height: 1.65;
}
@media (max-width: 720px) {
  .hero__sub { margin-inline: auto; }
}

.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
@media (max-width: 720px) {
  .hero__cta-row { justify-content: center; }
  .hero__cta-primary { display: none; }
}

.hero__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .82rem;
  color: var(--color-primary-dk);
  font-weight: 600;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero__trust li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .hero__trust { align-items: center; }
}

.hero__image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__img {
  border-radius: 50%;
  width: min(380px, 100%);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
@media (max-width: 720px) {
  .hero__img { width: min(260px, 80vw); }
}

/* Staand portret — geen cirkel, maar zacht afgeronde rechthoek */
.hero__img--portret {
  border-radius: var(--radius-lg);
  aspect-ratio: auto;
  width: min(340px, 100%);
  height: auto;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 720px) {
  .hero__img--portret { width: min(240px, 72vw); }
}

.hero__badge {
  position: absolute;
  bottom: 20px;
  right: 10px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) {
  .hero__badge { bottom: 10px; right: calc(50% - 70px); }
}

.hero__badge-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.hero__badge-text {
  font-size: .72rem;
  font-weight: 600;
  opacity: .9;
}

/* ==========================================================================
   VOOR-WIE
   ========================================================================== */

.voor-wie {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
@media (max-width: 720px) {
  .card { box-shadow: 0 2px 8px rgba(92,122,94,.06); }
}

.card__img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  margin: 28px auto 0;
  box-shadow: 0 2px 12px rgba(92,122,94,.12);
}
@media (max-width: 720px) {
  .card__img { width: 140px; height: 140px; margin-top: 20px; }
}

.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
@media (max-width: 720px) {
  .card__body { padding: 20px 16px; }
}

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0;
  line-height: 1.3;
}

.card__body p { margin: 0; color: var(--color-ink); font-size: .95rem; }

.card__body .btn { margin-top: auto; align-self: flex-start; }

.voor-wie__extra {
  background: rgba(92,122,94,.07);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  font-size: .95rem;
}
@media (max-width: 720px) {
  .voor-wie__extra { padding: 16px; }
}

/* ==========================================================================
   UITKOMST
   ========================================================================== */

.uitkomst {
  padding: var(--section-pad) 0;
  background: var(--color-bg-section);
}

.uitkomst__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.uitkomst__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) {
  .uitkomst__item { padding: 18px 16px; gap: 1rem; }
}

.uitkomst__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(92,122,94,.12);
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: .1rem;
}
.uitkomst__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.uitkomst__item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-heading);
  margin-bottom: .4rem;
}
.uitkomst__item p { margin: 0; color: var(--color-muted); font-size: .95rem; }

/* ==========================================================================
   METHODE
   ========================================================================== */

.methode {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.stappen {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: stap-counter;
}

.stap {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) {
  .stap { padding: 18px 16px; gap: 1rem; }
}

.stap__nummer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stap__content { flex: 1; }
.stap__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 .5rem;
}
.stap__content p { margin: 0 0 .5rem; font-size: .95rem; color: var(--color-ink); }
.stap__meta {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(92,122,94,.1);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
}

/* Stappentabel — compacte weergave werkwijze */
.stappen-tabel {
  display: flex;
  flex-direction: column;
  margin: 0 0 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stappen-tabel__rij {
  display: grid;
  grid-template-columns: 180px 1fr 160px;
  align-items: center;
  gap: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: background .15s;
}
.stappen-tabel__rij:last-child { border-bottom: none; }
.stappen-tabel__rij:hover { background: var(--color-white); }

.stappen-tabel__label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 20px 24px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--color-heading);
  border-right: 1px solid var(--color-border);
}

.stap__nummer-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 800;
  font-size: .82rem;
  flex-shrink: 0;
}

.stappen-tabel__inhoud {
  padding: 20px 24px;
}
.stappen-tabel__inhoud p {
  margin: 0;
  font-size: .93rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.stappen-tabel__meta {
  padding: 20px 20px 20px 0;
  font-size: .78rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .stappen-tabel__rij {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stappen-tabel__label {
    padding: 16px 16px 12px;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .stappen-tabel__inhoud { padding: 12px 16px 8px; }
  .stappen-tabel__meta { padding: 8px 16px 16px; text-align: left; }
}

.methode__locatie {
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) {
  .methode__locatie { grid-template-columns: 1fr; }
}

.methode__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .methode__img { min-height: 180px; height: 180px; }
}

.methode__locatie-tekst {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 720px) {
  .methode__locatie-tekst { padding: 24px 16px; }
}

.methode__locatie-tekst h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 .75rem;
}
.methode__locatie-tekst p { margin: 0; color: var(--color-muted); font-size: .95rem; }

/* ==========================================================================
   BEWIJS
   ========================================================================== */

.bewijs {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #EBF0EB 0%, #F7F3EE 100%);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 720px) {
  .testimonials { grid-template-columns: 1fr; }
}

.testimonial {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 720px) {
  .testimonial { padding: 20px 16px; }
}

.testimonial p {
  margin: 0;
  font-style: italic;
  color: var(--color-ink);
  line-height: 1.65;
  font-size: .97rem;
}
.testimonial p::before { content: '\201C'; }
.testimonial p::after  { content: '\201D'; }

.testimonial footer { margin-top: auto; }
.testimonial footer strong { color: var(--color-heading); font-size: .95rem; }
.testimonial footer span { color: var(--color-muted); font-size: .85rem; display: block; }

.bewijs__registraties {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) {
  .bewijs__registraties { padding: 20px 16px; }
}

.bewijs__reg-titel {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 1rem;
}

.bewijs__reg-lijst {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.bewijs__reg-lijst li { font-size: .9rem; color: var(--color-ink); padding-left: 1.2em; position: relative; }
.bewijs__reg-lijst li::before { content: '✓'; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }
.bewijs__reg-lijst a { color: var(--color-primary); }

.bewijs__opleiding {
  font-size: .88rem;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   AANBOD
   ========================================================================== */

.aanbod {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.tarieven-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}
@media (max-width: 720px) {
  .tarieven-grid { grid-template-columns: 1fr; }
}

.tarief-kaart {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 2px solid transparent;
}
@media (max-width: 720px) {
  .tarief-kaart { padding: 22px 16px; }
}

.tarief-kaart--featured {
  background: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}
@media (max-width: 720px) {
  .tarief-kaart--featured { box-shadow: 0 4px 16px rgba(92,122,94,.1); }
}

.tarief-kaart__header { position: relative; }
.tarief-kaart__label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  margin-bottom: .75rem;
}
.tarief-kaart__header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0;
}

.tarief-kaart__prijs { display: flex; flex-direction: column; gap: .1rem; }
.tarief-kaart__bedrag {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.tarief-kaart__per { font-size: .82rem; color: var(--color-muted); }

.tarief-kaart__lijst {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.tarief-kaart__lijst li {
  font-size: .9rem;
  color: var(--color-ink);
  padding-left: 1.2em;
  position: relative;
}
.tarief-kaart__lijst li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.aanbod__zakelijk,
.aanbod__vergoeding {
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 1.5rem;
}
@media (max-width: 720px) {
  .aanbod__zakelijk,
  .aanbod__vergoeding { padding: 20px 16px; }
}

.aanbod__zakelijk h3,
.aanbod__vergoeding h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 .75rem;
}
.aanbod__zakelijk p,
.aanbod__vergoeding p,
.aanbod__vergoeding ul { margin: 0 0 .75rem; font-size: .95rem; color: var(--color-ink); }
.aanbod__vergoeding ul { padding-left: 1.5rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  padding: var(--section-pad) 0;
  background: var(--color-bg-section);
}

.faq__lijst {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq__item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq__vraag {
  padding: 20px 24px;
  font-weight: 600;
  font-size: .97rem;
  color: var(--color-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 720px) {
  .faq__vraag { padding: 16px; font-size: .93rem; }
}

.faq__vraag::-webkit-details-marker { display: none; }
.faq__vraag::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] .faq__vraag::after { transform: rotate(45deg); }

.faq__antwoord {
  padding: 0 24px 20px;
  color: var(--color-ink);
  font-size: .95rem;
  line-height: 1.65;
}
@media (max-width: 720px) {
  .faq__antwoord { padding: 0 16px 16px; }
}
.faq__antwoord p { margin: 0; }

/* ==========================================================================
   OVER AMBER
   ========================================================================== */

.over-amber {
  padding: var(--section-pad) 0;
  background: var(--color-bg-section);
}

.over-amber__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .over-amber__inner { grid-template-columns: 1fr; }
}

.over-amber__foto-wrap {
  position: sticky;
  top: 90px;
}
@media (max-width: 900px) {
  .over-amber__foto-wrap { position: static; display: flex; justify-content: center; }
}

.over-amber__foto {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
@media (max-width: 900px) {
  .over-amber__foto { max-width: 260px; }
}

.over-amber__tekst p {
  color: var(--color-ink);
  font-size: .97rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.over-amber__kwalificaties {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}

.over-amber__kwalificaties span {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-primary-dk);
  background: rgba(92,122,94,.1);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 720px) {
  .contact__inner { grid-template-columns: 1fr; }
}

.contact__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: 1.5rem;
  display: block;
}
.contact__img--profiel {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-md);
}
@media (max-width: 720px) {
  .contact__img { height: 200px; margin-top: 1rem; }
  .contact__img--profiel { width: 120px; height: 120px; }
}

.contact__gegevens {
  list-style: none;
  margin: 1.5rem 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: .95rem;
}
.contact__gegevens a { color: var(--color-primary); }

.contact__social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact__social a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
}
.contact__social a:hover { background: var(--color-primary); color: var(--color-white); }

/* WhatsApp knop */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: .92rem;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  margin-top: 1rem;
  margin-bottom: 2rem;
  transition: background .2s;
  width: fit-content;
}
.btn-whatsapp:hover { background: var(--color-primary-dk); }

/* Terug naar boven */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(92,122,94,.30);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s;
}
.back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--color-primary-dk); }
@media (max-width: 720px) {
  .back-to-top { bottom: 80px; right: 16px; }
}

/* Form */
.contact__form-wrap {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 720px) {
  .contact__form-wrap { padding: 22px 16px; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--color-heading);
}

.optional {
  font-weight: 400;
  color: var(--color-muted);
  font-size: .82rem;
}

.form-group input,
.form-group textarea {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--color-ink);
  background: var(--color-white);
  width: 100%;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-group textarea { resize: vertical; }

.cf-turnstile { margin-bottom: 1rem; }

.form-privacy {
  font-size: .8rem;
  color: var(--color-muted);
  margin-top: .75rem;
  line-height: 1.5;
}
.form-privacy a { color: var(--color-primary); }

.form-status {
  margin-top: 1rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(92,122,94,.1);
  color: var(--color-primary-dk);
  font-size: .9rem;
  font-weight: 600;
}
.form-status[hidden] { display: none; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,.9);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; padding-top: 2.5rem; }
}

.site-footer .brand { color: var(--color-white); font-size: 1.3rem; }
.site-footer .brand-dot { color: var(--color-accent); }
.footer__brand-name {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--color-white);
  margin-bottom: .85rem;
  line-height: 1;
}
.footer__brand-accent { color: var(--color-accent); }
.footer__brand-dot { color: var(--color-accent); }

.footer__logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: .85rem;
  mix-blend-mode: lighten;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.footer__social a {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  transition: background .15s, color .15s;
}
.footer__social a:hover {
  background: rgba(255,255,255,.15);
  color: var(--color-white);
}

.footer__brand p {
  font-size: .88rem;
  line-height: 1.65;
  margin: .75rem 0 0;
  opacity: .85;
}

.footer__contact h3,
.footer__nav h3 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-accent);
  margin: 0 0 .75rem;
}

.footer__contact p { font-size: .88rem; margin: 0 0 .4rem; opacity: .85; }
.footer__contact a { color: rgba(255,255,255,.9); }

.footer__nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.footer__nav a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .88rem; }
.footer__nav a:hover { color: var(--color-white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 1.25rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__bottom p {
  margin: 0;
  font-size: .8rem;
  opacity: .7;
}
.footer__bottom a { color: rgba(255,255,255,.85); }

.footer__demo-disclaimer {
  font-size: .78rem;
  background: rgba(255,200,100,.18);
  border-radius: 6px;
  padding: 6px 12px;
  display: inline-block;
  color: rgba(255,255,255,.9) !important;
  opacity: 1 !important;
}

.eo-credit { font-size: .78rem; opacity: .6; }
.eo-credit a { color: rgba(255,255,255,.7); }

/* ==========================================================================
   MOBILE STICKY CTA (sectie 9 — pure CSS zichtbaar op mobiel)
   ========================================================================== */

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 16px;
  background: rgba(247,243,238,.97);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(92,122,94,.12);
}
@media (max-width: 720px) {
  .mobile-sticky-cta { display: block; }
}

/* ==========================================================================
   MODALS (sectie 7.5)
   ========================================================================== */

dialog.modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: min(580px, calc(100vw - 32px));
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
@media (max-width: 720px) {
  dialog.modal {
    max-width: 100vw;
    max-height: 100dvh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: auto 0 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,.15);
  }
}

dialog.modal::backdrop {
  background: rgba(26,46,27,.55);
  backdrop-filter: blur(3px);
}

dialog.modal h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0;
  padding: 24px 56px 20px 28px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
@media (max-width: 720px) {
  dialog.modal h2 { padding: 20px 48px 16px 20px; }
}

.modal-body {
  padding: 24px 28px 28px;
  max-height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-size: .93rem;
  line-height: 1.7;
  color: var(--color-ink);
}
@media (max-width: 720px) {
  .modal-body { padding: 18px 20px 24px; max-height: 65dvh; }
}

.modal-body h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 1.5rem 0 .4rem;
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { margin: 0 0 .75rem; }
.modal-body a { color: var(--color-primary); }

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-ink);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background .15s;
}
.modal-close:hover { background: var(--color-bg-section); }

/* EO:APPEARANCE start */
html { scroll-behavior: smooth; }
/* EO:APPEARANCE end */
