/* ═══════════════════════════════════════════════════════════════════
   Fibertotaal — styles.css
   Volgorde: tokens → reset → layout → components → sections → utilities
   ═══════════════════════════════════════════════════════════════════ */


/* ─── TOKENS ──────────────────────────────────────────────────────── */

:root {
  /* Merk-kleuren (uit het logo) */
  --color-brand:         #D1357F;
  --color-brand-hover:   #B02968;
  --color-brand-soft:    #E88AB4;
  --color-brand-subtle:  #3A0F25;

  /* Donkere basis */
  --color-bg:            #0F0F14;
  --color-surface:       #1A1A22;
  --color-surface-2:     #242430;
  --color-border:        #2E2E3B;
  --color-text:          #F5F3F7;
  --color-text-muted:    #A8A4B3;

  /* Lichte basis */
  --color-bg-light:      #FAF7F9;
  --color-surface-light: #FFFFFF;
  --color-border-light:  #EAE5EC;
  --color-text-dark:     #1A1A22;
  --color-text-dark-muted: #5A5565;

  /* Status */
  --color-success: #10B981;
  --color-warning: #F59E0B;

  /* Typografie */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  clamp(1.5rem, 2vw + 1rem, 2rem);
  --text-3xl:  clamp(1.875rem, 3vw + 1rem, 2.5rem);
  --text-4xl:  clamp(2.25rem, 4vw + 1rem, 3.5rem);
  --text-5xl:  clamp(2.75rem, 5vw + 1rem, 4.5rem);

  --leading-tight:  1.15;
  --leading-normal: 1.55;
  --leading-loose:  1.75;

  /* Spacing (8-point grid) */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius & shadows */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow:    0 4px 12px rgba(0,0,0,0.25);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.35);
  --shadow-brand-glow: 0 0 24px rgba(209, 53, 127, 0.25);

  /* Project-specifiek (niet uit brand.md — hier gedefinieerd voor layout) */
  --nav-height:    72px;
  --container-max: 1200px;
}


/* ─── RESET & BASE ────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--leading-tight);
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--color-brand);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

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

section[id] {
  scroll-margin-top: var(--nav-height);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ─── LAYOUT PRIMITIVES ───────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  background: var(--color-brand);
  color: var(--color-text);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
  z-index: 1000;
}
.skip-link:focus { top: var(--space-4); color: var(--color-text); }


/* ─── COMPONENTS: BUTTON ──────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}

.btn:hover { color: var(--color-text); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background-color: var(--color-brand);
  color: var(--color-text);
}
.btn-primary:hover {
  background-color: var(--color-brand-hover);
  box-shadow: var(--shadow-brand-glow);
}

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


/* ─── COMPONENTS: STICKY NAV ──────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(15, 15, 20, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
@media (prefers-reduced-motion: reduce) {
  .site-header { transition: none; }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: var(--space-6);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 36px;
  width: auto;
}
.nav-logo:hover { color: inherit; }

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  font-size: var(--text-sm);
  font-weight: 500;
}
.nav-links a {
  color: var(--color-text-muted);
  padding: var(--space-2) 0;
  position: relative;
}
.nav-links a:hover { color: var(--color-text); }
.nav-links .nav-cta a { color: var(--color-text); padding: var(--space-3) var(--space-6); }

/* Hamburger — checkbox visually-hidden zodat keyboard bereikbaar blijft */
.nav-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Focus-ring op label wanneer de onderliggende checkbox focus heeft */
.nav-toggle-input:focus-visible ~ .nav-toggle {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-4) var(--space-6) var(--space-6);
  }
  .nav-links li { border-bottom: 1px solid var(--color-border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: var(--space-4) 0;
    color: var(--color-text);
  }
  .nav-links .nav-cta { padding-top: var(--space-4); border-bottom: none; }
  .nav-links .nav-cta a {
    justify-content: center;
    padding: var(--space-3) var(--space-6);
  }

  .nav-toggle-input:checked ~ .nav-menu {
    max-height: 500px;
  }
  .nav-toggle-input:checked ~ .nav-toggle .nav-toggle-bar:nth-of-type(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle-input:checked ~ .nav-toggle .nav-toggle-bar:nth-of-type(2) {
    opacity: 0;
  }
  .nav-toggle-input:checked ~ .nav-toggle .nav-toggle-bar:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}


/* ─── SECTIONS: HERO ──────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  padding-block: var(--space-12) var(--space-6);
  min-height: 82svh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: 50% 60%;
  background-repeat: no-repeat;
  background-color: var(--color-bg);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 55% 72%, transparent 0%, transparent 45%, rgba(15, 15, 20, 0.35) 90%),
    linear-gradient(90deg, rgba(15, 15, 20, 0.92) 0%, rgba(15, 15, 20, 0.7) 40%, rgba(15, 15, 20, 0.42) 70%, rgba(15, 15, 20, 0.32) 100%),
    linear-gradient(180deg, rgba(15, 15, 20, 0.45) 0%, rgba(15, 15, 20, 0.18) 25%, rgba(15, 15, 20, 0.1) 70%, rgba(15, 15, 20, 0.85) 100%);
}

@media (min-width: 768px) {
  .hero-bg {
    background-size: auto 135%;
    background-position: 50% 80%;
  }
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: var(--space-8) var(--space-12);
}

.hero-copy {
  max-width: 620px;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
.hero-eyebrow,
.hero-title,
.hero-sub,
.hero-ctas,
.hero-foot {
  animation: hero-fade-up 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-eyebrow { animation-delay: 0.1s; }
.hero-title   { animation-delay: 0.22s; }
.hero-sub     { animation-delay: 0.36s; }
.hero-ctas    { animation-delay: 0.5s; }
.hero-foot    { animation-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-sub, .hero-ctas, .hero-foot {
    animation: none;
  }
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: var(--space-6);
}

.hero-title {
  font-size: clamp(1.875rem, 7vw + 0.5rem, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  overflow-wrap: break-word;
}
.hero-title .accent {
  color: var(--color-text);
  text-decoration-line: underline;
  text-decoration-color: var(--color-brand);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
  text-decoration-skip-ink: none;
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 620px;
  line-height: var(--leading-normal);
  margin-bottom: var(--space-8);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero-trust li {
  position: relative;
  padding-left: var(--space-4);
}
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--color-brand);
}

.hero-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero-scroll-cue:hover { color: var(--color-brand); }
.hero-scroll-cue svg {
  animation: hero-cue-bounce 1.8s ease-in-out infinite;
}
@keyframes hero-cue-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue svg { animation: none; }
}

@media (min-width: 768px) {
  .hero {
    padding-block: var(--space-16) var(--space-8);
    min-height: calc(100svh - var(--nav-height));
  }
}

@media (min-width: 960px) {
  .hero-inner {
    padding-block: var(--space-12) var(--space-16);
  }
  .hero-copy { max-width: 680px; }
}


/* ─── SECTIONS: PARTNERWALL ───────────────────────────────────────── */

.partnerwall {
  padding-block: var(--space-12);
  background-color: #2E2E3B;
}

.partnerwall-intro {
  text-align: center;
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.partner-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
          mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.partner-marquee.is-enhanced {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
}
.partner-marquee.is-enhanced::-webkit-scrollbar { display: none; }

.partner-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 75s linear infinite;
  will-change: transform;
}
.partner-marquee.is-enhanced .partner-track {
  animation: none;
  will-change: auto;
}
@media (hover: hover) {
  .partner-marquee:hover .partner-track,
  .partner-marquee:focus-within .partner-track {
    animation-play-state: paused;
  }
}
.partner-list,
.partner-list-clone {
  display: flex;
  flex-shrink: 0;
  gap: var(--space-8);
  padding-inline: var(--space-4);
}
.partner-logo { width: 120px; }

@keyframes partner-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .partner-track { animation: none; }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(0.78);
  opacity: 0.7;
  transition: opacity 0.5s ease, filter 0.5s ease;
}
.partner-logo:hover img,
.partner-logo:focus-within img,
.partner-logo.is-active img {
  opacity: 1;
  filter: none;
}


/* ─── SECTIONS: SHARED SECTION HEADER ─────────────────────────────── */

.section-header {
  max-width: 720px;
  margin-bottom: var(--space-12);
}
.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-intro {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  max-width: 640px;
}


/* ─── SECTIONS: WAAROM ────────────────────────────────────────────── */

.waarom {
  padding-block: var(--space-20);
  background-color: var(--color-bg);
}

.waarom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .waarom-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .waarom-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.waarom-card {
  position: relative;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.waarom-media {
  position: absolute;
  top: 1px;
  right: 1px;
  margin: 0;
  width: 68px;
  height: 68px;
  overflow: hidden;
  border-top-right-radius: calc(var(--radius-lg) - 1px);
  border-bottom-left-radius: var(--radius);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}
.waarom-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.waarom-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, rgba(15, 15, 20, 0) 40%, rgba(15, 15, 20, 0.55) 100%);
  pointer-events: none;
}
.waarom-card:hover .waarom-media { opacity: 1; }
.waarom-card:hover .waarom-media img {
  filter: grayscale(0);
  transform: scale(1.05);
}
@media (min-width: 640px) {
  .waarom-media { width: 84px; height: 84px; }
}
@media (min-width: 640px) {
  .waarom-card { padding: var(--space-8); }
}
.waarom-card:hover {
  border-color: var(--color-brand-subtle);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(209, 53, 127, 0.08);
}

.waarom-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: -0.02em;
  padding-right: 80px;
  margin-bottom: var(--space-4);
  transition: color 0.2s ease;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 640px) {
  .waarom-num { padding-right: 100px; }
}

@media (prefers-reduced-motion: no-preference) {
  .js-reveal {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .js-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .waarom-card.js-reveal { transform: none; }
  .waarom-card.js-reveal.is-visible { transform: none; }
}

.waarom-card-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
  padding-right: 12px;
}

.waarom-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}


/* ─── SECTIONS: OVER ONS (LICHT) ──────────────────────────────────── */

.over {
  padding-block: var(--space-20);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}
.over .section-title { color: var(--color-text-dark); }

.over-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}
@media (min-width: 860px) {
  .over-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.over-portrait {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: var(--color-surface-light);
}
.over-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.over-portrait:hover img { transform: scale(1.04); }

.over-story p {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--color-text-dark);
  margin-bottom: var(--space-6);
}
.over-story p:last-child { margin-bottom: 0; }

.over-principles {
  max-width: 780px;
  margin: 0 auto var(--space-16);
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}
.over-principles-intro {
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dark-muted);
  margin-bottom: var(--space-8);
}
.over-principles-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.over-principles-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  align-items: baseline;
}
@media (min-width: 640px) {
  .over-principles-list li {
    grid-template-columns: auto 1fr;
    gap: var(--space-6);
  }
}
.over-principles-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: -0.02em;
  line-height: 1;
}
.over-principles-list p {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--color-text-dark);
  margin: 0;
}
.over-principles-list strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.over-steunt {
  margin-top: var(--space-4);
  padding-top: var(--space-12);
  border-top: 1px solid var(--color-border-light);
}

.over-steunt-quote {
  max-width: 780px;
  margin: 0 0 var(--space-12);
  padding-left: var(--space-6);
  border-left: 3px solid var(--color-brand);
}
.over-steunt-quote p {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 3.2vw, var(--text-3xl));
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text-dark);
  font-style: italic;
  margin: 0 0 var(--space-3);
}
.over-steunt-quote footer {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dark-muted);
  font-style: normal;
}

.over-steunt-mosaic {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
.over-steunt-mosaic li {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: var(--color-surface-light);
}
.over-steunt-mosaic li:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
@media (min-width: 760px) {
  .over-steunt-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    aspect-ratio: 2 / 1;
  }
  .over-steunt-mosaic li { aspect-ratio: auto; }
  .over-steunt-mosaic li:first-child {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    aspect-ratio: auto;
  }
}
.over-steunt-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.over-steunt-mosaic li:hover img { transform: scale(1.05); }


/* ─── SECTIONS: DIENSTEN (met CSS-only toggle) ────────────────────── */

.diensten {
  padding-block: var(--space-20);
  background-color: var(--color-bg);
  position: relative;
}

/* Radio inputs visueel verborgen — blijven focusbaar voor keyboard */
.tab-input {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.diensten-head .section-header { margin-bottom: var(--space-8); }

.toggle {
  display: inline-flex;
  padding: var(--space-1);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  gap: var(--space-1);
}

.toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
  user-select: none;
}
.toggle-btn:hover { color: var(--color-text); }

/* Actieve state — magenta pill onder de geselecteerde label */
#tab-zakelijk:checked ~ .diensten-head .toggle-btn[for="tab-zakelijk"],
#tab-particulier:checked ~ .diensten-head .toggle-btn[for="tab-particulier"] {
  background-color: var(--color-brand);
  color: var(--color-text);
}

/* Keyboard focus — zichtbare ring op de actieve label als de radio focus heeft */
#tab-zakelijk:focus-visible ~ .diensten-head .toggle-btn[for="tab-zakelijk"],
#tab-particulier:focus-visible ~ .diensten-head .toggle-btn[for="tab-particulier"] {
  outline: 2px solid var(--color-brand-soft);
  outline-offset: 2px;
}

/* Views — toon alleen de geselecteerde, met fade-in bij intreden */
.views-wrap { margin-top: var(--space-12); }
.view { display: none; }

@keyframes view-fade-in {
  from { opacity: 0; transform: translate3d(0, 8px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
#tab-zakelijk:checked ~ .views-wrap .view-zakelijk,
#tab-particulier:checked ~ .views-wrap .view-particulier {
  display: block;
  animation: view-fade-in 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  #tab-zakelijk:checked ~ .views-wrap .view-zakelijk,
  #tab-particulier:checked ~ .views-wrap .view-particulier {
    animation: none;
  }
}

.view-intro {
  max-width: 720px;
  margin-bottom: var(--space-12);
}
.view-intro h3 {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.view-intro p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
}

.diensten-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 860px) {
  .diensten-cols { grid-template-columns: repeat(2, 1fr); gap: var(--space-12); }
}

.diensten-col-title {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-border);
}

.diensten-subgroup {
  font-size: var(--text-sm);
  font-weight: 500;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}
.diensten-subgroup:first-of-type { margin-top: var(--space-2); }

.diensten-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.diensten-list li {
  padding-left: var(--space-6);
  position: relative;
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  font-size: var(--text-base);
  transition: color 0.2s ease;
}
.diensten-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 2px;
  background-color: var(--color-brand);
  transition: width 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.diensten-list li:hover { color: var(--color-text); }
.diensten-list li:hover::before { width: 16px; }
.diensten-list strong {
  color: var(--color-text);
  font-weight: 600;
}

.diensten-cta {
  margin-top: var(--space-12);
  font-size: var(--text-base);
}
.diensten-cta a {
  color: var(--color-brand);
  font-weight: 500;
}
.diensten-cta a:hover { color: var(--color-brand-soft); }


/* ─── SECTIONS: FAQ ───────────────────────────────────────────────── */

.faq {
  padding-block: var(--space-20);
  background-color: var(--color-bg);
}

.faq-list {
  max-width: 820px;
  margin-inline: auto;
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-text);
  list-style: none;
  transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-item summary:hover { color: var(--color-brand); }

.faq-item p {
  padding: 0 0 var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  max-width: 680px;
}

@supports selector(::details-content) {
  .faq-item::details-content {
    opacity: 0;
    block-size: 0;
    overflow: clip;
    transition:
      opacity 0.25s ease,
      block-size 0.3s ease,
      content-visibility 0.3s allow-discrete;
  }
  .faq-item[open]::details-content {
    opacity: 1;
    block-size: auto;
    @starting-style {
      opacity: 0;
      block-size: 0;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item::details-content { transition: none; }
}


/* ─── SECTIONS: CONTACT ───────────────────────────────────────────── */

.contact {
  padding-block: var(--space-20);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}
.contact .section-title { color: var(--color-text-dark); }
.contact .section-intro { color: var(--color-text-dark-muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; gap: var(--space-16); }
}

.contact-phone {
  padding-bottom: var(--space-8);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border-light);
}

.contact-label {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dark-muted);
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.contact-phone-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.02em;
}
.contact-phone-number:hover { color: var(--color-brand); }

.contact-hours {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-dark-muted);
  line-height: var(--leading-normal);
}

.contact-map {
  margin-top: var(--space-8);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  aspect-ratio: 16 / 10;
  background-color: var(--color-surface-light);
  position: relative;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.contact-map-tap-guard {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background-color: transparent;
  z-index: 2;
}
.contact-map.has-map.is-activated .contact-map-tap-guard {
  display: none;
}
.contact-map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-6);
  text-align: center;
  background:
    repeating-linear-gradient(45deg,
      var(--color-surface-light) 0,
      var(--color-surface-light) 12px,
      var(--color-bg-light) 12px,
      var(--color-bg-light) 24px);
}
.contact-map-placeholder-text {
  font-size: var(--text-sm);
  color: var(--color-text-dark-muted);
  max-width: 320px;
  margin: 0;
}
.contact-map-fallback {
  font-size: var(--text-sm);
  color: var(--color-text-dark-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-map-fallback:hover { color: var(--color-brand); }
.contact-map.has-map .contact-map-placeholder { display: none; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.contact-details li {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
}
.contact-details a { color: var(--color-text-dark); font-weight: 500; }
.contact-details a:hover { color: var(--color-brand); }

/* Formulier */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background-color: var(--color-surface-light);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-row label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-dark);
}
.form-row label span { color: var(--color-brand); }

.form-row input,
.form-row select,
.form-row textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  background-color: var(--color-surface-light);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row textarea { resize: vertical; min-height: 120px; }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow:
    inset 3px 0 0 0 var(--color-brand),
    0 0 0 3px rgba(209, 53, 127, 0.15);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 540px) {
  .form-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.form-submit {
  align-self: flex-start;
  margin-top: var(--space-2);
}


/* ─── SECTIONS: FOOTER ────────────────────────────────────────────── */

.site-footer {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-16) var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-12); }
}

.footer-brand img { height: 40px; width: auto; margin-bottom: var(--space-4); }
.footer-payoff {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 280px;
}

.footer-heading {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.footer-links a { color: var(--color-text-muted); }
.footer-links a:hover { color: var(--color-brand); }

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
}
.footer-cookie-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--color-text-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-cookie-link:hover { color: var(--color-brand); }


/* ─── COOKIE BANNER ───────────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 100;
  background-color: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  max-width: 1200px;
  margin-inline: auto;
}
@media (min-width: 860px) {
  .cookie-banner { left: auto; right: var(--space-6); bottom: var(--space-6); max-width: 520px; }
  .cookie-banner-inner { padding: var(--space-8); }
}
.cookie-banner-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin: 0 0 var(--space-2);
}
.cookie-banner-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin: 0;
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.cookie-banner-actions .btn { flex: 1 1 auto; justify-content: center; }
@media (min-width: 860px) {
  .cookie-banner-actions .btn { flex: 0 1 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
}


/* ─── UTILITIES ───────────────────────────────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
