/* ============ Base ============ */
:root {
  --bg: #0c0b09;
  --bg-soft: #14120e;
  --ink: #ece7df;
  --muted: #9b937f;
  --accent: #c8a96a;
  --line: rgba(236, 231, 223, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* foto's beschermen tegen gemakkelijk opslaan (afschrikking — zie ook main.js) */
img, video {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--bg); }

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

/* ============ Preloader ============ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease 0.2s, visibility 0.8s ease 0.2s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  animation: fadeUp 1.2s ease both;
}
.preloader__sub {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--accent);
  animation: fadeUp 1.2s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ Film grain ============ */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.5%); }
  50% { transform: translate(1.5%, -2%); }
  75% { transform: translate(-1%, -1%); }
  100% { transform: translate(2%, 2%); }
}

/* ============ Viewfinder ============ */
.vf { position: absolute; inset: clamp(4.6rem, 7vw, 5.5rem) clamp(1.2rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.4rem); pointer-events: none; z-index: 2; }
.vf__corner {
  position: absolute;
  width: 26px; height: 26px;
  border: 0 solid rgba(200, 169, 106, 0.65);
}
.vf__corner--tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.vf__corner--tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.vf__corner--bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.vf__corner--br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }
.vf__focus {
  position: absolute;
  top: 38%; left: 58%;
  width: 64px; height: 64px;
  border: 1px solid rgba(200, 169, 106, 0.55);
  animation: focusPulse 3.2s ease-in-out infinite;
}
.vf__focus::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 4px; height: 4px;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
@keyframes focusPulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(0.88); opacity: 1; }
}
.vf__readout {
  position: absolute; bottom: 0.9rem; left: 1.1rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: rgba(236, 231, 223, 0.55);
  text-transform: uppercase;
}
@media (max-width: 860px) {
  .vf__focus { display: none; }
}

/* ============ Aperture scroll indicator ============ */
.aperture {
  position: fixed;
  right: 1.6rem; bottom: 1.6rem;
  width: 52px; height: 52px;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.aperture.visible { opacity: 1; transform: translateY(0); }
.aperture__track {
  stroke: rgba(236, 231, 223, 0.15);
  stroke-width: 1.5;
}
.aperture__progress {
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.aperture__blades line {
  stroke: rgba(236, 231, 223, 0.55);
  stroke-width: 1;
}
@media (max-width: 860px) {
  .aperture { width: 42px; height: 42px; right: 1.1rem; bottom: 1.1rem; }
}

/* ============ Shutter blink ============ */
.shutter {
  position: fixed; inset: 0; z-index: 300;
  background: #000;
  opacity: 0;
  pointer-events: none;
}
.shutter.snap { animation: shutterSnap 0.45s ease-out; }
@keyframes shutterSnap {
  0% { opacity: 0; }
  18% { opacity: 1; }
  100% { opacity: 0; }
}

/* ============ Nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem clamp(1.2rem, 4vw, 3rem);
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 11, 9, 0.85);
  backdrop-filter: blur(12px);
  padding-top: 0.9rem; padding-bottom: 0.9rem;
  border-bottom-color: var(--line);
}
.nav__logo { display: block; line-height: 0; }
.nav__logo img {
  height: clamp(40px, 5vw, 50px);
  width: auto;
  display: block;
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  position: relative;
  transition: color 0.3s ease;
}
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.3s ease;
}
.nav__links a:not(.nav__cta):hover { color: var(--accent); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  padding: 0.55em 1.3em;
  transition: background 0.3s ease, color 0.3s ease;
}
.nav__cta:hover { background: var(--accent); color: var(--bg) !important; }
.nav__burger { display: none; background: none; border: none; width: 32px; height: 24px; position: relative; }
.nav__burger span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--ink); transition: transform 0.3s ease, top 0.3s ease;
}
.nav__burger span:nth-child(1) { top: 6px; }
.nav__burger span:nth-child(2) { top: 16px; }
.nav__burger.open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav__burger.open span:nth-child(2) { top: 11px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.6rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  color: var(--ink); text-decoration: none;
  font-family: var(--serif); font-size: 2rem;
}
.mobile-menu__cta { color: var(--accent) !important; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero__slide.active {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12,11,9,0.92) 15%, rgba(12,11,9,0.55) 55%, rgba(12,11,9,0.25) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 clamp(1.2rem, 6vw, 6rem);
  max-width: 1100px;
}
.hero__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--accent);
  margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__line { display: block; overflow: hidden; }
.hero__line span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__line:nth-child(2) span { animation-delay: 0.15s; }
.hero__line--indent { padding-left: clamp(1.5rem, 8vw, 7rem); }
@keyframes lineUp { to { transform: translateY(0); } }
.hero__tag {
  margin-top: 1.8rem;
  max-width: 32rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
}
.hero__actions { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; right: clamp(1.2rem, 4vw, 3rem);
  z-index: 2;
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.4em;
  color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  writing-mode: vertical-rl;
}
.hero__scroll span {
  width: 1px; height: 56px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.4; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.95em 2.2em;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.btn--sm { padding: 0.7em 1.5em; font-size: 0.72rem; }
.btn--solid { background: var(--accent); color: var(--bg); border: 1px solid var(--accent); }
.btn--solid:hover { background: transparent; color: var(--accent); transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ============ Intro (badges-strook) ============ */
.intro {
  padding: clamp(2.6rem, 5vw, 4rem) clamp(1.2rem, 8vw, 10rem);
  border-top: 1px solid var(--line);
}

/* ============ Section head ============ */
.section-head {
  padding: 0 clamp(1.2rem, 6vw, 6rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.section-head__num {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: var(--accent);
}
.section-head__num::after { content: ' /'; color: var(--muted); }
.section-head__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1;
  margin-top: 0.4rem;
}
.section-head__sub { margin-top: 1rem; color: var(--muted); max-width: 34rem; font-size: 0.95rem; }

/* ============ Portfolio list ============ */
.portfolio { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.plist { list-style: none; border-top: 1px solid var(--line); }
.plist__item {
  display: flex; align-items: baseline; gap: clamp(1rem, 4vw, 3rem);
  padding: clamp(1.1rem, 2.5vw, 1.8rem) clamp(1.2rem, 6vw, 6rem);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s ease, padding-left 0.4s ease;
  position: relative;
  cursor: pointer;
}
.plist__item:hover { background: var(--bg-soft); padding-left: clamp(2rem, 7vw, 7rem); }
.plist__idx { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.2em; }
.plist__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  transition: color 0.4s ease, font-style 0.4s ease;
}
.plist__item:hover .plist__name { color: var(--accent); font-style: italic; }
.plist__arrow {
  margin-left: auto;
  font-size: 1.4rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.plist__item:hover .plist__arrow { opacity: 1; transform: translateX(0); }

/* ============ Gallery overlay: magazine issue ============ */
.gallery {
  --paper: #f3efe7;
  --pink: #17150f;
  --pmuted: #6f6757;
  --pline: rgba(23, 21, 15, 0.1);
  position: fixed; inset: 0; z-index: 200;
  background: var(--paper);
  color: var(--pink);
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.gallery.open { opacity: 1; visibility: visible; }
.gallery__bar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  background: transparent;
  border-bottom: 1px solid transparent;
  color: #ece7df;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.gallery__bar.solid {
  background: rgba(243, 239, 231, 0.88);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--pline);
  color: var(--pink);
}
.gallery__label, .gallery__count {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: inherit;
  opacity: 0.75;
}
.gallery__close {
  margin-left: auto;
  background: none;
  border: 1px solid currentColor;
  color: inherit;
  width: 42px; height: 42px; border-radius: 50%;
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.gallery__close:hover { background: var(--pink); border-color: var(--pink); color: var(--paper); transform: rotate(90deg); }
.gallery__scroll {
  position: absolute; inset: 0;
  overflow-y: auto;
  scrollbar-width: thin;
}

/* Photo grid: rustig masonry-raster, geen tekst.
   De kolommen zijn echte elementen (js/main.js verdeelt de foto's op
   volgorde over de laagste kolom) — geen CSS-columns, die tonen de
   foto's in de verkeerde volgorde (kolom per kolom i.p.v. links→rechts). */
.ggrid {
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(clamp(3.4rem, 6vw, 4.2rem) + clamp(1.2rem, 3vw, 2.4rem)) clamp(1.2rem, 3vw, 2.4rem) clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.8rem);
}
.ggrid__col { flex: 1 1 0; min-width: 0; }
.ggrid__item {
  margin: 0 0 clamp(1rem, 2vw, 1.8rem);
}
.ggrid__item img {
  width: 100%;
  height: auto;
  display: block;
}
/* zolang de foto nog niet geladen is: subtiele achtergrond, en een
   noodhoogte als de echte verhouding (width/height) niet bekend is */
.ggrid__item img[data-src] {
  background: rgba(23, 21, 15, 0.05);
}
.ggrid__item img[data-src]:not([width]) {
  min-height: 320px;
}

/* Photo grid: bescheiden afsluiter met link naar de volgende collectie */
.gnext {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem) 1.5rem clamp(4rem, 7vw, 6rem);
}
.gnext__link {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.1em;
  transition: color 0.3s ease;
}
.gnext__link em { font-style: italic; font-size: 0.7em; }
.gnext__link:hover { color: var(--accent); }

/* Video-galerij: hetzelfde metselwerk-raster als de foto's (.ggrid), maar elke
   tegel is een klikbare thumbnail — poster + afspeelknop. Klik → js/main.js
   vervangt de knop door de speler (zelfde verhouding, geen sprong). */
.gvid { position: relative; }
.gvid__btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--pline);
  background: #000;
  color: inherit;
  font: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.gvid__btn img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gvid__btn img[data-src] { background: rgba(23, 21, 15, 0.05); }
.gvid__btn:hover img { transform: scale(1.04); }

/* Afspeelknop: rustige cirkel met driehoek, midden op de thumbnail */
.gvid__play {
  position: absolute; inset: 0; margin: auto;
  width: clamp(46px, 8vw, 64px); height: clamp(46px, 8vw, 64px);
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(12, 11, 9, 0.42);
  border: 1px solid rgba(243, 239, 231, 0.8);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.gvid__play svg { width: 42%; height: 42%; fill: var(--paper); transform: translateX(1px); }
.gvid__btn:hover .gvid__play {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.07);
}
.gvid__btn:hover .gvid__play svg { fill: var(--bg); }

/* Duur, rechtsonder */
.gvid__dur {
  position: absolute; right: 0.55rem; bottom: 0.55rem;
  padding: 0.1rem 0.42rem;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--paper);
  background: rgba(12, 11, 9, 0.62);
  border-radius: 2px;
  pointer-events: none;
}

/* Uitgelicht: gouden randje + wat diepte, zoals voorheen */
.gvid--feature .gvid__btn {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* Speler die de thumbnail vervangt: zelfde breedte/verhouding als de tegel */
.gvid video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  border: 1px solid var(--pline);
}
.gvid--feature video {
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* ============ Prices ============ */
.prices { padding: clamp(5rem, 10vw, 8rem) 0; background: var(--bg-soft); }
.prices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pcard {
  background: var(--bg-soft);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  transition: background 0.4s ease;
}
.pcard:hover { background: #1a1712; }
.pcard h3 { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; }
.pcard__price {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--accent);
  margin: 0.6rem 0 1.1rem;
}
.pcard__price small { font-size: 0.75rem; font-family: var(--sans); color: var(--muted); letter-spacing: 0.1em; }
.pcard ul { list-style: none; }
.pcard li {
  font-size: 0.9rem; color: var(--muted);
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  border-top: 1px solid var(--line);
}
.pcard li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.pcard .btn { margin-top: 1.4rem; }

.wedding { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 6vw, 6rem) 0; }
.wedding__title {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
}
.wedding__sub { text-align: center; color: var(--muted); max-width: 42rem; margin: 1rem auto 3rem; font-size: 0.95rem; }
.wedding__tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 1.4rem;
  max-width: 72rem; margin: 0 auto;
}
.tier {
  display: block;
  border: 1px solid var(--line);
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.tier__cta {
  display: block;
  margin-top: 1.4rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.tier:hover .tier__cta { opacity: 1; }
.tier:hover { border-color: var(--accent); transform: translateY(-6px); }
.tier--featured { border-color: var(--accent); background: rgba(200, 169, 106, 0.06); }
.tier__badge {
  position: absolute; top: -0.7rem; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--bg);
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.2em;
  padding: 0.3em 1em; white-space: nowrap;
}
.tier h4 {
  font-family: var(--serif); font-weight: 400; font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: 0.25em;
}
.tier__price { font-family: var(--serif); font-size: 2.4rem; color: var(--accent); margin: 0.8rem 0 1rem; }
.tier__price small { font-size: 0.7rem; font-family: var(--sans); color: var(--muted); }
.tier ul { list-style: none; }
.tier li { font-size: 0.88rem; color: var(--muted); padding: 0.4rem 0; }

/* ============ About ============ */
.about { padding: clamp(5rem, 10vw, 8rem) 0; }
.about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding: 0 clamp(1.2rem, 6vw, 6rem);
  align-items: start;
}
.about__photo {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}
.about__photo::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--accent);
  transform: translate(14px, 14px);
  pointer-events: none;
}
.about__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.about__photo:hover img { transform: scale(1.05); }
.about__text p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink);
  margin-bottom: 1.4rem;
  max-width: 38rem;
}
.about__text strong { font-weight: 500; color: var(--accent); }
.awards { list-style: none; margin-top: 2.4rem; border-top: 1px solid var(--line); }
.awards li {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.awards__medal {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  color: var(--accent);
}

/* ============ Reviews: rustige afsluiter binnen Over mij ============ */
.about__reviews {
  margin-top: clamp(4rem, 8vw, 6rem);
  padding: 0 clamp(1.2rem, 6vw, 6rem);
  text-align: center;
}
.about__reviews-label {
  /* zelfde stille stijl als "Erkend door" bij de badges */
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--muted);
  margin-bottom: 2.4rem;
}
/* quotes gestapeld in één rastercel: hoogte = langste review, geen gespring */
.reviews__stage {
  display: grid;
  max-width: 40rem;
  margin: 0 auto;
}
.review {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.9s ease, transform 0.9s ease, visibility 0.9s;
}
.review.is-active { opacity: 1; visibility: visible; transform: none; }
.review__stars {
  display: block;
  color: var(--accent);
  letter-spacing: 0.4em;
  font-size: 0.7rem;
  margin-bottom: 1.2rem;
}
.review__text {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.55;
}
.review__text::before { content: '“'; color: var(--accent); }
.review__text::after { content: '”'; color: var(--accent); }
.review__who {
  margin-top: 1.4rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink);
}
.review__who span { color: var(--muted); }
.review-dots {
  display: flex; justify-content: center; gap: 0.7rem;
  margin-top: 2rem;
}
.review-dots__dot {
  width: 7px; height: 7px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.review-dots__dot:hover { border-color: var(--accent); }
.review-dots__dot.is-active { background: var(--accent); border-color: var(--accent); }
.reviews__google { margin-top: 2rem; }
.reviews__google a {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: color 0.3s ease;
}
.reviews__google a:hover { color: var(--accent); }
.reviews__google strong { color: var(--ink); font-weight: 500; }
.reviews__gmark {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
}

/* ============ Contact ============ */
.contact {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.2rem, 6vw, 6rem);
  background: var(--bg-soft);
  text-align: center;
}
.contact .section-head { text-align: center; }
.contact .section-head__sub { margin-left: auto; margin-right: auto; }
.contact__lead { color: var(--muted); max-width: 30rem; margin: 0 auto 2rem; }
.contact__cta {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 4.5vw, 3.2rem);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.15em;
  transition: color 0.4s ease;
}
.contact__cta:hover { color: var(--accent); font-style: italic; }
.contact__actions { margin-top: 3rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============ Footer ============ */
.footer {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.8rem clamp(1.2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--muted);
}
.footer__left, .footer__right { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer a { color: var(--muted); text-decoration: none; transition: color 0.3s ease; }
.footer a:hover { color: var(--accent); }

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 380px; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  /* ook op gsm meerdere foto's in beeld (2 kolommen), zoals op desktop */
  .ggrid {
    gap: 0.6rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
  .ggrid__item { margin-bottom: 0.6rem; }
  .ggrid__item img[data-src]:not([width]) { min-height: 160px; }
}

/* ============ Creds: certificaten / labels ============ */
.creds {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 4vw, 3rem);
}
.creds__label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--muted);
}
.creds__badge { display: block; }
.creds__badge img {
  height: clamp(38px, 5vw, 48px);
  width: auto;
  opacity: 0.45;
  transition: opacity 0.35s ease;
}
.creds__badge:hover img,
.creds__badge:focus-visible img { opacity: 0.85; }
/* rond zegel met tekst — heeft meer hoogte nodig om leesbaar te zijn */
.creds__badge img[src*="badge-how"] {
  height: clamp(84px, 11vw, 112px);
}

/* ============ Partners / klanten (logo-marquee) ============ */
.clients { padding: clamp(4rem, 9vw, 7rem) 0; overflow: hidden; }

/* schuivende band met een zachte fade aan beide randen */
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll var(--marquee-time, 40s) linear infinite;
}
/* stilstaan bij hover, zodat je een logo rustig kan aanklikken */
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: 0 0 auto; }
.marquee__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(1.6rem, 4vw, 3.4rem);
  line-height: 0;
}
/* elk logo naar hetzelfde ingetogen wit — bronkleur maakt niet uit */
.marquee__item img {
  height: clamp(24px, 3vw, 34px);
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.35s ease;
}
.marquee__item:hover img,
.marquee__item:focus-visible img { opacity: 0.85; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}

/* toegankelijkheid: geen beweging → nette gecentreerde rij i.p.v. marquee */
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; width: 100%; }
  .marquee__group {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    row-gap: clamp(1.5rem, 4vw, 2.5rem);
  }
  .marquee__group:not(:first-child) { display: none; }
}

/* ============ Voorwaarden (legal page) ============ */
.legal {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(8rem, 14vw, 11rem) clamp(1.2rem, 5vw, 2.4rem) clamp(4rem, 8vw, 6rem);
}
.legal__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.legal__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
}
.legal__title em { font-style: italic; color: var(--accent); }
.legal__intro {
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
}
.legal__list {
  margin-top: 3rem;
  list-style: none;
  counter-reset: art;
  border-top: 1px solid var(--line);
}
.legal__list li {
  counter-increment: art;
  position: relative;
  padding: 1.4rem 0 1.4rem 3.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
}
.legal__list li::before {
  content: counter(art, decimal-leading-zero);
  position: absolute;
  left: 0; top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent);
}
.legal__back { margin-top: 3rem; }
.legal__back a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color 0.3s ease;
}
.legal__back a:hover { color: var(--accent); }

/* ============ Boeken (offerte-aanvraag) ============ */
.booking {
  max-width: 68rem;
  margin: 0 auto;
  padding: clamp(8rem, 14vw, 11rem) clamp(1.2rem, 5vw, 2.4rem) clamp(4rem, 8vw, 6rem);
}
.booking__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.booking__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
}
.booking__title em { font-style: italic; color: var(--accent); }
.booking__lead {
  margin-top: 1.6rem;
  max-width: 44rem;
  font-size: 1.05rem;
}
.booking__lead strong, .booking__note strong { font-weight: 500; color: var(--accent); }
.booking__note {
  margin-top: 1.1rem;
  max-width: 44rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  font-size: 0.88rem;
  color: var(--muted);
}
.booking__note a { color: var(--ink); }
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2.6rem, 5vw, 4rem);
  align-items: start;
}

/* Kalender */
.cal {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
}
.cal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.cal__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  text-transform: capitalize;
}
.cal__nav {
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 38px; height: 38px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.cal__nav:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.cal__nav:disabled { opacity: 0.3; cursor: default; }
.cal__weekdays, .cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal__weekdays span {
  text-align: center;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding-bottom: 0.6rem;
}
.cal__day {
  aspect-ratio: 1;
  background: none;
  border: 1px solid transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.88rem;
  cursor: pointer;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.cal__day:hover:not(:disabled) { border-color: var(--accent); }
.cal__day:disabled { color: rgba(155, 147, 127, 0.35); cursor: default; }
.cal__day.is-today::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 5px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
}
.cal__day.is-selected {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cal__hint {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Formulier */
.bform__date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}
.bform__date.has-date { color: var(--ink); }
.bform__date strong { font-weight: 500; color: var(--accent); }
.bform__field { display: block; margin-bottom: 1.2rem; }
.bform__field span {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.bform__field input,
.bform__field select,
.bform__field textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.95rem;
  padding: 0.75em 0.9em;
  transition: border-color 0.3s ease;
}
.bform__field select { appearance: none; cursor: pointer; }
.bform__field textarea { resize: vertical; }
.bform__field input:focus,
.bform__field select:focus,
.bform__field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.bform__submit { margin-top: 0.6rem; cursor: pointer; }
.bform__fine {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.bform__status { margin-top: 1rem; font-size: 0.88rem; }
.bform__status.is-error { color: #d4907a; }
.bform__status a, .bform__thanks a { color: var(--accent); }
.bform__thanks {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.5;
}
.bform__thanks em { color: var(--accent); }

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

/* ============ Accessibility ============ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 1.5px solid var(--accent);
  outline-offset: 3px;
}
.plist__item:focus-visible { outline-offset: -1.5px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .vf__focus, .hero__scroll span { animation: none; }
  .hero__slide.active { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__line span { transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
