@font-face { font-family: 'Sora'; src: url('fonts/sora-v17-latin-300.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Sora'; src: url('fonts/sora-v17-latin-regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Sora'; src: url('fonts/sora-v17-latin-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  --spar: #0E2E26;
  --spar-diep: #081E19;
  --lavendel: #C4B7E6;
  --mist: #EFF5F1;
  --zacht: #7FA396;
  --adem: 0; /* 0 = uitgeademd, 1 = ingeademd */
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: radial-gradient(ellipse 120% 90% at 50% 0%, var(--spar) 0%, var(--spar-diep) 100%) fixed;
  color: var(--mist);
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: 1.03rem;
  line-height: 1.8;
}

::selection { background: var(--lavendel); color: var(--spar-diep); }

a { color: var(--lavendel); text-decoration: none; border-bottom: 1px solid var(--lavendel); }
a:focus-visible { outline: 2px solid var(--lavendel); outline-offset: 4px; }

.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.4rem clamp(1.5rem, 4vw, 3rem);
}
.merk { font-weight: 600; font-size: 1rem; letter-spacing: 0.22em; text-transform: lowercase; }
.top a { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* Hero met adem-orb */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.25rem 4rem;
}
.orb-veld {
  position: relative;
  width: min(46vh, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-spoor {
  fill: none;
  stroke: rgba(196, 183, 230, 0.16);
  stroke-width: 2;
}
.ring-vul {
  fill: none;
  stroke: var(--lavendel);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 553;
  stroke-dashoffset: 553;
}
.orb {
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%,
    rgba(239, 245, 241, 0.95) 0%,
    var(--lavendel) 38%,
    #6E5BA8 78%,
    #4A3E78 100%);
  box-shadow:
    0 0 calc(30px + var(--adem) * 70px) rgba(196, 183, 230, calc(0.25 + var(--adem) * 0.3)),
    inset 0 -12px 40px rgba(14, 46, 38, 0.35);
  transform: scale(calc(0.72 + var(--adem) * 0.38));
  will-change: transform;
}
.fase {
  margin-top: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--lavendel);
  min-height: 1.5em;
}
.fase-tel {
  font-weight: 300;
  font-size: 2rem;
  color: var(--zacht);
  font-variant-numeric: tabular-nums;
  min-height: 1.4em;
}
.hero-titel {
  margin-top: 2.5rem;
  font-weight: 300;
  font-size: clamp(1.7rem, 4.2vw, 2.9rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.hero-sub { margin-top: 1.25rem; max-width: 30rem; color: var(--zacht); font-size: 0.98rem; }

/* Blokken ademen zachtjes mee */
.blok {
  max-width: 34rem;
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
  text-align: center;
  transform: scale(calc(0.995 + var(--adem) * 0.01));
}
.blok h2 {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--lavendel);
  margin-bottom: 1.75rem;
}
.blok p { color: var(--zacht); }

.sessies { list-style: none; }
.sessies li {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(196, 183, 230, 0.14);
}
.sessies li:first-child { border-top: 1px solid rgba(196, 183, 230, 0.14); }
.sessie-naam {
  display: block;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--mist);
  margin-bottom: 0.2rem;
}
.sessie-info { font-size: 0.85rem; color: var(--zacht); letter-spacing: 0.04em; }

.belofte p { font-size: 1.15rem; line-height: 2; color: var(--mist); }

.colofon {
  text-align: center;
  padding: 3rem 1.5rem 4.5rem;
  color: var(--zacht);
  font-size: 0.88rem;
  max-width: 36rem;
  margin: 0 auto;
}
