/* ============================================================
   Soulleadership — Divine Masculine
   ============================================================ */

:root {
  --bg: #0f0d0c;
  --bg-2: #141110;
  --cream: #f3e9dc;
  --cream-soft: #d9cfc3;
  --muted: #9d9389;
  --gold: #b08a55;
  --gold-soft: #c9a672;
  --line: rgba(243, 233, 220, 0.35);

  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Jost", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --script: "Homemade Apple", cursive;

  --gutter: clamp(20px, 6.5vw, 72px);
  /* content centreert boven deze breedte: zijmarge groeit mee */
  --content-max: 1400px;
  --pad: max(var(--gutter), calc((100% - var(--content-max)) / 2));
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
p, h1, h2, h3, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
i { font-style: normal; opacity: .55; margin: 0 .5em; }

/* ---------- shared bits ---------- */

.eyebrow {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.eyebrow--gold { color: var(--gold-soft); }

.hline--gold { background: var(--gold); opacity: .8; }
.hline {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--line);
  vertical-align: middle;
}
.vline {
  display: block;
  width: 1px;
  height: 64px;
  background: var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 16px 26px;
  border: 1px solid var(--gold);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--cream);
  transition: background .35s ease, color .35s ease;
}
.btn__arrow { width: 20px; height: 10px; transition: transform .35s ease; }
.btn:hover { background: var(--gold); color: var(--bg); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- scroll-reveal (wire-standaard) ----------
   Verborgen-staat + overgang in CSS; JS voegt alleen .is-revealed toe
   (geen flash/CLS). Kinderen van [data-reveal-group] krijgen stagger via
   --reveal-delay. Stijl per element via data-anim: fade-up (default) / fade. */
[data-reveal],
[data-reveal-group] > * {
  --reveal-dur: .9s;
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity var(--reveal-dur) ease,
    transform var(--reveal-dur) cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-anim="fade"][data-reveal],
[data-anim="fade"] [data-reveal-group] > * { transform: none; --reveal-dur: 1.4s; }

[data-reveal].is-revealed,
[data-reveal-group] > .is-revealed {
  opacity: 1;
  transform: none;
}

/* geen JS → direct zichtbaar */
.no-js [data-reveal],
.no-js [data-reveal-group] > * {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-group] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: -2;
}


.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(15,13,12,.55) 0%, rgba(15,13,12,0) 28%),
    linear-gradient(to right, rgba(15,13,12,.55) 0%, rgba(15,13,12,.15) 45%, rgba(15,13,12,0) 70%),
    linear-gradient(to top, var(--bg) 0%, rgba(15,13,12,.45) 6%, rgba(15,13,12,.15) 14%, rgba(15,13,12,0) 24%);
}

/* header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px var(--pad) 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo__emblem {
  height: 56px;
  width: auto;
  filter: invert(1) brightness(.98);
  opacity: .95;
}
.logo__wordmark {
  height: 24px;
  width: auto;
  filter: invert(1) brightness(.98);
}

.nav { display: flex; gap: 34px; }
.nav a {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--cream);
  opacity: .9;
  transition: opacity .3s;
}
.nav a:hover { opacity: 1; color: var(--gold-soft); }

/* content */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px var(--pad) 140px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7.6vw, 88px);
  line-height: .98;
  letter-spacing: -.02em;
  margin: 22px 0 32px;
  max-width: 720px;
  color: var(--cream);
}

.hero__lead {
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  color: var(--cream-soft);
}

/* corners */
.hero__corner {
  position: absolute;
  bottom: 56px;
  font-size: 9px;
  letter-spacing: .36em;
  text-transform: uppercase;
  line-height: 2.2;
  color: var(--cream-soft);
}
.hero__corner--left {
  left: calc(var(--pad) - 42px);
  display: flex;
  align-items: center;
  gap: 42px;
}
.hero__corner--right {
  right: var(--pad);
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: right;
}

/* ============================================================
   INTRO — sectie 2
   ============================================================ */

.intro {
  position: relative;
  padding: 100px var(--pad) 120px;
  background: var(--bg);
  isolation: isolate;
  overflow: hidden;
}

/* parallax-laag: hoger dan de sectie, wordt via JS verschoven */
.intro__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  bottom: -12%;
  z-index: -3;
  background: url("sectie2.jpg") center right / cover no-repeat;
  will-change: transform;
}

.intro__fireflies {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.intro__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to right, rgba(15,13,12,.98) 0%, rgba(15,13,12,.96) 55%, rgba(15,13,12,.55) 82%, rgba(15,13,12,.25) 100%),
    linear-gradient(to bottom, var(--bg) 0%, rgba(15,13,12,0) 30%),
    linear-gradient(to top, var(--bg) 0%, rgba(15,13,12,.85) 8%, rgba(15,13,12,.4) 20%, rgba(15,13,12,0) 36%);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 120px minmax(0, 1fr);
  gap: 0 40px;
  max-width: 1180px;
}

/* left column */
.intro__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 26px 0 32px;
}

.intro__text {
  font-size: 17px;
  line-height: 1.75;
  max-width: 440px;
  color: var(--cream-soft);
  margin-bottom: 48px;
}

.intro__values {
  font-size: 9px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 64px;
}
.intro__values .hline { margin-right: 24px; }

.signature__script {
  font-family: var(--script);
  font-size: 24px;
  line-height: 1.2;
  color: var(--gold-soft);
  transform: rotate(-4deg);
  transform-origin: left bottom;
  margin-left: 6px;
}
.signature__caps {
  font-size: 10px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-top: 10px;
  padding-left: 32px;
}

/* divider (verticale lijn met embleem) */
.divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent, var(--line) 12%,
    var(--line) calc(50% - 60px), transparent calc(50% - 60px),
    transparent calc(50% + 60px), var(--line) calc(50% + 60px),
    var(--line) 88%, transparent);
}
.divider__emblem {
  position: relative;
  z-index: 1;
  width: 42px;
  height: auto;
  color: var(--gold);
}

/* right column */
.intro__right { padding-top: 6px; }

.stat + .stat {
  margin-top: 40px;
  padding-top: 40px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 1px;
  background: var(--line);
}

.stat__value {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -.01em;
}
.stat__value--sm { font-size: 40px; line-height: 1.05; margin-bottom: 18px; }

.stat__label {
  font-size: 10px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin: 10px 0 14px;
}

.stat__text {
  font-size: 15px;
  line-height: 1.6;
  max-width: 290px;
  color: var(--cream-soft);
}

.intro__corner {
  position: absolute;
  right: var(--pad);
  bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  font-size: 9px;
  letter-spacing: .36em;
  text-transform: uppercase;
  line-height: 2.2;
  text-align: right;
  color: var(--cream-soft);
}
.intro__corner .hline { width: 100px; }

/* ============================================================
   VERWACHTEN — sectie 3
   ============================================================ */

.expect {
  position: relative;
  padding: 110px var(--pad) 120px;
  background: var(--bg);
  isolation: isolate;
  overflow: hidden;
}

.expect__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  bottom: -12%;
  z-index: -2;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center 45%;
  background: var(--bg);
  will-change: transform;
}

.expect__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right, rgba(15,13,12,.9) 0%, rgba(15,13,12,.7) 30%, rgba(15,13,12,.3) 55%, rgba(15,13,12,.1) 100%),
    linear-gradient(to top, rgba(15,13,12,.92) 0%, rgba(15,13,12,.55) 18%, rgba(15,13,12,.15) 45%, rgba(15,13,12,0) 100%),
    linear-gradient(to bottom, var(--bg) 0%, rgba(15,13,12,.85) 8%, rgba(15,13,12,.4) 20%, rgba(15,13,12,0) 38%);
}

.expect__head { max-width: 520px; }

.expect__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 26px 0 30px;
}

.expect__text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--cream-soft);
  margin-bottom: 36px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 90px;
  max-width: 1080px;
  padding-right: 120px;
}

.step__num {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  color: var(--cream);
  padding-bottom: 12px;
  margin-bottom: 22px;
  position: relative;
}
.step__num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background: var(--line);
}

.step__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 18px;
}

.step__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream-soft);
  max-width: 280px;
}

.expect__corner {
  position: absolute;
  right: var(--pad);
  bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 9px;
  letter-spacing: .36em;
  text-transform: uppercase;
  line-height: 2.2;
  color: var(--cream-soft);
}
.expect__corner .hline { width: 30px; }

/* ============================================================
   METHODE — sectie 4
   ============================================================ */

.method {
  position: relative;
  padding: 110px var(--pad) 110px;
  background: var(--bg);
  isolation: isolate;
  overflow: hidden;
}

/* foto links: geen overscan/zoom, maar zachte randen zodat hij ver mag schuiven */
.method__media {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 52%;
  z-index: -1;
  pointer-events: none;
}
.method__media::after {
  /* overloop naar donker aan de rechterkant */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(15,13,12,0) 55%, rgba(15,13,12,.75) 85%, var(--bg) 100%),
    linear-gradient(to bottom, var(--bg) 0%, rgba(15,13,12,.75) 7%, rgba(15,13,12,0) 26%, rgba(15,13,12,0) 70%, rgba(15,13,12,.75) 100%);
}
.method__img {
  position: absolute;
  left: 0;
  top: -10%;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: 54% 50%;
  will-change: transform;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 26%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 26%, #000 78%, transparent 100%);
}

.method__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1.1fr);
  gap: 0 40px;
  max-width: 1300px;
}

.method__divider { grid-column: 2; }
.method__content { grid-column: 3; padding-top: 6px; }

.method__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 22px 0 26px;
}

.method__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-soft);
  max-width: 560px;
  margin-bottom: 30px;
}

.method__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 40px;
  margin-top: 56px;
  max-width: 560px;
}

.method__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.method__item-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.method__item-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cream-soft);
  max-width: 240px;
}

.method__quote {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 620px;
}
.method__quote-text {
  font-family: var(--script);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gold-soft);
  text-align: center;
  text-wrap: balance;
}
.method__quote .hline { width: 70px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .intro__grid { grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr); }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .hero__corner--right { display: none; }
  .hero__corner--left { left: var(--gutter); }
  .hero__content { padding-bottom: 150px; }

  .intro { padding: 80px var(--gutter) 160px; }

  .method { padding: 0 var(--gutter) 110px; }
  .method__media {
    position: relative;
    width: auto;
    height: 62vh;
    min-height: 380px;
    margin: 0 calc(-1 * var(--gutter)) 48px;
  }
  .method__media::after {
    background: linear-gradient(to bottom, rgba(15,13,12,.4), rgba(15,13,12,0) 30%, rgba(15,13,12,0) 60%, var(--bg));
  }
  .method__inner { display: block; }
  .method__divider { display: none; }
  .method__grid { grid-template-columns: 1fr; gap: 36px; margin-top: 44px; }
  .method__item-title br, .method__title br { display: none; }
  .method__quote { align-items: flex-start; margin-top: 48px; }
  .method__quote-text { text-align: left; }

  .expect { padding: 80px var(--gutter) 200px; }
  .expect__bg { object-position: 76% 50%; }
  .expect__shade {
    background:
      linear-gradient(to right, rgba(15,13,12,.75) 0%, rgba(15,13,12,.45) 50%, rgba(15,13,12,.2) 100%),
      linear-gradient(to top, rgba(15,13,12,.92) 0%, rgba(15,13,12,.5) 22%, rgba(15,13,12,.1) 50%, rgba(15,13,12,0) 100%),
      linear-gradient(to bottom, var(--bg) 0%, rgba(15,13,12,.85) 8%, rgba(15,13,12,.4) 20%, rgba(15,13,12,0) 38%);
  }
  .steps { grid-template-columns: 1fr; gap: 48px; margin-top: 64px; padding-right: 0; }
  .step__title br { display: none; }
  .expect__corner { bottom: 56px; }
  .intro__grid { grid-template-columns: 1fr; gap: 64px; }
  .intro__divider { height: 140px; }
}

@media (max-width: 480px) {
  .logo__emblem { height: 44px; }
  .logo__wordmark { height: 19px; }
  .hero__lead br { display: none; }
  .hero__title br { display: none; }
  .expect__title br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .parallax__bg { top: 0; bottom: 0; transform: none !important; }
  .method__img { mask-image: none; -webkit-mask-image: none; }
  .intro__fireflies { display: none; }
}
