/* ==========================================================================
   STUDIO VAN DUIJN — Design System 2026
   Brand: warm, chique, no-nonsense. Cormorant Garamond + Jost.
   ========================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Primaire kleuren */
  --c-roze: #b07d72;
  --c-roze-licht: #c9a09a;
  --c-goud: #b8953a;
  --c-goud-licht: #d4b06a;

  /* Neutralen */
  --c-donker: #3a2e28;
  --c-bruin: #6b5a52;
  --c-grijs: #8a7a74;
  --c-sage: #8a9e85;

  /* Achtergronden */
  --c-ivoor: #faf6f0;
  --c-ivoor-diep: #f3ece2;
  --c-beige: #e8ddd4;
  --c-card: #fffdf9;

  /* Semantisch */
  --bg: var(--c-ivoor);
  --bg-alt: var(--c-ivoor-diep);
  --text: var(--c-donker);
  --text-soft: var(--c-bruin);
  --text-mute: var(--c-grijs);
  --border: var(--c-beige);
  --accent: var(--c-roze);
  --accent-2: var(--c-goud);

  /* Typografie */
  --ff-display: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --ff-body: 'Jost', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spacing schaal */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 12rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --container-wide: 1440px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Schaduwen — altijd warm getint */
  --shadow-sm: 0 4px 14px rgba(176, 125, 114, 0.08);
  --shadow-md: 0 8px 30px rgba(58, 46, 40, 0.09);
  --shadow-lg: 0 24px 52px rgba(176, 125, 114, 0.12);
  --shadow-xl: 0 32px 80px rgba(58, 46, 40, 0.18);
  --shadow-btn: 0 8px 24px rgba(184, 149, 58, 0.32);

  /* Transities */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 220ms var(--ease);
  --t-med: 480ms var(--ease);
  --t-slow: 900ms var(--ease);
}

/* ---------- 2. RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

body {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtiele warme grain overlay voor 'duur' gevoel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.23 0 0 0 0 0.18 0 0 0 0 0.16 0 0 0 0.12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--c-roze);
  color: var(--c-ivoor);
}

/* ---------- 3. TYPOGRAFIE ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: 0;
  font-feature-settings: "kern" 1, "liga" 1;
}

.h1,
h1 {
  font-size: clamp(3rem, 2rem + 5vw, 6.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.005em;
}

.h2,
h2 {
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.5rem);
  letter-spacing: 0;
  line-height: 1.1;
}

.h3,
h3 {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.h4,
h4 {
  font-size: 1.15rem;
  letter-spacing: 0;
}

em,
.italic {
  font-style: italic;
  font-family: var(--ff-display);
  color: var(--c-roze);
}

p {
  max-width: 62ch;
}

p + p {
  margin-top: 1em;
}

.lead {
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
  line-height: 1.6;
  color: var(--text-soft);
  font-weight: 300;
  max-width: 56ch;
}

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-goud);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--c-goud);
}

.muted {
  color: var(--text-mute);
  font-size: 0.85rem;
}

.sparkle {
  color: var(--c-goud);
  font-size: 0.85em;
  display: inline-block;
}

/* ---------- 4. LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.container-narrow { max-width: var(--container-narrow); }
.container-wide   { max-width: var(--container-wide); }

section {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.section-tight { padding: clamp(3rem, 5vw, 5rem) 0; }

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

.section-dark {
  background: var(--c-donker);
  color: var(--c-ivoor);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--c-ivoor); }

.section-dark .lead { color: rgba(250, 246, 240, 0.78); }
.section-dark .eyebrow { color: var(--c-goud-licht); }
.section-dark .eyebrow::before { background: var(--c-goud-licht); }

/* Section header — eyebrow + title + tagline pattern */
.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 760px;
}

.section-head .eyebrow { margin-bottom: 1.2rem; }
.section-head h2 + .lead { margin-top: 1.2rem; }

/* ---------- 5. BUTTONS ---------- */
.btn {
  --btn-bg: var(--c-goud);
  --btn-fg: var(--c-ivoor);
  --btn-bg-hover: #a78531;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform var(--t-fast), background var(--t-fast),
    box-shadow var(--t-fast);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn:hover {
  background: var(--btn-bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.btn:active { transform: translateY(0); }

.btn .arrow {
  transition: transform var(--t-fast);
  display: inline-block;
}

.btn:hover .arrow { transform: translateX(4px); }

.btn--dark {
  --btn-bg: var(--c-donker);
  --btn-fg: var(--c-ivoor);
  --btn-bg-hover: #2a201c;
}

.btn--roze {
  --btn-bg: var(--c-roze);
  --btn-fg: var(--c-ivoor);
  --btn-bg-hover: #9a6a60;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  background: var(--text);
  color: var(--c-ivoor);
  border-color: var(--text);
  box-shadow: none;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  padding: 0.5rem 0;
  border-radius: 0;
}

.btn--ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right center;
  transition: transform 600ms var(--ease);
}

.btn--ghost:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

.btn--ghost:hover::after {
  transform-origin: left center;
  transform: scaleX(1.05);
}

.btn--lg {
  padding: 1.15rem 2.1rem;
  font-size: 1rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

/* ---------- 6. NAVIGATIE ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background var(--t-fast), backdrop-filter var(--t-fast),
    box-shadow var(--t-fast), padding var(--t-fast);
}

.nav.is-scrolled {
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(58, 46, 40, 0.06);
  padding: 0.7rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-donker);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand .sparkle { color: var(--c-goud); }

.nav__menu {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text);
  position: relative;
  padding: 0.4rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--c-roze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med);
}

.nav__link:hover::after,
.nav__link[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  font-size: 0.82rem;
  padding: 0.7rem 1.3rem;
}

.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  position: relative;
}

.nav__toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--t-fast), opacity var(--t-fast), top var(--t-fast);
}

.nav__toggle span:nth-child(1) { top: 13px; }
.nav__toggle span:nth-child(2) { top: 24px; }

.nav.is-open .nav__toggle span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
.nav.is-open .nav__toggle span:nth-child(2) {
  top: 18px;
  transform: rotate(-45deg);
}

@media (max-width: 880px) {
  .nav__menu {
    position: fixed;
    inset: 0;
    background: var(--c-ivoor);
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    transform: translateY(-100%);
    transition: transform 600ms var(--ease);
    padding: 4rem 2rem 2rem;
  }
  .nav.is-open .nav__menu { transform: translateY(0); }
  .nav__link { font-size: 1.4rem; font-family: var(--ff-display); }
  .nav__toggle { display: block; z-index: 101; }
  .nav__cta { font-size: 0.95rem; padding: 0.9rem 1.6rem; margin-top: 1rem; }
}

/* ---------- 7. HERO ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(7rem, 14vh, 9rem) 0 clamp(4rem, 8vh, 6rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-ivoor) 0%, var(--c-ivoor-diep) 100%);
}

.hero__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: 1.15fr 1fr;
    gap: 5rem;
  }
}

.hero__content { position: relative; z-index: 3; }

.hero__title {
  font-size: clamp(2.6rem, 1.6rem + 5.5vw, 7rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin-bottom: 1.5rem;
  font-feature-settings: "kern" 1, "liga" 1;
}

.hero__title .word {
  display: block;
  overflow: hidden;
  line-height: 1.05;
  padding: 0.04em 0.04em 0.08em 0;
}

.hero__title .word > span {
  display: inline-block;
  transform: translateY(105%);
  animation: rise 1.1s var(--ease) forwards;
}

.hero__title .word:nth-child(1) > span { animation-delay: 0.05s; }
.hero__title .word:nth-child(2) > span { animation-delay: 0.18s; }
.hero__title .word:nth-child(3) > span { animation-delay: 0.31s; }

.hero__title em {
  font-weight: 400;
  color: var(--c-roze);
  font-style: italic;
}

@keyframes rise {
  to { transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  color: var(--text-soft);
  max-width: 48ch;
  margin: 1.4rem 0 2.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}

.hero__cta {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}

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

/* Hero visual: gradient circle + lijnen */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin-inline: auto;
  width: 100%;
}

.hero__orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%,
      rgba(176, 125, 114, 0.55),
      rgba(176, 125, 114, 0.2) 40%,
      transparent 70%),
    radial-gradient(circle at 70% 75%,
      rgba(184, 149, 58, 0.32),
      transparent 55%),
    linear-gradient(135deg, #ddc6bd 0%, #c9a09a 50%, #b07d72 100%);
  filter: blur(0px);
  animation: orb 16s ease-in-out infinite;
  box-shadow: var(--shadow-xl);
}

.hero__orb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.85;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero__ring {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px solid rgba(184, 149, 58, 0.45);
  animation: spin 60s linear infinite;
}

.hero__ring--2 {
  inset: -18%;
  border-color: rgba(176, 125, 114, 0.25);
  animation-direction: reverse;
  animation-duration: 100s;
}

.hero__star {
  position: absolute;
  color: var(--c-goud);
  font-size: 1.5rem;
  animation: twinkle 3s ease-in-out infinite;
}

.hero__star--1 { top: 10%; right: 8%; animation-delay: 0s; }
.hero__star--2 { top: 60%; left: 4%; animation-delay: 1.2s; font-size: 1rem; }
.hero__star--3 { bottom: 12%; right: 22%; animation-delay: 2.4s; font-size: 1.2rem; }

@keyframes orb {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.04) rotate(8deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
  margin-top: 3rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.1s forwards;
}

/* ---------- 8. MARQUEE ---------- */
.marquee {
  background: var(--c-donker);
  color: var(--c-ivoor);
  overflow: hidden;
  padding: 1.5rem 0;
  border-block: 1px solid rgba(184, 149, 58, 0.2);
}

.marquee__track {
  display: flex;
  gap: 3rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee__item {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 2rem);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  color: var(--c-ivoor);
}

.marquee__item .sparkle { color: var(--c-goud-licht); }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

/* ---------- 9. CARDS ---------- */
.card {
  background: var(--c-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 2vw, 2.2rem);
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med),
    border-color var(--t-med);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(176, 125, 114, 0.35);
}

.card__num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-goud);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}

.card__title {
  margin-bottom: 0.9rem;
}

.card__desc {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
  flex: 1;
}

.card__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.card__list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.card__list li::before {
  content: '✦';
  color: var(--c-goud);
  flex-shrink: 0;
}

.card__more {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  align-self: flex-start;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--c-roze);
  transition: gap var(--t-fast), color var(--t-fast);
}

.card__more:hover { gap: 0.7rem; color: var(--c-roze); }

.card--dark {
  background: var(--c-donker);
  color: var(--c-ivoor);
  border-color: rgba(184, 149, 58, 0.25);
}

.card--dark .card__title { color: var(--c-ivoor); }
.card--dark .card__desc,
.card--dark .card__list { color: rgba(250, 246, 240, 0.72); }
.card--dark .card__more { color: var(--c-ivoor); }

/* Feature card — full width spotlight binnen dienstengrid */
.card--feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(176, 125, 114, 0.32), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(184, 149, 58, 0.18), transparent 50%),
    linear-gradient(135deg, #3a2e28 0%, #4a3830 60%, #3a2e28 100%);
  color: var(--c-ivoor);
  border-color: rgba(184, 149, 58, 0.35);
  position: relative;
  overflow: hidden;
}

.card--feature::before {
  content: '✦';
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  color: var(--c-goud-licht);
  opacity: 0.45;
  font-size: 1.6rem;
  animation: twinkle 3s ease-in-out infinite;
}

.card--feature .card__num {
  color: var(--c-goud-licht);
  font-family: var(--ff-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.card--feature .card__title {
  color: var(--c-ivoor);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.card--feature .card__desc {
  color: rgba(250, 246, 240, 0.78);
  font-size: 1rem;
}

.card--feature .card__list {
  color: rgba(250, 246, 240, 0.78);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.card--feature .card__list li::before { color: var(--c-goud-licht); }

.card--feature .card__more {
  color: var(--c-goud-licht);
  border-bottom-color: var(--c-goud-licht);
  margin-top: 0.5rem;
}

.card--feature:hover { transform: translateY(-3px); }

@media (max-width: 720px) {
  .card--feature { grid-template-columns: 1fr; }
}

/* Grid layouts */
.grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- 10. PROCES STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--c-card);
  padding: 2rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

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

.step__num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--c-roze);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.step__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ---------- 11. PAKKETTEN ---------- */
.packages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1100px) { .packages { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .packages { grid-template-columns: 1fr; } }

.pkg {
  position: relative;
  background: var(--c-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pkg--featured {
  background: var(--c-donker);
  color: var(--c-ivoor);
  border-color: var(--c-goud);
  transform: translateY(-8px);
}

.pkg--featured:hover { transform: translateY(-14px); }

.pkg__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-goud);
  color: var(--c-ivoor);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.pkg__name {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-goud);
  margin-bottom: 0.6rem;
}

.pkg--featured .pkg__name { color: var(--c-goud-licht); }

.pkg__title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.pkg__for {
  font-size: 0.82rem;
  color: var(--text-mute);
  margin-bottom: 1.4rem;
  font-style: italic;
}

.pkg--featured .pkg__for { color: rgba(250, 246, 240, 0.62); }

.pkg__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 1rem 0;
  border-block: 1px solid var(--border);
  margin-bottom: 1.4rem;
}

.pkg--featured .pkg__price { border-color: rgba(250, 246, 240, 0.14); }

.pkg__price-from {
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}

.pkg--featured .pkg__price-from { color: rgba(250, 246, 240, 0.6); }

.pkg__price-amount {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--c-roze);
  letter-spacing: -0.01em;
  line-height: 1;
}

.pkg--featured .pkg__price-amount { color: var(--c-goud-licht); }

.pkg__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 1.8rem;
}

.pkg--featured .pkg__list { color: rgba(250, 246, 240, 0.78); }

.pkg__list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.pkg__list li::before {
  content: '✓';
  color: var(--c-goud);
  font-weight: 600;
}

.pkg .btn { width: 100%; margin-top: auto; }

/* ---------- 12. TARIEVEN TABEL ---------- */
.rates {
  background: var(--c-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.rates__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  align-items: center;
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  transition: background var(--t-fast);
}

.rates__row:last-child { border-bottom: 0; }

.rates__row:not(.rates__row--head):hover {
  background: var(--bg-alt);
}

.rates__row--head {
  background: var(--c-donker);
  color: var(--c-ivoor);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.rates__row--head:hover { background: var(--c-donker); }

.rates__service {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.rates__price {
  color: var(--c-roze);
  font-weight: 500;
}

.rates__cond {
  color: var(--text-mute);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .rates__row { grid-template-columns: 1fr; gap: 0.3rem; padding: 1.4rem 1.2rem; }
  .rates__row--head { display: none; }
}

/* ---------- 13. FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 880px;
  margin-inline: auto;
}

.faq__item {
  background: var(--c-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.faq__item[open] {
  border-color: rgba(176, 125, 114, 0.35);
  box-shadow: var(--shadow-sm);
}

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  cursor: pointer;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  list-style: none;
  user-select: none;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '+';
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--c-roze);
  transition: transform var(--t-med);
  flex-shrink: 0;
}

.faq__item[open] .faq__q::after { transform: rotate(45deg); }

.faq__a {
  padding: 0 1.6rem 1.4rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq__a p + p { margin-top: 0.7rem; }

/* ---------- 14. CONTACT / CTA ---------- */
.cta {
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(176, 125, 114, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 149, 58, 0.12), transparent 55%),
    var(--c-donker);
  color: var(--c-ivoor);
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 125, 114, 0.2), transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(40px);
}

.cta h2 {
  color: var(--c-ivoor);
  font-size: clamp(2.4rem, 1.6rem + 4vw, 5rem);
  margin-bottom: 1.4rem;
  position: relative;
}

.cta__sub {
  color: rgba(250, 246, 240, 0.78);
  font-size: 1.1rem;
  margin: 0 auto 2.5rem;
  max-width: 52ch;
  position: relative;
}

.cta .btn-row { justify-content: center; position: relative; }

.cta__contact {
  margin-top: 3rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.6);
  position: relative;
}

.cta__contact a {
  color: var(--c-goud-licht);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.cta__contact a:hover { color: var(--c-ivoor); }

/* Contactformulier */
.form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

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

.form__field { display: flex; flex-direction: column; gap: 0.4rem; }

.form__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.7);
  font-weight: 500;
}

.form__input,
.form__textarea {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  background: rgba(250, 246, 240, 0.06);
  border: 1px solid rgba(250, 246, 240, 0.18);
  color: var(--c-ivoor);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--c-goud);
  background: rgba(250, 246, 240, 0.1);
}

.form__textarea { min-height: 130px; resize: vertical; }

/* ---------- 15. FOOTER ---------- */
.footer {
  background: #2a201c;
  color: rgba(250, 246, 240, 0.7);
  padding: 5rem 0 2rem;
  font-size: 0.88rem;
}

.footer a { color: rgba(250, 246, 240, 0.7); }
.footer a:hover { color: var(--c-ivoor); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ivoor);
  margin-bottom: 1rem;
}

.footer__about {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(250, 246, 240, 0.78);
  max-width: 32ch;
}

.footer__heading {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-goud-licht);
  margin-bottom: 1rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(250, 246, 240, 0.5);
}

/* ---------- 16. STAT BADGES / VOORDELEN ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 880px) { .values { grid-template-columns: 1fr; gap: 1.5rem; } }

.value {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  border-left: 1px solid var(--border);
}

.value__title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.value__text {
  font-size: 0.92rem;
  color: var(--text-soft);
  max-width: 38ch;
}

.value__icon {
  color: var(--c-goud);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  display: block;
}

/* ---------- 17. ABOUT / PERSONAL SECTION ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

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

.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(176, 125, 114, 0.45), transparent 60%),
    linear-gradient(135deg, var(--c-roze-licht), var(--c-roze) 100%);
  box-shadow: var(--shadow-lg);
}

.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 1.2s var(--ease);
}

.about:hover .about__visual img {
  transform: scale(1.03);
}

.about__visual::after {
  content: '✦';
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  color: var(--c-goud);
  opacity: 0.85;
  text-shadow: 0 2px 8px rgba(58, 46, 40, 0.4);
  z-index: 2;
  pointer-events: none;
}

/* Decoratief frame om de foto */
.about__visual::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(250, 246, 240, 0.45);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
  z-index: 1;
}

.about__quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1.5rem;
  max-width: 32ch;
}

.about__quote::before {
  content: '"';
  color: var(--c-roze);
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.25em;
  margin-right: 0.1em;
}

.about__text { color: var(--text-soft); margin-bottom: 1.5rem; }

/* ---------- 18. SCROLL REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay='1'].is-visible { transition-delay: 0.1s; }
[data-reveal-delay='2'].is-visible { transition-delay: 0.2s; }
[data-reveal-delay='3'].is-visible { transition-delay: 0.3s; }
[data-reveal-delay='4'].is-visible { transition-delay: 0.4s; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-roze), var(--c-goud));
  width: 0;
  z-index: 200;
  transform-origin: left;
  transition: width 0.05s linear;
}

/* ---------- 19. SUB-PAGE HERO (smaller, contextual) ---------- */
.page-hero {
  padding: 11rem 0 5rem;
  background: linear-gradient(180deg, var(--c-ivoor) 0%, var(--c-ivoor-diep) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero__crumbs {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.5rem;
}

.page-hero__crumbs a:hover { color: var(--c-roze); }
.page-hero__crumbs span { color: var(--text); margin: 0 0.5rem; }

.page-hero h1 {
  font-size: clamp(2.8rem, 2rem + 4vw, 5.5rem);
  margin-bottom: 1.4rem;
  max-width: 14ch;
}

/* ---------- 20. UTILITIES ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-1 { margin-top: var(--s-4); }
.mt-2 { margin-top: var(--s-6); }
.mt-3 { margin-top: var(--s-8); }
.mb-1 { margin-bottom: var(--s-4); }
.mb-2 { margin-bottom: var(--s-6); }
.mb-3 { margin-bottom: var(--s-8); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-2 { gap: var(--s-2); }
.gap-4 { gap: var(--s-4); }
.gap-6 { gap: var(--s-6); }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

.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;
}

/* ---------- 21. SCROLL-TO-TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--c-donker);
  color: var(--c-ivoor);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--t-med), transform var(--t-med), background var(--t-fast);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184, 149, 58, 0.25);
  cursor: pointer;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--c-goud);
  border-color: var(--c-goud);
}

/* ---------- 22. FOCUS STATES (accessibility) ---------- */
:focus-visible {
  outline: 2px solid var(--c-goud);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline-offset: 4px;
}

.nav__link:focus-visible,
.card__more:focus-visible {
  outline-color: var(--c-roze);
}

/* ---------- 23. FORM VALIDATIE ---------- */
.form__input[aria-invalid="true"],
.form__textarea[aria-invalid="true"] {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.06);
}

.form__error {
  font-size: 0.72rem;
  color: #e74c3c;
  margin-top: 0.25rem;
  display: block;
  letter-spacing: 0.02em;
}

/* ---------- 24. PAGE HERO ORNAMENT ---------- */
.page-hero::after {
  content: '✦';
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 5vw, 4rem);
  color: var(--c-goud);
  opacity: 0.2;
  font-size: 4rem;
  pointer-events: none;
  line-height: 1;
}

/* ---------- 25. VERFIJNINGEN STIJLBOEK ---------- */

/* Subtielere eyebrow-lijn, geïnspireerd op stijlboek */
.eyebrow::before {
  width: 20px;
  background: linear-gradient(90deg, var(--c-goud), transparent);
  opacity: 0.8;
}

/* Image loading placeholder */
img {
  background: var(--c-beige);
}

/* Pakketten vergelijking CTA link */
.pkg a.btn--outline:hover {
  box-shadow: none;
}

/* Card list icoontje iets warmer */
.card__list li::before,
.pkg__list li::before {
  line-height: 1.7;
}

/* Tarieven tabel — hover highlight zachter */
.rates__row:not(.rates__row--head):hover {
  background: var(--c-ivoor-diep);
}

/* Footer about tekst iets warmer uitlijnen */
.footer__about {
  margin-top: 0.6rem;
}

/* Portret frame verfijning */
.about__visual::before {
  inset: 10px;
  border-color: rgba(250, 246, 240, 0.35);
}

/* Print stijlen — verberg animaties */
@media print {
  .nav, .scroll-progress, .scroll-top, .hero__visual { display: none !important; }
  .hero { min-height: auto; padding: 2rem 0; }
  body::before { display: none; }
}
