:root {
  --kleur-achtergrond: #f4f0e8;
  --kleur-vlak: #fffdf9;
  --kleur-petrol: #27666a;
  --kleur-petrol-donker: #1f5356;
  --kleur-oranje: #e66a3d;
  --kleur-oranje-donker: #cf552b;
  --kleur-mosterd: #d6a62e;
  --kleur-tekst: #252422;
  --kleur-tekst-zacht: #5c5954;
  --kleur-lijn: #ded6ca;
  --radius: 14px;
  --shadow: 0 12px 35px rgba(37, 36, 34, 0.07);
}

html { scroll-behavior: smooth; }
body {
  background: var(--kleur-achtergrond);
  color: var(--kleur-tekst);
}

h1, h2, h3 { color: var(--kleur-tekst); }
h2 { font-size: clamp(3rem, 4vw, 4.6rem); font-weight: 800; letter-spacing: -0.035em; }
h3 { font-weight: 800; }
p { color: var(--kleur-tekst-zacht); }

.site-header {
  position: relative;
  background: rgba(244, 240, 232, 0.96);
  border-bottom: 1px solid var(--kleur-lijn);
  padding: 1.6rem 0;
}
.header-container { min-height: 68px; }
.logo a { display: inline-flex; align-items: center; }
.wordmark {
  font-family: 'Patrick Hand', cursive;
  font-size: 5rem;
  line-height: 1;
  color: var(--kleur-petrol);
  transform: rotate(-2deg);
}
.wordmark span { color: var(--kleur-oranje); }

.hoofdmenu ul {
  display: flex;
  align-items: center;
  gap: clamp(1.8rem, 3vw, 3.4rem);
  list-style: none;
}
.hoofdmenu a {
  position: relative;
  color: var(--kleur-tekst);
  font-size: 1.45rem;
  font-weight: 600;
}
.hoofdmenu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.8rem;
  height: 2px;
  background: var(--kleur-oranje);
  transition: right .18s ease;
}
.hoofdmenu a:hover::after,
.hoofdmenu a.active::after { right: 0; }

.menu-toggle {
  color: var(--kleur-petrol);
  background: transparent;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 9rem;
  background: var(--kleur-achtergrond);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  align-items: center;
  gap: clamp(4rem, 7vw, 9rem);
}
.hero__content { max-width: 680px; }
.eyebrow {
  margin-bottom: 1.2rem;
  color: var(--kleur-petrol);
  font-family: 'Patrick Hand', cursive;
  font-size: 2.2rem;
  line-height: 1.2;
}
.hero h1 {
  margin-bottom: 1.6rem;
  font-family: 'Patrick Hand', cursive;
  font-size: clamp(6rem, 9vw, 10.5rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.035em;
}
.hero h1 span { color: var(--kleur-oranje); }
.hero__intro {
  max-width: 56ch;
  margin-bottom: 3rem;
  font-size: 1.9rem;
  line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1.4rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 8px;
  padding: 1.4rem 2.1rem;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-2px) rotate(-.35deg); }
.button-primary {
  background: var(--kleur-oranje);
  color: #fff;
  box-shadow: 0 7px 18px rgba(230, 106, 61, .18);
}
.button-primary:hover { background: var(--kleur-oranje-donker); color: #fff; }
.button-ghost {
  border: 2px solid var(--kleur-petrol);
  background: transparent;
  color: var(--kleur-petrol);
}

.hero__visual {
  position: relative;
  min-height: 480px;
}
.joef-illustration {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(390px, 72%);
  filter: drop-shadow(0 12px 10px rgba(37,36,34,.08));
}
.scribble-note {
  position: absolute;
  top: 3rem;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Patrick Hand', cursive;
  font-size: clamp(2.3rem, 3vw, 3.2rem);
  line-height: 1.1;
  transform: rotate(-3deg);
}
.scribble-note strong { color: var(--kleur-oranje); font-weight: 400; }
.scribble-note span:last-child {
  position: relative;
  margin-top: .4rem;
}
.scribble-note span:last-child::after {
  content: "";
  position: absolute;
  left: .2rem;
  right: -1rem;
  bottom: -.6rem;
  height: 4px;
  background: var(--kleur-oranje);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.rough-edge {
  position: absolute;
  left: -2%;
  width: 104%;
  height: 26px;
  pointer-events: none;
  background: currentColor;
  clip-path: polygon(0 54%,3% 42%,6% 57%,9% 46%,12% 62%,16% 43%,20% 58%,24% 44%,28% 61%,33% 45%,37% 56%,41% 42%,45% 59%,49% 43%,53% 57%,58% 42%,62% 59%,66% 46%,71% 61%,75% 44%,79% 58%,83% 41%,87% 56%,91% 45%,95% 60%,100% 48%,100% 100%,0 100%);
}
.rough-edge--bottom { bottom: -1px; color: var(--kleur-vlak); }
.rough-edge--top { top: -25px; transform: rotate(180deg); color: var(--kleur-vlak); }
.rough-edge--cream { color: var(--kleur-achtergrond); }
.rough-edge--teal { color: var(--kleur-achtergrond); }

.section { position: relative; padding: 8rem 0; }
.cards-section { background: var(--kleur-vlak); }
.section-heading { max-width: 760px; margin-bottom: 4.5rem; }
.section-heading--left { margin-left: 0; text-align: left; }
.section-heading p:last-child { max-width: 62ch; font-size: 1.75rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem;
}
.joef-card {
  position: relative;
  min-height: 300px;
  padding: 3.2rem;
  overflow: hidden;
  border: 1px solid #eee7dc;
  border-radius: var(--radius);
  background: #fbf8f2;
  box-shadow: var(--shadow);
}
.joef-card:nth-child(2) { transform: translateY(1.2rem); }
.joef-card h3 {
  margin-bottom: 1rem;
  font-family: 'Patrick Hand', cursive;
  font-size: 3rem;
  font-weight: 400;
  color: var(--kleur-petrol);
}
.joef-card:nth-child(2) h3 { color: var(--kleur-oranje); }
.joef-card:nth-child(3) h3 { color: #a87a08; }
.joef-card p { font-size: 1.6rem; }
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 2rem;
  border-radius: 50%;
  color: #fff;
  font-size: 2.6rem;
}
.icon-circle--petrol { background: var(--kleur-petrol); }
.icon-circle--orange { background: var(--kleur-oranje); }
.icon-circle--mustard { background: var(--kleur-mosterd); }
.card-scribble {
  position: absolute;
  left: 3.2rem;
  bottom: 2.4rem;
  width: 72px;
  height: 4px;
  border-radius: 50%;
  background: var(--kleur-oranje);
  transform: rotate(-6deg);
}
.joef-card:nth-child(3) .card-scribble { background: var(--kleur-mosterd); }

.section-teal {
  background: var(--kleur-petrol);
  color: #fff;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.section-teal h2, .section-teal h3 { color: #fff; }
.eyebrow--light { color: #f7d49b; }
.lead-light { color: rgba(255,255,255,.82); font-size: 1.9rem; max-width: 50ch; }
.approach-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8rem;
  align-items: start;
}
.steps-list { display: grid; gap: 1.2rem; }
.mini-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.mini-step__nr {
  font-family: 'Patrick Hand', cursive;
  font-size: 3rem;
  color: #f7d49b;
}
.mini-step h3 { margin-bottom: .4rem; font-size: 2rem; }
.mini-step p { margin: 0; color: rgba(255,255,255,.76); }

.about-section { background: var(--kleur-achtergrond); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 7rem;
  align-items: center;
}
.about-copy p { font-size: 1.75rem; max-width: 62ch; }
.quote-card {
  position: relative;
  padding: 4rem;
  border: 2px solid var(--kleur-petrol);
  background: var(--kleur-vlak);
  transform: rotate(1.2deg);
  box-shadow: 9px 10px 0 rgba(39,102,106,.12);
}
.quote-card::before {
  content: "“";
  position: absolute;
  top: -2rem;
  left: 2rem;
  color: var(--kleur-oranje);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}
.quote-card p {
  color: var(--kleur-tekst);
  font-family: 'Patrick Hand', cursive;
  font-size: 3.2rem;
  line-height: 1.15;
}
.quote-card span { color: var(--kleur-petrol); font-weight: 700; }

.ideal-section { background: #fffdf9; border-top: 1px solid var(--kleur-lijn); }
.ideal-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 6rem;
  align-items: start;
}
.joef-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.joef-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  border-bottom: 1px dashed var(--kleur-lijn);
  font-size: 1.65rem;
}
.joef-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--kleur-mosterd);
  color: #fff;
  font-size: 1.4rem;
}

.contact-section {
  position: relative;
  background: var(--kleur-petrol);
  color: #fff;
  padding: 7rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5rem;
}
.contact-kicker {
  margin-bottom: .5rem;
  color: #fff;
  font-family: 'Patrick Hand', cursive;
  font-size: 3.2rem;
}
.contact-section h2 { margin-bottom: 1rem; color: #fff; }
.contact-section p { color: rgba(255,255,255,.8); }
.contact-action { position: relative; }
.button-light { border: 2px solid rgba(255,255,255,.82); color: #fff; background: transparent; }
.button-light:hover { background: #fff; color: var(--kleur-petrol); }
.hand-arrow {
  position: absolute;
  right: -4.2rem;
  bottom: -4.2rem;
  font-family: 'Patrick Hand', cursive;
  font-size: 5rem;
  transform: rotate(-18deg);
  color: #fff;
}

.site-footer {
  background: var(--kleur-achtergrond);
  border-top: 1px solid var(--kleur-lijn);
  padding: 2rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.footer-inner p { margin: 0; font-size: 1.3rem; }
.footer-brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--kleur-oranje);
  color: #fff;
  font-family: 'Patrick Hand', cursive;
  font-size: 2.4rem;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 1.3rem; color: var(--kleur-tekst-zacht); }

@media (max-width: 900px) {
  .hero__inner,
  .approach-grid,
  .about-grid,
  .ideal-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 5rem; }
  .hero__visual { min-height: 420px; max-width: 620px; }
  .card-grid { grid-template-columns: 1fr; }
  .joef-card:nth-child(2) { transform: none; }
  .contact-action { width: fit-content; }
}

@media (max-width: 768px) {
  .site-header { padding: 1.2rem 0; }
  .header-container { position: relative; align-items: center; }
  .wordmark { font-size: 4.3rem; }
  .menu-toggle {
    display: block;
    position: absolute;
    right: 2rem;
    top: 1.1rem;
    padding: .6rem;
    font-size: 2.2rem;
  }
  .hoofdmenu { display: none; width: 100%; padding-top: 1rem; }
  .hoofdmenu.open { display: block; }
  .hoofdmenu ul { flex-direction: column; align-items: flex-start; gap: 1.4rem; padding: 1.2rem 0 .6rem; }
  .hero__inner { gap: 2.5rem; }
  .hero h1 { font-size: clamp(5.2rem, 18vw, 8rem); }
  .hero__visual { min-height: 360px; }
  .joef-illustration { width: min(310px, 72%); }
  .scribble-note { top: 2rem; font-size: 2.35rem; }
  .section { padding: 5.5rem 0; }
  .joef-card { min-height: 0; }
  .footer-inner { grid-template-columns: auto 1fr; }
  .footer-links { grid-column: 1 / -1; flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero__visual { min-height: 320px; }
  .scribble-note { right: -1rem; font-size: 2rem; }
  .joef-illustration { left: -2rem; width: 72%; }
  .quote-card { padding: 3rem 2.5rem; }
  .quote-card p { font-size: 2.7rem; }
  .hand-arrow { display: none; }
}
