/* ---------- Tokens ----------
   Kleuren 1-op-1 overgenomen uit de computed styles van het referentievoorbeeld:
   klei/terracotta (#CCAD99) als hoofdachtergrond, crème (#E7DCD5) als afwisselend
   vlak, zwart voor tekst/knoppen en een dieper roest-accent (#B27659) voor links. */
:root{
  --bg: #ccad99;
  --bg-soft: #e7dcd5;
  --ink: #000000;
  --ink-muted: #4d3826;
  --ink-on-dark: #eddcd5;
  --accent: #24384d;
  --line: rgba(0,0,0,.14);
  --line-strong: rgba(0,0,0,.28);
  --danger: #9a2e1f;
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Arimo', 'Helvetica Neue', sans-serif;
  --maxw: 76rem;
  --ease: cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  padding-top: 6.4rem;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}

p{ margin: 0; }
a{ color: inherit; }
img{ max-width: 100%; display: block; }
button{ font-family: inherit; }

.container{
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 640px){ .container{ padding-inline: 2.5rem; } }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

.h2{ font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); }
.h3{ font-size: clamp(1.15rem, 1rem + .6vw, 1.4rem); }
.lede{ color: var(--ink-muted); font-weight: 300; font-size: clamp(1rem, .95rem + .3vw, 1.2rem); max-width: 42rem; }

.skip-link{
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--ink);
  color: #fff;
  padding: .7rem 1.1rem;
  font-weight: 600;
  z-index: 3000;
  transition: top .2s var(--ease);
}
.skip-link:focus{ top: 1rem; }

:focus-visible{
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* ---------- Header ----------
   Maten 1-op-1 van het referentievoorbeeld: header 85px hoog, logo/CTA
   op 58px van de rand, knop 36px hoog met 6.4px afronding. */
.site-header{
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: 6.4rem;
  display: flex;
  align-items: center;
  background: var(--bg);
  color: var(--ink);
  transition: box-shadow .5s var(--ease), background-color .5s var(--ease), backdrop-filter .5s var(--ease);
}
.site-header.is-scrolled{
  background: rgba(204,173,153,.86);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: none;
}
@media (min-width: 1280px){
  .site-header .container{ padding-inline: 4vw; }
}
.nav-actions{
  display: flex;
  align-items: center;
  gap: 3.5vw;
}
.brand{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img{
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  transition: transform .4s var(--ease);
}
.brand:hover img{ transform: scale(1.04); }

.nav-list{
  list-style: none;
  display: flex;
  gap: 2.1vw;
  margin: 0; padding: 0;
  font-size: .89rem;
  font-weight: 400;
}
.nav-list a{
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-block: .2rem;
}
.nav-list a::after{
  content:"";
  position: absolute; left: 0; right: 100%; bottom: -3px;
  height: 1px; background: currentColor;
  transition: right .3s var(--ease);
}
.nav-list a:hover::after, .nav-list a:focus-visible::after{ right: 0; }
.nav-list a.is-active::after{ right: 0; }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.35rem;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .73rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: .6rem;
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.btn:hover, .btn:focus-visible{ background: transparent; color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 24px -14px rgba(23,17,12,.35); }
.btn:active{ transform: translateY(0); transition-duration: .15s; }
.btn-invert{
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-invert:hover, .btn-invert:focus-visible{ background: transparent; color: #fff; border-color: #fff; }
.btn-outline{
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover, .btn-outline:focus-visible{ background: var(--ink); color: var(--bg); }
.btn-ghost-light{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-ghost-light:hover, .btn-ghost-light:focus-visible{ background: #fff; color: var(--ink); border-color: #fff; }

.link-underline{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: .25em;
  text-decoration-color: rgba(178,118,89,.45);
  transition: text-decoration-color .2s;
}
.link-underline:hover, .link-underline:focus-visible{ text-decoration-color: currentColor; }

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid currentColor;
  color: inherit;
  width: 2.6rem; height: 2.6rem;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width: 1.2rem; height: 1px; background: currentColor;
  position: relative; transition: transform .25s, opacity .25s;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }
.nav-toggle[aria-expanded="true"] span{ background: transparent; }
.nav-toggle[aria-expanded="true"] span::before{ top:0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ top:0; transform: rotate(-45deg); }

.nav-only-mobile{ display: none; }

@media (max-width: 900px){
  .nav-only-mobile{ display: list-item; }
  .nav-list{
    position: fixed;
    inset: 0 0 auto auto;
    top: 0; right: 0;
    height: 100vh;
    width: min(80vw, 22rem);
    background: #fff;
    color: var(--ink);
    border-left: 1px solid var(--line);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    font-size: 1.05rem;
    box-shadow: -20px 0 60px rgba(0,0,0,.08);
  }
  .nav-list.is-open{ transform: translateX(0); }
  .nav-cta{ display:none; }
  .nav-toggle{ display: flex; }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ [data-reveal]{ opacity: 1; transform: none; } }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: calc(100svh - 6.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}
.hero-media{ position: absolute; inset: 0; z-index: -2; }
.hero-media img{
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.1) brightness(.6);
  transform: scale(1.08);
  will-change: transform;
}
.hero-media::after{
  content:"";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 100% at 50% 20%, rgba(0,0,0,0) 0%, rgba(0,0,0,.22) 55%, rgba(0,0,0,.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.28) 45%, rgba(0,0,0,.64) 100%);
}
.hero-inner{
  padding-block: 4rem;
  max-width: 42rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .eyebrow{ color: rgba(255,255,255,.75); margin-bottom: 1.8rem; }
.hero h1{
  color: #fff;
  font-size: clamp(2.4rem, 1.6rem + 4.6vw, 4.6rem);
  letter-spacing: -.015em;
  text-wrap: balance;
}
@keyframes heroFadeUp{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}
.hero-inner > [data-hero-item]{ opacity: 0; animation: heroFadeUp 1s var(--ease) forwards; }
.hero-inner > [data-hero-item]:nth-child(1){ animation-delay: .15s; }
.hero-inner > [data-hero-item]:nth-child(2){ animation-delay: .32s; }
.hero-inner > [data-hero-item]:nth-child(3){ animation-delay: .5s; }
.hero-inner > [data-hero-item]:nth-child(4){ animation-delay: .68s; }
.hero-tagline{
  margin-top: 1.4rem;
  font-weight: 300;
  font-size: clamp(1.02rem, .95rem + .4vw, 1.25rem);
  color: rgba(255,255,255,.86);
  max-width: 34rem;
}
.hero-actions{
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  justify-content: center;
}
.scroll-cue{
  position: absolute;
  left: 50%; bottom: 2.2rem;
  transform: translateX(-50%);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.scroll-cue::after{ content:""; width:1px; height: 2.4rem; background: linear-gradient(rgba(255,255,255,.8), transparent); }

/* ---------- Page header (sub-pagina's zonder grote hero) ---------- */
.page-header{
  padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem) clamp(1.5rem, 1rem + 2vw, 2.5rem);
  text-align: center;
}
.page-header .eyebrow{ justify-content: center; margin-bottom: 1rem; }
.page-header .lede{ margin-inline: auto; margin-top: 1rem; }
.page-header-back{ display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.5rem; font-size: .85rem; }

/* ---------- Section shell ---------- */
section{ padding-block: clamp(4.5rem, 4rem + 3.5vw, 7.5rem); scroll-margin-top: 6.4rem; }
.section-soft{
  background: linear-gradient(var(--bg), var(--bg-soft) 4rem, var(--bg-soft) calc(100% - 4rem), var(--bg));
}
.section-head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.section-head-text{ display: flex; flex-direction: column; gap: 1rem; }
.section-head-text.center{ align-items: center; text-align: center; margin-inline: auto; }

/* ---------- Introductie ---------- */
.intro{
  max-width: 64rem;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.intro p{ font-weight: 300; color: var(--ink-muted); font-size: 1.08rem; }
.intro-btn{ margin-top: 2.5rem; }
.intro-lux{ max-width: 40rem; gap: 2.25rem; }
.intro-lux h2{ font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3.2rem); }
.intro-lux p{ font-size: 1.15rem; line-height: 1.7; }

/* ---------- Portfolio ----------
   1-op-1 van de "Our Work"-galerij: gecentreerde titel, geen filters/labels,
   een grid van vierkante (1:1) tegels, vier per rij — exact zoals het
   referentievoorbeeld ("sqs-gallery-aspect-ratio-square", 4 per row). */
.portfolio-heading{ text-align: center; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }

.masonry{ column-count: 2; column-gap: 1.25rem; }
@media (min-width: 640px){ .masonry{ column-gap: 1.5rem; } }
@media (min-width: 1000px){
  .masonry{ column-count: 4; column-gap: 1.75rem; width: 68.85vw; max-width: 1400px; margin-inline: auto; }
}

.piece{
  position: relative;
  break-inside: avoid;
  margin-bottom: 1.5rem;
  background: var(--bg-soft);
  overflow: hidden;
  border-radius: 1rem;
  transition: opacity .4s var(--ease), box-shadow .4s var(--ease);
}
.piece:hover, .piece:focus-within{
  box-shadow: 0 24px 48px -28px rgba(23,17,12,.4);
}
.masonry[data-reveal] .piece{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 60ms);
}
.masonry[data-reveal].is-visible .piece{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .masonry[data-reveal] .piece{ opacity: 1; transform: none; transition-delay: 0s; }
}
.piece button.piece-trigger{
  display: block; width: 100%; height: 100%;
  background: none; border: 0; padding: 0; margin: 0;
  cursor: zoom-in;
  text-align: left;
}
.piece img{
  width: 100%; height: auto; display: block;
  filter: contrast(1.08);
  transition: transform .7s var(--ease);
}
.piece button.piece-trigger:hover img,
.piece button.piece-trigger:focus-visible img{ transform: scale(1.045); }
.piece-caption{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.5) 100%);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.piece button.piece-trigger:hover .piece-caption,
.piece button.piece-trigger:focus-visible .piece-caption{ opacity: 1; }
.piece-caption .piece-view{
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  letter-spacing: .02em;
  position: relative;
}
.piece-caption .piece-view::after{
  content: ""; display: block; width: 1.6rem; height: 1px; background: rgba(255,255,255,.7);
  margin: .6rem auto 0;
}
.piece-caption .piece-tag{ font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }

.portfolio-more{ text-align: center; margin-top: clamp(2.5rem, 2rem + 2vw, 3.5rem); }

/* ---------- Achter de schermen (video) ---------- */
.video-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
@media (min-width: 640px){ .video-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px){
  .video-grid{ grid-template-columns: repeat(5, 1fr); gap: 1rem; width: 68.85vw; max-width: 1400px; margin-inline: auto; }
}
.video-grid-4{ max-width: 44rem; margin-inline: auto; }
@media (min-width: 640px){ .video-grid-4.video-grid{ grid-template-columns: repeat(4, 1fr); width: auto; } }
.video-tile{ position: relative; aspect-ratio: 9 / 16; overflow: hidden; background: var(--bg-soft); }
.video-tile video{ width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play-btn{
  position: absolute; inset: 0; margin: auto;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 1.1rem;
  display: none;
  align-items: center; justify-content: center;
  cursor: pointer;
  padding: 0 0 0 .15em;
}
.video-tile.needs-tap .video-play-btn{ display: flex; }

/* ---------- Over mij ----------
   Kaart-format 1-op-1 van het referentievoorbeeld: vierkante foto,
   naam/rol/specialismen, knop — zelfde maten als de artiestenkaarten. */
.artist-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
}
@media (min-width: 560px){ .artist-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px){ .artist-grid{ grid-template-columns: repeat(4, 1fr); } }
.artist-card{ display: flex; flex-direction: column; }
.artist-media{ aspect-ratio: 1 / 1; overflow: hidden; margin-bottom: 4%; }
.artist-media img{ width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08); }
.artist-name{ font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; letter-spacing: -.02em; color: var(--ink); margin-bottom: .3rem; }
.artist-role{ font-family: var(--font-body); font-size: .89rem; font-weight: 400; text-transform: uppercase; letter-spacing: .02em; color: var(--ink); margin-bottom: .5rem; }
.artist-specialties{ font-family: var(--font-body); font-size: .89rem; font-weight: 400; color: var(--ink); margin-bottom: 1rem; }
.artist-btn{ align-self: flex-start; }

/* ---------- Over mij: uitgebreide bio (over-mij.html) ---------- */
.bio-grid{ display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 800px){ .bio-grid{ grid-template-columns: minmax(0,22rem) 1fr; gap: 3.5rem; } }
.bio-media{ aspect-ratio: 1 / 1; overflow: hidden; }
.bio-media img{ width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08); }
.bio-text p{ color: var(--ink-muted); font-weight: 300; font-size: 1.02rem; margin-bottom: 1.2rem; }
.bio-text p:last-child{ margin-bottom: 0; }

/* ---------- Over Sanita (homepage) ---------- */
.over-sanita{ display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 800px){ .over-sanita{ grid-template-columns: minmax(0,26rem) 1fr; gap: 4.5rem; } }
.over-sanita-media{ aspect-ratio: 4 / 5; overflow: hidden; border-radius: 1.25rem; }
.over-sanita-media img{ width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08); }
.over-sanita-text .eyebrow{ margin-bottom: 1rem; }
.over-sanita-text .lede{ margin-top: 1.25rem; max-width: none; }
.over-sanita-text .btn{ margin-top: 2rem; }

/* ---------- Stijlen & specialismen (stijlen.html) ---------- */
.style-cards{ display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
@media (min-width: 700px){ .style-cards{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px){ .style-cards{ grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.style-card{
  display: block; text-decoration: none; color: inherit;
  background: var(--bg-soft);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -32px rgba(23,17,12,.28);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.style-card:hover, .style-card:focus-visible{
  transform: translateY(-6px);
  box-shadow: 0 30px 56px -26px rgba(23,17,12,.4);
}
.style-card-media{ aspect-ratio: 4 / 5; overflow: hidden; }
.style-card-media img{ width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08); transition: transform .6s var(--ease); }
.style-card:hover .style-card-media img{ transform: scale(1.06); }
.style-card-placeholder{ width: 100%; height: 100%; background: linear-gradient(150deg, var(--accent) 0%, var(--ink) 130%); }
.style-card-body{ padding: 1.5rem; }
.style-card-body h3{ margin-bottom: .5rem; }
.style-card-body p{ color: var(--ink-muted); font-weight: 300; font-size: .92rem; }

/* ---------- Werkwijze ---------- */
.steps{ display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 800px){ .steps{ grid-template-columns: repeat(3, 1fr); } }
.step{ background: var(--bg); padding: 2.2rem 2rem; display: flex; flex-direction: column; gap: .9rem; }
.step .num{ font-family: var(--font-display); font-size: .82rem; font-weight: 700; letter-spacing: .1em; color: var(--ink-muted); }
.step p{ color: var(--ink-muted); font-weight: 300; }

.steps-lux{ background: none; border: none; gap: 3rem; }
@media (min-width: 800px){ .steps-lux{ gap: 4rem; } }
.steps-lux .step{ background: none; padding: 0; gap: 1.1rem; }
.steps-lux .step .num{ font-family: var(--font-display); font-style: italic; font-size: 2.6rem; font-weight: 600; letter-spacing: 0; color: var(--accent); line-height: 1; }

/* ---------- Werkwijze mini-stappen (homepage teaser) ---------- */
.mini-steps{ display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; margin-top: 2.5rem; }
.mini-step{ display: flex; align-items: baseline; gap: .6rem; }
.mini-step .num{ font-family: var(--font-display); font-size: .82rem; font-weight: 700; letter-spacing: .1em; color: var(--ink-muted); }
.mini-step .label{ font-weight: 600; }

/* ---------- Stijlen teaser (homepage) ---------- */

/* ---------- Testimonials ----------
   1-op-1 van "Atelier Eva Tattoo Reviews": gecentreerde titel, geen kaarten
   of badges — platte tekst in drie kolommen, vetgedrukte bronvermelding. */
.testi-heading{ text-align: center; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.testi-grid{ display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 800px){ .testi-grid{ grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.testi-quote{ font-weight: 400; font-size: .98rem; color: var(--ink); }
.testi-attr{ margin-top: 1.4rem; font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--ink); }
.testi-tag{ font-family: var(--font-body); font-weight: 600; font-size: .85rem; color: var(--accent); text-decoration: underline; text-underline-offset: .2em; }
.testi-note{
  margin-top: clamp(2.5rem, 2rem + 2vw, 4rem);
  font-size: .82rem;
  color: var(--ink-muted);
  text-align: center;
}

/* ---------- Testimonials carousel ---------- */
.testi-carousel{ display: flex; align-items: center; gap: 1.5rem; max-width: 42rem; margin-inline: auto; }
.testi-track{ position: relative; flex: 1; min-height: 9rem; display: flex; align-items: center; }
.testi-slide{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.testi-slide.is-active{ opacity: 1; pointer-events: auto; position: relative; }
.testi-nav{
  flex-shrink: 0;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: none;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.testi-nav:hover, .testi-nav:focus-visible{ background: var(--ink); color: var(--bg); }
.testi-dots{ display: flex; justify-content: center; gap: .5rem; margin-top: 1.75rem; }
.testi-dot{
  width: .5rem; height: .5rem;
  border-radius: 50%;
  border: none;
  background: var(--line-strong);
  padding: 0;
  cursor: pointer;
}
.testi-dot.is-active{ background: var(--ink); }
@media (prefers-reduced-motion: reduce){ .testi-slide{ transition: none; } }

/* ---------- Booking form ---------- */
.booking-shell{
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: clamp(1.25rem, 1rem + 1.25vw, 2rem);
  border-radius: .75rem;
  box-shadow: 0 16px 32px -24px rgba(23,17,12,.3);
}
.form-grid{ display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 700px){ .form-grid{ grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; } .form-grid .span-2{ grid-column: 1 / -1; } }
.field{ display: flex; flex-direction: column; gap: .4rem; }
.field label{ font-size: .7rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-muted); }
.field .req{ color: var(--accent); }
.field input[type="text"], .field input[type="email"], .field select, .field textarea{
  background: #fff; border: 1px solid var(--line-strong); color: var(--ink); padding: .6rem .8rem;
  font-family: var(--font-body); font-size: .92rem; width: 100%;
  border-radius: .4rem;
  transition: border-color .2s, box-shadow .2s;
}
.field select{
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%236b3520' stroke-width='1.6'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 1rem;
  padding-right: 2.3rem;
  cursor: pointer;
}
.field textarea{ resize: vertical; min-height: 5.5rem; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(17,17,17,.08);
}
.field input.has-error, .field select.has-error, .field textarea.has-error{ border-color: var(--danger); }
.error-msg{ font-size: .76rem; color: var(--danger); min-height: 1.1em; }

.form-footer{ margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.form-note{ font-size: .8rem; color: var(--ink-muted); max-width: 26rem; }

.success-panel{ display: none; border: 1px solid var(--ink); background: #fff; padding: 2.4rem; text-align: center; border-radius: 1rem; }
.success-panel.is-visible{ display: block; }
.success-panel .icon{ width: 3rem; height: 3rem; margin: 0 auto 1.2rem; border: 1px solid var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); }
.success-panel h3{ margin-bottom: .6rem; }
.success-panel p{ color: var(--ink-muted); font-weight: 300; }

/* ---------- Footer ----------
   1-op-1 van het referentievoorbeeld: geen apart donker vlak, gewoon de
   klei-achtergrond met een dunne lijn erboven, logo links, zwarte tekst. */
footer{ background: var(--bg); color: var(--ink); padding-block: clamp(3.5rem, 3rem + 3vw, 6rem) clamp(2rem, 1.6rem + 1.5vw, 3rem); border-top: 1px solid var(--line-strong); }
.footer-grid{ display: grid; grid-template-columns: 1fr; gap: 2.8rem; }
@media (min-width: 700px){ .footer-grid{ grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2.4rem; } }
.footer-grid h4{ font-family: var(--font-body); font-size: .78rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }
.footer-grid ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.6rem; }
.footer-grid a{ text-decoration: underline; text-underline-offset: .2em; color: var(--ink); transition: color .2s; }
.footer-grid a:hover, .footer-grid a:focus-visible{ color: var(--accent); }
.footer-brand{ display: inline-flex; text-decoration: none; }
.footer-brand img{ width: 7rem; height: 7rem; border-radius: 50%; }
.footer-tags{ display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-tags span{ font-size: .74rem; border: 1px solid var(--line-strong); padding: .3rem .6rem; color: var(--ink); }
.footer-bottom{ margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-strong); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .78rem; color: var(--ink-muted); }

/* ---------- Privacyverklaring dialog ---------- */
#privacy-dialog{
  border: none;
  border-radius: .75rem;
  padding: 0;
  max-width: 40rem;
  width: calc(100% - 2rem);
  max-height: calc(100vh - 4rem);
  background: var(--bg-soft);
  color: var(--ink);
}
#privacy-dialog::backdrop{ background: rgba(23,17,12,.55); backdrop-filter: blur(2px); }
.privacy-dialog-inner{ position: relative; padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem); overflow-y: auto; max-height: calc(100vh - 4rem); }
.privacy-dialog-inner h2{ margin-bottom: 1.2rem; }
.privacy-dialog-inner p{ margin-bottom: 1rem; font-size: .92rem; color: var(--ink-muted); line-height: 1.6; }
.privacy-dialog-inner p strong{ color: var(--ink); }
#privacy-close{
  position: absolute; top: 1rem; right: 1rem;
  width: 2.2rem; height: 2.2rem;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line-strong); border-radius: 50%;
  font-size: 1.3rem; line-height: 1; color: var(--ink); cursor: pointer;
}
#privacy-close:hover, #privacy-close:focus-visible{ background: var(--ink); color: var(--bg); }

/* ---------- Lightbox ---------- */
.lightbox{ position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1.5rem; background: rgba(255,255,255,.94); backdrop-filter: blur(6px); }
.lightbox.is-open{ display: flex; }
.lightbox-fig{ max-width: min(90vw, 60rem); max-height: 88vh; display: flex; flex-direction: column; gap: 1rem; }
.lightbox-fig img{ max-height: 74vh; width: auto; margin: 0 auto; filter: contrast(1.08); border: 1px solid var(--line); }
.lightbox-cap{ display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--ink-muted); font-size: .88rem; }
.lightbox-close{ position: absolute; top: 1.5rem; right: 1.5rem; width: 2.6rem; height: 2.6rem; border: 1px solid var(--line-strong); background: transparent; color: var(--ink); cursor: pointer; font-size: 1.1rem; }
.lightbox-close:hover{ border-color: var(--ink); }

.visually-hidden{ position:absolute; width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); white-space:nowrap; }
