:root {
  --ink: #1b1233;
  --blauw: #2b4c8c;
  --blauw-deep: #16294f;
  --rood: #e3402c;
  --rood-deep: #ad2a1b;
  --geel: #f5b324;
  --papier: #fbf1de;
  --wit: #ffffff;
  --radius: 18px;
  --maxw: 1180px;
  font-size: 16px;

  --kwas-ink: #1B1233;
  --kwas-blauw: #2B4C8C;
  --kwas-rood: #E3402C;
  --kwas-geel: #F5B324;
  --kwas-papier: #FBF1DE;
  --bs-primary: #E3402C;
  --bs-primary-rgb: 227, 64, 44;
  --bs-secondary: #2B4C8C;
  --bs-secondary-rgb: 43, 76, 140;
  --bs-warning: #F5B324;
  --bs-warning-rgb: 245, 179, 36;
  --bs-dark: #1B1233;
  --bs-dark-rgb: 27, 18, 51;
  --bs-body-bg: #FBF1DE;
  --bs-body-color: #1B1233;
  --bs-body-font-family: 'Karla', system-ui, sans-serif;
  --bs-border-color: #1B1233;
  --bs-border-width: 3px;
  --bs-border-radius: 1rem;
  --bs-link-color-rgb: 43, 76, 140;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--ink);
  font-family: "Karla", system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: 'Bungee', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.12;
}

.nav-link {
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Karla", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Karla", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--geel);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--geel);
  color: var(--ink);
  box-shadow: 0 6px 0 var(--rood-deep);
}

.btn-primary:hover {
  box-shadow: 0 8px 0 var(--rood-deep);
}

.btn-outline {
  background: transparent;
  color: var(--wit);
  border-color: var(--wit);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ---------- Collar / scallop trim (Raad van Elf motif) ---------- */
.scallop-trim {
  display: flex;
  width: fit-content;
  margin: 14px auto 0;
}

.scallop-trim span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--wit);
  border: 2.5px solid var(--ink);
  margin-left: -4px;
}

.scallop-trim span:first-child {
  margin-left: 0;
}

.scallop-trim.on-dark span {
  background: var(--geel);
  border-color: var(--wit);
}

/* ---------- Navbar ---------- */
.navbar {
  --bs-navbar-padding-y: 0;
  --bs-navbar-color: var(--kwas-ink);
  --bs-navbar-hover-color: var(--kwas-ink);
  --bs-navbar-active-color: var(--kwas-ink);
  --bs-navbar-brand-color: var(--kwas-ink);
  --bs-navbar-brand-hover-color: var(--kwas-ink);
  --bs-navbar-nav-link-padding-x: 2px;
  --bs-navbar-toggler-border-color: var(--kwas-ink);
  --bs-navbar-toggler-border-radius: 10px;
  --bs-navbar-toggler-focus-width: .2rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B1233' stroke-linecap='round' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background: var(--papier);
}

.navbar-brand {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand-sub {
  display: block;
  font-family: 'Karla', sans-serif;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--kwas-blauw);
}

.navbar-toggler {
  border-width: 3px;
  padding: .35rem .5rem;
}

.navbar-nav .nav-link {
  font-weight: 700;
  font-size: .93rem;
}

.dropdown-toggle::after {
  border: 0;
  width: .45rem;
  height: .45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .15s ease;
  margin-left: .45rem;
  vertical-align: .18rem;
}

.nav-item.show>.dropdown-toggle::after {
  transform: rotate(225deg);
}

.dropdown-menu {
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: var(--kwas-ink);
  --bs-dropdown-border-width: 3px;
  --bs-dropdown-border-radius: 14px;
  --bs-dropdown-padding-x: 10px;
  --bs-dropdown-padding-y: 10px;
  --bs-dropdown-min-width: 230px;
  --bs-dropdown-spacer: 1rem;
  --bs-dropdown-link-color: var(--kwas-ink);
  --bs-dropdown-link-hover-color: var(--kwas-rood);
  --bs-dropdown-link-hover-bg: var(--kwas-papier);
  --bs-dropdown-link-active-color: var(--kwas-rood);
  --bs-dropdown-link-active-bg: var(--kwas-papier);
  --bs-dropdown-item-padding-x: 14px;
  --bs-dropdown-item-padding-y: 10px;
}

.dropdown-item {
  font-weight: 600;
  font-size: .9rem;
  border-radius: 8px;
}

@media(min-width:992px) {
  .navbar-nav {
    gap: 20px;
  }

  .navbar-nav .nav-link {
    padding-top: 6px;
    padding-bottom: 6px;
    border-bottom: 3px solid transparent;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link.show {
    border-bottom-color: var(--kwas-geel);
  }

  .navbar-nav .dropdown-menu {
    box-shadow: 6px 6px 0 var(--kwas-blauw);
  }

  .navbar-nav .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 26px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 3px solid var(--kwas-ink);
    border-top: 3px solid var(--kwas-ink);
    transform: rotate(45deg);
  }
}

@media(max-width:991.98px) {
  .navbar-collapse {
    border-top: 3px solid var(--kwas-ink);
    padding: 6px 0 14px;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #E4DAC4;
  }

  .navbar-nav .dropdown-menu {
    border: 0;
    box-shadow: none;
    padding: 0 0 0 14px;
    --bs-dropdown-min-width: 0;
  }

  .navbar-nav .dropdown-item {
    padding-left: 0;
  }
}

.webshop-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--kwas-ink);
  color: var(--wit);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
}

.bg-body {
  background-color: var(--kwas-papier) !important;
}


/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 75% 20%,
      var(--blauw) 0%,
      var(--blauw-deep) 70%);
  padding: 76px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: var(--wit);
}

.hero h1 {
  color: var(--wit);
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-top: 18px;
}

.hero h1 span {
  color: var(--geel);
}

.hero p.lede {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  max-width: 46ch;
  margin-top: 20px;
}

.theme-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  background: var(--rood);
  color: var(--wit);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 16px;
  border-radius: 999px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-figure {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.kwastemenke {
  width: min(340px, 80%);
  animation: bob 3.4s ease-in-out infinite;
}

.confetti-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.confetti-piece {
  position: absolute;
  top: -20px;
  border-radius: 2px;
  opacity: 0.9;
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(120vh) rotate(360deg);
  }
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

.wave-divider {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: -2px;
}

/* ---------- Section shell ---------- */
section {
  padding: 78px 0;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head .eyebrow {
  background: var(--ink);
  color: var(--wit);
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-top: 14px;
}

.section-head p {
  margin-top: 12px;
  color: #4a4066;
  font-size: 1.02rem;
}

/* ---------- Trio ---------- */
.trio-section {
  background: var(--papier);
}

.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.trio-card {
  background: var(--wit);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px 20px 22px;
  text-align: center;
  box-shadow: 8px 8px 0 var(--blauw);
}

.trio-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--blauw);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
}

.trio-card h3 {
  font-size: 1.15rem;
}

.trio-card .role {
  color: var(--rood);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.trio-card p {
  font-size: 0.92rem;
  color: #4a4066;
  margin-top: 10px;
}

/* ---------- Niets + Agenda ---------- */
.split-section {
  background: var(--wit);
}

.split-section h2 {
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.news-card {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 2px dashed #e4dac4;
}

.news-card:last-child {
  border-bottom: none;
}

.news-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  flex-shrink: 0;
  background: var(--geel);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  padding: 4px;
}

.news-card h4 {
  font-size: 1.02rem;
  margin: 0 0 4px;
}

.news-card p {
  margin: 0;
  font-size: 0.88rem;
  color: #6b6284;
}

.news-card a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rood);
  text-decoration: none;
}

.agenda-box {
  background: var(--papier);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 8px 22px;
}

.agenda-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px dashed #e4dac4;
}

.agenda-item:last-child {
  border-bottom: none;
}

.agenda-item {
  text-decoration: none;
}

.agenda-item:hover {
  transform: translate(-2px, -2px);
}

.agenda-date {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--blauw);
  color: var(--wit);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Karla", sans-serif;
  font-weight: 700;
}

.agenda-date .weekday {
  font-size: 0.65rem;
  line-height: 1;
}

.agenda-date .day {
  font-size: 1.15rem;
  line-height: 1;
}

.agenda-date .month {
  font-size: 0.65rem;
  line-height: 1;
}

.agenda-item h4 {
  margin: 0;
  font-size: 0.98rem;
}

.agenda-item .info span {
  font-size: 0.8rem;
  color: #6b6284;
}

.agenda-mini .agenda-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 2px dashed #E4DAC4;
}

.agenda-mini .agenda-item:last-child {
  border-bottom: none;
}

.agenda-mini .agenda-date {
  
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--blauw);
  color: var(--wit);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: .8rem;
}

.agenda-mini h6 {
  margin: 0;
  font-size: .85rem;
}

aside .aside-box {
  background: var(--wit);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 26px;
}

/* ---------- Events ---------- */
.season-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #6b6284;
  font-size: .9rem;
}

.season-tag .line {
  flex: 1;
  height: 2px;
  background: #E4DAC4;
}

.detail-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--wit);
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 20px 24px;
  text-decoration: none;
  color: var(--ink);
  margin-bottom: 18px;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 5px 5px 0 transparent;
}

.detail-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--geel);
}

.detail-card.linked {
  cursor: pointer;
}

.detail-arrow {
  font-size: 1.3rem;
  color: var(--rood);
  flex-shrink: 0;
}

.detail-card .news-body {
  flex: 1;
  min-width: 0;
}

.detail-card .news-date {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--rood);
}

.detail-card .news-body h3 {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  margin: 3px 0 4px;
}

.detail-card .news-body p {
  margin: 0;
  font-size: .9rem;
  color: #6b6284;
}

.event-date {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  background: var(--blauw);
  color: var(--wit);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.event-date .weekday {
  font-size: 0.8rem;
  line-height: 1;
}

.event-date .day {
  font-size: 1.3rem;
  line-height: 1;
}

.event-date .month {
  font-size: 0.8rem;
  line-height: 1;
}

.event-body {
  flex: 1;
  min-width: 0;
}

.event-body h3 {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  margin: 0;
}

.event-meta {
  font-size: .85rem;
  color: #6b6284;
  margin-top: 4px;
  font-weight: 600;
}

.event-desc {
  font-size: .92rem;
  color: #4a4066;
  margin-top: 6px;
}

.highlight-badge {
  display: inline-block;
  background: var(--geel);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}


/* ---------- Media ---------- */
.media-section {
  background: var(--rood);
  color: var(--wit);
}

.media-section .section-head .eyebrow {
  background: var(--wit);
  color: var(--rood);
}

.media-section .section-head p {
  color: rgba(255, 255, 255, 0.85);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.media-tile {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wit);
  background: linear-gradient(160deg, var(--blauw), var(--blauw-deep));
  background-size: cover;
  background-position: center;
}

a.media-tile {
  text-decoration: none;
}

.kwastv {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wit);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn svg {
  margin-left: 3px;
}

/* ---------- Krant plug ---------- */
.krant-section {
  background: var(--geel);
}

.krant-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.krant-visual {
  background: var(--wit);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-2deg);
}

.krant-visual .masthead {
  font-family: "Bungee", sans-serif;
  font-size: 1.6rem;
  border-bottom: 4px solid var(--ink);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.krant-visual .line {
  height: 10px;
  background: #ede3cc;
  border-radius: 4px;
  margin-bottom: 8px;
}

.krant-visual .line:nth-child(3) {
  width: 80%;
}

.krant-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
}

.krant-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0;
  background: var(--ink);
  color: var(--wit);
  padding: 12px 20px;
  border-radius: 14px;
}

.krant-stat b {
  font-family: "Bungee", sans-serif;
  font-size: 1.6rem;
  color: var(--geel);
}

/* ---------- Sponsors ---------- */
.sponsor-section {
  background: var(--papier);
  text-align: center;
}

.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 36px;
}

.sponsor-slot {
  width: 150px;
  height: 74px;
  border: 2.5px dashed #c9bb98;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a8f6d;
  font-size: 0.78rem;
  font-weight: 700;
}

/* ---------- Media section ---------- */
.album-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.album-card {
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  background: var(--wit);
}

.album-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--geel);
}

.album-cover {
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
}

.album-card .info {
  padding: 14px 16px;
}

.album-card h4 {
  margin: 0;
  font-size: 1rem;
}

.album-card p {
  margin: 4px 0 0;
  font-size: .82rem;
  color: #6b6284;
}

/* ---------- Page banner ---------- */
.page-banner {
  position: relative;
  padding: 38px 0 0;
  color: var(--wit);
}

.banner-red {
  background: radial-gradient(ellipse at 80% 0%, var(--rood) 0%, var(--rood-deep) 75%);
}

.banner-blue {
  background: radial-gradient(ellipse at 80% 0%, var(--blauw) 0%, var(--blauw-deep) 75%);
}

.breadcrumb {
  font-size: .85rem;
  font-weight: 600;
  opacity: .8;
  margin-bottom: 18px;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 6px;
  opacity: .6;
}

.page-banner h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-top: 16px;
  max-width: 18ch;
}

.banner-bottom {
  padding-bottom: 56px;
}

.wave-divider {
  display: block;
  width: 100%;
  margin-bottom: -2px;
}

/* ---------- Article layout ---------- */
article p {
  font-size: 1.08rem;
  color: #332a54;
}

article p.lead-graf {
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink);
  max-width: 64ch;
}

article h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

article ul {
  padding-left: 22px;
  font-size: 1.05rem;
  color: #332a54;
}

article li {
  margin-bottom: 8px;
}

blockquote {
  margin: 36px 0;
  padding: 26px 30px;
  background: var(--papier);
  border-left: 6px solid var(--geel);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Bungee', sans-serif;
  font-size: 1.25rem;
  max-width: 60ch;
  line-height: 1.35;
}

blockquote span {
  display: block;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--rood);
  margin-top: 12px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
}

footer h5 {
  font-family: "Karla", sans-serif;
  color: var(--geel);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 16px;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer li {
  margin-bottom: 10px;
}

footer a {
  text-decoration: none;
  font-size: 0.92rem;
}

footer a:hover {
  color: var(--geel);
}

.footer-brand {
  font-family: "Bungee", sans-serif;
  color: var(--wit);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-note {
  font-family: "Caveat", cursive;
  font-size: 1.3rem;
  color: var(--geel);
  margin-top: 14px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-row a:hover {
  border-color: var(--geel);
}

.footer-bottom {
  max-width: var(--maxw);
  margin: 48px auto 0;
  padding: 22px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .kwastemenke,
  .confetti-piece {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p.lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-figure {
    margin-top: 20px;
  }

  .trio-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-tile.wide {
    grid-column: span 2;
  }

  .krant-grid {
    grid-template-columns: 1fr;
  }

  .krant-visual {
    max-width: 340px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav.primary {
    display: none;
  }

  .hamburger {
    display: block;
  }

  #mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--papier);
    border-top: 3px solid var(--ink);
    padding: 10px 24px 18px;
  }

  #mobile-nav a {
    padding: 12px 0;
    font-weight: 700;
    text-decoration: none;
    color: var(--ink);
    border-bottom: 1px solid #e4dac4;
  }

  .webshop-pill span.txt {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}