/* ───────────────────────────────────────────────
   The Sixth Seat — module 1: header + hero
   ─────────────────────────────────────────────── */

@font-face { font-family: "Satoshi"; src: url("assets/fonts/satoshi-300.woff2") format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("assets/fonts/satoshi-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("assets/fonts/satoshi-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("assets/fonts/satoshi-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }

:root {
  --ivory:     #F4EFE7;
  --ivory-2:   #EDE6DB;
  --sand:      #D9CDBB;
  --navy:      #101A30;
  --navy-70:   rgba(16, 26, 48, .72);
  --navy-45:   rgba(16, 26, 48, .45);
  --grey:      #5C5A56;
  --gold:      #C9A96A;
  --gold-deep: #B0893F;
  --gold-glow: rgba(232, 190, 110, .55);

  /* Kopletter = Satoshi (keuze 27-8-2026), zelfde familie als de tekstletter */
  --font-display: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  --font-sans: "Satoshi", "Helvetica Neue", Arial, sans-serif;

  --nav-h: 84px;
  --gutter: clamp(24px, 4.2vw, 72px);
  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--navy);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
svg { display: block; }

/* ─── Navigatie ─────────────────────────────── */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  transition: background-color .5s var(--ease-soft), box-shadow .5s var(--ease-soft), height .5s var(--ease-soft);
}
.nav::after {            /* zachte ivoor-sluier die verschijnt bij scrollen */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(244, 239, 231, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background-color .5s var(--ease-soft), backdrop-filter .5s var(--ease-soft);
}
.nav.is-scrolled { height: 68px; }
.nav.is-scrolled::after {
  background: rgba(244, 239, 231, .82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(16, 26, 48, .06);
}
.nav__inner {
  height: 100%; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px;
}

.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--navy); width: max-content; }
.logo__word { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -.03em; line-height: 1; padding-top: 1px; color: var(--navy); white-space: nowrap; }
.logo__word b { font-weight: 700; background: linear-gradient(160deg, #E9CF8A 0%, #C9A250 38%, #F0DCA3 55%, #B8903F 78%, #D9B86A 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo:hover .logo__word b { filter: brightness(1.08); }

.nav__menu { display: flex; gap: clamp(20px, 2.4vw, 38px); }
.nav__menu a {
  position: relative; font-size: 15px; font-weight: 400; letter-spacing: .01em; padding: 8px 0;
  color: var(--navy); opacity: .82; transition: opacity .3s;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav__menu a:hover { opacity: 1; }
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__tools { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }

.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; letter-spacing: .06em; color: var(--grey); padding: 8px 2px; transition: color .3s; }
.lang__btn svg { width: 9px; transition: transform .35s var(--ease-out); }
.lang__btn:hover, .lang.is-open .lang__btn { color: var(--navy); }
.lang.is-open .lang__btn svg { transform: rotate(180deg); }
.lang__list {
  list-style: none; position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, -6px);
  min-width: 150px; padding: 8px 0; background: rgba(250, 247, 242, .96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(16, 26, 48, .08); border-radius: 12px;
  box-shadow: 0 18px 40px -18px rgba(16, 26, 48, .28);
  opacity: 0; visibility: hidden; transition: opacity .3s, transform .35s var(--ease-out), visibility .3s;
}
.lang.is-open .lang__list { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.lang__list li { padding: 9px 18px; font-size: 14px; color: var(--navy); cursor: pointer; transition: background .2s; }
.lang__list li:hover { background: rgba(201, 169, 106, .14); }
.lang__list li[aria-selected="true"] { color: var(--gold-deep); }

.sound { display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; letter-spacing: .06em; color: var(--grey); padding: 8px 2px; transition: color .3s; }
.sound:hover, .sound[aria-pressed="true"] { color: var(--navy); }
.sound__bars { display: inline-flex; align-items: flex-end; gap: 2px; height: 12px; }
.sound__bars i { width: 2px; height: 4px; background: currentColor; border-radius: 1px; transition: height .3s; }
.sound[aria-pressed="true"] .sound__bars i { animation: bars 1.1s ease-in-out infinite; }
.sound[aria-pressed="true"] .sound__bars i:nth-child(2) { animation-delay: .15s; }
.sound[aria-pressed="true"] .sound__bars i:nth-child(3) { animation-delay: .3s; }
.sound[aria-pressed="true"] .sound__bars i:nth-child(4) { animation-delay: .45s; }
@keyframes bars { 0%, 100% { height: 4px; } 50% { height: 12px; } }

/* ─── Knoppen ───────────────────────────────── */

.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  height: 46px; padding: 0 24px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; letter-spacing: .01em; white-space: nowrap;
  overflow: hidden; isolation: isolate;
  transition: color .4s var(--ease-soft), border-color .4s, transform .4s var(--ease-out), box-shadow .4s;
}
.btn::before {           /* vullende cirkel op hover */
  content: ""; position: absolute; z-index: -1; inset: 0; border-radius: inherit;
  transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease-out);
}
.btn:hover::before { transform: scaleX(1); }
.btn svg { width: 15px; transition: transform .4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--outline { color: var(--navy); border: 1px solid var(--navy-45); }
.btn--outline::before { background: var(--navy); }
.btn--outline:hover { color: var(--ivory); border-color: var(--navy); }

.btn--solid { color: var(--ivory); background: var(--navy); height: 54px; padding: 0 30px; box-shadow: 0 14px 30px -16px rgba(16, 26, 48, .6); }
.btn--solid::before { background: var(--gold-deep); }
.btn--solid:hover { transform: translateY(-1px); box-shadow: 0 18px 36px -16px rgba(176, 137, 63, .55); }

.link {
  position: relative; display: inline-flex; align-items: center; gap: 8px; padding-bottom: 4px;
  font-size: 15px; font-weight: 500; color: var(--navy);
}
.link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--navy-45); transition: background .3s; }
.link::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease-out); }
.link:hover::before { transform: scaleX(1); transform-origin: left; }
.link svg { width: 14px; transition: transform .4s var(--ease-out); }
.link:hover svg { transform: translateX(4px); }

/* ─── Hero ──────────────────────────────────── */

.hero { position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden; background: var(--ivory); }

/* Het "podium" heeft dezelfde verhouding als de foto en vult het scherm als cover, rechts uitgelijnd.
   Daardoor blijft alles wat op de foto is gepositioneerd (de zesde stoel) exact op zijn plek. */
.hero__stage {
  position: absolute; top: 50%; right: -3%; transform: translateY(-50%);
  aspect-ratio: 1672 / 941;
  width: max(106%, calc(100vh * 1.7768));
  height: auto;
  will-change: transform;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* traag ademend zonlicht over de foto */
.hero__light {
  position: absolute; inset: -10%; pointer-events: none; mix-blend-mode: soft-light;
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 250, 240, .0) 12%, rgba(255, 250, 240, .9) 15%, rgba(255, 250, 240, 0) 19%, transparent 30%,
      rgba(255, 250, 240, .7) 34%, rgba(255, 250, 240, 0) 38%, transparent 100%);
  animation: light-drift 22s ease-in-out infinite alternate;
  opacity: .7;
}
@keyframes light-drift { from { transform: translateX(-2.5%); } to { transform: translateX(2.5%); } }

/* zesde stoel: positie in % van de foto (1672×941 → stoel ±1440,690) */
.chair { position: absolute; left: 86.2%; top: 73.4%; width: 15%; aspect-ratio: 1; transform: translate(-50%, -50%); pointer-events: none; }
.chair__glow {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 214, 140, .55), rgba(255, 200, 110, .18) 45%, transparent 72%);
  mix-blend-mode: screen; filter: blur(6px);
  animation: chair-breathe 4.8s ease-in-out infinite;
}
.chair__halo {
  position: absolute; inset: -30%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 205, 120, .22), transparent 70%);
  mix-blend-mode: screen; filter: blur(18px);
  animation: chair-breathe 4.8s ease-in-out infinite reverse;
}
@keyframes chair-breathe { 0%, 100% { opacity: .55; transform: scale(.96); } 50% { opacity: 1; transform: scale(1.04); } }

.chair__p {
  position: absolute; left: 50%; top: 55%; width: 3px; height: 3px; border-radius: 50%;
  background: #FFE1A8; box-shadow: 0 0 6px 1px rgba(255, 210, 130, .9);
  opacity: 0; animation: rise 7s linear infinite;
}
.chair__p:nth-child(3) { --dx: -22px; animation-delay: 0s;   left: 42%; }
.chair__p:nth-child(4) { --dx:  18px; animation-delay: 1.1s; left: 58%; }
.chair__p:nth-child(5) { --dx:  -8px; animation-delay: 2.3s; left: 50%; width: 2px; height: 2px; }
.chair__p:nth-child(6) { --dx:  30px; animation-delay: 3.2s; left: 36%; }
.chair__p:nth-child(7) { --dx: -30px; animation-delay: 4.1s; left: 62%; width: 2px; height: 2px; }
.chair__p:nth-child(8) { --dx:  12px; animation-delay: 5s;   left: 46%; }
.chair__p:nth-child(9) { --dx: -16px; animation-delay: 5.8s; left: 55%; }
.chair__p:nth-child(10){ --dx:  24px; animation-delay: 6.5s; left: 40%; width: 2px; height: 2px; }
@keyframes rise {
  0%   { opacity: 0; transform: translate(0, 0) scale(.6); }
  12%  { opacity: .9; }
  70%  { opacity: .5; }
  100% { opacity: 0; transform: translate(var(--dx), -90px) scale(1); }
}

/* zachte ivoor-sluier links, zodat de typografie altijd leest */
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(244, 239, 231, .55) 0%, rgba(244, 239, 231, .35) 30%, rgba(244, 239, 231, 0) 55%);
}

.hero__content {
  position: relative; z-index: 2;
  max-width: min(1000px, 52vw);
  padding: calc(var(--nav-h) + 12vh) 0 14vh var(--gutter);
  will-change: transform;
}

.kicker {
  font-size: 12.5px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--navy);
  margin-bottom: clamp(20px, 3vh, 34px); overflow: hidden;
}
.kicker span { display: inline-block; }

.headline {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(38px, 4.35vw, 74px); line-height: 1.1; letter-spacing: -.025em;
  color: var(--navy);
}
.headline .line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.headline .line > span { display: block; }
.headline em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-deep) 0%, var(--gold) 35%, #E9D3A3 50%, var(--gold) 65%, var(--gold-deep) 100%);
  background-size: 250% 100%; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.headline em.is-lit { animation: shimmer 2.4s var(--ease-soft) .9s 1 both; }
@keyframes shimmer { from { background-position: 100% 0; } to { background-position: 0% 0; } }

.lede {
  max-width: 34em; margin-top: clamp(24px, 3.2vh, 36px);
  font-size: clamp(16px, 1.25vw, 19px); font-weight: 400; line-height: 1.55; color: var(--grey);
}

.actions { display: flex; align-items: flex-start; gap: 36px; flex-wrap: wrap; margin-top: clamp(30px, 4.5vh, 48px); }
.actions__primary { display: flex; flex-direction: column; gap: 10px; }
.actions__primary small { font-size: 12.5px; color: var(--grey); letter-spacing: .02em; padding-left: 4px; }
.actions .link { margin-top: 18px; }

/* scroll-hint */
.scrollcue { position: absolute; left: var(--gutter); bottom: 34px; z-index: 2; display: block; width: 1px; height: 56px; overflow: hidden; }
.scrollcue__line { position: absolute; inset: 0; background: var(--navy-45); transform-origin: top; animation: cue 2.2s var(--ease-soft) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ─── Intro-animatie: alles start onzichtbaar, JS speelt af ─── */
.js .kicker span, .js .headline .line > span, .js .lede, .js .actions, .js .scrollcue, .js .nav__inner > * { opacity: 0; }
.js .hero__stage { opacity: 0; }

/* ─── Tijdelijke vervolgsectie ──────────────── */
.placeholder { min-height: 70vh; display: grid; place-items: center; background: var(--ivory-2); color: var(--grey); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; }

/* ─── Burger (alleen mobiel) ────────────────── */
.burger { display: none; width: 40px; height: 40px; position: relative; }
.burger span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--navy); transition: transform .4s var(--ease-out), top .4s; }
.burger span:first-child { top: 15px; } .burger span:last-child { top: 23px; }
.burger[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 19px; transform: rotate(-45deg); }

/* ─── Responsive ────────────────────────────── */
@media (max-width: 1180px) {
  .nav__menu a { font-size: 14px; }
  .sound__label { display: none; }
}
@media (max-width: 980px) {
  :root { --nav-h: 72px; }
  .nav__inner { grid-template-columns: auto 1fr; }
  .nav__menu {
    position: fixed; inset: var(--nav-h) 0 0 0; flex-direction: column; gap: 0; padding: 24px var(--gutter);
    background: rgba(244, 239, 231, .96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .35s, transform .45s var(--ease-out), visibility .35s;
  }
  .nav__menu a { font-family: var(--font-display); font-weight: 300; font-size: 32px; letter-spacing: -.02em; padding: 14px 0; border-bottom: 1px solid rgba(16, 26, 48, .08); opacity: 1; }
  .nav__menu a::after { display: none; }
  body.menu-open .nav__menu { transform: none; opacity: 1; visibility: visible; }
  body.menu-open { overflow: hidden; }
  .nav__tools .btn--outline { display: none; }
  .burger { display: block; }
  .logo__word { font-size: 24px; }

  .hero__stage { top: auto; bottom: -3%; transform: none; width: max(100%, calc(52vh * 1.7768)); right: -10%; }
  .hero__scrim { background: linear-gradient(180deg, rgba(244, 239, 231, .96) 0%, rgba(244, 239, 231, .9) 50%, rgba(244, 239, 231, .55) 66%, rgba(244, 239, 231, 0) 82%); }
  .hero__content { max-width: none; padding: calc(var(--nav-h) + 5vh) var(--gutter) 48vh; }
  .kicker { font-size: 11px; letter-spacing: .18em; }
  .lede { font-size: 16px; }
  .headline { font-size: clamp(38px, 10vw, 60px); }
  .actions { gap: 24px; }
  .scrollcue { display: none; }
}
@media (max-width: 520px) {
  .nav__tools { gap: 14px; }
  .lang__btn span { font-size: 13px; }
  .btn--solid { height: 50px; padding: 0 24px; width: 100%; justify-content: center; }
  .actions__primary { width: 100%; }
}

/* ─── Beweging uit, als de bezoeker dat vraagt ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .kicker span, .js .headline .line > span, .js .lede, .js .actions, .js .scrollcue, .js .nav__inner > *, .js .hero__stage { opacity: 1; }
  html { scroll-behavior: auto; }
}

/* ─── Module 3: vragen & antwoorden ─────────── */
.qa { padding: clamp(80px, 12vh, 140px) var(--gutter); background: var(--ivory); border-top: 1px solid rgba(16,26,48,.06); }
.qa__inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 8vw, 140px); align-items: start; }
.qa__left .kicker { margin-bottom: 28px; color: var(--gold-deep); }
.qa__tabs { list-style: none; margin: 0; padding: 0; }
.qa__tab { position: relative; display: block; width: 100%; padding: 22px 0 20px; text-align: left; font-family: var(--font-display); font-weight: 300; font-size: clamp(20px, 1.7vw, 27px); letter-spacing: -.015em; color: var(--navy); opacity: .38; transition: opacity .5s var(--ease-soft); }
.qa__tab:hover { opacity: .7; }
.qa__tab.is-active { opacity: 1; }
.qa__line { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(16,26,48,.14); display: block; }
.qa__line b { position: absolute; inset: 0; background: var(--navy); transform: scaleX(0); transform-origin: left; display: block; }
.qa__right { padding-top: 46px; min-height: 380px; }
.qa__answers { display: flex; flex-direction: column; gap: clamp(28px, 4vh, 44px); }
.qa__answer { animation: qa-in .8s var(--ease-out) both; animation-delay: calc(var(--k) * .12s); }
.qa__answer h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2vw, 32px); letter-spacing: -.02em; color: var(--navy); margin-bottom: 8px; }
.qa__answer p { max-width: 34em; font-size: clamp(15px, 1.15vw, 18px); line-height: 1.55; color: var(--grey); }
.qa__link { margin-top: 8px; animation: qa-in .8s var(--ease-out) .45s both; align-self: flex-end; }
@keyframes qa-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (max-width: 980px) { .qa__inner { grid-template-columns: 1fr; gap: 40px; } .qa__right { padding-top: 0; min-height: 0; } }

.qa__bigwrap { margin-top: clamp(48px, 8vh, 96px); min-height: 200px; }
.qa__tag { display: inline-block; padding: 8px 12px; border-radius: 6px; background: rgba(16,26,48,.06); font-size: 12.5px; font-weight: 500; color: var(--navy); margin-bottom: 22px; animation: qa-in .6s var(--ease-out) both; }
.qa__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(34px, 3.6vw, 60px); line-height: 1.08; letter-spacing: -.03em; color: var(--navy); max-width: 12em; animation: qa-in .8s var(--ease-out) .1s both; }

/* module 3 in navy */
.qa { background: var(--navy); border-top: 0; color: var(--ivory); }
.qa__tab { color: var(--ivory); opacity: .32; }
.qa__tab:hover { opacity: .6; }
.qa__tab.is-active { opacity: 1; }
.qa__line { background: rgba(244,239,231,.14); }
.qa__line b { background: var(--gold); }
.qa__tag { background: rgba(244,239,231,.10); color: var(--ivory); }
.qa__big { color: var(--ivory); }
.qa__answer h3 { color: var(--ivory); }
.qa__answer p { color: rgba(244,239,231,.62); }
.qa .link { color: var(--ivory); }
.qa .link::after { background: rgba(244,239,231,.35); }
.qa .link::before { background: var(--gold); }

.qa__big em { font-style: normal; color: var(--gold); }

/* ─── Partners: dubbele logo-carousel ────────── */
.partners { padding: clamp(40px, 6vh, 64px) 0 clamp(32px, 5vh, 56px); background: var(--ivory); border-bottom: 1px solid rgba(16,26,48,.06); overflow: hidden; }
.partners__label { text-align: center; font-size: 11.5px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--grey); margin-bottom: 28px; }
.partners__row { position: relative; overflow: hidden; padding: 10px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.partners__track { display: flex; width: max-content; list-style: none; margin: 0; padding: 0; gap: clamp(48px, 6vw, 110px); padding-right: clamp(48px, 6vw, 110px); animation: partners-scroll 46s linear infinite; }
.partners__track--rtl { animation-direction: reverse; animation-duration: 54s; }
.partners__row:hover .partners__track { animation-play-state: paused; }
@keyframes partners-scroll { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.partners__logo { display: flex; align-items: center; height: 40px; white-space: nowrap; font-family: var(--font-display); font-weight: 500; font-size: 20px; letter-spacing: -.01em; color: var(--navy); opacity: .42; transition: opacity .3s; }
.partners__logo:hover { opacity: .9; }
.partners__logo img { height: 34px; width: auto; display: block; filter: grayscale(1); opacity: .8; }
@media (prefers-reduced-motion: reduce) { .partners__track { animation: none; } }


/* ─── Tussenmodule: waarmee wij werken ─────── */
.tools { padding: clamp(40px, 6vh, 64px) 0 clamp(36px, 5vh, 56px); background: var(--ivory); border-bottom: 1px solid rgba(16,26,48,.06); overflow: hidden; }
.tools__label { text-align: center; font-family: "Newsreader", Georgia, serif; font-style: italic; font-weight: 400; font-size: 22px; letter-spacing: 0; text-transform: none; color: var(--navy); margin-bottom: 28px; }
.tools__marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.tools__track { display: flex; width: max-content; list-style: none; margin: 0; padding: 0; gap: clamp(36px, 4vw, 64px); padding-right: clamp(36px, 4vw, 64px); animation: tools-scroll 150s linear infinite; }
@keyframes tools-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tools__logo { display: flex; align-items: center; gap: 12px; white-space: nowrap; opacity: .85; transition: opacity .3s; }
.tools__logo:hover { opacity: 1; }
.tools__logo img { width: 34px; height: 34px; border-radius: 8px; object-fit: contain; }
.tools__logo--wordmark img { width: auto; height: 14px; border-radius: 0; }
.tools__logo span { font-size: 14.5px; font-weight: 500; color: var(--navy); letter-spacing: -.005em; }
@media (prefers-reduced-motion: reduce) { .tools__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; } }
