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

:root {
  --cream:   #F4F0E8;
  --warm:    #DDE8DC;
  --clay:    #C4B878;
  --terra:   #B8963C;
  --terra-d: #2D4A35;
  --dark:    #1A2E22;
  --mid:     #4A6B5A;
  --light:   #C4D5C0;
  --white:   #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  font-family: 'Jost', sans-serif;
  color: var(--dark);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; }
em { font-style: italic; font-family: 'Cormorant Garamond', serif; }

/* ── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
  background: rgba(26,46,34,0.97);
  backdrop-filter: blur(12px);
}
nav.scrolled {
  box-shadow: 0 1px 0 rgba(196,184,120,0.2);
  padding: 14px 60px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #F4F0E8;
  text-decoration: none;
  letter-spacing: 0.02em;
  font-style: italic;
}
.nav-logo strong { font-style: normal; }
.nav-logo span { color: #C4B878; font-style: normal; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,240,232,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #C4B878; }
.nav-cta {
  background: var(--terra) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--terra-d) !important; }

/* ── PAGE HERO (subpages) ───────────────────────────────────── */
.page-hero {
  background: #2D4A35;
  padding: 180px 80px 80px;
  text-align: left;
}
.page-hero .section-tag { color: var(--clay); }
.page-hero .section-tag::after { background: rgba(255,255,255,0.15); }
.page-hero h1, .page-hero .section-title {
  font-size: clamp(40px, 4.2vw, 60px);
  color: #F4F0E8;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 em, .page-hero .section-title em { color: #C4B878; }
.page-hero p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(244,240,232,0.65);
  max-width: 560px;
}

/* ── HERO (home) ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px 80px;
  position: relative;
  z-index: 2;
  background: #2D4A35;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C4B878;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: #C4B878;
}
.hero h1 {
  font-size: clamp(52px, 5vw, 76px);
  line-height: 1.05;
  color: #F4F0E8;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s ease forwards;
}
.hero h1 em { color: #C4B878; display: block; }
.hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(244,240,232,0.65);
  max-width: 420px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero-sub strong { color: #F4F0E8; font-weight: 500; }
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s ease forwards;
}
.btn-primary {
  background: var(--terra);
  color: white;
  padding: 16px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--terra-d); transform: translateY(-1px); }
.btn-ghost {
  color: rgba(244,240,232,0.6);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #C4B878; }
.btn-ghost::after { content: '→'; font-size: 14px; }

.hero-right {
  position: relative;
  background: var(--warm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
  gap: 24px;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(45deg, var(--terra) 0, var(--terra) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.hero-card {
  position: relative;
  width: 100%;
  background: white;
  padding: 32px 36px;
  box-shadow: 0 24px 80px rgba(30,26,22,0.12);
  opacity: 0;
  animation: slideIn 0.9s 0.5s ease forwards;
  z-index: 1;
}
.hero-card-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 20px;
}
.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 10px;
  color: var(--mid);
  line-height: 1.4;
  font-weight: 400;
}
.hero-stat-caption {
  font-size: 10px;
  color: var(--mid);
  opacity: 0.7;
  line-height: 1.4;
  margin-top: 6px;
}

/* ── HERKEN JE DIT ──────────────────────────────────────────── */
.herken {
  background: var(--white);
  padding: 100px 80px;
}
.herken-inner {
  max-width: 720px;
}
.herken-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.herken-item {
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  padding: 18px 0;
  border-bottom: 1px solid var(--warm);
  position: relative;
  padding-left: 28px;
}
.herken-item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terra);
}
.herken-cta {
  margin-top: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--terra-d);
}
.herken-cta a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── SECTION BASE ───────────────────────────────────────────── */
section { padding: 100px 80px; }
.section-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-tag::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--light);
}
.section-title {
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title em { color: var(--terra); }
.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 560px;
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--white);
}
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}
.credential {
  background: var(--cream);
  padding: 20px 24px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}
.credential:hover { border-color: var(--terra); }
.credential-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 6px;
}
.credential-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
}

.about-visual { position: relative; }
.about-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--light);
  z-index: -1;
}

/* ── WAAROM KIEZEN ──────────────────────────────────────────── */
.waarom {
  background: var(--cream);
  padding: 80px;
  margin-top: 4px;
}
.waarom-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.waarom h3 {
  font-size: 30px;
  color: var(--dark);
  line-height: 1.15;
}
.waarom p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
}

/* ── MIJN VISIE ─────────────────────────────────────────────── */
.visie {
  background: var(--terra-d);
  padding: 100px 80px;
  color: white;
}
.visie .section-tag { color: var(--clay); }
.visie .section-tag::after { background: rgba(255,255,255,0.15); }
.visie-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-style: italic;
  line-height: 1.5;
  max-width: 780px;
  margin-bottom: 28px;
}
.visie-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.service-card {
  background: white;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  cursor: default;
}
.service-card:hover { transform: translateY(-4px); }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--terra);
  transition: width 0.3s ease;
}
.service-card:hover::after { width: 100%; }
.icon-line {
  width: 30px;
  height: 30px;
  display: block;
  margin-bottom: 20px;
  stroke: var(--terra);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-line-sm {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--terra);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-line-hero {
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  display: block;
  stroke: var(--terra);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--mid);
}
.service-items {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-item {
  font-size: 12px;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.service-item::before {
  content: '—';
  color: var(--clay);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── PROOF / TESTIMONIALS PLACEHOLDER ──────────────────────── */
.proof { background: var(--white); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.proof-card {
  background: var(--cream);
  padding: 32px;
  border: 1px dashed var(--light);
}
.proof-card-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}
.proof-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--mid);
  line-height: 1.5;
}

/* ── PACKAGES ───────────────────────────────────────────────── */
.packages { background: var(--dark); }
.packages .section-tag { color: var(--clay); }
.packages .section-tag::after { background: rgba(255,255,255,0.1); }
.packages .section-title { color: white; }
.packages .section-body { color: rgba(255,255,255,0.6); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.package-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 32px;
  position: relative;
  transition: background 0.2s;
}
.package-card:hover { background: rgba(255,255,255,0.08); }
.package-card.featured {
  background: var(--terra);
  border-color: var(--terra);
}
.featured-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--clay);
  color: white;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  white-space: nowrap;
}
.pkg-name {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.package-card.featured .pkg-name { color: rgba(255,255,255,0.8); }
.pkg-hours {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-hours-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.package-card.featured .pkg-hours-label { color: rgba(255,255,255,0.7); }
.pkg-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.package-card.featured .pkg-divider { background: rgba(255,255,255,0.25); }
.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-price-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}
.package-card.featured .pkg-price-label { color: rgba(255,255,255,0.7); }

.packages-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 28px;
  letter-spacing: 0.04em;
}

/* ── INVESTERING CARD ───────────────────────────────────────── */
.investering-card {
  max-width: 560px;
  margin: 48px auto 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 48px 56px;
  text-align: center;
}
.investering-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.investering-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}
.investering-price span {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-left: 6px;
}
.investering-note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.investering-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

/* ── MAATWERK BLOCK ─────────────────────────────────────────── */
.maatwerk-block {
  margin-top: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.maatwerk-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.maatwerk-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}
.maatwerk-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 40px; right: 40px;
  height: 1px;
  background: var(--light);
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  width: 44px;
  height: 44px;
  background: var(--terra);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--mid);
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact {
  background: var(--warm);
  text-align: center;
  padding: 120px 80px;
}
.contact .section-tag { justify-content: center; }
.contact .section-tag::after { display: none; }
.contact .section-title { margin: 0 auto 20px; }
.contact .section-body { margin: 0 auto 48px; text-align: center; }

.contact-card {
  background: white;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 80px;
  box-shadow: 0 24px 80px rgba(30,26,22,0.08);
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terra);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
  text-align: center;
}
.contact-info a {
  font-size: 15px;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info a:hover { color: var(--terra); }
.contact-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-role {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 20px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 32px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
}
.footer-logo span { color: var(--clay); }
.footer-text {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--clay); }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 28px; }
  nav.scrolled { padding: 12px 28px; }
  .nav-links { display: none; }
  section { padding: 72px 28px; }
  .page-hero { padding: 140px 28px 56px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 28px 60px; }
  .hero-right { min-height: 340px; }
  .herken { padding: 72px 28px; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .waarom { padding: 56px 28px; }
  .waarom-inner { grid-template-columns: 1fr; gap: 24px; }
  .visie { padding: 72px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .maatwerk-block { flex-direction: column; text-align: center; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .contact-card { padding: 40px 28px; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 28px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .about-credentials { grid-template-columns: 1fr; }
}
