/* ==========================================================================
   STIJLGIDS — Lots Marketing Consultancy
   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
   #2D4A3E — donker mosgroen. Bewuste keuze: staat voor betrouwbaarheid,
   stabiliteit en groei. Onderscheidt van typisch bureau-blauw. Past bij
   "eerlijke marketing" en de no-nonsense Dutch nuchterheid van de propositie.
   Gebruikt voor: nav-achtergrond, section-headers, headings, borders, footer,
   hero-badge, stat-nummers. */

/* ACCENT KLEUR
   #E8A87C — warm terracotta/zalmtint. Brengt menselijkheid en warmte.
   Contrasteert goed met het primaire groen. Voorkomt dat de site te koud oogt.
   Gebruikt voor: primaire knoppen (btn-accent), stap-nummers, hover-states,
   mobile-sticky-CTA, actieve focus-outlines, featured-testimonial-border. */

/* ACHTERGROND
   #F7F4EF — warme off-white/perkament. Vervangt koud puur wit. Geeft een
   "editoriale" warmte en reduceert oogvermoeidheid. Bron: Stitch design-system.
   Gebruikt voor: body-achtergrond, card-achtergrond (lichtere variant). */

/* TEKST
   Body: #1C1B1B (near-black, hoog contrast). Headings: #163328 (donkerder
   groen, geeft typografische diepte). Subtiele tekst (labels, meta): #424844.
   Lijnhoogte body: 1.6, headings: 1.2–1.4. */

/* TYPOGRAFIE
   Headings: Libre Caslon Text (Google Fonts — serif, autoriteit + literaire
   kwaliteit). Body/labels: Inter (system-stack als fallback).
   Schaal: 1rem body (16px), 1.125rem body-lg, 1.5rem h3, 2rem h2,
   clamp(2rem, 5vw, 3rem) h1. Label-tags: 0.75rem, letterSpacing 0.08em. */

/* SPACING-SCHAAL
   Op basis van 8px (Stitch-systeem). Section-padding: clamp(4rem, 10vw, 6rem)
   vertical. Container max-width: 1200px. Gutter: 24px. */

/* RADIUS + SHADOWS
   --radius: 0.5rem (8px), --radius-lg: 1rem (16px), --radius-full: 9999px.
   Schaduwen: geen standaard-drop-shadows (Dutch minimalisme). Floating
   elements: 0 4px 16px rgba(0,0,0,.08). */

/* KNOPPEN
   .btn-accent: terracotta (#E8A87C) achtergrond, witte tekst, geen border,
   radius 9999px (pill), padding 0.8rem 2rem, font-weight 600.
   hover: filter brightness(0.93) — subtiele verduistering.
   .btn-outline: transparant, 1.5px border primaire kleur, zelfde radius.
   Mobile: full-width in sticky-bar. */

/* ==========================================================================
   CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Kleuren */
  --color-primary:        #163328;
  --color-primary-mid:    #2D4A3E;
  --color-accent:         #E8A87C;
  --color-accent-dark:    #d4915e;
  --color-bg:             #F7F4EF;
  --color-bg-card:        #ffffff;
  --color-bg-alt:         #F0EDED;
  --color-text:           #1C1B1B;
  --color-text-sub:       #424844;
  --color-text-muted:     #727974;
  --color-outline:        #C1C8C3;
  --color-border:         rgba(45, 74, 62, 0.15);

  /* Typografie */
  --font-heading: 'Libre Caslon Text', 'Georgia', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.75rem;
  --space-md:   1.5rem;
  --space-lg:   3rem;
  --space-xl:   5rem;
  --section-pad: clamp(4rem, 10vw, 6rem);
  --container:  1200px;
  --gutter:     1.5rem;

  /* Radius */
  --radius:     0.5rem;
  --radius-lg:  1rem;
  --radius-full: 9999px;

  /* Schaduwen */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-float: 0 4px 16px rgba(0,0,0,.08);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary-mid);
  text-decoration: underline;
}

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

ul, ol { list-style: none; }

/* Google Fonts — Libre Caslon Text (enige uitzondering op no-external-fonts voor headings) */
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

/* ==========================================================================
   HULPKLASSEN
   ========================================================================== */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.centered { text-align: center; }

.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-sub);
  margin-bottom: 0.75rem;
}

.label-tag--centered { display: block; text-align: center; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--color-text-sub);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section-text {
  font-size: 1.0625rem;
  color: var(--color-text-sub);
  max-width: 540px;
  margin-bottom: var(--space-lg);
}

/* Honeypot */
.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   KNOPPEN
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: filter 0.15s ease, transform 0.1s ease, background 0.15s ease;
}

.btn:hover { filter: brightness(0.93); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-accent {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-mid);
  border-color: var(--color-primary-mid);
}

.btn-submit { width: 100%; margin-top: 0.5rem; }

/* ==========================================================================
   NAVIGATIE
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-primary-mid);
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo { text-decoration: none; }

.logo-img {
  height: 38px;
  width: auto;
  border-radius: var(--radius);
  object-fit: contain;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--color-primary-mid);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.nav-menu--open { display: flex; }

.nav-link {
  display: block;
  padding: 0.65rem 1.5rem;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--color-accent); }

.nav-link--cta {
  color: var(--color-accent);
  font-weight: 600;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.2s;
}

@media (min-width: 720px) {
  .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    border: none;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-toggle { display: none; }

  .nav-link { padding: 0.5rem 1rem; border-radius: var(--radius-full); }
  .nav-link--cta {
    background: var(--color-accent);
    color: white;
    padding: 0.5rem 1.25rem;
    margin-left: 0.5rem;
    border-radius: var(--radius-full);
  }
  .nav-link--cta:hover { color: white; filter: brightness(0.93); }
}

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

.hero {
  padding-block: var(--section-pad);
  background: var(--color-bg);
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero__content { order: 2; }
.hero__visual  { order: 1; }

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-primary-mid);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.hero__sub {
  font-size: 1rem;
  color: var(--color-text-sub);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-item {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-sub);
  background: var(--color-bg-alt);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

.hero__photo {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 4/5;
}

.hero__badge {
  display: inline-flex;
  flex-direction: column;
  background: var(--color-primary-mid);
  color: white;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.875rem;
}

.hero__badge strong { font-weight: 700; font-size: 1rem; }
.hero__badge span   { opacity: 0.8; font-size: 0.8125rem; }

@media (min-width: 720px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-xl);
  }

  .hero__content { order: 1; flex: 1 1 50%; }
  .hero__visual  { order: 2; flex: 0 0 44%; }

  .hero__photo { margin-inline: 0; }
}

/* ==========================================================================
   VOOR-WIE (Probleem-herkenning)
   ========================================================================== */

.voor-wie {
  padding-block: var(--section-pad);
  background: var(--color-bg-alt);
}

.cards-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: var(--space-lg);
}

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.card__text { font-size: 0.9375rem; color: var(--color-text-sub); }

.voor-wie__quote {
  background: var(--color-primary-mid);
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: center;
  margin-top: 2rem;
}

.voor-wie__quote blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.375rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  opacity: 0.95;
}

.voor-wie__cta-line {
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

@media (min-width: 720px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

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

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

.uitkomst__grid {
  display: grid;
  gap: 2rem;
}

.uitkomst__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0 1.25rem;
  align-items: start;
}

.uitkomst__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  padding-top: 0.2rem;
}

.uitkomst__item h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.uitkomst__item p { font-size: 0.9375rem; color: var(--color-text-sub); }

@media (min-width: 720px) {
  .uitkomst__grid { grid-template-columns: 1fr 1fr; }
}

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

.aanpak {
  padding-block: var(--section-pad);
  background: var(--color-bg-alt);
}

.aanpak__intro { margin-bottom: var(--space-lg); }

.aanpak__stappen {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--color-border);
  padding-left: 0;
  margin-left: 1.5rem;
  margin-bottom: var(--space-lg);
}

.aanpak__stap {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2.25rem;
  padding-left: 1rem;
}

.aanpak__stap:last-child { padding-bottom: 0; }

.stap-nr {
  position: absolute;
  left: -1.75rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.stap-content h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.stap-content p {
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  margin-bottom: 0.5rem;
}

.stap-meta {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.aanpak__cta { text-align: center; }

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

.bewijs {
  padding-block: var(--section-pad);
  background: var(--color-bg);
}

.testimonials-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: var(--space-lg);
}

.testimonial {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 0;
}

.testimonial--featured {
  border-color: var(--color-accent);
  border-width: 2px;
}

.testimonial blockquote p {
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.testimonial blockquote p::before { content: '\201C'; }
.testimonial blockquote p::after  { content: '\201D'; }

.testimonial figcaption strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial figcaption span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.bewijs__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-primary-mid);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}

.stat { text-align: center; }

.stat__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.8);
}

.bewijs__about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about__photo {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/11;
}

.bewijs__about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.bewijs__about-text p {
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  margin-bottom: 0.75rem;
}

.bewijs__about-text .btn { margin-top: 0.5rem; }

@media (min-width: 720px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial--featured { grid-column: 1 / -1; }

  .bewijs__about {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .about__photo { flex: 0 0 380px; }
}

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

.diensten {
  padding-block: var(--section-pad);
  background: var(--color-bg-alt);
}

.diensten__grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: var(--space-lg);
}

.dienst-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}

.dienst-card:hover { box-shadow: var(--shadow-float); }

.dienst-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.dienst-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.dienst-card p {
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  margin-bottom: 1rem;
}

.dienst-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.dienst-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-mid);
  background: rgba(45,74,62,.08);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(45,74,62,.15);
}

.diensten__prijs {
  background: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.diensten__prijs h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.diensten__prijs p {
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  margin-bottom: 1.25rem;
}

@media (min-width: 720px) {
  .diensten__grid { grid-template-columns: repeat(2, 1fr); }
}

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

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

.faq__inner {
  display: grid;
  gap: var(--space-lg);
}

.faq__intro p:not(.label-tag) {
  font-size: 1rem;
  color: var(--color-text-sub);
  margin-top: 0.5rem;
}

.faq__list { display: flex; flex-direction: column; gap: 0; }

.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__item:first-child { border-top: 1px solid var(--color-border); }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  transition: color 0.15s;
}

.faq__question:hover { color: var(--color-accent); }

.faq__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.15s;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-primary-mid);
  border-radius: 2px;
}

.faq__icon::before { width: 10px; height: 2px; }
.faq__icon::after  { width: 2px; height: 10px; transition: transform 0.2s; }

.faq__question[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); }

.faq__answer {
  padding-bottom: 1rem;
}

.faq__answer p {
  font-size: 0.9375rem;
  color: var(--color-text-sub);
  line-height: 1.65;
}

@media (min-width: 720px) {
  .faq__inner { grid-template-columns: 1fr 2fr; align-items: start; }
}

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

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

.contact__inner {
  display: grid;
  gap: var(--space-lg);
}

.contact .section-title { color: white; }

.contact__text {
  font-size: 1rem;
  opacity: 0.88;
  margin-bottom: 1.75rem;
}

.contact__opties {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact__optie {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: white;
  transition: background 0.15s;
}

.contact__optie:hover { background: rgba(255,255,255,.18); color: white; }

.optie__icon { font-size: 1.5rem; flex-shrink: 0; }

.contact__optie strong { display: block; font-weight: 600; font-size: 0.9375rem; }
.contact__optie small  { font-size: 0.8125rem; opacity: 0.8; }

.contact__belofte {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Formulier */
.contact__form-wrap {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-field {
  margin-bottom: 1.1rem;
}

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.form-field label span { color: var(--color-accent); }

.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-outline);
  border-radius: var(--radius);
  padding: 0.65rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  transition: border-color 0.15s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary-mid);
  border-width: 2px;
}

.form-field textarea { resize: vertical; }

.form-status {
  margin-top: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-status--ok    { background: #d4edda; color: #155724; }
.form-status--error { background: #f8d7da; color: #721c24; }

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

@media (min-width: 720px) {
  .contact__inner { grid-template-columns: 1fr 1fr; align-items: start; }
  .contact__opties { flex-direction: row; flex-wrap: wrap; }
  .contact__optie { flex: 1 1 45%; }
}

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

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

.footer__inner {
  display: grid;
  gap: var(--space-lg);
  padding-block: var(--space-xl);
}

.footer__logo {
  filter: brightness(0) invert(1);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.footer__tagline {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.footer__desc { font-size: 0.875rem; opacity: 0.75; max-width: 280px; }

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.footer__nav ul,
.footer__contact-list { display: flex; flex-direction: column; gap: 0.4rem; }

.footer__nav a,
.footer__contact-list a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}

.footer__nav a:hover,
.footer__contact-list a:hover { color: var(--color-accent); }

.footer__contact-list li { font-size: 0.875rem; }

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

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer__legal { font-size: 0.8125rem; opacity: 0.65; }
.footer__legal a { color: inherit; }

.footer__photo-credit { font-size: 0.75rem; opacity: 0.55; }
.footer__photo-credit a { color: inherit; }

.footer__demo-disclaimer {
  width: 100%;
  background: rgba(232,168,124,.15);
  border: 1px solid rgba(232,168,124,.3);
  border-radius: var(--radius);
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  color: var(--color-accent);
}

.eo-credit {
  font-size: 0.75rem;
  opacity: 0.5;
  width: 100%;
  text-align: center;
}

.eo-credit a { color: inherit; text-decoration: underline; }

@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}

/* ==========================================================================
   MOBILE STICKY CTA BAR
   ========================================================================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-primary-mid);
  padding: 0.75rem 1.25rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,.15);
  display: flex;
  justify-content: center;
}

.sticky-cta__btn {
  display: block;
  width: 100%;
  max-width: 400px;
  text-align: center;
  background: var(--color-accent);
  color: white;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: filter 0.15s;
}

.sticky-cta__btn:hover { filter: brightness(0.93); color: white; }

@media (min-width: 720px) {
  .sticky-cta { display: none; }
}

/* Ruimte voor sticky-bar op mobiel */
@media (max-width: 719px) {
  body { padding-bottom: 70px; }
}