/* ═══════════════════════════════════════════════════════════════
   ATITEX — Editorial Restraint
   Typography-first · Cream/Navy/Gold · Asymmetric rhythm
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand */
  --navy:          #1B3A5C;
  --navy-deep:     #112437;
  --navy-ink:      #0A1A2C;
  --gold:          #C9A84C;
  --gold-soft:     #D9BE72;
  --gold-deep:     #9C7F31;
  --muted:         #7A8FA6;

  /* Neutral cream stack */
  --cream:         #F7F3EA;
  --cream-warm:    #EFE8D9;
  --cream-line:    #E5DBC6;
  --ink:           #15212F;
  --ink-soft:      #3C4A5B;
  --ink-mute:      #6E7A8A;

  /* Functional */
  --success:       #4F8A5B;
  --error:         #B94545;

  /* Typography */
  --font-display:  'Fraunces', 'Cambria', 'Georgia', serif;
  --font-body:     'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Fluid scale — Major Third 1.25 */
  --text-xs:       clamp(0.75rem, 0.72rem + 0.12vw, 0.8125rem);
  --text-sm:       clamp(0.875rem, 0.84rem + 0.15vw, 0.9375rem);
  --text-base:     clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg:       clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --text-xl:       clamp(1.375rem, 1.25rem + 0.6vw, 1.625rem);
  --text-2xl:      clamp(1.75rem, 1.5rem + 1.2vw, 2.25rem);
  --text-3xl:      clamp(2.25rem, 1.85rem + 2vw, 3.25rem);
  --text-4xl:      clamp(2.75rem, 2.1rem + 3.2vw, 4.5rem);
  --text-5xl:      clamp(3.25rem, 2.2rem + 5.2vw, 6.5rem);

  /* Spacing */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.25rem;
  --s-6:  1.5rem;
  --s-8:  2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;
  --s-40: 10rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Motion */
  --dur-fast:   160ms;
  --dur-base:   240ms;
  --dur-slow:   440ms;
  --dur-slower: 680ms;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows — tinted navy, layered */
  --sh-1: 0 1px 2px rgba(17,36,55,.04);
  --sh-2: 0 2px 4px rgba(17,36,55,.05), 0 1px 1px rgba(17,36,55,.03);
  --sh-3: 0 4px 10px rgba(17,36,55,.05), 0 2px 3px rgba(17,36,55,.04);
  --sh-4: 0 8px 22px rgba(17,36,55,.07), 0 3px 6px rgba(17,36,55,.04);
  --sh-lift: 0 14px 40px rgba(17,36,55,.10), 0 4px 12px rgba(17,36,55,.05);

  /* Layout */
  --wrap:          1240px;
  --wrap-narrow:   960px;
  --wrap-wide:     1380px;
  --gutter:        clamp(1.25rem, 3vw, 2rem);
  --section-y:     clamp(5rem, 10vw, 8.5rem);
  --section-y-lg:  clamp(7rem, 13vw, 11rem);

  /* Z-index scale */
  --z-nav:    40;
  --z-menu:   50;
  --z-modal:  60;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ol, ul { padding: 0; list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--navy); color: var(--cream); }

.skip {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-md);
  font-weight: 600;
  transition: top var(--dur-base) var(--ease);
}
.skip:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 3. TYPOGRAPHY UTILITIES ──────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-light { color: rgba(247,243,234,.7); }
.eyebrow-light::before { background: var(--gold); }

.sec-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-4xl);
  font-variation-settings: "opsz" 96, "SOFT" 30, "WONK" 0;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy-ink);
  margin-top: var(--s-4);
  max-width: 16ch;
}
.sec-h2 em {
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 60, "WONK" 1;
  color: var(--navy);
}

.sec-lead {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: var(--s-5);
  font-weight: 400;
}

/* ── 4. BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--r-full);
  transition: transform var(--dur-base) var(--ease),
              background-color var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
  white-space: nowrap;
  position: relative;
  will-change: transform;
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  box-shadow: none;
  padding-right: 0.4rem;
}
.btn-primary .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: var(--navy-ink);
  border-radius: var(--r-full);
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease);
}
.btn-primary:hover {
  background: var(--navy-deep);
  box-shadow: none;
  transform: translateY(-1px);
}
.btn-primary:hover .btn-arrow { transform: translate(3px, -1px); background: var(--gold-soft); }
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247,243,234,.25);
  padding: 0.95rem 1.5rem;
}
.btn-ghost:hover {
  background: rgba(247,243,234,.07);
  border-color: rgba(247,243,234,.45);
}

/* ── 5. NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 1.25rem var(--gutter);
  transition: padding var(--dur-slow) var(--ease), background-color var(--dur-base) var(--ease);
  color: var(--cream);
}
.nav-inner {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-full);
  transition: background var(--dur-slow) var(--ease),
              border-color var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              backdrop-filter var(--dur-slow) var(--ease);
  border: 1px solid transparent;
}

.nav.scrolled { padding: 0.75rem var(--gutter); }
.nav.scrolled .nav-inner {
  background: rgba(27,58,92,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-color: rgba(201,168,76,.18);
  box-shadow: 0 8px 30px rgba(17,36,55,.25);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--cream);
  font-weight: 600;
}
.nav-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 36px;
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease);
}
.nav-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(201,168,76,.3));
}
.nav-logo:hover .nav-mark { transform: rotate(-2deg) scale(1.04); }
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.018em;
  color: var(--cream);
  font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 0;
  display: inline-flex;
  align-items: baseline;
}
.nav-dotmark {
  color: var(--gold);
  margin-left: 1px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(247,243,234,.8);
  padding: 0.35rem 0.25rem;
  position: relative;
  transition: color var(--dur-base) var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.25rem; right: 0.25rem;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-self: end;
}
.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(247,243,234,.65);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.nav-dot {
  width: 7px; height: 7px;
  background: #66C290;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(102,194,144,.15);
  animation: dotPulse 2.6s var(--ease) infinite;
}

/* Language switcher */
.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: rgba(247,243,234,.06);
  border: 1px solid rgba(247,243,234,.12);
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-lang-opt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: rgba(247,243,234,.6);
  padding: 6px 10px;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
@media (hover: hover) {
  .nav-lang-opt:hover { color: var(--cream); }
}
.nav-lang-opt.is-active {
  color: var(--navy-ink);
  background: var(--gold);
  font-weight: 600;
}
@keyframes dotPulse {
  0%, 60%, 100% { box-shadow: 0 0 0 4px rgba(102,194,144,.15); }
  30% { box-shadow: 0 0 0 7px rgba(102,194,144,.05); }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--r-full);
  background: var(--gold);
  color: var(--navy-ink);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.nav-cta:hover { background: var(--gold-soft); transform: translateY(-1px); }
.nav-cta svg { transition: transform var(--dur-base) var(--ease-out); }
.nav-cta:hover svg { transform: translate(2px, -2px); }

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background: rgba(247,243,234,.08);
  border: 1px solid rgba(247,243,234,.18);
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--dur-base) var(--ease), top var(--dur-base) var(--ease);
}
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 23px; }
.nav-burger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

.mob-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  background: var(--navy-deep);
  padding: 6rem 2rem 3rem;
  transform: translateY(-100%);
  transition: transform var(--dur-slower) var(--ease-out);
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mob-menu.open { transform: translateY(0); visibility: visible; }
.mob-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mob-links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: var(--cream);
  font-weight: 400;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(247,243,234,.1);
  font-variation-settings: "opsz" 96, "SOFT" 40;
}
.mob-links .mob-cta { color: var(--gold); }
.mob-lang {
  display: flex;
  gap: 10px;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(247,243,234,.12);
  flex-wrap: wrap;
}
.mob-lang-opt {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,243,234,.65);
  padding: 8px 14px;
  border: 1px solid rgba(247,243,234,.15);
  border-radius: var(--r-full);
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease);
}
.mob-lang-opt.is-active {
  background: var(--gold);
  color: var(--navy-ink);
  border-color: var(--gold);
  font-weight: 600;
}
.mob-foot {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: rgba(247,243,234,.5);
  font-size: 0.85rem;
  font-family: var(--font-mono);
  line-height: 1.4;
}
.mob-foot span { display: block; }
.mob-foot span:first-child { color: rgba(247,243,234,.75); }

/* ── 6. HERO — stille split: typografie links, logo rechts ────── */
.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--navy-deep);
  color: var(--cream);
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 45% at 78% 45%, rgba(201,168,76,.09), transparent 65%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

/* ── LEFT: typografie ── */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.4vw, 5.5rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 20, "WONK" 0;
  position: relative;
  max-width: 13ch;
  opacity: 0;
  transform: translateY(14px);
  animation: heroRise 720ms var(--ease-out) 0.1s forwards;
}
.hero-h1 .h1-line { display: block; }
.hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  padding-right: 0.08em;
}
.hero-underline {
  display: block;
  width: min(420px, 58%);
  margin-top: 0.5rem;
  height: 12px;
  overflow: visible;
}
.hero-underline path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawUnderline 1.4s var(--ease-out) 0.7s forwards;
}
@keyframes drawUnderline { to { stroke-dashoffset: 0; } }
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: rgba(247,243,234,.72);
  max-width: 46ch;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(14px);
  animation: heroRise 720ms var(--ease-out) 0.22s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-top: 2.5rem;
  align-items: center;
  opacity: 0;
  transform: translateY(14px);
  animation: heroRise 720ms var(--ease-out) 0.34s forwards;
}
.hero-ghost {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(247,243,234,.55);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease);
}
.hero-ghost:hover { color: var(--gold); }

/* ── RIGHT: logo, geen frame, rustige gouden gloed ── */
.hero-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 900ms var(--ease-out) 0.5s forwards;
}
.hero-mark::before {
  content: "";
  position: absolute;
  inset: 10% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.22), rgba(201,168,76,.06) 45%, transparent 72%);
  filter: blur(40px);
  z-index: -1;
}
.hero-mark img {
  width: min(100%, 420px);
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.35));
}

/* ── 7. BRAND PROMISE ─────────────────────────────────────────── */
.promise {
  background: var(--cream);
  padding: calc(var(--section-y) * 0.95) var(--gutter);
  border-bottom: 1px solid var(--cream-line);
}
.promise-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.promise-eye {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-deep);
}
.promise-eye::before {
  content: "— ";
  color: var(--gold);
}
.promise-lead {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  line-height: 1.25;
  font-weight: 400;
  color: var(--navy-ink);
  font-variation-settings: "opsz" 96, "SOFT" 30;
  max-width: 62ch;
  letter-spacing: -0.015em;
  margin-top: -1.5rem;
}
.promise-lead em {
  font-style: italic;
  color: var(--navy);
  font-variation-settings: "opsz" 96, "SOFT" 40, "WONK" 1;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  border-top: 1px solid var(--cream-line);
  padding-top: clamp(2rem, 3vw, 2.75rem);
}
.promise-pt {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pp-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
}
.pp-h {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.3vw, 1.35rem);
  font-weight: 500;
  color: var(--navy-ink);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48, "SOFT" 30;
}
.pp-p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 32ch;
}

/* ── 8. DIENSTEN ──────────────────────────────────────────────── */
.svc {
  padding: var(--section-y-lg) var(--gutter);
  background: var(--cream);
  position: relative;
}

/* Editorial split: narrow intro left, bento right */
.svc-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.svc-intro {
  position: sticky;
  top: 6rem;
  align-self: start;
}
.svc-intro .sec-h2 { margin-top: 1rem; max-width: 12ch; }
.svc-intro .sec-lead {
  margin-top: 1.5rem;
  max-width: 36ch;
  color: var(--ink-soft);
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease);
}
.svc-link .svl-label {
  position: relative;
}
.svc-link .svl-label::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  transform-origin: left;
  transition: transform 420ms var(--ease-out), opacity var(--dur-base) var(--ease);
}
.svc-link .svl-arrow {
  display: inline-flex;
  transition: transform 320ms var(--ease-out);
}
@media (hover: hover) {
  .svc-link:hover { color: var(--navy); }
  .svc-link:hover .svl-label::after { opacity: 0.9; transform: scaleX(1.05); }
  .svc-link:hover .svl-arrow { transform: translateX(3px); }
}

/* RIGHT column — clean 2-col grid, 6 cells (5 services + CTA) */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  min-width: 0;
}

/* "Werkwijze" CTA card at slot 06 */
.svc-more {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--navy);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
}
@media (hover: hover) {
  .svc-more:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
  }
  .svc-more:hover .sm-arrow { transform: translateX(6px); color: var(--gold); }
}
.sm-eye {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.sm-h {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48, "SOFT" 60, "WONK" 1;
  line-height: 1.2;
  margin-top: 0.85rem;
  max-width: 18ch;
}
.sm-arrow {
  align-self: flex-start;
  margin-top: 1rem;
  color: rgba(247,243,234,.7);
  transition: transform var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease);
}

.svc-card {
  position: relative;
  background: var(--cream-warm);
  border: 1px solid var(--cream-line);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: border-color var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
  overflow: hidden;
}
@media (hover: hover) {
  .svc-card:hover {
    border-color: rgba(201,168,76,.45);
    transform: translateY(-2px);
    background: #F3ECD8;
  }
  .svc-card:hover .sc-icon { background: var(--gold); color: var(--navy-ink); border-color: var(--gold); }
}
.sc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--gold-deep);
  margin-bottom: 1.25rem;
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.svc-card .svc-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  opacity: 0.7;
}
.svc-card .svc-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 400;
  color: var(--navy-ink);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48, "SOFT" 60, "WONK" 1;
  line-height: 1.15;
}
.svc-card .svc-desc {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 0.65rem;
}


/* ── 9. PORTFOLIO / CASE ──────────────────────────────────────── */
.port {
  padding: var(--section-y-lg) var(--gutter);
  background: var(--cream-warm);
  border-top: 1px solid var(--cream-line);
}
.port-head {
  max-width: var(--wrap);
  margin: 0 auto 4.5rem;
}
.port-head .sec-lead { max-width: 56ch; }

.case {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.case-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--navy-ink);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
}
.case-desc {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 1.5rem;
  max-width: 46ch;
}
.case-desc strong { color: var(--navy-ink); font-weight: 600; }

.case-kv {
  margin-top: 2.25rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--cream-line);
}
.case-kv > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--cream-line);
  align-items: baseline;
}
.case-kv dt {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
}
.case-kv dd {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}

.case-quote {
  margin-top: 2.5rem;
  padding: 1.75rem 0 0.5rem 2rem;
  border-left: 2px solid var(--gold);
  position: relative;
}
.case-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  line-height: 1.35;
  color: var(--navy-ink);
  font-variation-settings: "opsz" 96, "SOFT" 70, "WONK" 1;
  font-weight: 400;
}
.cq-foot {
  margin-top: 1.15rem;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.cq-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-ink);
  letter-spacing: -0.005em;
}
.cq-sep {
  color: var(--gold);
  font-weight: 400;
}
.cq-org {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.case-right { position: sticky; top: 100px; }
.case-viz {
  position: relative;
  padding: 1rem;
  background: linear-gradient(165deg, rgba(27,58,92,.06), rgba(201,168,76,.03));
  border-radius: var(--r-2xl);
  border: 1px solid var(--cream-line);
}
.case-window {
  background: #FCFAF4;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lift);
  border: 1px solid var(--cream-line);
}
.cw-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(180deg, #F4EEDF, #ECE4CF);
  border-bottom: 1px solid var(--cream-line);
}
.cw-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(17,36,55,.15);
}
.cw-dot:nth-child(1) { background: #E5705B; }
.cw-dot:nth-child(2) { background: #E3C04A; }
.cw-dot:nth-child(3) { background: #7BA76A; }
.cw-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-mute);
  letter-spacing: 0.03em;
}
.cw-body {
  padding: 1.25rem;
  display: grid;
  gap: 0.5rem;
}
.cw-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0.8rem;
  background: var(--cream);
  border-radius: var(--r-sm);
  border: 1px solid var(--cream-line);
}
.cw-row.cw-muted { opacity: 0.55; }
.cw-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  padding: 2px 6px;
  background: rgba(201,168,76,.12);
  border-radius: 3px;
}
.cw-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink);
}
.cw-pill {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--r-full);
  color: var(--ink-mute);
  background: rgba(17,36,55,.05);
}
.cw-pill.cw-ok { color: var(--success); background: rgba(79,138,91,.1); }
.cw-pill.cw-run { color: var(--gold-deep); background: rgba(201,168,76,.15); }

.cw-progress {
  margin-top: 0.75rem;
  height: 4px;
  background: rgba(17,36,55,.06);
  border-radius: var(--r-full);
  overflow: hidden;
}
.cw-bar-fill {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: var(--r-full);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.4s var(--ease-out);
}
.rev.v .cw-bar-fill { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .cw-bar-fill { transform: scaleX(1); transition: none; }
}
.cw-stats {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.case-link-wrap {
  max-width: var(--wrap);
  margin: 4rem auto 0;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--cream-line);
}
.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--navy);
  font-variation-settings: "opsz" 96, "SOFT" 70;
  transition: transform var(--dur-base) var(--ease-out);
}
.case-link .cl-arrow {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-out);
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-body);
}
.case-link:hover .cl-arrow { transform: translateX(6px); }

/* ── Case compact (Crisis Comm) ───────────────────────────── */
.case-compact {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.cc-left { display: flex; flex-direction: column; gap: 1.25rem; min-width: 0; }
.cc-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 0.35rem 0.7rem;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--r-full);
}
.cc-tag::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,168,76,.5);
  animation: cc-pulse 2.4s ease-out infinite;
}
@keyframes cc-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.5); }
  50%     { box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}
.cc-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy-ink);
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
  margin: 0;
}
.cc-desc {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
}
.cc-desc strong { color: var(--navy-ink); font-weight: 600; }
.cc-stack { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.cc-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.8rem;
  background: rgba(27,58,92,.04);
  border: 1px solid rgba(27,58,92,.1);
  border-radius: var(--r-full);
  color: var(--navy);
}

/* Phone mock */
.cc-right { display: flex; justify-content: center; }
.cc-phone {
  width: min(260px, 90%);
  aspect-ratio: 9 / 18;
  background: linear-gradient(165deg, #0B1A2B, #112437 55%, #0B1A2B);
  border-radius: 36px;
  padding: 10px;
  position: relative;
  box-shadow:
    0 30px 60px -20px rgba(17,36,55,.45),
    inset 0 0 0 1px rgba(201,168,76,.12);
}
.cc-phone-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.cc-phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #14283D, #0D1B2A);
  border-radius: 28px;
  padding: 48px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--cream);
  font-size: 0.72rem;
  overflow: hidden;
}
.cc-ph-hdr {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.5rem 0.6rem;
  border-bottom: 1px solid rgba(247,243,234,.08);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(247,243,234,.6);
  text-transform: uppercase;
}
.cc-ph-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.cc-ph-live { animation: cc-pulse 2.4s ease-out infinite; }
.cc-ph-msg {
  max-width: 80%;
  padding: 0.5rem 0.7rem;
  border-radius: 14px;
  line-height: 1.35;
  font-size: 0.72rem;
}
.cc-ph-in {
  align-self: flex-start;
  background: rgba(247,243,234,.08);
  border-top-left-radius: 4px;
}
.cc-ph-out {
  align-self: flex-end;
  background: var(--gold);
  color: var(--navy-ink);
  font-weight: 500;
  border-top-right-radius: 4px;
}
.cc-ph-from {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.cc-ph-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.6rem;
  border-top: 1px solid rgba(247,243,234,.08);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(247,243,234,.55);
  text-transform: uppercase;
}
.cc-ph-icn { color: var(--gold); display: inline-flex; }

/* ── CrisisComm echte app-screenshot (egale bezels, geen fake notch) ── */
.cc-appshot {
  width: min(300px, 92%);
  position: relative;
  border-radius: 34px;
  padding: 14px;
  background: linear-gradient(165deg, #0B1A2B, #112437 55%, #0B1A2B);
  box-shadow:
    0 34px 70px -22px rgba(17,36,55,.5),
    inset 0 0 0 1px rgba(201,168,76,.14);
}
.cc-appshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  background: #F3F6FA;
}

/* ── 10. WERKWIJZE ───────────────────────────────────────────── */
.proc {
  padding: var(--section-y-lg) var(--gutter);
  background: var(--cream);
}
.proc-head {
  max-width: var(--wrap);
  margin: 0 auto 4rem;
}

.proc-steps {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  gap: 0;
  counter-reset: step;
}
.proc-step {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--cream-line);
  transition: padding-left var(--dur-base) var(--ease);
  position: relative;
}
.proc-step:last-child { border-bottom: 1px solid var(--cream-line); }
.proc-step { transition: padding var(--dur-slow) var(--ease-out); }
.proc-step .ps-num { transition: color 600ms var(--ease), transform 600ms var(--ease-out); }
.proc-step:hover { padding-left: 1rem; }
.proc-step:hover .ps-num { transform: translateX(-6px) scale(1.02); }
/* Scroll-revealed: gold EMERGES and PERSISTS (stays gold) */
.proc-step.v .ps-num {
  animation: proc-gold-emerge 1400ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.proc-step.v:nth-child(1) .ps-num { animation-delay: 120ms; }
.proc-step.v:nth-child(2) .ps-num { animation-delay: 320ms; }
.proc-step.v:nth-child(3) .ps-num { animation-delay: 520ms; }
.proc-step.v:nth-child(4) .ps-num { animation-delay: 720ms; }
@keyframes proc-gold-emerge {
  0%   {
    color: rgba(27,36,55,0.25);
    transform: translateX(12px);
    letter-spacing: 0em;
  }
  60%  {
    color: var(--gold);
    transform: translateX(-2px);
    letter-spacing: -0.04em;
  }
  100% {
    color: var(--gold);
    transform: translateX(0);
    letter-spacing: -0.04em;
  }
}

.ps-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--navy-ink);
  font-variation-settings: "opsz" 144, "SOFT" 10;
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.ps-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 40, "WONK" 1;
  color: var(--navy-ink);
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}
.ps-body p {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 58ch;
}
.ps-time {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold-deep);
  padding: 0.25rem 0.7rem;
  background: rgba(201,168,76,.1);
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
}

/* ── 11. ABOUT ───────────────────────────────────────────────── */
.about {
  padding: var(--section-y-lg) var(--gutter);
  background: var(--cream-warm);
  border-top: 1px solid var(--cream-line);
}
.about-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.about-eyebrow {
  grid-column: 1 / -1;
  justify-self: start;
  text-align: left;
  margin-bottom: -2.5rem;
}

.about-left { position: static; }

/* ── Editorial monogram card (geen foto — nooit meer renderproblemen) ── */
.about-card {
  position: relative;
  padding: 2.5rem 2rem 2.25rem;
  background: linear-gradient(165deg, #FCFAF4 0%, var(--cream-warm) 100%);
  border-radius: var(--r-2xl);
  border: 1px solid var(--cream-line);
  box-shadow: var(--sh-4);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(201,168,76,.12), transparent 55%),
    radial-gradient(70% 50% at 0% 100%, rgba(27,58,92,.06), transparent 55%);
  pointer-events: none;
  z-index: -1;
}
.abc-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
/* Portret-variant: echte foto ipv monogram */
.abc-portrait {
  position: relative;
  margin: 0.25rem auto 1.5rem;
  width: clamp(220px, 64%, 280px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 24px 50px -16px rgba(17,36,55,.4);
  border: 3px solid rgba(247,243,234,.85);
  outline: 2px solid rgba(201,168,76,.3);
  outline-offset: -1px;
  isolation: isolate;
}
.abc-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
/* Legacy monogram (niet meer gebruikt op index-pagina's) */
.abc-monogram {
  position: relative;
  margin: 1.75rem 0 1.25rem;
  text-align: center;
  line-height: 0.85;
}
.abc-monogram .abc-initial {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(8rem, 16vw, 11rem);
  letter-spacing: -0.06em;
  color: var(--navy-ink);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  display: inline-block;
  background: linear-gradient(180deg, var(--navy-ink) 0%, var(--navy) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 18px rgba(27,36,55,.08);
}
.abc-monogram .abc-dot-accent {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  font-style: normal;
  margin-left: -0.08em;
}
.abc-meta {
  text-align: center;
  margin-bottom: 1.5rem;
}
.abc-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy-ink);
  font-variation-settings: "opsz" 48, "SOFT" 40;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.abc-role {
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.abc-rule {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 auto 1.25rem;
  width: 65%;
  max-width: 180px;
}
.abc-rule::before,
.abc-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream-line) 30%, var(--cream-line) 70%, transparent);
}
.abc-rule-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.abc-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--cream-line);
}
.abc-fact {
  text-align: left;
}
.abc-fact-lbl {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 0.3rem;
}
.abc-fact-val {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--navy-ink);
  font-weight: 500;
  line-height: 1.3;
}
.abc-fact-val .abc-mini {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-mute);
  font-weight: 400;
  margin-top: 0.15rem;
}


.about-right .sec-h2 { max-width: none; }
.about-body {
  margin-top: 2rem;
  display: grid;
  gap: 1.4rem;
}
.about-body p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 58ch;
}
.about-body em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy-ink);
  font-weight: 500;
  font-variation-settings: "opsz" 24, "SOFT" 70, "WONK" 1;
}

/* Closing line sits apart — gold rule above, more display-scale serif */
.about-body .about-close {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(27, 58, 92, 0.12);
  max-width: 58ch;
}
.about-body .about-close em {
  font-size: 1.28rem;
  line-height: 1.4;
  font-variation-settings: "opsz" 36, "SOFT" 80, "WONK" 1;
  letter-spacing: -0.005em;
  color: var(--navy-ink);
  display: inline-block;
  position: relative;
}
.about-body .about-close em::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.9;
}

.about-tags {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

/* ── 12. FAQ ─────────────────────────────────────────────────── */
.faq {
  padding: var(--section-y-lg) var(--gutter);
  background: var(--cream);
}
.faq-head {
  max-width: var(--wrap);
  margin: 0 auto 3.5rem;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--cream-line);
  transition: border-color var(--dur-base) var(--ease);
}
.faq-item:last-child { border-bottom: 1px solid var(--cream-line); }
.faq-item summary {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--navy-ink);
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  font-variation-settings: "opsz" 48, "SOFT" 30;
  letter-spacing: -0.01em;
  transition: color var(--dur-base) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(currentColor, currentColor) center/14px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center/1.5px 14px no-repeat;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease);
  transform: translateY(-50%);
  color: var(--gold);
}
.faq-item[open] summary::after {
  background:
    linear-gradient(currentColor, currentColor) center/14px 1.5px no-repeat;
  color: var(--navy);
}
.faq-item:hover summary { color: var(--navy); }
.faq-body {
  padding: 0 0 1.75rem 0;
  max-width: 64ch;
}
.faq-body p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ── 13. CTA / CONTACT ───────────────────────────────────────── */
.cta {
  padding: var(--section-y-lg) var(--gutter);
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(201,168,76,.1), transparent 60%),
    linear-gradient(180deg, var(--navy), var(--navy-deep));
  z-index: 0;
}
.cta-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cta-h2 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin-top: 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 20;
}
.cta-h2 em {
  font-style: italic;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.cta-lead {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: rgba(247,243,234,.75);
  max-width: 44ch;
  margin-top: 1.75rem;
}
.cta-direct {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247,243,234,.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(247,243,234,.6);
}
.cta-mail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  transition: color var(--dur-base) var(--ease);
  letter-spacing: 0;
}
.cta-mail:hover { color: var(--gold-soft); }
.cta-sep { color: rgba(247,243,234,.3); }

.cta-form {
  background: rgba(247,243,234,.04);
  border: 1px solid rgba(247,243,234,.12);
  border-radius: var(--r-2xl);
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
  backdrop-filter: blur(4px);
}
.fg {
  display: grid;
  gap: 0.45rem;
}
.fg label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(247,243,234,.55);
  font-weight: 500;
}
.fg-opt { text-transform: none; letter-spacing: 0; opacity: 0.6; }
.fg input, .fg textarea {
  width: 100%;
  background: rgba(247,243,234,.05);
  border: 1px solid rgba(247,243,234,.12);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
.fg input:focus, .fg textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(247,243,234,.08);
}
.fg input.err, .fg textarea.err {
  border-color: var(--error);
  background: rgba(185,69,69,.08);
}
.fg textarea { resize: vertical; min-height: 110px; }
.fg ::placeholder { color: rgba(247,243,234,.35); }

.btn-submit {
  justify-content: space-between;
  width: 100%;
  background: var(--gold);
  color: var(--navy-ink);
  padding-right: 0.4rem;
}
.btn-submit .btn-arrow { background: var(--navy); color: var(--gold); }
.btn-submit:hover { background: var(--gold-soft); }
.btn-submit:hover .btn-arrow { background: var(--navy-deep); }
.btn-submit.done { background: var(--success); color: #fff; }
.btn-submit.done .btn-arrow { background: rgba(255,255,255,.2); color: #fff; }

.fg-privacy {
  font-size: 0.78rem;
  color: rgba(247,243,234,.45);
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* "Antwoord meestal binnen 24u" — direct onder de submit knop */
.fg-reply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: -0.15rem;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  color: rgba(247,243,234,.6);
  letter-spacing: 0.02em;
  text-align: center;
}
.fg-reply::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.18);
  animation: reply-pulse 2.8s ease-in-out infinite;
}
@keyframes reply-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,168,76,.18); }
  50%      { box-shadow: 0 0 0 5px rgba(201,168,76,.08); }
}

/* Live status / feedback after submit */
.fg-status {
  min-height: 1.2em;
  margin-top: 0.8rem;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: rgba(247,243,234,.6);
  transition: color 160ms ease;
}
.fg-status:empty { display: none; }
.fg-status.ok  { color: var(--gold); }
.fg-status.err { color: #ff9d8a; }

/* ── 14. FOOTER ──────────────────────────────────────────────── */
.foot {
  background: var(--navy-deep);
  color: rgba(247,243,234,.6);
  padding: 4rem var(--gutter) 2.5rem;
  border-top: 1px solid rgba(247,243,234,.08);
}
.foot-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem 4rem;
  align-items: start;
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.foot-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.foot-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.foot-word {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 0;
}
.foot-tag {
  grid-column: 2;
  font-size: 0.95rem;
  color: rgba(247,243,234,.55);
  max-width: 42ch;
  line-height: 1.5;
}
.foot-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247,243,234,.08);
}
.foot-links a {
  font-size: 0.9rem;
  color: rgba(247,243,234,.7);
  transition: color var(--dur-base) var(--ease);
}
.foot-links a:hover { color: var(--gold); }
.foot-contact {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.foot-contact a { color: var(--gold); }
.foot-contact a:hover { color: var(--gold-soft); }
.foot-contact span { color: rgba(247,243,234,.45); }

/* Legal block — required BE disclosures */
.foot-legal {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem 1.5rem;
  padding-top: 1.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(247,243,234,.06);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(247,243,234,.55);
  line-height: 1.4;
}
.foot-legal-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.foot-legal-item.foot-legal-addr { grid-column: span 2; }
.foot-legal-lbl {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,243,234,.32);
  line-height: 1.2;
  margin: 0;
}
.foot-legal-val {
  display: block;
  font-size: 0.78rem;
  color: rgba(247,243,234,.72);
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 780px) {
  .foot-legal-item.foot-legal-addr { grid-column: span 1; }
}

.foot-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(247,243,234,.06);
  font-size: 0.78rem;
  color: rgba(247,243,234,.4);
  font-family: var(--font-mono);
}
.foot-sep { color: rgba(247,243,234,.25); }

/* ── 15. SCROLL REVEAL ───────────────────────────────────────── */
.rev {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slower) var(--ease-out),
              transform var(--dur-slower) var(--ease-out);
}
.rev.v { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .rev { opacity: 1; transform: none; transition: none; }
}

/* ── 16. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  /* Nav — tighter gaps to prevent CTA from wrapping */
  .nav-status { display: none; }
  .nav-inner { gap: 1rem; }
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: 0.82rem; }
  .nav-cta { white-space: nowrap; font-size: 0.8rem; padding: 0.5rem 0.85rem; }
  .nav-lang { order: 1; }
  .nav-lang-opt { padding: 5px 7px; font-size: 10px; }

  .svc-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .svc-intro { position: static; }
  .svc-intro .sec-h2 { max-width: none; }
  .svc-intro .sec-lead { max-width: 58ch; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .case { grid-template-columns: 1fr; gap: 3rem; }
  .case-right { position: static; }
  .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about-left { position: static; max-width: 360px; }
  .cta-wrap { grid-template-columns: 1fr; gap: 3rem; }
}

/* Tablet */
@media (max-width: 900px) {
  .promise-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .promise-lead { font-size: clamp(1.4rem, 4vw, 1.8rem); }

  /* Hero: stack on tablet */
  .hero-split { grid-template-columns: 1fr; gap: 3rem; }
  .hero-mark { min-height: 260px; order: -1; }
  .hero-mark img { width: min(70%, 300px); }
  .hero-h1 { max-width: 100%; }
}

@media (max-width: 780px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-lang { display: none; }
  .nav-burger { display: inline-block; }
  .nav-inner { grid-template-columns: 1fr auto; }

  .hero { padding-top: 7rem; min-height: auto; padding-bottom: 3rem; }
  .hero-mark { min-height: 200px; }
  .hero-mark img { width: min(60%, 240px); }

  /* Mobile mega-nav: tighter vertical spacing so entries breathe */
  .mob-links { gap: 0.25rem; }
  .mob-links a {
    font-size: clamp(1.9rem, 7.5vw, 2.75rem);
    padding: 0.65rem 0;
    line-height: 1.15;
  }

  /* COLLAPSIBLE SERVICE CARDS ON MOBILE — title by default, tap to reveal details */
  .svc-grid { grid-template-columns: 1fr; gap: 0.65rem; }
  .svc-card {
    min-height: 0;
    padding: 1.1rem 3rem 1.1rem 1.1rem;
    border-radius: var(--r-lg);
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(201,168,76,.12);
    touch-action: manipulation;
    user-select: none;
    transition: padding var(--dur-base) var(--ease),
                background var(--dur-base) var(--ease);
  }
  .svc-card * { pointer-events: none; }
  .svc-card .sc-icon { display: none; }
  .svc-card .svc-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transition: max-height 280ms var(--ease-out),
                opacity 220ms var(--ease-out),
                margin 280ms var(--ease-out);
  }
  /* Verberg nummer op mobile — conflicteert met + icoon */
  .svc-card .svc-num { display: none; }
  .svc-card .svc-title {
    font-size: 1.2rem;
    line-height: 1.2;
    margin: 0;
  }
  .svc-card::after {
    content: "+";
    position: absolute;
    top: 50%; right: 1.1rem;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
    color: var(--gold-deep);
    opacity: 0.75;
    pointer-events: none;
    transition: transform 200ms var(--ease-out), opacity 200ms var(--ease);
  }
  .svc-card.is-open {
    padding-bottom: 1.4rem;
    background: var(--cream-warm);
  }
  .svc-card.is-open::after {
    transform: translateY(-50%) rotate(45deg);
    opacity: 1;
    color: var(--gold);
  }
  .svc-card.is-open .svc-desc {
    max-height: 240px;
    opacity: 1;
    margin-top: 0.7rem;
  }

  /* "Hoe ik werk" CTA-kaart — compacter op mobile, niet meer dat grote frame */
  .svc-more {
    min-height: 0;
    padding: 1.1rem 1.2rem;
    border-radius: var(--r-lg);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .svc-more .sm-eye { display: none; }
  .svc-more .sm-h {
    font-size: 1rem;
    margin-top: 0;
    max-width: none;
    flex: 1;
    line-height: 1.25;
  }
  .svc-more .sm-arrow {
    align-self: center;
    margin-top: 0;
    flex-shrink: 0;
  }

  /* Case compact (Crisis Comm) — stack on mobile */
  .case-compact { grid-template-columns: 1fr; gap: 2.25rem; }
  .cc-right { order: -1; }
  .cc-phone { width: min(220px, 70%); }
  .cc-desc { font-size: 1rem; }
  .cc-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }

  /* Case link — keep centered on mobile */
  .case-link { font-size: 1.1rem; padding: 1.25rem 1.5rem; }

  /* Werkwijze — tighten, center, slight left bias fix */
  .proc-step { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.75rem 0.25rem; }
  .proc-step:hover { padding-left: 0.25rem; }
  .ps-num { font-size: 2.5rem; }
  .proc-head,
  .proc-steps { padding: 0 0.25rem; }

  /* About — center photo on mobile */
  .about-wrap { grid-template-columns: 1fr; gap: 2.5rem; justify-items: center; }
  .about-eyebrow {
    justify-self: stretch !important;
    align-self: start;
    width: 100%;
    margin-bottom: 0;
    text-align: left !important;
    padding: 0;
  }
  .about-eyebrow .eyebrow {
    margin-left: 0 !important;
    margin-right: auto !important;
    display: inline-flex !important;
  }
  .about-left {
    position: static;
    margin: 0 auto;
    max-width: 340px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .about-card {
    margin: 0 auto; width: 100%; max-width: 360px;
    padding: 2rem 1.5rem 1.75rem;
    min-height: 0;
  }
  .abc-monogram .abc-initial { font-size: clamp(7rem, 24vw, 9rem); }
  .abc-facts { grid-template-columns: 1fr; gap: 0.85rem; }
  .about-right { width: 100%; text-align: left; }
  .about-right .eyebrow { display: inline-flex; margin-bottom: 0.75rem; }

  /* Vlottere leesbaarheid "Over Atitex" tekst op mobile */
  .about-body { gap: 1.15rem; margin-top: 1.5rem; }
  .about-body p {
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.005em;
  }
  .about-body .about-close { padding-top: 1.2rem; margin-top: 1.2rem; }
  .about-body .about-close em { font-size: 1.1rem; line-height: 1.45; }

  /* Failsafe: forceer footer legal items in kolom zodat labels niet aan values plakken */
  .foot-legal-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.35rem !important;
  }
  .foot-legal-lbl { display: block !important; }
  .foot-legal-val { display: block !important; }

  /* Failsafe: recent werk (case-compact) fallback op mobile zodat content stapelt zelfs bij CSS cache issues */
  .case-compact { display: flex !important; flex-direction: column; gap: 2rem; }
  .cc-right { order: -1; width: 100%; display: flex !important; justify-content: center; }

  /* Mobile footer — stack legal info, readable sizes */
  .foot-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .foot-tag { grid-column: 1; }
  .foot-legal {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding-top: 1.5rem;
  }
  .foot-legal-item { gap: 0.3rem; }
  .foot-legal-lbl { font-size: 0.6rem; }
  .foot-legal-val { font-size: 0.95rem; }

  /* Mobile nav menu — more breathing space on lang chips, remove email/status */
  .mob-lang {
    gap: 10px;
    margin-top: 3rem;
    padding: 2rem 0.25rem 0;
  }
  .mob-foot { display: none !important; }

  .cta-form { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
  .sec-h2 { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero-cta { width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: space-between; }
  .btn { padding: 0.9rem 1.2rem; }
  .case-kv > div { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* ── 17. REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .rev { opacity: 1; transform: none; }
  .hero-underline path { stroke-dashoffset: 0; }
  .hero-h1, .hero-sub, .hero-cta, .hero-mark {
    opacity: 1 !important; transform: none !important;
  }
}

/* ── 18. PRINT ───────────────────────────────────────────────── */
@media print {
  .nav, .mob-menu, .cta-form, .hero-grain { display: none; }
  body { background: #fff; color: #000; }
  .hero, .cta, .foot { background: #fff; color: #000; }
}
