/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #fafaf8;
  --bg-alt:    #f4f1ea;
  --bg-card:   #ffffff;
  --border:    #e8e4da;
  --border-2:  #d6d0c4;
  --ink:       #141410;
  --ink-2:     #3a3830;
  --ink-3:     #7a7568;
  --amber:     #b07a2e;
  --amber-2:   #c9903a;
  --amber-bg:  #f5ead8;
  --amber-mid: rgba(176,122,46,0.12);

  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans: 0.35s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===========================
   UTILITIES
=========================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.h2 em { font-style: italic; }

.body-text {
  font-size: 1rem;
  color: var(--ink-3);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--amber-bg);
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(176,122,46,0.25);
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}

.btn--dark {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn--dark:hover {
  background: var(--ink-2);
}

.btn--outline {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--border-2);
}

.btn--outline:hover {
  border-color: var(--ink-2);
  background: var(--bg-alt);
}

.btn--lg {
  padding: 0.95rem 2.2rem;
  font-size: 0.95rem;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled {
  border-color: var(--border);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-3);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__links a:hover {
  color: var(--ink);
  background: var(--bg-alt);
}

.nav__cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--ink);
  color: var(--bg) !important;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.nav__cta:hover {
  background: var(--ink-2);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--trans);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--ink-3);
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu ul li a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--ink);
  transition: color 0.2s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.cta-link {
  color: var(--amber);
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  padding: 7rem 2rem 5rem;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__badge {
  margin-bottom: 1.8rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}

.hero__title em {
  font-style: italic;
  color: var(--amber);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--ink-3);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* HERO VISUAL */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card-stack {
  position: relative;
  width: 340px;
  height: 380px;
}

.hcard {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 4px 24px rgba(20,20,16,0.06), 0 1px 4px rgba(20,20,16,0.04);
}

.hcard--back {
  width: 280px;
  height: 200px;
  bottom: 0;
  right: 0;
  background: var(--bg-alt);
  z-index: 1;
  transform: rotate(3deg);
}

.hcard__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.2rem;
}

.hcard__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.bar {
  flex: 1;
  background: var(--border-2);
  border-radius: 3px 3px 0 0;
  transition: height 1s ease;
}

.bar--accent {
  background: var(--amber);
}

.hcard--front {
  width: 300px;
  top: 0;
  left: 0;
  z-index: 2;
}

.hcard__icon {
  font-size: 1.3rem;
  color: var(--amber);
  margin-bottom: 0.8rem;
}

.hcard__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.hcard__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.hcard__list li {
  font-size: 0.83rem;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hcard__list li::before {
  content: '○';
  font-size: 0.6rem;
  color: var(--border-2);
  flex-shrink: 0;
}

.hcard__list li.done::before {
  content: '●';
  color: var(--amber);
}

.hcard__list li.done {
  color: var(--ink-2);
}

.hcard__progress-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-3);
  margin-bottom: 0.4rem;
}

.hcard__progress-bar {
  height: 4px;
  background: var(--bg-alt);
  border-radius: 2px;
  overflow: hidden;
}

.hcard__progress-fill {
  height: 100%;
  width: 75%;
  background: var(--amber);
  border-radius: 2px;
  animation: progressFill 1.5s var(--ease) 0.5s both;
}

@keyframes progressFill {
  from { width: 0; }
  to   { width: 75%; }
}

/* ===========================
   DIVIDER STATEMENT
=========================== */
.section-divider {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  background: var(--bg-alt);
}

.divider__text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 800px;
}

.divider__text em {
  font-style: italic;
  color: var(--ink);
}

/* ===========================
   WAAROM
=========================== */
.waarom {
  padding: 8rem 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.gap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gap-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.gap-item:first-child {
  border-top: 1px solid var(--border);
}

.gap-item__num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--amber);
  min-width: 28px;
  padding-top: 0.15rem;
}

.gap-item h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.gap-item p {
  font-size: 0.88rem;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ===========================
   AANPAK
=========================== */
.aanpak {
  padding: 8rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  margin-bottom: 4rem;
  max-width: 560px;
}

.section-head .h2 {
  margin-bottom: 0;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.service:hover {
  box-shadow: 0 8px 32px rgba(20,20,16,0.08);
  border-color: var(--border-2);
}

.service--alt {
  background: var(--ink);
  border-color: var(--ink);
}

.service--alt h3,
.service--alt .service__sub,
.service--alt .service__list li {
  color: rgba(250,250,248,0.85);
}

.service--alt .service__list li::before {
  color: var(--amber-2);
}

.service--alt .service__note {
  color: rgba(250,250,248,0.45);
  border-top-color: rgba(255,255,255,0.1);
}

.service--alt .service__num {
  color: var(--amber-2);
}

.service__num {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.service h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.service__sub {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.service__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
  flex: 1;
}

.service__list li {
  font-size: 0.88rem;
  color: var(--ink-2);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.service__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.75rem;
}

.service__note {
  font-size: 0.82rem;
  color: var(--ink-3);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  line-height: 1.6;
}

/* ===========================
   FILOSOFIE
=========================== */
.filosofie {
  padding: 8rem 0;
}

.filosofie__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.filosofie__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-2);
  border-left: 2px solid var(--amber);
  padding-left: 1.5rem;
  line-height: 1.5;
  margin-top: 2rem;
}

.filosofie__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.fpillar {
  background: var(--bg-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.2s ease;
}

.fpillar:hover {
  background: var(--bg-alt);
}

.fpillar__icon {
  font-size: 1.4rem;
  color: var(--amber);
}

.fpillar h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.fpillar p {
  font-size: 0.84rem;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ===========================
   VOOR WIE
=========================== */
.voorwie {
  padding: 8rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.voorwie__top {
  margin-bottom: 3.5rem;
  max-width: 480px;
}

.voorwie__top .h2 {
  margin-bottom: 0;
}

.voorwie__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}

.vcard {
  background: var(--bg-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.2s ease;
}

.vcard:hover {
  background: var(--bg);
}

.vcard__icon {
  font-size: 1.3rem;
  color: var(--amber);
  margin-bottom: 0.3rem;
}

.vcard h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.vcard p {
  font-size: 0.84rem;
  color: var(--ink-3);
  line-height: 1.6;
}

.outcomes {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.outcomes__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.2rem;
}

.outcomes__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.outcome-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.83rem;
  color: var(--ink-2);
  font-weight: 400;
}

.outcome-tag::before {
  content: '✓';
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===========================
   OVER
=========================== */
.over {
  padding: 8rem 0;
}

.over__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.over__quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
}

.over__quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  border-radius: 0 0 2px 2px;
}

.over__quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--amber-bg);
  line-height: 0.8;
  margin-bottom: 1.5rem;
}

.over__quote-card p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.over__attr {
  font-size: 0.82rem;
  color: var(--ink-3);
  font-style: italic;
}

/* ===========================
   CTA
=========================== */
.cta {
  background: var(--ink);
  padding: 9rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(176,122,46,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
}

.cta__inner .eyebrow {
  justify-content: center;
  display: flex;
  color: rgba(176,122,46,0.9);
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #faf9f5;
  margin-bottom: 1.2rem;
}

.cta__title em {
  font-style: italic;
  color: var(--amber-2);
}

.cta__sub {
  font-size: 1.05rem;
  color: rgba(250,249,245,0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.cta .btn--dark {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--bg);
}

.cta .btn--dark:hover {
  background: var(--amber-2);
  border-color: var(--amber-2);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--ink-2);
  padding: 4rem 0 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer .nav__logo {
  color: var(--bg);
  display: block;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: rgba(250,250,248,0.4);
  line-height: 1.8;
}

.footer__nav {
  display: flex;
  gap: 4rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.3);
  margin-bottom: 0.25rem;
}

.footer__col a {
  font-size: 0.875rem;
  color: rgba(250,250,248,0.6);
  transition: color 0.2s ease;
}

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

.footer__bottom {
  padding: 1.5rem 0;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(250,250,248,0.25);
}

/* ===========================
   RESPONSIVE
=========================== */
.hide-sm { display: inline; }

@media (max-width: 1024px) {
  .voorwie__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-top: 6rem;
    gap: 3rem;
  }

  .hero__visual {
    justify-content: flex-start;
  }

  .hero__card-stack {
    width: 100%;
    max-width: 380px;
    height: 360px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .filosofie__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .over__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .footer__nav {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .container {
    padding: 0 1.25rem;
  }

  .waarom,
  .aanpak,
  .filosofie,
  .voorwie,
  .over {
    padding: 5rem 0;
  }

  .hide-sm { display: none; }

  .voorwie__grid {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
  }

  .filosofie__pillars {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
  }
}

@media (max-width: 520px) {
  .hero__title {
    font-size: 2.4rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .voorwie__grid {
    grid-template-columns: 1fr;
  }

  .filosofie__pillars {
    grid-template-columns: 1fr;
  }

  .footer__nav {
    flex-direction: column;
    gap: 2rem;
  }
}
