/* ============================================================
   ANON. — anonprojects.be
   Editorial premium boudoir, warm dark, cognac gold.
   ============================================================ */

/* --- Tokens --------------------------------------------------- */
:root {
  /* Palette — warm black + cognac gold (V3-derived) */
  --black:        #0a0907;
  --deep:         #111009;
  --dark:         #1a180f;
  --warm:         #2a2618;

  --gold:         #c9a84c;
  --gold-light:   #e4c97a;
  --gold-dim:     #a07830;

  --cream:        #f0e8d8;
  --cream-dim:    #c8b898;

  --text:         #e0d4be;
  --text-dim:     #a09070;
  --line:         rgba(201, 168, 76, 0.12);
  --line-strong:  rgba(201, 168, 76, 0.28);

  /* Typography */
  --font-serif:   'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-sans:    'Josefin Sans', 'Inter', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:     .5rem;
  --space-sm:     1rem;
  --space-md:     2rem;
  --space-lg:     4rem;
  --space-xl:     8rem;
  --space-2xl:    12rem;

  /* Layout */
  --container:    1100px;
  --container-narrow: 760px;
  --container-prose:  640px;

  /* Motion */
  --ease:         cubic-bezier(.4, 0, .2, 1);
  --ease-out:     cubic-bezier(0, 0, .2, 1);
}

/* --- Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, video { max-width: 100%; height: auto; display: block; }

/* --- Base ----------------------------------------------------- */
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-x: hidden;
  /* Pro text wrap defaults */
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Tekstafbreking — geen vreemde splitsingen midden in woorden */
html[lang="nl"] p,
html[lang="nl"] li,
html[lang="nl"] dd,
html[lang="nl"] blockquote,
h1, h2, h3, h4, h5, h6,
a, span {
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

html[lang="nl"] p,
html[lang="nl"] li,
html[lang="nl"] dd,
html[lang="nl"] blockquote {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  font-weight: 300;
}

/* Bescherm merknamen, knoppen en navigatie tegen afbreking */
.brand, .price, label, .nav-links a, .pkg-cta, .btn, .pkg-name, .section-label {
  white-space: normal;
}

/* Lange links mogen wel veilig breken om mobiel geen horizontale scroll te veroorzaken */
a[href^="http"], a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

/* --- Selection & focus --------------------------------------- */
::selection { background: var(--gold); color: var(--black); }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

/* --- Typography scale ---------------------------------------- */
h1, h2, h3 { font-family: var(--font-serif); color: var(--cream); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
em { font-style: italic; color: var(--gold-light); }

/* --- Skip link ------------------------------------------------ */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--gold); color: var(--black);
  padding: .75rem 1.25rem;
  font-family: var(--font-sans);
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  text-decoration: none; z-index: 200;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* --- Noise overlay (subtle film grain) ----------------------- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: .5;
  mix-blend-mode: overlay;
}

/* --- Custom cursor (desktop only) --------------------------- */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  .cursor {
    position: fixed; width: 8px; height: 8px;
    background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease), height .3s var(--ease);
    will-change: transform, left, top;
  }
  .cursor-ring {
    position: fixed; width: 32px; height: 32px;
    border: 1px solid rgba(201, 168, 76, .5);
    border-radius: 50%; pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease), height .3s var(--ease), border-color .3s var(--ease);
    will-change: transform, left, top;
  }
  .cursor.hover { width: 14px; height: 14px; }
  .cursor-ring.hover { width: 50px; height: 50px; border-color: rgba(201, 168, 76, .8); }
}
@media (hover: none) {
  .cursor, .cursor-ring { display: none; }
}

/* --- Container ----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container.narrow { max-width: var(--container-narrow); }
.container.prose  { max-width: var(--container-prose); }

/* --- Section ------------------------------------------------- */
section { position: relative; }
.section-label {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .6rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: inline-block;
}

/* --- Reveal animations -------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* --- Navigation --------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: linear-gradient(to bottom, rgba(10, 9, 7, .95), rgba(10, 9, 7, .6) 70%, transparent);
  transition: padding .3s var(--ease), background .3s var(--ease);
  backdrop-filter: blur(0);
}
.site-header.scrolled {
  padding: 1rem 0;
  background: rgba(10, 9, 7, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.brand {
  font-family: var(--font-sans);
  font-weight: 100;
  font-size: 1.05rem;
  letter-spacing: .5em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}
.brand .dot { color: var(--gold-light); }
.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color .3s var(--ease);
  position: relative;
  padding: .25rem 0;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--gold); }
.nav-links a.cta {
  color: var(--gold);
  border: 1px solid var(--line-strong);
  padding: .55rem 1.1rem;
}
.nav-links a.cta:hover { background: rgba(201, 168, 76, .06); border-color: var(--gold); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--cream-dim);
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: .55rem 1rem;
  cursor: pointer;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.menu-toggle:hover { color: var(--gold); border-color: var(--gold); }

/* --- Hero ----------------------------------------------------
   HERO IMAGE VISIBILITY — adjust here:
   ─────────────────────────────────────
   .hero-bg img { opacity }      → 0.0 (invisible) … 1.0 (fully visible)
   .hero-bg img { filter }       → brightness(0.5) = donkerder, brightness(1) = origineel
   .hero-bg::after { background } → de gradient overlay; lager rgba = lichter beeld
   ─────────────────────────────────────                                    */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* HOOFD-INSTELLING HERO ZICHTBAARHEID */
  opacity: .85;             /* hoger = beeld zichtbaarder. range 0–1 */
  filter: brightness(.95);  /* hoger = lichter beeld. 1 = origineel */
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  /* TWEEDE INSTELLING: hoeveel donkere overlay over het beeld */
  background:
    radial-gradient(ellipse 60% 80% at 30% 60%, rgba(201, 168, 76, .07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 70% 30%, rgba(201, 168, 76, .05) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(10, 9, 7, .15), rgba(10, 9, 7, .55));
}
.hero-lines {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-lines::before, .hero-lines::after {
  content: ''; position: absolute;
  top: 10%; bottom: 10%; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, .14), transparent);
}
.hero-lines::before { left: 20%; }
.hero-lines::after  { right: 20%; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .65rem;
  letter-spacing: .6em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s .3s forwards;
}
.hero-title {
  font-family: var(--font-sans);
  font-weight: 100;
  font-size: clamp(4rem, 14vw, 11rem);
  letter-spacing: .25em;
  color: var(--gold);
  line-height: .9;
  opacity: 0;
  animation: fadeUp 1.2s .5s forwards;
  /* Brand mark — never hyphenate, never wrap weirdly */
  white-space: nowrap;
}
.hero-title .dot { color: var(--gold-light); }
.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--cream-dim);
  margin-top: 2rem;
  letter-spacing: .03em;
  opacity: 0;
  animation: fadeUp 1s .9s forwards;
}
.hero-lead {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--text);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.hero-divider {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin: 3rem auto 0;
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
}
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .55rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0;
  animation: fadeUp 1s 1.6s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Concept (manifesto) ------------------------------------ */
.concept {
  padding: var(--space-2xl) 0;
  background: var(--deep);
}
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: start;
}
.concept-label {
  position: sticky;
  top: 6rem;
  padding-top: .5rem;
}
.concept-text h2 { margin-bottom: 2.5rem; }
.concept-text p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 1.5rem;
  max-width: 60ch;
}
.concept-quote {
  border-left: 1px solid var(--gold-dim);
  padding-left: 2rem;
  margin: 3rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--cream);
  line-height: 1.5;
  max-width: 50ch;
}

/* --- Pillars (3 USPs) --------------------------------------- */
.pillars {
  padding: var(--space-xl) 0;
  background: var(--black);
}
.pillars-header {
  text-align: center;
  margin-bottom: 5rem;
  padding: 0 1.5rem;
}
.pillars-header .section-label { margin-bottom: 1.5rem; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  margin: 0 1.5rem;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.pillar {
  padding: 3rem 2.25rem;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .4s var(--ease);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(201, 168, 76, .03); }
.pillar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.pillar:hover::before { opacity: 1; }
.pillar-num {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .6rem;
  letter-spacing: .3em;
  color: var(--gold-dim);
  margin-bottom: 1.75rem;
  display: block;
}
.pillar h3 { color: var(--gold-light); margin-bottom: .9rem; }
.pillar p { font-size: .95rem; line-height: 1.75; color: var(--text); }

/* --- Sfeer / Galerij ---------------------------------------- */
.gallery {
  padding: var(--space-xl) 0;
  background: var(--deep);
}
.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1.5rem;
}
.gallery-header .section-label { margin-bottom: 1.5rem; }
.gallery-disclaimer {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .55rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: .6rem 1.2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--warm);
  aspect-ratio: 3/4;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: 3/8; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 3/2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
  filter: brightness(.85) saturate(.85);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(.95) saturate(.95);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 7, .4), transparent 50%);
  pointer-events: none;
}

/* --- Werkwijze ---------------------------------------------- */
.workflow {
  padding: var(--space-2xl) 0;
  background: var(--black);
}
.workflow-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.workflow-header { text-align: center; margin-bottom: 5rem; }
.workflow-header .section-label { margin-bottom: 1.5rem; }
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}
.step:first-child { border-top: 1px solid var(--line); }
.step-num {
  font-family: var(--font-sans);
  font-weight: 100;
  font-size: 2.5rem;
  color: rgba(201, 168, 76, .2);
  align-self: start;
  padding-top: .3rem;
}
.step h3 { color: var(--cream); margin-bottom: .75rem; }
.step p { font-size: .98rem; line-height: 1.85; color: var(--text); max-width: 55ch; }

/* --- Pakket (single offer) ---------------------------------- */
.package {
  padding: var(--space-2xl) 0;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.package::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, .04) 0%, transparent 70%);
  pointer-events: none;
}
.package-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
.package-header { text-align: center; margin-bottom: 4rem; }
.package-header .section-label { margin-bottom: 1.5rem; }
.pkg-card {
  border: 1px solid var(--line-strong);
  padding: 3.5rem 2.5rem;
  background: rgba(26, 24, 15, .35);
  position: relative;
  text-align: center;
}
.pkg-card::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--gold);
}
.pkg-name {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .6rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}
.pkg-card h3 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--cream);
  margin-bottom: .5rem;
}
.pkg-card .pkg-tag {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 2rem;
}
.pkg-price {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 4rem);
  color: var(--gold-light);
  letter-spacing: .02em;
  margin: 1.5rem 0 .25rem;
}
.pkg-price small {
  font-size: .9rem;
  color: var(--text-dim);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin-left: .25rem;
}
.pkg-features {
  list-style: none;
  margin: 2.5rem 0 1.5rem;
  text-align: left;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.pkg-features li {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.6;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: .9rem;
  align-items: baseline;
}
.pkg-features li::before {
  content: '—';
  color: var(--gold-dim);
  font-size: .7rem;
}
.pkg-extras {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--text-dim);
}
.pkg-extras strong {
  color: var(--cream-dim);
  font-weight: 400;
  font-style: italic;
}
.pkg-cta {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  text-decoration: none;
  padding: 1rem 2rem;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.pkg-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.pkg-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: .85rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.7;
}


/* --- Anonieme getuigenissen ------------------------------- */
.testimonials {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--deep) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 10% auto auto 50%;
  transform: translateX(-50%);
  width: min(760px, 90vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.testimonials-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
.testimonials-header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}
.testimonials-header .section-label { margin-bottom: 1.5rem; }
.testimonials-header p {
  color: var(--text-dim);
  font-size: .98rem;
  line-height: 1.85;
  margin-top: 1.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  border: 1px solid var(--line);
  background: rgba(26, 24, 15, .34);
  padding: 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.testimonial-card::before {
  content: '“';
  position: absolute;
  top: .3rem;
  right: 1.2rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201, 168, 76, .13);
  pointer-events: none;
}
.testimonial-card p {
  color: var(--cream-dim);
  font-size: 1.12rem;
  line-height: 1.75;
  font-style: italic;
  position: relative;
}
.testimonial-card span {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .58rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.testimonials-note {
  max-width: 650px;
  margin: 3rem auto 0;
  text-align: center;
  color: var(--text-dim);
  font-size: .92rem;
  line-height: 1.8;
  font-style: italic;
}

/* --- Privacy belofte (mini-section) ------------------------- */
.privacy-promise {
  padding: var(--space-xl) 0;
  background: var(--black);
  text-align: center;
}
.privacy-promise-inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.privacy-promise .section-label { margin-bottom: 1.5rem; }
.privacy-promise h2 { margin-bottom: 1.5rem; }
.privacy-promise p {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.85;
}
.privacy-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, .4);
  padding-bottom: .3rem;
}
.privacy-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* --- FAQ ----------------------------------------------------- */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--deep);
}
.faq-inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.faq-header { text-align: center; margin-bottom: 4rem; }
.faq-header .section-label { margin-bottom: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--cream);
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--gold-light); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--gold-dim);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner {
  padding-bottom: 1.75rem;
  font-size: .98rem;
  line-height: 1.85;
  color: var(--text);
  max-width: 60ch;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--gold-light); }

/* --- Statement block ---------------------------------------- */
.statement {
  padding: var(--space-xl) 0;
  text-align: center;
  background: var(--black);
  position: relative;
}
.statement p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--gold-light);
  line-height: 1.4;
  max-width: 60ch;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-wrap: balance;
}

/* --- Contact / Intake form --------------------------------- */
.contact {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: start;
}
.contact-info { padding-top: .5rem; }
.contact-info .section-label { margin-bottom: 1.5rem; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.85;
  max-width: 40ch;
}
.contact-info .email {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 201, 122, .3);
  padding-bottom: .15rem;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.contact-info .email:hover { color: var(--cream); border-color: var(--cream-dim); }

.form {
  border: 1px solid var(--line);
  padding: 2.5rem;
  background: rgba(26, 24, 15, .4);
  display: grid;
  gap: 1.5rem;
  position: relative;
}
.form-row { display: grid; gap: .5rem; }
.form label {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.form label .req { color: var(--gold); margin-left: .25rem; }
.form input,
.form select,
.form textarea {
  width: 100%;
  background: rgba(10, 9, 7, .6);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: .9rem 1rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  border-radius: 0;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.form input::placeholder,
.form textarea::placeholder {
  color: var(--text-dim);
  font-style: italic;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(10, 9, 7, .8);
}
.form textarea { resize: vertical; min-height: 120px; }
.form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23a07830' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form .radio-group {
  display: grid;
  gap: .5rem;
  font-family: var(--font-serif);
}
.form .radio-group label {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  cursor: pointer;
  font-weight: 300;
}
.form .radio-group input[type="radio"] {
  width: auto;
  accent-color: var(--gold);
  margin: 0;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  text-decoration: none;
  padding: 1.1rem 2rem;
  border: 0;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn.secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line-strong);
}
.btn.secondary:hover {
  background: rgba(201, 168, 76, .04);
  border-color: var(--gold);
  color: var(--gold-light);
}
.form-note {
  font-size: .85rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.6;
}

/* --- Footer -------------------------------------------------- */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  background: var(--black);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-tagline {
  font-family: var(--font-sans);
  font-weight: 100;
  font-size: .55rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: .5rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.footer-links a {
  color: var(--cream-dim);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.footer-links a:hover { color: var(--gold); }
.footer-legal {
  grid-column: 1 / -1;
  max-width: 760px;
  color: var(--text-dim);
  font-family: var(--font-sans);
  font-weight: 100;
  font-size: .62rem;
  line-height: 1.65;
  letter-spacing: .08em;
}
.footer-legal span {
  display: block;
  margin-bottom: .4rem;
  color: var(--cream-dim);
  letter-spacing: .24em;
  text-transform: uppercase;
}
.footer-legal p { margin: 0; }
.footer-legal a { color: var(--cream-dim); text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }

/* --- Section banner (image opener for sections) ------------- */
.section-banner {
  position: relative;
  height: clamp(220px, 32vh, 360px);
  margin: 0 auto 5rem;
  max-width: var(--container);
  overflow: hidden;
  border: 1px solid var(--line);
}
.section-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.7) saturate(.85);
  transition: transform 1.2s var(--ease), filter .8s var(--ease);
}
.section-banner:hover img {
  transform: scale(1.02);
  filter: brightness(.8) saturate(.95);
}
.section-banner::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 9, 7, .35) 0%, transparent 50%, rgba(201, 168, 76, .08) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(10, 9, 7, .55));
  pointer-events: none;
}
.section-banner::before {
  content: '';
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  width: 40px; height: 1px;
  background: var(--gold);
  z-index: 2;
}

/* --- Split grid (image + content side by side) -------------- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.split-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--line);
}
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.85) saturate(.85);
  transition: transform .9s var(--ease), filter .6s var(--ease);
}
.split-image:hover img {
  transform: scale(1.03);
  filter: brightness(.95) saturate(.95);
}
.split-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(201, 168, 76, .1));
  pointer-events: none;
}

/* --- Page hero (sub-pages) ---------------------------------- */
.page-hero {
  padding: 9rem 0 4rem;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
  filter: brightness(.55) saturate(.7);
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(201, 168, 76, .06), transparent 70%),
    linear-gradient(to bottom, rgba(17, 16, 9, .6), rgba(17, 16, 9, .9));
}
.page-hero-inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-hero .section-label { margin-bottom: 1.5rem; }
.page-hero h1 { margin-bottom: 1.5rem; }
.page-hero p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 55ch;
  margin: 0 auto;
}

/* --- Prose pages (privacy, SEO) ---------------------------- */
.prose {
  padding: var(--space-xl) 0;
}
.prose-inner {
  max-width: var(--container-prose);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.prose h2 {
  margin: 3rem 0 1.25rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  margin: 2.5rem 0 1rem;
  color: var(--gold-light);
  font-size: 1.3rem;
}
.prose p {
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
}
.prose ul {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
}
.prose ul li {
  padding: .65rem 0 .65rem 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
}
.prose ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}
.prose strong { color: var(--cream); font-weight: 400; }
.prose a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(228, 201, 122, .3);
}
.prose a:hover { color: var(--cream); border-color: var(--cream); }
.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 3rem 0;
}

/* --- Bedankt / utility page --------------------------------- */
.thank-you {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--deep);
}
.thank-you-inner { max-width: 520px; }
.thank-you .section-label { display: block; margin-bottom: 2rem; }
.thank-you h1 { margin-bottom: 1.5rem; }
.thank-you p { margin-bottom: 2.5rem; color: var(--text); font-size: 1.05rem; }

/* --- Reduced motion ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  body::before { display: none; }
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* --- Mobile menu open state --------------------------------- */
@media (max-width: 880px) {
  .menu-toggle {
    display: inline-block;
    position: relative;
    z-index: 120;
  }

  .site-header.menu-open {
    background: var(--black);
    border-bottom: 1px solid var(--line);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    min-height: 100svh;
    background: var(--black);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    padding: 5.5rem 2rem 3rem;
    z-index: 110;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    font-size: .85rem;
    letter-spacing: .35em;
    padding: .5rem 1rem;
  }

  .nav-links a.cta { padding: .8rem 1.5rem; }

  .site-header.menu-open .menu-toggle { color: var(--gold); border-color: var(--gold); }
}

/* --- Responsive breakpoints --------------------------------- */
@media (max-width: 880px) {
  :root { --space-2xl: 7rem; --space-xl: 5rem; }
  .concept-grid { grid-template-columns: 1fr; gap: 2rem; }
  .concept-label { position: static; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 2; aspect-ratio: 3/8; }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 3/2; }
  .step { grid-template-columns: 60px 1fr; gap: 1.5rem; padding: 2rem 0; }
  .step-num { font-size: 1.8rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .form { padding: 2rem 1.5rem; }
  .pkg-card { padding: 2.5rem 1.5rem; }
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-image { aspect-ratio: 4/3; }
  .section-banner { height: clamp(180px, 26vh, 260px); margin-bottom: 3rem; }
}

@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 6px; }
  .gallery-item, .gallery-item.tall, .gallery-item.wide {
    aspect-ratio: 4/5;
    grid-row: auto;
    grid-column: auto;
  }
  .hero-title { letter-spacing: .15em; }
  .nav { gap: 1rem; }
  .brand { font-size: .9rem; letter-spacing: .35em; }
}

/* --- Print stylesheet --------------------------------------- */
@media print {
  body { background: white; color: black; cursor: auto; }
  body::before, .cursor, .cursor-ring,
  .site-header, .scroll-hint, .hero-bg,
  .form, .menu-toggle, .pkg-cta, .btn { display: none !important; }
  .hero { min-height: auto; padding: 2rem 0; }
  .hero-title { color: black; -webkit-text-fill-color: black; }
  * { color: black !important; background: white !important; box-shadow: none !important; }
  a { color: black !important; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: auto; }
}

/* ============================================================
   Mobile polish — iPhone / small screens
   Doel: rustiger ritme, betere leesbaarheid en geen rare overflow.
   ============================================================ */
@media (max-width: 600px) {
  :root {
    --space-xl: 4.25rem;
    --space-2xl: 5rem;
  }

  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 1rem;
    line-height: 1.65;
    text-wrap: auto;
  }

  .container,
  .workflow-inner,
  .package-inner,
  .faq-inner,
  .privacy-promise-inner,
  .prose-inner,
  .testimonials-inner,
  .page-hero-inner,
  .contact-grid,
  .split-grid {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  h1 { font-size: clamp(2.15rem, 12vw, 3.25rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.65rem); line-height: 1.08; }
  h3 { font-size: clamp(1.25rem, 6vw, 1.55rem); }
  p { line-height: 1.72; }

  .section-label {
    font-size: .58rem;
    letter-spacing: .26em;
    max-width: 100%;
  }

  /* Header / menu */
  .site-header {
    padding: .85rem 0;
    background: rgba(10, 9, 7, .9);
    border-bottom: 1px solid rgba(201, 168, 76, .08);
  }

  .site-header.scrolled { padding: .7rem 0; }
  .nav { gap: .75rem; padding-left: 1rem; padding-right: 1rem; }
  .brand { font-size: .88rem; letter-spacing: .3em; }
  .menu-toggle {
    font-size: .58rem;
    letter-spacing: .22em;
    padding: .5rem .75rem;
  }

  .nav-links {
    gap: 1.45rem;
    padding: 5.5rem 1.5rem 3rem;
  }
  .nav-links a {
    font-size: .78rem;
    letter-spacing: .22em;
    max-width: 100%;
    text-align: center;
  }

  /* Hero */
  .hero {
    min-height: 92svh;
    justify-content: flex-end;
    padding: 7rem 1.15rem 5.25rem;
  }
  .hero-bg img {
    object-position: center center;
    opacity: .72;
    filter: brightness(.72) saturate(.9);
  }
  .hero-bg::after {
    background:
      radial-gradient(ellipse 85% 65% at 50% 50%, rgba(201, 168, 76, .06) 0%, transparent 70%),
      linear-gradient(to bottom, rgba(10, 9, 7, .28), rgba(10, 9, 7, .62) 48%, rgba(10, 9, 7, .9));
  }
  .hero-lines::before { left: 10%; }
  .hero-lines::after { right: 10%; }
  .hero-content { max-width: 23rem; }
  .hero-eyebrow {
    font-size: .58rem;
    letter-spacing: .28em;
    line-height: 1.65;
    margin-bottom: 1.35rem;
  }
  .hero-title {
    font-size: clamp(3.7rem, 22vw, 5.4rem);
    letter-spacing: .12em;
    margin-left: .12em;
  }
  .hero-subtitle {
    margin-top: 1.25rem;
    font-size: 1.15rem;
  }
  .hero-lead {
    margin-top: 1rem;
    font-size: .98rem;
    line-height: 1.7;
  }
  .hero-divider { height: 48px; margin-top: 2rem; }
  .scroll-hint { bottom: 1.35rem; font-size: .5rem; letter-spacing: .28em; }

  /* Algemene sectieruimte */
  .concept,
  .pillars,
  .gallery,
  .workflow,
  .testimonials,
  .package,
  .privacy-promise,
  .faq,
  .contact,
  .prose {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .pillars-header,
  .gallery-header,
  .workflow-header,
  .package-header,
  .testimonials-header,
  .faq-header {
    margin-bottom: 2.5rem;
  }

  /* Split-secties */
  .split-grid {
    gap: 2rem;
  }
  .concept .concept-text { order: 1; }
  .concept .split-image { order: 2; }
  .privacy-promise-text { order: 1; }
  .privacy-promise .split-image { order: 2; }
  .split-image {
    aspect-ratio: 4/4.7;
    max-height: 520px;
  }

  .concept-text h2,
  .privacy-promise h2,
  .contact-info h2 {
    margin-top: 1rem !important;
    margin-bottom: 1.25rem;
  }
  .concept-text p,
  .privacy-promise p,
  .contact-info p,
  .testimonials-header p,
  .package-header p,
  .faq-a-inner {
    font-size: .98rem;
    line-height: 1.75;
  }
  .concept-quote {
    margin: 2rem 0;
    padding-left: 1.15rem;
    font-size: 1.2rem;
  }

  /* Pijlers */
  .pillars-grid {
    margin-left: 1.15rem;
    margin-right: 1.15rem;
  }
  .pillar { padding: 1.6rem 1.25rem; }
  .pillar-num { margin-bottom: 1rem; }

  /* Galerij blijft premium op mobiel: 2 kolommen i.p.v. logge single column */
  .gallery-header p {
    max-width: 31ch !important;
    font-size: .95rem !important;
  }
  .gallery-disclaimer {
    font-size: .5rem;
    letter-spacing: .2em;
    padding: .55rem .85rem;
    max-width: 100%;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding-left: .65rem;
    padding-right: .65rem;
  }
  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/5;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(11) {
    grid-column: span 2;
    aspect-ratio: 16/10;
  }

  /* Werkwijze */
  .section-banner {
    height: 220px;
    margin-bottom: 2.25rem !important;
  }
  .step {
    grid-template-columns: 1fr;
    gap: .75rem;
    padding: 1.75rem 0;
  }
  .step-num {
    font-size: 1.35rem;
    padding-top: 0;
  }
  .step p { max-width: 100%; }

  /* Statement */
  .statement { padding: 3.75rem 0; }
  .statement p {
    font-size: clamp(1.55rem, 8vw, 2rem);
    line-height: 1.28;
    max-width: 14ch;
  }

  /* Testimonials */
  .testimonials-header {
    margin-bottom: 2rem;
  }
  .testimonials-header p {
    margin-top: 1rem;
  }
  .testimonials-grid {
    gap: 1rem;
  }
  .testimonial-card {
    padding: 1.5rem 1.25rem;
    min-height: auto;
  }
  .testimonial-card::before {
    font-size: 4rem;
    right: 1rem;
  }
  .testimonial-card p {
    font-size: 1.02rem;
    line-height: 1.65;
  }
  .testimonial-card span {
    margin-top: 1.25rem;
    font-size: .54rem;
    letter-spacing: .22em;
    line-height: 1.6;
  }

  /* Pakket */
  .pkg-card {
    padding: 2rem 1.15rem;
  }
  .pkg-name {
    font-size: .55rem;
    letter-spacing: .24em;
    line-height: 1.6;
  }
  .pkg-price {
    font-size: clamp(2.6rem, 15vw, 3.4rem);
  }
  .pkg-price small {
    display: block;
    margin: .25rem 0 0;
    font-size: .68rem;
    letter-spacing: .18em;
  }
  .pkg-features {
    max-width: 100%;
    margin-top: 2rem;
  }
  .pkg-features li {
    grid-template-columns: 12px 1fr;
    gap: .7rem;
    font-size: .95rem;
  }
  .pkg-extras {
    font-size: .88rem;
    line-height: 1.75;
  }
  .pkg-cta,
  .btn {
    width: 100%;
    text-align: center;
    font-size: .62rem;
    letter-spacing: .2em;
    padding: 1rem 1rem;
  }
  .pkg-note {
    margin-top: 1.75rem;
    font-size: .85rem;
  }

  /* FAQ */
  .faq-q {
    padding: 1.35rem 0;
    gap: 1rem;
    font-size: 1.05rem;
    line-height: 1.35;
  }
  .faq-a-inner {
    padding-bottom: 1.35rem;
  }

  /* Contact */
  .contact-grid { gap: 2rem; }
  .contact-info .email {
    font-size: 1.05rem;
    max-width: 100%;
  }
  .form {
    padding: 1.35rem;
    gap: 1.25rem;
  }
  .form label {
    font-size: .55rem;
    letter-spacing: .2em;
    line-height: 1.55;
  }
  .form input,
  .form select,
  .form textarea {
    font-size: 1rem;
    padding: .9rem .9rem;
  }
  .form .radio-group {
    gap: .85rem;
  }
  .form .radio-group label {
    align-items: flex-start;
    font-size: .95rem;
    line-height: 1.45;
  }
  .form .radio-group input[type="radio"] {
    margin-top: .18rem;
    flex: 0 0 auto;
  }
  .form-note {
    font-size: .82rem;
    line-height: 1.6;
  }

  /* Footer */
  .site-footer { padding: 2.25rem 0; }
  .footer-grid { gap: 1.35rem; padding-left: 1.15rem; padding-right: 1.15rem; }
  .footer-tagline,
  .footer-links {
    font-size: .52rem;
    letter-spacing: .2em;
    line-height: 1.7;
  }
  .footer-links {
    gap: .9rem 1.1rem;
  }

  /* Lange woorden krijgen géén harde afbreking, maar mogen binnen hun container blijven. */
  h1, h2, h3, p, li, a, span, label, button {
    max-width: 100%;
  }
}

@media (max-width: 360px) {
  .brand { letter-spacing: .22em; }
  .hero-title { font-size: 3.45rem; letter-spacing: .1em; }
  .section-label,
  .footer-tagline,
  .footer-links,
  .testimonial-card span,
  .pkg-name,
  .form label {
    letter-spacing: .16em;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(11) {
    grid-column: auto;
    aspect-ratio: 4/5;
  }
}



/* --- Aanvraag CTA: tussenblok + sticky knop ------------------ */
.mid-cta {
  padding: var(--space-xl) 0;
  background:
    radial-gradient(ellipse at center, rgba(201, 168, 76, .055), transparent 68%),
    var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.mid-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.mid-cta .section-label { margin-bottom: 1.25rem; }
.mid-cta h2 { margin-bottom: 1.25rem; }
.mid-cta p {
  max-width: 56ch;
  margin: 0 auto 2rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.85;
}

.floating-cta {
  position: fixed;
  right: clamp(1rem, 2.4vw, 1.75rem);
  bottom: clamp(1rem, 2.4vw, 1.75rem);
  z-index: 990;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .95rem 1.25rem .85rem;
  border: 1px solid rgba(201, 168, 76, .55);
  border-radius: 999px;
  background: rgba(201, 168, 76, .94);
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: .62rem;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .36);
  backdrop-filter: blur(12px);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.floating-cta:hover,
.floating-cta:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
@media (max-width: 760px) {
  .mid-cta { padding: 4rem 0; }
  .mid-cta-inner { padding-left: 1.15rem; padding-right: 1.15rem; }
  .mid-cta p { font-size: .96rem; line-height: 1.75; }
  .floating-cta {
    right: 1rem;
    bottom: 1rem;
    min-height: 2.75rem;
    padding: .9rem 1rem .78rem;
    font-size: .58rem;
    letter-spacing: .18em;
  }
}


button.btn {
  cursor: pointer;
  border: 0;
  font: inherit;
}
