:root {
  --teal-dark: #155655;
  --teal-mid: #86A6A6;
  --teal-soft: #BECECE;
  --off-white: #F6F6F6;
  --paper: #FFFFFF;
  --lilac: #9B9DB2;
  --blue-decor: #8EB8D9;
  --grey-decor: #D4D4DA;

  --font-heading: 'Montserrat', 'Brandon Grotesque', sans-serif;
  --font-body: 'Nunito', 'Avenir', sans-serif;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--teal-dark);
  background: var(--paper);
  line-height: 1.6;
  font-size: 18px;
}

p { margin: 0 0 1em; }

a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
a:hover { opacity: 0.7; }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: var(--teal-dark);
  margin: 0 0 80px;
  text-align: center;
}

/* ----- Hero ----- */
.hero {
  background: var(--paper);
  text-align: center;
  padding: 80px 24px 140px;
}

.logo {
  display: block;
  margin: 0 auto 80px;
  max-width: 560px;
  width: 90%;
  height: auto;
}

.hero-quote,
.hero-result,
.hero-signature {
  font-style: italic;
  max-width: 900px;
  margin: 0 auto 24px;
  color: var(--teal-dark);
}

.hero-quote {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero-result {
  font-size: 18px;
  max-width: 760px;
}

.hero-signature {
  font-size: 18px;
  max-width: 760px;
}

/* ----- Herken je dit ----- */
.herken {
  background: var(--teal-soft);
  padding: 120px 24px;
}

.scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.scenario {
  text-align: center;
}

.scenario-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 30px;
}

.scenario h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  color: var(--teal-dark);
  margin: 0 0 24px;
}

.scenario p {
  font-size: 17px;
  text-align: center;
}

/* ----- Mijn aanpak — 50/50 split ----- */
.aanpak {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.aanpak-panel {
  background: var(--lilac);
  color: var(--off-white);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aanpak-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.1;
  color: var(--paper);
  margin: 0 0 40px;
}

.aanpak-panel p {
  color: var(--off-white);
  font-size: 16px;
  margin-bottom: 1.2em;
  max-width: 540px;
}

.aanpak-photo {
  background: var(--off-white);
  overflow: hidden;
}

.aanpak-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----- Voorbeelden ----- */
.voorbeelden {
  background: var(--off-white);
  padding: 120px 24px;
}

.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.case {
  text-align: left;
}

.case-mark {
  width: 40px;
  height: 40px;
  background: var(--teal-dark);
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  margin: 0 auto 30px;
}

.case h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: var(--teal-dark);
  margin: 0 0 6px;
  text-align: center;
}

.case-sub {
  text-align: center;
  font-style: italic;
  color: var(--teal-mid);
  margin-bottom: 28px;
  font-size: 16px;
}

.case p {
  font-size: 16px;
}

.case-result {
  margin-top: 20px;
}

/* ----- Over mij ----- */
.over-mij {
  background: var(--off-white);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.over-mij-decor {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.decor-blue {
  width: 280px;
  height: 280px;
  background: var(--blue-decor);
  left: 6%;
  top: 30%;
}

.decor-grey {
  width: 220px;
  height: 220px;
  background: var(--grey-decor);
  left: 16%;
  top: 55%;
}

.over-mij-panel {
  position: relative;
  z-index: 1;
  background: var(--teal-mid);
  color: var(--paper);
  padding: 80px 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: 4%;
}

.over-mij-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 56px;
  color: var(--paper);
  margin: 0 0 40px;
}

.over-mij-panel p {
  color: var(--paper);
  font-size: 16px;
  margin-bottom: 1.2em;
}

/* ----- Testimonial (links van Over mij) ----- */
.over-mij-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.over-mij .over-mij-panel {
  /* Binnen de grid-cel vervalt de eigen rechts-uitlijning */
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.testimonial {
  position: relative;
  margin: 0;
  padding: 30px 20px 0 20px;
}

.testimonial::before,
.testimonial::after {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 160px;
  line-height: 1;
  color: var(--teal-mid);
  opacity: 0.35;
  pointer-events: none;
}

.testimonial::before {
  content: "\201C";
  top: -30px;
  left: -10px;
}

.testimonial::after {
  content: "\201D";
  bottom: -90px;
  right: 0;
}

.testimonial p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--teal-dark);
  font-style: italic;
  margin: 0 0 1.1em;
}

.testimonial-thanks {
  margin-top: 1.4em !important;
}

.testimonial-author {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  color: var(--teal-dark);
  letter-spacing: 0.02em;
}

/* ----- Kennismaken ----- */
.kennismaken {
  background: var(--teal-dark);
  color: var(--off-white);
  text-align: center;
  padding: 100px 24px 120px;
}

.kennismaken-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 40px;
  color: var(--off-white);
  margin: 0 0 40px;
}

.kennismaken a { color: var(--off-white); }

.contact-name {
  font-size: 22px;
  margin-bottom: 30px;
}

.contact-phone {
  margin: 6px 0;
}

/* ----- Tablet ----- */
@media (max-width: 960px) {
  .section-title, .aanpak-title, .over-mij-title { font-size: 44px; }
  .scenarios, .cases { grid-template-columns: 1fr 1fr; gap: 40px; }
  .aanpak { grid-template-columns: 1fr; }
  .aanpak-photo { min-height: 480px; }
  .over-mij-panel { max-width: none; margin-right: 0; }
  .over-mij-content { grid-template-columns: 1fr; gap: 60px; }
  .decor-blue, .decor-grey { display: none; }
}

/* ----- Mobile ----- */
@media (max-width: 640px) {
  body { font-size: 17px; }
  .hero { padding: 60px 20px 80px; }
  .logo { max-width: 360px; margin-bottom: 50px; }
  .herken, .voorbeelden, .over-mij { padding: 70px 20px; }
  .section-title, .aanpak-title, .over-mij-title { font-size: 32px; margin-bottom: 40px; }
  .scenarios, .cases { grid-template-columns: 1fr; gap: 50px; }
  .aanpak-panel, .over-mij-panel { padding: 60px 30px; }
  .hero-quote { font-size: 20px; }
  .kennismaken-title { font-size: 30px; }
}
