/*
Theme Name: 21wohnen
Theme URI: https://21wohnen.de
Author: 21wohnen
Author URI: https://21wohnen.de
Description: Ein ruhiges, gut lesbares Wohnblog-Theme in pastellblauen Farbtönen. Lora + Inter. Vollständig responsiv mit Cookie-Hinweis, Vorlese-Audio, Feedback-Modul, interner Verlinkung, strukturierten Daten und automatischen Alt-Texten.
Version: 1.0.4
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wohnen21
Tags: blog, one-column, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* Fonts via functions.php (preconnect + non-blocking). */

/* ──────────────────────────────────────────────────────────────
   Design tokens — 21wohnen (pastellblau-Palette)
   Variabelnamen aus historischen Gründen behalten; Werte sind
   nun pastellblau + warmer Akzent (rosé/sand) für Wärme.
   ────────────────────────────────────────────────────────────── */
:root {
  --sage: #A7C5DC;
  --sage-deep: #5A8AAB;
  --sage-soft: #DFEBF3;
  --terracotta: #E5A8A0;
  --terracotta-deep: #C97D74;
  --ochre: #E8C797;
  --bg: #F4F8FB;
  --beige: #E5ECF3;
  --beige-deep: #D2DDE7;
  --ink: #2F2F2F;
  --ink-soft: #565A63;
  --line: #DDE4EB;
  --white: #FFFFFF;

  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --radius: 8px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(47,47,47,0.04), 0 2px 6px rgba(47,47,47,0.04);
  --shadow-md: 0 4px 14px rgba(47,47,47,0.06);
  --shadow-lg: 0 10px 40px rgba(47,47,47,0.10);

  --maxw: 1180px;
  --readw: 720px;
  --gutter: clamp(20px, 4vw, 32px);
}

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

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.has-cookie-modal { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage-deep); text-decoration: none; transition: color .15s; }
a:hover { color: var(--terracotta); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0 0 0.4em;
  text-wrap: balance;
}
h1 { font-size: clamp(34px, 5.5vw, 56px); line-height: 1.08; }
h2 { font-size: clamp(26px, 3.5vw, 34px); line-height: 1.2; }
h3 { font-size: clamp(20px, 2.4vw, 22px); line-height: 1.3; }
h4 { font-size: 18px; line-height: 1.35; }

p { margin: 0 0 1em; text-wrap: pretty; }
strong { font-weight: 600; }
em { font-style: italic; }

::selection { background: var(--terracotta); color: #fff; }

/* ───────── Layout primitives ───────── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.read { max-width: var(--readw); margin: 0 auto; }
section { padding: clamp(48px, 8vw, 80px) 0; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  display: inline-block;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 100;
  background: var(--sage-deep);
  color: #fff;
  padding: 12px 18px;
  font-size: 13px;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 8px; top: 8px; outline: 2px solid var(--terracotta); }

.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.sec-head .sec-link {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.sec-head .sec-link:hover { color: var(--terracotta); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 30px);
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.section-title .rule {
  flex: 1;
  height: 1px;
  background: var(--line);
  min-width: 40px;
}

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-deep); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--sage-deep);
  border-color: var(--sage);
}
.btn-secondary:hover { background: var(--sage-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark { background: var(--sage-deep); color: #fff; }
.btn-dark:hover { background: var(--ink); color: #fff; }

.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--ink);
  transition: 0.2s;
}
.icon-btn:hover { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }

/* ───────── Top bar + Header ───────── */
.topbar {
  background: var(--sage-deep);
  color: #EFEAE2;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar a { color: #EFEAE2; opacity: 0.9; }
.topbar a:hover { color: #fff; opacity: 1; }
.topbar-tag { font-weight: 500; }
.topbar-links { display: flex; gap: 20px; }

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 50;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--gutter) 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.header-utility {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-soft);
}
.header-utility.right { justify-content: flex-end; }
.header-utility .icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 6px 8px;
  cursor: pointer;
  color: var(--ink-soft);
  font: inherit;
  font-size: 13px;
}
.header-utility .icon-link:hover { color: var(--terracotta); }

.brand { text-align: center; flex-shrink: 0; }
.brand a { color: inherit; display: inline-block; }
.brand a:hover { color: inherit; }

/* Speelse animated header brand */
.header-brand { text-decoration: none !important; }
.header-brand-mark {
  position: relative;
  display: inline-block;
  padding: 0 18px;
  transition: transform .35s ease;
}
.header-brand:hover .header-brand-mark {
  transform: rotate(-1deg);
}
.header-brand-text {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.header-brand:hover .header-brand-text {
  animation: brandWobble .6s ease-in-out;
}
.header-brand-squiggle {
  position: absolute;
  left: 18px; right: 18px;
  bottom: -10px;
  width: calc(100% - 36px);
  height: 10px;
  color: var(--terracotta);
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transition: stroke-dashoffset .7s cubic-bezier(.25,.6,.3,1);
  pointer-events: none;
  opacity: 0.9;
}
.header-brand:hover .header-brand-squiggle {
  stroke-dashoffset: 0;
}
.header-brand-dot {
  position: absolute;
  top: -2px;
  right: 4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  transform: scale(0);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.header-brand:hover .header-brand-dot {
  transform: scale(1);
  animation: dotBounce 1.2s ease-in-out .3s infinite;
}
.header-brand-leaf {
  position: absolute;
  left: -6px; top: 4px;
  color: var(--ochre);
  opacity: 0;
  transform: translate(8px, 4px) rotate(40deg) scale(0.6);
  transition: opacity .3s ease .1s, transform .4s cubic-bezier(.34,1.56,.64,1) .1s;
  pointer-events: none;
}
.header-brand:hover .header-brand-leaf {
  opacity: 1;
  transform: translate(0, 0) rotate(-12deg) scale(1);
}
.header-brand .brand-tag {
  display: block;
  transition: color .25s, letter-spacing .25s;
}
.header-brand:hover .brand-tag {
  color: var(--terracotta);
  letter-spacing: 0.36em;
}
@media (prefers-reduced-motion: reduce) {
  .header-brand-mark,
  .header-brand-text,
  .header-brand-squiggle,
  .header-brand-dot,
  .header-brand-leaf,
  .header-brand .brand-tag {
    transition: none !important;
    animation: none !important;
  }
}
.brand-logo {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  font-style: italic;
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-tag {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}
.logo-mark { display: inline-block; }

.nav {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid transparent;
  background: var(--bg);
  margin-top: 24px;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 36px;
}
.nav-list > li { position: relative; }
.nav-list a, .nav a {
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-list a:hover, .nav-list .current-menu-item > a, .nav-list .current-menu-parent > a,
.nav a:hover, .nav a.active {
  color: var(--sage-deep);
  border-bottom-color: var(--terracotta);
}
.nav-list .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-left: 4px;
  opacity: 0.6;
  transition: transform .15s;
}
.nav .pill, .nav-list .pill > a {
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  padding: 6px 14px;
  letter-spacing: 0.18em;
}
.nav .pill:hover, .nav-list .pill > a:hover { background: var(--terracotta); color: #fff; border-bottom-color: var(--terracotta); }

/* Submenu dropdown — only on hover/focus on desktop */
.nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 6px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 60;
}
.nav-list .sub-menu::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.nav-list > li:hover > .sub-menu,
.nav-list > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.nav-list .sub-menu li { display: block; }
.nav-list .sub-menu a {
  display: block;
  padding: 9px 22px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--ink);
  border: 0;
  white-space: nowrap;
}
.nav-list .sub-menu a:hover {
  background: var(--beige);
  color: var(--sage-deep);
  border: 0;
}

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
}
.menu-toggle span::before { transform: translate(-50%, -7px); }
.menu-toggle span::after  { transform: translate(-50%, 5px); }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.header-search { background: var(--beige); border-bottom: 1px solid var(--line); }
.header-search[hidden] { display: none; }
.header-search form {
  display: flex;
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
}
.header-search input[type="search"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.header-search input[type="search"]:focus { outline: none; border-color: var(--sage); }

/* ───────── Cards ───────── */
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.card-image, .card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--beige);
  border-radius: var(--radius) var(--radius) 0 0;
}
.card-image > img, .card-img > img,
.card-image > .ph, .card-img > .ph {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card { overflow: visible; }
.card > a { display: block; border-radius: var(--radius); overflow: visible; }
.card.has-chip { padding-bottom: 0; }
.card-image .ph, .card-img .ph { position: absolute; inset: 0; }
.card-body {
  padding: 22px 22px 26px;
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
}
.card-cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
}
.card-cats {
  display: block;
  padding: 14px 22px 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}
.card-title {
  padding: 8px 22px 6px;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.card .card-title { padding-top: 8px; }
.card-meta {
  display: block;
  padding: 8px 22px 22px;
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.card-tag {
  position: absolute;
  left: 50%; bottom: -14px;
  transform: translateX(-50%);
  background: var(--beige);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 2;
}

.chip {
  position: absolute;
  left: 50%; bottom: -14px;
  transform: translateX(-50%);
  background: var(--beige);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 2;
}
.chip.sage { background: var(--sage-deep); color: #fff; }
.chip.terra { background: var(--terracotta); color: #fff; }
.chip.ochre { background: var(--ochre); color: #2F2F2F; }
.card.has-chip .card-body { padding-top: 30px; }

/* Image placeholders */
.ph {
  background:
    repeating-linear-gradient(135deg,
      rgba(47,47,47,0.04) 0 12px,
      rgba(47,47,47,0.0) 12px 24px),
    var(--ph-color, var(--beige));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(47,47,47,0.55);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  width: 100%; height: 100%;
  min-height: 160px;
}
.ph.sage { --ph-color: var(--sage-soft); }
.ph.green { --ph-color: var(--sage-soft); }
.ph.beige { --ph-color: var(--beige); }
.ph.beige-deep { --ph-color: var(--beige-deep); }
.ph.sand { --ph-color: var(--beige-deep); }
.ph.olive { --ph-color: #C2CCC0; }
.ph.ochre { --ph-color: #EBD5AB; }
.ph.terra { --ph-color: #EBC9B7; }

/* ───────── Grids ───────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.divider-rule {
  height: 1px;
  background: var(--line);
  margin: clamp(40px, 7vw, 56px) 0;
}

/* ───────── Tags ───────── */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--beige);
  color: var(--ink);
  border: 1px solid var(--beige-deep);
  text-decoration: none;
  transition: 0.15s;
}
.tag:hover { background: var(--sage-soft); border-color: var(--sage); color: var(--sage-deep); }

/* ───────── Page hero (archive/search) ───────── */
.page-hero {
  background: var(--beige);
  padding: clamp(48px, 8vw, 72px) 0 clamp(40px, 7vw, 64px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero .crumbs {
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-hero .crumbs a:hover { color: var(--terracotta); }
.page-hero .crumbs .sep { opacity: 0.5; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .deck {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero .it { font-style: italic; color: var(--sage-deep); font-weight: 500; }

/* ───────── Homepage hero ───────── */
.home-hero {
  padding: clamp(36px, 5vw, 56px) 0 clamp(40px, 6vw, 56px);
}
.home-hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: start;
}
.hero-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.hero-card:hover { color: inherit; }
.hero-card .hero-bg {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--sage-soft);
  box-shadow: 0 10px 32px rgba(47,47,47,0.08);
  transition: transform .35s cubic-bezier(.25,.6,.3,1), box-shadow .35s ease;
}
.hero-card:hover .hero-bg {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(47,47,47,0.12);
}
.hero-card .hero-bg img.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-card .featured-flag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--terracotta);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  z-index: 2;
}
.hero-card-body { padding-top: 26px; position: relative; }
.hero-card-body .card-cat {
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-card-body .card-cat::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--terracotta);
  vertical-align: middle;
  transition: width .3s cubic-bezier(.25,.6,.3,1);
}
.hero-card:hover .hero-card-body .card-cat::before { width: 32px; }
.hero-card h1 {
  font-size: clamp(28px, 4.4vw, 44px);
  margin: 6px 0 10px;
  line-height: 1.12;
  transition: color .25s;
}
.hero-card:hover h1 { color: var(--sage-deep); }
.hero-card .lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.hero-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero-card .meta strong { color: var(--ink); font-weight: 600; }
.hero-card .meta .dot { width: 3px; height: 3px; background: var(--ink-soft); border-radius: 50%; opacity: 0.4; }

.popular-list {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  position: relative;
}
.popular-list .head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--beige-deep);
}
.popular-list h3 {
  margin: 0;
  font-size: 22px;
}
.popular-list ol {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 16px;
}
.popular-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(196,106,74,0.18);
  transition: transform .25s ease;
}
.popular-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.popular-list li:hover { transform: translateX(3px); }
.popular-list .num {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  color: var(--terracotta);
  line-height: 1;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), color .2s;
}
.popular-list li:hover .num {
  transform: scale(1.15) rotate(-4deg);
  color: var(--terracotta-deep);
}
.popular-list a {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  transition: color .2s;
}
.popular-list a:hover { color: var(--terracotta); }

.tip-card {
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.tip-card::before {
  content: '';
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--ochre);
  opacity: 0.18;
  top: -34px; right: -28px;
  z-index: 0;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.tip-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--terracotta) 0, var(--terracotta) 50%, var(--ochre) 50%, var(--ochre) 100%);
  border-radius: 4px 0 0 4px;
}
.tip-card:hover { border-color: var(--terracotta); transform: translateY(-2px); }
.tip-card:hover::before { transform: scale(1.15) rotate(20deg); }
.tip-card .tip-icon {
  color: var(--terracotta);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--beige);
  border-radius: 50%;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.tip-card:hover .tip-icon { transform: rotate(45deg); }
.tip-card > div { position: relative; z-index: 1; }
.tip-card .tip-title { font-family: var(--serif); font-size: 18px; line-height: 1.2; color: var(--ink); }
.tip-card .tip-sub { font-size: 13px; color: var(--ink-soft); }
.tip-card a { margin-left: auto; position: relative; z-index: 1; }

/* ───────── Category strip ───────── */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.cat-strip a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.cat-strip a .cat-tile {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: var(--sage-soft);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  transition: transform .2s;
}
.cat-strip a:hover .cat-tile { transform: translateY(-3px); }
.cat-strip a .cat-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cat-strip a .cat-name {
  text-align: center;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

/* ───────── Judith quote banner (home) ───────── */
.judith-banner {
  position: relative;
  margin: clamp(40px, 6vw, 64px) auto;
  max-width: var(--maxw);
  padding: 0 var(--gutter);
}
.judith-banner-inner {
  position: relative;
  background: var(--beige);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  overflow: hidden;
}
.judith-banner-inner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--ochre);
  opacity: 0.18;
  z-index: 0;
}
.judith-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--sage-soft);
  opacity: 0.5;
  z-index: 0;
}
.judith-banner-photo {
  position: relative;
  z-index: 1;
  width: 300px; max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sage-soft);
  box-shadow: 0 14px 36px rgba(72,97,84,0.15);
  justify-self: center;
}
.judith-banner-photo::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px dashed var(--terracotta);
  z-index: -1;
  animation: spinSlow 60s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.judith-banner-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.judith-banner-copy { position: relative; z-index: 1; }
.judith-banner-copy .eyebrow { color: var(--terracotta); }
.judith-banner-copy blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  margin: 18px 0 22px;
  letter-spacing: -0.005em;
  position: relative;
  padding-top: 18px;
}
.judith-banner-copy blockquote::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 56px;
  height: 2px;
  background: var(--terracotta);
}
@media (max-width: 720px) {
  .judith-banner-copy blockquote::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
.judith-banner-copy .signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.judith-banner-copy .signature .name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--sage-deep);
}
.judith-banner-copy .signature .role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.judith-banner-copy .signature .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-soft); opacity: 0.4; }
.judith-banner-copy .actions { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .judith-banner-inner { grid-template-columns: 1fr; padding: 32px 24px; }
  .judith-banner-photo { width: 180px; }
  .judith-banner-copy { text-align: center; }
  .judith-banner-copy blockquote::before { left: 50%; transform: translateX(-50%); top: -28px; }
  .judith-banner-copy .signature { justify-content: center; }
  .judith-banner-copy .actions { justify-content: center; }
}

/* ───────── Inspiration band ───────── */
.band-beige { background: var(--beige); padding: clamp(56px, 9vw, 80px) 0; }
.band-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.band-image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--sage-soft);
  overflow: hidden;
}
.band-image img { width: 100%; height: 100%; object-fit: cover; }
.band-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 6px 0 14px;
}
.band-copy p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.75;
}
.band-copy .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ───────── Stappenplan blocks ───────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 26px;
}
.step-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--line);
}
.step-block .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 14px;
}
.step-block.sage .num { color: var(--sage-deep); }
.step-block.terra .num { color: var(--terracotta); }
.step-block.ochre .num { color: var(--ochre); }
.step-block h3 { font-size: 22px; margin-bottom: 10px; line-height: 1.3; }
.step-block .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.step-block .read-more {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.step-block .read-more:hover { color: var(--terracotta); }

/* ───────── Article single ───────── */
.article-head {
  padding: clamp(40px, 6vw, 56px) 0 clamp(32px, 5vw, 48px);
  text-align: center;
}
.article-head .crumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.article-head .crumbs .sep { opacity: 0.5; }
.article-head .cat {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 14px;
}
.article-head h1 {
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.article-head .deck {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 28px;
}
.article-meta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}
.article-meta-row .author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}
.article-meta-row .author:hover { color: var(--terracotta); }
.article-meta-row .author strong { color: var(--ink); font-weight: 600; }
.article-meta-row .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sage-soft);
  display: grid; place-items: center;
  font-family: var(--serif);
  color: var(--sage-deep);
  font-style: italic;
  overflow: hidden;
  flex-shrink: 0;
}
.article-meta-row .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 50%;
}
.article-meta-row .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--ink-soft);
  opacity: 0.4;
}

.article-cover {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.article-cover-frame {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.article-cover-frame::before {
  content: '';
  position: absolute;
  inset: 14px -10px -14px 14px;
  border-radius: var(--radius);
  background: var(--sage-soft);
  z-index: 0;
  transform: rotate(-0.6deg);
}
.article-cover-frame::after {
  content: '';
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ochre);
  top: -22px; right: -18px;
  opacity: 0.85;
  z-index: 0;
  box-shadow: 0 8px 22px rgba(214,168,90,0.25);
}
.article-cover-frame > img,
.article-cover-frame > .ph {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 14px 40px rgba(47,47,47,0.10);
}
.article-cover .caption {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 22px;
  font-style: italic;
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) {
  .article-cover-frame::before { inset: 10px -6px -10px 10px; }
  .article-cover-frame::after { width: 44px; height: 44px; top: -14px; right: -10px; }
}

/* Single article layout — prose + sidebar */
.article-shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.article-shell > .prose {
  padding: 0;
  max-width: var(--readw);
  justify-self: end;
  width: 100%;
}
.article-aside {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 22px;
}
.aside-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 26px;
}
.aside-block .aside-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.aside-block h3 {
  font-size: 20px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.aside-block h3 .badge {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--sage-deep);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  flex-shrink: 0;
}
.aside-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.aside-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.aside-list .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--terracotta);
  line-height: 1;
}
.aside-list a {
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 500;
}
.aside-list a:hover { color: var(--terracotta); }
.aside-list .meta {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 4px;
  letter-spacing: 0.04em;
  display: block;
}
.aside-list.aside-list-flat li { grid-template-columns: 1fr; }

.aside-author {
  background: var(--beige);
  border: 0;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}
.aside-author:hover { color: inherit; }
.aside-author .avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 14px;
  overflow: hidden;
  background: var(--sage-soft);
}
.aside-author .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.aside-author .role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.aside-author h4 {
  font-size: 22px;
  margin: 0 0 10px;
}
.aside-author p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 14px;
}
.aside-author .cta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-deep);
}

@media (max-width: 1024px) {
  .article-shell { grid-template-columns: 1fr; }
  .article-shell > .prose { justify-self: center; }
  .article-aside { position: static; max-width: var(--readw); margin: 0 auto; width: 100%; grid-template-columns: 1fr 1fr; }
  .article-aside .aside-author { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .article-aside { grid-template-columns: 1fr; }
}

.article-body {
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(40px, 6vw, 56px);
}
.prose {
  max-width: var(--readw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-size: clamp(16px, 1.4vw, 17px);
  line-height: 1.85;
  color: var(--ink);
}
.prose > p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.9;
  color: var(--sage-deep);
  float: left;
  margin: 6px 14px 0 0;
  font-style: italic;
}
.prose p { margin: 0 0 1.2em; }
.prose h2 { font-size: clamp(26px, 3.5vw, 34px); margin: 1.6em 0 0.5em; }
.prose h3 { font-size: clamp(20px, 2.6vw, 24px); margin: 1.4em 0 0.4em; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.prose li { margin-bottom: 0.4em; }
.prose blockquote {
  margin: clamp(40px, 6vw, 56px) 0;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.prose blockquote p {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  line-height: 1.35;
  color: var(--sage-deep);
  margin: 0;
}
.prose figure { margin: clamp(32px, 5vw, 56px) 0; }
.prose figure img { border-radius: var(--radius); }
.prose figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 12px;
  font-style: italic;
}
.prose img { border-radius: var(--radius); }
.prose a { color: var(--sage-deep); text-decoration: underline; text-decoration-color: var(--sage); text-underline-offset: 3px; }
.prose a:hover { color: var(--terracotta); text-decoration-color: var(--terracotta); }
.prose .wi-auto-link { color: var(--terracotta); text-decoration-color: var(--terracotta); }

.prose .tip-aside {
  background: var(--beige);
  border: 1px solid var(--beige-deep);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: start;
}
.prose .tip-aside .icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--ochre);
  display: grid; place-items: center;
  color: #2F2F2F;
}
.prose .tip-aside .label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 6px;
}

/* Article tags + tools row */
.article-tools {
  max-width: var(--readw);
  margin: 48px auto 0;
  padding: 32px var(--gutter) 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* Social share */
.share-row {
  max-width: var(--readw);
  margin: 24px auto 0;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
}
.share-row .share-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.share-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.share-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid; place-items: center;
  color: var(--ink);
  cursor: pointer;
  transition: 0.15s;
  text-decoration: none;
}
.share-btn:hover { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }
.share-btn svg { width: 18px; height: 18px; }
.share-btn.share-wa:hover { background: #25D366; border-color: #25D366; }
.share-btn.share-fb:hover { background: #1877F2; border-color: #1877F2; }
.share-btn.share-x:hover  { background: #000; border-color: #000; }
.share-btn.share-pin:hover{ background: #E60023; border-color: #E60023; }
.share-flash {
  font-size: 12px;
  color: var(--sage-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity .2s;
}
.share-flash.is-on { opacity: 1; }

/* Author card (below article) */
.author-card {
  max-width: var(--readw);
  margin: clamp(32px, 5vw, 48px) auto 0;
  padding: 0 var(--gutter);
}
.author-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.author-card-inner {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: center;
}
.author-card .avatar-lg {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--sage-soft);
  display: grid; place-items: center;
  font-family: var(--serif);
  color: var(--sage-deep);
  font-style: italic;
  font-size: 28px;
  overflow: hidden;
  flex-shrink: 0;
}
.author-card .avatar-lg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 50%;
}
.author-card .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.author-card h3 { font-size: 22px; margin: 0 0 4px; }
.author-bio { color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin: 0 0 8px; }
.author-bio p { margin: 0 0 0.6em; }
.author-card-cta {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--terracotta);
  font-weight: 600;
}

/* Author sidebar widget — used on article body too */
.author-side {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 24px 24px 26px;
  text-align: center;
}
.author-side .avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--sage-soft);
  margin: 0 auto 14px;
  overflow: hidden;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--sage-deep);
}
.author-side .avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-side h4 { font-size: 20px; margin: 0 0 4px; }
.author-side .role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
}
.author-side p { font-size: 14px; color: var(--ink-soft); margin: 0 0 14px; }

/* ───────── Article audio player ───────── */
.art-audio {
  max-width: var(--readw);
  margin: 22px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
}
.art-audio[hidden] { display: none; }
.art-audio-left { flex-shrink: 0; }
.art-audio-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--sage-deep);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: 0.15s;
}
.art-audio-play:hover { background: var(--terracotta); }
.art-audio .ico-pause, .art-audio .ico-loading { display: none; }
.art-audio.is-playing .ico-play { display: none; }
.art-audio.is-playing .ico-pause { display: block; }
.art-audio.is-loading .ico-play { display: none; }
.art-audio.is-loading .ico-loading { display: block; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.art-audio-middle { flex: 1; min-width: 0; }
.art-audio-label {
  display: flex;
  gap: 6px 12px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.art-audio-title { font-weight: 600; font-size: 14px; }
.art-audio-voice { font-size: 12px; color: var(--ink-soft); }
.art-audio-progress { display: flex; align-items: center; gap: 10px; }
.art-audio-bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  overflow: hidden;
}
.art-audio-bar > span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--terracotta);
  transition: width .2s;
}
.art-audio-time { display: flex; gap: 4px; font-size: 12px; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.art-audio-right { display: flex; gap: 6px; align-items: center; flex-shrink: 0; }
.art-audio-speed, .art-audio-stop {
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.art-audio-stop { width: 32px; padding: 0; display: grid; place-items: center; }
.art-audio-speed:hover, .art-audio-stop:hover { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }

/* ───────── Feedback module ───────── */
.feedback {
  max-width: var(--readw);
  margin: clamp(32px, 5vw, 56px) auto 0;
  padding: 0 var(--gutter);
}
.feedback-inner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
}
.feedback-head { text-align: center; margin-bottom: 20px; }
.feedback-head h2 { font-size: 24px; margin-bottom: 4px; }
.feedback-head p { color: var(--ink-soft); font-size: 14px; margin: 0; }
.feedback-form { text-align: center; }
.fb-verdict {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.15s;
}
.fb-btn:hover { border-color: var(--sage); color: var(--sage-deep); }
.fb-btn.is-active { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }
.fb-reveal {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  text-align: left;
}
.fb-reveal[hidden] { display: none; }
.fb-label { font-size: 14px; color: var(--ink-soft); }
.fb-reveal textarea {
  width: 100%;
  min-height: 110px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  resize: vertical;
  line-height: 1.6;
}
.fb-reveal textarea:focus { outline: none; border-color: var(--sage); background: #fff; }
.fb-captcha { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--ink-soft); }
.fb-captcha input {
  width: 70px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 14px;
}
.fb-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.fb-status { font-size: 13px; color: var(--terracotta); }
.fb-done {
  background: var(--sage-soft);
  color: var(--sage-deep);
  padding: 18px 22px;
  border-radius: var(--radius);
  display: grid;
  gap: 4px;
  text-align: center;
  margin-top: 18px;
}
.fb-done[hidden] { display: none; }

/* ───────── Related / Lees ook ───────── */
.related {
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(0px, 4vw, 0px);
}

/* ───────── Filter / sort bar (category) ───────── */
.sort-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 14px;
}
.sort-bar .count { font-size: 13px; color: var(--ink-soft); }
.sort-bar .sort-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.sort-bar .sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: 0.15s;
  text-decoration: none;
}
.sort-bar .sort-btn:hover { border-color: var(--ink); }
.sort-bar .sort-btn.is-active { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }

/* ───────── Categorieën grid (overview) ───────── */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: inherit; }
.cat-card .cat-img { aspect-ratio: 5 / 4; }
.cat-card .cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card .cat-info { padding: 18px 20px 22px; }
.cat-card h3 { font-size: 20px; margin-bottom: 4px; }
.cat-card .count {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}

/* ───────── Pagination ───────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(40px, 6vw, 56px);
  flex-wrap: wrap;
}
.pagination .page-numbers {
  min-width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.15s;
}
.pagination .page-numbers:hover { border-color: var(--sage); color: var(--sage-deep); }
.pagination .page-numbers.current { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }
.pagination .page-numbers.dots { background: transparent; border: 0; }

/* ───────── Newsletter block (now: Nieuwsbrief / soft CTA card) ───────── */
.newsletter, .nl-cta {
  background: var(--beige);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 36px) clamp(20px, 4vw, 32px);
  text-align: center;
}
.newsletter h3, .nl-cta h3 { font-size: clamp(22px, 2.6vw, 26px); margin-bottom: 8px; }
.newsletter p, .nl-cta p {
  color: var(--ink-soft);
  margin: 0 auto 20px;
  max-width: 520px;
}
.newsletter-form, .nl-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter input, .nl-form input {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.newsletter input:focus, .nl-form input:focus { outline: none; border-color: var(--sage); }

/* ───────── Footer ───────── */
.footer-wave {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 80px);
  margin: clamp(60px, 10vw, 100px) 0 -1px;
  color: var(--sage-deep);
}
.site-footer {
  background: var(--sage-deep);
  color: #EFEAE2;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 60px) var(--gutter) clamp(28px, 5vw, 40px);
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(28px, 5vw, 48px);
}
.footer-about p { opacity: 0.85; font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-about .brand-logo { color: #fff; font-size: 32px; }
.footer-about .brand-tag { color: rgba(255,255,255,0.7); }

/* Speelse animated footer brand */
.footer-brand {
  display: inline-block;
  text-decoration: none;
  color: #fff !important;
  position: relative;
  margin-bottom: 18px;
}
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.footer-brand-badge {
  display: inline-block;
  flex-shrink: 0;
  width: 56px; height: 56px;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.footer-brand-badge svg { display: block; }
.footer-brand:hover .footer-brand-badge {
  transform: rotate(-8deg) scale(1.05);
}
.footer-brand-words {
  position: relative;
  display: inline-block;
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  padding-right: 14px;
  transition: transform .35s ease;
}
.footer-brand:hover .footer-brand-words {
  transform: translateX(2px);
}
.footer-brand-text { position: relative; z-index: 2; display: inline-block; color: #fff; }
.footer-brand:hover .footer-brand-text {
  animation: brandWobble .6s ease-in-out;
}
@keyframes brandWobble {
  0%, 100% { transform: translateY(0) rotate(0); }
  25%      { transform: translateY(-3px) rotate(-1deg); }
  50%      { transform: translateY(0)    rotate(1deg); }
  75%      { transform: translateY(-2px) rotate(-0.5deg); }
}
.footer-brand-squiggle {
  position: absolute;
  left: 0; right: 14px;
  bottom: -10px;
  width: calc(100% - 14px);
  height: 10px;
  color: #E5A8A0;
  stroke-dasharray: 230;
  stroke-dashoffset: 230;
  transition: stroke-dashoffset .7s cubic-bezier(.25,.6,.3,1);
  opacity: 0.9;
  pointer-events: none;
}
.footer-brand:hover .footer-brand-squiggle {
  stroke-dashoffset: 0;
}
.footer-brand-dot {
  position: absolute;
  top: -4px;
  right: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  transform: scale(0);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.footer-brand:hover .footer-brand-dot {
  transform: scale(1);
  animation: dotBounce 1.2s ease-in-out .3s infinite;
}
@keyframes dotBounce {
  0%, 100% { transform: scale(1) translateY(0); }
  50%      { transform: scale(1.2) translateY(-5px); }
}
.footer-brand-leaf {
  position: absolute;
  right: -22px; top: 6px;
  color: #E8C797;
  opacity: 0;
  transform: translate(-6px, 4px) rotate(-30deg) scale(0.6);
  transition: opacity .3s ease .1s, transform .4s cubic-bezier(.34,1.56,.64,1) .1s;
  pointer-events: none;
}
.footer-brand:hover .footer-brand-leaf {
  opacity: 1;
  transform: translate(0, 0) rotate(0) scale(1);
}
.footer-brand-tag {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color .25s, letter-spacing .25s;
}
.footer-brand:hover .footer-brand-tag {
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.36em;
}
@media (max-width: 480px) {
  .footer-brand-words { font-size: 28px; }
  .footer-brand-badge { width: 44px; height: 44px; }
  .footer-brand-badge svg { width: 44px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-brand-badge,
  .footer-brand-words,
  .footer-brand-text,
  .footer-brand-squiggle,
  .footer-brand-dot,
  .footer-brand-leaf,
  .footer-brand-tag {
    transition: none !important;
    animation: none !important;
  }
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--terracotta);
  transition: width .35s cubic-bezier(.25,.6,.3,1);
}
.site-footer h4::before {
  content: '';
  position: absolute;
  left: 32px; bottom: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ochre);
  transform: translateY(2px);
  opacity: 0;
  transition: opacity .35s ease .15s, transform .35s cubic-bezier(.25,.6,.3,1) .15s;
}
.site-footer h4:hover::after,
.footer-inner > div:hover h4::after { width: 44px; }
.site-footer h4:hover::before,
.footer-inner > div:hover h4::before {
  opacity: 1;
  transform: translateY(2px) translateX(2px);
}
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer .footer-links li {
  position: relative;
  padding-left: 14px;
  transition: padding-left .25s ease;
}
.site-footer .footer-links li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px;
  height: 1.5px;
  background: var(--ochre);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform .25s cubic-bezier(.25,.6,.3,1);
  opacity: 0.7;
}
.site-footer .footer-links li:hover { padding-left: 18px; }
.site-footer .footer-links li:hover::before {
  transform: translateY(-50%) scaleX(1.6);
  background: var(--terracotta);
  opacity: 1;
}
.site-footer a { color: #EFEAE2; opacity: 0.85; font-size: 14px; transition: color .2s, opacity .2s; }
.site-footer a:hover { opacity: 1; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-bottom-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom-inner .links { display: flex; gap: 20px; flex-wrap: wrap; }
.cookie-link {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}
.cookie-link:hover { color: #fff; }

/* ───────── Search page ───────── */
.search-shell {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}
.res-list { display: grid; gap: 18px; }
.res-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform .15s, border-color .15s;
}
.res-card:hover { border-color: var(--sage); transform: translateX(2px); color: inherit; }
.res-card .rimg {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--beige);
}
.res-card .rimg img { width: 100%; height: 100%; object-fit: cover; }
.res-card .rbody .cat {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 6px;
}
.res-card .rbody h3 { font-size: 22px; margin-bottom: 6px; line-height: 1.25; }
.res-card .rbody p { color: var(--ink-soft); font-size: 14px; margin-bottom: 8px; }
.res-card .rbody .meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--ink-soft);
  align-items: center;
}
.res-card .rbody .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-soft); opacity: 0.5; }

.res-side h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.res-side .suggest { padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 18px; }
.res-side .suggest ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.res-side .suggest a { font-size: 14px; color: var(--ink); }
.res-side .suggest a:hover { color: var(--terracotta); }
.res-side .pills { display: flex; flex-wrap: wrap; gap: 6px; }

.search-box-large {
  display: flex;
  gap: 8px;
  max-width: 600px;
  margin: 28px auto 0;
}
.search-box-large input[type="search"] {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  background: #fff;
  color: var(--ink);
}
.search-box-large input[type="search"]:focus { outline: none; border-color: var(--sage); }

/* ───────── Cookie banner / modal ───────── */
.cookie-banner {
  position: fixed;
  left: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  z-index: 200;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  animation: cookieSlideUp .35s ease-out;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-text strong { display: block; font-family: var(--serif); font-size: 18px; margin-bottom: 4px; color: var(--ink); font-weight: 500; }
.cookie-banner-text p { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.cookie-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner-actions .btn { padding: 11px 18px; font-size: 11px; }
@keyframes cookieSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(47,47,47,0.6);
  display: grid;
  place-items: center;
  padding: 16px;
  animation: fadeIn .2s ease-out;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-card {
  background: #fff;
  border-radius: var(--radius);
  max-width: 540px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 32px; height: 32px;
  border: 0;
  background: transparent;
  font-size: 22px;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: 50%;
}
.cookie-modal-close:hover { background: var(--beige); color: var(--ink); }
.cookie-modal-head {
  padding: 32px 32px 18px;
  border-bottom: 1px solid var(--line);
}
.cookie-modal-head h3 { font-size: 24px; margin: 6px 0 8px; }
.cookie-modal-head p { color: var(--ink-soft); font-size: 14px; margin: 0; }
.cookie-categories { list-style: none; padding: 0; margin: 0; }
.cookie-cat { border-bottom: 1px solid var(--line); }
.cookie-cat:last-child { border-bottom: 0; }
.cookie-cat-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 20px 32px;
  align-items: center;
  cursor: pointer;
}
.cookie-cat-info strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--ink); font-weight: 600; }
.cookie-cat-info span { font-size: 13px; color: var(--ink-soft); line-height: 1.55; display: block; }
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 40px; height: 22px;
  background: var(--line);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
  flex-shrink: 0;
}
.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: 0.2s;
}
.cookie-toggle input[type="checkbox"]:checked { background: var(--sage-deep); }
.cookie-toggle input[type="checkbox"]:checked::before { transform: translateX(18px); }
.cookie-toggle input[type="checkbox"]:disabled { opacity: 0.6; cursor: not-allowed; }
.cookie-toggle-text { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.cookie-modal-foot {
  padding: 20px 32px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  border-top: 1px solid var(--line);
}
.cookie-modal-foot .btn { padding: 11px 18px; font-size: 11px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ───────── Comments ───────── */
.comments-area {
  max-width: var(--readw);
  margin: clamp(40px, 6vw, 64px) auto 0;
  padding: 0 var(--gutter);
}
.comments-area h2.comments-title { font-size: 24px; margin-bottom: 24px; }
.comments-area .comment-list { list-style: none; padding: 0; margin: 0; }
.comments-area .comment { padding: 18px 0; border-top: 1px solid var(--line); }
.comments-area .comment-author { font-weight: 600; color: var(--ink); }
.comments-area .comment-meta { font-size: 12px; color: var(--ink-soft); margin-bottom: 8px; }
.comment-respond { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line); }

/* ───────── Forms (general) ───────── */
.form-row label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 8px;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--sage); }

/* ───────── Author archive ───────── */
.author-hero {
  background: var(--beige);
  padding: clamp(48px, 8vw, 80px) 0;
  border-bottom: 1px solid var(--line);
}
.author-hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
}
.author-hero .avatar {
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sage-soft);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  color: var(--sage-deep);
}
.author-hero .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.author-hero h1 { margin: 6px 0 14px; }
.author-hero .lead { font-size: 17px; color: var(--ink-soft); line-height: 1.7; max-width: 600px; }

/* ───────── Step list (article body) ───────── */
.steps-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 0; }
.steps-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.steps-list li:first-child { border-top: 1px solid var(--line); }
.steps-list .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--sage-deep);
  line-height: 1;
}
.steps-list h3 { font-size: 22px; margin-bottom: 6px; }
.steps-list p { color: var(--ink-soft); margin: 0; line-height: 1.7; }

/* ───────── Responsive ───────── */
@media (max-width: 1080px) {
  .home-hero-grid { grid-template-columns: 1.5fr 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 880px) {
  .home-hero-grid { grid-template-columns: 1fr; }
  .grid-3, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .band-grid { grid-template-columns: 1fr; }
  .band-image { aspect-ratio: 16/10; }
  .search-shell { grid-template-columns: 1fr; }
  .res-card { grid-template-columns: 140px 1fr; }
  .author-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .author-hero .avatar { margin: 0 auto; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner { grid-template-columns: 1fr; padding: 20px; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; min-width: 120px; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; }
  .header-inner { grid-template-columns: auto 1fr auto; padding-top: 18px; }
  .header-utility.right .icon-link span { display: none; }
  .menu-toggle { display: block; }
  /* Mobile hoofdnavigatie — alles strikt onder elkaar via display:block */
  .nav {
    margin-top: 0;
    border-top: 0;
    border-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease-out;
  }
  .nav.is-open {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .nav-inner {
    padding: 0 !important;
    display: block !important;
    width: 100%;
  }
  .nav-list,
  .nav-list .sub-menu {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: initial !important;
    flex-wrap: initial !important;
    grid-template-columns: initial !important;
    columns: initial !important;
    column-count: initial !important;
    gap: 0 !important;
    background: var(--bg);
    border: 0;
    box-shadow: none;
    border-radius: 0;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: auto !important;
  }
  .nav-list { padding: 6px 0 !important; }
  .nav-list > li {
    display: block !important;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid var(--line);
    position: static !important;
  }
  .nav-list > li:last-child { border-bottom: 0; }
  .nav-list .sub-menu {
    background: var(--beige);
  }
  .nav-list .sub-menu::before { display: none !important; }
  .nav-list .sub-menu li {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(220, 210, 197, 0.5);
  }
  .nav-list .sub-menu li:last-child { border-bottom: 0; }
  .nav-list a {
    display: block !important;
    padding: 16px var(--gutter) !important;
    border: 0 !important;
    font-size: 13px;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-list .menu-item-has-children > a::after { display: none !important; }
  .nav-list .sub-menu a {
    padding: 13px 32px !important;
    font-size: 12.5px;
    color: var(--ink);
  }
  .nav-list .pill > a {
    margin: 12px var(--gutter) !important;
    display: inline-block !important;
    width: auto !important;
    border: 1px solid var(--terracotta) !important;
    border-radius: 999px;
    padding: 10px 18px !important;
  }
  .topbar-inner { font-size: 11px; }
  .topbar-tag { display: none; }

  .grid-3, .steps-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: 1fr; gap: 14px; }
  .res-card { grid-template-columns: 100px 1fr; gap: 14px; padding: 14px; }
  .res-card h3 { font-size: 18px; }
  .article-tools { flex-direction: column; align-items: flex-start; }
  .author-card-inner { grid-template-columns: 64px 1fr; gap: 16px; padding: 22px; }
  .author-card .avatar-lg { width: 64px; height: 64px; font-size: 22px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .article-meta-row { font-size: 12px; gap: 10px; }
  .prose > p:first-of-type::first-letter { font-size: 48px; }
  .share-row { gap: 10px; }
  .share-row .share-label { width: 100%; }
  .sort-bar { flex-direction: column; align-items: flex-start; }
  .sort-bar .sort-buttons { width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .cookie-modal-head, .cookie-cat-row, .cookie-modal-foot { padding-left: 22px; padding-right: 22px; }
}

@media (max-width: 480px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .header-utility.right .icon-link { padding: 6px; }
  .topbar-links { gap: 14px; }
  .topbar-tag { display: none; }
  .article-cover img { aspect-ratio: 4 / 3; }
}

/* ──────────────────────────────────────────────────────────────
   ABOUT TEMPLATE — 21wohnen
   ────────────────────────────────────────────────────────────── */
.about-hero {
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 6vw, 56px);
  position: relative;
  overflow: hidden;
}
.about-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.about-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 9vw, 96px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.about-hero h1 .it { font-style: italic; color: var(--terracotta); font-weight: 500; }
.about-hero-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--sage-deep);
  max-width: 460px;
}
.about-hero-lede::before {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: var(--terracotta);
  margin-bottom: 20px;
}
.about-hero .crumbs { margin-bottom: 18px; }
.about-hero-stamp {
  position: absolute;
  top: clamp(32px, 6vw, 80px);
  right: clamp(20px, 4vw, 56px);
  width: clamp(110px, 12vw, 140px);
  height: clamp(110px, 12vw, 140px);
  border: 1.5px solid var(--terracotta);
  border-radius: 50%;
  display: grid; place-items: center;
  transform: rotate(-8deg);
  color: var(--terracotta);
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  text-align: center;
  line-height: 1.25;
  padding: 14px;
}
@media (max-width: 720px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-stamp { display: none; }
}

/* Manifest */
.manifest {
  background: var(--beige);
  padding: clamp(56px, 8vw, 80px) 0;
}
.manifest .container { max-width: 980px; }
.manifesto-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.manifesto-label {
  position: sticky;
  top: 100px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.manifesto-text p { margin: 0 0 18px; }
.manifesto-text p:last-child { margin-bottom: 0; }
.manifesto-text em { color: var(--terracotta); font-style: italic; }
@media (max-width: 720px) {
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-label { position: static; }
}

/* Principles */
.principles-section { padding: clamp(56px, 8vw, 80px) 0; }
.principles-section .sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.principles-section .sec-head h2 .it { color: var(--terracotta); font-style: italic; }
.principles-section .principles-intro {
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 10px;
  max-width: 520px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
  margin-top: clamp(28px, 4vw, 40px);
}
.principle {
  background: #fff;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
}
.principle .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--terracotta);
  line-height: 1;
}
.principle h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 6px;
}
.principle p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 1080px) {
  .principles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .principles { grid-template-columns: 1fr; }
}

/* Author quote band */
.author-quote {
  background: var(--sage-deep);
  color: #EFEAE2;
  padding: clamp(64px, 9vw, 96px) 0;
}
.author-quote .container { max-width: 880px; }
.quote-card { margin: 0; text-align: center; }
.quote-card blockquote { margin: 0; padding: 0; border: 0; }
.quote-card blockquote p {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 38px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.005em;
  margin: 0;
}
.quote-card figcaption {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 40px);
  text-align: left;
}
.quote-avatar img,
.quote-avatar .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.25);
}
.quote-meta { display: flex; flex-direction: column; line-height: 1.3; }
.quote-meta strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}
.quote-meta span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Team — solo author card */
.team { padding: clamp(56px, 8vw, 80px) 0; }
.team .sec-head { margin-bottom: clamp(28px, 4vw, 40px); }
.team .sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 14px;
}
.team .sec-head h2 .it { color: var(--terracotta); font-style: italic; }
.team-intro { font-size: 15px; color: var(--ink-soft); margin-top: 10px; }
.team-solo { display: grid; place-items: center; }
.person-solo {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  text-decoration: none;
  color: inherit;
  max-width: 880px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.person-solo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.person-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--beige);
}
.person-photo img,
.person-photo .person-avatar {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.person-text .role {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}
.person-text h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: var(--ink);
  margin: 8px 0 12px;
}
.person-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.person-text .signature {
  font-family: var(--serif);
  font-style: italic;
  color: var(--sage-deep);
  font-size: 13px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.person-text .signature .pill {
  background: var(--beige);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
}
@media (max-width: 720px) {
  .person-solo { grid-template-columns: 1fr; }
  .person-photo { max-width: 280px; margin: 0 auto; }
}

/* About CTA */
.about-cta {
  padding: clamp(56px, 8vw, 80px) 0;
  background: var(--beige);
  border-top: 1px solid var(--line);
}
.about-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-cta h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.about-cta h2 .it { color: var(--terracotta); font-style: italic; }
.about-cta p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 28px;
}
.about-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────────────────────────
   CONTACT TEMPLATE — 21wohnen
   ────────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 64px);
  padding: clamp(32px, 6vw, 64px) 0;
}
.contact-aside h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 14px;
  font-weight: 700;
}
.contact-aside .aside-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--sage-deep);
  line-height: 1.45;
  margin: 0 0 28px;
}
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-list li:last-child { border-bottom: 1px solid var(--line); }
.info-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}
.info-value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--sage-deep);
}
.info-value:hover { color: var(--terracotta); }

.cont-reasons {
  margin-top: clamp(32px, 5vw, 48px);
  padding-top: clamp(28px, 4vw, 36px);
  border-top: 1px solid var(--line);
}
.cont-reasons-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin: 0 0 12px;
}
.cont-reasons-intro {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 20px;
}
.cont-reasons-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 14px;
}
.cont-reasons-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--beige);
  border-radius: var(--radius-sm);
}
.reason-label {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--sage-deep);
  font-weight: 500;
}
.reason-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.cont-reasons-foot { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin: 0; font-style: italic; }

.contact-form-wrap { width: 100%; }
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  position: relative;
}
.contact-form .field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.contact-form .field { display: flex; flex-direction: column; }
.contact-form .field.full { grid-column: 1 / -1; }
.contact-form label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-form label .req { color: var(--terracotta); }
.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: 0.18s;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  background: #fff;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form .field.has-error input,
.contact-form .field.has-error textarea {
  border-color: var(--terracotta);
  background: #FCEEE7;
}
.field-error {
  color: var(--terracotta-deep);
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}
.contact-form .check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  cursor: pointer;
}
.contact-form .check-row input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--terracotta);
  margin-top: 1px;
  flex-shrink: 0;
}
.contact-form .check-row a { color: var(--sage-deep); border-bottom: 1px solid var(--sage); }
.contact-form .form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-form .form-foot .note { font-size: 12px; color: var(--ink-soft); }
.form-notice {
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
}
.form-notice strong { display: block; margin-bottom: 4px; }
.form-notice p { margin: 0; }
.form-notice--success {
  background: var(--sage-soft);
  color: var(--sage-deep);
  border-left: 3px solid var(--sage-deep);
}
.form-notice--error {
  background: #FCEEE7;
  color: var(--terracotta-deep);
  border-left: 3px solid var(--terracotta);
}

@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; padding: clamp(24px, 5vw, 40px) 0; }
  .contact-form .field-grid { grid-template-columns: 1fr; }
  .contact-form .form-foot { flex-direction: column-reverse; align-items: stretch; }
  .contact-form .form-foot .btn { width: 100%; justify-content: center; }
}

/* ──────────────────────────────────────────────────────────────
   ARTICLE TABLE OF CONTENTS — 21wohnen
   Editorial style: white card, dashed dividers, mono numerals.
   ────────────────────────────────────────────────────────────── */
.article-toc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: clamp(28px, 4vw, 40px) 0;
  padding: 0;
  overflow: hidden;
}

.article-toc .toc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  padding: 16px 22px;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}
.article-toc:not(.is-collapsed) .toc-toggle {
  border-bottom: 1px solid var(--line);
}

.article-toc .toc-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.article-toc .toc-chevron {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: transform .25s cubic-bezier(.25,.6,.3,1), background .15s;
}
.article-toc .toc-toggle:hover .toc-chevron { background: var(--beige); }
.article-toc.is-collapsed .toc-chevron { transform: rotate(180deg); }

.article-toc .toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.article-toc.is-collapsed .toc-list { display: none; }

.article-toc .toc-item {
  padding: 22px 26px;
  border-bottom: 1px dashed var(--line);
}
.article-toc .toc-item:last-child { border-bottom: 0; }

.article-toc .toc-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  align-items: baseline;
}
.article-toc .toc-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  line-height: 1.55;
  user-select: none;
}
.article-toc .toc-link {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;
  transition: color .15s ease;
  display: inline;
}
.article-toc .toc-link:hover,
.article-toc .toc-link.is-active {
  color: var(--sage-deep);
  text-decoration: none;
}

.article-toc .toc-sublist {
  list-style: none;
  margin: 14px 0 0 50px;
  padding: 0 0 0 16px;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 12px;
}
.article-toc .toc-subitem { padding: 0; }
.article-toc .toc-sublink {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 400;
  text-decoration: none;
  line-height: 1.5;
  transition: color .15s ease;
  display: inline-block;
}
.article-toc .toc-sublink:hover,
.article-toc .toc-sublink.is-active {
  color: var(--ink);
  text-decoration: none;
}

/* Anchor-targets niet onder sticky/topbar verstoppen bij click. */
.prose h2[id], .prose h3[id] {
  scroll-margin-top: 96px;
}

@media (max-width: 720px) {
  .article-toc { margin: 24px 0 28px; }
  .article-toc .toc-toggle { padding: 14px 18px; }
  .article-toc .toc-item { padding: 18px 18px; }
  .article-toc .toc-row { grid-template-columns: 28px 1fr; gap: 14px; }
  .article-toc .toc-link { font-size: 15px; }
  .article-toc .toc-sublist { margin-left: 42px; padding-left: 12px; gap: 10px; }
  .article-toc .toc-sublink { font-size: 13.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .article-toc .toc-link,
  .article-toc .toc-sublink,
  .article-toc .toc-chevron {
    transition: none !important;
    animation: none !important;
  }
}

/* ───────── Print ───────── */
@media print {
  .topbar, .site-header, .site-footer, .cookie-banner, .cookie-modal,
  .share-row, .feedback, .related, .article-tools, .menu-toggle,
  .header-search, .art-audio { display: none !important; }
  body { background: #fff; color: #000; }
  .prose { max-width: 100%; }
  .article-toc { background: transparent; border: 1px solid #ccc; }
  .article-toc .toc-link, .article-toc .toc-sublink { color: #000; }
}
