/* ============================================================
   Koninklijke Turnkring Excelsior Hasselt — design system
   ============================================================ */

:root {
  --paper: #f7f5ef;
  --card: #ffffff;
  --ink: #13201a;
  --ink-soft: #33463c;
  --muted: #5c6b62;
  --line: #e6e2d6;
  --pine: #0d3a29;
  --pine-2: #135438;
  --pine-deep: #092b1e;
  --green: #1f8a3b;
  --green-dark: #176e2e;
  --lime: #a3e635;
  --lime-soft: #e4f8c8;
  --gold: #d9a521;
  --gold-soft: #f7ecce;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(19, 32, 26, 0.07);
  --shadow-lg: 0 24px 60px rgba(9, 43, 30, 0.16);
  --font-display: "Archivo", "Avenir Next", system-ui, sans-serif;
  --font-body: "Inter", "Helvetica Neue", system-ui, sans-serif;
  --wrap: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.3rem; font-weight: 800; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.kicker::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--green);
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.muted { color: var(--muted); }

.section {
  padding: 84px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .kicker { justify-content: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

.alt { background: #efece2; }

/* ---------- buttons & chips ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
}

.btn:hover { background: var(--green-dark); transform: translateY(-1px); text-decoration: none; }

.btn.lime { background: var(--lime); color: var(--pine-deep); }
.btn.lime:hover { background: #b5f052; }

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn.ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.btn.outline {
  background: transparent;
  border-color: var(--pine);
  color: var(--pine);
}
.btn.outline:hover { background: var(--pine); color: #fff; }

.btn.sm { padding: 10px 20px; font-size: 0.85rem; }

.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--lime-soft);
  color: var(--pine);
  white-space: nowrap;
}

.chip.gold { background: var(--gold-soft); color: #7a5c0d; }
.chip.outline { background: transparent; border: 1.5px solid var(--line); color: var(--muted); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }

.brand-mark { width: 44px; height: 44px; flex: none; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-text small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav > a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.site-nav > a:hover { color: var(--pine); }

.site-nav > a.active {
  color: var(--pine);
  border-bottom-color: var(--green);
}

.site-nav > a.nav-cta { border-bottom: none; color: #fff; }
.site-nav > a.nav-cta:hover { color: #fff; }
.site-nav > a.nav-cta.active { color: #fff; border-bottom: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--pine);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero (home) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(163, 230, 53, 0.16), transparent 60%),
    linear-gradient(135deg, var(--pine-deep) 0%, var(--pine) 55%, var(--pine-2) 100%);
  color: #fff;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 48px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 104px;
}

.hero h1 { color: #fff; margin-bottom: 22px; }

.hero h1 .accent { color: var(--lime); }

.hero .lead { color: rgba(255, 255, 255, 0.82); margin-bottom: 32px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-badges .chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #eaf5e4;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-art { position: relative; display: flex; justify-content: center; }

.hero-art svg { width: min(360px, 80%); height: auto; filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.35)); }

.hero-ribbon {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.notice-bar {
  position: relative;
  z-index: 2;
  background: var(--lime);
  color: var(--pine-deep);
}

.notice-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  padding-top: 13px;
  padding-bottom: 13px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.notice-bar a {
  color: var(--pine-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

/* ---------- page hero (subpages) ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 360px at 90% -20%, rgba(163, 230, 53, 0.14), transparent 60%),
    linear-gradient(130deg, var(--pine-deep) 0%, var(--pine) 60%, var(--pine-2) 100%);
  color: #fff;
  padding: 72px 0 64px;
}

.page-hero .kicker { color: var(--lime); }
.page-hero .kicker::before { background: var(--lime); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.page-hero .lead { color: rgba(255, 255, 255, 0.82); }

/* ---------- stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
  box-shadow: var(--shadow);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--pine);
  line-height: 1;
  margin-bottom: 6px;
}

.stat span { font-size: 0.9rem; color: var(--muted); font-weight: 600; }

/* ---------- cards & grids ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.group-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  color: var(--ink);
}

.group-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.group-card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--lime-soft);
  color: var(--pine);
  flex: none;
}

.group-card h3 { margin: 0; font-size: 1.12rem; }

.group-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }

.group-card .meta { margin-top: auto; padding-top: 6px; }

.group-card .more {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--green-dark);
}

/* ---------- steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 26px;
  box-shadow: var(--shadow);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--pine);
  background: var(--lime);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.step h3 { font-size: 1.15rem; }
.step p { font-size: 0.95rem; color: var(--muted); }

/* ---------- events ---------- */

.event {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.event .date {
  flex: none;
  width: 64px;
  text-align: center;
  background: var(--pine);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 6px 8px;
  font-family: var(--font-display);
}

.event .date b { display: block; font-size: 1.45rem; font-weight: 900; line-height: 1; }
.event .date span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime); }

.event h3 { font-size: 1.08rem; margin-bottom: 4px; }
.event p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ---------- highlight band (125 jaar) ---------- */

.band {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(120deg, var(--pine-deep), var(--pine-2));
  color: #fff;
  padding: 52px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.band h2 { color: #fff; }
.band p { color: rgba(255, 255, 255, 0.82); }

.band .links { display: flex; flex-direction: column; gap: 12px; }

.band .links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.15s ease;
}

.band .links a:hover { background: rgba(255, 255, 255, 0.16); text-decoration: none; }

.band .links .ext { margin-left: auto; opacity: 0.6; flex: none; }

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(700px 320px at 15% 120%, rgba(163, 230, 53, 0.18), transparent 60%),
    linear-gradient(120deg, var(--pine-deep), var(--pine));
  color: #fff;
  text-align: center;
  padding: 88px 0;
}

.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
.cta-band p { color: rgba(255, 255, 255, 0.8); max-width: 56ch; margin: 0 auto 30px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- group detail (groepen.html) ---------- */

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.anchor-nav a {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}

.anchor-nav a:hover { background: rgba(255, 255, 255, 0.14); }

.group-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 44px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.group-detail:last-of-type { border-bottom: none; }

.group-detail .icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--lime-soft);
  color: var(--pine);
  margin-bottom: 18px;
}

.group-detail .tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }

.schedule-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow);
}

.schedule-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.schedule-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px dashed var(--line);
  font-size: 0.95rem;
}

.schedule-row:first-of-type { border-top: none; }

.schedule-row b { font-family: var(--font-display); font-weight: 800; }
.schedule-row .time { color: var(--ink-soft); font-variant-numeric: tabular-nums; white-space: nowrap; }

.loc-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.loc-kiewit { background: #e1f3df; color: #1e6b2a; }
.loc-rings { background: #f7ecce; color: #7a5c0d; }
.loc-runkst { background: #dcebe4; color: #0d3a29; }
.loc-spiegel { background: #e3e9f7; color: #2c4a8a; }

/* ---------- lestijden (rooster) ---------- */

.day-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.day-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.day-card header {
  background: var(--pine);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 13px 22px;
}

.day-card ul { list-style: none; margin: 0; padding: 8px 22px 16px; }

.day-card li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.93rem;
}

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

.day-card .time {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--green-dark);
  font-variant-numeric: tabular-nums;
}

.day-card .what { font-weight: 600; }

.legend { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }

/* ---------- locations ---------- */

.loc-card { display: flex; flex-direction: column; gap: 6px; }

.loc-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; margin-bottom: 2px; }

.loc-card .dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }

.loc-card address { font-style: normal; color: var(--muted); font-size: 0.95rem; }

.loc-card a { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; margin-top: 8px; }

/* ---------- pricing ---------- */

.price-card { text-align: left; position: relative; }

.price-card .price {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--pine);
  line-height: 1;
}

.price-card .price small { font-size: 1rem; font-weight: 700; color: var(--muted); }

.price-card ul { list-style: none; padding: 0; margin: 18px 0 0; }

.price-card li {
  padding: 9px 0 9px 30px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-top: 1px dashed var(--line);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 14px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lime);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.5 12.2 2.8 8.5l1.4-1.4 2.3 2.3 5.3-5.3 1.4 1.4z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.5 12.2 2.8 8.5l1.4-1.4 2.3 2.3 5.3-5.3 1.4 1.4z"/></svg>') center / contain no-repeat;
  background-color: var(--green);
}

.notice {
  border-left: 4px solid var(--gold);
  background: var(--gold-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  font-size: 0.95rem;
}

.notice b { font-family: var(--font-display); }

.iban {
  display: inline-block;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--card);
  border: 1.5px dashed var(--green);
  color: var(--pine);
  border-radius: 10px;
  padding: 10px 18px;
}

/* ---------- timeline (historie) ---------- */

.timeline { position: relative; max-width: 780px; margin: 0 auto; padding-left: 34px; }

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(var(--green), var(--pine));
}

.tl-era {
  position: relative;
  margin: 52px 0 26px;
}

.tl-era:first-child { margin-top: 0; }

.tl-era::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 7px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--lime);
  border: 3.5px solid var(--pine);
}

.tl-era h2 { font-size: 1.5rem; margin-bottom: 4px; }
.tl-era .era-range {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.tl-item {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}

.tl-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 24px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
}

.tl-item .year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--pine);
  letter-spacing: 0.02em;
}

.tl-item p { font-size: 0.95rem; color: var(--ink-soft); margin: 4px 0 0; }

/* ---------- bestuur ---------- */

.person {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
}

.person .avatar {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pine);
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.person b { display: block; font-family: var(--font-display); font-size: 1rem; line-height: 1.3; }
.person span { font-size: 0.85rem; color: var(--muted); }

/* ---------- contact ---------- */

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card .label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--pine-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer a:hover { color: var(--lime); }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand svg { width: 42px; height: 42px; }
.footer-brand b { font-family: var(--font-display); font-size: 1.15rem; font-weight: 900; color: #fff; display: block; line-height: 1.2; }
.footer-brand small { font-size: 0.68rem; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }

/* ---------- reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .grid-4, .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .day-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; padding-top: 72px; padding-bottom: 84px; }
  .hero-art { display: none; }
  .band { grid-template-columns: 1fr; padding: 40px 32px; }
  .group-detail { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .day-grid, .steps { grid-template-columns: 1fr; }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 10px 24px 20px;
    display: none;
  }

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

  .site-nav > a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav > a.active { border-bottom-color: var(--line); color: var(--green-dark); }
  .site-nav .nav-cta { margin-top: 16px; justify-content: center; border-bottom: none; }

  .nav-toggle { display: flex; }
}

@media (max-width: 520px) {
  .stats, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat b { font-size: 1.7rem; }
  body { font-size: 15.5px; }
}

/* ---------- foto's & partners ---------- */

.brand-mark-img { width: 46px; height: 44px; object-fit: contain; flex: none; }
.footer-brand img { width: 44px; height: 42px; object-fit: contain; }

.photo-band { padding-top: 56px; }

.photo-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--pine-deep);
}

.photo-frame img { display: block; width: 100%; min-height: 130px; object-fit: cover; }

.photo-frame .tag-overlay {
  position: absolute;
  left: 16px;
  bottom: 14px;
  background: rgba(9, 43, 30, 0.72);
  color: #eaf5e4;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}

.partner {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  height: 92px;
  display: grid;
  place-items: center;
}

.partner img {
  max-height: 58px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.partner:hover img { filter: none; opacity: 1; }

.bestuur-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 36px;
}

.bestuur-photo img { display: block; width: 100%; }

@media (max-width: 1020px) {
  .partners { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .partners { grid-template-columns: repeat(2, 1fr); }
  .photo-frame { border-radius: 14px; }
}
