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

/* ── Variabelen ──────────────────────────── */
:root {
  --bg:           #faf7f1;
  --bg-warm:      #f4ede1;
  --ink:          #23201b;
  --muted:        #6f6557;
  --accent:       #3f5d46;   /* bosgroen */
  --accent-dark:  #2f4836;
  --accent-soft:  #e7efe5;   /* pale groen pill */
  --warm:         #c0673a;   /* terracotta */
  --gold:         #d2a23f;   /* mosterd/goud */
  --card:         #ffffff;
  --border:       #e9e1d4;
  --shadow:       0 10px 30px rgba(42,33,20,0.08);
  --shadow-sm:    0 4px 14px rgba(42,33,20,0.06);
  --radius:       16px;
  --radius-lg:    22px;
  --max-w:        1120px;
  --font:         system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
}

/* ── Reset ───────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.01em;
}
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
img { max-width: 100%; }

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

/* ── Header ──────────────────────────────── */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(150%) blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.brand { text-decoration: none; color: var(--ink); display: flex; flex-direction: column; line-height: 1.12; }
.brand-logo { height: 60px; width: auto; display: block; }
.brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; }
.brand-tag  { font-size: 0.82rem; color: var(--warm); font-style: italic; font-family: var(--font-heading); }

.header-right { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.site-nav ul { display: flex; gap: 0.15rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  position: relative;
}
.site-nav a:hover { color: var(--accent-dark); }
.site-nav a[aria-current="page"] { color: var(--accent-dark); font-weight: 600; }
.site-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0.8rem; right: 0.8rem; bottom: 0.05rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.btn-follow {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.18s;
}
.btn-follow:hover { background: var(--accent-dark); color: #fff; }
.lang-switch { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.85rem; color: var(--muted); }
.lang-switch a { text-decoration: none; color: var(--muted); padding: 0.15rem 0.3rem; border-radius: 6px; font-weight: 600; }
.lang-switch a:hover { color: var(--accent-dark); }
.lang-switch a.is-active { color: #fff; background: var(--accent); }

/* ── Knoppen ─────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.78rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  margin-right: 0.5rem;
  margin-bottom: 0.4rem;
  transition: all 0.18s ease;
}
.btn-primary  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover  { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--accent-dark); border-color: #c9d5c6; }
.btn-secondary:hover { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); }
.btn-outline  { background: transparent; color: var(--muted); border-color: transparent; padding-left: 0.4rem; padding-right: 0.4rem; }
.btn-outline:hover  { color: var(--accent-dark); background: transparent; }

/* ── Hero (binnenpagina's) ───────────────── */
.hero { padding: 3.5rem 0 2rem; }
.hero h1 { font-size: 2.6rem; margin: 0 0 0.5rem; line-height: 1.12; }
.hero-tagline { font-family: var(--font-heading); font-style: italic; color: var(--muted); font-size: 1.2rem; margin: 0 0 0.75rem; font-weight: 400; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; line-height: 1.7; margin: 0 0 1.5rem; }

/* ── Hero (homepage, twee kolommen) ──────── */
.hero-home {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 3rem;
}
.hero-home-text h1 {
  font-size: 3.2rem;
  margin: 0 0 1rem;
  line-height: 1.08;
}
.hero-home-text .lead { font-size: 1.15rem; margin-bottom: 1.75rem; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 1.75rem; }
.hero-audience {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--muted); font-size: 0.92rem;
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
}
.hero-audience .ha-icon { color: var(--gold); flex-shrink: 0; }
.hero-art { position: relative; }
.hero-art svg, .hero-art img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }

/* ── Secties ─────────────────────────────── */
.section { padding: 2.75rem 0; border-top: 1px solid var(--border); }
.section h2 { margin-top: 0; font-size: 1.7rem; }
.section-intro { color: var(--muted); max-width: 65ch; margin: 0 0 1.75rem; line-height: 1.65; }
.section-plain { padding: 2.75rem 0; }     /* zonder bovenrand */
.center { text-align: center; }

/* ── Audience-kaarten (homepage) ─────────── */
.audience-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0.5rem;
}
.audience-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--ink); }
.audience-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: #fff;
}
.audience-icon svg { width: 26px; height: 26px; }
.audience-icon.is-green { background: var(--accent); }
.audience-icon.is-gold  { background: var(--gold); }
.audience-icon.is-terra { background: var(--warm); }
.audience-card h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.audience-card p  { margin: 0 0 1.1rem; color: var(--muted); font-size: 0.95rem; line-height: 1.6; flex-grow: 1; }
.audience-link { font-weight: 600; color: var(--accent-dark); font-size: 0.9rem; }

/* ── Feature-kaartjes (algemeen, behouden) ─ */
.feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 1.5rem 0;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--ink); }
.feature-card-icon  { font-size: 2rem; margin-bottom: 0.25rem; }
.feature-card h3    { margin: 0; font-size: 1.15rem; color: var(--accent-dark); }
.feature-card p     { margin: 0; color: var(--muted); font-size: 0.93rem; line-height: 1.55; }

/* ── Featured + zijlijst (homepage) ──────── */
.home-featured {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}
.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.9rem;
  color: #fff;
  text-decoration: none;
  background: var(--accent-dark);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.featured-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,28,22,0.15) 0%, rgba(20,28,22,0.55) 55%, rgba(18,24,19,0.86) 100%);
}
.featured-card > * { position: relative; z-index: 1; }
.featured-card .post-cat { background: var(--accent); color: #fff; }
.featured-card h3 {
  color: #fff;
  font-size: 1.7rem;
  margin: 0.7rem 0 0.6rem;
  line-height: 1.18;
}
.featured-card p { color: rgba(255,255,255,0.85); margin: 0 0 0.9rem; font-size: 0.98rem; max-width: 48ch; }
.featured-card .readmore { color: #fff; }
.featured-meta { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; font-size: 0.8rem; color: rgba(255,255,255,0.8); }

.featured-side { display: flex; flex-direction: column; gap: 1rem; }
.mini-post {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
  flex: 1;
}
.mini-post:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ink); }
.mini-thumb { aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; background: #eae3d8; }
.mini-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mini-body { min-width: 0; }
.mini-body .post-cat { font-size: 0.66rem; }
.mini-body h4 { margin: 0.35rem 0 0.3rem; font-size: 1.02rem; line-height: 1.25; }
.mini-body h4 a { color: var(--ink); text-decoration: none; }
.mini-readmore { font-size: 0.82rem; font-weight: 600; color: var(--accent-dark); }

/* ── Promo-strip (Materiaal + Over) ──────── */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.promo-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.promo-card.is-soft { background: var(--accent-soft); border-color: #d3e0d0; }
.promo-card.is-cream { background: var(--bg-warm); }
.promo-card h3 { margin: 0 0 0.45rem; font-size: 1.3rem; }
.promo-card p { margin: 0 0 1rem; color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.promo-icon {
  width: 60px; height: 60px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
}
.promo-icon svg { width: 30px; height: 30px; }
.promo-photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.promo-photo-ph {
  width: 96px; height: 96px; border-radius: 50%; flex-shrink: 0;
  background: #eae3d8; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--muted);
}
.promo-arrowlink { font-weight: 600; color: var(--accent-dark); text-decoration: none; font-size: 0.92rem; }
.promo-card-full { width: 100%; }

/* ── Nieuwsbrief-banner ──────────────────── */
.newsletter {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 3rem 0 0;
  box-shadow: var(--shadow);
}
.newsletter-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.newsletter-icon svg { width: 26px; height: 26px; color: #fff; }
.newsletter-text { flex: 1; min-width: 220px; }
.newsletter-text h2 { color: #fff; margin: 0 0 0.25rem; font-size: 1.4rem; }
.newsletter-text p { margin: 0; color: rgba(255,255,255,0.85); font-size: 0.96rem; }
.newsletter .btn-light {
  background: #fff; color: var(--accent-dark);
  border: none; padding: 0.78rem 1.5rem; border-radius: 999px;
  font-weight: 600; text-decoration: none; white-space: nowrap;
  transition: transform 0.15s, background 0.15s;
}
.newsletter .btn-light:hover { background: var(--bg-warm); transform: translateY(-1px); }

/* ── Post-grid & kaartjes ────────────────── */
.post-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.post-card-thumb { display: block; aspect-ratio: 16/9; background: #eae3d8; overflow: hidden; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.post-meta { display: flex; gap: 0.6rem; align-items: center; font-size: 0.8rem; color: var(--muted); margin-bottom: 0.6rem; flex-wrap: wrap; }
.post-cat {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
}
.post-title { margin: 0 0 0.5rem; font-size: 1.2rem; line-height: 1.3; }
.post-title a { color: var(--ink); text-decoration: none; }
.post-title a:hover { color: var(--accent-dark); }
.post-excerpt { color: var(--muted); margin: 0 0 1rem; flex-grow: 1; font-size: 0.95rem; line-height: 1.6; }
.readmore { text-decoration: none; font-weight: 600; color: var(--accent-dark); font-size: 0.88rem; }
.readmore:hover { color: var(--accent); }

/* ── Filter-chips ────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.chip {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  transition: all 0.15s;
}
.chip:hover          { border-color: var(--accent); color: var(--accent-dark); background: var(--accent-soft); }
.chip-active         { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); }
.chip-active:hover   { color: #fff; background: var(--accent); }

/* ── Poster-grid ─────────────────────────── */
.poster-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.poster-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.poster-image { aspect-ratio: 3/4; background: #eae3d8; display: flex; align-items: center; justify-content: center; }
.poster-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.poster-body { padding: 1.25rem 1.3rem 1.5rem; }
.poster-body h2 { margin: 0 0 0.4rem; font-size: 1.2rem; }
.poster-price { font-weight: 600; margin: 0.6rem 0 1rem; color: var(--warm); }

/* ── Materiaal-secties ───────────────────── */
.materiaal-section { padding: 1.75rem 0; border-top: 1px solid var(--border); }
.materiaal-section-title {
  font-size: 1.3rem;
  margin: 0 0 1rem;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.materiaal-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.materiaal-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.materiaal-item-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 0.05rem; }
.materiaal-item-body { flex-grow: 1; }
.materiaal-item-body h4 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.materiaal-item-body p  { margin: 0 0 0.75rem; font-size: 0.92rem; color: var(--muted); line-height: 1.55; }
.placeholder-block {
  background: var(--accent-soft);
  border: 2px dashed #c9d5c6;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-size: 0.92rem;
}

/* ── Publicaties & media ─────────────────── */
.pub-grid { display: flex; flex-direction: column; gap: 0.85rem; }
.pub-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  text-decoration: none;
  color: var(--ink);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s, transform 0.18s;
}
.pub-card:hover { box-shadow: var(--shadow); transform: translateX(4px); color: var(--ink); }
.pub-source {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pub-card-body strong { display: block; font-size: 0.98rem; margin-bottom: 0.15rem; font-family: var(--font-heading); line-height: 1.3; }
.pub-card-body span   { font-size: 0.85rem; color: var(--muted); }
.pub-arrow  { color: var(--accent); font-size: 1.1rem; }
.pub-tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  align-self: flex-start;
}
.pub-tag-eigen  { background: #f3e4d2; color: var(--warm); }
.pub-tag-media  { background: var(--accent-soft); color: var(--accent-dark); }
.pub-binnenkort { opacity: 0.55; pointer-events: none; }

/* ── CTA-blok ────────────────────────────── */
.cta-block {
  background: var(--accent-soft);
  border: 1px solid #cddacd;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin-top: 2rem;
}
.cta-block h2 { color: var(--accent-dark); margin-top: 0; }

/* ── Over-pagina ─────────────────────────── */
.over-grid { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; align-items: start; }
.over-foto img { width: 100%; border-radius: var(--radius-lg); display: block; box-shadow: var(--shadow); }
.over-foto-caption { text-align: center; color: var(--muted); font-style: italic; font-size: 0.85rem; margin: 0.5rem 0 0; }
.over-foto-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: #eae3d8; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: var(--muted); font-style: italic; font-size: 0.9rem;
  border: 2px dashed var(--border);
}
.over-foto-placeholder span { font-size: 2.5rem; }

/* ── Enkel bericht ───────────────────────── */
.post { max-width: 740px; margin: 0 auto; padding-top: 2rem; }
.post-hero { margin: 0 0 1.5rem; border-radius: var(--radius-lg); overflow: hidden; background: #eae3d8; box-shadow: var(--shadow-sm); }
.post-hero img { width: 100%; height: auto; display: block; }
.post-header { margin-bottom: 1.75rem; }
.post-header h1 { margin: 0.5rem 0 0; font-size: 2.3rem; line-height: 1.18; }
.prose { font-size: 1.06rem; line-height: 1.78; }
.prose p  { margin: 0 0 1.1rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.1rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--ink); }
.prose em     { color: var(--muted); }
.prose h3 { font-size: 1.25rem; margin: 1.6rem 0 0.5rem; color: var(--accent-dark); }
.prose .ps { color: var(--muted); font-size: 0.95rem; border-left: 3px solid var(--gold); padding-left: 1rem; }

.hashtags { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.hashtag  { font-size: 0.82rem; color: var(--accent-dark); background: var(--accent-soft); padding: 0.2rem 0.7rem; border-radius: 999px; }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.post-nav-link {
  display: flex; flex-direction: column;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s;
}
.post-nav-link span   { color: var(--muted); font-size: 0.8rem; }
.post-nav-link strong { color: var(--ink); font-size: 0.92rem; margin-top: 0.2rem; line-height: 1.35; }
.post-nav-link:hover  { border-color: var(--accent); }
.post-nav-next { text-align: right; }
.back-link { margin-top: 1.5rem; }
.back-link a { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.back-link a:hover { color: var(--accent-dark); }

/* ── Instagram-grid ──────────────────────── */
.ig-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ── Contactformulier ────────────────────── */
.contact-intro {
  background: var(--accent-soft);
  border: 1px solid #d3e0d0;
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.75rem;
  max-width: 640px;
}
.contact-intro p { margin: 0; color: var(--ink); }
.contact-direct { margin-top: 0.6rem !important; display: flex; flex-wrap: wrap; gap: 1.2rem; }
.contact-direct a { font-weight: 600; font-size: 0.93rem; }
.contact-form { max-width: 560px; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field label { font-weight: 600; margin-bottom: 0.35rem; font-size: 0.94rem; }
.field input, .field textarea, .field select {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; }
.field .error { color: #b00020; font-size: 0.87rem; margin-top: 0.25rem; }
.field.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 0.9rem 1.1rem; border-radius: 10px; margin-bottom: 1.25rem; }
.alert-success { background: #e8f5eb; border: 1px solid #b6dfc0; color: #1e6b3a; }
.alert-error   { background: #fdecea; border: 1px solid #f4c2bd; color: #8a1c12; }

/* ── Footer ──────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); margin-top: 4rem; background: #fff; }
.footer-inner {
  padding: 2.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.88rem;
  align-items: start;
}
.footer-brand-name { font-family: var(--font-heading); font-weight: 700; color: var(--ink); font-size: 1.1rem; margin-bottom: 0.25rem; }
.footer-colofon p  { margin: 0.2rem 0; }
.footer-colofon a  { color: var(--muted); text-decoration: none; }
.footer-colofon a:hover { color: var(--accent-dark); }
.footer-links { display: flex; flex-direction: column; gap: 0.4rem; text-align: right; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; }
.footer-links a:hover { color: var(--accent-dark); }

/* ── Responsief ──────────────────────────── */
@media (max-width: 900px) {
  .hero-home { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-art { order: -1; max-width: 460px; }
  .hero-home-text h1 { font-size: 2.6rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .home-featured { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .over-grid { grid-template-columns: 1fr; }
  .over-foto { max-width: 240px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 2rem; }
  .hero-home-text h1 { font-size: 2.15rem; }
  .hero-tagline { font-size: 1.05rem; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  .header-right { width: 100%; justify-content: space-between; }
  .post-nav     { grid-template-columns: 1fr; }
  .post-header h1 { font-size: 1.8rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
  .pub-card     { grid-template-columns: 1fr; gap: 0.5rem; }
  .pub-arrow    { display: none; }
  .featured-card { min-height: 300px; padding: 1.4rem; }
  .featured-card h3 { font-size: 1.4rem; }
  .newsletter { padding: 1.6rem; }
  .mini-post { grid-template-columns: 76px 1fr; }
}
