:root {
  --cream: #F4F0E6;
  --cream-tint: #ECE7D3;
  --ink: #30332B;
  --ink-soft: #585C4F;
  --ink-muted: #4A4E43;
  --label: #67654F;
  --olive: #6D7358;
  --olive-dark: #5A6048;
  --olive-quote: #5A6048;
  --heading-font: 'six-hands-marker', 'Shantell Sans', 'Architects Daughter', Georgia, serif;
  --body-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono-font: ui-monospace, SFMono-Regular, Menlo, monospace;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body-font);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

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

a { color: var(--olive); text-decoration: none; text-underline-offset: 4px; }
a:hover { color: var(--ink); text-decoration: underline; }
p { text-wrap: pretty; margin: 0; }
img { max-width: 100%; }

@keyframes eag-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* Header / nav */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(244, 240, 230, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(48, 51, 43, .09);
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo:hover { text-decoration: none; }
.nav-logo-img { display: block; height: auto; width: clamp(108px, 13vw, 138px); }

.nav-right { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-links a { font-size: 14px; color: var(--ink-soft); }

.lang-toggle { display: flex; align-items: center; gap: 7px; font-size: 12.5px; letter-spacing: .06em; }
.lang-btn {
  background: none; border: none; padding: 2px 1px; cursor: pointer;
  font: inherit; font-family: var(--body-font); color: rgba(48, 51, 43, .45);
}
.lang-btn.is-active { color: var(--ink); }
.lang-btn:hover { text-decoration: underline; }
.lang-sep { color: rgba(48, 51, 43, .3); }

.menu-btn {
  display: none;
  background: none; border: 1px solid rgba(48, 51, 43, .18);
  padding: 8px 12px; cursor: pointer; font: inherit; font-size: 13px; color: var(--ink);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px clamp(20px, 4vw, 56px) 22px;
  border-top: 1px solid rgba(48, 51, 43, .07);
}
.mobile-menu a {
  font-family: var(--heading-font);
  font-size: 22px;
  padding: 9px 0;
  color: var(--ink);
}
.mobile-menu[hidden] { display: none; }

@media (max-width: 899px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-block; }
}

/* Layout */

.main { padding-top: 98px; }

.section { scroll-margin-top: 104px; }
.section-tint { background: var(--cream-tint); }

.hero-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 9vh, 120px) clamp(20px, 4vw, 56px) clamp(56px, 10vh, 130px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}

.reveal-in { animation: eag-rise 1.3s cubic-bezier(.22, .61, .36, 1) both; }
.reveal-in-delay { animation: eag-rise 1.5s .15s cubic-bezier(.22, .61, .36, 1) both; }

.hero-title {
  font-family: var(--heading-font);
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 0 0 22px;
  max-width: 14ch;
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 clamp(30px, 4vw, 44px);
  max-width: 34ch;
}

.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; }

.btn {
  display: inline-block;
  padding: 15px 26px;
  font-size: 14.5px;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--olive); color: var(--cream-tint); border-color: var(--olive); }
.btn-primary:hover { background: var(--olive-dark); border-color: var(--olive-dark); color: var(--cream-tint); text-decoration: none; }

.btn-primary-inverse { background: var(--cream-tint); color: var(--ink); border-color: var(--cream-tint); }
.btn-primary-inverse:hover { background: transparent; color: var(--cream-tint); text-decoration: none; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--cream-tint); border-color: rgba(236, 231, 211, .55);
}
.btn-outline:hover { background: rgba(236, 231, 211, .12); color: var(--cream-tint); text-decoration: none; }

.link-underline {
  font-size: 14.5px; color: var(--ink-soft);
  border-bottom: 1px solid rgba(88, 92, 79, .35);
  padding-bottom: 3px;
}

.hero-img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4/5; object-fit: cover; object-position: 60% 50%;
}

.statement-section { background: var(--olive); color: var(--cream-tint); }
.statement-section .container { padding-top: clamp(80px, 14vh, 170px); padding-bottom: clamp(80px, 14vh, 170px); }

.statement,
.statement-wrap {
  font-family: var(--heading-font);
  font-weight: 300;
  white-space: nowrap;
}
.statement {
  font-size: clamp(30px, 4.2vw, 58px);
  line-height: 1.18;
  letter-spacing: -.01em;
}
@media (max-width: 780px) {
  .statement, .statement-wrap { white-space: normal; }
}

.eyebrow {
  font-family: var(--mono-font);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--label);
  margin: 0 0 18px;
}

.heading-lg {
  font-family: var(--heading-font);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.1;
  margin: 0 0 clamp(30px, 4vw, 48px);
}

#over-mij .heading-lg { margin-bottom: clamp(28px, 4vw, 44px); }

.heading-md {
  font-family: var(--heading-font);
  font-weight: 300;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  margin: 0 0 clamp(36px, 5vw, 60px);
}

.heading-xl {
  font-family: var(--heading-font);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  margin: 0 0 26px;
}

#voor-wie .container,
#over-mij .container,
#het-gesprek .container,
#ervaringen .container,
#kennismaken .container { padding-top: clamp(72px, 12vh, 150px); padding-bottom: clamp(72px, 12vh, 150px); }

.vw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.vw-img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4/5; object-fit: cover; object-position: 50% 45%;
}
.vw-text { display: flex; flex-direction: column; gap: 26px; max-width: 60ch; }

.body-lead { font-size: clamp(18px, 1.5vw, 20.5px); line-height: 1.72; color: var(--ink); }
.body-text { font-size: clamp(16.5px, 1.35vw, 18px); line-height: 1.78; color: var(--ink-muted); }

.hg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(26px, 4vw, 64px);
  max-width: 1060px;
}
.hg-col { display: flex; flex-direction: column; gap: 24px; }

.pull-quote {
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.22;
  margin: clamp(56px, 9vh, 110px) 0 0;
  max-width: 22ch;
  color: var(--olive-quote);
}

.om-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}
.om-portrait {
  display: flex; flex-direction: column; gap: 20px;
  position: sticky; top: 118px;
}
.om-img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 3/4; object-fit: cover; object-position: 50% 30%;
}
.caption { font-size: 13.5px; letter-spacing: .02em; color: var(--label); }
.om-text { display: flex; flex-direction: column; gap: 24px; max-width: 62ch; }
.om-pull {
  margin: clamp(14px, 2vw, 26px) 0 0;
  padding-left: clamp(16px, 2vw, 26px);
  border-left: 1px solid rgba(109, 115, 88, .45);
  font-family: var(--heading-font);
  font-weight: 300;
  font-size: clamp(21px, 2.3vw, 28px);
  line-height: 1.45;
  color: var(--ink);
}

.erv-head {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 12px 28px; margin-bottom: clamp(40px, 6vw, 72px);
}
.erv-head .heading-lg { margin: 0; }
.erv-intro { font-size: 15.5px; color: var(--olive); }

.erv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: clamp(30px, 4vw, 54px);
  align-items: start;
}
.quote-card {
  margin: 0;
  border-top: 1px solid rgba(48, 51, 43, .16);
  padding-top: 22px;
}
.quote-mark {
  display: block;
  font-family: var(--heading-font);
  font-size: 54px;
  line-height: .7;
  color: rgba(109, 115, 88, .45);
  margin-bottom: 14px;
}
.quote-text { margin: 0; font-size: 16px; line-height: 1.8; color: #3C4036; }
.quote-name {
  margin-top: 20px; font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--label);
}

.kn-section { background: var(--olive); color: var(--cream-tint); }
.kn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.kn-text {
  margin: 0 0 clamp(30px, 4vw, 42px);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.72;
  color: var(--cream-tint);
  max-width: 44ch;
}
.icon { flex: none; opacity: .85; }
.contact-list {
  display: flex; flex-direction: column; gap: 11px;
  margin-top: 30px; font-size: 15px; color: var(--cream-tint);
}
.contact-row { display: flex; align-items: center; gap: 10px; }
.contact-row a { color: var(--cream-tint); border-bottom: 1px solid rgba(236, 231, 211, .4); }
.contact-row a:hover { text-decoration: none; }

.practical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 22px 30px;
  border-top: 1px solid rgba(236, 231, 211, .25);
  padding-top: 26px;
}
.practical-label {
  margin: 0 0 7px;
  font-family: var(--mono-font);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(236, 231, 211, .9);
}
.practical-value { margin: 0; font-size: 16px; color: var(--cream-tint); }

.footer { max-width: 1280px; margin: 0 auto; padding: clamp(40px, 6vw, 64px) clamp(20px, 4vw, 56px); }
.footer-inner {
  padding: 0;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: flex-end; gap: 24px 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { display: block; height: auto; width: 200px; }
.footer-name {
  margin: 3px 0 0; font-size: 13.5px; color: var(--label);
  display: flex; align-items: center; gap: 8px;
}
.footer-links {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 22px; font-size: 13.5px; color: var(--label);
}
.footer-links a { display: flex; align-items: center; gap: 8px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.1s cubic-bezier(.22, .61, .36, 1), transform 1.1s cubic-bezier(.22, .61, .36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
