/* -----------------------------------------------------------
   TOKENS  — three surface pairs, one accent per surface
   ----------------------------------------------------------- */
:root {
  --canvas-maroon: #3a0006;
  --canvas-maroon-2: #2a0006;          /* nav bg + card bg on maroon */
  --canvas-cream:  #fbf2e5;
  --canvas-cream-2: #fef9f1;
  --canvas-forest: #0f2607;
  --canvas-forest-2: #081c04;

  --accent-coral:  #f3817f;
  --accent-coral-hi: #ffb9b5;
  --accent-brass:  #e8a800;
  --accent-brass-hi: #fed785;
  --accent-mint:   #9fc492;
  --accent-mint-hi: #cee6c6;

  --ink-cream:     #fef9f1;
  --ink-cream-muted: rgba(254,249,241, 0.72);
  --ink-cream-subtle: rgba(254,249,241, 0.48);
  --ink-dark:      #1a0f07;
  --ink-dark-muted: #5d4936;
  --ink-forest-deep: #0f2607;

  --font-display: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
  --font-hand: "Caveat", "Fraunces", cursive;
  --font-body:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --max-w: 1400px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --pad-section: clamp(5rem, 9vw, 9rem);
  --peel: 40px;

  --radius-card: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 60px -24px rgba(0,0,0,0.35);
}
@media (min-width: 1800px) {
  :root { --max-w: 1640px; }
}
@media (min-width: 2200px) {
  :root { --max-w: 1840px; }
}

/* -----------------------------------------------------------
   RESET / BASE
   ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  background: var(--canvas-maroon);
  color: var(--ink-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
p { margin: 0 0 1em; text-wrap: pretty; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin: 0;
  text-wrap: balance;
}
.h-display { font-size: clamp(2.75rem, 6.6vw, 6rem); text-transform: none; letter-spacing: -0.025em; }
.h-section { font-size: clamp(2rem, 4.8vw, 4.25rem); text-transform: none; letter-spacing: -0.02em; }
.h-card    { font-size: clamp(1.5rem, 2vw, 2rem); }

/* pre-heading pill */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font: 700 12px/1 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.625em 1em;
  border-radius: var(--radius-pill);
  border: 1px solid currentColor;
}
.eyebrow--coral { color: var(--accent-coral); background: rgba(243,129,127,0.08); }
.eyebrow--brass { color: #8a5a00; background: rgba(232,168,0,0.14); border-color: rgba(232,168,0,0.55); }
.eyebrow--mint  { color: var(--accent-mint); background: rgba(159,196,146,0.08); }
@media (max-width: 700px) {
  .eyebrow { display: flex; width: fit-content; }
}

/* -----------------------------------------------------------
   LAYOUT
   ----------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }

/* surface + canvas peel */
.surface {
  position: relative;
  margin-top: -1px;
  border-top-left-radius: var(--peel);
  border-top-right-radius: var(--peel);
  padding-block: var(--pad-section);
  overflow: hidden;
  isolation: isolate;
}
.surface--maroon { background: var(--canvas-maroon); color: var(--ink-cream); }
.surface--cream  { background: var(--canvas-cream);  color: var(--ink-dark); }
.surface--forest { background: var(--canvas-forest); color: var(--ink-cream); }

/* Sand-dune texture on cream surfaces — two sliding SVG dune layers + faint grain */
.surface--cream .dunes {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 46%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.surface--cream .dunes::before,
.surface--cream .dunes::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 110% auto;
  will-change: transform;
  transform: translateY(110%);
  transition: transform 1400ms cubic-bezier(.22,.7,.2,1);
}
.surface--cream .dunes::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'><path d='M0,220 C180,180 320,260 520,230 C720,200 880,280 1080,250 C1260,225 1360,270 1440,240 L1440,320 L0,320 Z' fill='%23e8a800' fill-opacity='0.09'/></svg>");
  transition-duration: 1700ms;
  transform: translateY(120%);
}
.surface--cream .dunes::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'><path d='M0,260 C220,230 400,300 640,275 C860,252 1080,305 1260,285 C1340,278 1400,295 1440,290 L1440,320 L0,320 Z' fill='%23c98f00' fill-opacity='0.08'/></svg>");
  transition-delay: 200ms;
}
/* distant ridge wash stays static */
.surface--cream::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background: radial-gradient(60% 28% at 85% 12%, rgba(232,168,0,0.05) 0%, rgba(232,168,0,0) 70%);
}
/* slide in when section becomes visible */
.surface--cream.is-duned .dunes::before,
.surface--cream.is-duned .dunes::after { transform: translateY(0); }
.surface--cream > * { position: relative; z-index: 1; }
.surface--cream .bracket { z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .surface--cream .dunes::before,
  .surface--cream .dunes::after { transition: none; transform: translateY(0); }
}

/* L-bracket hairlines at section corners */
.bracket {
  position: absolute;
  width: 64px;
  height: 64px;
  pointer-events: none;
  opacity: 0.18;
}
.bracket svg { width: 100%; height: 100%; }
.bracket path {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.75;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  transition: stroke-dashoffset 2.4s ease;
}
.is-visible .bracket path { stroke-dashoffset: 0; }
.bracket--tl { top: 28px; left: 28px; }
.bracket--tr { top: 28px; right: 28px; transform: scaleX(-1); }
.bracket--bl { bottom: 28px; left: 28px; transform: scaleY(-1); }
.bracket--br { bottom: 28px; right: 28px; transform: scale(-1, -1); }

/* -----------------------------------------------------------
   BUTTONS / PILLS
   ----------------------------------------------------------- */
.btn {
  --btn-fg: var(--ink-cream);
  --btn-bg: var(--accent-coral);
  --btn-border: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  padding: 0.875em 1em 0.875em 1.4em;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-border);
  font: 600 15px/1 var(--font-body);
  letter-spacing: 0.02em;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.btn__icon {
  width: 32px; height: 32px;
  border-radius: 999px;
  display: inline-grid; place-items: center;
  background: var(--ink-cream);
  color: var(--ink-dark);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.btn:hover .btn__icon { transform: rotate(180deg); }
.btn:focus-visible { outline: 2px solid var(--accent-coral); outline-offset: 3px; }

.btn--primary { --btn-bg: var(--accent-coral); --btn-fg: #3a0006; }
.btn--primary .btn__icon { background: #3a0006; color: var(--accent-coral); }
.btn--primary:hover { --btn-bg: var(--accent-coral-hi); }

.btn--ghost-light {
  --btn-bg: transparent; --btn-fg: var(--ink-cream);
  --btn-border: rgba(254,249,241, 0.5);
}
.btn--ghost-light:hover { --btn-border: var(--ink-cream); }
.btn--ghost-light .btn__icon { background: transparent; color: var(--ink-cream); border: 1px solid rgba(254,249,241,0.5); }

.btn--ghost-dark {
  --btn-bg: transparent; --btn-fg: var(--ink-dark);
  --btn-border: rgba(26,15,7, 0.2);
}
.btn--ghost-dark:hover { --btn-border: var(--ink-dark); }
.btn--ghost-dark .btn__icon { background: var(--ink-dark); color: var(--canvas-cream); }

/* -----------------------------------------------------------
   WORD-FADE (progressive, scroll-driven)
   ----------------------------------------------------------- */
.wf { display: inline; }
.wf .w {
  display: inline-block;
  opacity: 0.18;
  transition: opacity 0.35s linear;
  will-change: opacity;
}
.wf .w.on { opacity: 1; }
.wf .w + .w { margin-left: 0.22em; }

/* -----------------------------------------------------------
   CARD STAGGER REVEAL
   ----------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.on { opacity: 1; transform: none; }

/* -----------------------------------------------------------
   SKIP LINK + FOCUS
   ----------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink-cream); color: var(--ink-dark);
  padding: 0.75em 1.25em; border-radius: var(--radius-pill);
  font-weight: 700; z-index: 1000;
  transition: top 160ms ease;
}
.skip-link:focus { top: 16px; outline: 2px solid var(--accent-coral); outline-offset: 2px; }

:focus-visible { outline: 2px solid var(--accent-coral); outline-offset: 3px; border-radius: 4px; }
.surface--cream :focus-visible  { outline-color: var(--accent-brass); }
.surface--forest :focus-visible { outline-color: var(--accent-mint); }

/* -----------------------------------------------------------
   NAV — floating pill
   ----------------------------------------------------------- */
.nav {
  position: fixed; inset: 40px 16px auto 16px;
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 10px 10px 10px 22px;
  background: rgba(42,0,6,0.72);
  border: 1px solid rgba(243,129,127,0.22);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 260ms ease, border-color 260ms ease;
}
.nav {
  transition: background 260ms ease, border-color 260ms ease, inset 360ms cubic-bezier(.2,.7,.2,1), padding 360ms cubic-bezier(.2,.7,.2,1);
}
.nav.scrolled {
  inset: 12px 16px auto 16px;
  padding: 8px 8px 8px 18px;
  background: rgba(26,0,4,0.92);
  border-color: rgba(243,129,127,0.35);
}
.nav.scrolled .nav__brand-mark {
  width: 72px; height: 72px;
  margin: -16px 6px -16px -12px;
}
.nav.scrolled .nav__link { font-size: 12px; }
.nav.scrolled .btn--primary.nav__cta { padding: 0.55em 0.55em 0.55em 0.95em; font-size: 13px; }
.nav.scrolled .btn--primary.nav__cta .btn__icon { width: 28px; height: 28px; }
@media (prefers-reduced-motion: reduce) {
  .nav { transition: none; }
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 0;
  color: var(--ink-cream);
  position: relative;
  z-index: 2;
}
.nav__brand-mark {
  display: inline-block;
  width: 116px; height: 116px;
  margin: -24px 8px -24px -18px;
  background: url('../images/shield.png') center / contain no-repeat;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.45));
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.nav__brand:hover .nav__brand-mark { transform: rotate(-4deg) scale(1.04); }
.nav__brand > span:not(.nav__brand-mark):not(.nav__brand-yr):not(.nav__brand-dot) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.nav__brand-dot, .nav__brand-yr { display: none; }
@media (max-width: 820px) {
  .nav__brand-mark { width: 88px; height: 88px; margin: -14px 4px -14px -12px; }
}
.nav__list {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__link {
  font: 600 13px/1 var(--font-body); letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 14px; border-radius: var(--radius-pill);
  color: var(--ink-cream-muted);
  transition: color 180ms ease, background 180ms ease;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ink-cream); background: rgba(243,129,127,0.08); }
.nav__cta {
  --btn-bg: var(--accent-coral); --btn-fg: #3a0006;
  padding: 10px 10px 10px 18px;
  font-weight: 700;
}
.nav__cta .btn__icon { background: #3a0006; color: var(--accent-coral); width: 28px; height: 28px; }
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(243,129,127,0.14);
  color: var(--ink-cream);
  align-items: center; justify-content: center;
}
@media (max-width: 920px) {
  .nav__list { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .nav { padding: 8px 8px 8px 18px; }
  .nav.is-open {
    flex-wrap: wrap;
    border-radius: 28px;
    background: rgba(20, 0, 4, 0.96);
  }
  .nav.is-open .nav__list {
    display: flex; flex-direction: column; align-items: stretch;
    flex-basis: 100%;
    gap: 0.25rem;
    padding: 0.75rem 0.5rem 1rem;
    margin: 0.5rem 0 0;
    border-top: 1px solid rgba(243,129,127,0.18);
  }
  .nav.is-open .nav__link {
    display: block;
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 14px;
  }
  .nav.is-open .nav__cta {
    display: inline-flex;
    align-self: stretch;
    justify-content: space-between;
    margin: 0 0.5rem 0.75rem;
  }
}

/* -----------------------------------------------------------
   HERO
   ----------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: clamp(9rem, 14vw, 12rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  color: var(--ink-cream);
  background:
    radial-gradient(80% 60% at 70% 20%, rgba(243,129,127,0.22) 0%, rgba(243,129,127,0) 60%),
    radial-gradient(60% 40% at 20% 90%, rgba(243,129,127,0.10) 0%, rgba(243,129,127,0) 60%),
    var(--canvas-maroon);
}
.hero__content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 380px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  will-change: transform, opacity;
  transform-origin: 50% 30%;
}
.hero__eyebrow-row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: clamp(1rem, 2vw, 1.75rem); }
.hero__eyebrow-meta {
  display: inline-flex; align-items: center; gap: 0.5em;
  font: 500 12px/1 var(--font-body); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-cream-subtle);
}
.hero__title { max-width: 12ch; overflow-wrap: normal; }
.hero__slogan {
  margin: 0.5rem 0 0;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
  color: var(--accent-coral);
  letter-spacing: 0;
  transform: rotate(-2deg);
  transform-origin: left center;
  display: inline-block;
}
.hero__slogan em { font-style: normal; }
.hero__sub {
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 56ch;
  font-size: clamp(1.0625rem, 1.3vw, 1.25rem);
  color: var(--ink-cream-muted);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: clamp(1.5rem, 3vw, 2.5rem); align-items: center; }
.hero__scroll {
  position: absolute;
  left: var(--gutter); bottom: clamp(1.25rem, 2.5vw, 2rem);
  display: inline-flex; align-items: center; gap: 0.6rem;
  font: 500 11px/1 var(--font-body); letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-cream-subtle);
  will-change: opacity;
  pointer-events: none;
}
.hero__scroll::before { content: ""; width: 24px; height: 1px; background: currentColor; }

/* focal mark column */
.focal {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 380px;
  width: 100%;
  align-self: end;
  justify-self: end;
}
.focal__wire {
  position: absolute; left: 50%; top: -140px; bottom: 55%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(254,249,241,0) 0%, rgba(254,249,241,0.55) 55%, rgba(254,249,241,0) 100%);
  pointer-events: none;
}
.focal__stage {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  transform-origin: 50% 0%;
}
.focal__halo {
  position: absolute; inset: 5% 8%;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(243,129,127,0.42), rgba(243,129,127,0) 72%);
  filter: blur(6px);
}
.focal__orbit {
  position: absolute; inset: 3% 6%;
  border-radius: 999px;
  border: 1px dashed rgba(243,129,127,0.55);
  animation: spin 22s linear infinite;
}
.focal__img {
  position: relative;
  width: 80%; height: auto;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.5));
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes sway { 0%, 100% { transform: translateY(0) rotate(-2.2deg); } 50% { transform: translateY(-6px) rotate(2.2deg); } }

.hero__hairline-L {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: linear-gradient(to right, transparent, rgba(243,129,127,0.4), transparent);
}

@media (max-width: 820px) {
  .hero__content { grid-template-columns: 1fr; }
  .focal { max-width: 360px; margin-inline: auto; }
  .hero__scroll { position: static; margin-top: 2rem; }
}

/* -----------------------------------------------------------
   INTRO  (cream, no accent)
   ----------------------------------------------------------- */
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.intro__quote-wrap { position: relative; }
.intro__quote {
  position: sticky; top: 140px;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  color: var(--ink-dark);
  border-left: 2px solid var(--ink-dark);
  padding-left: 1.25rem;
}
.intro__quote cite {
  display: block;
  margin-top: 1rem;
  font: 600 12px/1 var(--font-body);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dark-muted);
  font-style: normal;
}
.intro__body h2 { margin-bottom: clamp(1.25rem, 2.5vw, 2rem); color: var(--ink-dark); }
.intro__body p { font-size: clamp(1.0625rem, 1.15vw, 1.25rem); color: var(--ink-dark); max-width: 62ch; }
.intro__body p + p { margin-top: 1em; }
.intro__lede { font-weight: 500; color: var(--ink-dark) !important; }
.intro__meta {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26,15,7,0.12);
}
.intro__meta dt { font: 700 11px/1 var(--font-body); letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dark-muted); margin-bottom: 0.5rem; }
.intro__meta dd { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2vw, 1.875rem); color: var(--ink-dark); }
@media (max-width: 820px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__quote { position: static; }
}

/* -----------------------------------------------------------
   WERKWIJZE (cream + brass)
   ----------------------------------------------------------- */
.werkwijze { position: relative; }
.werkwijze__rail {
  position: sticky; top: 96px; z-index: 5;
  height: 3px;
  background: rgba(26,15,7,0.08);
  border-radius: 99px;
  margin-bottom: clamp(2.5rem, 4.5vw, 3.5rem);
}
.werkwijze__rail-fill {
  position: relative;
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent-brass);
  border-radius: 99px;
  transition: width 560ms cubic-bezier(.22, .61, .36, 1);
}
.werkwijze__rail-camel {
  position: absolute;
  right: -26px;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translateY(-50%);
  background: url('images/mascot-kameel.png') center / contain no-repeat;
  filter: drop-shadow(0 6px 14px rgba(26,15,7,0.25));
  pointer-events: none;
}
/* bob animation synced with advance */
.werkwijze__rail-camel { animation: rail-bob 0.9s ease-in-out infinite; }
@keyframes rail-bob {
  0%, 100% { transform: translateY(-50%) rotate(-2.5deg); }
  50%      { transform: translateY(calc(-50% - 3px)) rotate(2.5deg); }
}
/* Finish flag at the end of the rail */
.werkwijze__rail::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 3px; height: 22px;
  background: var(--ink-dark);
  transform: translateY(-50%);
}
.werkwijze__rail::before {
  content: "";
  position: absolute;
  right: 3px; top: 50%;
  width: 14px; height: 10px;
  background:
    linear-gradient(45deg, var(--ink-dark) 25%, transparent 25%) 0 0,
    linear-gradient(-45deg, var(--ink-dark) 25%, transparent 25%) 0 0,
    linear-gradient(45deg, transparent 75%, var(--ink-dark) 75%) 0 0,
    linear-gradient(-45deg, transparent 75%, var(--ink-dark) 75%) 0 0;
  background-size: 7px 7px;
  background-color: var(--canvas-cream);
  transform: translate(0, calc(-50% - 8px));
}
.werkwijze__head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.werkwijze__head h2 { color: var(--ink-dark); }
.werkwijze__lede { color: var(--ink-dark-muted); max-width: 52ch; }
.werkwijze__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.werkwijze__stat {
  position: sticky; top: 160px;
  color: var(--ink-dark);
}
.werkwijze__stat-eyebrow {
  display: inline-flex; gap: 0.5em;
  font: 700 11px/1 var(--font-body); letter-spacing: 0.24em; text-transform: uppercase;
  color: #8a5a00;
  margin-bottom: 1rem;
}
.werkwijze__stat-big {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(6rem, 14vw, 13rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--ink-dark);
  display: flex; align-items: flex-start;
}
.werkwijze__stat-big sup {
  font-size: 0.3em; top: 0.6em; margin-right: 0.1em;
  font-weight: 700;
  color: var(--accent-brass);
}
.werkwijze__stat-cap {
  display: block;
  margin-top: 1rem;
  max-width: 18ch;
  font: 500 15px/1.5 var(--font-body); color: var(--ink-dark-muted);
}
.wsteps { display: flex; flex-direction: column; gap: clamp(1.25rem, 2.4vw, 2rem); list-style: none; margin: 0; padding: 0; }
.wstep {
  display: grid; grid-template-columns: 88px minmax(0,1fr); gap: 1.5rem; align-items: start;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--canvas-cream-2);
  border: 1px solid rgba(26,15,7,0.1);
  border-radius: var(--radius-card);
}
.wstep.on-step { border-color: rgba(232,168,0,0.55); }
.wbadge {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 999px;
  border: 1px solid var(--accent-brass);
  color: var(--accent-brass);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.625rem;
}
.wbadge::before {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 999px;
  border: 1px dashed rgba(232,168,0,0.7);
  animation: spin 22s linear infinite;
}
.wstep__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.25rem, 1.8vw, 1.75rem); letter-spacing: -0.02em; color: var(--ink-dark); margin: 0 0 0.5rem; }
.wstep__body { color: var(--ink-dark-muted); font-size: 15.5px; line-height: 1.55; margin: 0 0 1rem; }
.wstep__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.wstep__list li {
  display: grid; grid-template-columns: 20px 1fr; gap: 0.5rem; align-items: start;
  font-size: 14.5px; color: var(--ink-dark);
}
.wstep__list svg { width: 20px; height: 20px; margin-top: 2px; }
.wstep__list path {
  fill: none; stroke: var(--accent-brass); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 24; stroke-dashoffset: 24;
  transition: stroke-dashoffset 0.7s ease 0.15s;
}
.wstep.on .wstep__list path { stroke-dashoffset: 0; }

@media (max-width: 820px) {
  .werkwijze__head, .werkwijze__grid { grid-template-columns: 1fr; }
  .werkwijze__stat { position: static; }
  .wstep { grid-template-columns: 64px 1fr; gap: 1rem; padding: 1.25rem; }
}

/* -----------------------------------------------------------
   VOOR WIE (maroon + coral)
   ----------------------------------------------------------- */
.voorwie__head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.voorwie__head p { color: var(--ink-cream-muted); max-width: 48ch; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.pillar {
  position: relative;
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  min-height: 400px;
  border-radius: var(--radius-card);
  background: linear-gradient(155deg, rgba(243,129,127,0.06) 0%, rgba(243,129,127,0) 60%), var(--canvas-maroon-2);
  border: 1px solid rgba(243,129,127,0.18);
  display: flex; flex-direction: column; justify-content: space-between; gap: 1rem;
  transition: transform 400ms cubic-bezier(.2,.7,.2,1), border-color 400ms ease, background 400ms ease;
  overflow: hidden;
}
.pillars .pillar:nth-child(1) { transform: rotate(-1deg); }
.pillars .pillar:nth-child(2) { transform: rotate(0.8deg); margin-top: 12px; }
.pillars .pillar:nth-child(3) { transform: rotate(-0.6deg); }
.pillar:hover { transform: translateY(-8px) rotate(0) !important; border-color: var(--accent-coral); }
/* ticket-stub notches (perforated edge) */
.pillar { overflow: visible; }
.pillar::before, .pillar::after {
  content: "";
  position: absolute;
  top: calc(68% - 9px);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--canvas-maroon);
  border: 1px solid rgba(243,129,127,0.22);
  pointer-events: none;
  z-index: 2;
}
.pillar::before { left: -9px; }
.pillar::after  { right: -9px; }
.pillar__icon {
  position: absolute; top: 1rem; right: 1rem;
  width: 90px; height: 90px;
  object-fit: contain;
  object-position: center;
  opacity: 0.98;
  pointer-events: none;
  transform: rotate(8deg);
  transition: transform 420ms cubic-bezier(.22,.8,.2,1);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}
.pillar:hover .pillar__icon { transform: rotate(-4deg) scale(1.08); }
/* rotate each icon slightly differently for hand-stuck-sticker feel */
.pillars .pillar:nth-child(1) .pillar__icon { transform: rotate(-6deg); }
.pillars .pillar:nth-child(2) .pillar__icon { transform: rotate(10deg); }
.pillars .pillar:nth-child(3) .pillar__icon { transform: rotate(-3deg); }
.pillar__num {
  font: 700 11px/1 var(--font-body); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-coral);
}
.pillar h3 { margin: 0.75rem 0 0.5rem; color: var(--ink-cream); }
.pillar__body { color: var(--ink-cream-muted); font-size: 15.5px; margin: 0; }
.pillar__foot {
  display: flex; justify-content: space-between; align-items: end; gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(243,129,127,0.18);
}
.pillar__price { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.75rem, 2.5vw, 2.25rem); letter-spacing: -0.03em; color: var(--ink-cream); }
.pillar__price-cap { display: block; font: 500 11px/1 var(--font-body); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-cream-subtle); margin-top: 0.35rem; }
.pillar__more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font: 600 13px/1 var(--font-body); letter-spacing: 0.06em;
  color: var(--accent-coral);
}
.pillar__more::after { content: "→"; transition: transform 240ms ease; }
.pillar:hover .pillar__more::after { transform: translateX(3px); }

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

/* -----------------------------------------------------------
   SFEER (forest + mint)
   ----------------------------------------------------------- */
.sfeer__head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.sfeer__quote {
  font-family: var(--font-display);
  font-weight: 400; font-style: italic;
  font-size: clamp(1.625rem, 2.6vw, 2.25rem);
  line-height: 1.12;
  color: var(--ink-cream);
  max-width: 18ch;
}
.sfeer__lede { color: var(--ink-cream-muted); max-width: 48ch; margin-top: 1rem; }
.sfeer__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.sfeer__photo {
  position: relative;
  padding: 12px 12px 56px;
  background: var(--canvas-cream-2);
  box-shadow: 0 22px 44px -18px rgba(0,0,0,0.55), 0 2px 0 rgba(0,0,0,0.08);
  transition: transform 420ms cubic-bezier(.22,.8,.2,1);
}
.sfeer__photo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 700ms cubic-bezier(.2,.6,.2,1);
  filter: contrast(1.02) saturate(1.05);
}
/* washi tape corners */
.sfeer__photo::before,
.sfeer__photo::after {
  content: "";
  position: absolute;
  width: 74px; height: 22px;
  background: rgba(232,168,0,0.85);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  pointer-events: none;
  z-index: 3;
}
.sfeer__photo::before {
  top: -8px; left: -14px;
  transform: rotate(-14deg);
}
.sfeer__photo::after {
  top: -10px; right: -18px;
  transform: rotate(18deg);
  background: rgba(243,129,127,0.85);
}
.sfeer__photo:hover { transform: translateY(-4px) rotate(0) !important; }
.sfeer__photo:hover img { transform: scale(1.02); }

.sfeer__photo--a { grid-column: 1 / span 7; transform: rotate(-1.6deg); }
.sfeer__photo--b { grid-column: 8 / span 5; transform: rotate(1.8deg); margin-top: 28px; }
.sfeer__photo--b img { aspect-ratio: 3 / 4; }
.sfeer__photo--c { grid-column: 3 / span 9; margin-top: 22px; transform: rotate(-0.8deg); }
.sfeer__photo--c img { aspect-ratio: 16 / 7; }

.sfeer__cap {
  position: absolute; left: 0; right: 0; bottom: 12px;
  text-align: center;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-dark);
  padding: 0 1rem;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
  border: 0;
}

@media (max-width: 820px) {
  .sfeer__head { grid-template-columns: 1fr; }
  .sfeer__photo--a, .sfeer__photo--b, .sfeer__photo--c { grid-column: 1 / -1; margin: 0; }
}

/* -----------------------------------------------------------
   SPONSORS (maroon + coral)
   ----------------------------------------------------------- */
.sponsors__head {
  display: flex; justify-content: space-between; align-items: end; gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.sponsors__head p { color: var(--ink-cream-muted); max-width: 40ch; margin: 0; }
.sponsors__tier { margin-bottom: clamp(2rem, 4vw, 3rem); }
.sponsors__tier-label {
  display: flex; align-items: center; gap: 1rem;
  font: 700 12px/1 var(--font-body); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-coral);
  margin-bottom: 1rem;
}
.sponsors__tier-label::after { content: ""; flex: 1; height: 1px; background: rgba(243,129,127,0.3); }
.sponsors__grid { display: grid; gap: 1px; background: rgba(243,129,127,0.18); border: 1px solid rgba(243,129,127,0.18); border-radius: var(--radius-card); overflow: hidden; }
.sponsors__grid--hoofd { grid-template-columns: 1fr; }
.sponsors__grid--mid   { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.sponsors__grid--vriend{ grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.sponsor-tile {
  background: var(--canvas-maroon);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid; place-items: center; min-height: 120px;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--ink-cream);
  transition: background 220ms ease, color 220ms ease;
}
.sponsors__grid--hoofd .sponsor-tile { min-height: 180px; font-size: clamp(2rem, 4vw, 3rem); text-transform: none; text-align: center; line-height: 0.95; font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144; letter-spacing: -0.03em; }
.sponsors__grid--mid   .sponsor-tile { font-size: clamp(1.125rem, 1.8vw, 1.5rem); text-transform: none; text-align: center; }
.sponsors__grid--vriend .sponsor-tile { font-size: 13px; letter-spacing: 0.08em; color: var(--ink-cream-muted); font-family: var(--font-body); font-weight: 600; text-transform: none; }
.sponsor-tile:hover { background: var(--canvas-maroon-2); color: var(--accent-coral); }

/* sponsor-tile variants to mimic distinct wordmark looks */
.sponsor-tile--hoofd { color: var(--accent-coral); background: linear-gradient(155deg, rgba(243,129,127,0.08), rgba(243,129,127,0) 70%), var(--canvas-maroon); }
.sponsor-tile--script { font-family: var(--font-hand); font-weight: 700; font-size: clamp(1.75rem, 2.6vw, 2.25rem) !important; letter-spacing: 0; font-variation-settings: normal; }
.sponsor-tile--serif  { font-family: var(--font-display); font-weight: 400; font-style: italic; letter-spacing: -0.01em; font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 144; }
.sponsor-tile--bold   { font-family: var(--font-body); font-weight: 800; text-transform: uppercase !important; letter-spacing: 0.12em; font-size: clamp(0.875rem, 1.3vw, 1.125rem) !important; }
.sponsor-tile--italic { font-family: var(--font-display); font-weight: 600; font-style: italic; font-variation-settings: "SOFT" 80, "WONK" 1, "opsz" 144; }
/* real logo tile — cream plaque behind dark logos */
.sponsor-tile--logo { padding: clamp(1rem, 2vw, 1.5rem); background: var(--canvas-cream); }
.sponsor-tile--logo:hover { background: var(--canvas-cream-2); }
.sponsor-tile--logo img {
  display: block;
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.sponsors__grid--hoofd .sponsor-tile--logo img { max-height: 110px; }
.sponsors__grid--mid   .sponsor-tile--logo img { max-height: 64px; }
/* invert: for SVGs that are white-on-transparent, recolor to dark maroon */
.sponsor-tile--logo-invert img { filter: brightness(0) saturate(100%) invert(8%) sepia(60%) saturate(3500%) hue-rotate(335deg); }

/* -----------------------------------------------------------
   CTA (maroon + coral)
   ----------------------------------------------------------- */
.cta { text-align: center; position: relative; }
/* Kermis bulb marquee — single row across top of CTA */
.bulbs {
  position: absolute;
  top: calc(var(--peel) + 18px);
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 30px);
  pointer-events: none;
  z-index: 4;
}
.bulbs span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-coral);
  box-shadow:
    0 0 10px rgba(243,129,127,0.9),
    0 0 22px rgba(243,129,127,0.55),
    inset 0 1px 2px rgba(255,255,255,0.8);
  animation: bulb-twinkle 1.6s ease-in-out infinite;
}
.bulbs span:nth-child(2n)   { animation-delay: -0.4s; background: #ffd56b; box-shadow: 0 0 10px rgba(255,213,107,0.9), 0 0 22px rgba(255,213,107,0.55), inset 0 1px 2px rgba(255,255,255,0.8); }
.bulbs span:nth-child(3n+1) { animation-delay: -0.8s; }
.bulbs span:nth-child(5n)   { animation-delay: -1.2s; }
@keyframes bulb-twinkle {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50%      { opacity: 1;    transform: scale(1.1); }
}
/* Pennant bunting strand */
.bunting {
  position: absolute;
  top: calc(var(--peel) + 4px);
  left: 0; right: 0;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.bunting::before {
  content: "";
  position: absolute;
  top: 0; left: 6%; right: 6%;
  height: 1px;
  background: rgba(254,249,241,0.35);
  transform: rotate(-0.6deg) translateY(1px);
}
.bunting i {
  display: block;
  width: 0; height: 0;
  margin: 1px 3px 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 22px solid var(--accent-coral);
  transform-origin: top center;
  animation: bunting-sway 4s ease-in-out infinite;
}
.bunting i:nth-child(2n)   { border-top-color: var(--canvas-cream); animation-delay: -0.8s; }
.bunting i:nth-child(3n+1) { border-top-color: var(--accent-brass); animation-delay: -1.6s; }
.bunting i:nth-child(4n)   { border-top-color: var(--accent-mint); animation-delay: -2.4s; }
@keyframes bunting-sway {
  0%, 100% { transform: rotate(-1.5deg); }
  50%      { transform: rotate( 1.5deg); }
}
.cta__kicker {
  display: inline-block;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  letter-spacing: 0;
  color: var(--accent-coral);
  margin: 0 0 0.25rem;
  transform: rotate(-3deg);
  transform-origin: left center;
}
.cta__slogan {
  display: block;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  color: var(--accent-coral);
}
/* rotated "ZON 25 OKT" stamp, like the poster */
.stamp {
  position: absolute;
  top: clamp(3.5rem, 6vw, 4.75rem);
  right: clamp(1rem, 3vw, 2.25rem);
  width: clamp(92px, 8vw, 112px);
  height: clamp(92px, 8vw, 112px);
  border-radius: 50%;
  background: var(--accent-coral);
  color: var(--canvas-maroon);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(-9deg);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.65), inset 0 0 0 2px rgba(58,0,6,0.22);
  text-align: center;
  line-height: 1;
  z-index: 5;
  pointer-events: none;
}
.stamp__small { font-size: clamp(10px, 0.95vw, 12px); letter-spacing: 0.22em; opacity: 0.9; }
.stamp__big {
  font-size: clamp(36px, 4.2vw, 54px);
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  letter-spacing: -0.04em;
  margin: 0.05em 0 0;
  line-height: 0.9;
}
.stamp__mid { font-size: clamp(11px, 1.05vw, 14px); letter-spacing: 0.16em; margin-top: 0.1em; }
@media (prefers-reduced-motion: reduce) {
  .stamp { transform: rotate(0); }
}
.cta__display {
  font-size: clamp(3rem, 8vw, 8rem);
  text-transform: none;
  line-height: 1.0;
  letter-spacing: -0.025em;
  max-width: 14ch;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.cta__display em {
  font-style: italic; font-weight: 400;
  color: var(--accent-coral);
}
.cta__sub { max-width: 52ch; margin: 0 auto 2rem; color: var(--ink-cream-muted); font-size: clamp(1rem, 1.2vw, 1.125rem); }
.magnet {
  display: inline-block;
  will-change: transform;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1);
}
.magnet .btn {
  font-size: 16px;
  padding: 1.1em 1.1em 1.1em 1.6em;
  box-shadow: 0 0 0 0 rgba(243,129,127,0.6);
  animation: cta-pulse 2.6s ease-in-out infinite;
}
.magnet .btn__icon { width: 36px; height: 36px; }
@keyframes cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(243,129,127,0.55); }
  60%  { box-shadow: 0 0 0 18px rgba(243,129,127,0); }
  100% { box-shadow: 0 0 0 0 rgba(243,129,127,0); }
}

/* -----------------------------------------------------------
   FOOTER
   ----------------------------------------------------------- */
.footer {
  background: var(--canvas-maroon-2);
  color: var(--ink-cream-muted);
  padding-block: clamp(3.5rem, 6vw, 5rem);
  margin-top: -1px;
  border-top-left-radius: var(--peel);
  border-top-right-radius: var(--peel);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 3rem;
}
.footer__brand {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  text-transform: uppercase; letter-spacing: -0.03em;
  color: var(--ink-cream);
  line-height: 0.95;
  margin-bottom: 1rem;
}
.footer__tag { font-size: 15px; max-width: 32ch; }
.footer h4 { font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-coral); margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer ul a { color: var(--ink-cream-muted); transition: color 180ms ease; }
.footer ul a:hover { color: var(--ink-cream); }
.footer__legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243,129,127,0.18);
  font-size: 13px;
  color: var(--ink-cream-subtle);
}
.footer__socials { display: flex; gap: 0.5rem; }
.footer__socials a {
  width: 36px; height: 36px; border-radius: 999px;
  display: inline-grid; place-items: center;
  border: 1px solid rgba(243,129,127,0.3);
  color: var(--ink-cream-muted);
  transition: border-color 180ms ease, color 180ms ease;
}
.footer__socials a:hover { border-color: var(--accent-coral); color: var(--accent-coral); }
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand-col { grid-column: 1 / -1; }
}

/* -----------------------------------------------------------
   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;
  }
  .wf .w { opacity: 1 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .bracket path { stroke-dashoffset: 0 !important; }
  .focal__stage { animation: none !important; }
}
