/*
 * Wynke Soeting — Gedeelde Stylesheet
 * =====================================
 * Kleurpalet: warme aardse tinten, gebaseerd op de huidige site (zachte
 *   terracotta/clay accent, crème-witte achtergronden, warm donkerbruin tekst).
 * Typografie: Cormorant Garamond (elegante serif voor koppen) +
 *   DM Sans (schone sans-serif voor body/navigatie).
 * Layout: mobile-first, ruim witruimte, max 1200px content.
 */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Kleuren — groen palet gebaseerd op wynkesoeting.nl */
  --clr-bg:           #FAFAF8;
  --clr-bg-alt:       #EFF4EF;
  --clr-bg-deep:      #D4E6D7;
  --clr-bg-dark:      #1a3d1f;
  --clr-accent:       #2e7d32;
  --clr-accent-dark:  #1b5e20;
  --clr-accent-light: #c8e6c9;
  --clr-text:         #1a2a1c;
  --clr-text-muted:   #4a6050;
  --clr-border:       #cddacd;
  --clr-white:        #FFFFFF;
  --clr-overlay:      rgba(26, 42, 28, 0.50);

  /* Typografie */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  /* Spacing schaal */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.75rem;
  --space-lg:   3rem;
  --space-xl:   5rem;
  --space-2xl:  8rem;

  /* Breedte */
  --max-width:  1200px;
  --max-text:   680px;

  /* Overgangssnelheden */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:   180ms;
  --dur-med:    320ms;
  --dur-slow:   500ms;

  /* Schaduw */
  --shadow-sm:  0 2px 8px rgba(42,34,32,0.08);
  --shadow-md:  0 6px 24px rgba(42,34,32,0.12);
  --shadow-lg:  0 16px 48px rgba(42,34,32,0.15);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAFIE ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--clr-text);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 300; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-family: var(--font-sans); font-weight: 500; }

p {
  max-width: 65ch;
  color: var(--clr-text);
}

strong { font-weight: 500; }

/* ===== LAYOUT HELPERS ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container--narrow {
  max-width: var(--max-text);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-xl);
}

.section--alt {
  background-color: var(--clr-bg-alt);
}

.section--dark {
  background-color: var(--clr-bg-dark);
  color: var(--clr-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--clr-white);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-intro {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--clr-text-muted);
  margin-top: var(--space-sm);
  max-width: 55ch;
}

/* ===== KNOPPEN ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.85em;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1;
  border-radius: 50px;
  transition: background-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn--primary {
  background-color: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background-color: var(--clr-accent-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--outline {
  background-color: transparent;
  color: var(--clr-accent);
  box-shadow: inset 0 0 0 1.5px var(--clr-accent);
}

.btn--outline:hover {
  background-color: var(--clr-accent-light);
  transform: translateY(-1px);
}

.btn--ghost {
  background-color: transparent;
  color: var(--clr-accent);
  padding-inline: 0;
  border-radius: 0;
  font-weight: 500;
}

.btn--ghost::after {
  content: '→';
  transition: transform var(--dur-fast) var(--ease);
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

.btn--ghost:hover {
  color: var(--clr-accent-dark);
}

.btn--white {
  background-color: var(--clr-white);
  color: var(--clr-accent-dark);
  box-shadow: var(--shadow-sm);
}

.btn--white:hover {
  background-color: var(--clr-bg);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Transparante knop met witte rand — voor gebruik op foto-achtergronden */
.btn--outline-white {
  background-color: transparent;
  color: var(--clr-white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.8);
}

.btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 0 1.5px var(--clr-white);
  transform: translateY(-1px);
}

/* ===== NAVIGATIE / HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--dur-med) var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--clr-text);
  line-height: 1.1;
}

.site-logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-top: 2px;
}

.site-nav {
  display: none;
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.5rem); /* Flexibele gap — past zich aan schermbreedte aan */
  }
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--clr-text-muted);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--clr-accent);
  transition: width var(--dur-med) var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--clr-text);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.site-nav .btn--primary {
  font-size: 0.875rem;
  padding: 0.65em 1.4em;
  color: var(--clr-white); /* voorkom overschrijving door .site-nav a */
}

.site-nav .btn--primary:hover {
  color: var(--clr-white);
}

/* ===== HAMBURGER KNOP ===== */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity var(--dur-fast) var(--ease);
  z-index: 1001;
}

@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background-color: var(--clr-text);
  transition: transform var(--dur-med) var(--ease),
              opacity var(--dur-med) var(--ease),
              width var(--dur-med) var(--ease);
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== ZIJMENU (SIDE DRAWER) ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--clr-overlay);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 90vw);
  background-color: var(--clr-bg);
  z-index: 960;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
  overflow-y: auto;
}

.side-drawer.open {
  transform: translateX(0);
}

.side-drawer__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--dur-fast) var(--ease);
}

.side-drawer__close:hover {
  color: var(--clr-text);
}

.side-drawer__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--clr-text);
  margin-bottom: var(--space-xl);
}

.side-drawer__logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-top: 2px;
}

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

.side-drawer__nav a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--clr-text);
  padding-block: 0.6em;
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--dur-fast) var(--ease),
              padding-left var(--dur-fast) var(--ease);
}

.side-drawer__nav a:hover,
.side-drawer__nav a[aria-current="page"] {
  color: var(--clr-accent);
  padding-left: 0.5em;
}

.side-drawer__cta {
  margin-top: var(--space-xl);
}

.side-drawer__footer {
  margin-top: auto;
  padding-top: var(--space-lg);
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.side-drawer__footer a {
  color: var(--clr-accent);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--dur-fast) var(--ease);
}

.side-drawer__footer a:hover {
  text-decoration-color: var(--clr-accent);
}

/* ===== PAGINA-HOOFD (voor witruimte onder vaste header) ===== */
.page-offset {
  padding-top: 72px;
}

/* ===== HERO — Volledige foto met overlay ===== */
.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  min-height: calc(100dvh - 72px); /* dynamic viewport voor mobiel */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Achtergrond-foto laag */
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--clr-bg-deep);          /* fallback als foto laadt */
  background-size: cover;
  background-position: center center;
  transition: transform 8s ease-out;
}

/* Donkere overlay voor leesbaarheid witte tekst */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.30) 0%,
    rgba(0, 0, 0, 0.50) 60%,
    rgba(0, 0, 0, 0.40) 100%
  );
}

/* Tekst-inhoud */
.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-xl) var(--space-md);
  max-width: 780px;
  width: 100%;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-md);
}

.hero h1 {
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--clr-accent-light);
}

.hero__lead {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-lg);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: center;
}

.hero__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* Scroll-indicator pijl onderaan hero */
.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.55);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===== TWEE-KOLOM SECTIE ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  /* Begrenzing: voorkomt te brede kolommen op grote schermen */
  max-width: 1000px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .two-col {
    /* Foto-kolom iets smaller dan tekst-kolom */
    grid-template-columns: 5fr 7fr;
    gap: var(--space-2xl);
  }

  .two-col--reversed .two-col__visual {
    order: -1;
  }

  /* Variatie: gelijke kolommen */
  .two-col--equal {
    grid-template-columns: 1fr 1fr;
  }
}

.two-col__visual {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--clr-bg-deep);
  /* Maximale hoogte zodat het niet te groot wordt op brede schermen */
  max-height: 560px;
  width: 100%;
}

.two-col__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.two-col__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(160deg, var(--clr-bg-deep) 0%, var(--clr-bg-alt) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--clr-text-muted);
  font-size: 0.8rem;
  text-align: center;
  padding: var(--space-md);
}

.two-col__text {
  /* max-width verwijderd — de grid-kolom begrenst al */
}

.two-col__text p {
  margin-bottom: var(--space-md);
  max-width: 52ch; /* Comfortabele leeslengte binnen de kolom */
}

.two-col__text p:last-of-type {
  margin-bottom: 0;
}

/* ===== KAARTEN / CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

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

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

/* Voorkom te brede cards op schermen > 1200px */
.cards--2 .card {
  /* Cards krijgen hun breedte van de grid — max via container */
}

/* Paragraph max-width binnen cards resetten zodat tekst de kaart vult */
.card p {
  max-width: none;
}

.card {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: var(--space-lg);
  transition: box-shadow var(--dur-med) var(--ease),
              transform var(--dur-med) var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card--accent {
  background-color: var(--clr-accent-light);
  border-color: var(--clr-accent-light);
}

.card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-md);
  color: var(--clr-accent);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--clr-text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.card__price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--clr-text);
  margin-bottom: 0.25em;
}

.card__price-note {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
}

.card__list {
  margin-bottom: var(--space-md);
}

.card__list li {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  padding-block: 0.35em;
  padding-left: 1.2em;
  position: relative;
  border-bottom: 1px solid var(--clr-border);
}

.card__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--clr-accent);
}

.card__list li:last-child {
  border-bottom: none;
}

/* ===== QUOTE / REVIEW ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

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

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

/* Citaat-tekst vult de kaart volledig */
.review-card p,
.review-card__quote {
  max-width: none;
}

.review-card {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.review-card__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--clr-text);
  flex: 1;
  position: relative;
  padding-top: 1.5em;
}

.review-card__quote::before {
  content: '"';
  position: absolute;
  top: 0;
  left: -0.1em;
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--clr-accent-light);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--clr-bg-deep);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--clr-accent);
}

.review-card__name {
  font-weight: 500;
  font-size: 0.9rem;
}

.review-card__role {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--clr-accent);
  font-size: 0.85rem;
}

/* ===== KENNISMAKING SECTIE (dubbele CTA) ===== */
.cta-section {
  background-color: var(--clr-bg-alt);
  text-align: center;
  padding-block: var(--space-2xl);
}

.cta-section h2 {
  margin-bottom: var(--space-md);
}

.cta-section p {
  margin-inline: auto;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  font-size: 1.0625rem;
}

.cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
}

.cta-section__divider {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  font-style: italic;
}

/* ===== SEPARATOR ORNAMENT ===== */
.ornament {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-block: var(--space-xl);
  color: var(--clr-border);
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--clr-border);
}

.ornament__symbol {
  font-size: 1rem;
  color: var(--clr-accent-light);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--clr-bg-dark);
  color: rgba(255,255,255,0.75);
  padding-block: var(--space-xl);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
  }
}

.site-footer__brand .logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.site-footer__brand .tagline {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
}

.site-footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  max-width: 34ch;
}

.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.site-footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.site-footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--dur-fast) var(--ease);
}

.site-footer__nav a:hover {
  color: var(--clr-white);
}

.site-footer__contact address {
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
}

.site-footer__contact a {
  color: var(--clr-accent);
  transition: color var(--dur-fast) var(--ease);
}

.site-footer__contact a:hover {
  color: var(--clr-accent-light);
}

.site-footer__bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ===== CONTACTFORMULIER ===== */
.contact-form {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

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

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

  .form-field--full {
    grid-column: 1 / -1;
  }
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 0.5em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8em 1em;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: 4px;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  outline: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px var(--clr-accent-light);
}

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

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6860' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
  cursor: pointer;
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  margin-top: var(--space-sm);
}

/* ===== PAGINA-HEADER (subpagina's) ===== */
.page-header {
  background-color: var(--clr-bg-alt);
  padding-block: var(--space-xl) var(--space-xl);
  border-bottom: 1px solid var(--clr-border);
}

.page-header__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: var(--clr-text-muted);
  max-width: 55ch;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: var(--clr-accent);
  transition: color var(--dur-fast) var(--ease);
}

.breadcrumb a:hover {
  color: var(--clr-accent-dark);
}

.breadcrumb__sep {
  opacity: 0.5;
}

/* ===== TABS / AANBOD SWITCHER ===== */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--clr-border);
  margin-bottom: var(--space-xl);
}

.tab-btn {
  padding: 0.85em 1.5em;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--clr-text-muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}

.tab-btn:hover {
  color: var(--clr-text);
}

.tab-btn.active {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
  font-weight: 500;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--clr-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding-block: 1.2em;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text);
  background: transparent;
  border: none;
  cursor: pointer;
  gap: var(--space-md);
  transition: color var(--dur-fast) var(--ease);
}

.faq-question:hover {
  color: var(--clr-accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: transform var(--dur-med) var(--ease),
              background-color var(--dur-fast) var(--ease);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background-color: var(--clr-accent-light);
  border-color: var(--clr-accent-light);
}

.faq-answer {
  display: none;
  padding-bottom: 1.2em;
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  max-width: 65ch;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== BLOG KAARTEN ===== */
.blog-card {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow var(--dur-med) var(--ease),
              transform var(--dur-med) var(--ease);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card__img {
  aspect-ratio: 16 / 9;
  background-color: var(--clr-bg-deep);
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.03);
}

.blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--clr-bg-deep) 0%, var(--clr-bg-alt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: 0.78rem;
  text-align: center;
  padding: var(--space-md);
}

.blog-card__body {
  padding: var(--space-md);
}

.blog-card__category {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.6em;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6em;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
  max-width: none;
}

.blog-card__meta {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-accent  { color: var(--clr-accent); }
.text-muted   { color: var(--clr-text-muted); }
.mt-sm        { margin-top: var(--space-sm); }
.mt-md        { margin-top: var(--space-md); }
.mt-lg        { margin-top: var(--space-lg); }
.mb-sm        { margin-bottom: var(--space-sm); }
.mb-md        { margin-bottom: var(--space-md); }
.mb-lg        { margin-bottom: var(--space-lg); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

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

/* ===== RESPONSIVE — MOBIEL ===== */

/* Extra klein scherm (< 400px) */
@media (max-width: 399px) {
  :root {
    --space-lg: 2rem;
    --space-xl: 3.5rem;
    --space-2xl: 5rem;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .hero__content {
    padding-inline: var(--space-sm);
  }

  /* Knoppen op smal scherm: volledige breedte */
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form {
    padding: var(--space-md);
  }
}

/* Mobiel (< 600px) */
@media (max-width: 599px) {
  /* Knoppen in hero naast elkaar als ze passen, anders onder elkaar */
  .hero__cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero__cta .btn {
    width: min(280px, 100%);
    justify-content: center;
  }

  /* Sectie-padding verminderen op mobiel */
  .section {
    padding-block: var(--space-lg);
  }

  .cta-section {
    padding-block: var(--space-xl);
  }

  /* Cards: volledige breedte op mobiel */
  .cards--2,
  .cards--3 {
    grid-template-columns: 1fr;
  }

  /* Reviews: één kolom */
  .reviews-grid--2,
  .reviews-grid--3 {
    grid-template-columns: 1fr;
  }

  /* Footer grid: één kolom */
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  /* CTA sectie knoppen stapelen */
  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-section__buttons .btn {
    width: min(260px, 100%);
    justify-content: center;
  }

  /* Side drawer smaller op smal scherm */
  .side-drawer {
    padding: var(--space-xl) var(--space-md);
  }
}

/* Tablet (600px–899px) */
@media (min-width: 600px) and (max-width: 899px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col__visual {
    max-height: 400px;
    aspect-ratio: 16 / 9;
  }
}

/* Groot scherm: voorkom dat de hero te hoog wordt op landscape tablet */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: 480px;
  }

  .hero__content {
    padding-block: var(--space-lg);
  }
}

/* ===== PRINT ===== */
@media print {
  .site-header,
  .hamburger,
  .side-drawer,
  .nav-overlay,
  .site-footer { display: none; }
  .page-offset { padding-top: 0; }
}

/* ===== CONTACT PAGINA SPECIFIEK ===== */
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

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

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

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

.contact-info__block h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  margin-bottom: .5em;
  color: var(--clr-text);
}

.contact-info__block p,
.contact-info__block address {
  font-size: .9375rem;
  color: var(--clr-text-muted);
  font-style: normal;
  line-height: 1.8;
}

.contact-info__block a {
  color: var(--clr-accent);
  transition: color var(--dur-fast) var(--ease);
}

.contact-info__block a:hover {
  color: var(--clr-accent-dark);
}

.section-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-block: var(--space-xl);
  color: var(--clr-text-muted);
  font-size: .85rem;
  font-style: italic;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-border);
}

.form-success {
  background: var(--clr-accent-light);
  border: 1px solid var(--clr-accent);
  border-radius: 6px;
  padding: var(--space-md);
  text-align: center;
  color: var(--clr-text);
  margin-bottom: var(--space-lg);
}

/* ===== SINGLE POST ===== */
.post-header {
  background-color: var(--clr-bg-alt);
  padding-block: var(--space-xl);
  border-bottom: 1px solid var(--clr-border);
}

.post-content {
  max-width: var(--max-text);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.post-content p {
  margin-bottom: var(--space-md);
  max-width: none;
}

.post-content h2,
.post-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.post-content ul,
.post-content ol {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: var(--space-md);
  color: var(--clr-text-muted);
}

.post-content ol {
  list-style: decimal;
}

.post-thumbnail {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: var(--space-xl);
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.875rem;
  color: var(--clr-accent);
  margin-bottom: var(--space-lg);
  transition: color var(--dur-fast) var(--ease);
}

.post-back-link:hover {
  color: var(--clr-accent-dark);
}

/* ===== ARCHIEF PAGINERING ===== */
.posts-pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--clr-border);
}

.posts-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  transition: all var(--dur-fast) var(--ease);
}

.posts-pagination .page-numbers:hover,
.posts-pagination .page-numbers.current {
  background-color: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}
