/* ──────────────────────────────────────────────
   Latitude 33° — Navigatie door ontwaken
   Morgenlicht, aardekleuren, koers.
   ────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

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

:root {
  /* Kleur — morgenlicht op aarde */
  --sand:    #F7F1E6;   /* ochtendzand, iets warmer */
  --sand-2:  #EFE5D3;   /* dieper zand, voor secundaire vlakken */
  --dawn:    #F9EFE0;   /* ochtendlicht — lichtste warmte */
  --deep:    #2A1F17;   /* warme aarde — niet zwart, donkerbruin */
  --deep-2:  #3A2C21;
  --warm:    #8B6B4A;   /* klei / hout */
  --accent:  #C4956A;   /* terracotta / ochtendzon */
  --accent-2: #D4A574;  /* oker — gouden keer */
  --accent-soft: rgba(196,149,106,0.12);
  --muted:   #A89880;
  --sage:    #7A9385;   /* horizon — salieblauwgroen */
  --teal:    #3D6B6B;
  --bone:    #FAF7F1;
  --border:  rgba(42,31,23,0.10);
  --border-warm: rgba(196,149,106,0.22);

  /* Typografie */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Ritme */
  --radius-soft: 2px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Container */
  --page-pad: clamp(1.25rem, 4vw, 4rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--sand);
  color: var(--deep);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Ochtendlicht — subtiele warme gloed aan de bovenkant van elke pagina */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 420px;
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(212,165,116,0.16) 0%, transparent 65%),
    linear-gradient(180deg, rgba(249,239,224,0.6) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

::selection { background: var(--accent-soft); color: var(--deep); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Typografie ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.005em;
}

h1 em, h2 em, h3 em, .display em {
  font-style: italic;
  color: var(--warm);
  font-weight: 400;
}

.display {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
}

.label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

/* ── Navigatie ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 0.5px solid var(--border);
  padding: 1.2rem var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep);
  position: relative;
  z-index: 2;
  line-height: 1;
}
.nav-logo-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  transition: transform 0.6s var(--ease);
}
.nav-logo:hover .nav-logo-mark { transform: rotate(15deg); }
.nav-logo-text { display: inline; }
.nav-logo-text span { color: var(--accent); }
.nav-logo::after {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--accent);
  opacity: 0.55;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .nav-logo { gap: 0.55rem; font-size: 0.9rem; }
  .nav-logo-mark { width: 28px; height: 28px; }
  .nav-logo::after { display: none; }
}

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

.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep);
  opacity: 0.55;
  transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease);
  padding-bottom: 3px;
  border-bottom: 0.5px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  border-bottom-color: var(--accent);
}

.nav-lang {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  user-select: none;
  display: inline-flex;
  gap: 0.35em;
  align-items: center;
}
.nav-lang a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 0.5px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s, opacity 0.3s;
  opacity: 0.75;
}
.nav-lang a:hover {
  color: var(--deep);
  opacity: 1;
}
.nav-lang a.active,
.nav-lang span.active {
  color: var(--deep);
  opacity: 1;
  border-bottom: 0.5px solid var(--accent);
  padding-bottom: 2px;
}
.nav-lang > span:not(.active) { opacity: 0.4; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 101;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--deep);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 50%; }
.nav-toggle span:nth-child(3) { bottom: 4px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.25s var(--ease);
}

.btn-dark {
  background: var(--deep);
  color: var(--sand);
}
.btn-dark:hover { background: var(--warm); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--warm);
  border: 0.5px solid var(--warm);
  border-radius: 999px;
  padding: 1rem 2.2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.25s var(--ease);
}
.btn-ghost:hover {
  color: var(--sand);
  background: var(--warm);
  border-color: var(--warm);
  transform: translateY(-1px);
}

.link-arrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm);
  border-bottom: 0.5px solid var(--warm);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s, letter-spacing 0.3s var(--ease);
}
.link-arrow:hover {
  color: var(--deep);
  border-color: var(--deep);
  letter-spacing: 0.26em;
}
.link-arrow::after {
  content: "  →";
  transition: margin-left 0.25s var(--ease);
}
.link-arrow:hover::after { margin-left: 4px; }

/* ── Dividers ── */
.rule { width: 1px; height: 56px; background: var(--border); margin: 2.5rem auto; }
.hr { border: none; border-top: 0.5px solid var(--border); margin: 0; }

/* ── Ambient imagery (placeholder met atmosfeer) ── */
.img-placeholder {
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 50% 60%, rgba(196,149,106,0.28) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 20%, rgba(61,107,107,0.12) 0%, transparent 65%),
    linear-gradient(160deg, rgba(245,240,232,1) 0%, rgba(232,222,205,1) 40%, rgba(196,149,106,0.22) 100%);
  border: 0.5px solid var(--border-warm);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem 1.6rem;
}

.img-placeholder::before {
  /* Subtle horizon line — a "latitude" */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  height: 0.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(196,149,106,0.35) 50%, transparent 100%);
}

.img-placeholder::after {
  /* Subtle sun/center orb */
  content: "";
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,149,106,0.55) 0%, rgba(196,149,106,0.0) 70%);
  pointer-events: none;
}

.img-placeholder span {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(28,26,23,0.45);
  letter-spacing: 0.02em;
  z-index: 2;
}

/* Tweede variant — stiller, voor secundaire posities */
.img-placeholder.alt {
  background:
    radial-gradient(ellipse 70% 55% at 70% 40%, rgba(61,107,107,0.22) 0%, transparent 70%),
    linear-gradient(180deg, rgba(239,232,220,1) 0%, rgba(232,222,205,1) 100%);
}
.img-placeholder.alt::after {
  background: radial-gradient(circle, rgba(61,107,107,0.4) 0%, rgba(61,107,107,0) 70%);
}

.img-placeholder.dark {
  background:
    radial-gradient(ellipse 55% 45% at 50% 55%, rgba(196,149,106,0.35) 0%, transparent 70%),
    linear-gradient(175deg, rgba(42,38,34,1) 0%, rgba(28,26,23,1) 100%);
  border-color: rgba(196,149,106,0.25);
}
.img-placeholder.dark span { color: rgba(245,240,232,0.45); }

/* ── Foto-containers: dezelfde dozen, maar met echte beelden ── */
.photo {
  position: relative;
  overflow: hidden;
  border: 0.5px solid var(--border-warm);
  background: var(--sand-2);
}

.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.photo:hover img { transform: scale(1.03); }

/* Subtiele warm-overlay om foto's harmonisch in het palet te houden */
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(247,241,230,0.04) 0%,
    rgba(196,149,106,0.06) 55%,
    rgba(42,31,23,0.18) 100%
  );
  pointer-events: none;
}

/* Horizon-streep overlay op landschapsbeelden, matcht de kompas-taal */
.photo.horizon-mark::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  height: 0.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(247,241,230,0.35) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Ronde portret-variant (voor contact) */
.photo.portrait-round {
  border-radius: 50%;
  border: 0.5px solid rgba(196,149,106,0.35);
}
.photo.portrait-round::after { display: none; }

/* Dark variant — voor donkere sectie-achtergronden */
.photo.dark { background: var(--deep); border-color: rgba(196,149,106,0.25); }

/* ── Dromerige vorm-utility — beelden die mogen oplossen in de pagina ──
   Gebruikt op .photo of .img-placeholder. Organische blob + zachte rand-
   vervaging via mask-image, met een trage morph zodat de vorm leeft. */
.dream {
  border: none;
  border-radius: 58% 42% 62% 38% / 50% 54% 46% 50%;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 80% 82% at 50% 48%, #000 58%, transparent 96%);
          mask-image: radial-gradient(ellipse 80% 82% at 50% 48%, #000 58%, transparent 96%);
  box-shadow: 0 40px 90px -40px rgba(42,31,23,0.28);
  animation: dream-morph 22s ease-in-out infinite alternate;
}
.dream > img { border-radius: inherit; }
.dream::before { display: none !important; }
.photo.dream::after {
  background: radial-gradient(ellipse 85% 75% at 50% 40%,
    rgba(247,241,230,0.08) 0%,
    rgba(196,149,106,0.10) 55%,
    rgba(42,31,23,0.26) 100%);
}

/* Subtielere variant — voor kleinere formaten of wanneer meerdere dromen
   naast elkaar leven. */
.dream--soft {
  border-radius: 52% 48% 55% 45% / 48% 52% 48% 52%;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, #000 66%, transparent 98%);
          mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, #000 66%, transparent 98%);
  animation: dream-morph-soft 28s ease-in-out infinite alternate;
  box-shadow: 0 24px 60px -30px rgba(42,31,23,0.22);
}

/* Offset-delays — zodat drie dromen niet synchroon ademen */
.dream--a { animation-delay: -2s; }
.dream--b { animation-delay: -11s; }
.dream--c { animation-delay: -19s; }

@keyframes dream-morph {
  0%   { border-radius: 58% 42% 62% 38% / 50% 54% 46% 50%; }
  50%  { border-radius: 50% 50% 58% 42% / 44% 60% 40% 56%; }
  100% { border-radius: 62% 38% 46% 54% / 54% 46% 54% 46%; }
}
@keyframes dream-morph-soft {
  0%   { border-radius: 52% 48% 55% 45% / 48% 52% 48% 52%; }
  50%  { border-radius: 48% 52% 50% 50% / 52% 48% 52% 48%; }
  100% { border-radius: 55% 45% 48% 52% / 46% 54% 46% 54%; }
}
@media (prefers-reduced-motion: reduce) {
  .dream, .dream--soft { animation: none; }
}

/* ── Decoratief coördinaat-merk (klein, als anker) ── */
.coord-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--warm);
}
.coord-mark::before {
  content: "";
  width: 28px;
  height: 0.5px;
  background: var(--warm);
}

/* ── Footer ── */
footer {
  border-top: 0.5px solid var(--border);
  padding: 3.5rem var(--page-pad) 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-bottom: 1.8rem;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 1.8rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}
.footer-logo-mark {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  opacity: 0.75;
}
.footer-logo span { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: center;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--deep); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-sister {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.footer-sister strong {
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.66rem;
  margin-right: 0.6rem;
}
.footer-sister a {
  color: var(--accent);
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}
.footer-sister a:hover { border-bottom-color: var(--accent); color: var(--warm); }

.footer-social {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 0.5px solid transparent;
  padding-bottom: 1px;
  transition: color 0.25s, border-color 0.25s;
}
.footer-social-link svg {
  color: var(--accent);
  transition: color 0.25s, transform 0.25s;
}
.footer-social-link:hover {
  color: var(--warm);
  border-bottom-color: var(--accent);
}
.footer-social-link:hover svg {
  color: var(--warm);
  transform: translateY(-1px);
}

/* ── Scroll-reveal utility ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ── Pagina fade-in ── */
main { animation: fadeIn 0.6s var(--ease) both; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Forms — gedeelde basis ── */
.form-input {
  width: 100%;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 0.5px solid rgba(28,26,23,0.22);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--deep);
  outline: none;
  transition: border-color 0.3s var(--ease);
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus { border-bottom-color: var(--accent); }
.form-input::placeholder { color: rgba(28,26,23,0.32); }

/* ── Responsive — tablet ── */
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 78%;
    max-width: 360px;
    height: 100vh;
    background: var(--sand);
    border-left: 0.5px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 5rem 2.5rem;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    box-shadow: -20px 0 60px rgba(28,26,23,0.08);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 0.9rem; }
  .nav-lang { display: none; }

  footer { padding: 2.5rem var(--page-pad); }
  .footer-top { grid-template-columns: 1fr; text-align: left; gap: 1.2rem; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; gap: 1.4rem; }
  .footer-copy { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .btn { padding: 0.9rem 2rem; }
}

/* ──────────────────────────────────────────────
   NAVIGATIE — kompas, horizon, coördinaten
   ────────────────────────────────────────────── */

/* Kompasroos — als ambient achtergrond of markering */
.compass {
  width: 140px;
  height: 140px;
  opacity: 0.55;
  color: var(--warm);
  display: inline-block;
}
.compass-sm { width: 44px; height: 44px; opacity: 0.75; }
.compass-lg { width: 220px; height: 220px; opacity: 0.35; }

/* Horizon — fijne lijn met een subtiele gradient */
.horizon {
  display: block;
  height: 0.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(196,149,106,0.38) 50%, transparent 100%);
  border: none;
  margin: 3rem 0;
}
.horizon-short {
  width: 80px;
  margin: 1.8rem 0;
  background: linear-gradient(90deg, rgba(196,149,106,0.55) 0%, transparent 100%);
}

/* Coördinaat-markering — typografisch detail, als een peiling */
.coord {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--warm);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.coord::before {
  content: "";
  width: 18px;
  height: 0.5px;
  background: var(--accent);
}

/* Cardinale richting — klein label, bijv. "→ N" */
.bearing {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

/* Ochtendlicht-vlak — voor intro/hero secties */
.dawn-light {
  background:
    radial-gradient(ellipse 60% 80% at 80% 0%, rgba(212,165,116,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 100%, rgba(122,147,133,0.08) 0%, transparent 60%),
    var(--sand);
}

/* ──────────────────────────────────────────────
   ARTIKEL — blogdetailpagina styling
   ────────────────────────────────────────────── */
.article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem var(--page-pad) 4rem;
}

.article-meta-top {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.article-meta-top .bearing,
.article-meta-top .coord {
  font-size: 0.68rem;
}

.article-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1.6rem;
}
.article-title em { color: var(--accent); font-style: italic; }

.article-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  color: var(--warm);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.article-body {
  font-size: 1.04rem;
  line-height: 1.9;
  color: rgba(42,31,23,0.88);
}
.article-body p { margin-bottom: 1.6rem; }
.article-body em { font-style: italic; color: var(--warm); }
.article-body strong { font-weight: 500; color: var(--deep); }

.article-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  margin: 3.5rem 0 1.2rem;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.article-body h2::before {
  content: "";
  display: block;
  width: 36px;
  height: 0.5px;
  background: var(--accent);
  margin-bottom: 1.2rem;
}

.article-body blockquote {
  border-left: 0.5px solid var(--accent);
  padding: 0.2rem 0 0.2rem 1.6rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--deep);
}

.article-footer {
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.article-footer .bearing { font-size: 0.66rem; }
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 0.5px solid var(--border);
}
.article-nav a {
  display: block;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--warm);
  transition: color 0.25s;
}
.article-nav a:hover { color: var(--deep); }
.article-nav .nav-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.article-nav .next { text-align: right; }

@media (max-width: 640px) {
  .article-wrap { padding: 3.5rem var(--page-pad) 3rem; }
  .article-nav { grid-template-columns: 1fr; gap: 1.5rem; }
  .article-nav .next { text-align: left; }
}

/* ── Organische cirkelafbeeldingen ── */
.article-image-circle {
  width: clamp(160px, 34vw, 260px);
  height: clamp(160px, 34vw, 260px);
  margin: 2.5rem auto 2rem;
  border-radius: 45% 55% 52% 48% / 48% 45% 55% 52%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(42, 31, 23, 0.12);
  animation: breathe 6s ease-in-out infinite;
}

.article-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes breathe {
  0%, 100% { border-radius: 45% 55% 52% 48% / 48% 45% 55% 52%; }
  25% { border-radius: 48% 52% 45% 55% / 55% 48% 52% 45%; }
  50% { border-radius: 52% 48% 55% 45% / 45% 55% 48% 52%; }
  75% { border-radius: 55% 45% 48% 52% / 52% 45% 55% 48%; }
}

@media (max-width: 640px) {
  .article-image-circle {
    width: clamp(140px, 42vw, 200px);
    height: clamp(140px, 42vw, 200px);
    margin: 1.8rem auto 1.5rem;
  }
}

/* ── Respect prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .article-image-circle { animation: none; }
}
