/*! Root */
:root {
  --main-font: "Inter", Arial, sans-serif;
  --menu-font: 'Playfair Display', serif;
  --generalfont: "DM Sans", Arial, sans-serif;
  --main-color: #6e6b5e;
  --secondary-color: #a4968c;
  --highlight-color: #bda895;
  --menu-bg: #b7b2ad;
  /* gebruikt voor mobiel overlay */
  --menu-overlay: #ffffff;
  /* off-white overlay mobiel */
  --border-color: #e5dfd9;
  --icon-color: #ecd295;
  --icon-hover: #5a5247;
  --logo-color: #fff;
  --detail-color: #efeeee;
  --container-bg: #ffffff;
  --footer-bg: #b7b2ad;
  --logo-size-desktop: 2.0rem;
  --logo-size-tablet: 1.5rem;
  --logo-size-mobile: 1.5rem;
  --logo-size-current: clamp(var(--logo-size-mobile), 4.2vw, var(--logo-size-desktop));
  --header-height-desktop: 110px;
  --header-height-tablet: 100px;
  --header-height-mobile: 74px;
  --header-height-current: var(--header-height-desktop);
  --menu-font-size: 0.95rem;
  --navbar-padding-x: 38px;
  --navbar-padding-y: 0;
  --menu-gap: 28px;
  --icon-gap: 18px;
  --icon-size: 1.22rem;
  --container-font-family: var(--generalfont, Arial, sans-serif);
  --container-font-size: 1.0rem;
  --container-line-height: 1.7;
  --container-letter-spacing: 0.04em;
  --container-font-weight: 100;
  --max-w: 55vw;
  --gutter: 1.25rem;
  --radius: 18px;
  --radius-lg: 26px;
  --lh-tight: 1.15;
  --lh-base: 1.6;
  --scroll-t: 0;
  --parallax: 0;
  --nav-max-width: 90vw;
  --nav-pad: clamp(16px, 4vw, 56px);
}



@media (max-width: 1100px) {
  :root {
    --max-w: 85vw;
    /* tablets en kleinere schermen breder */
  }
}

@media (max-width: 640px) {
  :root {
    --max-w: 95vw;
    /* mobiele schermen bijna full width */
  }
}




/*! Fonts */
@font-face {
  font-display: swap;
  font-family: Kalieb;
  font-style: normal;
  font-weight: 400;
  src: url(fonts/KaliebLuxuryDemo-Regular.otf) format("opentype")
}

@font-face {
  font-display: swap;
  font-family: Sundiary;
  font-style: normal;
  font-weight: 400;
  src: url(fonts/SundiaryDemo-2OgdK.ttf) format("truetype")
}

/* Montserrat variable font – lokaal */
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  /* volledige bereik van het variable font */
  font-style: normal;
  font-display: swap;
}

/*! Basis */
*,
:after,
:before {
  box-sizing: border-box
}

html {
  -webkit-text-size-adjust: 100%
}

body {
  background: var(--container-bg);
  font-family: var(--main-font);
  margin: 0
}

.container,
main,
section {
  position: static;
  z-index: auto;
}

.header-image,
body {
  box-sizing: border-box
}

/* in-page anchors: niet onder vaste navbar */
[id] {
  scroll-margin-top: calc(var(--header-height-current) + 24px)
}


.section-container {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin-inline: auto;
}



/*! Header foto */
.about-hero {
  background: url(img/ilseverbruggenwebdesign.jpg) center 0/cover no-repeat fixed;
  display: grid;
  isolation: isolate;
  min-height: clamp(42vh, 68vh, 76vh);
  overflow: clip;
  place-items: center;
  position: relative
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .18) 30%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
  z-index: 0;
}

@media (hover:none) and (pointer:coarse) {
  .about-hero {
    background-attachment: scroll;
    background-position: center 30%
  }
}

@media (max-width:768px) {
  .about-hero {
    background-position: center 25%;
    min-height: clamp(26vh, 30vh, 36vh)
  }
}

/*! Navigatie – desktop: transparant, logo gecentreerd, menu links/rechts */









/* === NAV & MENU – afgestemd op jouw bestaande stijl === */

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

html {
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0;
  font-family: 'DM Sans', Arial, sans-serif;
  background: #fff;
  color: #2f2b26
}

/* Navbar */
.navbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: var(--header-height-desktop);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, .6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: 10px 16px;
  z-index: 210;
}

.navbar,
.navbar a {
  color: #000;
}

.navbar-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--logo-color);
  font-family: var(--menu-font);
  font-size: var(--logo-size-desktop);
  font-weight: 300;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Hamburger */
.menu-toggle {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 12px;
  z-index: 240;
  display: none;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: .3s;
}

.menu-toggle span+span {
  margin-top: 5px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Desktop menu */
.main-nav {
  height: 100%;
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: auto auto 1fr auto auto auto;
  align-items: center;
  gap: var(--menu-gap);
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100vw;
}

.main-nav ul li:nth-child(1) {
  grid-column: 1
}

.main-nav ul li:nth-child(2) {
  grid-column: 2
}

.main-nav ul li:nth-child(3) {
  grid-column: 4
}

.main-nav ul li:nth-child(4) {
  grid-column: 5
}

.main-nav ul li:nth-child(5) {
  grid-column: 6
}

.main-nav ul a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  font-family: var(--menu-font);
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  transition: color .25s ease, opacity .15s ease;
}

.main-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transform: scaleX(.6);
  transform-origin: center;
  transition: transform .25s ease, opacity .25s ease;
}

.main-nav ul a:hover::after {
  opacity: .8;
  transform: scaleX(1);
}


/* Desktop tuning */
@media (min-width:1101px) {
  :root {
    --logo-size-current: var(--logo-size-desktop);
    --header-height-current: var(--header-height-desktop);
  }

  .navbar {
    justify-content: center;
    padding-left: var(--nav-pad);
    padding-right: var(--nav-pad);
  }

  .main-nav {
    width: 100%;
  }

  .main-nav ul {
    width: min(var(--nav-max-width), calc(100% - 2*var(--nav-pad)));
    margin-inline: auto;
    column-gap: clamp(12px, 2.4vw, 28px);
  }

  .main-nav ul a {
    font-size: clamp(.86rem, .8rem + .2vw, .95rem);
    letter-spacing: clamp(.12em, .10em + .1vw, .18em);
    white-space: nowrap;
  }

  .navbar-logo {
    font-size: clamp(1.8rem, 1.2rem + 2.4vw, var(--logo-size-desktop));
  }
}

/* === Mobiel menu: smooth, geen flits, iOS-vriendelijk === */
@media (max-width: 1100px) {
  :root {
    --logo-size-current: var(--logo-size-mobile);
    --header-height-current: var(--header-height-mobile);
  }

  /* Navbar blijft fixed en promoot naar eigen compositing layer */
  .navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-height-current);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    transform: translateZ(0);
    /* minder repaint/hapering */
    will-change: transform;
    z-index: 300;
  }

  .navbar-logo {
    font-size: var(--logo-size-current);
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
  }

  /* Overlay nav begint onder de navbar en is standaard onzichtbaar */
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-height-current);
    height: calc(100dvh - var(--header-height-current));
    /* fallback voor oudere browsers zonder 100dvh */
    height: calc(100vh - var(--header-height-current));
    background: #fff;

    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 10px 0 -8px rgba(40, 40, 40, .10);

    opacity: 0;
    transform: translate3d(0, -8px, 0);
    pointer-events: none;

    transition: opacity .26s ease, transform .26s ease;
    will-change: opacity, transform;
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    z-index: 310;
    /* boven scrim? nee: eronder; scrim krijgt 305 (zie hieronder) */
  }

  /* Open staat: géén top-sprong; alleen fade/slide in */
  .main-nav.open {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    border-radius: 0;
  }

  /* Menu-items */
  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    width: 100%;
    margin: 0 auto;
    padding: 16px 24px 32px;
    /* geen extra top-padding nodig, navbarhoogte is buiten het paneel gehouden */
    list-style: none;
  }

  .main-nav ul li {
    width: 100%;
    text-align: center;
  }

  .main-nav ul a {
    color: #2f2b26;
    font-size: 1.05rem;
    font-weight: 300;
    letter-spacing: .22em;
    padding: 10px 0;
    text-decoration: none;
  }

  /* Scrim achter het paneel voor zachte overgang */
  .menu-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .18);
    opacity: 0;
    pointer-events: none;
    transition: opacity .26s ease;
    z-index: 305;
  }

  body.menu-open .menu-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  /* Balk solid wit wanneer menu open is */
  body.menu-open .navbar {
    background-color: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
  }

  body.menu-open .navbar,
  body.menu-open .navbar a {
    color: #2b2b2b;
  }

  body.menu-open .menu-toggle span {
    background: #2b2b2b;
  }

  /* Scroll/overscroll rustig houden tijdens open menu */
  html.menu-open,
  body.menu-open {
    overflow: hidden;
    overscroll-behavior: contain;
  }
}

/* Minder beweging: zet animaties uit */
@media (prefers-reduced-motion: reduce) {
  .main-nav {
    transition: none !important;
  }

  .menu-scrim {
    transition: none !important;
  }
}

/* === When menu opens: cover the header, hide logo/bar, keep the toggle usable === */
@media (max-width:1100px) {

  /* 1) Make the overlay start at the very top */
  body.menu-open .main-nav.open {
    top: 0;
    height: 100dvh;
    /* full viewport */
    height: 100vh;
    /* fallback */
    border-radius: 0;
    box-shadow: none;
  }

  /* 2) Visually remove logo + bar (no border/shadow) */
  body.menu-open .navbar {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* hide brand/logo text or image */
  body.menu-open .navbar .navbar-logo,
  body.menu-open .navbar .brand,
  body.menu-open .navbar .site-title {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease;
  }

  /* 3) Keep the toggle accessible above the overlay (acts as close button) */
  body.menu-open .menu-toggle {
    position: fixed;
    /* detach from the bar */
    top: 12px;
    right: 14px;
    z-index: 400;
    /* above main-nav (310) and scrim (305) */
  }

  /* ensure the hamburger stays visible on white overlay */
  body.menu-open .menu-toggle span {
    background: #2b2b2b;
  }

  /* 4) Prevent menu content from sitting under the toggle */
  body.menu-open .main-nav.open ul {
    padding-top: 72px;
    /* room for the fixed toggle */
  }
}


/* === Smooth fill reveal voor het mobiele menu === */
@media (max-width:1100px) {

  /* zorg dat de inhoud niet zichtbaar is vóór de fill */
  .main-nav {
    overflow: hidden;
    background: transparent;
    /* we gebruiken de ::before-laag als witte achtergrond */
  }

  /* witte “vullaag” die uitklapt van boven naar beneden */
  .main-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleY(0);
    /* start: geen hoogte */
    transform-origin: top;
    transition: transform .42s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
    backface-visibility: hidden;
  }

  .main-nav.open::before {
    transform: scaleY(1);
    /* vult soepel de hele overlay */
  }

  /* menu-items komen iets later rustig in beeld */
  .main-nav ul {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .28s ease .16s, transform .28s ease .16s;
    will-change: opacity, transform;
  }

  .main-nav.open ul {
    opacity: 1;
    transform: none;
  }

  /* als je bij open de header wil bedekken (zoals eerder): */
  body.menu-open .main-nav.open {
    top: 0;
    height: 100dvh;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }
}

/* respecteer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .main-nav::before {
    transition: none !important;
    transform: none !important;
  }

  .main-nav ul {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width:1100px) {
  .main-nav[data-reveal="radial"]::before {
    /* groeit vanuit rechtsboven (waar je toggle vaak staat) */
    clip-path: circle(0% at 92% 6%);
    transition: clip-path .52s cubic-bezier(.22, .61, .36, 1);
    transform: none;
    /* clip-path variant gebruikt geen scaleY */
  }

  .main-nav.open[data-reveal="radial"]::before {
    clip-path: circle(150% at 92% 6%);
  }
}




/* --- MOBILE NAV met echt gecentreerd logo en hamburger rechts --- */
@media (max-width: 1100px) {
  .navbar {
    /* display: grid; */
    /* grid-template-columns: 1fr auto 1fr; */
    /* linker ruimte | logo | rechter ruimte */
    /* align-items: center; */
    /* padding: 0 clamp(0.75rem, 3vw, 1.25rem); */
    /* position: fixed; */
  }

  /* Logo in het midden */
  .navbar-logo {
    grid-column: 2;
    justify-self: center;
    text-align: center;
    position: static;
    transform: none;
    margin: 0;
    font-size: clamp(1.1rem, 5vw, 1.45rem);
    letter-spacing: .06em;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 20px;
  }

  /* Hamburger rechts */
  .menu-toggle {
    grid-column: 3;
    justify-self: end;
    width: auto;
    padding: 18px 8px 18px 18px;
  }

  /* optioneel: iets grotere klikruimte zonder visuele verschuiving */
  .menu-toggle button,
  .menu-toggle svg {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

/* Extra kleine schermen: iets kleinere naam */
@media (max-width: 360px) {
  .navbar-logo {
    font-size: clamp(1rem, 5.4vw, 1.25rem);
    letter-spacing: .045em;
  }
}


/* 3) Zorg dat de hamburger voorspelbare breedte heeft */
.menu-toggle {
  width: 54px;
  /* matcht spacer rechts */
  padding: 18px 12px;
}


/* Ultrabrede naam op piepkleine schermen → nog iets compacter */
@media (max-width: 360px) {
  .navbar-logo {
    font-size: clamp(1rem, 5.4vw, 1.25rem);
    letter-spacing: .045em;
  }
}








/* Desktop: slider onder de (fixed) header duwen */
.strip-slider {
  position: relative;
  margin-top: var(--header-height-current);
}







.strip-mask {
  overflow: hidden;
}

.strip-track {
  display: flex;
  max-height: 50vh;
  overflow: hidden;
  /* geen gap meer tussen de items */
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.strip-track::-webkit-scrollbar {
  display: none;
}

/* WebKit */

.tile {
  flex: 0 0 auto;
  border-radius: 0;
  /* geen afgeronde hoeken meer */
  overflow: hidden;
  background: #ddd;
  scroll-snap-align: start;
  position: relative;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Breedteklassen: nu wat breder ingesteld */
.w-s {
  flex-basis: clamp(240px, 32vw, 380px);
}

.w-m {
  flex-basis: clamp(320px, 44vw, 520px);
}

.w-l {
  flex-basis: clamp(420px, 56vw, 680px);
}

/* Hoogte/verhouding */
.aspect-1-1 {
  aspect-ratio: 1 / 1;
}

.aspect-3-4 {
  aspect-ratio: 3 / 4;
}

.aspect-4-3 {
  aspect-ratio: 4 / 3;
}

.aspect-2-3 {
  aspect-ratio: 2 / 3;
}

.aspect-3-2 {
  aspect-ratio: 3 / 2;
}

.aspect-16-9 {
  aspect-ratio: 16 / 9;
}

/* Navigatieknoppen */
.strip-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(0, 0, 0, .18);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(2px);
}

.strip-prev {
  left: 12px;
}

.strip-next {
  right: 12px;
}

.strip-nav:hover {
  background: rgba(0, 0, 0, .28);
}

.strip-nav:focus {
  outline: 2px solid rgba(255, 255, 255, .7);
  outline-offset: 2px;
}

/* Mobiel: breedtes compacter, maar nog steeds zonder gap */
@media (max-width: 700px) {
  .w-s {
    flex-basis: clamp(200px, 60vw, 280px);
  }

  .w-m {
    flex-basis: clamp(260px, 80vw, 360px);
  }

  .w-l {
    flex-basis: clamp(320px, 95vw, 440px);
  }
}













/* === Beeldtegels zonder grijze rand, groter === */
.link-cards {
  padding: clamp(24px, 6vw, 64px);
  background: var(--container-bg);
}

.link-cards__grid {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 42px);
}

.link-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0px;
  text-decoration: none;
  color: inherit;
  /* grijze achtergrond en padding verwijderd */
}

.link-card__media {
  margin: 0;
  line-height: 0;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 3 / 4;
  /* iets verticaler, groter effect */
}

.link-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .5s ease, filter .5s ease;
}

/* Overlay tekst */
.link-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(12px, 2vw, 24px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .44));
  opacity: .96;
  transition: background .35s ease, opacity .35s ease;
}

.link-card__title {
  margin: 0 0 .3rem 0;
  font-family: var(--menu-font);
  font-weight: 500;
  letter-spacing: .02em;
  font-size: clamp(1.4rem, 1.1rem + 5vw, 2.5rem)
}

.link-card__subtitle {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: clamp(.72rem, .5rem + .35vw, 1rem);
  opacity: .92;
}

/* Hover effect */
.link-card:hover .link-card__media img {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
}

.link-card:hover .link-card__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .55));
}

/* Responsief */
@media (max-width: 980px) {
  .link-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .link-cards__grid {
    grid-template-columns: 1fr;
  }
}









/* --- Sectie onder de slider --- */
.below-strip-intro {
  padding: clamp(48px, 3vw, 90px) 0 clamp(42px, 3vw, 100px);
  background: #fff;
  /* neutrale achtergrond zoals in voorbeeld */
  color: var(--main-color);
}

.below-strip-intro .intro-wrap {
  width: min(1100px, calc(100% - 2*var(--nav-pad, 5vw)));
  margin-inline: auto;
  text-align: center;
}

/* kleine cursieve regel */
.intro-kicker {
  font-family: var(--container-font-family);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(.95rem, .8rem + .4vw, 1.05rem);
  letter-spacing: .01em;
  color: var(--secondary-color);
  margin: 0 0 clamp(12px, 1.8vw, 20px);
}










/* ===== Focus-areas (home) — volledige vervanging ===== */
.focus-areas {
  background: var(--container-bg);
  color: var(--main-color);
  /* padding: clamp(36px, 4vw, 53px) 0; */
}

.focus-areas__inner {
  /* Zelfde centrering/breedte als de andere secties */
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin-inline: auto;
}

/* Kop */
.focus-areas__head {
  text-align: center;
  margin-bottom: clamp(16px, 3.5vw, 28px);
}

.focus-areas__title {
  margin: 0 0 .5rem 0;
  font-family: var(--menu-font);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.2;
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.6rem);
  color: #2f2b26;
}

.focus-areas__intro {
  margin: 0;
  font-family: var(--container-font-family);
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
  opacity: .96;
}

/* Grid (valt nu binnen dezelfde containerbreedte) */
.focus-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vw, 28px);
  margin-top: clamp(16px, 4vw, 32px);
}

@media (max-width: 980px) {
  .focus-areas__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .focus-areas__grid {
    grid-template-columns: 1fr;
  }
}

/* Kaart */
.focus-card {
  --img: none;
  position: relative;
  display: grid;
  place-content: end;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #ddd;
  isolation: isolate;
  align-content: end;
  justify-content: start;
  justify-items: start;
}

/* Foto + overlay */
.focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--img) center/cover no-repeat;
  transform: scale(1.02);
  transition: transform .5s ease, filter .5s ease;
  z-index: -2;
}

.focus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .55) 100%);
  opacity: .95;
  transition: opacity .35s ease, background .35s ease;
  z-index: -1;
}

/* Tekst op de kaart */
.focus-card__label {
  display: inline-block;
  margin: 0 0 .35rem 0;
  font-family: var(--menu-font);
  font-size: clamp(.7rem, .6rem + .35vw, .82rem);
  letter-spacing: .36em;
  text-transform: uppercase;
  opacity: .92;
}

.focus-card__title {
  display: block;
  margin: 0 0 .2rem 0;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.1;
  font-size: clamp(1.0rem, 1rem + 1.4vw, 1.4rem);
}

/* Binnenmarge onderin kaart */
.focus-card>.focus-card__label,
.focus-card>.focus-card__title {
  padding-inline: clamp(14px, 2.4vw, 20px);
}

.focus-card>.focus-card__title {
  padding-bottom: clamp(12px, 2vw, 18px);
}

/* Interactie & toegankelijkheid */
.focus-card:hover::before {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
}

.focus-card:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .08) 20%, rgba(0, 0, 0, .6) 100%);
  opacity: 1;
}

.focus-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--highlight-color) 40%, transparent);
}

/* CTA */
.focus-areas__cta {
  text-align: center;
  margin-top: clamp(14px, 4vw, 28px);
}

.focus-areas .cta-btn {
  border-color: #333;
  color: #333;
}

.focus-areas .cta-btn:hover {
  background: #333;
  color: #fff;
}







/* ============================
   Tarieven / Pricing – styles
   Past in bij bestaande stijl, gebruikt CSS-variabelen uit styles.css
   ============================ */

/* --- Basiscontainer --- */
.pricing {
  background: var(--container-bg);
  color: var(--main-color);
  /* padding: clamp(27px, 2vw, 34px) 0; */
}

.prijskaartjes__inner {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin-inline: auto;
}

/* --- Kop en intro --- */
.pricing__title {
  /* margin: 0 0 .35rem 0; */
  /* font-family: var(--menu-font); */
  /* font-weight: 400; */
  /* letter-spacing: .04em; */
  /* color: #2f2b26; */
  /* font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.6rem); */
  /* margin: 0 0 var(--space); */
  font-family: var(--menu-font);
  font-weight: 300;
  letter-spacing: .08em;
  line-height: 1.2;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.6rem);
  color: #2f2b26;
}

.pricing__intro {
  margin: 0 0 clamp(18px, 2.6vw, 26px);
  font-family: var(--container-font-family);
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  opacity: .96;
}

/* =========================
   Pricing-block (per categorie)
   ========================= */
.pricing-block {
  margin-top: clamp(18px, 3vw, 36px);
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 0;
  overflow: clip;
  box-shadow: 0 6px 28px rgba(0, 0, 0, .04);
  /* margin-bottom:  clamp(18px, 3vw, 36px); */
}

/* --- Hero per blok met foto-achtergrond via inline CSS var(--bg) --- */
.pricing-hero {
  --h-pad: clamp(18px, 4vw, 28px);
  position: relative;
  min-height: clamp(180px, 26vw, 320px);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .45)),
    var(--bg, none) center / cover no-repeat;
  display: grid;
  place-items: end start;
  padding: var(--h-pad);
  isolation: isolate;
}

.pricing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .28), transparent 55%);
  pointer-events: none;
}

.pricing-hero__content {
  position: relative;
  color: #fff;
  max-width: 68ch;
}

.pricing-hero .eyebrow {
  color: rgba(255, 255, 255, .85);
  margin: 0 0 .25rem 0;
}

.pricing-hero h2 {
  margin: 0 0 .35rem 0;
  font-family: var(--menu-font);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.1rem + 1.8vw, 2.2rem);
  letter-spacing: .02em;
}

.pricing-hero .sub {
  margin: 0;
  font-family: var(--container-font-family);
  line-height: 1.6;
  opacity: .95;
}

/* =========================
   Pakketten grid
   ========================= */
.pricing-packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2.6vw, 24px);
  padding: clamp(11px, 1.2vw, 26px);
  background: var(--detail-color);
}

@media (max-width: 760px) {
  .pricing-packages {
    grid-template-columns: 1fr;
  }
}

/* Kaart */
.pricing-card {
  border: 1px solid var(--border-color);
  background: #fff;
  padding: clamp(16px, 2.8vw, 22px);
  display: grid;
  align-content: start;
  gap: clamp(8px, 1.6vw, 12px);
  border-radius: 0;
  transition: box-shadow .2s ease, transform .15s ease, border-color .2s ease;
}

.pricing-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, .06);
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--border-color) 75%, #000 25%);
}

.pricing-card h3 {
  margin: 0;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  font-size: clamp(1.05rem, .9rem + .6vw, 1.35rem);
  color: #2f2b26;
}

.pricing-card .price {
  margin: .1rem 0 0 0;
  font-family: var(--menu-font);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.1rem + 1.8vw, 2rem);
  color: #2f2b26;
}

.pricing-card .divider {
  width: 64px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--highlight-color), var(--detail-color));
  margin: .2rem 0 .4rem;
}

.pricing-card ul {
  list-style: none;
  margin: 0 0 .4rem 0;
  padding: 0;
  display: grid;
  gap: .4rem;
  font-family: var(--container-font-family);
  font-size: clamp(.95rem, .9rem + .2vw, 1.05rem);
  line-height: 1.6;
}

.pricing-card ul li {
  position: relative;
  padding-left: 1.15rem;
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
  font-size: var(--container-font-size);
}

.pricing-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  inline-size: .5rem;
  block-size: .5rem;
  border-radius: 999px;
  background: var(--icon-color);
  box-shadow: 0 0 0 2px #fff;
}

/* CTA-knop volgt sitebrede .cta-btn basis; voeg compacte variant toe */
.pricing-card .cta-btn {
  justify-self: start;
  margin-top: .2rem;
  padding: .7rem 1.1rem;
  font-size: .85rem;
  border-color: #cfc9c2;
  color: #6c655c;
}

.pricing-card .cta-btn:hover {
  background: #faf8f6;
  border-color: var(--detail-color);
}

/* Uitgelichte kaart */
.pricing-card.is-featured {
  border-color: color-mix(in srgb, var(--highlight-color) 55%, var(--border-color));
  background:
    linear-gradient(180deg, rgba(189, 168, 149, .06), transparent 32%),
    #fff;
  box-shadow: 0 10px 38px rgba(189, 168, 149, .22);
}

/* =========================
   Info / voorwaarden
   ========================= */
.pricing-info {
  padding: clamp(14px, 3vw, 24px) clamp(16px, 3.2vw, 26px) clamp(20px, 3.6vw, 30px);
  border-top: 1px solid var(--border-color);
  background: #fff;
}

.pricing-info h2 {
  margin: 0 0 .35rem 0;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
  color: #2f2b26;
}

.pricing-info ul {
  margin: 0 0 .6rem 0;
  padding-left: 1.15rem;
  /* echte bullets hier */
  line-height: 1.65;
}

.pricing-info .pricing-cta {
  margin: .6rem 0 0 0;
}

/* =========================
   Scroll progress (indien aanwezig op pagina)
   ========================= */
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--highlight-color), var(--detail-color));
  z-index: 400;
  transition: width .1s linear;
}

/* =========================
   Animaties en toegankelijkheid
   ========================= */
@media (prefers-reduced-motion: reduce) {

  .pricing-hero,
  .pricing-card {
    transition: none !important;
  }
}

/* =========================
   Kleine utility voor categorie-tag (optioneel, blijft consistent)
   ========================= */
.pricing-block .eyebrow {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}













/* ==== About band (two-column) ==== */
.about-band {
  background: var(--detail-color);
  /* sluit aan bij je site */
  padding: clamp(36px, 6vw, 72px) 0;
  position: relative;
  border: none;
  margin-bottom: clamp(36px, 4vw, 53px);
}


/* dunne lijn bovenin, zoals in het voorbeeld */
.about-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0cqh;
  background: rgba(0, 0, 0, .08);
}

.about-band__inner {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  /* of gewoon direct */
  margin-inline: auto;
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.portrait-frame {
  box-shadow: none;
  line-height: 0;
}

.portrait-frame img {
  display: block;
}


/* Media links */
.about-band__media {
  display: grid;
  place-items: start;
}

/* Portretframe: witte passe-partout + fijne rand in je detailkleur */
.portrait-frame {

  margin: 0;
  padding: var(--frame-pad);


  outline-offset: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);

  max-width: 640px;
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0px;
  object-fit: cover;
}


/* lijn verwijderen */
.portrait-frame {
  box-shadow: none;
  /* was: 0 1px 0 rgba(0,0,0,.04) */
}

/* optioneel: zachte, rondom-schaduw i.p.v. onderlijn */
.portrait-frame--soft {
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
}


/* Content rechts */
.about-band__content {
  align-self: center;
  color: var(--main-color);
  font-family: var(--container-font-family);
  letter-spacing: var(--container-letter-spacing);
  line-height: var(--container-line-height);
  font-size: var(--container-font-size);
}

/* Eyebrow (kleine bovenkop) */
.eyebrow {
  margin: 0 0 .75rem 0;
  font-family: var(--menu-font);
  font-size: clamp(.62rem, .52rem + .3vw, .76rem);
  font-weight: 300;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .55);
}

.eyebrow-sub {
  letter-spacing: .26em;
  color: rgba(0, 0, 0, .45);
}

/* Titel */
.about-band__title {
  margin: 0 0 .8rem 0;
  font-family: var(--menu-font);
  /* jouw displayfont */
  font-weight: 400;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem);
  line-height: var(--lh-tight);
  color: var(--main-color);
}

/* Tekstkolom */
.about-band__copy p {
  margin: 0 0 .9rem 0;
  max-width: 85ch;
}

/* CTA subtiel, uitgelijnd links */
.about-band__cta {
  margin-top: clamp(.6rem, 1.2vw, 1rem);
}

.about-band__cta .minimal-btn {
  border-color: var(--border-color);
}

/* Responsief: stacken onder elkaar */
@media (max-width: 980px) {
  .about-band__inner {
    grid-template-columns: 1fr;
    gap: clamp(18px, 4vw, 28px);
  }

  .about-band__media {
    order: 1;
  }

  .about-band__content {
    order: 2;
  }

  .portrait-frame {
    justify-self: center;
    width: min(640px, 100%);
  }
}











.about-band__cta .social-icons {
  display: flex;
  gap: 18px;
  margin-top: 1.5rem;
}

.about-band__cta .social-icons a {
  color: var(--main-color);
  /* of wit als je een donkere achtergrond wilt */
  font-size: 1.5rem;
  opacity: 0.9;
  transition: color .2s ease, opacity .2s ease;
}

.about-band__cta .social-icons a:hover {
  color: #000;
  opacity: 1;
}















/* grote kop (meer serif-gevoel met strakkere tracking en hogere line-height) */
.intro-headline {
  margin: 0 0 clamp(18px, 2.4vw, 26px);
  font-family: var(--menu-font);
  /* Montserrat */
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .09em;
  line-height: 1.2;
  font-size: clamp(1.9rem, 1.2rem + 3vw, 3.4rem);
  color: #4a4942;
}

/* dunne, uppercase tagline met ruime letterspatiëring */
.intro-tagline {
  margin: 0 0 clamp(24px, 3.5vw, 36px);
  font-family: var(--menu-font);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .38em;
  font-size: clamp(1.20rem, .6rem + .25vw, .9rem);
  color: #8b867f;
}

/* subtiele outline-knop */
.intro-btn {
  display: inline-block;
  padding: .85rem 1.4rem;
  border-radius: 4px;
  border: 1px solid #cfc9c2;
  background: transparent;
  color: #6c655c;
  text-decoration: none;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .85rem;
  transition: border-color .2s ease, transform .15s ease, background-color .2s ease;
}

.intro-btn:hover {
  border-color: var(--detail-color);
  background-color: #faf8f6;
  transform: translateY(-1px);
}

/* iets meer lucht op hele smalle schermen */
@media (max-width: 520px) {
  .intro-headline {
    letter-spacing: .06em;
  }

  .intro-tagline {
    letter-spacing: .32em;
  }
}








.section-divider {
  background: linear-gradient(90deg, var(--highlight-color), var(--detail-color));
  border-radius: 3px;
  height: 3px;
  margin: .3rem 0 1rem;
  width: 64px;

}










/* =========================
   FAQ – clean, rustig, modern
   ========================= */

/* Pagina & header */
.faq-page {
  background: var(--container-bg);
  padding-bottom: 3vw;
}

.faq-header {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin-inline: auto;
  margin-bottom: clamp(16px, 3vw, 28px);
}

.faq-header #faq-title {
  margin: 0 0 .35rem 0;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--main-color);
  font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.2rem);
}

.faq-lead {
  margin: 0;
  color: var(--main-color);
  opacity: .92;
  max-width: 66ch;
  line-height: 1.65;
}

/* Lijst */
.faq-accordion {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin-inline: auto;
  border-top: 1px solid var(--border-color);
}

/* Item */
.faq-item {
  border-bottom: 1px solid var(--border-color);
  background: #fff;
  /* neutrale basis */
}

/* Vraag-knop */
.faq-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  /* tekst links | icoon rechts */
  align-items: center;
  gap: 12px;
  padding: clamp(16px, 2.6vw, 20px) 0;
  border: 0;
  background: transparent;
  color: var(--main-color);
  font: 400 1rem/1.55 var(--main-font);
  cursor: pointer;
  text-align: left;
  /* <<< forceer tekst links */
}

/* Hover/active: subtiel, geen gekleurde vlakken */
.faq-item:hover .faq-toggle {
  color: color-mix(in srgb, var(--main-color) 90%, #000 10%);
}

/* Focus: duidelijke maar zachte ring */
.faq-toggle:focus-visible {
  outline: none;
  border-radius: 8px;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--highlight-color) 38%, transparent);
}

/* Chevron-icoon: minimalistisch en scherp */
.faq-icon {
  inline-size: 22px;
  block-size: 22px;
  background: none;
  position: relative;
}

.faq-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  inline-size: 16px;
  block-size: 16px;

  /* Hier zit je SVG veilig in een data-URL */
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='6 9 12 15 18 9' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;

  background-color: currentColor;
  transition: transform .22s ease;
}


.faq-toggle[aria-expanded="true"] .faq-icon::before {
  transform: rotate(180deg);
}

/* Antwoord-paneel: rustige open/dicht animatie */
.faq-a {
  overflow: hidden;
  max-height: 0;
  /* JS zet bij openen op scrollHeight */
  opacity: .98;
  transition: max-height .26s ease, opacity .26s ease;
  will-change: max-height;
  background: #fff;
}

.faq-a>* {
  margin: 0;
  padding-inline: 0;
}

.faq-a p,
.faq-a ul,
.faq-a ol {
  color: var(--main-color);
  line-height: 1.75;
  opacity: .96;
  margin-bottom: clamp(12px, 2vw, 16px);
}

.faq-a> :first-child {
  padding-top: clamp(6px, 1.2vw, 8px);
}

.faq-a> :last-child {
  margin-bottom: clamp(16px, 2.4vw, 20px);
}

/* Open state hint (optioneel, heel subtiel) */
.faq-item.is-open {
  background: #fff;
}

.faq-item.is-open .faq-toggle {
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
}

/* actieve kleur op enkel de geopende vraag */
.faq-item.is-open .faq-toggle[aria-expanded="true"] {
  color: var(--highlight-color);
}

/* behoud die kleur ook tijdens hover */
.faq-item.is-open:hover .faq-toggle[aria-expanded="true"] {
  color: var(--highlight-color);
}

/* Links in FAQ antwoorden */
.faq-a a {
  color: var(--highlight-color);
  /* accentkleur van je site */
  font-weight: 500;
  /* iets opvallender */
  text-decoration: none;
  /* geen standaard underline */
  border-bottom: 1px solid currentColor;
  /* subtiele underline */
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}

.faq-a a:hover,
.faq-a a:focus {
  color: var(--icon-hover);
  /* lichtere/donkerdere variant */
  border-color: var(--icon-hover);
}

.faq-a a:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--highlight-color) 70%, #fff 30%);
  outline-offset: 2px;
  border-color: transparent;
  /* voorkomt dubbele highlight */
}


/* Kleinere schermen: iets compacter */
@media (max-width: 640px) {
  .faq-toggle {
    padding-block: 12px;
  }
}

/* Motion-reductie */
@media (prefers-reduced-motion: reduce) {
  .faq-a {
    transition: none;
  }

  .faq-icon::before {
    transition: none;
  }
}



/* knop */
.cta-btn {
  display: inline-block;
  padding: 1.4rem 1.8rem;
  font-family: var(--menu-font);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #333;
  background: transparent;
  border: 1px solid #333;
  text-decoration: none;
  transition: all .25s ease;
}

.cta-btn:hover {
  background: #333;
  color: #fff;
}








.intro-subtext {
  color: var(--main-color);
  font-family: var(--container-font-family);
  font-size: var(--container-font-size);
  font-weight: var(--container-font-weight);
  letter-spacing: var(--container-letter-spacing);
  line-height: var(--container-line-height)
}

/*! Knop */
.minimal-btn {
  align-items: center;
  background: linear-gradient(180deg, #fff, #f5f2ef);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  color: #2f2b26;
  display: inline-flex;
  gap: .5rem;
  padding: .6rem .9rem;
  text-decoration: none
}

.minimal-btn:hover {
  border-color: var(--highlight-color);
  transform: translateY(-1px);
  transition: transform .15s ease, border-color .15s ease
}

/*! Utilities */
main {
  position: relative;
  z-index: 1
}

/*!Aangeboden Diensten */
.services-highlight {
  background: none;
  border-radius: 0 0 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 auto;
  max-width: 100vw;
  overflow: visible
}

.service-block {
  align-items: flex-start;
  background: #c2b1a7;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex: 1 1 0%;
  flex-direction: row;
  gap: 24px;
  min-width: 300px;
  padding: 48px 36px 36px;
  transition: background .2s
}

.icon-circle {
  align-items: center;
  background: none;
  border: 2.5px solid #fff;
  border-radius: 50%;
  display: flex;
  height: 72px;
  justify-content: center;
  min-height: 72px;
  min-width: 72px;
  transition: width .2s, height .2s;
  width: 72px
}

.icon-circle img,
.icon-circle svg {
  display: block;
  filter: brightness(0) invert(1);
  height: 38px;
  width: 38px
}

.service-block h3 {
  color: #fff;
  font-family: Kalieb, serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: .03em;
  line-height: 1.07;
  margin: 0 0 14px
}

.service-block p {
  font-family: var(--container-font-family);
  font-size: var(--container-font-size);
  font-weight: var(--container-font-weight);
  letter-spacing: var(--container-letter-spacing);
  line-height: var(--container-line-height);
  margin: 0
}

@media (max-width:900px) {
  .services-highlight {
    flex-direction: column
  }

  .service-block {
    align-items: flex-start;
    flex-direction: row;
    gap: 18px;
    min-width: unset;
    padding: 32px 18px 24px;
    width: 100%
  }
}

@media (max-width:600px) {
  .service-block {
    gap: 12px;
    padding: 24px 6vw 18px
  }

  .service-block h3 {
    font-size: 1.9rem;
    margin-bottom: 10px
  }

  .service-block p {
    font-size: .97rem
  }

  .icon-circle {
    height: 46px;
    min-height: 46px;
    min-width: 46px;
    width: 46px
  }

  .icon-circle img,
  .icon-circle svg {
    height: 22px;
    width: 22px
  }
}


/*!About me */
.highlight-image-block {
  align-items: center;
  background: url(img/containerbackground.jpg) 50%/cover no-repeat fixed;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  min-height: 300px;
  position: relative;
  width: 100%
}

.highlight-image-text {
  align-items: flex-start;
  background: #a89e967d;
  border-radius: 0;
  box-shadow: 0 8px 42px -8px rgba(50, 35, 20, .14);
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin: 48px 0;
  max-width: 60vw;
  padding: 42px 50px
}

.highlight-title {
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: Kalieb, DM Sans, Arial, sans-serif;
  font-size: 2.4rem;
  justify-content: flex-start;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0;
  text-align: end;
  word-break: break-word
}

.highlight-title span {
  display: block
}

.highlight-description {
  color: #fff;
  flex: 1 1 0;
  font-family: var(--container-font-family);
  font-size: var(--container-font-size);
  font-weight: var(--container-font-weight);
  letter-spacing: var(--container-letter-spacing);
  line-height: var(--container-line-height);
  min-width: 0;
  text-align: left
}

.highlight-description>p {
  margin: 0 0 1rem
}

.highlight-description>p:first-child {
  margin-top: 0
}

@media (max-width:1100px) {
  .highlight-image-text {
    gap: 24px;
    margin: 24px 0;
    max-width: 98vw;
    padding: 32px 22px
  }

  .highlight-title {
    font-size: 2rem
  }

  .highlight-description {
    font-size: 1rem
  }
}

@media (max-width:800px) {
  .highlight-image-text {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0;
    max-width: 99vw;
    padding: 22px 8vw
  }

  .highlight-title {
    align-items: flex-start;
    font-size: 2rem;
    padding-bottom: 7px;
    text-align: left;
    width: 100%
  }

  .highlight-description {
    font-size: .96rem;
    max-width: 100%;
    width: 100%
  }
}

/*! Knop*/
.minimal-btn {
  background: #c2b1a7b6;
  border: 1.5px solid #fff;
  border-radius: 4px;
  box-shadow: none;
  color: #fff;
  display: inline-block;
  font-family: var(--main-font);
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: .02em;
  margin-top: 24px;
  padding: 12px 30px;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s
}

.minimal-btn:focus,
.minimal-btn:hover {
  background: hsla(0, 0%, 100%, .09);
  border-color: #c1b199;
  color: #c1b199;
  outline: none
}


/*! Tarieven */
.tarieven-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
}

.tarieven-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
  position: relative;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease
}

.tarieven-card:hover {
  background: #fdfaf7;
  border: 1px solid var(--highlight-color);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .15);
  transform: translateY(-6px)
}

.tarieven-card-header {
  padding: 2rem 1.5rem 1rem
}

.tarieven-card-title {
  color: var(--main-color);
  font-family: Sundiary, serif;
  font-size: 2.5rem;
  margin: 0
}

.tarieven-card-tagline {
  color: #7a7268;
  font-size: 1rem;
  margin-bottom: .5rem
}

.tarieven-card-price {
  color: #c1b199;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0
}

.tarieven-card-exvat {
  color: #7a7268;
  font-size: .85rem;
  margin-top: .25rem
}

.feature-list {
  color: var(--main-color);
  font-family: Inter, Arial, sans-serif;
  font-size: 1.12rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0 1.5rem
}

.feature-list--center {
  display: inline-block;
  margin: 0 auto;
  text-align: left
}

.feature-list-row {
  border-bottom: 1px solid #e5ddd2;
  font-size: .95rem;
  padding: .4rem 0
}

.feature-list-row i {
  color: #c1b199;
  margin-right: .5rem
}

.tarieven-card-footer {
  margin-top: 1rem
}

.offerte {
  color: var(--main-color);
  font-family: var(--container-font-family);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .07em;
  line-height: 1.12;
  margin: 0 0 45px;
  text-align: center
}

.tarieven-addons {
  margin-top: 3rem;
  text-align: center
}

.tarieven-slider {
  position: relative
}

.tarieven-next,
.tarieven-prev {
  display: none
}

@media (min-width:1025px) {
  .tarieven-grid {
    margin: 0 auto;
    max-width: 75vw
  }
}

@media (max-width:1024px) {
  .tarieven-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 1.25rem;
    mask-image: linear-gradient(90deg, transparent 0, #000 6vw, #000 calc(100% - 6vw), transparent);
    padding-left: 6vw;
    padding-right: 6vw;
    scroll-snap-type: x mandatory;
    scrollbar-width: none
  }

  .tarieven-grid::-webkit-scrollbar {
    display: none
  }

  .tarieven-card {
    flex: 0 0 88vw;
    max-width: 88vw;
    scroll-snap-align: center;
    transform: none
  }

  .tarieven-card:hover {
    background: #fdfaf7;
    border: 1px solid var(--highlight-color);
    box-shadow: none;
    transform: translateY(0)
  }

  .tarieven-next,
  .tarieven-prev {
    background: #fff;
    border: 1px solid var(--highlight-color, #bda895);
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
    cursor: pointer;
    display: grid;
    height: 44px;
    place-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    z-index: 2
  }

  .tarieven-prev {
    left: 2vw
  }

  .tarieven-next {
    right: 2vw
  }

  .tarieven-next span,
  .tarieven-prev span {
    color: var(--main-color, #6e6b5e);
    font-size: 22px;
    line-height: 1
  }

  .tarieven-next:focus-visible,
  .tarieven-prev:focus-visible {
    outline: 2px solid var(--highlight-color, #bda895);
    outline-offset: 2px
  }
}

@media (min-width:601px) and (max-width:1024px) {
  .tarieven-card {
    flex-basis: 70vw;
    max-width: 70vw
  }
}

@media (max-width:1024px) {

  .tarieven-next[hidden],
  .tarieven-prev[hidden] {
    display: none !important
  }
}









/* === Footer (uitlijning gelijk aan overige content) === */
.site-footer {
  background: var(--detail-color);
  color: var(--main-color);
  font-family: var(--generalfont);

}

/* Bovenste deel */
.footer-inner {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr .6fr .9fr;
  /* merk/over | menu | contact */
  gap: clamp(28px, 4vw, 60px);
  padding: clamp(42px, 6vw, 84px) 0;
}

.footer-col {
  min-width: 0;
}

/* Logo & tekst */
.footer-logo {
  display: block;
  font-family: var(--menu-font);
  font-weight: 300;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 1rem + 1.8vw, 1.8rem);
  letter-spacing: .08em;
  margin-bottom: 1rem;
  color: #2f2b26;
  text-decoration: none;
}

.footer-bio {
  font-size: .95rem;
  line-height: 1.7;
  color: #5a5650;
  max-width: 40ch;
}

/* Labels */
.footer-label {
  font-family: var(--menu-font);
  font-size: .72rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: #8a847c;
  margin-bottom: 1rem;
}

/* Lijsten */
.footer-nav ul,
.footer-contact .contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}

.footer-nav a,
.footer-contact a {
  text-decoration: none;
  color: #2f2b26;
  font-size: .9rem;
  font-family: var(--menu-font);
  letter-spacing: .08em;
  position: relative;
  transition: color .25s ease;
}

.footer-nav a::after,
.footer-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transform: scaleX(.6);
  transform-origin: center;
  transition: transform .25s, opacity .25s;
}

.footer-nav a:hover::after,
.footer-contact a:hover::after {
  opacity: .8;
  transform: scaleX(1)
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 1.2rem;
}

.footer-socials a {
  inline-size: 44px;
  block-size: 44px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  color: #2f2b26;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, transform .15s ease;
}

.footer-socials a:hover {
  background: #2f2b26;
  color: #fff;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .footer-socials a {
    transition: background .1s linear, color .1s linear;
  }

  .footer-socials a:hover {
    transform: none;
  }
}

.footer-socials i {
  font-size: 18px;
  line-height: 1;
  display: block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.footer-socials a[href*="instagram"] i {
  transform: translateX(1px);
}

.footer-socials a[href*="linkedin"] i {
  transform: translateX(.5px);
}

.footer-socials a[href*="wa.me"] i {
  transform: translateX(1px);
}

/* Onderste balk */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding: 16px 0;
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: .85rem;
  color: #6b6863;
}

.footer-bottom p {
  margin: 0;
}

.legal-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.legal-links a {
  color: #6b6863;
  text-decoration: none;
  position: relative;
}

.legal-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.6);
  transition: transform .25s, opacity .25s;
}

.legal-links a:hover::after {
  opacity: .8;
  transform: scaleX(1)
}

/* Responsief */
@media (max-width: 960px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}











/* =========================
   CONTACT – opgeschoonde styling
   Sluit aan op styles.css variabelen
   ========================= */

/* Pagina */
.contact-page {
  background: var(--detail-color);
  padding: clamp(40px, 6vw, 90px) 0;
}

/* Kop (optioneel) */
.contact-header {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin: 0 auto clamp(20px, 3.5vw, 34px);
  text-align: center;
}

.contact-header .eyebrow {
  margin: 0 0 .25rem;
  font-size: .9rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.contact-header h1 {
  margin: 0 0 .45rem;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .06em;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem);
  color: #2f2b26;
}

.contact-header .lead {
  margin: 0 auto;
  color: var(--main-color);
  opacity: .92;
  max-width: 60ch;
}

/* GRID: kaart + formulier */
.contact-grid {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .95fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  padding-top: clamp(12px, 2vw, 24px);
}

@media (max-width: 1500px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Kaarten (card-basics) */
.card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}

/* Kaart (map) */
.map-card {
  padding: clamp(12px, 1.8vw, 18px);
  display: flex;
  flex-direction: column;
  min-height: clamp(420px, 44vw, 640px);
}

.map-embed {
  position: relative;
  flex: 1 1 auto;
  min-height: 320px;
  overflow: hidden;
  background: #e9e9e9;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-meta {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--main-color);
}

.minimal-link {
  color: var(--main-color);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}

.minimal-link:hover {
  color: #2f2b26;
  border-color: #2f2b26;
}

/* Formulierkaart */
.form-card {
  padding: clamp(18px, 2.6vw, 24px);
  display: flex;
}

.contact-form {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  width: 100%;
}

/* Banner met gekozen pakket/categorie */
.choice-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .7rem .9rem;
  margin-bottom: .9rem;
  border: 1px dashed var(--border-color);
  background: #fff;
  border-radius: 0;
}

.pill {
  display: inline-block;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: var(--detail-color);
  color: #2f2b26;
  font-size: .9rem;
  line-height: 1;
}

.choice-banner .minimal-link {
  border: 0;
  text-decoration: underline;
  padding: 0;
}

/* Layout helpers */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw, 18px);
}

@media (max-width: 700px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* Velden */
.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: .95rem;
  color: var(--main-color);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 0;
  background: #fff;
  font: 400 1rem/1.5 var(--main-font);
  padding: .85rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #7c756b 50%),
    linear-gradient(135deg, #7c756b 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px),
    calc(100% - 2.2rem) 0;
  background-size: 6px 6px, 6px 6px, 1px 100%;
  background-repeat: no-repeat;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9b9b9b;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--highlight-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--highlight-color) 26%, transparent);
}

.field textarea {
  resize: none;
  /* auto-height via JS */
  min-height: 180px;
}

.field-hint {
  font-size: .85rem;
  color: #7a746d;
}

/* Checkbox/akkoord */
.checkbox-field {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  align-items: start;
  gap: .6rem;
}

.checkbox-field input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: .22rem;
}

/* Verstuurknop */
.submit-row {
  margin-top: .4rem;
}

.contact-form .cta-btn {
  justify-self: start;
  padding: .9rem 1.3rem;
  border: 1px solid var(--border-color);
  background: #fff;
  color: #6c655c;
  font-size: .95rem;
}

.contact-form .cta-btn:hover {
  background: #faf8f6;
  border-color: var(--detail-color);
}

.contact-form .cta-btn[disabled] {
  opacity: .55;
  cursor: not-allowed;
  filter: grayscale(.12);
}

/* Info-kaarten onderaan */
.contact-cards {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin: clamp(24px, 3vw, 32px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vw, 22px);
  padding-bottom: clamp(12px, 2vw, 24px);
}

@media (max-width: 980px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: clamp(18px, 2.6vw, 24px);
  text-align: center;
  color: var(--main-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.info-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--border-color) 40%, var(--highlight-color) 60%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.info-card i {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  margin-bottom: -2px;
  color: #6c5a44;
  font-size: 1.15rem;
}

.info-card h3 {
  margin: 0 0 6px;
  font-family: var(--menu-font);
  letter-spacing: .04em;
  font-weight: 500;
}

.info-card p {
  margin: 0;
}

.info-card a {
  color: inherit;
  text-decoration: none;
}

/* Focus-stijl binnen kaarten */
.card :where(input, textarea, select, a, button):focus-visible {
  outline: 2px solid color-mix(in srgb, var(--highlight-color) 60%, #ffffff 40%);
  outline-offset: 2px;
}



.privacy-note {
  font-size: .9rem;
  color: #a8a8a8;
  margin: .2rem 0 .6rem;
}







/*! Bewegende Elementen */
@media (prefers-reduced-motion:no-preference) {

  .intro-subtext,
  .intro-title,
  .section-divider {
    opacity: 0;
    transform: translateY(12px);
    transition: transform .9s cubic-bezier(.2, .8, .2, 1), opacity .8s ease
  }

  .intro-subtext.is-visible,
  .intro-title.is-visible,
  .section-divider.is-visible {
    opacity: 1;
    transform: none
  }

  .navbar .navbar-logo {
    font-size: clamp(var(--logo-size-current), calc(var(--logo-size-current)*(1 + var(--scroll-t)*0.06)), calc(var(--logo-size-current)*1.06));
    transition: font-size .2s ease, letter-spacing .2s ease;
    will-change: font-size, letter-spacing
  }
}

@media (prefers-reduced-motion:reduce) {
  .scroll-progress {
    display: none
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

.scroll-progress {
  background: var(--main-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  transition: width .08s linear;
  width: 0;
  z-index: 999
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(.995);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

/*! Overig */
body.menu-open:after {
  background: rgba(50, 70, 60, .1);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: all;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100
}




/* Herbruikbare sectiekop – sluit aan op je section-blocks */
.section-block {
  background: var(--container-bg);
  color: var(--main-color);
  /* padding:clamp(27px,2vw,34px) 0; */
}

.section-block__inner {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin-inline: auto;
}

.section-block__title {
  /* margin:0 0 .35rem; */
  /* font-family:var(--menu-font); */
  /* font-weight:400; */
  /* letter-spacing:.04em; */
  /* color:#2f2b26; */
  /* font-size:clamp(1.7rem,1.2rem + 2.2vw,2.6rem); */
}

.section-block__intro {
  margin: 0 0 clamp(18px, 2.6vw, 26px);
  font-family: var(--container-font-family);
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  opacity: .96
}

/* ===== Responsive Grid Gallery (niet-klikbaar) ===== */
.media-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 150px;
  /* “basis-rijhoogte” */
  grid-auto-flow: row dense;
  /* compacte vulling */
}

.media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .12);
  cursor: default;
  /* expliciet: niet klikbaar */
  grid-row-end: span 1;
  background: #ddd;
  /* fallback voor laadtijd */
  isolation: isolate;
  /* caption boven overlay */
  transition: transform .25s ease, box-shadow .25s ease;
}

.media img {
  display: block;
  width: 80%;
  height: 80%;
  object-fit: cover;
}

/* Donkere film voor leesbaarheid */
.media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .28);
  transition: opacity .25s ease;
}

/* Onderrand label */
.media__details {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px 14px;
  background: #fff;
  color: #444;
  text-transform: lowercase;
  letter-spacing: .06em;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/* Hover-effect (desktop) – subtiel, geen klik */
@media (hover:hover) {
  .media:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 36px rgba(0, 0, 0, .18);
  }

  .media:hover::after {
    opacity: .18;
  }
}

/* Hoogte-varianten (zoals in je voorbeeld) */
.media.is-medium {
  grid-row-end: span 2;
}

/* ~300px */
.media.is-large {
  grid-row-end: span 3;
}

/* ~450px */

/* Full-width op ≥768px; mobiel blijft het gewoon één tegel */
.media.is-full {
  grid-row-end: span 2;
}

@media (min-width:768px) {
  .media.is-full {
    grid-column: 1 / -1;
  }
}

/* Kleine schermen: iets strakker raster */
@media (max-width:640px) {
  .media-grid {
    gap: 18px;
    grid-auto-rows: 130px;
  }

  .media {
    border-radius: 6px;
  }

  .media__details {
    padding: 10px 12px;
    font-size: .95rem;
  }
}



/* === Floating Contact Button (subtiel) =============================== */
.contact-fab {
  position: fixed;
  right: max(14px, calc(16px + env(safe-area-inset-right)));
  bottom: max(14px, calc(16px + env(safe-area-inset-bottom)));
  z-index: 300;
  display: grid;
  gap: 10px;
  align-items: end;
  justify-items: end;
}

.contact-fab__btn {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid color-mix(in srgb, var(--icon-color) 60%, #000 10%);
  background: #ffffff;
  color: #2f2b26;
  inline-size: 54px;
  block-size: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .25s ease;
}

.contact-fab__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .10), 0 3px 10px rgba(0, 0, 0, .06);
}

.contact-fab__btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--icon-color) 45%, transparent);
  outline-offset: 3px;
}

/* Badge/tooltip boven de knop (optioneel subtiel) */
.contact-fab__hint {
  font-family: var(--container-font-family);
  font-size: .85rem;
  line-height: 1;
  color: #2f2b26;
  background: #fff;
  border: 1px solid var(--border-color);
  padding: .5rem .65rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
  opacity: .96;
}

/* Menu */
.contact-fab__menu {
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  min-inline-size: 220px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
  transform-origin: bottom right;
  transition: transform .18s ease, opacity .18s ease;
}

.contact-fab__menu[hidden] {
  opacity: 0;
  transform: scale(.96);
  pointer-events: none;
}

.contact-fab__menu li {
  margin: 0;
}

.contact-fab__menu a {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #2f2b26;
  font-family: var(--container-font-family);
  font-size: .98rem;
  line-height: 1.3;
}

.contact-fab__menu a .fa-brands,
.contact-fab__menu a .fa-solid {
  font-size: 1.05rem;
  color: var(--icon-color);
}

.contact-fab__menu a:hover {
  background: #faf8f6;
}

.contact-fab__menu a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--icon-color) 40%, transparent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  .contact-fab__btn,
  .contact-fab__menu {
    transition: none !important;
  }
}

.contact-fab.nudge .contact-fab__btn {
  animation: fab-bounce .6s ease;
}

@keyframes fab-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-6px);
  }

  70% {
    transform: translateY(3px);
  }
}


/* === UI Polish — subtiel verfijnd ===================================== */
/* Kleuren en schaduwen iets zachter voor een elegantere uitstraling */
:root {
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 22px rgba(0, 0, 0, .08), 0 2px 8px rgba(0, 0, 0, .05);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, .10);
  --ring: color-mix(in srgb, var(--icon-color) 45%, transparent);
}

/* Knoppen – nette basis die bij je stijl past */

/* Typografische verfijningen */
.section-block__title {
  letter-spacing: .02em;
}

.section-block__intro {
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
}















/* =========================
   CTA — uitgelijnd & uniform, zonder "box-in-box"
   ========================= */

/* Ruimte rondom elke CTA-sectie (boven/onder) */
.contact-cta,
.goodtoknow-cta,
.faq-cta {
  padding-block: clamp(28px, 5vw, 56px);
}

/* Card alleen op de INNER van elke CTA (géén card op de section zelf) */
.contact-cta .cta-inner,
.goodtoknow-cta .cta-inner,
section.faq-cta>.section-block__inner {
  width: min(var(--max-w, 1100px), calc(100% - 2*var(--gutter, 16px)));
  margin-inline: auto;
  text-align: center;
  padding: clamp(22px, 3.5vw, 40px);

  background: var(--detail-color, #f7f6f3);
  border: 1px solid var(--border-color, #e6e3da);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

/* Als je een losse <div class="faq-cta"> gebruikt (geen section) → geef de card aan het element zelf */
.faq-cta:not(section) {
  width: min(var(--max-w, 1100px), calc(100% - 2*var(--gutter, 16px)));
  margin: clamp(24px, 5vw, 48px) auto;
  text-align: center;
  padding: clamp(22px, 3.5vw, 40px);

  background: var(--detail-color, #f7f6f3);
  border: 1px solid var(--border-color, #e6e3da);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

/* Zeker weten: géén card op de section zelf (voorkomt dubbele kaders) */
section.faq-cta {
  background: none;
  border: 0;
  box-shadow: none;
}

/* Typografie: kicker & headline (gelijk op alle CTA’s) */
.cta-kicker {
  font-family: var(--menu-font, inherit);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #6e6b5e;
  margin: 0 0 1rem;
}

.cta-headline {
  font-family: var(--menu-font, inherit);
  font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.3rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #333;
  margin: 0 0 1.1rem;
}





/* === Floating WhatsApp FAB – animaties & states ======================= */
.whatsapp-fab {
  position: fixed;
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  z-index: 9999;

  /* State-variabelen voor nette samenstelling van bewegingen */
  --y: 0;
  /* globale verplaatsing (lift/hidden) */
  --s: 1;
  /* schaal voor bounces/nudges */

  opacity: 0;
  /* start onzichtbaar, JS fade-in */
  transform: translateY(var(--y)) scale(var(--s));
  transition: opacity .35s ease, transform .35s ease;
  will-change: transform, opacity;
}

/* In beeld (na init) */
.whatsapp-fab.is-entering,
.whatsapp-fab:not(.is-hidden) {
  opacity: 1;
}

/* Verbergen bij top van de pagina */
.whatsapp-fab.is-hidden {
  opacity: 0;
  --y: 10px;
  /* klein wegzakken */
}

/* Footer in beeld → til de FAB iets op zodat hij de footer niet raakt */
.whatsapp-fab.lift {
  --y: -26px;
}

/* Button zelf */
.whatsapp-fab a {
  inline-size: 60px;
  block-size: 60px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

/* Hover/active/focus */
.whatsapp-fab a:hover {
  transform: translateY(-1px);
  background: #1ebe57;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.whatsapp-fab a:active {
  transform: none;
}

.whatsapp-fab a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, .45), 0 10px 24px rgba(0, 0, 0, .18);
}

/* Icon */
.whatsapp-fab i {
  font-size: 30px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Animaties ======================================================== */

/* Binnenkomen: zachte slide + mini-bounce */
@keyframes wa-in {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }

  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.whatsapp-fab.is-entering a {
  animation: wa-in .50s cubic-bezier(.22, .61, .36, 1) both;
}

/* Periodieke nudge (subtiele stuiter) */
@keyframes wa-nudge {
  0% {
    transform: translateY(0) scale(1);
  }

  30% {
    transform: translateY(-6px) scale(1.04);
  }

  60% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.whatsapp-fab.nudge a {
  animation: wa-nudge .7s cubic-bezier(.22, .61, .36, 1);
}

/* Aandachtspulse (optioneel; wordt even aangezet door JS) */
@keyframes wa-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  }
}

.whatsapp-fab.pulsing a {
  animation: wa-pulse .95s ease;
}

/* Dark mode: wat zwaardere schaduw */
@media (prefers-color-scheme: dark) {
  .whatsapp-fab a {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .36);
  }
}

/* Minder beweging: toon zonder animatie */
@media (prefers-reduced-motion: reduce) {

  .whatsapp-fab,
  .whatsapp-fab a {
    transition: none !important;
    animation: none !important;
  }
}

/* Kleiner op heel smalle schermen */
@media (max-width:480px) {
  .whatsapp-fab a {
    inline-size: 54px;
    block-size: 54px;
  }

  .whatsapp-fab i {
    font-size: 28px;
  }
}









/* =========================
   CTA @ Tarieven — uitgelijnd met .pricing__inner
   ========================= */

/* verticale ruimte rondom de secties */
.cta {
  padding-bottom: clamp(12px, 2vw, 50px);
  padding-top: clamp(12px, 2vw, 52px);
}

/* het kaartkader zit alléén op .cta-frame */
.cta .cta-frame {
  width: 100%;
  /* volgt de breedte van .pricing__inner */
  margin-inline: auto;
  padding: clamp(22px, 3.5vw, 40px);
  background: var(--detail-color, #f7f6f3);
  border: 1px solid var(--border-color, #e6e3da);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  text-align: center;
  /* basis: gecentreerd */
}

/* typografie */
.cta .cta-kicker {
  font-family: var(--menu-font, inherit);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #6e6b5e;
  margin: 0 0 1rem;
}

.cta .cta-headline {
  font-family: var(--menu-font, inherit);
  font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.3rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #333;
  margin: 0 0 1.1rem;
}

/* lopende tekst */
.cta .cta-body {
  margin: 0 auto 1rem;
  color: color-mix(in srgb, var(--main-color, #2f2b26) 92%, #000 8%);
  font-family: var(--container-font-family, inherit);
  font-size: var(--container-font-size, 1rem);
  line-height: var(--container-line-height, 1.7);
  text-align: center;
  /* basis voor about-work */
}

.cta .cta-body p {
  margin: 0 0 1rem;
}

.cta .cta-body p:last-child {
  margin-bottom: 0;
}



/* knoppen */
.cta .cta-btn {
  display: inline-block;
  margin-top: .25rem;
}

/* varianten — afwijkende uitlijning/flow per blok */
.cta--goodtoknow .cta-body {
  text-align: left;
}

/* “Praktisch & helder” */
.cta--about-work .cta-body {
  text-align: center;
}

/* “Fotografie in het echt” */

/* mobiel compacter */
@media (max-width: 640px) {
  .cta .cta-frame {
    padding: clamp(16px, 5.5vw, 26px);
  }
}



/* ===== Home CTA (contact-cta) — subtiel accent en strakkere layout ===== */
.contact-cta .cta-inner {
  /* volgt je sitegrid */
  width: min(var(--max-w, 1100px), calc(100% - 2*var(--gutter, 16px)));
  margin-inline: auto;

  /* iets lichter kader dan de overige CTA’s */
  background: var(--detail-color, #f7f6f3);
  border: 1px solid color-mix(in srgb, var(--border-color, #e6e3da) 85%, #000 15%);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  padding: clamp(22px, 3.5vw, 38px);
}


/* lopende tekst iets ruimer en mooi gecentreerd */
.contact-cta .cta-text {
  max-width: 70ch;
  margin: 0 auto 1rem;
  text-align: center;
  color: color-mix(in srgb, var(--main-color, #2f2b26) 92%, #000 8%);
  line-height: var(--container-line-height, 1.7);
  font-size: var(--container-font-size, 1rem);
}




/* mobiel iets compacter */
@media (max-width: 640px) {
  .contact-cta .cta-inner {
    padding: clamp(16px, 5.5vw, 26px);
  }
}

/* Losse FAQ-CTA (div variant) met kicker/headline */
.faq-cta {
  width: min(var(--max-w, 1100px), calc(100% - 2*var(--gutter, 16px)));
  margin: clamp(24px, 5vw, 48px) auto;
  text-align: center;

  /* card-frame, gelijk aan je andere CTA’s */
  background: var(--detail-color, #f7f6f3);
  border: 1px solid var(--border-color, #e6e3da);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  padding: clamp(20px, 3.5vw, 36px);
}

/* knop netjes onder de headline */
.faq-cta .cta-btn {
  display: inline-block;
  margin-top: .25rem;
}





/* ==========================================
   Werkwijze – scoped styles (blend met thema)
   Gebruikt site-variabelen & fonts
   ========================================== */

.page-werkwijze {
  --space: clamp(1rem, 2vw, 1.5rem);
  --radius: 0;
  /* sluit aan bij kaarten/frames op site */
  --ring: 1px solid var(--border-color);
  color: var(--main-color);
  font-family: var(--container-font-family);
}

/* Hero / intro */
.page-werkwijze .wz-hero {
  padding-top: calc(var(--space) * 1.25);
  background: #fff;
}

.page-werkwijze .wz-hero__inner {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin-inline: auto;
}

.page-werkwijze h1 {
  margin: 0 0 var(--space);
  font-family: var(--menu-font);
  font-weight: 300;
  letter-spacing: .08em;
  line-height: 1.2;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.6rem);
  color: #2f2b26;
}

.wz-lead {
  font: 400 var(--container-font-size)/var(--container-line-height) var(--container-font-family);
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
  max-width: 66ch;
  opacity: .96;
}

/* Lokale anchor-nav */
.wz-localnav ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: calc(var(--space) * 1.1) 0 0;
}

.wz-localnav a {
  display: inline-block;
  padding: .45rem .7rem;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  text-decoration: none;
  color: #2f2b26;
  font-family: var(--menu-font);
  font-size: .85rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff, #f7f5f2);
  transition: border-color .2s ease, transform .15s ease;
}

.wz-localnav a:hover {
  border-color: var(--highlight-color);
  transform: translateY(-1px);
}

/* Sectieblokken */
.wz-block {
  --wz-accent: var(--highlight-color);
  --wz-bg: var(--detail-color);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--wz-bg) 86%, #fff 14%), #fff);
  border: var(--ring);
  border-left: 6px solid var(--wz-accent);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
  padding: calc(var(--space) * 2) var(--space);
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin: calc(var(--space) * 1.25) auto;
}

.wz-block+.wz-block {
  margin-top: calc(var(--space) * 2);
}

.wz-block__header {
  margin: 0 0 var(--space);
  padding: 0 var(--space);
}

.wz-kicker {
  margin: 0 0 .25rem;
  color: rgba(0, 0, 0, .55);
  font-family: var(--menu-font);
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.wz-block h2 {
  margin: 0 0 .4rem;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  font-size: clamp(1.35rem, 1rem + 1.8vw, 2rem);
  color: #2f2b26;
}

.wz-intro {
  color: var(--main-color);
  opacity: .95;
  max-width: 65ch;
  font-family: var(--container-font-family);
}

/* Layout grid */
.wz-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(14px, 2.2vw, 24px);
  align-items: start;
  padding: 0 var(--space) 0;
}

.wz-text {
  display: grid;
  gap: .85rem;
}

.wz-text h3 {
  margin: .5rem 0 .2rem;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  font-size: clamp(1.02rem, .9rem + .6vw, 1.22rem);
  color: #2f2b26;
}

/* Stappenlijst */
.wz-steps {
  counter-reset: step;
  display: grid;
  gap: .5rem;
  padding-left: 0;
  list-style: none;
}

.wz-steps li {
  position: relative;
  padding-left: 2.25rem;
}

.wz-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: .2rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--wz-accent) 88%, #000 12%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .9rem;
}

/* Meta-rijtjes */
.wz-meta dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: .5rem .75rem;
  margin: .5rem 0 0;
}

.wz-meta dt {
  font-weight: 600;
  color: color-mix(in srgb, var(--main-color) 90%, #000 10%);
}

.wz-meta dd {
  margin: 0;
}

/* Fotovlak */
.wz-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--border-color);
  background: #fff;
}

.wz-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wz-photo figcaption {
  font-size: .85rem;
  color: var(--main-color);
  padding: .35rem .5rem;
  background: #fff;
}

/* CTA’s: beide knoppen identiek en compact (zelfde look als site) */
/* === CTA-knoppen: alle knoppen dezelfde stijl === */
.wz-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: flex-start;
  /* of center voor gecentreerd */
  margin-top: 1rem;
}

.wz-cta-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: .8rem 1.2rem;
  font-family: var(--menu-font);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #333;
  background: transparent;
  border: 1px solid #333;
  text-decoration: none;
  transition: all .25s ease;
  border-radius: 2px;
}

.wz-cta-row a:hover {
  background: #333;
  color: #fff;
  transform: translateY(-1px);
}

/* zorg dat minimal-link niet anders styled */
.wz-cta-row .minimal-link {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.2rem;
  font-family: var(--menu-font);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #333;
  background: transparent;
  border: 1px solid #333;
  text-decoration: none;
  transition: all .25s ease;
  border-radius: 2px;
}

.wz-cta-row .minimal-link:hover {
  background: #333;
  color: #fff;
  transform: translateY(-1px);
}

/* FAQ blokje */
.wz-faq {
  margin: var(--space) var(--space) 0;
  border: 1px solid var(--border-color);
  border-radius: 0;
  background: #fff;
  padding: .75rem 1rem;
}

.wz-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #2f2b26;
}

.wz-faq__inner {
  margin-top: .5rem;
  display: grid;
  gap: .4rem;
}

/* Outro */
.wz-outro {
  padding: calc(var(--space) * 2) var(--space) calc(var(--space) * 3);
  background: var(--container-bg);
}

.wz-outro__inner {
  width: min(var(--max-w), calc(100% - 2*var(--gutter)));
  margin-inline: auto;
  text-align: center;
}

.wz-outro h2 {
  margin: 0 0 .35rem;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  color: #2f2b26;
}

/* ===== Natuurlijke themakleuren per categorie (zacht) ===== */
[data-theme="portret"] {
  /* greige/taupe -> sluit aan bij highlight */
  --wz-accent: color-mix(in srgb, var(--highlight-color) 75%, #6b6863 25%);
  --wz-bg: color-mix(in srgb, var(--detail-color) 88%, #fff 12%);
}

[data-theme="gezin"] {
  /* vergrijsd olijfgroen */
  --wz-accent: hsl(90 22% 40%);
  --wz-bg: hsl(90 45% 96%);
}

[data-theme="katten"] {
  /* warm honing/linnen */
  --wz-accent: hsl(42 45% 60%);
  --wz-bg: hsl(42 60% 96%);
}

/* Responsive */
@media (max-width: 960px) {
  .wz-grid {
    grid-template-columns: 1fr;
  }

  .wz-photo {
    order: -1;
  }
}

/* Motion respecteren */
@media (prefers-reduced-motion: reduce) {

  .wz-localnav a,
  .wz-cta-row a {
    transition: none !important;
  }
}


/* Mooie links in de FAQ-intro-tekst */
.section-block .section-block__intro a {
  position: relative;
  color: var(--highlight-color);
  font-weight: 500;
  text-decoration: none;
  /* subtiele animated underline */
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: color .25s ease, background-size .25s ease;
}

.section-block .section-block__intro a:hover,
.section-block .section-block__intro a:focus {
  color: var(--icon-hover);
  background-size: 100% 1px;
}

/* Toegankelijk focusrandje */
.section-block .section-block__intro a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--highlight-color) 70%, #fff 30%);
  outline-offset: 2px;
  border-radius: 2px;
}



/* ====== Mooie links in content & CTA’s ====== */
.section-block .section-block__intro a,
.cta .cta-body a,
.contact-cta .cta-text a {
  position: relative;
  color: var(--highlight-color);
  font-weight: 500;
  text-decoration: none;
  /* subtiele animated underline */
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: color .25s ease, background-size .25s ease;
}

.section-block .section-block__intro a:hover,
.section-block .section-block__intro a:focus,
.cta .cta-body a:hover,
.cta .cta-body a:focus,
.contact-cta .cta-text a:hover,
.contact-cta .cta-text a:focus {
  color: var(--icon-hover);
  background-size: 100% 1px;
}

/* Toegankelijk focusrandje */
.section-block .section-block__intro a:focus-visible,
.cta .cta-body a:focus-visible,
.contact-cta .cta-text a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--highlight-color) 70%, #fff 30%);
  outline-offset: 2px;
  border-radius: 2px;
}





/* ====== Portfolio page (inhoud) ====== */
.page-portfolio {
  --gap: clamp(12px, 1.8vw, 22px);
  --radius: 8px;
  --ink: #222;
  /* tekstkleur fallback */
  --muted: #5a5247;
  /* subtiel */
  --border: #e8e5e1;
  /* zachte rand */
}

/* Semantiek helpers */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Secties en intro (sluit aan op rest van site) */
.section-block {
  /* padding: clamp(18px, 3vw, 36px) 0; */
}

.section-block__title {
  /* margin: 0 0 .35em; */
  /* font-size: clamp(1.6rem, 3.2vw, 2.2rem); */
  /* line-height: 1.15; */
  /* margin: 0 0 var(--space); */
  font-family: var(--menu-font);
  font-weight: 300;
  letter-spacing: .08em;
  line-height: 1.2;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.6rem);
  color: #2f2b26;
}

.section-block__intro {
  color: var(--muted);
}

/* Masonry – gutterless (kolommen) */
.masonry {
  column-count: 3;
  column-gap: var(--gap);
  margin-top: calc(var(--gap) * 1);
  padding-inline: clamp(0.5rem, 2vw, 1.5rem);
}

@media (max-width: 1200px) {
  .masonry {
    column-count: 3;
  }
}

@media (max-width: 900px) {
  .masonry {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .masonry {
    column-count: 1;
  }
}

/* Bricks */
.masonry .brick {
  display: inline-block;
  width: 100%;
  margin: 0 0 var(--gap);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f8f7f5;
  /* rustige achtergrond tijdens lazy load */
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .03);
}

/* Afbeeldingen */
.masonry .brick img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: translateZ(0);
  /* crisp rendering */
  transition: filter .35s ease;
  /* geen schaal/zoom animatie */
}

/* Subtiele overlay bij hover (desktop only) */
@media (hover: hover) {
  .masonry .brick::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .04), rgba(0, 0, 0, .06));
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
  }

  .masonry .brick:hover::after {
    opacity: 1;
    /* subtiele film */
  }

  .masonry .brick:hover img {
    filter: saturate(1.02) contrast(1.02);
    /* heel licht effect */
  }
}

/* Toegankelijkheid: reduced motion */
@media (prefers-reduced-motion: reduce) {

  .masonry .brick::after,
  .masonry .brick img {
    transition: none !important;
  }
}




/* Kleinere touch-vriendelijke aanpassingen op mobiel */
@media (max-width: 600px) {
  .masonry {
    column-count: 1;
    /* één kolom op smalle schermen */
    column-gap: 0;
    /* écht gutterless */
    padding-inline: clamp(0.75rem, 4vw, 1rem);
    margin-top: var(--gap);
    /* behoud ritme bovenin */
  }

  .masonry .brick {
    margin: 0 0 calc(var(--gap) * .75);
    /* iets compacter stapelen */
    border-radius: clamp(10px, 2.5vw, var(--radius));
    box-shadow: 0 1px 6px rgba(0, 0, 0, .04);
    /* subtieler op klein scherm */
  }

  .masonry .brick img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Geen scale-animaties op mobiel; voorkomt jank bij scroll */
    transition: filter .25s ease;
  }
}

/* Ultra-small devices: net wat minder padding */
@media (max-width: 360px) {
  .masonry {
    padding-inline: 0.5rem;
  }
}

/* Toetsenbord/focus toegankelijkheid (ook handig op mobiel met externe kb) */
.masonry .brick:focus-within {
  outline: 2px solid rgba(0, 0, 0, .25);
  outline-offset: 2px;
}

/* Veilig met notches/gesture bars; voorkomt dat laatste brick te krap wordt */
.masonry {
  padding-bottom: max(var(--gap), env(safe-area-inset-bottom));
}

/* Optioneel: als je écht nog 'plakken' ziet bij iOS tijdens lazy-load,
   kun je dit inschakelen om subpixel shimmering te verminderen: */
/*
.masonry .brick img{
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
}
*/



.cta .section-block__inner {
  width: 90vw;
  /* zelfde breedte als de rest van de site */
  max-width: var(--max-width, 1200px);
  margin-inline: auto;

}

.cta-frame {
  background: var(--wz-bg, #f9f8f7);
  padding: clamp(1.5rem, 3vw, 3rem);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
  transition: box-shadow .3s ease;
}

.cta-frame:hover {
  box-shadow: 0 6px 26px rgba(0, 0, 0, .08);
}


.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .26s ease, opacity .26s ease;
}



/* Basis: verborgen staat */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

/* Zichtbaar: fade + subtle up */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optionele, mini-stagger via custom property --i (wordt in JS gezet) */
.reveal {
  transition-delay: calc(var(--i, 0) * 60ms);
}

/* Respecteer voorkeuren voor minder beweging */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Scrim achter het slide-over menu */
@media (max-width:1100px) {
  .menu-scrim {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .22);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 200;
    /* lager dan nav (nav zit op 220) */
  }

  body.menu-open .menu-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  /* scroll-lock zonder inline styles (iOS-vriendelijk) */
  html.menu-open,
  body.menu-open {
    overflow: hidden;
  }
}



/* Desktop: geef main echte top-padding ter grootte van de header */
@media (min-width: 1101px) {
  main {
    /* padding-top: var(--header-height-desktop); */
    /* i.p.v. main::before */
  }

  /* Homepage met strip-slider direct onder <main>: geen extra ruimte */
  main:has(> .strip-slider) {
    padding-top: 0;
  }
}

/* === Structurele offset voor vaste navbar === */

/* Desktop (≥1101px): offset met desktop-hoogte,
   maar géén offset op de home waar de slider direct onder <main> staat. */
@media (min-width:1101px) {
  main {
    /* padding-top: var(--header-height-desktop); */
  }

  main:has(> .strip-slider) {
    padding-top: 0;
  }
}

/* Tablet/Mobiel (≤1100px): offset met mobiele/tablet-hoogte,
   behalve op de home met slider als eerste child. */
@media (max-width:1100px) {

  /* kies hier tablet óf mobiel; mobiel is bij jou leidend */
  main {
    padding-top: var(--header-height-mobile);
  }

  main:has(> .strip-slider) {
    padding-top: 0;
  }
}

/* We blijven van pseudo-spacers af (voorkomt dubbele/geen ruimte) */
main::before {
  content: none !important;
  height: 0 !important;
}



/* ===== Scroll-in fade effecten ===== */

/* Start-toestand alleen wanneer JS actief is, anders tonen we gewoon alles */
.js .fade-in,
.js .fade-in-x {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}

/* In-viewport: zichtbaar en op z’n plek */
.fade-in.is-visible,
.fade-in-x.is-visible {
  opacity: 1;
  transform: none;
}

/* Variant: horizontale binnenkomst als je 'fade-in-x' gebruikt */
.js .fade-in-x {
  transform: translateX(14px);
}

/* Optionele stagger via CSS custom property: style="--delay:.12s" op je element */
.fade-in[style*="--delay"],
.fade-in-x[style*="--delay"] {
  transition-delay: var(--delay, 0s);
}

/* Toegankelijkheid: geen animatie als gebruiker ‘reduced motion’ prefereert */
@media (prefers-reduced-motion: reduce) {

  .js .fade-in,
  .js .fade-in-x {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}




@media (max-width: 760px) {
  .pricing-packages {
    grid-template-columns: 1fr;
    justify-items: stretch;
    align-items: stretch;
  }

  .pricing-card {
    width: 100%;
    margin: 0;
    /* voorkomt mini-verschillen tussen kaarten */
  }
}

/* Fix: voorkom inspringen van .fade-in-x op mobiel */
@media (max-width: 760px) {
  .js .pricing-card.fade-in-x {
    transform: translateY(10px);
    /* zelfde als .fade-in */
  }
}



.page-transition {
  opacity: 1;
  transform: scaleY(0);
  transform-origin: top;
}

body.pt-leave .page-transition {
  transform: scaleY(1);
  transition: transform .42s cubic-bezier(.22, .61, .36, 1);
}


/* bij binnenkomst: content komt zachtjes in beeld */
body.pt-enter main,
body.pt-enter header,
body.pt-enter footer {
  opacity: 0;
  transform: translateY(6px);
}

body.pt-enter.pt-ready main,
body.pt-enter.pt-ready header,
body.pt-enter.pt-ready footer {
  opacity: 1;
  transform: none;
  transition: opacity .35s ease, transform .35s ease;
}

/* minder beweging = geen animaties */
@media (prefers-reduced-motion: reduce) {
  .page-transition {
    transition: none !important;
  }

  body.pt-enter main,
  body.pt-enter header,
  body.pt-enter footer {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}




/* === GRID OPZET VOOR PAKKETTEN === */
.pricing .pricing-packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}

/* Zorg dat alle kaarten even hoog zijn */
.pricing .pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* De CTA-knop onderaan uitlijnen */
.pricing .pricing-card .cta-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;


}

/* RESPONSIEF gedrag: stapel bij kleine schermen */
@media (max-width: 960px) {
  .pricing .pricing-packages {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .pricing .pricing-packages {
    grid-template-columns: 1fr;
  }
}


/* ======= HERO ======= */
.hero {
  position: relative;
  margin-top: var(--header-height-current); /* onder fixed navbar */
  min-height: clamp(52vh, 64vh, 84vh);
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #eee; /* fallback */
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.18) 38%, rgba(0,0,0,.10) 58%, rgba(0,0,0,.00) 72%),
    url("img/hero-monique.jpg") center / cover no-repeat;
  transform: scale(1.02);
  will-change: transform;
  z-index: -2;
}

/* Zachte overlay voor leesbaarheid */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,0) 60%);
  z-index: -1;
}

/* Content */
.hero__content {
  width: min(1100px, calc(100% - 2*var(--nav-pad, 5vw)));
  margin-inline: auto;
  text-align: center;
  color: #fff;
}

.hero__kicker {
  margin: 0 0 clamp(8px, 1.2vw, 12px);
  font-family: var(--container-font-family, "DM Sans", Arial, sans-serif);
  font-size: clamp(.95rem, .85rem + .3vw, 1.05rem);
  font-weight: 300;
  letter-spacing: .01em;
  opacity: .92;
}

.hero__title {
  margin: 0 0 clamp(12px, 2.2vw, 18px);
  font-family: var(--menu-font, serif);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.18;
  font-size: clamp(2rem, 1.3rem + 3.2vw, 3.6rem);
}

.hero__tagline {
  margin: 0 auto clamp(18px, 3vw, 28px);
  max-width: 70ch;
  font-family: var(--container-font-family, "DM Sans", Arial, sans-serif);
  font-size: clamp(1rem, .95rem + .2vw, 1.125rem);
  line-height: 1.7;
  opacity: .96;
}

/* Acties */
.hero__actions {
  display: inline-grid;
  grid-auto-flow: column;
  gap: clamp(10px, 2vw, 16px);
  align-items: center;
  justify-content: center;
}

/* Gebruik je bestaande .cta-btn, voeg een ghost-variant toe */
.cta-btn {
  display: inline-block;
  padding: .9rem 1.3rem;
  border: 1px solid #cfc9c2;
  background: #fff;
  color: #2f2b26;
  text-decoration: none;
  font-family: var(--menu-font, serif);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .9rem;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.cta-btn:hover { transform: translateY(-1px); background: #faf8f6; }

.cta-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.65);
}
.cta-btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.85);
}

/* Bewegingsreductie */
@media (prefers-reduced-motion: reduce) {
  .hero__bg { transform: none !important; }
}

/* Mobiel: parallax/scroll-issues voorkomen */
@media (hover:none) and (pointer:coarse) {
  .hero__bg { background-attachment: scroll; }
}

/* Kleinere schermen, compacte typografie */
@media (max-width: 520px) {
  .hero__title { letter-spacing: .06em; }
}





/* =========================================================
   Over Monique (page-about) — scoped toevoeging
   Sluit aan op bestaande variabelen/typografie in styles.css
   ========================================================= */
.page-about {
  color: var(--main-color);
  font-family: var(--container-font-family);
}

/* Zorg dat content niet onder de fixed navbar start
   (op home wordt dit anders opgelost via strip-slider). */
.page-about {
  padding-top: var(--header-height-current);
}

/* Intro */
.about-intro {
  background: var(--container-bg);
  padding: clamp(28px, 5vw, 54px) 0 clamp(26px, 5vw, 60px);
}

.about-intro__title {
  margin: 0 0 clamp(14px, 2.8vw, 22px);
  font-family: var(--menu-font);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.2;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.6rem);
  color: #2f2b26;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(16px, 3vw, 34px);
  align-items: start;
}

@media (max-width: 980px) {
  .about-intro__grid {
    grid-template-columns: 1fr;
  }
}

/* Sidebar card */
.about-card {
  position: sticky;
  top: calc(var(--header-height-current) + 18px);
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 0;
  overflow: clip;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .05);
}

@media (max-width: 980px) {
  .about-card {
    position: relative;
    top: 0;
  }
}

.about-card__portrait {
  margin: 0;
  background: var(--detail-color);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-card__body {
  padding: clamp(16px, 2.6vw, 22px);
  display: grid;
  gap: .55rem;
}

.about-card__name {
  margin: 0;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .04em;
  color: #2f2b26;
  font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem);
}

.about-card__meta {
  margin: 0;
  font-size: .98rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--main-color) 90%, #000 10%);
  opacity: .95;
}

.about-card__divider {
  height: 1px;
  background: color-mix(in srgb, var(--border-color) 85%, #000 15%);
  margin: .35rem 0 .15rem;
}

.about-card__note {
  margin: 0;
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
}

.about-card__actions {
  margin-top: .6rem;
  display: grid;
  gap: .6rem;
  align-items: start;
  justify-items: start;
}

/* Verhaal */
.about-story {
  display: grid;
  gap: clamp(12px, 2.4vw, 18px);
}

.story-block {
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 0;
  padding: clamp(16px, 2.8vw, 22px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .04);
}

.story-block__title {
  margin: 0 0 .55rem 0;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  color: #2f2b26;
  font-size: clamp(1.1rem, 1rem + .8vw, 1.5rem);
}

.story-block__text p {
  margin: 0 0 1rem 0;
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  letter-spacing: var(--container-letter-spacing);
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
}

.story-block__text p:last-child {
  margin-bottom: 0;
}

/* Quote / callout */
.story-block--quote {
  background: linear-gradient(
      180deg,
      rgba(189, 168, 149, .10),
      rgba(239, 238, 238, .65)
    ),
    #fff;
  border-color: color-mix(in srgb, var(--highlight-color) 55%, var(--border-color));
}

.story-quote {
  margin: 0;
  font-family: var(--container-font-family);
  font-size: clamp(1.05rem, 1rem + .45vw, 1.2rem);
  line-height: 1.8;
  color: #2f2b26;
  position: relative;
  padding-left: 1rem;
}

.story-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  bottom: .35rem;
  width: 3px;
  background: var(--highlight-color);
}
/* =========================================================
   Tarieven (page-tarieven) — scoped toevoeging
   ========================================================= */
.page-tarieven {
  color: var(--main-color);
  font-family: var(--container-font-family);
  padding-top: var(--header-height-current);
}

/* Hero */
.tarieven-hero {
  background: var(--container-bg);
  padding: clamp(28px, 5vw, 54px) 0 clamp(10px, 3vw, 22px);
}

.tarieven-hero__title {
  margin: 0 0 clamp(12px, 2.6vw, 18px);
  font-family: var(--menu-font);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.2;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.6rem);
  color: #2f2b26;
}

.tarieven-hero__intro {
  margin: 0;
  max-width: 70ch;
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  letter-spacing: var(--container-letter-spacing);
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
}

/* Content */
.tarieven-content {
  background: var(--container-bg);
  padding: clamp(18px, 4vw, 34px) 0 clamp(34px, 6vw, 70px);
}

.tarieven-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2.6vw, 22px);
  align-items: stretch;
}

.tarief-card {
  grid-column: span 4;
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 0;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .05);
  padding: clamp(16px, 2.8vw, 22px);
  display: grid;
  gap: 1rem;
}

@media (max-width: 980px) {
  .tarief-card { grid-column: span 12; }
}

.tarief-card__head {
  display: grid;
  gap: .35rem;
}

.tarief-card__title {
  margin: 0;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  color: #2f2b26;
  font-size: clamp(1.1rem, 1rem + .8vw, 1.45rem);
}

.tarief-card__price {
  margin: 0;
  font-family: var(--menu-font);
  font-weight: 400;
  color: #2f2b26;
  letter-spacing: .02em;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.85rem);
}

.tarief-card__price span {
  font-family: var(--container-font-family);
  font-size: .95rem;
  color: color-mix(in srgb, var(--main-color) 85%, #000 15%);
}

.tarief-card__price--small {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem);
  color: color-mix(in srgb, #2f2b26 85%, var(--main-color) 15%);
}

.tarief-card__list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: .55rem;
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  letter-spacing: var(--container-letter-spacing);
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
}

.tarief-card--muted {
  background: linear-gradient(
      180deg,
      rgba(189, 168, 149, .09),
      rgba(255, 255, 255, 1)
    );
  border-color: color-mix(in srgb, var(--border-color) 75%, var(--highlight-color));
}

/* Notices */
.tarieven-notices {
  margin-top: clamp(18px, 3.2vw, 28px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2.6vw, 22px);
}

@media (max-width: 980px) {
  .tarieven-notices { grid-template-columns: 1fr; }
}

.notice-box {
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .04);
  padding: clamp(16px, 2.8vw, 22px);
}

.notice-box--subtle {
  background: linear-gradient(
      180deg,
      rgba(239, 238, 238, .75),
      rgba(255, 255, 255, 1)
    );
}

.notice-box__title {
  margin: 0 0 .55rem 0;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  color: #2f2b26;
  font-size: clamp(1.05rem, 1rem + .6vw, 1.35rem);
}

.notice-box__list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: .55rem;
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  letter-spacing: var(--container-letter-spacing);
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
}

.notice-box__text {
  margin: 0;
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  letter-spacing: var(--container-letter-spacing);
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
}

/* FAQ */
.tarieven-faq {
  margin-top: clamp(22px, 4vw, 34px);
}

.tarieven-faq__title {
  margin: 0 0 clamp(10px, 2.2vw, 16px);
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  color: #2f2b26;
  font-size: clamp(1.15rem, 1.05rem + .8vw, 1.6rem);
}

.faq-list {
  display: grid;
  gap: .75rem;
}

.faq-item {
  border: 1px solid var(--border-color);
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .035);
  padding: 0;
  overflow: clip;
}

.faq-item > summary {
  cursor: pointer;
  list-style: none;
  padding: clamp(14px, 2.4vw, 18px) clamp(14px, 2.6vw, 20px);
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  color: #2f2b26;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary::after {
  content: "+";
  font-family: var(--menu-font);
  font-size: 1.2rem;
  opacity: .8;
}

.faq-item[open] > summary::after {
  content: "–";
}

.faq-item__body {
  padding: 0 clamp(14px, 2.6vw, 20px) clamp(14px, 2.6vw, 20px);
  border-top: 1px solid var(--border-color);
}

.faq-item__body p {
  margin: .9rem 0 0 0;
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  letter-spacing: var(--container-letter-spacing);
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
}

/* Footnote */
.tarieven-footnote {
  margin: clamp(20px, 3.8vw, 32px) 0 0;
  max-width: 78ch;
  font-size: .98rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--main-color) 88%, #000 12%);
}
/* FAQ body: iets rustiger ritme */
.faq-item__body p + p {
  margin-top: .9rem;
}


/* =========================================================
   Dienstenpagina
   ========================================================= */

.page-diensten {
  padding-top: var(--header-height-current);
  background: var(--container-bg);
  color: var(--main-color);
}

/* Intro */
.diensten-intro {
  padding: clamp(32px, 5vw, 64px) 0 clamp(24px, 4vw, 48px);
}

.diensten-intro__title {
  margin: 0 0 1rem;
  font-family: var(--menu-font);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.6rem);
  color: #2f2b26;
}

.diensten-intro__text {
  max-width: 70ch;
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
}

/* Dienstblokken */
.dienst-blok {
  padding: clamp(36px, 6vw, 72px) 0;
}

.dienst-blok--alt {
  background: var(--detail-color);
}

.dienst-blok__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

@media (max-width: 980px) {
  .dienst-blok__inner {
    grid-template-columns: 1fr;
  }
}

/* Afbeelding */
.dienst-blok__image {
  line-height: 0;
}

.dienst-blok__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 32px rgba(0,0,0,.08);
}

/* Content */
.dienst-blok__content {
  font-family: var(--container-font-family);
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  letter-spacing: var(--container-letter-spacing);
}

.dienst-blok__title {
  margin: 0 0 .75rem;
  font-family: var(--menu-font);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.1rem + 1.2vw, 1.8rem);
  color: #2f2b26;
}

.dienst-blok__content p {
  margin: 0 0 .9rem;
}

.dienst-blok__note {
  font-style: italic;
  color: color-mix(in srgb, var(--main-color) 85%, #000 15%);
}

.dienst-blok__disclaimer {
  font-size: .9rem;
  opacity: .85;
}



/* =========================================================
   Helende Bijeenkomsten — CLEAN + responsive
   (vervang je huidige bijeenkomst-styling door dit blok)
   ========================================================= */

.page-bijeenkomst {
  padding-top: var(--header-height-current);
  background: var(--container-bg);
  color: var(--main-color);
  font-family: var(--container-font-family);
}

/* -----------------------------
   HERO met achtergrond + wit
   ----------------------------- */

.bijeenkomst-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: clamp(64px, 10vw, 140px) 0 clamp(40px, 7vw, 92px);
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.56),
      rgba(0, 0, 0, 0.46) 40%,
      rgba(0, 0, 0, 0.34)
    ),
    url("img/helende-bijeenkomst-hero.jpg") center / cover no-repeat;
}

/* Subtiele “fade-out” onderin, zodat de hero mooi overgaat in wit */
.bijeenkomst-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(44px, 7vw, 88px);
  background: linear-gradient(to bottom, rgba(0,0,0,0), var(--container-bg));
  pointer-events: none;
  z-index: 0;
}

.bijeenkomst-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 78ch;
}

.bijeenkomst-hero .eyebrow {
  color: rgba(255, 255, 255, .86);
  text-shadow: 0 1px 4px rgba(0,0,0,.28);
}

.bijeenkomst-hero__title {
  margin: 0 0 0.9rem 0;
  font-family: var(--menu-font);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.15;
  font-size: clamp(1.85rem, 1.25rem + 2.8vw, 3rem);
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.28);
}

.bijeenkomst-hero__lead {
  margin: 0;
  max-width: 72ch;
  font-size: clamp(1rem, .96rem + .35vw, 1.12rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, .93);
  text-shadow: 0 1px 6px rgba(0,0,0,.22);
}

/* -----------------------------
   Content: tekst + afbeelding
   ----------------------------- */

.bijeenkomst-content {
  padding: clamp(28px, 5vw, 54px) 0;
  background: var(--container-bg);
}

.bijeenkomst-content__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
}

@media (max-width: 980px) {
  .bijeenkomst-content__inner {
    grid-template-columns: 1fr;
  }
}

.bijeenkomst-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 32px rgba(0,0,0,.08);
}

.bijeenkomst-copy__title {
  margin: 0 0 .7rem 0;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  font-size: clamp(1.25rem, 1.05rem + 1.1vw, 1.75rem);
  color: #2f2b26;
}

.bijeenkomst-copy p {
  margin: 0 0 .9rem 0;
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  letter-spacing: var(--container-letter-spacing);
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
}

.bijeenkomst-note {
  margin-top: 1rem;
  padding: clamp(14px, 2.6vw, 18px);
  border: 1px solid var(--border-color);
  background: linear-gradient(180deg, rgba(189, 168, 149, .08), rgba(255, 255, 255, 1));
}

.bijeenkomst-note p {
  margin: 0;
  font-style: italic;
}

/* -----------------------------
   Praktisch: zonder blokjes + beeld rechts
   ----------------------------- */

.bijeenkomst-praktisch {
  position: relative;
  padding: clamp(32px, 6vw, 76px) 0;
  background: var(--detail-color);
  border-top: 1px solid var(--border-color);
}

/* Eindmarkering zodat het niet “doorloopt” in de footer */
.bijeenkomst-praktisch::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: clamp(52px, 8vw, 96px);
  background: linear-gradient(to bottom, rgba(239, 238, 238, 0), var(--container-bg));
  pointer-events: none;
}

.bijeenkomst-praktisch__inner {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 980px) {
  .bijeenkomst-praktisch__inner {
    grid-template-columns: 1fr;
  }
  .bijeenkomst-praktisch__image { order: 2; }
  .bijeenkomst-praktisch__content { order: 1; }
}

.bijeenkomst-praktisch__title {
  margin: 0 0 clamp(18px, 3vw, 28px);
  font-family: var(--menu-font);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.7rem);
  letter-spacing: .02em;
  color: #2f2b26;
}

/* Definitielijst – compact en stabiel */
.praktisch-lijst {
  margin: 0;
  padding: 0;
  max-width: 72ch;
  display: grid;
  gap: clamp(14px, 2.6vw, 20px);
}

.praktisch-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(14px, 3vw, 24px);
  align-items: start;
}

@media (max-width: 640px) {
  .praktisch-item {
    grid-template-columns: 1fr;
    gap: .25rem;
  }
}

/* Label links */
.praktisch-item dt {
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .8rem;
  color: color-mix(in srgb, var(--main-color) 85%, #000 15%);
}

/* Value rechts */
.praktisch-item dd {
  margin: 0;
  font-size: var(--container-font-size);
  line-height: 1.75;
  letter-spacing: var(--container-letter-spacing);
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
}

.praktisch-item--kosten dd {
  font-family: var(--menu-font);
  font-size: clamp(1.1rem, 1rem + .6vw, 1.3rem);
  letter-spacing: .02em;
  color: #2f2b26;
}

.bijeenkomst-praktisch__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(0,0,0,.10);
}

/* Outro */
.bijeenkomst-outro {
  margin-top: clamp(22px, 4vw, 34px);
  max-width: 70ch;
  font-size: 1.02rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--main-color) 90%, #000 10%);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .bijeenkomst-hero::after,
  .bijeenkomst-praktisch::after {
    transition: none !important;
  }
}



/* Diensten – intro visueel afkaderen */
.diensten-intro {
  position: relative;
  padding: clamp(36px, 6vw, 72px) 0;
  background: var(--container-bg);
}

/* Zachte overgang boven */
.diensten-intro::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(36px, 6vw, 72px);
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0),
    var(--container-bg)
  );
  pointer-events: none;
}

/* Zachte overgang onder */
.diensten-intro::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(36px, 6vw, 72px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    var(--detail-color)
  );
  pointer-events: none;
}


























/* =========================================================
   Contactpagina — rustig, minimal
   ========================================================= */
.page-contact {
  padding-top: var(--header-height-current);
  background: var(--container-bg);
  color: var(--main-color);
  font-family: var(--container-font-family);
}



.contact-hero__title {
  margin: 0 0 .9rem 0;
  font-family: var(--menu-font);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.2;
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.6rem);
  color: #2f2b26;
}

.contact-hero__lead {
  margin: 0;
  max-width: 75ch;
  font-size: var(--container-font-size);
  line-height: var(--container-line-height);
  letter-spacing: var(--container-letter-spacing);
  color: color-mix(in srgb, var(--main-color) 92%, #000 8%);
}

/* Grid */
.contact-content {
  padding: clamp(24px, 5vw, 56px) 0 clamp(40px, 6vw, 80px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Blokken */
.contact-block {
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 28px rgba(0,0,0,.045);
  padding: clamp(16px, 2.8vw, 22px);
}

.contact-block--subtle {
  background: linear-gradient(180deg, rgba(239, 238, 238, .6), #fff);
}

.contact-block__title {
  margin: 0 0 .9rem 0;
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .02em;
  font-size: clamp(1.15rem, 1.05rem + .8vw, 1.5rem);
  color: #2f2b26;
}

/* Definitielijst */
.contact-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: .9rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
}

@media (max-width: 520px) {
  .contact-item {
    grid-template-columns: 1fr;
    gap: .25rem;
  }
}

.contact-item dt {
  font-family: var(--menu-font);
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .8rem;
  color: color-mix(in srgb, var(--main-color) 85%, #000 15%);
}

.contact-item dd {
  margin: 0;
  font-size: var(--container-font-size);
  line-height: 1.75;
  letter-spacing: var(--container-letter-spacing);
}

.page-contact a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--main-color) 55%, transparent);
  transition: opacity .2s ease, border-color .2s ease;
}

/* =========================================================
   Helende bijeenkomst – hero met achtergrond
   ========================================================= */

.bijeenkomst-hero {
  position: relative;
  padding: clamp(64px, 10vw, 140px) 0 clamp(48px, 8vw, 96px);
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.35)
    ),
    url("img/helende-bijeenkomst-hero.jpg") center / cover no-repeat;
  color: #fff;
  isolation: isolate;
}

/* iOS / mobiel: geen fixed achtergrond */
@media (hover: none) and (pointer: coarse) {
  .bijeenkomst-hero {
    background-attachment: scroll;
  }
}

.bijeenkomst-hero__inner {
  max-width: 78ch;
}

/* Eyebrow */
.bijeenkomst-hero .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

/* Titel */
.bijeenkomst-hero__title {
  margin: 0 0 1rem 0;
  font-family: var(--menu-font);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.2;
  font-size: clamp(1.9rem, 1.3rem + 3vw, 3rem);
  color: #fff;
}

/* Lead */
.bijeenkomst-hero__lead {
  margin: 0;
  max-width: 70ch;
  font-size: clamp(1rem, .95rem + .3vw, 1.1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}





/*! =====================================================
    12. Whatsapp-logo
   ===================================================== */

.whatsapp-fab {
  position: fixed;
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(14px, 2vw, 22px);
  z-index: 9999;
  --y: 0;
  --s: 1;
  opacity: 0;
  transform: translateY(var(--y)) scale(var(--s));
  transition: opacity .35s ease, transform .35s ease;
  will-change: transform, opacity;
}

.whatsapp-fab.is-entering,
.whatsapp-fab:not(.is-hidden) {
  opacity: 1;
}

.whatsapp-fab.is-hidden {
  opacity: 0;
  --y: 10px;
}

.whatsapp-fab.lift {
  --y: -26px;
}

.whatsapp-fab a {
  inline-size: 60px;
  block-size: 60px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgb(0 0 0 / 18%);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.whatsapp-fab a:hover {
  transform: translateY(-1px);
  background: #1ebe57;
  box-shadow: 0 14px 30px rgb(0 0 0 / 22%);
}

.whatsapp-fab a:active {
  transform: none;
}

.whatsapp-fab a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgb(37 211 102 / 45%), 0 10px 24px rgb(0 0 0 / 18%);
}

.whatsapp-fab i {
  font-size: 30px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes wa-in {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }

  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.whatsapp-fab.is-entering a {
  animation: wa-in .50s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes wa-nudge {
  0% {
    transform: translateY(0) scale(1);
  }

  30% {
    transform: translateY(-6px) scale(1.04);
  }

  60% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

.whatsapp-fab.nudge a {
  animation: wa-nudge .7s cubic-bezier(.22, .61, .36, 1);
}


@keyframes wa-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgb(0 0 0 / 18%);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 16px 34px rgb(0 0 0 / 24%);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgb(0 0 0 / 18%);
  }
}

@media (prefers-color-scheme: dark) {
  .whatsapp-fab a {
    box-shadow: 0 10px 24px rgb(0 0 0 / 36%);
  }
}


@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab,
  .whatsapp-fab a {
    transition: none !important;
    animation: none !important;
  }
}

@media (width <=480px) {
  .whatsapp-fab a {
    inline-size: 54px;
    block-size: 54px;
  }

  .whatsapp-fab i {
    font-size: 28px;
  }
}

/* =========================================================
   Contact – hero met achtergrondafbeelding
   ========================================================= */

.contact-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: clamp(64px, 10vw, 140px) 0 clamp(40px, 7vw, 92px);
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.32)
    ),
    url("img/contact-hero.jpg") center / cover no-repeat;
}

/* Fade-out onderaan richting wit */
.contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(44px, 7vw, 88px);
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0),
    var(--container-bg)
  );
  pointer-events: none;
}

/* Inner */
.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 70ch;
}

/* Eyebrow */
.contact-hero .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,.25);
}

/* Titel */
.contact-hero__title {
  margin: 0 0 .9rem 0;
  font-family: var(--menu-font);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.15;
  font-size: clamp(1.85rem, 1.25rem + 2.8vw, 3rem);
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.28);
}

/* Lead */
.contact-hero__lead {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(1rem, .96rem + .35vw, 1.12rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,.22);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .contact-hero::after {
    transition: none !important;
  }
}



/* Hero actions: mobiel onder elkaar */
.hero__actions {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .cta-btn {
    width: 100%;
    text-align: center;
    
  }
}

@media (max-width: 640px) {
  .hero__actions .cta-btn--ghost {
    margin-bottom: 0.8rem;
  }
}
