/* ============================================================
   BFZ — gedeelde basis-styles (geëxtraheerd uit alle pagina's)
   Pagina-specifieke styles blijven inline per pagina.
   ============================================================ */

:root {
    color-scheme: dark;
    /* Typografische schaal: drie kopmaten, twee trackings. Alle section headings
       gebruiken --fs-section; --fs-display is voor hero's en het homepage-slot. */
    --fs-display: clamp(48px, 7vw, 112px);
    --fs-section: clamp(36px, 4.8vw, 64px);
    --fs-sub: clamp(24px, 3vw, 36px);
    --track-label: 0.32em;
    --track-cta: 0.24em;
    --bg: #0a0a0a; --bg-deep: #050505; --bg-soft: #111111;
    --fg: #f5f3ee;
    --fg-muted: rgba(245, 243, 238, 0.75);
    --fg-faint: rgba(245, 243, 238, 0.45);
    --accent-warm: #d3b583;
    --accent-line: rgba(245, 243, 238, 0.18);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --gutter: clamp(24px, 4vw, 56px);
    --container: 1680px;
    --ease-cinema: cubic-bezier(0.22, 1, 0.36, 1);
  }

* { margin: 0; padding: 0; box-sizing: border-box; }

html.lenis { height: auto; }

html.lenis body { overflow-x: hidden; }

.lenis.lenis-smooth { scroll-behavior: auto; }

.lenis.lenis-stopped { overflow: hidden; }

html { background: var(--bg); }

body {
    background: var(--bg); color: var(--fg);
    font-family: var(--font-body); font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    animation: bodyFadeIn 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

@keyframes bodyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

/* === VIEW TRANSITIONS — seamless cross-page crossfade (progressive enhancement;
     browsers without support keep the normal navigation + bodyFadeIn) === */
  @view-transition { navigation: auto; }

/* Cinema cut: oud beeld klapt naar zwart, een tel stilte, nieuwe pagina — als een scene-wissel */
  ::view-transition { background: #0a0a0a; }

::view-transition-old(root) { animation: vt-cut-out 0.16s cubic-bezier(0.64, 0, 0.78, 0) both; }

::view-transition-new(root) { animation: vt-cut-in 0.22s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both; }

@keyframes vt-cut-out { to { opacity: 0; } }

@keyframes vt-cut-in { from { opacity: 0; } to { opacity: 1; } }

/* Neon-gloed in de hero ademt als echt neon (matcht alleen op de homepage) */
  .hero__bg-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 66% 42%, rgba(150, 210, 255, 0.09), transparent 65%);
    animation: neon-breathe 9s linear infinite;
    pointer-events: none;
  }

@keyframes neon-breathe {
    0%, 40% { opacity: 0.6; }
    41.2% { opacity: 0.12; }
    42.4% { opacity: 0.55; }
    43.4% { opacity: 0.2; }
    44.4% { opacity: 0.6; }
    70% { opacity: 0.6; }
    71% { opacity: 0.3; }
    72.2% { opacity: 0.6; }
    100% { opacity: 0.6; }
  }

@media (prefers-reduced-motion: reduce) {
    .hero__bg-wrap::after { animation: none; opacity: 0.5; }
    body.gsap-ready .fade-up { filter: none !important; }
  }

/* Woord-rotator: disciplines rollen door de kop (zelfde beweging als de partner-logo's) */
  .word-rotate {
    position: relative; display: inline-block;
    overflow: hidden; vertical-align: bottom;
    text-align: left;
    padding-bottom: 0.08em; margin-bottom: -0.08em;
  }

.word-rotate__word { display: inline-block; white-space: nowrap; }

.word-rotate__word + .word-rotate__word { position: absolute; left: 0; top: 0; }

/* Nav wijkt op mobiel bij omlaag scrollen */
  .nav--hidden { transform: translateY(-110%); }

/* Blur-up: foto's stellen scherp terwijl ze laden — focus-pull op het laden zelf */
  img.img-loading { opacity: 0; filter: blur(12px); }

img.img-loaded { animation: imgReveal 0.8s var(--ease-cinema); }

@keyframes imgReveal {
    from { opacity: 0; filter: blur(12px); }
    to { opacity: 1; filter: blur(0); }
  }

/* Typografie: koppen breken gebalanceerd af, quotes hangen zoals in drukwerk */
  h1, h2, h3 { text-wrap: balance; }

blockquote { text-wrap: pretty; }

.testimonials__quote-text { hanging-punctuation: first; }

/* Sig-mark: logo stil in het hart van de draaiende tekstcirkel */
  .sig-mark svg { transform-origin: 50% 50%; }

.sig-mark__logo {
    position: absolute;
    top: 50%; left: 50%;
    width: 48%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

@media (prefers-reduced-motion: reduce) {
    @view-transition { navigation: none; }
  }

/* === TOUCH POLISH — geen grijze iOS tap-flits; eigen tap-feedback op CTA's
     (hover bestaat niet op touch, dus :active spiegelt het hover-effect) === */
  * { -webkit-tap-highlight-color: transparent; }

@media (hover: none) {
    .nav__cta, .hero__cta, .intro__cta, .coaches__cta, .final-cta__button {
      transition: transform 0.22s ease;
    }
    .nav__cta:active, .hero__cta:active, .intro__cta:active, .final-cta__button:active {
      color: var(--bg);
      transform: scale(0.96);
    }
    .nav__cta:active::before, .hero__cta:active::before,
    .intro__cta:active::before, .final-cta__button:active::before { transform: scaleX(1); }
    .nav__cta:active .nav__cta__label > span,
    .hero__cta:active .hero__cta__label > span,
    .intro__cta:active .intro__cta__label > span,
    .final-cta__button:active .final-cta__button__label > span { transform: translateY(-100%); }
    .coaches__cta:active { background: var(--fg); color: var(--bg); transform: scale(0.96); }
  }

@media (prefers-reduced-motion: reduce) {
    body { animation: none; }
  }

@media (hover: hover) and (pointer: fine) {
    .nav__cta:active, .hero__cta:active, .intro__cta:active, .coaches__cta:active,
    .final-cta__button:active, .form__submit:active, .mobile-menu__cta:active {
      scale: 0.98;
      transition: scale 0.16s ease;
    }
  }

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

::selection { background: var(--fg); color: var(--bg); }

/* === NAV === */
  .nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: calc(24px + env(safe-area-inset-top, 0px)) var(--gutter) 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: transparent;
    mix-blend-mode: difference;
    transition: padding 0.4s var(--ease-cinema), transform 0.45s var(--ease-cinema);
  }

.nav.is-scrolled { padding: calc(18px + env(safe-area-inset-top, 0px)) var(--gutter) 18px; }

.nav__group { display: flex; gap: 36px; align-items: center; }

.nav__group--right { justify-content: flex-end; }

.nav__link {
    color: var(--fg);
    font-size: 11px; font-weight: 400;
    letter-spacing: var(--track-cta); text-transform: uppercase;
    position: relative; padding: 8px 0;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
  }

.nav__link::after {
    content: ''; position: absolute; left: 0; bottom: 4px;
    width: 0; height: 1px; background: var(--fg);
    transition: width 0.5s var(--ease-cinema);
  }

.nav__link:hover::after { width: 100%; }

.nav__link--active::after { width: 100%; }

.nav__link-arrow {
    width: 6px; height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg); margin-top: -3px;
    transition: transform 0.3s var(--ease-cinema);
  }

.nav__item { position: relative; }

.nav__item:hover .nav__link-arrow,
  .nav__item.is-open .nav__link-arrow { transform: rotate(225deg); margin-top: 3px; }

.nav__dropdown {
    position: absolute; top: calc(100% + 16px); left: -24px;
    min-width: 240px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--accent-line);
    padding: 12px 0;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.4s var(--ease-cinema), transform 0.4s var(--ease-cinema), visibility 0.4s;
    pointer-events: none;
  }

/* Onzichtbare brug tussen nav-link en dropdown zodat de hoverketen nooit breekt */
  .nav__dropdown::before {
    content: '';
    position: absolute; top: -16px; left: 0; right: 0; height: 16px;
  }

.nav__item:hover .nav__dropdown,
  .nav__item.is-open .nav__dropdown {
    opacity: 1; visibility: visible;
    transform: translateY(0); pointer-events: auto;
  }

.nav__dropdown-link {
    display: block; padding: 12px 24px;
    color: var(--fg-muted);
    font-size: 11px; font-weight: 500;
    letter-spacing: var(--track-cta); text-transform: uppercase;
    transition: all 0.3s var(--ease-cinema);
    position: relative;
  }

.nav__dropdown-link::before {
    content: ''; position: absolute; left: 24px; top: 50%;
    width: 0; height: 1px; background: var(--fg);
    transition: width 0.4s var(--ease-cinema);
    transform: translateY(-50%);
  }

.nav__dropdown-link:hover { color: var(--fg); padding-left: 44px; }

.nav__dropdown-link:hover::before { width: 12px; }

.nav__dropdown-link--disabled {
    color: var(--fg-faint);
    cursor: default;
    display: flex; justify-content: space-between;
    align-items: center; padding-right: 24px;
  }

.nav__dropdown-link--disabled:hover { color: var(--fg-faint); padding-left: 24px; }

.nav__dropdown-link--disabled:hover::before { width: 0; }

.nav__soon-badge {
    font-size: 9px; font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--fg-faint);
    border: 1px solid var(--accent-line);
    padding: 3px 8px;
  }

.nav__logo {
    display: inline-flex; align-items: center;
    height: 22px;
    text-decoration: none;
    transition: opacity 0.4s var(--ease-cinema);
  }

.nav__logo img {
    height: 100%; width: auto; display: block;
    filter: invert(1);
  }

.nav__logo:hover { opacity: 0.75; }

.footer__logo {
    display: inline-block;
    height: 28px;
    margin-bottom: 24px;
    text-decoration: none;
    transition: opacity 0.4s var(--ease-cinema);
  }

.footer__logo img {
    height: 100%; width: auto; display: block;
    filter: invert(1);
  }

.footer__logo:hover { opacity: 0.75; }

.nav__cta {
    position: relative;
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--fg);
    font-size: 11px; font-weight: 500;
    letter-spacing: var(--track-cta); text-transform: uppercase;
    padding: 11px 22px;
    border: 1px solid var(--fg-faint);
    background: transparent;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.55s var(--ease-cinema), border-color 0.55s var(--ease-cinema);
  }

.nav__cta::before {
    content: "";
    position: absolute; inset: 0;
    background: var(--fg);
    transform: scaleX(0); transform-origin: left center;
    transition: transform 0.65s var(--ease-cinema);
    z-index: -1;
  }

.nav__cta::after {
    content: ""; width: 14px; height: 1px; background: currentColor;
    transition: width 0.5s var(--ease-cinema);
    flex-shrink: 0;
  }

.nav__cta__label {
    display: inline-block;
    position: relative;
    overflow: hidden;
    line-height: 1.4;
  }

.nav__cta__label > span {
    display: block;
    transition: transform 0.55s var(--ease-cinema);
  }

.nav__cta__label > span:last-child {
    position: absolute;
    top: 100%; left: 0; right: 0;
    white-space: nowrap;
  }

.nav__cta:hover { color: var(--bg); border-color: var(--fg); }

.nav__cta:hover::before { transform: scaleX(1); }

.nav__cta:hover::after { width: 22px; }

.nav__cta:hover .nav__cta__label > span { transform: translateY(-100%); }

.nav__cta--active { color: var(--bg); border-color: var(--fg); }

.nav__cta--active::before { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
    .nav__cta::before, .nav__cta::after, .nav__cta__label > span { transition: none; }
  }

.nav__join-mobile { display: none; }

.nav__hamburger {
    display: none;
    background: none; border: none;
    cursor: pointer; padding: 12px;
    margin-right: -12px; z-index: 110;
    position: relative;
  }

.nav__hamburger-line {
    display: block;
    width: 24px; height: 1px;
    background: var(--fg);
    margin: 6px 0;
    transition: transform 0.4s var(--ease-cinema), opacity 0.3s var(--ease-cinema);
  }

.nav__hamburger.is-open .nav__hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.nav__hamburger.is-open .nav__hamburger-line:nth-child(2) { opacity: 0; }

.nav__hamburger.is-open .nav__hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed; inset: 0;
    background: var(--bg); z-index: 99;
    opacity: 0; visibility: hidden;
    filter: blur(14px);
    transition: opacity 0.55s var(--ease-cinema), filter 0.65s var(--ease-cinema), visibility 0s linear 0.55s;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: calc(96px + env(safe-area-inset-top, 0px)) var(--gutter) calc(56px + env(safe-area-inset-bottom, 0px));
  }

.mobile-menu.is-open {
    opacity: 1; visibility: visible;
    filter: blur(0);
    transition: opacity 0.55s var(--ease-cinema), filter 0.65s var(--ease-cinema), visibility 0s linear 0s;
  }

@media (prefers-reduced-motion: reduce) {
    .mobile-menu { filter: none; transition: opacity 0.3s ease, visibility 0s linear 0.3s; }
    .mobile-menu.is-open { transition: opacity 0.3s ease, visibility 0s linear 0s; }
  }

.mobile-menu__inner { max-width: 540px; margin: 0 auto; }


/* Menu-items stappen zacht binnen na de blur-fade van het paneel */
.mobile-menu__inner > * {
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.5s var(--ease-cinema), transform 0.5s var(--ease-cinema);
  }
.mobile-menu.is-open .mobile-menu__inner > * { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-menu__inner > *:nth-child(1) { transition-delay: 0.10s; }
.mobile-menu.is-open .mobile-menu__inner > *:nth-child(2) { transition-delay: 0.17s; }
.mobile-menu.is-open .mobile-menu__inner > *:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.is-open .mobile-menu__inner > *:nth-child(4) { transition-delay: 0.31s; }
.mobile-menu.is-open .mobile-menu__inner > *:nth-child(5) { transition-delay: 0.37s; }
@media (prefers-reduced-motion: reduce) {
    .mobile-menu__inner > * { opacity: 1; transform: none; transition: none; }
  }

.mobile-menu__section { padding: 16px 0; }

.mobile-menu__section + .mobile-menu__section {
    border-top: 1px solid rgba(245, 243, 238, 0.05);
  }

.mobile-menu__label { display: none; }

.mobile-menu__link {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.3;
    color: var(--fg);
    padding: 14px 0;
    text-decoration: none;
    transition: color 0.35s var(--ease-cinema);
  }

.mobile-menu__link em { font-style: normal; font-weight: 300; color: var(--fg-muted); transition: color 0.35s var(--ease-cinema); }

.mobile-menu__link:active { color: var(--fg-muted); }

.mobile-menu__link:active em { color: var(--fg-faint); }

.mobile-menu__link--disabled {
    color: var(--fg-faint);
    cursor: default;
  }

.mobile-menu__link--disabled em { color: var(--fg-faint); }

.mobile-menu__soon {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.6em;
    color: var(--fg-faint);
    margin-left: 0.4em;
    letter-spacing: 0;
    text-transform: lowercase;
    border: none;
    padding: 0;
  }

.mobile-menu__cta {
    position: relative;
    display: inline-flex; align-items: center;
    gap: 14px; margin-top: 28px;
    color: var(--fg);
    font-size: 11px; font-weight: 500;
    letter-spacing: var(--track-cta);
    text-transform: uppercase;
    padding: 16px 30px;
    border: 1px solid var(--fg);
    border-radius: 999px;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.55s var(--ease-cinema);
    font-family: var(--font-body);
    text-decoration: none;
  }

.mobile-menu__cta::before {
    content: "";
    position: absolute; inset: 0;
    background: var(--fg);
    border-radius: 999px;
    transform: scaleX(0); transform-origin: left center;
    transition: transform 0.65s var(--ease-cinema);
    z-index: -1;
  }

.mobile-menu__cta__label {
    display: inline-block;
    position: relative;
    overflow: hidden;
    line-height: 1.4;
  }

.mobile-menu__cta__label > span {
    display: block;
    transition: transform 0.55s var(--ease-cinema);
  }

.mobile-menu__cta__label > span:last-child {
    position: absolute;
    top: 100%; left: 0; right: 0;
    white-space: nowrap;
  }

.mobile-menu__cta:active { color: var(--bg); }

.mobile-menu__cta:active::before { transform: scaleX(1); }

.mobile-menu__cta:active .mobile-menu__cta__label > span { transform: translateY(-100%); }

.mobile-menu__contact {
    margin-top: 4px;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 243, 238, 0.05);
    font-size: 12px;
    color: var(--fg-muted);
    line-height: 1.7;
  }

.mobile-menu__contact a {
    color: var(--fg);
    border-bottom: 1px solid rgba(245, 243, 238, 0.18);
    text-decoration: none;
  }

/* Stagger reveal on open */
  .mobile-menu__section,
  .mobile-menu__cta {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s var(--ease-cinema), transform 0.6s var(--ease-cinema);
  }

.mobile-menu.is-open .mobile-menu__section { opacity: 1; transform: none; }

.mobile-menu.is-open .mobile-menu__cta { opacity: 1; transform: none; transition-delay: 0.36s; }

.mobile-menu.is-open .mobile-menu__section:nth-child(1) { transition-delay: 0.12s; }

.mobile-menu.is-open .mobile-menu__section:nth-child(2) { transition-delay: 0.18s; }

.mobile-menu.is-open .mobile-menu__section:nth-child(3) { transition-delay: 0.24s; }

.mobile-menu.is-open .mobile-menu__section:nth-child(4) { transition-delay: 0.30s; }

body.menu-open { overflow: hidden; }

.footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
  }

.footer__brand-text {
    font-size: 13px; line-height: 1.75;
    color: var(--fg-muted);
    max-width: 320px; font-weight: 300;
  }

.footer__col h4 {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--fg-faint); margin-bottom: 24px;
  }

.footer__col ul { list-style: none; }

.footer__col li { margin-bottom: 12px; }

.footer__col a {
    color: var(--fg-muted);
    font-size: 13px; font-weight: 300;
    transition: color 0.3s var(--ease-cinema);
  }

.footer__col a:hover { color: var(--fg); }

.footer__social {
    display: flex; gap: 14px;
    margin-top: 24px;
  }

.footer__social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    color: var(--fg-muted);
    border: 1px solid var(--accent-line);
    border-radius: 999px;
    transition: color 0.3s var(--ease-cinema), border-color 0.3s var(--ease-cinema), background 0.3s var(--ease-cinema);
  }

.footer__social a:hover {
    color: var(--bg);
    background: var(--fg);
    border-color: var(--fg);
  }

.footer__legal {
    display: flex; gap: 24px;
  }

.footer__legal a {
    color: var(--fg-faint);
    text-decoration: none;
    transition: color 0.3s var(--ease-cinema);
  }

.footer__legal a:hover { color: var(--fg); }

@media (max-width: 880px) {
    .footer__legal { gap: 18px; flex-wrap: wrap; justify-content: center; }
  }

.footer__bottom {
    max-width: var(--container);
    margin: 80px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--accent-line);
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--fg-faint);
    letter-spacing: 0.08em;
  }

@media (max-width: 880px) {
    .nav__hamburger { display: block; }
    .nav__group--left { display: none; }
    .nav__group--right .nav__cta { display: none; }
    .nav__group--right { gap: 8px; }
    .nav .nav__lang-switcher { display: none; }
    .nav__join-mobile {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--fg);
      background: transparent;
      border: 1px solid var(--fg-faint);
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.2em; text-transform: uppercase;
      padding: 8px 12px;
      min-height: 44px; box-sizing: border-box;
      transition: background 0.4s var(--ease-cinema), color 0.4s var(--ease-cinema), border-color 0.4s var(--ease-cinema);
    }
    .nav__join-mobile::after {
      content: ""; width: 10px; height: 1px; background: currentColor;
    }
    .nav__join-mobile:active,
    .nav__join-mobile:hover {
      background: var(--fg); color: var(--bg); border-color: var(--fg);
    }
    .nav { display: flex; justify-content: space-between; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer__brand { grid-column: 1 / -1; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  }

/* Language switcher */
  .nav__lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
    padding: 7px 14px;
    border: 1px solid var(--accent-line);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: border-color 0.3s var(--ease-cinema);
  }

.nav__lang-switcher:hover { border-color: var(--fg-muted); }

.nav__lang {
    color: var(--fg-muted);
    text-decoration: none;
    transition: color 0.3s var(--ease-cinema);
  }

.nav__lang:hover { color: var(--fg); }

.nav__lang--active { color: var(--fg); }

.nav__lang-divider { color: var(--fg-faint); font-size: 10px; }

@media (max-width: 880px) {
    .nav__lang-switcher { padding: 5px 10px; font-size: 10px; letter-spacing: 0.18em; gap: 4px; margin-right: 8px; }
    .mobile-menu__lang {
      margin-top: 30px;
      padding-top: 24px;
      border-top: 1px solid var(--accent-line);
      display: flex;
      gap: 12px;
      font-family: var(--font-body);
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .mobile-menu__lang a {
      color: var(--fg-muted);
      text-decoration: none;
    }
    .mobile-menu__lang a.is-active { color: var(--fg); }
  }

/* SIGNATURE MARK — rotating circular text, premium private club convention */
  .sig-mark {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 120px; height: 120px;       /* +33% — signature, not afterthought */
    z-index: 50;
    pointer-events: none;
    mix-blend-mode: difference;
    animation: sig-rotate 56s linear infinite;
  }

.sig-mark svg { width: 100%; height: 100%; display: block; }

.sig-mark text {
    font-family: var(--font-body);
    font-size: 6.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    fill: #f5f3ee;
  }

@keyframes sig-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

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

@media (max-width: 880px) {
    .sig-mark { width: 84px; height: 84px; bottom: 20px; right: 20px; }
  }

@media (max-width: 480px) {
    .sig-mark { width: 64px; height: 64px; bottom: 14px; right: 14px; }
  }

/* Fade out when footer__bottom enters viewport — avoids overlap with BTW text */
  .sig-mark { transition: opacity 0.5s var(--ease-cinema); }

.sig-mark.is-near-footer { opacity: 0; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
    .grain { display: none; }
  }

/* Eén beeldgrade — alle content-fotografie in dezelfde koele, beheerste wereld */
  .hero__bg, .page-hero__bg, .hero__bg-video, .page-hero__bg-video,
  .cinema-photo__bg, .inside__media img, .service__thumb img, .services__float img,
  .coach__visual img, .coach-highlight__visual img, .eq-card__visual img,
  .group-gallery__item img, .journey__photo-wrap img,
  .member-review__video-wrap video {
    filter: saturate(0.88) contrast(1.04) brightness(0.94);
  }

/* Onzichtbare laag — focus, scrollbar, formulier-micro-interacties */
  a:focus-visible, button:focus-visible, input:focus-visible,
  select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
    outline: 1px solid var(--fg);
    outline-offset: 4px;
  }

html { scrollbar-color: rgba(245, 243, 238, 0.22) #0a0a0a; scrollbar-width: thin; }

.form__field:focus-within .form__label { color: var(--fg-muted); }

/* Eén knopvorm — rechthoek als merkvorm; pill alleen voor micro-elementen */
  .hero__cta, .hero__cta::before,
  .mobile-menu__cta, .mobile-menu__cta::before,
  .notfound__cta,
  .services__float, .services__float img,
  .service__thumb, .service__thumb img,
  .member-review__video-wrap { border-radius: 0; }

/* === FILM-DEVELOP — content-fotografie ontwikkelt naar de eindgrade bij het inscrollen.
   Gate: body.js-motion (gezet door /js/bfz-motion.js) zodat de site zonder JS gewoon
   de eindgrade toont. Parallax-beelden krijgen alleen filter (GSAP bezit hun transform). === */
@media (prefers-reduced-motion: no-preference) {
  body.js-motion :is(.service__thumb, .coach__visual, .coach-highlight__visual, .eq-card__visual, .group-gallery__item) img {
    transition: filter 1s var(--ease-cinema), transform 1.25s var(--ease-cinema), opacity 0.6s var(--ease-cinema);
  }
  body.js-motion .cinema-photo__bg,
  body.js-motion .inside__media img,
  body.js-motion .journey__photo-wrap img,
  body.js-motion .member-review__video-wrap video {
    transition: filter 1s var(--ease-cinema), opacity 0.6s var(--ease-cinema);
  }
  /* Develop-beelden slaan de generieke blur-reveal over: laden en ontwikkelen is één beweging */
  body.js-motion :is(.service__thumb, .coach__visual, .coach-highlight__visual, .eq-card__visual, .group-gallery__item, .inside__media, .journey__photo-wrap) img.img-loaded {
    animation: none;
  }
  body.js-motion :is(.service__thumb, .coach__visual, .coach-highlight__visual, .eq-card__visual, .group-gallery__item) img:not(.is-developed) {
    filter: saturate(0.55) contrast(0.98) brightness(0.72);
    transform: scale(1.04);
  }
  body.js-motion .cinema-photo__bg:not(.is-developed),
  body.js-motion .inside__media img:not(.is-developed),
  body.js-motion .journey__photo-wrap img:not(.is-developed),
  body.js-motion .member-review__video-wrap video:not(.is-developed) {
    filter: saturate(0.55) contrast(0.98) brightness(0.72);
  }
}

/* Review-sterren in lopende bijschriften: zelfde champagne als de kaart-sterren */
.stars-inline { color: var(--accent-warm); }

/* === TRUST BADGE (gedeeld: homepage had dit inline; dienstpagina's gebruiken het nu ook) === */
.intro__trust {
    display: inline-block;
    margin-top: 26px;
    font-size: 11px; font-weight: 500;
    letter-spacing: var(--track-cta); text-transform: uppercase;
    color: var(--fg-muted);
    text-decoration: none;
    transition: color 0.5s var(--ease-cinema);
  }
.intro__trust span { color: var(--accent-warm); letter-spacing: 0.18em; }
.intro__trust:hover { color: var(--fg); }

/* === FORMULIER: autofill in de donkere wereld houden (Chrome flitst anders wit/geel) === */
.form__input:-webkit-autofill,
.form__select:-webkit-autofill,
.form__textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #0a0a0a inset;
    -webkit-text-fill-color: var(--fg);
    caret-color: var(--fg);
    transition: background-color 999999s ease-out;
  }

/* === PRIJZEN: cijfers strak op een lijn === */
.price-card__price { font-variant-numeric: lining-nums; }

/* Home-indicator van moderne iPhones krijgt ademruimte onder de pagina */
body { padding-bottom: env(safe-area-inset-bottom, 0px); }

/* === TOUCH: directe tikrespons (geen dubbeltik-zoom-vertraging) en stille tik-feedback === */
a, button, input, select, textarea, label { touch-action: manipulation; }

@media (hover: none) {
    .faq__question:active > span:first-child { opacity: 0.55; }
    .faq__question > span:first-child { transition: opacity 0.15s ease; }
  }
