/* =========================================================
   Motion Made · Content Agency
   Stijl: Cinematic dark, editorial premium.
   Palet: Noir & Champagne (uit de officiële merkidentiteit).
   ========================================================= */

:root {
  /* --- Kern (merkboek) --- */
  --ink:        #0C0C0E; /* primaire achtergrond */
  --charcoal:   #1C1C21; /* secundaire vlakken */
  --graphite:   #14141A; /* diepere tinten */
  --bone:       #ECEAE3; /* primaire tekst op ink */
  --champagne:  #C8A96A; /* enige accent */
  --champagne-deep: #9C7E4A;

  /* --- Neutralen (uit palet) --- */
  --mist:   #CFCFD4;
  --silver: #9D9D9F;
  --slate:  #8C8C92;
  --stone:  #6C6C72;
  --iron:   #3F3F45;

  /* --- Semantisch --- */
  --bg:           var(--ink);
  --bg-alt:       #0E0E11;
  --surface:      var(--charcoal);
  --text:         var(--bone);
  --text-muted:   var(--slate);
  --text-subtle:  var(--stone);
  --accent:       var(--champagne);
  --line:         rgba(236, 234, 227, 0.10);
  --line-strong:  rgba(236, 234, 227, 0.18);

  /* --- Case-accent (Toko Manisan, alleen subtiel binnen de case) --- */
  --toko-olive: #706F5F;
  --toko-cream: #EEDFD1;

  /* --- Type --- */
  --font-sans:  'Archivo', system-ui, -apple-system, sans-serif;
  --font-mono:  'Space Mono', ui-monospace, monospace;
  --font-serif: 'Instrument Serif', Georgia, serif;

  /* --- Maat & ritme (8pt) --- */
  --container: 1180px;
  --container-narrow: 760px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Flinterdunne grain-overlay voor textuur/diepte. Onder de nav (z-index 100),
   pointer-events uit, respecteert prefers-reduced-motion niet nodig (statisch). */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

/* ---------- Focus & a11y ---------- */
:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem;
  background: var(--champagne); color: var(--ink);
  padding: 0.6rem 1rem; font-weight: 600; z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  position: relative;
  /* Subtiele diepte na de hero: charcoal-toon voor volume,
     champagne enkel als flinterdun licht (geen gouden vlakken). */
  background:
    radial-gradient(95% 60% at 100% 100%, rgba(200, 169, 106, 0.045), transparent 60%),
    radial-gradient(75% 55% at 0% 0%, rgba(34, 34, 41, 0.55), transparent 62%);
}
.section--alt {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(90% 55% at 100% 0%, rgba(200, 169, 106, 0.05), transparent 58%),
    radial-gradient(80% 55% at 0% 100%, rgba(36, 36, 43, 0.6), transparent 62%),
    var(--bg-alt);
}

/* ---------- Typografie helpers ---------- */
.mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.25rem;
}
.accent-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--champagne);
  letter-spacing: 0.01em;
}

.section__title {
  font-weight: 900;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
/* Pakketten-titel: niet te smal afbreken, twee gebalanceerde regels,
   iets rustiger leading. Tekst blijft ongewijzigd. */
#pricing-title {
  max-width: 24ch;
  line-height: 1.12;
  text-wrap: balance;
}
#pricing-title + .section__lead {
  text-wrap: balance;
}
.section__lead {
  margin-top: 1.5rem;
  max-width: 56ch;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  /* Pill-stijl, consistent met de nav-capsule */
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease),
              border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn--lg { min-height: 54px; padding: 1rem 2.1rem; font-size: 1.05rem; }

.btn--primary {
  background: var(--champagne);
  color: var(--ink);
}
.btn--primary:hover {
  background: #d8bd84; transform: translateY(-2px);
  box-shadow: 0 0 30px -10px rgba(200, 169, 106, 0.5);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--champagne); color: var(--champagne); transform: translateY(-2px); }

/* Disabled CTA (bv. 'Stuur een e-mail' zolang er geen e-mailadres is) */
.btn[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.btn[aria-disabled="true"]:hover {
  transform: none;
  border-color: var(--line-strong);
  color: var(--bone);
  box-shadow: none;
}

/* ---------- Frame-haken (merkmotief) ---------- */
.frame-hooks { position: absolute; inset: 0; pointer-events: none; }
.frame-hooks span {
  position: absolute; width: 26px; height: 26px;
  border-color: var(--line-strong); border-style: solid; border-width: 0;
}
.frame-hooks--champagne span { border-color: rgba(200, 169, 106, 0.65); }
.frame-hooks span:nth-child(1) { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.frame-hooks span:nth-child(2) { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.frame-hooks span:nth-child(3) { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.frame-hooks span:nth-child(4) { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

/* =========================================================
   NAV
   ========================================================= */
/* Subtiele floating/glass navbar */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 12, 14, 0.55);
  border-bottom: 1px solid rgba(236, 234, 227, 0.06);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav[data-scrolled] {
  background: rgba(12, 12, 14, 0.78);
  border-bottom-color: rgba(236, 234, 227, 0.1);
  box-shadow: 0 14px 36px -24px rgba(0, 0, 0, 0.85);
}
.nav__inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 64px;
}
.nav__logo { flex-shrink: 0; display: flex; align-items: center; }
/* Logo iets groter en beter leesbaar, header blijft compact */
.nav__logo svg { height: 46px; width: auto; }

/* Nav-items in een subtiele glass-capsule */
.nav__links {
  display: flex; gap: 0.25rem; margin-left: auto;
  padding: 0.3rem 0.4rem;
  font-size: 0.9rem; color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(236, 234, 227, 0.08);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.nav__links a {
  padding: 0.42rem 0.95rem; border-radius: 999px;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--champagne); background: rgba(200, 169, 106, 0.08); }

/* CTA: champagne, maar verfijnd · kleinere pill passend bij de nav-capsule */
.nav__cta { margin-left: 0.25rem; }
.btn.nav__cta {
  min-height: 38px;
  padding: 0.4rem 1.05rem;
  font-size: 0.85rem;
  border-radius: 999px;
  /* Iets subtielere champagne-fill, minder blokkerig */
  background: rgba(200, 169, 106, 0.9);
}
.btn.nav__cta:hover {
  background: var(--champagne);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-strong); border-radius: var(--radius);
  cursor: pointer; margin-left: auto;
}
.nav__toggle span { width: 20px; height: 2px; background: var(--bone); transition: transform 0.25s var(--ease), opacity 0.2s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 0.25rem;
  padding: 1rem clamp(1.25rem, 5vw, 3rem) 1.75rem;
  background: rgba(12,12,14,0.96); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav__mobile a { padding: 0.85rem 0; border-bottom: 1px solid var(--line); color: var(--text-muted); }
.nav__mobile a:last-child { border-bottom: 0; margin-top: 0.75rem; }
.nav__mobile .btn { color: var(--ink); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  /* Vul de eerste viewport (minus de sticky navbar) en centreer de content,
     zodat de hero bij eerste load direct gecentreerd staat. */
  display: flex;
  align-items: center;
  min-height: calc(100vh - 64px);
  min-height: calc(100svh - 64px);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(200,169,106,0.08), transparent 60%),
    var(--ink);
}
.hero__inner {
  position: relative;
  width: 100%;
  /* Verticale centrering doet het werk; padding houdt ademruimte op korte schermen */
  padding-block: clamp(3.5rem, 9vw, 7rem);
  text-align: center;
}
.hero .frame-hooks {
  inset: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 5vw, 3rem);
}

/* Subtiele intro-animatie bij eerste load (fade + lichte translate omhoog).
   Layout/positie blijft gelijk: de translate eindigt op none. */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero .eyebrow,
.hero__title,
.hero__lead,
.hero__actions {
  opacity: 0;
  animation: heroIn 0.55s var(--ease) forwards;
}
.hero .eyebrow   { animation-delay: 0.05s; }
.hero__title     { animation-delay: 0.13s; }
.hero__lead      { animation-delay: 0.22s; }
/* Buttons komen snel: korte delay + iets kortere duur, zodat ze direct zichtbaar zijn */
.hero__actions   { animation-delay: 0.26s; animation-duration: 0.45s; }
.hero .frame-hooks {
  opacity: 0;
  animation: heroFade 0.8s var(--ease) 0.12s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow,
  .hero__title,
  .hero__lead,
  .hero__actions,
  .hero .frame-hooks {
    opacity: 1;
    animation: none;
  }
}
.hero__title {
  font-weight: 900;
  font-size: clamp(3rem, 11vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.hero__lead {
  margin: 1.75rem auto 0;
  max-width: 50ch;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--text-muted);
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 2.5rem;
}
.hero__meta { margin-top: 3rem; color: var(--text-subtle); }

/* =========================================================
   VOOR WIE · layout + tags + deliverables-card
   ========================================================= */
.audience { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) {
  .audience { grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr); gap: 4rem; }
}

.audience-card {
  position: relative;
  padding: 2.25rem 2rem;
  background: linear-gradient(160deg, #20202733, #15151a) , var(--charcoal);
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(200, 169, 106, 0.05),
    0 0 45px -14px rgba(200, 169, 106, 0.14),
    0 34px 60px -38px rgba(0, 0, 0, 0.9);
}
/* Hogere specificiteit dan .reveal, zodat de hover-transities tellen
   (dekt zowel de reveal-entree als de hover smooth af) */
.audience .audience-card {
  transition: opacity 0.5s var(--ease), transform 0.35s var(--ease),
              border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
/* Zachte champagne-wash die bij hover invloeit (lichter/warmer) */
.audience-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, rgba(200, 169, 106, 0.07), transparent 62%);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.audience-card .frame-hooks { inset: 0.85rem; }
.audience-card .frame-hooks--champagne span { transition: border-color 0.3s var(--ease); }
/* Subtiele premium hover · alleen op apparaten met echte cursor (geen mobiel) */
@media (hover: hover) and (pointer: fine) {
  .audience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 169, 106, 0.5);
    box-shadow:
      0 0 0 1px rgba(200, 169, 106, 0.1),
      0 0 62px -14px rgba(200, 169, 106, 0.26),
      0 38px 66px -34px rgba(0, 0, 0, 0.92);
  }
  .audience-card:hover::after { opacity: 1; }
  .audience-card:hover .frame-hooks--champagne span { border-color: rgba(200, 169, 106, 0.9); }
}
.audience-card__label {
  color: var(--champagne); display: block; margin-bottom: 1.25rem;
}
.audience-card__list { display: flex; flex-direction: column; }
.audience-card__list li {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--mist); font-size: 1.02rem;
}
.audience-card__list li:last-child { border-bottom: 0; }
.audience-card__list li::before {
  content: ""; flex-shrink: 0;
  width: 7px; height: 7px;
  border-left: 1.5px solid var(--champagne);
  border-bottom: 1.5px solid var(--champagne);
  transform: rotate(-45deg);
}
.audience-card__lead-item { color: var(--bone); font-weight: 600; }

.tags {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 2.5rem;
}
.tags li {
  font-family: var(--font-mono);
  font-size: 0.82rem; letter-spacing: 0.08em;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--mist);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.tags li:hover { border-color: var(--champagne); color: var(--champagne); }

/* =========================================================
   DIENSTEN · cards
   ========================================================= */
.cards {
  display: grid; gap: 1.25rem; margin-top: 3.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.75rem 2.25rem;
  /* Iets lichter dan --surface voor meer diepte */
  background: linear-gradient(165deg, #212128, #1a1a20);
  /* Warmere border met een vleugje champagne */
  border: 1px solid rgba(200, 169, 106, 0.12);
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
/* Subtiele champagne accentlijn die bij hover verschijnt */
.card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--champagne), rgba(200, 169, 106, 0));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: rgba(200, 169, 106, 0.38); }
.card:hover::before { transform: scaleX(1); }
.card__index { color: var(--champagne); display: block; margin-bottom: 1.5rem; }
.card__title { font-weight: 700; font-size: 1.3rem; letter-spacing: -0.01em; }
.card__text { margin-top: 0.75rem; color: var(--text-muted); font-size: 0.98rem; }

/* =========================================================
   WERKWIJZE · steps
   ========================================================= */
.steps {
  display: grid; gap: 1.25rem; margin-top: 3.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.5rem;
  /* Duidelijkere champagne-lijn boven elke stap */
  border-top: 2px solid rgba(200, 169, 106, 0.32);
}
.step__num {
  display: inline-block;
  color: var(--champagne);
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}
.step__title { font-weight: 700; font-size: 1.25rem; }
.step__text { margin-top: 0.6rem; color: var(--text-muted); font-size: 0.96rem; }

/* =========================================================
   TARIEVEN
   ========================================================= */
.pricing {
  display: grid; gap: 1.25rem; margin-top: 3.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex; flex-direction: column;
  padding: 2.25rem 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
/* Zachte champagne-wash die bij hover invloeit (lichter/warmer) */
.plan::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(120% 75% at 50% 0%, rgba(200, 169, 106, 0.07), transparent 62%);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.plan:hover { transform: translateY(-6px); }
.plan:hover::after { opacity: 1; }
/* Starter/Premium bewust rustiger naast Growth; extra highlight pas bij hover */
.plan:not(.plan--featured) {
  background: linear-gradient(170deg, #1b1b20, #17171c);
  border-color: var(--line);
}
.plan:not(.plan--featured):hover {
  border-color: rgba(200, 169, 106, 0.42);
  box-shadow:
    0 0 38px -16px rgba(200, 169, 106, 0.2),
    0 26px 52px -34px rgba(0, 0, 0, 0.85);
}
/* Growth: standaard het meest opvallend; bij hover nog iets sterker */
.plan--featured {
  border-color: rgba(200,169,106,0.65);
  background: linear-gradient(180deg, rgba(200,169,106,0.09), rgba(28,28,33,0.65));
  box-shadow:
    0 0 0 1px rgba(200,169,106,0.28),
    0 0 55px -12px rgba(200,169,106,0.22),
    0 30px 60px -30px rgba(0,0,0,0.85);
}
.plan--featured:hover {
  border-color: rgba(200, 169, 106, 0.85);
  box-shadow:
    0 0 0 1px rgba(200, 169, 106, 0.36),
    0 0 70px -10px rgba(200, 169, 106, 0.3),
    0 34px 64px -28px rgba(0, 0, 0, 0.9);
}
.plan__badge {
  position: absolute; top: -0.75rem; left: 2rem;
  background: var(--champagne); color: var(--ink);
  font-size: 0.68rem; padding: 0.35rem 0.75rem; border-radius: 999px;
  letter-spacing: 0.14em;
}
.plan__name { font-weight: 900; font-size: 1.6rem; letter-spacing: -0.01em; }
.plan__desc { color: var(--text-muted); margin-top: 0.35rem; font-size: 0.95rem; }
.plan__position {
  margin: 1.4rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--mist);
  font-size: 1.02rem;
  line-height: 1.5;
  min-height: 3em;
}
.plan__price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.4rem;
  margin: 1.5rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.plan__from { color: var(--text-subtle); font-size: 0.7rem; }
.plan__amount { font-weight: 900; font-size: 2.6rem; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.plan__period { color: var(--text-muted); font-size: 0.95rem; }
.plan__list { display: flex; flex-direction: column; gap: 0.8rem; flex-grow: 1; }
.plan__list li {
  position: relative; padding-left: 1.6rem;
  color: var(--mist); font-size: 0.96rem;
}
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-left: 1.5px solid var(--champagne); border-bottom: 1.5px solid var(--champagne);
  transform: rotate(-45deg) translateY(-1px);
}
.plan__option { color: var(--text-muted); font-style: italic; }
.plan__option::before { opacity: 0.5; }
.plan__list li.plan__exclude { color: var(--text-subtle); }
.plan__list li.plan__exclude::before {
  border-left: none; border-bottom: 1.5px solid var(--text-subtle);
  width: 10px; height: 0; transform: none; top: 0.72em;
}
.plan__cta { margin-top: 2rem; width: 100%; }
.pricing__note { margin: 2rem auto 0; max-width: 60ch; color: var(--text-muted); text-align: center; font-size: 0.98rem; line-height: 1.6; }

/* =========================================================
   WERK · uitgelichte case + placeholder grid (9:16)
   ========================================================= */
/* Uitgelichte case-card (Toko Manisan): zelfde taal als .audience-card,
   met de 9:16-video links en de case-content rechts. */
.work-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  background: linear-gradient(160deg, #20202733, #15151a), var(--charcoal);
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(200, 169, 106, 0.05),
    0 0 45px -14px rgba(200, 169, 106, 0.14),
    0 34px 60px -38px rgba(0, 0, 0, 0.9);
  transition: opacity 0.5s var(--ease), transform 0.35s var(--ease),
              border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
@media (min-width: 680px) {
  .work-feature {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.25rem);
    align-items: center;
  }
}
@media (hover: hover) and (pointer: fine) {
  .work-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 169, 106, 0.5);
    box-shadow:
      0 0 0 1px rgba(200, 169, 106, 0.1),
      0 0 62px -14px rgba(200, 169, 106, 0.26),
      0 38px 66px -34px rgba(0, 0, 0, 0.92);
  }
}
/* De videolijst binnen de feature: zelfde frame als de grid, maar begrensd
   zodat 9:16 niet de hele kolom domineert op desktop. */
/* Compacte thumbnail: links uitgelijnd op desktop, niet hero-formaat. */
.work-feature__media { width: 100%; max-width: 190px; margin-inline: auto; }
@media (min-width: 680px) { .work-feature__media { margin-inline: 0; } }
.work-feature__body { display: flex; flex-direction: column; align-items: flex-start; }
.work-feature__body .eyebrow { margin-bottom: 0.6rem; }
.work-feature__title {
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.work-feature__stat {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 0.6rem;
}
.work-feature__stat-num {
  font-weight: 900;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  letter-spacing: -0.02em;
  color: var(--champagne);
  font-variant-numeric: tabular-nums;
}
.work-feature__stat-label { color: var(--mist); font-size: 0.98rem; }
.work-feature__text {
  margin-top: 0.85rem;
  max-width: 46ch;
  color: var(--text-muted);
  font-size: 0.98rem;
}
.work-feature__cta { margin-top: 1.25rem; }

.work-grid {
  display: grid; gap: 1.25rem; margin-top: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.work-item figcaption {
  margin-top: 0.9rem; color: var(--text-muted);
  font-size: 0.9rem; letter-spacing: 0.02em;
}
.work-item__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--graphite);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.work-item:hover .work-item__frame { border-color: var(--champagne); transform: translateY(-4px); }
.work-item__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: var(--graphite);
}
/* Onderste scrim voor leesbaarheid van het label (lower-third) */
.work-item__frame::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(12,12,14,0.78), transparent);
  pointer-events: none;
  z-index: 1;
}
.work-item__tag {
  position: absolute; left: 0.95rem; bottom: 0.9rem; z-index: 2;
  color: var(--champagne); font-size: 0.6rem; letter-spacing: 0.16em;
  padding-left: 0.6rem;
  border-left: 2px solid var(--champagne);
}
/* Subtiele audio-toggle rechtsboven (geen grote play-button) */
.work-item__audio {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  color: var(--bone);
  background: rgba(12, 12, 14, 0.5);
  border: 1px solid rgba(236, 234, 227, 0.18);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.work-item__audio:hover { color: var(--champagne); border-color: rgba(200, 169, 106, 0.55); }
.work-item__audio:focus-visible { outline: 2px solid var(--champagne); outline-offset: 2px; }
.work-item__audio svg { width: 17px; height: 17px; }
/* Aan-staat: champagne accent + lichte gloed */
.work-item__audio[aria-pressed="true"] {
  color: var(--champagne);
  border-color: rgba(200, 169, 106, 0.7);
  box-shadow: 0 0 18px -4px rgba(200, 169, 106, 0.5);
}
.work-item__audio .ic--on { display: none; }
.work-item__audio[aria-pressed="true"] .ic--off { display: none; }
.work-item__audio[aria-pressed="true"] .ic--on { display: block; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.4rem 0; cursor: pointer;
  font-weight: 600; font-size: 1.1rem;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; color: var(--champagne); font-size: 1.5rem; font-weight: 400;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding-bottom: 1.4rem; color: var(--text-muted); max-width: 62ch; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  position: relative; text-align: center;
  /* Iets sterkere champagne-gloed achter de CTA */
  background:
    radial-gradient(60% 45% at 50% 60%, rgba(200, 169, 106, 0.08), transparent 60%),
    radial-gradient(80% 55% at 0% 100%, rgba(36, 36, 43, 0.6), transparent 62%);
}
.contact__inner { position: relative; padding-block: clamp(1rem, 4vw, 2.5rem); }
.contact .frame-hooks { inset: -1rem; }
/* Hoeklijnen iets sterker champagne in de contactsectie */
.contact .frame-hooks--champagne span { border-color: rgba(200, 169, 106, 0.85); }
/* Champagne-gloed rond de primaire CTA */
.contact .btn--primary {
  box-shadow: 0 0 38px -8px rgba(200, 169, 106, 0.45);
}
.contact .btn--primary:hover {
  box-shadow: 0 0 52px -6px rgba(200, 169, 106, 0.6);
}
.contact .section__title { margin-inline: auto; }
.contact .section__lead { margin-inline: auto; }
.contact__actions {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
  margin-top: 2.5rem;
}
.contact__meta { margin-top: 2.5rem; color: var(--text-subtle); }
.contact__meta a { color: var(--champagne); transition: opacity 0.2s var(--ease); }
.contact__meta a:hover { opacity: 0.8; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding-block: 3.5rem 2.5rem; background: var(--bg-alt); }
.footer__inner {
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: start;
}
.footer__brand img { height: 36px; width: auto; opacity: 0.95; }
.footer__tag { margin-top: 1rem; color: var(--champagne); font-size: 0.72rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.5rem; color: var(--text-muted); font-size: 0.95rem; }
.footer__nav a:hover { color: var(--bone); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; justify-content: space-between;
  margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line);
  color: var(--text-subtle);
}
.footer__bottom .mono { font-size: 0.7rem; }
/* Juridische links + Instagram in de footer-onderregel */
.footer__legal {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em;
}
.footer__legal a { color: var(--text-subtle); transition: color 0.2s var(--ease); }
.footer__legal a:hover { color: var(--champagne); }

/* =========================================================
   JURIDISCHE PAGINA'S (algemene voorwaarden / privacybeleid)
   ========================================================= */
.legal__title {
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 0.5rem;
}
.legal__body { margin-top: 2.5rem; }
.legal__body h2 {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-top: 2.4rem;
  margin-bottom: 0.65rem;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.95rem;
  max-width: 70ch;
}
.legal__body strong { color: var(--bone); font-weight: 600; }
.legal__body ul {
  margin: 0 0 1.2rem; max-width: 70ch;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.legal__body ul li {
  position: relative; padding-left: 1.4rem;
  color: var(--text-muted); line-height: 1.6;
}
.legal__body ul li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 6px; height: 6px;
  border-left: 1.5px solid var(--champagne);
  border-bottom: 1.5px solid var(--champagne);
  transform: rotate(-45deg);
}
.legal__body a { color: var(--champagne); }
.legal__company {
  margin-top: 2.75rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--text-subtle);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
}
.legal__back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2rem; color: var(--text-muted);
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em;
  transition: color 0.2s var(--ease);
}
.legal__back:hover { color: var(--champagne); }

/* =========================================================
   CASE PAGINA (bv. /cases/toko-manisan)
   Motion Made-stijl blijft leidend; Toko-accent enkel subtiel
   in de merk-chip en hoeklijnen van de hero.
   ========================================================= */
.case-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 12vw, 9rem) clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(110% 70% at 50% -10%, rgba(200, 169, 106, 0.09), transparent 60%),
    var(--ink);
}
.case-hero__inner { position: relative; z-index: 1; max-width: 64ch; }

/* Subtiel Toko Manisan brandmerk als watermerk: champagne via CSS-mask op het
   transparante embleem, lage opacity en zacht uitvloeiend. Staat achter de tekst
   (z-index 0) en mag de leesbaarheid nooit verminderen. */
.case-hero__watermark {
  position: absolute; z-index: 0; pointer-events: none;
  top: 50%; right: clamp(-9rem, -6vw, -3rem);
  transform: translateY(-50%);
  width: min(64vw, 640px); aspect-ratio: 1 / 1;
  background-color: var(--champagne);
  -webkit-mask: url("../../assets/cases/toko-manisan-mark.svg") center / contain no-repeat;
  mask: url("../../assets/cases/toko-manisan-mark.svg") center / contain no-repeat;
  opacity: 0.05;
  filter: blur(0.4px);
}
@media (max-width: 640px) {
  /* Op smalle schermen nog subtieler, zodat tekst altijd leidend blijft. */
  .case-hero__watermark { width: 86vw; right: -22vw; opacity: 0.04; }
}

/* Subtiele staggered intro bij laden (hergebruikt de hero-keyframes).
   Layout blijft gelijk: translate eindigt op none. */
.case-hero .case-brand,
.case-hero__title,
.case-hero__stat,
.case-hero__lead,
.case-hero .case-socials {
  opacity: 0;
  animation: heroIn 0.55s var(--ease) forwards;
}
.case-hero .case-brand   { animation-delay: 0.05s; }
.case-hero__title        { animation-delay: 0.13s; }
.case-hero__stat         { animation-delay: 0.21s; }
.case-hero__lead         { animation-delay: 0.29s; }
.case-hero .case-socials { animation-delay: 0.36s; animation-duration: 0.5s; }
.case-hero .frame-hooks {
  opacity: 0;
  animation: heroFade 0.8s var(--ease) 0.12s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .case-hero .case-brand,
  .case-hero__title,
  .case-hero__stat,
  .case-hero__lead,
  .case-hero .case-socials,
  .case-hero .frame-hooks {
    opacity: 1;
    animation: none;
  }
}

/* Subtiele merk-chip: Toko-logo in zijn eigen kleuren, klein gehouden. */
.case-brand {
  display: inline-flex; align-items: center;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.75rem;
  background: rgba(238, 223, 209, 0.04);
  border: 1px solid rgba(238, 223, 209, 0.16);
  border-radius: 999px;
}
.case-brand span {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--toko-cream);
}
.case-hero__title {
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.case-hero__stat {
  display: inline-flex; align-items: baseline; flex-wrap: wrap; gap: 0.55rem;
  margin-top: 1.4rem;
}
.case-hero__stat-num {
  font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em; color: var(--champagne); font-variant-numeric: tabular-nums;
}
.case-hero__stat-label { color: var(--mist); font-size: 1.1rem; }
.case-hero__lead {
  margin-top: 1.75rem; max-width: 60ch;
  color: var(--text-muted); font-size: clamp(1.05rem, 2.2vw, 1.25rem);
}

/* Subtiele social links naar Toko Manisan (rustige mono-stijl) */
.case-socials {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1rem;
  margin-top: 2rem;
}
.case-socials a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  transition: color 0.2s var(--ease);
}
.case-socials a:hover { color: var(--champagne); }
.case-socials a svg { display: block; }
.case-socials__sep { color: var(--iron); }

/* Stats-band met rustige animated counters (1 → 3 kolommen) */
.case-stats {
  display: grid; gap: 0; margin-top: 3.5rem;
  grid-template-columns: 1fr;
}
.stat {
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) {
  .case-stats { grid-template-columns: repeat(3, 1fr); }
  .stat { border-top: 0; border-left: 1px solid var(--line); }
  .stat:first-child { border-left: 0; }
}
.stat__num {
  display: block;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: -0.03em; line-height: 1;
  color: var(--champagne); font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block; margin-top: 0.75rem;
  color: var(--text-muted); font-size: 0.95rem;
}
/* Korte tekst onder de stats-band, rustig met wat ademruimte. */
.case-stats__note { margin-top: 2.75rem; }

/* Subtiele sfeer-grid (Toko Manisan): twee sterke beelden, veel witruimte,
   uniforme vierkante uitsnede zodat staand/liggend beeld netjes uitlijnt. */
.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.65rem, 1.8vw, 1rem);
  margin-top: 2.75rem;
}
.case-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  transition: border-color 0.3s var(--ease);
}
.case-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .case-gallery__item:hover { border-color: rgba(200, 169, 106, 0.5); }
  .case-gallery__item:hover img { transform: scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  .case-gallery__item img { transition: none; }
  .case-gallery__item:hover img { transform: none; }
}

/* Eén groter, rustig beeldblok (bv. onder Aanpak) in de Motion Made card-stijl:
   champagne-border, radius en zachte gloed zoals de bestaande cards. */
.case-figure {
  margin: 3rem 0 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(200, 169, 106, 0.28);
  box-shadow:
    0 0 0 1px rgba(200, 169, 106, 0.05),
    0 0 45px -14px rgba(200, 169, 106, 0.14),
    0 34px 60px -38px rgba(0, 0, 0, 0.9);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.35s var(--ease);
}
.case-figure img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 10; object-fit: cover;
}
@media (hover: hover) and (pointer: fine) {
  .case-figure:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 169, 106, 0.5);
    box-shadow:
      0 0 0 1px rgba(200, 169, 106, 0.1),
      0 0 62px -14px rgba(200, 169, 106, 0.26),
      0 38px 66px -34px rgba(0, 0, 0, 0.92);
  }
}
@media (prefers-reduced-motion: reduce) {
  .case-figure { transition: none; }
  .case-figure:hover { transform: none; }
}

/* Aanpak-lijst: zelfde haakjes-marker als de deliverables/plan-lijsten. */
.case-list {
  display: flex; flex-direction: column; gap: 0.9rem;
  margin-top: 2.5rem; max-width: 60ch;
}
.case-list li {
  position: relative; padding-left: 1.7rem;
  color: var(--mist); font-size: 1.05rem;
}
.case-list li::before {
  content: ""; position: absolute; left: 0; top: 0.6em;
  width: 8px; height: 8px;
  border-left: 1.5px solid var(--champagne); border-bottom: 1.5px solid var(--champagne);
  transform: rotate(-45deg);
}

.case-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 3rem; color: var(--text-muted);
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em;
  transition: color 0.2s var(--ease);
}
.case-back:hover { color: var(--champagne); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .plan:hover, .work-item:hover .work-item__frame { transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile[data-open] { display: flex; }
  .footer__inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .section__title { max-width: 100%; }
  .hero__actions .btn, .contact__actions .btn { width: 100%; }
}
