@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ── Design tokens ── */
:root {
  --nacht:       #431407;  /* diepe warme bruinrood */
  --nacht-2:     #7C2D12;  /* donker oranje-bruin */
  --teal:        #F97316;  /* levendig oranje — primaire actie */
  --teal-dark:   #EA580C;  /* donkerder oranje */
  --teal-bg:     #FFF7ED;  /* licht oranje achtergrond */
  --amber:       #FBBF24;  /* goudgeel accent */
  --amber-bg:    #FFFBEB;  /* licht geel */
  --mint:        #FDDCAB;  /* warm perzik — tekst op donker */
  --grijs:       #78716C;  /* warme steen — secundaire tekst */
  --grijs-licht: #E8DDD6;  /* warme lichte rand */
  --licht:       #FFFBF0;  /* warme crème paginaachtergrond */
  --wit:         #FFFFFF;

  --font-display: 'DM Serif Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm:  0 1px 4px rgba(67,20,7,.08);
  --shadow-md:  0 4px 16px rgba(67,20,7,.12);
  --shadow-lg:  0 8px 32px rgba(67,20,7,.16);

  --nav-h: 68px;
  --max-w: 1180px;
  --gap:   clamp(16px, 3vw, 32px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--licht);
  color: var(--nacht);
  line-height: 1.6;
  font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--nacht-2); max-width: 68ch; }
.mono { font-family: var(--font-mono); }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gap); }
.section    { padding-block: clamp(48px, 8vw, 96px); }
.section--dark { background: var(--nacht); color: var(--wit); }
.section--dark p { color: var(--mint); }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--wit);
  border-bottom: 1px solid var(--grijs-licht);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--nacht);
}
.nav__logo-icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav__links {
  display: flex; gap: 32px;
}
.nav__links a {
  font-size: .9rem; font-weight: 500; color: var(--grijs);
  transition: color .2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--nacht); }
.nav__cta {
  background: var(--teal); color: var(--nacht);
  padding: 10px 22px; border-radius: 100px;
  font-weight: 600; font-size: .9rem;
  transition: background .2s, transform .15s;
}
.nav__cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--nacht); border-radius: 2px; transition: .3s; }

/* Mobile nav overlay */
.nav__overlay {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--wit); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.nav__overlay.open { display: flex; }
.nav__overlay a { font-size: 1.8rem; font-family: var(--font-display); color: var(--nacht); }
.nav__overlay .nav__cta { font-size: 1rem; }
.nav__overlay-close {
  position: absolute; top: 20px; right: var(--gap);
  font-size: 2rem; color: var(--grijs); cursor: pointer;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 100px;
  font-weight: 600; font-size: .95rem;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary   { background: var(--teal); color: var(--nacht); }
.btn--outline   { border: 2px solid var(--wit); color: var(--wit); }
.btn--outline:hover { background: var(--wit); color: var(--nacht); }
.btn--amber     { background: var(--amber); color: var(--nacht); }
.btn--ghost     { background: var(--grijs-licht); color: var(--nacht); }
.btn--ghost:hover { background: var(--grijs); color: var(--wit); }

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, #431407 0%, #92400E 60%, #B45309 100%);
  color: var(--wit); overflow: hidden;
  padding-top: clamp(56px, 10vw, 96px);
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.hero__tag {
  display: inline-block; background: var(--teal); color: var(--nacht);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero__title { color: var(--wit); margin-bottom: 20px; }
.hero__title span { color: var(--teal); }
.hero__lead { color: var(--mint); font-size: 1.1rem; margin-bottom: 36px; max-width: 50ch; }
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__visual { position: relative; }
.hero__svg { width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; }
.hero__strip {
  background: var(--teal);
  padding: 24px 0; margin-top: 48px;
}
.hero__strip-inner {
  display: flex; gap: clamp(24px, 5vw, 64px); justify-content: center; flex-wrap: wrap;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  font-family: var(--font-mono); font-size: 2rem; font-weight: 500; color: var(--nacht);
}
.hero__stat-label { font-size: .82rem; color: var(--nacht-2); font-weight: 500; margin-top: 2px; }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.section-header__tag {
  display: inline-block; color: var(--teal); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { margin-inline: auto; color: var(--grijs); }

/* ── Card grid ── */
.card-grid { display: grid; gap: 24px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── News card ── */
.news-card {
  background: var(--wit); border-radius: var(--radius-md);
  border: 1px solid var(--grijs-licht); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card__thumb {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: var(--grijs-licht);
}
.news-card__thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.news-card:hover .news-card__thumb img { transform: scale(1.04); }
.news-card__body { padding: 20px; }
.news-card__meta {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.tag {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.tag--beleid   { background: #EAF8F3; color: #2ABFAE; }
.tag--onderzoek{ background: #FEF6E8; color: #D4890A; }
.tag--praktijk { background: #EFF6FF; color: #3B82F6; }
.tag--subsidie { background: #FEF2F2; color: #EF4444; }
.news-card__date { font-size: .8rem; color: var(--grijs); }
.news-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.news-card__excerpt { font-size: .88rem; color: var(--grijs); line-height: 1.55; }
.news-card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: .85rem; font-weight: 600; color: var(--teal-dark); }
.news-card__link:hover { gap: 10px; }

/* ── Measure card ── */
.measure-card {
  background: var(--wit); border-radius: var(--radius-md);
  border: 1px solid var(--grijs-licht); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.measure-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.measure-card__top {
  height: 6px;
}
.measure-card__top--groen  { background: var(--teal); }
.measure-card__top--water  { background: #3B82F6; }
.measure-card__top--gebouw { background: var(--amber); }
.measure-card__body { padding: 20px; flex: 1; }
.measure-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.measure-card__icon svg { width: 22px; height: 22px; }
.measure-card__icon--groen  { background: var(--teal-bg);  color: var(--teal-dark); }
.measure-card__icon--water  { background: #EFF6FF;        color: #3B82F6; }
.measure-card__icon--gebouw { background: var(--amber-bg); color: #D97706; }
.measure-card__name { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.measure-card__desc { font-size: .85rem; color: var(--grijs); line-height: 1.5; }
.measure-card__price {
  font-family: var(--font-mono); font-size: .8rem; color: var(--nacht-2);
  background: var(--licht); border-radius: var(--radius-sm);
  padding: 3px 8px; display: inline-block; margin-top: 10px;
}
.measure-card__impact { margin-top: 12px; }
.measure-card__impact-label { font-size: .75rem; color: var(--grijs); margin-bottom: 4px; }
.measure-card__impact-bar {
  height: 5px; background: var(--grijs-licht); border-radius: 100px; overflow: hidden;
}
.measure-card__impact-fill {
  height: 100%; background: var(--teal); border-radius: 100px;
}
.measure-card__footer {
  padding: 14px 20px; border-top: 1px solid var(--grijs-licht);
  display: flex; gap: 8px;
}
.measure-card__footer .btn { padding: 8px 16px; font-size: .82rem; flex: 1; justify-content: center; }

/* ── Moeilijkheidsgraad indicator ── */
.difficulty {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--grijs-licht);
}
.difficulty__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--grijs);
  margin-bottom: 7px;
}
.difficulty__dots {
  display: flex;
  gap: 5px;
  margin-bottom: 6px;
}
.difficulty__dot {
  width: 28px; height: 8px;
  border-radius: 4px;
  background: var(--grijs-licht);
}
/* Easy (1-2) = groen */
.difficulty__dots--easy  .difficulty__dot.filled { background: #22c55e; }
/* Medium (3) = oranje */
.difficulty__dots--medium .difficulty__dot.filled { background: #F97316; }
/* Hard (4) = rood-oranje */
.difficulty__dots--hard  .difficulty__dot.filled { background: #ef4444; }
/* Very hard (5) = donkerrood */
.difficulty__dots--veryhard .difficulty__dot.filled { background: #b91c1c; }
.difficulty__desc {
  font-size: .75rem;
  color: var(--grijs);
  line-height: 1.4;
}

/* ── Leverancierlinks in info-panel ── */
.info-row__suppliers { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.supplier-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .88rem; font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  padding: 6px 12px;
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-sm);
  background: var(--teal-bg);
  transition: background .15s, color .15s;
}
.supplier-link:hover {
  background: var(--teal);
  color: var(--wit);
}

/* ── Filterbalk ── */
.filterbalk {
  background: var(--wit); border: 1px solid var(--grijs-licht);
  border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow-sm); margin-bottom: 40px;
}
.filterbalk__row { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
.filterbalk__group { display: flex; flex-direction: column; gap: 8px; }
.filterbalk__label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--grijs); }
.filterbalk__pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  padding: 6px 14px; border-radius: 100px; font-size: .82rem; font-weight: 500;
  border: 1.5px solid var(--grijs-licht); background: var(--wit); color: var(--nacht-2);
  cursor: pointer; transition: all .15s;
}
.pill:hover { border-color: var(--teal); color: var(--teal-dark); }
.pill.active { background: var(--teal); border-color: var(--teal); color: var(--nacht); }
.filterbalk__count { margin-left: auto; align-self: center; font-size: .88rem; color: var(--grijs); white-space: nowrap; }
.filterbalk__count strong { color: var(--nacht); }

/* ── Hotspot city section ── */
.city-section { background: var(--nacht); padding-block: clamp(40px, 7vw, 80px); }
.city-section h2 { color: var(--wit); margin-bottom: 12px; }
.city-section > .container > p { color: var(--mint); margin-bottom: 32px; }
.city-wrap { position: relative; overflow-x: auto; }
.city-svg-wrap {
  position: relative; min-width: 800px;
  border-radius: var(--radius-lg); overflow: hidden;
}

/* Hotspot markers */
.hotspot {
  position: absolute; cursor: pointer;
  width: 36px; height: 36px;
  transform: translate(-50%, -50%);
}
.hotspot__ring {
  position: absolute; inset: 0;
  border-radius: 50%; background: rgba(249,115,22,.25);
  animation: pulse 2s ease-out infinite;
}
.hotspot__ring:nth-child(2) { animation-delay: .6s; }
.hotspot__dot {
  position: absolute; inset: 8px;
  background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--nacht); font-size: .7rem; font-weight: 800;
  box-shadow: 0 0 0 2px var(--wit);
  transition: transform .2s;
}
.hotspot:hover .hotspot__dot { transform: scale(1.2); }

@keyframes pulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Info panel */
.info-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw); background: var(--wit);
  box-shadow: var(--shadow-lg); z-index: 200;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
.info-panel.open { transform: translateX(0); }
.info-panel__img-wrap {
  width: 100%; height: 200px; overflow: hidden; flex-shrink: 0;
  display: none; background: var(--teal-bg);
}
.info-panel__img-wrap.visible { display: block; }
.info-panel__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.info-panel__header {
  background: var(--nacht); padding: 24px 24px 20px;
  position: sticky; top: 0; z-index: 1;
}
.info-panel__close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: var(--wit);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; transition: background .2s;
}
.info-panel__close:hover { background: rgba(255,255,255,.25); }
.info-panel__cat {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 8px;
}
.info-panel__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--wit); margin-bottom: 6px; }
.info-panel__subtitle { font-size: .88rem; color: var(--mint); line-height: 1.5; }
.info-panel__body { padding: 24px; flex: 1; }
.info-row { padding: 14px 0; border-bottom: 1px solid var(--grijs-licht); }
.info-row:last-child { border-bottom: none; }
.info-row__label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--grijs); margin-bottom: 6px; }
.info-row__value { font-size: .95rem; color: var(--nacht); line-height: 1.5; }
.info-row__value .mono { font-size: .9rem; background: var(--licht); padding: 2px 8px; border-radius: var(--radius-sm); }
.info-row__suppliers { display: flex; flex-direction: column; gap: 4px; }
.info-row__suppliers a { color: var(--teal-dark); font-size: .9rem; }
.info-row__suppliers a:hover { text-decoration: underline; }
.info-panel__footer { padding: 16px 24px; border-top: 1px solid var(--grijs-licht); display: flex; gap: 10px; }
.info-panel__footer .btn { flex: 1; justify-content: center; }
.info-panel__backdrop {
  display: none; position: fixed; inset: 0; background: rgba(14,42,53,.4);
  z-index: 199;
}
.info-panel__backdrop.open { display: block; }

/* ── Stats strip ── */
.stats-strip {
  background: var(--nacht-2);
  padding: 32px 0;
}
.stats-strip__inner { display: flex; gap: clamp(24px, 6vw, 64px); flex-wrap: wrap; justify-content: center; }
.stat-item { text-align: center; }
.stat-item__num {
  font-family: var(--font-mono); font-size: 2.2rem; font-weight: 500; color: var(--amber);
}
.stat-item__label { font-size: .82rem; color: var(--mint); margin-top: 4px; }

/* ── Timeline ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px;
  width: 2px; background: var(--grijs-licht);
}
.timeline__item { position: relative; margin-bottom: 32px; }
.timeline__dot {
  position: absolute; left: -28px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--teal); border: 3px solid var(--wit);
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline__year { font-family: var(--font-mono); font-size: .85rem; color: var(--teal-dark); font-weight: 500; }
.timeline__text { font-size: .95rem; margin-top: 2px; }

/* ── Infographic cards ── */
.infographic-card {
  background: var(--wit); border-radius: var(--radius-md);
  border: 1px solid var(--grijs-licht); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.infographic-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 20px; }
.thermo-list { display: flex; flex-direction: column; gap: 12px; }
.thermo-item { display: flex; align-items: center; gap: 12px; }
.thermo-item__city { font-size: .85rem; width: 80px; color: var(--nacht-2); }
.thermo-item__bar {
  flex: 1; height: 10px; background: var(--grijs-licht);
  border-radius: 100px; overflow: hidden;
}
.thermo-item__fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transition: width 1s ease;
}
.thermo-item__val { font-family: var(--font-mono); font-size: .82rem; color: var(--nacht); width: 46px; text-align: right; }

/* Donut chart */
.donut-wrap { display: flex; gap: 24px; align-items: center; }
.donut-list { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.donut-list__item { display: flex; align-items: center; gap: 8px; font-size: .82rem; }
.donut-list__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ── Newsletter ── */
.newsletter {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  border-radius: var(--radius-xl); padding: clamp(32px, 5vw, 64px);
  display: flex; gap: 40px; align-items: center; flex-wrap: wrap;
}
.newsletter__text h2 { color: var(--nacht); margin-bottom: 8px; }
.newsletter__text p  { color: var(--nacht-2); max-width: 42ch; }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; min-width: 260px; }
.newsletter__input {
  flex: 1; min-width: 200px; padding: 13px 20px;
  border-radius: 100px; border: none; font-family: inherit; font-size: .95rem;
  background: rgba(255,255,255,.9);
}
.newsletter__input:focus { outline: 3px solid var(--nacht); }

/* ── Footer ── */
.footer { background: var(--nacht); color: var(--mint); padding: 56px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand p { font-size: .88rem; margin-top: 12px; max-width: 32ch; }
.footer__col h4 { font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--grijs); margin-bottom: 16px; }
.footer__col a { display: block; font-size: .88rem; color: var(--mint); margin-bottom: 8px; opacity: .8; transition: opacity .2s; }
.footer__col a:hover { opacity: 1; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: var(--grijs); }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, #431407 0%, #92400E 60%, #B45309 100%);
  padding: clamp(48px, 8vw, 96px) 0;
  text-align: center;
}
.page-hero h1 { color: var(--wit); margin-bottom: 16px; }
.page-hero p  { color: var(--mint); font-size: 1.1rem; margin-inline: auto; }
.page-hero__tag { display: inline-block; background: var(--teal); color: var(--nacht); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }

/* ── Accordion (mobile hotspots) ── */
.accordion { border: 1px solid var(--grijs-licht); border-radius: var(--radius-md); overflow: hidden; }
.accordion__item + .accordion__item { border-top: 1px solid var(--grijs-licht); }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--wit); font-weight: 600; font-size: .95rem;
  cursor: pointer; text-align: left;
}
.accordion__trigger::after { content: '+'; font-size: 1.3rem; color: var(--teal); }
.accordion__trigger.open::after { content: '−'; }
.accordion__body { display: none; padding: 0 20px 20px; font-size: .9rem; color: var(--nacht-2); line-height: 1.6; }
.accordion__body.open { display: block; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .filterbalk__row { flex-direction: column; }
}

@media (max-width: 600px) {
  .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; }
  .stats-strip__inner { flex-direction: column; gap: 24px; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .donut-wrap { flex-direction: column; }
}
