:root {
  --bone: #F4EFE7;
  --bone-2: #EBE4D7;
  --ink: #1A1C1B;
  --ink-muted: #44494A;
  --petrol: #1F4347;
  --petrol-deep: #122B2E;
  --ochre: #B8884A;
  --line: rgba(26, 28, 27, 0.12);
  --line-strong: rgba(26, 28, 27, 0.22);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Instrument Sans", -apple-system, sans-serif;
  background: var(--bone);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.serif {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* -------- NAV -------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(244, 239, 231, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--line); }
nav .container { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pompeblad {
  width: 18px;
  height: 18px;
  color: var(--ochre);
  flex-shrink: 0;
  transform: translateY(-1px) rotate(-15deg);
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--bone) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--petrol-deep); color: var(--bone) !important; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }

/* -------- HERO (CINEMATIC FULL-WIDTH) -------- */
.hero {
  min-height: 100vh;
  padding: 160px 0 100px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--bone);
  background: var(--petrol-deep);
}

/* === HERO IMAGE LAYER ===
   Hero-foto: hero.avif — Fries stadsgezicht
*/
.hero-image {
  position: absolute;
  inset: 0;
  background: url('hero.avif') center/cover no-repeat;
  z-index: 0;
}

/* Decorative Frisian skyline silhouette at base - hidden when real photo is used */
.hero-silhouette {
  display: none;
}
.hero-silhouette svg { width: 100%; height: 100%; display: block; }

/* Subtle film grain */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* Dark gradient overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(10, 29, 31, 0.35) 0%, rgba(10, 29, 31, 0.4) 40%, rgba(10, 29, 31, 0.75) 100%),
    linear-gradient(90deg, rgba(10, 29, 31, 0.75) 0%, rgba(10, 29, 31, 0.15) 55%, rgba(10, 29, 31, 0.45) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: end;
  padding-top: 60px;
  padding-bottom: 20px;
}

.hero .eyebrow {
  color: var(--ochre);
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}
.hero .eyebrow::before { background: var(--ochre); }

.hero h1.hero-title {
  font-family: "Fraunces", serif;
  font-size: clamp(52px, 7.5vw, 104px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  color: var(--bone);
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
}
.hero h1.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--ochre);
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(244, 239, 231, 0.88);
  max-width: 560px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero .btn-primary {
  background: var(--bone);
  color: var(--ink);
}
.hero .btn-primary:hover { background: var(--ochre); color: var(--ink); }
.hero .btn-ghost {
  color: var(--bone);
  border-color: rgba(244, 239, 231, 0.35);
}
.hero .btn-ghost:hover { background: rgba(244, 239, 231, 0.08); border-color: var(--bone); }

/* Refined quote card for cinematic hero */
.hero-card {
  background: rgba(10, 29, 31, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(244, 239, 231, 0.15);
  color: var(--bone);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s 0.5s forwards;
  overflow: hidden;
}
.hero-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ochre);
  margin-bottom: 20px;
}
.hero-card blockquote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 28px;
  color: var(--bone);
}
.hero-card-meta {
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 231, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.hero-card-meta-item { font-size: 13px; color: rgba(244, 239, 231, 0.68); }
.hero-card-meta-item strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 22px;
  color: var(--bone);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(244, 239, 231, 0.55);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: pulse 2.5s ease-in-out infinite;
}
.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(244, 239, 231, 0.55), transparent);
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.75; transform: translateX(-50%) translateY(4px); }
}

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--bone);
}
.btn-primary:hover { background: var(--petrol-deep); transform: translateY(-1px); }
.btn-primary .arrow { transition: transform 0.25s; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--bone-2); }

/* -------- GENERIC EYEBROW -------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--petrol);
  margin-bottom: 32px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--petrol);
}

/* -------- SECTIONS -------- */
section { padding: 120px 0; position: relative; }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--petrol);
  margin-bottom: 28px;
}
.section-label-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  color: var(--ochre);
}

h2.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 720px;
}
h2.section-title em { font-style: italic; color: var(--petrol); font-weight: 300; }

.section-intro {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 620px;
  margin-bottom: 64px;
}

/* -------- APPROACH (Wat wij doen) -------- */
.approach { background: var(--bone); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.approach-item {
  padding: 48px 32px 48px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.approach-item:last-child { border-right: none; }
.approach-item:nth-child(n+2) { padding-left: 32px; }
.approach-num {
  font-family: "Fraunces", serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  color: var(--ochre);
  margin-bottom: 20px;
  display: block;
}
.approach-item h3 {
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.approach-item p { color: var(--ink-muted); font-size: 16px; line-height: 1.6; }

/* -------- PAKKETTEN -------- */
.pakketten { background: var(--bone-2); position: relative; }
.pakketten::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.pakket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pakket {
  background: var(--bone);
  border-radius: 4px;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pakket:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(26, 28, 27, 0.15); }
.pakket-featured {
  background: var(--ink);
  color: var(--bone);
}
.pakket-featured .pakket-name,
.pakket-featured .pakket-tagline,
.pakket-featured .pakket-price,
.pakket-featured .pakket-price-unit { color: var(--bone); }
.pakket-featured li { color: rgba(244, 239, 231, 0.78); }
.pakket-featured li::before { background: var(--ochre); }
.pakket-badge {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--ochre);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 100px;
}
.pakket-name {
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.pakket-tagline {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 32px;
  line-height: 1.5;
  min-height: 42px;
}
.pakket-featured .pakket-tagline { color: rgba(244, 239, 231, 0.65); }
.pakket-price {
  font-family: "Fraunces", serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.pakket-price-unit {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.pakket-featured .pakket-price-unit { color: rgba(244, 239, 231, 0.6); }
.pakket ul { list-style: none; margin-bottom: 32px; flex-grow: 1; }
.pakket li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--ink-muted);
}
.pakket li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--petrol);
}
.pakket-footer {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-muted);
}
.pakket-featured .pakket-footer { border-top-color: rgba(244, 239, 231, 0.15); color: rgba(244, 239, 231, 0.6); }
.pakket-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: transparent;
  border: 1px dashed var(--line-strong);
  border-radius: 4px;
  font-size: 14px;
  color: var(--ink-muted);
}

/* -------- WERKWIJZE -------- */
.werkwijze { background: var(--bone); }
.werkwijze-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
  margin-top: 48px;
}
.step {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.step-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
  color: var(--ochre);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}
.step h4 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step p { color: var(--ink-muted); font-size: 15px; line-height: 1.6; }

/* -------- IN DE PRAKTIJK (concrete situaties) -------- */
.praktijk { background: var(--bone); }
.praktijk-intro {
  max-width: 780px;
  margin-bottom: 64px;
}
.praktijk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.praktijk-card {
  background: var(--bone-2);
  padding: 40px 36px;
  border-radius: 4px;
  position: relative;
  border-left: 3px solid var(--ochre);
}
.praktijk-scenario {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.5;
  color: var(--petrol-deep);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-strong);
}
.praktijk-scenario::before {
  content: "Scenario";
  display: block;
  font-family: "Instrument Sans", sans-serif;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ochre);
  margin-bottom: 12px;
}
.praktijk-actie {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.praktijk-actie::before {
  content: "Zo gaan wij te werk";
  display: block;
  font-family: "Instrument Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--petrol);
  margin-bottom: 12px;
}

/* -------- CONTACT FORM -------- */
.contact-form-wrapper {
  max-width: 620px;
  margin: 48px auto 0;
  text-align: left;
  background: rgba(244, 239, 231, 0.04);
  border: 1px solid rgba(244, 239, 231, 0.12);
  padding: 40px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
}
.contact-form-wrapper h3 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 24px;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ochre);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: rgba(244, 239, 231, 0.06);
  border: 1px solid rgba(244, 239, 231, 0.15);
  color: var(--bone);
  padding: 12px 16px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--ochre);
  background: rgba(244, 239, 231, 0.1);
}
.form-field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.form-field select option { background: var(--petrol-deep); color: var(--bone); }
.form-submit {
  width: 100%;
  background: var(--ochre);
  color: var(--ink);
  border: none;
  padding: 16px;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 12px;
}
.form-submit:hover { background: var(--bone); transform: translateY(-1px); }
.form-note {
  font-size: 12px;
  color: rgba(244, 239, 231, 0.55);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.form-success {
  display: none;
  background: rgba(184, 136, 74, 0.15);
  border: 1px solid var(--ochre);
  color: var(--bone);
  padding: 24px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 24px;
}
.form-success.show { display: block; }

/* -------- OVER -------- */
.over { background: var(--petrol-deep); color: var(--bone); position: relative; overflow: hidden; }
.over::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 136, 74, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.over .section-label { color: var(--ochre); }
.over .section-label-num { color: var(--ochre); }
.over .section-title { color: var(--bone); }
.over .section-title em { color: var(--ochre); }
.over-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.over-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(244, 239, 231, 0.82);
  margin-bottom: 20px;
}
.over-content p:first-of-type {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5;
  color: var(--bone);
}
.over-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(244, 239, 231, 0.15);
  border: 1px solid rgba(244, 239, 231, 0.15);
}
.over-stat {
  background: var(--petrol-deep);
  padding: 32px 28px;
}
.over-stat-val {
  font-family: "Fraunces", serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ochre);
  line-height: 1;
  margin-bottom: 12px;
}
.over-stat-label {
  font-size: 14px;
  color: rgba(244, 239, 231, 0.7);
  line-height: 1.5;
}

/* -------- FAQ -------- */
.faq { background: var(--bone-2); }
.faq-list { max-width: 820px; margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid var(--line-strong);
}
.faq-question {
  padding: 28px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--petrol); }
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.faq-icon::before { width: 14px; height: 1px; }
.faq-icon::after { width: 1px; height: 14px; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 28px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 680px;
}

/* -------- CTA/Contact -------- */
.contact { background: var(--ink); color: var(--bone); text-align: center; padding: 140px 0; }
.contact .section-label { color: var(--ochre); justify-content: center; }
.contact h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.contact h2 em { font-style: italic; color: var(--ochre); font-weight: 300; }
.contact p {
  font-size: 19px;
  color: rgba(244, 239, 231, 0.72);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.contact-methods {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.contact-btn {
  background: var(--bone);
  color: var(--ink);
  padding: 18px 32px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-btn:hover { background: var(--ochre); transform: translateY(-1px); }
.contact-btn.alt { background: transparent; color: var(--bone); border: 1px solid rgba(244, 239, 231, 0.3); }
.contact-btn.alt:hover { border-color: var(--ochre); color: var(--ochre); background: transparent; }

/* -------- FOOTER -------- */
footer {
  background: var(--petrol-deep);
  color: rgba(244, 239, 231, 0.65);
  padding: 48px 0 32px;
  font-size: 14px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
footer .logo { color: var(--bone); font-size: 18px; }
footer a { color: inherit; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--ochre); }

/* -------- ANIMATIONS -------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* -------- RESPONSIVE -------- */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--bone); flex-direction: column; padding: 24px; gap: 20px; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .hero { padding: 140px 0 100px; min-height: 90vh; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; align-items: start; padding-top: 20px; }
  .hero-card { padding: 32px 28px; }
  .hero-silhouette { height: 110px; }
  .scroll-indicator { display: none; }
  section { padding: 80px 0; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-item { padding: 32px 0 !important; border-right: none; }
  .pakket-grid { grid-template-columns: 1fr; gap: 20px; }
  .werkwijze-steps { grid-template-columns: 1fr; gap: 32px; }
  .praktijk-grid { grid-template-columns: 1fr; gap: 20px; }
  .praktijk-card { padding: 28px 24px; }
  .contact-form-wrapper { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .over-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact { padding: 80px 0; }
  .step-num { font-size: 44px; min-width: 60px; }
}