/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg:           #f5f1e8;
  --bg-alt:       #ede8dc;
  --text:         #1a1a1a;
  --text-muted:   #5a5650;
  --primary:      #2f4a3a;
  --primary-dark: #1f3328;
  --accent:       #c9a961;
  --accent-dark:  #b08030;
  --divider:      #d8d0c4;
  --white:        #ffffff;
  --card-shadow:  0 2px 8px rgba(0, 0, 0, 0.08);

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  'Segoe UI', Arial, Helvetica, sans-serif;

  --text-sm:   0.875rem;
  --text-base: 1.0625rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.625rem;

  --radius: 4px;
  --max-w:  1100px;
  --narrow: 840px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

a { color: var(--primary); }
a:hover, a:focus { color: var(--primary-dark); }

ul { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: normal;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }

p + p { margin-top: 1rem; }

.section-title {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--accent);
  margin-top: 0.75rem;
}

.section-intro {
  color: var(--text-muted);
  font-size: var(--text-lg);
  margin-bottom: 2.5rem;
  max-width: 620px;
}

/* ============================================================
   BUTTON
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  background: var(--accent);
  color: var(--primary-dark);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--text-base);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.btn:hover, .btn:focus {
  background: var(--accent-dark);
  color: var(--primary-dark);
  outline: none;
}

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

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 2rem;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: var(--text-sm);
  color: var(--accent);
  letter-spacing: 0.04em;
}

.main-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: var(--text-base);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  display: block;
  transition: background 0.12s ease;
}

.main-nav a:hover, .main-nav a:focus {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.main-nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--primary-dark) !important;
  font-weight: 700;
}

.nav-cta:hover, .nav-cta:focus {
  background: var(--accent-dark) !important;
  color: var(--primary-dark) !important;
}

/* Header controls — taalknop + hamburger samen */
.header-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Taalknop NL | EN */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem;
  transition: border-color 0.12s ease, background 0.12s ease;
}

.lang-toggle:hover,
.lang-toggle:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.lang-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lang-toggle [data-lang] {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.12s ease;
}

.lang-toggle [data-lang].active {
  color: var(--accent);
}

.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
  font-size: 0.7rem;
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: opacity 0.15s ease;
}

/* ============================================================
   HERO — V2: scherpere headline + trust pillars
   ============================================================ */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 5.5rem 0 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 4.5rem;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-logo {
  flex-shrink: 0;
  width: 200px;
  opacity: 0.9;
}

.hero-logo svg {
  width: 100%;
  height: auto;
}

.hero-label {
  color: var(--accent);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.875rem, 4.5vw, var(--text-3xl));
  margin-bottom: 1.25rem;
  max-width: 660px;
  line-height: 1.2;
}

.hero-desc {
  color: rgba(245, 241, 232, 0.85);
  font-size: var(--text-lg);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-link {
  color: var(--accent);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 169, 97, 0.4);
  transition: border-color 0.12s ease;
}

.hero-link:hover, .hero-link:focus {
  border-color: var(--accent);
  color: var(--accent);
}

/* Trust strip at bottom of hero */
.hero-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.trust-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.1rem;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-title {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  color: var(--white);
  display: block;
  margin-bottom: 0.2rem;
}

.trust-desc {
  font-size: var(--text-sm);
  color: rgba(245, 241, 232, 0.65);
  line-height: 1.5;
}

/* ============================================================
   DOELGROEP STRIP
   ============================================================ */
.doelgroep-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--divider);
  padding: 1.5rem 0;
}

.doelgroep-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.doelgroep-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  flex-shrink: 0;
  white-space: nowrap;
}

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

.doelgroep-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 500;
}

.doelgroep-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES GRID — V2: met resultaatzin
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--primary);
  margin-bottom: 1.25rem;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin-bottom: 0.65rem;
  font-size: var(--text-lg);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.service-result {
  margin-top: 1rem !important;
  padding-top: 0.875rem;
  border-top: 1px solid var(--divider);
  font-size: var(--text-sm) !important;
  color: var(--primary) !important;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.service-result::before {
  content: '•';
  flex-shrink: 0;
}

/* ============================================================
   PROJECTS GRID
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--card-shadow);
}

.project-status {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
}

.project-status--lopend {
  background: #e0ece6;
  color: #1f3328;
}

.project-status--afgerond {
  background: #ede9e0;
  color: #6b5c38;
}

.project-card h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.4rem;
}

.project-meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}

.project-card p:last-of-type {
  color: var(--text-muted);
  line-height: 1.6;
}

.projects-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.projects-note a { color: var(--primary); }

/* ============================================================
   OVER ONS — V2: twee kolommen met kernpunten
   ============================================================ */
.over-ons-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.over-ons-tekst p {
  font-size: var(--text-lg);
  line-height: 1.7;
}

.over-ons-punten {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.punt-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--divider);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}

.punt-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--accent);
}

.punt-icon svg {
  width: 100%;
  height: 100%;
}

.punt-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-base);
  color: var(--primary);
  margin-bottom: 0.2rem;
  font-weight: normal;
}

.punt-item span {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   CONTACT — V2: prominentere gegevens
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-v2 {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-item-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-item-value a {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-family: var(--font-serif);
}

.contact-item-value a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

.contact-hours {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 0.35rem 2rem;
}

.contact-hours span {
  white-space: nowrap;
  font-size: var(--text-lg);
  font-weight: 600;
  font-family: var(--font-serif);
  color: var(--primary);
}

.contact-hours .hours-closed {
  color: var(--text-muted);
  font-weight: 400;
}

.contact-reactie {
  margin-top: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--divider);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-reactie strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-form {
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.15s ease;
  line-height: 1.5;
  appearance: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: #b0a898;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
}

input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(47, 74, 58, 0.3);
  outline-offset: 1px;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.tel-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.tel-input-group input[type="tel"] {
  flex: 1;
  min-width: 0;
}

.tel-country-select {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--text);
  background-color: var(--white);
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  padding: 0.75rem 2.25rem 0.75rem 0.875rem;
  cursor: pointer;
  transition: border-color 0.15s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a5650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
  background-size: 1rem;
}

.tel-country-select:focus {
  outline: none;
  border-color: var(--primary);
}

.tel-country-select:focus-visible {
  outline: 3px solid rgba(47, 74, 58, 0.3);
  outline-offset: 1px;
}

.form-melding {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: var(--text-base);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.form-melding a { color: inherit; font-weight: 600; }

.form-melding--success {
  background: #e6f0ea;
  border: 1.5px solid #a8ccb5;
  color: #1f3d2a;
}

.form-melding--error {
  background: #f5e8e6;
  border: 1.5px solid #d4a09a;
  color: #5c1f18;
}

input.input--invalid,
textarea.input--invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
}
.form-validation-msg {
  font-size: 0.875rem;
  color: #b03020;
  margin: 0 0 0.875rem;
  padding-left: 0.125rem;
}

.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  background: #e6f0ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.form-success-icon svg {
  width: 28px;
  height: 28px;
}

.form-success h3 {
  margin: 0 0 0.75rem;
  color: var(--primary);
  font-size: 1.25rem;
}

.form-success p {
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.form-opnieuw-btn {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 0.7rem 1.75rem;
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.form-opnieuw-btn:hover,
.form-opnieuw-btn:focus {
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary-dark);
  padding: 2.5rem 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-mark { width: 28px; height: 28px; flex-shrink: 0; }

.footer-name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--white);
}

.site-footer nav ul {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer nav a {
  color: rgba(245, 241, 232, 0.65);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.12s ease;
}

.site-footer nav a:hover, .site-footer nav a:focus {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  font-size: var(--text-sm);
  color: rgba(245, 241, 232, 0.4);
}

.footer-linkedin {
  color: rgba(245, 241, 232, 0.4);
  display: flex;
  align-items: center;
  transition: color 0.12s ease;
}

.footer-linkedin svg {
  width: 18px;
  height: 18px;
}

.footer-linkedin:hover,
.footer-linkedin:focus {
  color: var(--white);
}

/* ============================================================
   RESPONSIVE — tablet
   ============================================================ */
@media (max-width: 900px) {
  .services-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
  }

  .over-ons-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero { padding: 4.5rem 0 0; }
  .hero-inner { padding-bottom: 3.5rem; }
  .hero-logo { width: 140px; }
}

/* ============================================================
   RESPONSIVE — mobile
   ============================================================ */
@media (max-width: 640px) {
  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 2.5rem;
  }

  .hero-logo { display: none; }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .doelgroep-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem 1rem;
  }

  .main-nav.is-open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .main-nav a { padding: 0.625rem 0.875rem; }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  .section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 0; }
  .hero-desc { font-size: var(--text-base); }
  .section-intro { font-size: var(--text-base); }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .site-footer nav ul { gap: 1rem; }

  .contact-item-value a { font-size: var(--text-lg); }
}

/* ============================================================
   FORMULIER — verplichte velden
   ============================================================ */
.req {
  color: #c0392b;
  font-weight: 700;
}

.form-optional {
  font-size: 0.875em;
  color: var(--text-muted);
  font-weight: 400;
}

.form-required-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-transform: none;
  font-weight: normal;
  letter-spacing: 0;
}

.form-required-note .req {
  font-weight: 700;
}

.field-error {
  display: block;
  font-size: 0.8125rem;
  color: #c0392b;
  margin-top: 0.35rem;
  line-height: 1.4;
  min-height: 1.15rem;
}

/* ============================================================
   FORMULIER — privacy checkbox
   ============================================================ */
.form-group--checkbox {
  margin-bottom: 1.25rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  text-transform: none;
  font-weight: normal;
  letter-spacing: 0;
  color: var(--text);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--divider);
  border-radius: 3px;
  background: var(--white);
  cursor: pointer;
  margin-top: 1px;
  transition: border-color 0.15s ease, background 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 9px;
}

.checkbox-label input[type="checkbox"]:focus-visible {
  outline: 3px solid rgba(47, 74, 58, 0.3);
  outline-offset: 1px;
}

.checkbox-label--invalid input[type="checkbox"] {
  border-color: #c0392b;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.2);
}

.privacy-inline-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: inherit;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.12s ease;
}

.privacy-inline-btn:hover,
.privacy-inline-btn:focus {
  color: var(--primary-dark);
}

/* ============================================================
   FOOTER — privacy knop
   ============================================================ */
.footer-privacy-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(245, 241, 232, 0.4);
  transition: color 0.12s ease;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-privacy-btn:hover,
.footer-privacy-btn:focus {
  color: var(--white);
}

/* ============================================================
   PRIVACY MODAL
   ============================================================ */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.privacy-modal[hidden] { display: none; }

.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 20, 0.65);
  cursor: pointer;
}

.privacy-modal-box {
  position: relative;
  background: var(--bg);
  border-radius: 6px;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.privacy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--divider);
  flex-shrink: 0;
}

.privacy-modal-header h2 {
  font-size: var(--text-xl);
  color: var(--primary);
  margin: 0;
}

.privacy-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.12s ease, background 0.12s ease;
  flex-shrink: 0;
}

.privacy-modal-close svg { width: 22px; height: 22px; }

.privacy-modal-close:hover,
.privacy-modal-close:focus {
  color: var(--primary);
  background: var(--bg-alt);
}

.privacy-modal-body {
  padding: 1.75rem 2rem 2rem;
  overflow-y: auto;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text);
}

.privacy-modal-body h3 {
  font-size: var(--text-lg);
  color: var(--primary);
  margin: 1.5rem 0 0.5rem;
  font-family: var(--font-serif);
}

.privacy-modal-body h3:first-child { margin-top: 0; }

.privacy-modal-body p { margin-bottom: 0.75rem; }
.privacy-modal-body p:last-child { margin-bottom: 0; }

.privacy-modal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-modal-body ul li { margin-bottom: 0.3rem; }

.privacy-modal-body a { color: var(--primary); }
.privacy-modal-body a:hover { color: var(--primary-dark); }

.privacy-modal-body .privacy-meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--divider);
}

@media (max-width: 640px) {
  .privacy-modal { padding: 0; align-items: flex-end; }
  .privacy-modal-box { max-height: 92vh; border-radius: 6px 6px 0 0; }
  .privacy-modal-header { padding: 1.25rem 1.25rem; }
  .privacy-modal-body { padding: 1.25rem 1.25rem 2rem; }
}

/* ============================================================
   COOKIE MELDING
   ============================================================ */
@keyframes cookieSlideUp {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-bar {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 340px;
  max-width: calc(100vw - 3rem);
  background: var(--primary-dark);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  z-index: 950;
  padding: 1.5rem;
  animation: cookieSlideUp 0.35s ease;
}

.cookie-bar[hidden] { display: none; }

.cookie-bar-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.cookie-bar-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.cookie-bar-title {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: bold;
  color: var(--white);
}

.cookie-bar-text {
  font-size: var(--text-sm);
  color: rgba(245, 241, 232, 0.78);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.cookie-bar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cookie-bar-btn {
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.12s ease;
  flex-shrink: 0;
}

.cookie-bar-btn:hover,
.cookie-bar-btn:focus {
  background: var(--accent-dark);
}

.cookie-bar-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(245, 241, 232, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.12s ease;
}

.cookie-bar-link:hover,
.cookie-bar-link:focus {
  color: var(--white);
}

@media (max-width: 640px) {
  .cookie-bar {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 10px 10px 0 0;
    padding: 1.25rem 1.25rem 1.75rem;
  }
}
