/* --------------------------------------------------------------------------
   sitevoorondernemers.com: marketing site
   -------------------------------------------------------------------------- */

:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --ink: #0d0d0d;
  --muted: #5c5c5c;
  --line: rgba(15, 15, 15, 0.08);
  --accent: #1a1a1a;
  --wash: rgba(255, 255, 255, 0.82);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 24px 48px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

@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 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus {
  left: 12px;
}

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

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
}

.center {
  text-align: center;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.site-header[data-scrolled="true"] {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.logo {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  color: var(--ink);
  display: inline-block;
  text-decoration: none;
}

.nav {
  display: none;
  gap: 28px;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (min-width: 840px) {
  .nav {
    display: flex;
  }
}

.nav a {
  position: relative;
  padding-block: 4px;
  transition: color 0.25s var(--ease-out);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav a:hover {
  color: var(--ink);
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header CTA: gedeelde “pill”; menutoggle gebruikt geen --inquiry */
.header__cta {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background-color 0.25s var(--ease-out);
}

/* Contact + WhatsApp: leesbaar, nette proporties */
.header__cta--inquiry,
.header__cta--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  padding: 0.55rem 1.15rem;
  min-height: 2.5rem;
  text-decoration: none;
}

.header__cta--inquiry {
  white-space: nowrap;
}

.header__cta:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 15, 15, 0.12);
  background-color: #fbfbfb;
  box-shadow: var(--shadow-md);
}

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

button.header__cta {
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.header__cta-wa-icon {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  color: #25d366;
}

/* Mobiel: Plan een gesprek opent dropdown met zelfde links als desktop */
.header__cta--desktop {
  display: none;
}

.header__mob {
  position: relative;
  flex-shrink: 0;
}

.header__mob-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.45rem;
}

.header__dropdown-icon {
  display: block;
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.2s var(--ease-out);
}

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

.header__mob-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(320px, calc(100vw - 32px));
  padding: 0.65rem;
  background: rgba(252, 252, 252, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.header__mob-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.header__mob-nav a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s var(--ease-out);
}

.header__mob-nav a:hover {
  background: rgba(0, 0, 0, 0.045);
}

.header__mob-inquiry {
  display: flex;
  width: 100%;
  margin-top: 0.5rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  justify-content: center;
  box-sizing: border-box;
}

@media (min-width: 840px) {
  .header__mob {
    display: none;
  }

  .header__cta--desktop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  overflow: clip;
  background: #f3f3f5;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 48%;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.hero__shell {
  position: relative;
  z-index: 2;
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 400px);
  gap: clamp(1.5rem, 4.5vw, 3.25rem);
  align-items: center;
  padding-block: clamp(3.5rem, 11vh, 5.5rem);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  /* Tekst duidelijk naar rechts t.o.v. de grid-kolom (ook op mobiel, geen margin-reset meer) */
  padding-inline-start: clamp(1.25rem, 4.5vw, 3rem);
  padding-right: 0.25rem;
}

.hero .eyebrow {
  font-size: 0.84rem;
  letter-spacing: 0.17em;
  margin-bottom: 1.05rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.9vw, 4.75rem);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0 0 1.35rem;
}

.hero__title-accent-mark {
  /* Zelfde tint als .moodboard__tile--1; tekent L→R na reveal */
  text-decoration: none;
  background-image: linear-gradient(#d4cdc3, #d4cdc3);
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 20px);
  background-size: 0% 1.5px;
  padding-bottom: calc(0.03em + 6px);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: background-size 0.75s var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0s) + 0.28s);
}

.hero__lead {
  font-size: clamp(1.14rem, 2.2vw, 1.42rem);
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 34rem;
}

.hero__moodboard {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}

/* Hero-collage: strak, neutraal (geen zachte pastel‑blobs) */
.hero-moodboard-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  aspect-ratio: 1 / 1.12;
  padding: clamp(0.65rem, 2.5vw, 1rem) clamp(0.55rem, 2vw, 0.85rem) clamp(0.75rem, 2.5vw, 1rem);
  background: transparent;
  background-image: linear-gradient(
    90deg,
    rgba(62, 72, 78, 0.42),
    rgba(62, 72, 78, 0.42)
  );
  background-size: 2px 72%;
  background-position: 0.35rem 50%;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  isolation: isolate;
  transition: transform 0.45s var(--ease-out), filter 0.45s var(--ease-out);
}

.hero__moodboard:hover .hero-moodboard-wrap {
  transform: translateY(-4px);
  filter: drop-shadow(0 20px 34px rgba(25, 22, 18, 0.1));
}

.hero-mb {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.hero-mb__blob {
  position: absolute;
  z-index: 0;
  opacity: 0.92;
}
.hero-mb__blob--a {
  width: 54%;
  height: 38%;
  left: -3%;
  bottom: 10%;
  background: linear-gradient(135deg, #c8c5c0 0%, #9c9893 72%, #7a7672 100%);
  border-radius: 10px 10px 14px 8px;
  transform: rotate(-3deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.hero-mb__blob--b {
  width: 44%;
  height: 36%;
  right: -5%;
  top: 6%;
  background: linear-gradient(165deg, #e2e6e8 0%, #b9c2c6 55%, #8e9a9f 100%);
  border-radius: 8px 12px 10px 10px;
  transform: rotate(5deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.hero-mb__blob--c {
  width: 34%;
  height: 22%;
  left: 30%;
  top: 2%;
  background: linear-gradient(180deg, #3d4246 0%, #2a2e31 100%);
  border-radius: 6px;
  transform: rotate(-2deg);
  opacity: 0.94;
}

.hero-mb__mesh {
  position: absolute;
  inset: 14% 10% 20% 10%;
  z-index: 1;
  border-radius: 10px;
  border: 1px dashed rgba(45, 48, 50, 0.08);
  pointer-events: none;
}

.hero-mb__photo {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 62%;
  aspect-ratio: 1 / 1;
  margin: 0;
  z-index: 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 16px 36px rgba(18, 20, 22, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.28);
}

.hero-mb__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 42%;
  display: block;
  filter: saturate(0.92) contrast(1.06);
}

.hero-mb__chips {
  position: absolute;
  right: 5%;
  top: 24%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  transform: rotate(3deg);
}
.hero-mb__chip {
  width: 2.45rem;
  height: 0.48rem;
  border-radius: 3px;
  background: linear-gradient(90deg, #6b5344, #8a6b56);
  box-shadow: 0 2px 8px rgba(28, 24, 22, 0.18);
}
.hero-mb__chip--mid {
  width: 2rem;
  background: linear-gradient(90deg, #d8d4cf, #b0aca6);
}
.hero-mb__chip--dark {
  width: 2.2rem;
  background: linear-gradient(90deg, #2a2d30, #1a1c1e);
}

.hero-mb__notes {
  position: absolute;
  left: 9%;
  top: 20%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: rotate(-2deg);
}
.hero-mb__scribble {
  display: block;
  height: 2px;
  width: 2.35rem;
  border-radius: 0;
  background: rgba(35, 38, 40, 0.42);
}
.hero-mb__scribble--short {
  width: 1.45rem;
  opacity: 0.88;
}

.hero-mb__sticker {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%) rotate(0deg);
  z-index: 5;
  margin: 0;
  padding: 0.3rem 0.55rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(38, 40, 42, 0.88);
  background: rgba(248, 248, 248, 0.94);
  border: 1px solid rgba(55, 60, 65, 0.2);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(18, 20, 22, 0.08);
  font-family: inherit;
}

.hero-mb__tape {
  position: absolute;
  height: 14px;
  border-radius: 1px;
  z-index: 5;
  opacity: 0.88;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.hero-mb__tape--l {
  width: 30%;
  left: 14%;
  top: 7%;
  transform: rotate(-7deg);
  background: linear-gradient(90deg, rgba(210, 210, 210, 0.92), rgba(185, 185, 185, 0.75));
}
.hero-mb__tape--r {
  width: 26%;
  right: 12%;
  bottom: 30%;
  transform: rotate(10deg);
  background: linear-gradient(90deg, rgba(175, 175, 175, 0.85), rgba(210, 210, 210, 0.6));
}

.hero-mb__pin {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  z-index: 6;
  background: radial-gradient(circle at 32% 28%, #e8e8e8, #909090 48%, #4a4a4a 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22), inset 0 -1px 1px rgba(0, 0, 0, 0.25);
}
.hero-mb__pin--1 {
  right: 18%;
  top: 10%;
}
.hero-mb__pin--2 {
  left: 22%;
  bottom: 22%;
}

@media (max-width: 960px) {
  .hero__shell {
    grid-template-columns: 1fr;
    width: min(1140px, calc(100% - 32px));
    gap: 2.25rem;
    padding-block: clamp(3rem, 8vh, 4.5rem);
  }

  .hero__content {
    max-width: none;
    text-align: left;
    order: 0;
  }

  .hero__moodboard {
    justify-self: center;
    max-width: 300px;
    order: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__moodboard:hover .hero-moodboard-wrap {
    transform: none;
    filter: none;
  }

  .hero__title-accent-mark {
    background-size: 100% 1.5px;
    transition: none;
    transition-delay: 0s;
  }
}

.hero__title.reveal.is-visible .hero__title-accent-mark {
  background-size: 100% 1.5px;
}

.hero__title-accent {
  font-style: italic;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    background 0.25s var(--ease-out), border-color 0.25s var(--ease-out),
    color 0.25s var(--ease-out);
}

button.btn {
  font: inherit;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(15, 15, 15, 0.12);
  color: var(--ink);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 15, 15, 0.2);
  background: #fff;
}

.btn--subtle {
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  background: transparent;
  border-color: rgba(15, 15, 15, 0.08);
  color: var(--muted);
  box-shadow: none;
  backdrop-filter: none;
}

.btn--subtle:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 15, 15, 0.15);
  color: var(--ink);
  background: rgba(15, 15, 15, 0.035);
}

.btn--block {
  width: 100%;
}

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

/* Drie hoofdstappen — volle secties, grote koppen + eigen beeld */
.step-section {
  position: relative;
  padding: clamp(4.5rem, 14vw, 10rem) 0;
  overflow: clip;
}

.step-section--paper {
  background-color: #fffefc;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(1cm - 1px),
    rgba(15, 15, 15, 0.045) calc(1cm - 1px),
    rgba(15, 15, 15, 0.045) 1cm
  );
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step-section--reverse {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step-section--muted {
  background: #f3f3f5;
  border-top: 1px solid var(--line);
}

.step-section__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

.step-section__text {
  order: 1;
}

.step-section__visual {
  order: 2;
}

@media (min-width: 960px) {
  .step-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(3rem, 7vw, 5.5rem);
  }

  /* Meer ruimte voor de kop; rechterkolom blijft op dezelfde plek in het grid */
  .step-section--paper .step-section__grid {
    grid-template-columns: minmax(0, 1.32fr) minmax(0, 0.68fr);
  }

  .step-section--reverse .step-section__text {
    order: 2;
  }

  .step-section--reverse .step-section__visual {
    order: 1;
  }
}

.step-section__index {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.step-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.85rem, 9vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
}

@media (min-width: 960px) {
  .step-section__title-line {
    white-space: nowrap;
  }
}

.step-section__intro {
  margin: 0 0 1.35rem;
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 36ch;
}

.step-section__intro + .step-section__intro {
  margin-top: -0.5rem;
}

.step-section__label {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.step-section__list {
  margin: 0 0 1.35rem;
  padding: 0 0 0 1.2rem;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 42ch;
}

.step-section__list li {
  margin-bottom: 0.45rem;
}

.step-section__list li:last-child {
  margin-bottom: 0;
}

.step-section__text-footer {
  margin: 0.65rem 0 0;
}

.step-section__kort {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 40ch;
}

.step-section--paper .step-section__kort,
.step-section--paper .step-section__why {
  border-color: rgba(15, 15, 15, 0.1);
}

.step-section__kort-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.step-section__why {
  margin: 1.35rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 44ch;
}

.step-section__why-label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.step-section__why-line span[aria-hidden="true"] {
  margin-right: 0.35rem;
  color: var(--ink);
  font-weight: 600;
}

/* --- Beeld: waarom ons (eigen verhaal, drie pijlers) --- */
.step-positioning {
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}

.step-positioning__surface {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: clamp(1.2rem, 3vw, 1.55rem);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.step-section__visual:hover .step-positioning__surface {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 24px 48px rgba(0, 0, 0, 0.08);
}

.step-positioning__top {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.step-positioning__browser {
  flex: 1;
  min-width: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fafafa;
}

.step-positioning__chrome {
  display: flex;
  gap: 5px;
  padding: 8px 10px;
  background: #ededef;
  border-bottom: 1px solid var(--line);
}

.step-positioning__chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8c8cc;
}

.step-positioning__chrome span:nth-child(1) {
  background: #d8a8a0;
}
.step-positioning__chrome span:nth-child(2) {
  background: #d4c27a;
}
.step-positioning__chrome span:nth-child(3) {
  background: #8bc4a3;
}

.step-positioning__viewport {
  padding: 0.95rem 1rem 1.1rem;
}

.step-positioning__hero {
  height: 52px;
  border-radius: 6px;
  background: linear-gradient(118deg, rgba(15, 15, 15, 0.07) 0%, rgba(15, 15, 15, 0.03) 100%);
  margin-bottom: 0.65rem;
}

.step-positioning__line {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: rgba(15, 15, 15, 0.06);
  width: 100%;
  margin-bottom: 0.45rem;
}

.step-positioning__line--short {
  width: 58%;
}

.step-positioning__timer {
  flex-shrink: 0;
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  margin-top: 0.35rem;
}

.step-positioning__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1rem;
}

.step-positioning__tags span {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0.48rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}

.step-positioning__map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 1rem;
}

.step-positioning__cell {
  min-height: 72px;
  border-radius: 8px;
  border: 1px dashed rgba(15, 15, 15, 0.11);
  background: rgba(250, 250, 250, 0.95);
}

.step-positioning__cell--you {
  border: 1px solid rgba(15, 15, 15, 0.28);
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.step-positioning__audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step-positioning__pill {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.step-positioning__pill--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px dashed var(--line);
}

@media (max-width: 520px) {
  .step-positioning__timer {
    font-size: 0.56rem;
    padding: 0.42rem 0.45rem;
  }

  .step-positioning__cell {
    min-height: 58px;
  }
}

/* --- Beeld: moodboard op het sectie-schrift (.step-section--paper) --- */
.step-paper-page {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  aspect-ratio: 5 / 6;
  padding: clamp(0.75rem, 3vw, 1.15rem) clamp(0.65rem, 2.5vw, 1rem) clamp(0.85rem, 3vw, 1.25rem)
    clamp(0.85rem, 3vw, 1.15rem);
  background: transparent;
  background-image: linear-gradient(
    90deg,
    rgba(200, 95, 88, 0.28),
    rgba(200, 95, 88, 0.28)
  );
  background-size: 2px 76%;
  background-position: 1.75rem 50%;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.step-paper-page--branding {
  transition: transform 0.45s var(--ease-out), filter 0.45s var(--ease-out);
}

.step-section__visual:hover .step-paper-page--branding {
  transform: translateY(-4px);
  filter: drop-shadow(0 20px 34px rgba(25, 22, 18, 0.1));
}

.step-moodboard {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  --mb-beige: #d6c8bd;
  --mb-cream: #f0e7de;
  --mb-teal: #18454c;
  --mb-gold: #c49a6b;
}

.step-moodboard figure {
  margin: 0;
}

/* Één moodboard: strak uitgelijnd, geen animatie of kanteling */
.step-moodboard__photo {
  position: absolute;
  left: 0;
  top: 7%;
  width: 62%;
  height: 54%;
  margin: 0;
  z-index: 3;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(24, 69, 76, 0.12), 0 5px 14px rgba(0, 0, 0, 0.07),
    0 0 0 1px rgba(24, 69, 76, 0.07);
}

.step-moodboard__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(0.97) contrast(1.02);
}

.step-moodboard__ribbed {
  position: absolute;
  left: 0;
  top: 20%;
  width: 12%;
  height: 50%;
  z-index: 1;
  border-radius: 4px;
  background-color: #faf7f1;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 5px,
    rgba(24, 69, 76, 0.055) 5px,
    rgba(24, 69, 76, 0.055) 6px
  );
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.step-moodboard__teal-stack {
  position: absolute;
  right: 4%;
  top: 4%;
  width: 38%;
  height: 34%;
  z-index: 2;
  pointer-events: none;
}

.step-moodboard__teal-stack span {
  position: absolute;
  display: block;
  border-radius: 2px;
  background: var(--mb-teal);
  box-shadow: 0 12px 26px rgba(24, 69, 76, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.step-moodboard__teal-stack span:first-child {
  inset: 14% 4% 0 0;
}

.step-moodboard__teal-stack span:last-child {
  inset: 0 0 16% 12%;
  opacity: 0.9;
}

.step-moodboard__loose-colors {
  position: absolute;
  right: 0;
  bottom: 5%;
  width: 48%;
  height: 42%;
  z-index: 4;
  pointer-events: none;
}

.step-moodboard__paint {
  position: absolute;
  display: block;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.11), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Palet als strakke rechthoeken */
.step-moodboard__paint--1 {
  width: 44%;
  height: 21%;
  left: 4%;
  bottom: 52%;
  background: var(--mb-beige);
  border-radius: 4px;
}

.step-moodboard__paint--2 {
  width: 40%;
  height: 27%;
  right: 2%;
  bottom: 56%;
  background: var(--mb-cream);
  border-radius: 4px;
}

.step-moodboard__paint--3 {
  width: 38%;
  height: 25%;
  left: 0;
  bottom: 14%;
  background: linear-gradient(150deg, #1a4f57 0%, var(--mb-teal) 55%);
  border-radius: 4px;
}

.step-moodboard__paint--4 {
  width: 48%;
  height: 22%;
  right: 0;
  bottom: 0;
  background: linear-gradient(115deg, #d8ad7a 0%, var(--mb-gold) 45%, #a67c4f 100%);
  border-radius: 4px;
}

.step-moodboard__arch {
  position: absolute;
  right: 5%;
  top: 38%;
  width: 28%;
  height: 36%;
  z-index: 4;
  background: linear-gradient(168deg, #fffefc 0%, var(--mb-cream) 100%);
  clip-path: polygon(9% 30%, 50% 5%, 91% 30%, 100% 100%, 0% 100%);
  box-shadow: 0 10px 24px rgba(24, 69, 76, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: var(--mb-teal);
  pointer-events: none;
}

.step-moodboard__arch-svg {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, 0);
  display: block;
}

.step-moodboard__arch::after {
  content: "";
  position: absolute;
  bottom: 12%;
  left: 50%;
  width: 5px;
  height: 9px;
  margin-left: -2.5px;
  border-radius: 2px;
  background: linear-gradient(180deg, #e4c08f, #b8834f);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  opacity: 0.9;
}

.step-moodboard__typeblock {
  position: absolute;
  left: 0;
  bottom: 7%;
  width: 36%;
  height: 21%;
  z-index: 4;
  padding: 0.65rem 0.72rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(24, 69, 76, 0.09);
  border-radius: 4px;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-direction: column;
  gap: 0.37rem;
  justify-content: center;
  pointer-events: none;
}

.step-moodboard__type-line {
  display: block;
  height: 2px;
  border-radius: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(24, 69, 76, 0.26) 0%,
    rgba(24, 69, 76, 0.09) 100%
  );
}

.step-moodboard__type-line--mid {
  width: 74%;
}

.step-moodboard__foil {
  position: absolute;
  left: 18%;
  bottom: 36%;
  z-index: 5;
  padding: 0.2rem 0.48rem;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a4828;
  text-shadow: 0 1px 0 rgba(255, 235, 210, 0.75), 0 1px 2px rgba(90, 60, 30, 0.12);
  border: 1px solid rgba(196, 154, 107, 0.45);
  border-radius: 2px;
  background: linear-gradient(175deg, rgba(255, 250, 244, 0.5), rgba(232, 201, 158, 0.35));
  pointer-events: none;
}

.step-moodboard__tape {
  position: absolute;
  height: clamp(13px, 2.5vw, 17px);
  border-radius: 2px;
  z-index: 5;
  opacity: 0.92;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.step-moodboard__tape--a {
  width: 26%;
  left: 6%;
  top: 0;
  transform: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(255, 250, 245, 0.58));
}

.step-moodboard__tape--b {
  width: 22%;
  right: 8%;
  top: 0;
  transform: none;
  background: linear-gradient(90deg, rgba(240, 231, 222, 0.75), rgba(255, 255, 255, 0.45));
}

.step-moodboard__pin {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  z-index: 6;
  background: radial-gradient(circle at 32% 30%, #f6f6f6, #b0b0b0 42%, #5c5c5c 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22), inset 0 -1px 2px rgba(0, 0, 0, 0.25);
}

.step-moodboard__pin--1 {
  left: 6%;
  top: 14%;
}
.step-moodboard__pin--2 {
  right: 10%;
  top: 8%;
}
.step-moodboard__pin--3 {
  right: 15%;
  top: 52%;
}
.step-moodboard__pin--4 {
  left: 52%;
  bottom: 18%;
}

@media (max-width: 520px) {
  .step-moodboard__arch {
    width: 24%;
    height: 30%;
    right: 2%;
  }

  .step-moodboard__foil {
    font-size: 0.42rem;
    left: 10%;
    bottom: 40%;
  }

  .step-moodboard__typeblock {
    width: 40%;
    padding: 0.5rem 0.55rem;
  }
}

/* --- Beeld: browser + CTA + mini statistieken (sectie 3) --- */
.step-launch {
  position: relative;
  max-width: 460px;
  margin-inline: auto;
}

.step-launch__browser {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.step-section__visual:hover .step-launch__browser {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 24px 48px rgba(0, 0, 0, 0.09);
}

.step-launch__chrome {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #f5f5f6;
  border-bottom: 1px solid var(--line);
}

.step-launch__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
}

.step-launch__chrome span:nth-child(1) {
  background: #e7a098;
}

.step-launch__chrome span:nth-child(2) {
  background: #ddc277;
}

.step-launch__chrome span:nth-child(3) {
  background: #91c995;
}

.step-launch__page {
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.step-launch__block {
  height: 10px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.07);
  width: 72%;
}

.step-launch__block--thin {
  width: 46%;
  height: 8px;
}

.step-launch__cta {
  margin-top: 4px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-launch__chart {
  margin-top: 1.35rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.step-launch__stats {
  flex: 1;
  max-width: 220px;
  display: grid;
  gap: 0.55rem;
}

.step-launch__bars {
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  gap: 5px;
  height: 48px;
  padding: 0 1px 2px;
}

.step-launch__bar {
  flex: 1;
  min-height: 4px;
  height: var(--h, 45%);
  max-height: 100%;
  border-radius: 4px 4px 3px 3px;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.12), rgba(15, 15, 15, 0.28));
}

.step-section__visual:hover .step-launch__bar {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.16), rgba(15, 15, 15, 0.34));
}

.step-launch__stat-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  line-height: 1.2;
}

.step-launch__stat-value {
  font-size: 0.85rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.step-launch__stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
}

.step-launch__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

@media (prefers-reduced-motion: reduce) {
  .step-section__visual:hover .step-paper-page--branding {
    transform: none;
    filter: none;
  }

  .step-section__visual:hover .step-positioning__surface,
  .step-section__visual:hover .step-launch__browser {
    transform: none;
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

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

.section--muted {
  background: #f3f3f5;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 1.25rem;
}

.section__title em {
  font-style: italic;
}

.section__head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 768px) {
  .section__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.section__intro {
  margin: 0;
  color: var(--muted);
  max-width: 420px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

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

.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .split--reverse .split__text {
    order: 2;
  }
  .split--reverse .about__portrait {
    order: 1;
  }
}

#whatsapp-contact .split {
  align-items: start;
}

#whatsapp-contact.section {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.whatsapp-preview {
  margin: 0;
  justify-self: center;
  width: 100%;
  max-width: min(420px, 100%);
  min-width: 0;
  padding-bottom: 0.5rem;
}

.whatsapp-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.whatsapp-cta {
  margin: 1.25rem 0 0;
}

/* Cases */
.cases {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.case__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.case__shot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #eaeaea;
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

/* Website + moodboard: beeldverhouding per case via data-capture-aspect (bijv. 1024-580). */
.case__compare[data-capture-aspect="1024-580"] .case__shot.case__shot--capture,
.case__compare[data-capture-aspect="1024-580"] .case__shot.case__shot--moodboard {
  aspect-ratio: 1024 / 580;
  align-self: start;
  width: 100%;
  min-width: 0;
}

.case__compare[data-capture-aspect="1024-581"] .case__shot.case__shot--capture,
.case__compare[data-capture-aspect="1024-581"] .case__shot.case__shot--moodboard {
  aspect-ratio: 1024 / 581;
  align-self: start;
  width: 100%;
  min-width: 0;
}

.case__shot:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-md);
}

.case__label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
}

.case__label--accent {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

.case__label--moodboard {
  background: rgba(12, 12, 12, 0.92);
  color: #f5f5f5;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.case__label--moodboard-light {
  background: rgba(255, 255, 255, 0.95);
  color: #2c2825;
  border: 1px solid rgba(45, 38, 32, 0.12);
}

.case__shot--capture {
  /* zelfde neutrale ondergrond als andere case-vakken (.case__shot) */
  background: #eaeaea;
}

.case__capture-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.case__shot--moodboard-light {
  background: #eaeaea;
}

.case__moodboard--light {
  background-color: #f4eee8;
  background-image: radial-gradient(circle at 1px 1px, rgba(45, 38, 32, 0.06) 1px, transparent 0);
  border-color: rgba(45, 38, 32, 0.1);
  color: #2c2825;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.case__moodboard--light .case__moodboard__board-title {
  color: rgba(45, 38, 32, 0.42);
}

.case__moodboard--light .case__moodboard__pin {
  background: linear-gradient(145deg, #efb99f, #d4987e);
  box-shadow: 0 0 0 2px rgba(45, 38, 32, 0.08);
}

.case__moodboard--light .case__moodboard__sectitle {
  color: #9d6b52;
}

.case__moodboard--light .case__moodboard__block {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(45, 38, 32, 0.08);
}

.case__moodboard--light .case__moodboard__hex {
  color: #1f1c1a;
}

.case__moodboard--light .case__moodboard__role {
  color: rgba(45, 38, 32, 0.48);
}

.case__moodboard--light .case__moodboard__font-label {
  color: rgba(45, 38, 32, 0.48);
}

.case__moodboard--light .case__moodboard__type-xl,
.case__moodboard--light .case__moodboard__type-lg {
  color: #1f1c1a;
}

.case__moodboard--light .case__moodboard__type-md {
  color: rgba(45, 38, 32, 0.62);
}

.case__moodboard--light .case__moodboard__type-cap {
  color: #9d6b52;
}

.case__moodboard--light .case__moodboard__strip {
  border-color: rgba(45, 38, 32, 0.12);
}

.case__moodboard__strip--oog .case__moodboard__strip-inner {
  background: linear-gradient(
    98deg,
    #2a2420 0%,
    #5c4a3e 18%,
    #8b735a 36%,
    #d4b896 56%,
    #a8c4a4 78%,
    #6a9076 100%
  );
  opacity: 1;
}

.case__moodboard--light .case__moodboard__tags li {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(45, 38, 32, 0.1);
  color: #3d3835;
}

.case__moodboard--light .case__moodboard__wordmark {
  color: #1f1c1a;
}

.case__moodboard--light .case__moodboard__wordmark-note {
  color: rgba(45, 38, 32, 0.46);
}

.case__moodboard--light .case__moodboard__fake-link {
  color: #3d3835;
  text-decoration-color: rgba(239, 185, 159, 0.95);
}

.case__moodboard--light .case__moodboard__chip--ghost {
  background: transparent;
  color: #2c2825;
  border-color: rgba(45, 38, 32, 0.28);
}

.case__moodboard--light .case__moodboard__chip--pill {
  background: rgba(255, 255, 255, 0.95);
  color: #2c2825;
  border-color: rgba(45, 38, 32, 0.12);
}

.case__moodboard--light .case__moodboard__tokens {
  border-top-color: rgba(45, 38, 32, 0.08);
}

.case__moodboard--light .case__moodboard__token-label {
  color: rgba(45, 38, 32, 0.38);
}

.case__moodboard--light .case__moodboard__radii span {
  background: rgba(45, 38, 32, 0.08);
  border-color: rgba(45, 38, 32, 0.12);
}

.case__moodboard--light .case__moodboard__scale span {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(45, 38, 32, 0.1);
  color: rgba(45, 38, 32, 0.52);
}

.case__moodboard--landscape.case__moodboard--light .case__moodboard__type-xl {
  color: #1f1c1a;
}

.case__moodboard--landscape.case__moodboard--light .case__moodboard__type-lg,
.case__moodboard--landscape.case__moodboard--light .case__moodboard__type-cap {
  color: inherit;
}

.case__moodboard--landscape.case__moodboard--light .case__moodboard__type-cap {
  color: #9d6b52;
}

.case__shot--moodboard {
  background: #eaeaea;
}

.case__moodboard {
  --mb-pad: clamp(0.5rem, 1.8vw, 0.65rem);
  position: absolute;
  inset: 12px;
  padding: var(--mb-pad);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-radius: 10px;
  background-color: #0e0e0e;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: #e8e8e8;
  overflow: hidden;
  font-size: 0.62rem;
  line-height: 1.35;
}

.case__moodboard__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.05rem;
}

.case__moodboard__pin {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8b4b4, #c06c54);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.case__moodboard__board-title {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.case__moodboard__block {
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.case__moodboard__block--logo {
  padding: 0.4rem 0.5rem 0.45rem;
}

.case__moodboard__sectitle {
  margin: 0 0 0.35rem;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 168, 124, 0.95);
}

.case__moodboard__palette {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
}

.case__moodboard__sample {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.case__moodboard__sample-color {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  background: var(--c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.case__moodboard__sample-color--ring {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.case__moodboard__sample-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.case__moodboard__hex {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  color: #fff;
  word-break: break-all;
}

.case__moodboard__role {
  font-size: 0.45rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.45);
}

.case__moodboard--landscape {
  --mb-pad: 0.28rem;
  inset: 9px;
  padding: 0.28rem 0.32rem;
  gap: 0.22rem;
  overflow-y: auto;
  scrollbar-width: thin;
}

.case__moodboard__land-grid {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 1fr);
  gap: 0.32rem;
  flex: 1;
  min-height: 0;
}

.case__moodboard__land-left,
.case__moodboard__land-right {
  display: flex;
  flex-direction: column;
  gap: 0.26rem;
  min-height: 0;
}

.case__moodboard--landscape .case__moodboard__block {
  padding: 0.28rem 0.32rem;
}

.case__moodboard--landscape .case__moodboard__block--logo {
  padding: 0.26rem 0.3rem;
}

.case__moodboard--landscape .case__moodboard__sectitle {
  margin-bottom: 0.18rem;
  font-size: 0.45rem;
}

.case__moodboard__palette--land {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case__moodboard__sample--inline {
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.case__moodboard__sample--inline .case__moodboard__sample-color {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 4px;
}

.case__moodboard__sample--inline .case__moodboard__hex {
  font-size: 0.44rem;
}

.case__moodboard__sample--inline .case__moodboard__role {
  font-size: 0.4rem;
}

.case__moodboard__strip--land {
  height: 20px;
  margin-bottom: 0.2rem;
}

.case__moodboard--landscape .case__moodboard__font-label {
  margin-bottom: 0.18rem;
  font-size: 0.42rem;
}

.case__moodboard--landscape .case__moodboard__type-xl {
  font-size: clamp(0.55rem, 1.4vw, 0.68rem);
  margin-bottom: 0.08rem;
}

.case__moodboard--landscape .case__moodboard__type-lg {
  font-size: 0.48rem;
  margin-bottom: 0.08rem;
}

.case__moodboard--landscape .case__moodboard__type-md {
  font-size: 0.44rem;
  margin-bottom: 0.08rem;
  line-height: 1.35;
}

.case__moodboard--landscape .case__moodboard__type-cap {
  font-size: 0.38rem;
}

.case__moodboard--landscape .case__moodboard__tags li {
  font-size: 0.4rem;
  padding: 0.12rem 0.28rem;
}

.case__moodboard--landscape .case__moodboard__wordmark {
  font-size: clamp(0.55rem, 1.4vw, 0.68rem);
  margin-bottom: 0.08rem;
}

.case__moodboard--landscape .case__moodboard__wordmark-note {
  font-size: 0.4rem;
  line-height: 1.25;
}

.case__moodboard--landscape .case__moodboard__components {
  gap: 4px;
  margin-bottom: 0.22rem;
}

.case__moodboard--landscape .case__moodboard__fake-link {
  font-size: 0.42rem;
}

.case__moodboard--landscape .case__moodboard__chip--sm {
  font-size: 0.4rem;
  padding: 0.2rem 0.42rem;
}

.case__moodboard--landscape .case__moodboard__tokens {
  gap: 0.45rem;
  padding-top: 0.08rem;
}

.case__moodboard--landscape .case__moodboard__radii span:nth-child(1) {
  width: 14px;
  height: 11px;
}

.case__moodboard--landscape .case__moodboard__radii span:nth-child(2) {
  width: 14px;
  height: 13px;
}

.case__moodboard--landscape .case__moodboard__radii span:nth-child(3) {
  width: 22px;
  height: 8px;
}

.case__moodboard--landscape .case__moodboard__scale span:nth-child(1) {
  width: 6px;
  height: 13px;
}
.case__moodboard--landscape .case__moodboard__scale span:nth-child(2) {
  width: 12px;
  height: 16px;
}
.case__moodboard--landscape .case__moodboard__scale span:nth-child(3) {
  width: 18px;
  height: 18px;
}
.case__moodboard--landscape .case__moodboard__scale span:nth-child(4) {
  width: 10px;
  height: 22px;
}

.case__moodboard__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  align-items: stretch;
}

.case__moodboard__split .case__moodboard__block {
  min-height: 0;
}

.case__moodboard__font-label {
  margin: 0 0 0.3rem;
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.4);
}

.case__moodboard__type-xl {
  margin: 0 0 0.15rem;
  font-size: clamp(0.72rem, 2vw, 0.88rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.case__moodboard__type-lg {
  margin: 0 0 0.2rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.case__moodboard__type-md {
  margin: 0 0 0.2rem;
  font-size: 0.52rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.case__moodboard__type-cap {
  margin: 0;
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a87c;
}

.case__moodboard__strip {
  height: 38px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.case__moodboard__strip-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    108deg,
    #0d0b09 0%,
    #1f1812 22%,
    #4a3424 42%,
    #7a5234 58%,
    #3d2a1c 78%,
    #18110c 100%
  );
  background-size: 160% 100%;
  opacity: 0.95;
}

.case__moodboard__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.case__moodboard__tags li {
  font-size: 0.46rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.38rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.case__moodboard__wordmark {
  margin: 0 0 0.15rem;
  font-size: clamp(0.68rem, 1.8vw, 0.82rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}

.case__moodboard__wordmark-strong {
  font-weight: 800;
}

.case__moodboard__wordmark-soft {
  font-weight: 500;
  opacity: 0.88;
}

.case__moodboard__wordmark-note {
  margin: 0;
  font-size: 0.46rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.35;
}

.case__moodboard__components {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-bottom: 0.4rem;
}

.case__moodboard__fake-link {
  font-size: 0.48rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(192, 108, 84, 0.65);
}

.case__moodboard__chip--sm {
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #c06c54;
  color: #fff;
}

.case__moodboard__chip--sm.case__moodboard__chip--dark-text {
  background: #efb99f;
  color: #2c2825;
}

.case__moodboard__chip--pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.case__moodboard__chip--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.case__moodboard__tokens {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: flex-end;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.case__moodboard__token-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.case__moodboard__token-label {
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.case__moodboard__radii {
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.case__moodboard__radii span {
  display: block;
  width: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.case__moodboard__radii span:nth-child(1) {
  height: 14px;
  border-radius: 3px;
}

.case__moodboard__radii span:nth-child(2) {
  height: 16px;
  border-radius: 8px;
}

.case__moodboard__radii span:nth-child(3) {
  height: 10px;
  width: 28px;
  border-radius: 999px;
}

.case__moodboard__scale {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.case__moodboard__scale span {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.42rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case__moodboard__scale span:nth-child(1) {
  width: 8px;
  height: 18px;
}
.case__moodboard__scale span:nth-child(2) {
  width: 16px;
  height: 22px;
}
.case__moodboard__scale span:nth-child(3) {
  width: 24px;
  height: 26px;
}
.case__moodboard__scale span:nth-child(4) {
  width: 12px;
  height: 30px;
}

/* Cases: moodboard als los element op dezelfde lichte ondergrond als de screenshot (geen apart donker vlak). */
.case__shot--moodboard .case__moodboard {
  background: transparent;
  background-image: none;
  border: none;
  box-shadow: none;
  color: var(--ink);
  border-radius: 0;
}

.case__shot--moodboard .case__moodboard--landscape {
  --mb-pad: 0.18rem;
  inset: 6px 10px;
  gap: 0.15rem;
}

.case__shot--moodboard .case__moodboard__block {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.2rem 0;
}

.case__shot--moodboard .case__moodboard--landscape .case__moodboard__block {
  padding: 0.18rem 0;
}

.case__shot--moodboard .case__moodboard--landscape .case__moodboard__block--logo {
  padding: 0.16rem 0;
}

.case__shot--moodboard .case__label--moodboard,
.case__shot--moodboard .case__label--moodboard-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid var(--line);
}

.case__shot--moodboard .case__moodboard__board-title {
  color: rgba(92, 92, 92, 0.72);
}

.case__shot--moodboard .case__moodboard__pin {
  box-shadow: 0 0 0 1px rgba(15, 15, 15, 0.1);
}

/* VOD (donker UI-moodboard → leesbare donkere type op licht) */
.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__sectitle {
  color: rgba(92, 92, 92, 0.92);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__hex {
  color: var(--ink);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__role {
  color: var(--muted);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__font-label {
  color: var(--muted);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__type-xl,
.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__type-lg {
  color: var(--ink);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__type-md {
  color: rgba(92, 92, 92, 0.9);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__type-cap {
  color: #7d6a58;
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__strip {
  border-color: rgba(15, 15, 15, 0.09);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__tags li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--muted);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__wordmark {
  color: var(--ink);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__wordmark-note {
  color: var(--muted);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__fake-link {
  color: var(--ink);
  text-decoration-color: rgba(192, 108, 84, 0.45);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__chip--ghost {
  border-color: var(--line);
  color: var(--muted);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__chip--pill {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  color: var(--ink);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__tokens {
  border-top-color: var(--line);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__token-label {
  color: var(--muted);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__radii span {
  background: rgba(15, 15, 15, 0.05);
  border: 1px solid var(--line);
}

.case__shot--moodboard .case__moodboard:not(.case__moodboard--light) .case__moodboard__scale span {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  color: var(--muted);
}

/* Praktijk OOG: licht thema zonder crème „kaart”-achtergrond */
.case__shot--moodboard .case__moodboard--light {
  background: transparent;
  background-image: none;
  border: none;
  box-shadow: none;
  color: var(--ink);
}

.case__shot--moodboard .case__moodboard--light .case__moodboard__block {
  background: transparent;
  border: none;
}

.case__shot--moodboard .case__moodboard--light .case__moodboard__sectitle {
  color: rgba(92, 92, 92, 0.92);
}

.case__shot--moodboard .case__moodboard--light .case__moodboard__type-cap,
.case__shot--moodboard .case__moodboard--landscape.case__moodboard--light .case__moodboard__type-cap {
  color: rgba(92, 92, 92, 0.85);
}

.case__shot--moodboard .case__moodboard--light .case__moodboard__tags li {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--line);
}

.case__shot--moodboard .case__moodboard--light .case__moodboard__tokens {
  border-top-color: var(--line);
}

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

  .case__moodboard__split {
    grid-template-columns: 1fr;
  }
}

.case__mock {
  position: absolute;
  inset: 14px;
  border-radius: 10px;
  background: linear-gradient(145deg, #d6d6d6, #c4c4c4);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.case__mock::before,
.case__mock::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}
.case__mock::before {
  top: 20%;
}
.case__mock::after {
  top: 34%;
  width: 40%;
}

.case__mock--after {
  background: linear-gradient(145deg, #f6f5f3, #e8e5df);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.case__mock--after::before {
  background: rgba(0, 0, 0, 0.12);
  width: 55%;
}
.case__mock--after::after {
  background: rgba(0, 0, 0, 0.08);
  top: 50%;
  height: 42%;
  border-radius: 8px;
}

.case__mock--b::before {
  width: 70%;
}
.case__mock--b.case__mock--after::before {
  width: 38%;
}
.case__mock--c.case__mock--before {
  background: linear-gradient(145deg, #b8c2c9, #9fafb8);
}
.case__mock--c.case__mock--after {
  background: linear-gradient(145deg, #1c1c1c, #2d2d2d);
}
.case__mock--c.case__mock--after::before,
.case__mock--c.case__mock--after::after {
  background: rgba(255, 255, 255, 0.18);
}

.case__meta {
  margin-top: 1.25rem;
}

.case__meta h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.case__meta p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.case__tags {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Werkwijze — vijf kaarten naast elkaar */
.section--journey {
  overflow: hidden;
}

#process.section.section--journey {
  padding-top: clamp(2.25rem, 4.5vw, 3.75rem);
  padding-bottom: clamp(3.5rem, 10vw, 6rem);
}

.section--journey .journey__header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.section--journey .section__title {
  margin-bottom: 0.65rem;
}

.journey__lede {
  max-width: 40ch;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.journey__panel {
  padding-bottom: 0.5rem;
}

.journey__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
  align-items: stretch;
}

.journey__step {
  display: flex;
  min-width: 0;
}

.journey__card {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.25rem 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}

.journey__card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 15, 15, 0.12);
  transform: translateY(-2px);
}

.journey__illu {
  width: 100%;
  max-width: 112px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  transition: transform 0.35s var(--ease-out);
}

.journey__card:hover .journey__illu {
  transform: translateY(-3px);
}

.journey__n {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.journey__label {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  line-height: 1.28;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h3.journey__label {
  font-family: inherit;
  font-weight: 600;
}

.journey__desc {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
  hyphens: auto;
}

.journey__footer {
  margin: clamp(1.5rem, 4vw, 2.35rem) 0 0;
  text-align: center;
}

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

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

  .journey__card {
    padding: 1.15rem 1.15rem 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey__card:hover {
    transform: none;
  }

  .journey__card:hover .journey__illu {
    transform: none;
  }
}

/* Illustraties traject — groter */
.illu-table {
  position: relative;
  width: 112px;
  height: 86px;
}

.illu-table__surface {
  position: absolute;
  bottom: 7px;
  left: 6px;
  right: 6px;
  height: 12px;
  background: linear-gradient(180deg, #f4f2ee, #e5e2dc);
  border-radius: 6px;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.illu-table__person {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  bottom: 28px;
  background: linear-gradient(145deg, #ede9e4, #d8d3cb);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.09);
}

.illu-table__person--l {
  left: 3px;
}

.illu-table__person--r {
  right: 3px;
}

.illu-mood {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  width: 76px;
  height: 76px;
  padding: 6px;
  background: linear-gradient(180deg, #ffffff, #faf9f7);
  border-radius: 10px;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.05),
    0 10px 24px rgba(0, 0, 0, 0.09);
}

.illu-mood__t {
  border-radius: 4px;
  min-height: 26px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.illu-mood__t:nth-child(1) {
  background: linear-gradient(135deg, #e8e3dc, #d4cdc3);
}

.illu-mood__t:nth-child(2) {
  background: linear-gradient(135deg, #dfe7ea, #c8d5db);
}

.illu-mood__t:nth-child(3) {
  background: linear-gradient(135deg, #2a2a2a, #3d3d3d);
}

.illu-mood__t:nth-child(4) {
  background: linear-gradient(135deg, #f2efe8, #e6dfd4);
}

.illu-mood__pin {
  position: absolute;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c4a574;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.illu-build {
  position: relative;
  width: 98px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.11),
    0 0 0 1px var(--line);
}

.illu-build__bar {
  height: 14px;
  background: linear-gradient(180deg, #f3f3f4, #e8e8ea);
  border-bottom: 1px solid var(--line);
}

.illu-build__body {
  padding: 11px 9px 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.illu-build__row {
  height: 6px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.07);
  width: 100%;
}

.illu-build__row--mid {
  width: 86%;
}

.illu-build__row--short {
  width: 56%;
}

.illu-review {
  position: relative;
  width: 90px;
}

.illu-review__screen {
  border-radius: 10px;
  background: #fff;
  padding: 9px 9px 10px;
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.11),
    0 0 0 1px var(--line);
}

.illu-review__block {
  display: block;
  height: 6px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.078);
  width: 100%;
  margin-bottom: 5px;
}

.illu-review__block--sm {
  width: 58%;
  margin-bottom: 0;
}

.illu-review__badge {
  position: absolute;
  right: -10px;
  bottom: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  display: grid;
  place-items: center;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.24);
  font-weight: 700;
  line-height: 1;
}

.illu-live {
  position: relative;
  width: 100px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.illu-live__ring {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 2px solid rgba(26, 26, 26, 0.11);
}

.illu-live__win {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 46px;
  margin-top: 12px;
  border-radius: 8px;
  background: linear-gradient(155deg, #fafafa, #e8e8ea);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.12),
    0 0 0 1px var(--line);
  overflow: hidden;
}

.illu-live__shine {
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    105deg,
    transparent 42%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 58%
  );
  animation: illu-live-shine 3.2s ease-in-out infinite;
}

@keyframes illu-live-shine {
  0%,
  100% {
    transform: translateX(-35%) rotate(12deg);
  }
  50% {
    transform: translateX(35%) rotate(12deg);
  }
}

.illu-live__nodes {
  display: flex;
  gap: 6px;
  margin-top: 9px;
  z-index: 1;
}

.illu-live__nodes span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.32;
}

.illu-live__nodes span:nth-child(2) {
  opacity: 0.6;
  transform: scale(1.2);
}

.illu-live__nodes span:nth-child(3) {
  opacity: 0.95;
}

@media (prefers-reduced-motion: reduce) {
  .illu-live__shine {
    animation: none;
  }
}

/* Packages */
.packages {
  display: grid;
  gap: 20px;
}

@media (min-width: 960px) {
  .packages {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.package {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

.package:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 15, 15, 0.12);
}

.package--featured {
  border-color: rgba(15, 15, 15, 0.18);
  box-shadow: var(--shadow-md);
}

.package__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.package h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.package__for {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.package__price {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.package__price-note {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--muted);
}

.package ul {
  margin: 0;
  padding: 0 0 0.5rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}
.package li {
  margin-bottom: 0.45rem;
}

/* About */
.about__portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 682 / 1024;
  max-height: 520px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.about__photo {
  height: 100%;
  background: url("../assets/about-portrait.png");
  background-size: cover;
  background-position: center 22%;
}

.split__text p {
  color: var(--muted);
}

.split__text h2 + p {
  margin-top: 0;
}

/* Footer */
.footer {
  padding: clamp(2.75rem, 6vw, 4rem) 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  font-size: 0.92rem;
  color: var(--muted);
}

@media (min-width: 720px) {
  .footer__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}

.footer__logo {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  color: var(--ink);
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.14em;
}

.footer__logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1.5px;
  background-color: #d4cdc3;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.75s var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0s) + 0.2s);
}

.footer__logo.reveal.is-visible::after {
  transform: scaleX(1);
}

.footer__logo:hover {
  color: var(--ink);
  text-decoration: none;
}

.footer__tagline {
  margin: 0.6rem 0 0;
  max-width: 28rem;
  line-height: 1.5;
}

.footer__heading {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(15, 15, 15, 0.2);
  text-underline-offset: 0.18em;
}

.footer a:hover {
  color: var(--ink);
  text-decoration-color: rgba(15, 15, 15, 0.45);
}

.footer__bar {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Pakket-aanvraag: Apple-achtig glas (modal) */
.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 28px);
  opacity: 1;
  pointer-events: none;
}

.inquiry-modal[hidden] {
  display: none !important;
}

.inquiry-modal.is-open {
  pointer-events: auto;
}

.inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  /* Donkering fadet mee; blur loopt geleidelijk op (geen harde “wazige” knip) */
  background: rgba(8, 10, 18, 0.42);
  backdrop-filter: blur(0px) saturate(140%);
  -webkit-backdrop-filter: blur(0px) saturate(140%);
  opacity: 0;
  transition: opacity 0.95s cubic-bezier(0.2, 0.85, 0.25, 1),
    backdrop-filter 1.05s cubic-bezier(0.2, 0.85, 0.25, 1),
    -webkit-backdrop-filter 1.05s cubic-bezier(0.2, 0.85, 0.25, 1);
}

.inquiry-modal.is-open .inquiry-modal__backdrop {
  opacity: 1;
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.inquiry-modal__shell {
  position: relative;
  z-index: 1;
  width: min(440px, calc(100% - 8px));
  max-height: calc(100vh - clamp(20px, 5vw, 36px));
  max-height: calc(100dvh - clamp(20px, 5vw, 36px));
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  transform: translateY(14px) scale(0.985);
  opacity: 0;
  /* geen filter:blur op de shell: animeert vaak haperend / “cut” */
  transition: transform 0.85s cubic-bezier(0.2, 0.88, 0.2, 1),
    opacity 0.75s cubic-bezier(0.2, 0.88, 0.2, 1);
  transition-delay: 0.06s, 0.06s;
}

.inquiry-modal.is-open .inquiry-modal__shell {
  transform: none;
  opacity: 1;
}

.inquiry-modal__panel {
  position: relative;
  overflow: visible;
  padding: clamp(1.15rem, 3vw, 1.55rem);
  border-radius: 22px;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.74) 0%,
    rgba(250, 250, 252, 0.58) 45%,
    rgba(255, 255, 255, 0.68) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 1px rgba(15, 15, 25, 0.04) inset, 0 1px 1px rgba(255, 255, 255, 0.85) inset,
    0 28px 72px rgba(12, 14, 28, 0.18), 0 12px 28px rgba(12, 14, 28, 0.08);
  backdrop-filter: blur(28px) saturate(165%);
  -webkit-backdrop-filter: blur(28px) saturate(165%);
}

.inquiry-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.inquiry-modal__close:hover {
  background: rgba(255, 255, 255, 0.85);
}

.inquiry-modal__close:active {
  transform: scale(0.94);
}

.inquiry-modal__header {
  padding-right: 2.5rem;
  margin-bottom: 0.85rem;
}

.inquiry-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(1.38rem, 2.8vw, 1.55rem);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 0.28rem;
  color: var(--ink);
}

.inquiry-modal__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.38;
}

.inquiry-modal__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.55rem 0 0;
  padding: 0.35rem 0.75rem 0.35rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 15, 25, 0.07);
  font-size: 0.82rem;
}

.inquiry-modal__pill-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--muted);
}

.inquiry-modal__pill-value {
  font-weight: 600;
  color: var(--ink);
}

.inquiry-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.inquiry-modal__pair {
  display: grid;
  gap: 0.62rem;
}

.inquiry-field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.inquiry-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.inquiry-field__opt {
  font-weight: 500;
  color: var(--muted);
}

.inquiry-field input,
.inquiry-field textarea {
  width: 100%;
  margin: 0;
  padding: 0.58rem 0.85rem;
  font: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  border-radius: 12px;
  border: 1px solid rgba(15, 15, 25, 0.1);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out),
    background 0.2s var(--ease-out);
}

.inquiry-field textarea {
  resize: vertical;
  min-height: 4.25rem;
  line-height: 1.45;
  max-height: 7.5rem;
}

.inquiry-field input::placeholder,
.inquiry-field textarea::placeholder {
  color: rgba(92, 92, 92, 0.5);
}

.inquiry-field input:hover,
.inquiry-field textarea:hover {
  background: rgba(255, 255, 255, 0.72);
}

.inquiry-field input:focus,
.inquiry-field textarea:focus {
  outline: none;
  border-color: rgba(15, 15, 25, 0.28);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 3px rgba(15, 15, 25, 0.06), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.inquiry-modal__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.inquiry-modal__error {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  line-height: 1.35;
  color: #7a1f1f;
  background: rgba(180, 40, 40, 0.09);
  border: 1px solid rgba(180, 40, 40, 0.18);
  border-radius: 10px;
}

.inquiry-modal__success {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}

.inquiry-modal__success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.inquiry-modal__success-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.inquiry-modal__form .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.inquiry-modal__alt {
  margin: 0.65rem 0 0;
  text-align: center;
}

.inquiry-modal__alt-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.84rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.inquiry-modal__alt-btn:hover {
  color: var(--ink);
}

@media (min-width: 640px) {
  .inquiry-modal__pair {
    grid-template-columns: 1fr 1fr;
    gap: 0.62rem 1rem;
  }
}

@media (min-width: 720px) {
  .inquiry-modal__shell {
    width: min(540px, calc(100% - 20px));
  }
}

@media (min-width: 1024px) {
  .inquiry-modal__shell {
    width: min(620px, calc(100% - 32px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .inquiry-modal__backdrop,
  .inquiry-modal__shell {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
