/* =========================================================
   Mediation Friesland — Esther van Gestel
   Stylesheet — rustig, persoonlijk, vertrouwd
   ========================================================= */

/* ---------- Reset & basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

:root {
  /* Kleurpalet — geïnspireerd op het logo */
  --blue-deep: #1e3a5f;       /* diep nachtblauw, hoofdaccent */
  --blue-mid: #2d6cb3;        /* helderder blauw, uit het logo */
  --blue-soft: #e8f0f8;       /* heel licht blauw, achtergronden */
  --cream: #faf8f4;           /* hoofdachtergrond, warm gebroken wit */
  --cream-dark: #f0ece4;      /* iets dieper, voor secties */
  --ink: #2a2a2e;             /* donkergrijs voor tekst */
  --ink-soft: #5a5a62;        /* zachter grijs voor lopende tekst */
  --line: #d8d2c4;            /* fijne lijnen */
  --gold: #b8935a;            /* subtiel accent voor klein detail */

  /* Typografie */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Maatvoering */
  --container: 1140px;
  --container-narrow: 820px;
  --space-xs: 0.5rem;
  --space-s: 1rem;
  --space-m: 2rem;
  --space-l: 4rem;
  --space-xl: 6rem;

  --radius: 4px;
  --transition: 0.3s ease;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue-deep);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-mid);
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--blue-deep);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  margin-bottom: var(--space-s);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  margin-bottom: var(--space-xs);
}

h4 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

p {
  margin-bottom: var(--space-s);
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-mid);
  font-weight: 600;
  margin-bottom: var(--space-s);
  display: inline-block;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header / navigatie ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--blue-deep);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}

.logo-text {
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--blue-mid);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--blue-deep);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--blue-deep);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-xl) 0 var(--space-l);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue-soft) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.7;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-l);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text h1 em {
  font-style: italic;
  color: var(--blue-mid);
  font-weight: 400;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: var(--space-m);
  max-width: 480px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(30, 58, 95, 0.18);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  background: var(--blue-deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
}

.btn:hover {
  background: var(--blue-mid);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border: 1px solid var(--blue-deep);
}

.btn-outline:hover {
  background: var(--blue-deep);
  color: var(--cream);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---------- Secties ---------- */
section {
  padding: var(--space-xl) 0;
}

.section-alt {
  background: var(--cream-dark);
}

.section-blue {
  background: var(--blue-deep);
  color: var(--cream);
}

.section-blue h1,
.section-blue h2,
.section-blue h3 {
  color: var(--cream);
}

.section-blue p {
  color: rgba(250, 248, 244, 0.85);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-l);
}

.section-header p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Diensten grid (homepage) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: var(--space-m);
}

.service-card {
  background: var(--cream);
  padding: 2rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30, 58, 95, 0.1);
  border-color: var(--blue-mid);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  border-radius: 50%;
  margin-bottom: 1.2rem;
  color: var(--blue-mid);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Stappenplan ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: var(--space-m);
  counter-reset: step-counter;
}

.step {
  position: relative;
  padding-top: 4rem;
}

.step::before {
  counter-increment: step-counter;
  content: counter(step-counter, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--blue-mid);
  font-weight: 500;
  line-height: 1;
}

.step h4 {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--blue-deep);
}

.step p {
  font-size: 0.95rem;
}

/* ---------- Quote / Testimonial ---------- */
.quote-section {
  text-align: center;
  padding: var(--space-l) 0;
  max-width: 640px;
  margin: 0 auto;
}

/* Compacte quote-card (homepage) — cream binnen, contrast met section-alt eromheen */
.quote-card {
  background: var(--cream);
  color: var(--ink);
  padding: 2.4rem 2.4rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.quote-card .quote {
  color: var(--blue-deep);
  font-size: clamp(1.15rem, 2.1vw, 1.4rem);
  margin-bottom: 0;
}

.quote-card .quote-attribution {
  color: var(--ink-soft);
  margin-top: 1.4rem;
}

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--blue-deep);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  padding: 0 1.5rem;
}

.quote::before,
.quote::after {
  font-size: 3rem;
  color: var(--blue-mid);
  opacity: 0.3;
  position: absolute;
  font-family: var(--font-display);
  line-height: 1;
}

.quote::before {
  content: '"';
  top: -0.6rem;
  left: -0.4rem;
}

.quote::after {
  content: '"';
  bottom: -1.8rem;
  right: -0.4rem;
}

.quote-attribution {
  margin-top: 1.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ---------- Formulier statusberichten ---------- */
.status {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.status-ok {
  background: #e8f5e9;
  border-left: 3px solid #4caf50;
  color: #1b5e20;
}

.status-error {
  background: #fbeaea;
  border-left: 3px solid #c0392b;
  color: #7a1f1f;
}

.status-error a {
  color: #7a1f1f;
  text-decoration: underline;
}

/* ---------- Reviews lijst ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: var(--space-m);
}

.review {
  background: var(--cream);
  padding: 1.6rem 1.8rem;
  border-left: 3px solid var(--blue-mid);
  border-radius: var(--radius);
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-mark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.6;
  color: var(--blue-mid);
  opacity: 0.25;
  margin-bottom: 0.4rem;
  font-style: italic;
}

.review p {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.review cite {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  font-style: normal;
  font-weight: 600;
}

/* ---------- Lange tekstpagina ---------- */
.content-page {
  padding: var(--space-l) 0;
}

.content-page h1 {
  margin-bottom: var(--space-m);
}

.content-page h2 {
  margin-top: var(--space-m);
  margin-bottom: var(--space-s);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.content-page h3 {
  margin-top: var(--space-m);
  margin-bottom: var(--space-xs);
}

.content-page p,
.content-page li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
}

.content-page ul,
.content-page ol {
  margin: var(--space-s) 0;
  padding-left: 1.5rem;
}

.content-page li {
  margin-bottom: 0.5rem;
}

.content-page img {
  margin: var(--space-m) 0;
  border-radius: var(--radius);
}

/* Wide figure with caption */
.figure-wide {
  margin: var(--space-l) 0 var(--space-m);
}

.figure-wide img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(30, 58, 95, 0.15);
  margin: 0;
}

.figure-wide figcaption {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
}

.page-intro {
  background: var(--cream-dark);
  padding: var(--space-l) 0 var(--space-m);
  border-bottom: 1px solid var(--line);
}

.page-intro h1 {
  margin-bottom: 0.8rem;
}

.page-intro .lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 620px;
}

/* ---------- Over Esther: portretsectie ---------- */
.portrait-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-l);
  align-items: start;
  margin-bottom: var(--space-l);
}

.portrait-section img {
  border-radius: 2px;
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
  position: sticky;
  top: 100px;
}

/* ---------- Onderwerpen pagina met ankers ---------- */
.topic-nav {
  background: var(--blue-soft);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 73px;
  z-index: 50;
}

.topic-nav-inner {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.92rem;
}

.topic-nav a {
  color: var(--blue-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.topic-section {
  padding: var(--space-l) 0;
  border-bottom: 1px solid var(--line);
}

.topic-section:last-of-type {
  border-bottom: none;
}

/* ---------- Tarieven kaarten ---------- */
.price-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: var(--space-m);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
  /* Subtiele schaduw zodat de kaart altijd al "tilt" - ook op touch */
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.04);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(30, 58, 95, 0.22);
  border-color: var(--blue-mid);
  border-width: 2px;
  padding: calc(var(--space-m) - 1px);
}

.price-card h3 {
  color: var(--blue-deep);
  margin-bottom: 0.4rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--blue-mid);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.price-amount small {
  font-size: 1rem;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  margin-top: 1rem;
  padding-left: 0;
}

.price-card li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.price-card li:last-child {
  border-bottom: none;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-mid);
  font-weight: 700;
}

.price-card.featured {
  border-color: var(--blue-mid);
  border-width: 2px;
  position: relative;
}

.price-card.featured[data-badge]::before {
  content: attr(data-badge);
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--blue-mid);
  color: var(--cream);
  padding: 0.3rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
}

/* Generieke check-list - v-vinkjes */
.check-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.check-list li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-mid);
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--blue-deep);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--blue-mid);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--blue-mid);
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .answer {
  padding-top: 1rem;
}

.faq-item .answer p {
  font-size: 1rem;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-l);
  align-items: start;
}

.contact-info {
  background: var(--blue-deep);
  color: var(--cream);
  padding: var(--space-m);
  border-radius: var(--radius);
}

.contact-info h2,
.contact-info h3 {
  color: var(--cream);
}

.contact-info p {
  color: rgba(250, 248, 244, 0.85);
}

.contact-info a {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: rgba(250, 248, 244, 0.4);
  text-underline-offset: 4px;
}

.contact-info a:hover {
  color: var(--cream);
  text-decoration-color: var(--cream);
}

.contact-detail {
  margin: 1.3rem 0;
  padding-left: 2.4rem;
  position: relative;
}

.contact-detail svg {
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  color: var(--blue-soft);
}

.contact-detail strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-soft);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-deep);
  color: var(--cream);
  padding: var(--space-l) 0 var(--space-m);
  margin-top: var(--space-xl);
}

/* Geen witruimte tussen gekleurde laatste sectie en footer */
main:has(> section:last-child.section-alt) + .site-footer,
main:has(> section:last-child.section-blue) + .site-footer {
  margin-top: 0;
}

/* Fallback voor browsers zonder :has() — extra padding op gekleurde laatste sectie */
.section-alt.flush-bottom,
.section-blue.flush-bottom {
  margin-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-m);
  margin-bottom: var(--space-m);
}

.footer-brand img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(250, 248, 244, 0.7);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(250, 248, 244, 0.75);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 244, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.6);
}

/* ---------- Decoratieve elementen ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: var(--space-m) 0;
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--line);
  max-width: 80px;
}

.divider-dot {
  width: 6px;
  height: 6px;
  background: var(--blue-mid);
  border-radius: 50%;
}

/* ---------- Tweekoloms tekstblok ---------- */
.text-twocol {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-m);
  margin-bottom: var(--space-m);
}

.text-twocol h2 {
  position: sticky;
  top: 100px;
}

/* ---------- Highlight blok ---------- */
.highlight-block {
  background: var(--blue-soft);
  border-left: 4px solid var(--blue-mid);
  padding: 1.5rem 2rem;
  margin: var(--space-m) 0;
  border-radius: var(--radius);
}

.highlight-block p:last-child {
  margin-bottom: 0;
}

.highlight-block strong {
  color: var(--blue-deep);
}

/* =========================================================
   Responsive — mobiel
   ========================================================= */
@media (max-width: 900px) {
  .hero-grid,
  .portrait-section,
  .text-twocol,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-m);
  }

  .portrait-section img {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }

  .text-twocol h2 {
    position: static;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1rem 1.5rem 2rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--line);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
  }

  section,
  .hero {
    padding: var(--space-l) 0;
  }

  .topic-nav {
    top: 65px;
  }

  .topic-nav-inner {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .quote {
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 36px;
    width: 36px;
  }

  .logo-text small {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
