/* =============================================================
   BOUWHUIS MEDIA — PAGINA "OVER BOUWHUIS"
   ============================================================= */

.verhaal {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 1rem + 5vw, 5rem);
  align-items: start;
}
.verhaal__tekst h2 { margin-bottom: var(--space-5); }
.verhaal__tekst p {
  font-size: var(--fs-lead);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 58ch;
}
.verhaal__tekst p + p { margin-top: var(--space-5); }

/* Portret */
.verhaal__zij {
  position: sticky;
  top: 100px;
  padding: var(--space-6);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-align: center;
}
.portret {
  width: 96px; height: 96px;
  margin: 0 auto var(--space-4);
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand-tint);
  display: grid; place-items: center;
}
.portret img { width: 100%; height: 100%; object-fit: cover; }
.portret__letters {
  font-size: 1.75rem;
  font-weight: 650;
  letter-spacing: -.02em;
  color: var(--brand-ink);
}
.verhaal__zij strong { display: block; color: var(--ink); font-size: var(--fs-body); }
.verhaal__zij > span { display: block; font-size: var(--fs-micro); color: var(--ink-muted); margin-top: .2rem; }

.portret__contact {
  display: grid;
  gap: .5rem;
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
}
.portret__contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-size: var(--fs-micro);
  font-weight: 600;
  color: var(--ink);
}
.portret__contact svg { color: var(--brand); width: 16px; height: 16px; flex-shrink: 0; }
.portret__contact a:hover { color: var(--brand); }

/* --- Principes ------------------------------------------------ */

.principes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  max-width: 900px;
  margin-inline: auto;
}
.principe {
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.principe__nr {
  display: block;
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  color: var(--brand);
  margin-bottom: var(--space-4);
}
.principe h3 { font-size: 1.0625rem; margin-bottom: var(--space-3); }
.principe p { font-size: var(--fs-small); color: var(--ink-muted); }

/* --- Hoe het samenwerken gaat -------------------------------- */

.werken { max-width: 720px; margin-inline: auto; }
.werken h2 { text-align: center; margin-bottom: var(--space-7); }
.werken__lijst li {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-5);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--line);
}
.werken__lijst li:last-child { border-bottom: 1px solid var(--line); }
.werken__lijst strong { color: var(--ink); font-size: var(--fs-small); font-weight: 600; }
.werken__lijst span { font-size: var(--fs-small); color: var(--ink-muted); }

/* --- Responsive ---------------------------------------------- */

@media (max-width: 900px) {
  .verhaal { grid-template-columns: 1fr; }
  .verhaal__zij { position: static; max-width: 340px; margin-inline: auto; }
  .verhaal__tekst p { max-width: none; }
  .principes { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .werken__lijst li { grid-template-columns: 1fr; gap: .3rem; }
}
