html {
  scroll-behavior: smooth;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Custom properties */
:root {
  --color-primary: #1D6A44;
  --color-primary-light: #28A05F;
  --color-hero-bg: #0F1F2E;
  --color-text-light: #FFFFFF;
  --color-accent: #F8D20B;
  --color-dark-blue: #0B1B2C;
  --color-light-blue: #004B9E;
  --color-btn-border: rgba(255, 255, 255, 0.55);
  --color-wit-blauw: #F3F3F4;

  --font-heading: 'Figtree', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/*
  Alle waarden op desktop zijn puur in vw — proportioneel schaalt alles mee.
  Conversie vanuit Figma (1440px): px / 1440 * 100 = vw
  Voorbeelden: 18px → 1.25vw | 110px → 7.64vw | 75px → 5.21vw
*/

/* Achtergrond achter afgeronde sectie-hoeken (incl. footer corner radius) */
body,
main {
  background-color: var(--color-wit-blauw);
}

/* Container (hero-content en toekomstige secties) */
.container {
  width: min(90%, 1200px);
  margin-inline: auto;
}

/* ─── PRELOADER ─── */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  overflow: hidden;
  pointer-events: all;
}

.preloader__col {
  flex: 1;
  background: var(--color-light-blue);
}

.preloader__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(3);
  opacity: 0;
  width: 88px;
  height: auto;
  pointer-events: none;
}

/* ─── PAGE TRANSITION ─── */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  pointer-events: none;
}

.page-transition__col {
  flex: 1;
  height: 100%;
  background: var(--color-light-blue);
  transform: translateY(100%);
}

.is-page-transitioning .page-transition__col {
  transform: translateY(0);
}

/* ─── TOPBAR ─── */
.topbar {
  background-color: var(--color-dark-blue);
  padding-block: 0.8vw;
  text-align: center;
}

.topbar p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.97vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-text-light);
}

/* ─── NAV ─── */
.nav {
  padding-block: 1.5vw;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5vw;
  padding-inline: 5.76vw;
}

.nav__logo img {
  display: block;
  height: 5.21vw;
  width: auto;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 2.5vw;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 1.8vw;
}

.nav__menu a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-text-light);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: block;
}

.nav__link-inner {
  display: block;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__link-inner:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.nav__menu a:hover .nav__link-inner:nth-child(1),
.nav__menu a:active .nav__link-inner:nth-child(1) {
  transform: translateY(-100%);
}

.nav__menu a:hover .nav__link-inner:nth-child(2),
.nav__menu a:active .nav__link-inner:nth-child(2) {
  transform: translateY(0);
}

/* Sticky nav */
.nav__placeholder {
  flex-shrink: 0;
  height: 0;
}

.nav.nav--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-radius: 0 0 2.78vw 2.78vw;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.nav--sticky.nav--hidden {
  transform: translateY(-100%);
}

/* Mobile overlay — standaard verborgen op desktop */
.nav__mobile-overlay {
  display: none;
}

/* Hamburger (alleen zichtbaar op mobiel) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav__toggle span {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background: var(--color-text-light);
  border-radius: 0.125rem;
  transition: transform 0.2s, opacity 0.2s;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 1.5em;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  text-decoration: none;
  cursor: pointer;
  border: 0.14vw solid transparent;
  transition: background 350ms cubic-bezier(0.22, 1, 0.36, 1),
              color 350ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 350ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.btn__text {
  position: relative;
  overflow: hidden;
  display: block;
}

.btn__text-inner {
  display: block;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn__text-inner:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.btn:hover .btn__text-inner:nth-child(1) {
  transform: translateY(-100%);
}

.btn:hover .btn__text-inner:nth-child(2) {
  transform: translateY(0);
}

.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn__icon img {
  width: 1.5em;
  height: 1.5em;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1),
              filter 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Pijl + tekst carousel op hover/active — geldt voor alle buttons */
.btn:hover .btn__icon img,
.btn:active .btn__icon img {
  transform: rotate(-45deg);
}

.btn:hover .btn__text-inner:nth-child(1),
.btn:active .btn__text-inner:nth-child(1) {
  transform: translateY(-100%);
}

.btn:hover .btn__text-inner:nth-child(2),
.btn:active .btn__text-inner:nth-child(2) {
  transform: translateY(0);
}

.btn--outline {
  padding: 0.25em 0.25em 0.25em 1.35em;
  background: var(--color-accent);
  color: var(--color-dark-blue);
  border-color: transparent;
}

.btn--outline .btn__icon {
  background: var(--color-light-blue);
}

.btn--primary {
  padding: 0.25em 0.25em 0.25em 1.35em;
  background: var(--color-accent);
  color: var(--color-dark-blue);
}

.btn--primary .btn__icon {
  background: var(--color-light-blue);
}

/* Gele buttons hover → witte achtergrond, gele pijl */
.btn--outline:hover,
.btn--outline:active,
.btn--primary:hover,
.btn--primary:active {
  background: #ffffff;
}

.btn--outline:hover .btn__icon img,
.btn--outline:active .btn__icon img,
.btn--primary:hover .btn__icon img,
.btn--primary:active .btn__icon img {
  filter: brightness(0) saturate(100%) invert(87%) sepia(100%) saturate(500%) brightness(97%) hue-rotate(-10deg);
}

.btn--blue {
  padding: 0.25em 0.25em 0.25em 1.35em;
  background: var(--color-light-blue);
  color: var(--color-text-light);
}

.btn--blue .btn__icon {
  background: var(--color-accent);
}

.btn--blue .btn__icon img {
  filter: brightness(0);
}

/* Blauwe button hover/active → gele achtergrond, donkerblauwe text, lichtblauwe cirkel, witte pijl */
.btn--blue:hover,
.btn--blue:active {
  background: var(--color-accent);
  color: var(--color-dark-blue);
}

.btn--blue:hover .btn__icon,
.btn--blue:active .btn__icon {
  background: var(--color-light-blue);
}

.btn--blue:hover .btn__icon img,
.btn--blue:active .btn__icon img {
  filter: none;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  background-color: var(--color-hero-bg);
  background-image:
    linear-gradient(to bottom, rgba(0, 75, 158, 0.2) 0%, rgba(0, 75, 158, 0) 70%),
    linear-gradient(to top, #004B9E 0%, rgba(0, 75, 158, 0) 70%),
    url('../assets/images/pickleball-den-bosch-hero.webp');
  background-size: cover;
  background-position: center center;
  height: 56vw;
  display: flex;
  flex-direction: column;
}

.hero__columns {
  position: absolute;
  inset: 0;
  display: flex;
  padding-inline: 5.76vw;
  z-index: 0;
  pointer-events: none;
}

.hero__columns::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.07vw;
  background: rgba(255, 255, 255, 0.20);
}

.hero__column {
  flex: 1;
  border-width: 0 0.07vw 0 0;
  border-style: solid;
  border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0) 83%) 1;
}

.hero__column:first-child {
  border-left-width: 0.07vw;
}

.hero__content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5vw;
  padding-block: 6vw;
  transform: translateY(-4.48vw);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 7.64vw;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--color-text-light);
  text-transform: uppercase;
  max-width: 14ch;
}

.hero__title-line {
  display: block;
}

.text-accent {
  color: var(--color-accent);
}

.hero__subtext {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 58ch;
}

/* ─── VIDEO SECTIE ─── */
.video-section {
  background-color: var(--color-light-blue);
  padding-top: 5vw;
  padding-bottom: 0;
  padding-inline: 5.76vw;
}

.video-section__box {
  width: 100%;
  aspect-ratio: 16 / 7.2;
  background-color: #000000;
  border-radius: 1.11vw;
  position: relative;
  z-index: 2;
  margin-top: -8.28vw;
  overflow: hidden;
}

.video-section__box iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 125%;
  border: none;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6vw;
  height: 6vw;
  border-radius: 50%;
  background-color: rgba(0, 75, 158, 0.35);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-play-btn img {
  width: 2.4vw;
  height: auto;
  margin-left: 0.3vw;
}

/* ─── VIDEO MODAL ─── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.video-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 0;
}

.video-modal__player {
  width: 90vw;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-modal__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── INTRO SECTIE ─── */
.intro-section {
  position: relative;
  background-color: var(--color-light-blue);
  border-radius: 0 0 2.78vw 2.78vw;
  padding-top: 11.11vw;
  padding-bottom: 22.22vw;
  padding-inline: 5.76vw;
  overflow: hidden;
}

.intro-section__columns {
  position: absolute;
  inset: 0 0 11.11vw 0;
  display: flex;
  padding-inline: 5.76vw;
  z-index: 0;
  pointer-events: none;
}

.intro-section__columns::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.07vw;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.20) 50%, rgba(255, 255, 255, 0) 80%);
}

.intro-section__column {
  flex: 1;
  border-width: 0 0.07vw;
  border-style: solid;
  border-image: linear-gradient(to top, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0)) 1;
}

.intro-section__column:first-child {
  border-left-width: 0;
}

.intro-section__column:last-child {
  border-right-width: 0;
}

.intro-img {
  position: absolute;
  width: 12.6vw;
  height: 6.93vw;
  border-radius: 1.11vw;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.1s ease;
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-img--bottom {
  left: 11vw;
  bottom: 14vw;
  transform: rotate(-10deg);
}

.intro-img--top {
  right: 7vw;
  top: 8vw;
  transform: rotate(10deg);
}

.intro-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25vw;
}

.intro-section__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.69vw;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-accent);
  text-transform: uppercase;
}

.intro-section__text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 2.5vw;
  letter-spacing: -0.04em;
  line-height: 1.3;
  color: var(--color-text-light);
  max-width: 33ch;
}

/* ─── WAT IS PICKLEBALL SECTIE ─── */
/* ─── GECOMBINEERDE SECTIE (wat is pickleball + cards) ─── */
.combined-section {
  position: relative;
  background-color: var(--color-wit-blauw);
  padding-top: 11.11vw;
  padding-bottom: 11.11vw;
  display: flex;
  flex-direction: column;
  gap: 9.72vw;
}

.wat-is-section__inner {
  display: flex;
  align-items: stretch;
  gap: 10%;
  padding-inline: 5.76vw;
}

.wat-is-section__left {
  width: 40%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wat-is-section__icon {
  margin-top: auto;
  width: 6vw;
  height: auto;
}

.wat-is-section__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.69vw;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-light-blue);
  text-transform: uppercase;
  margin-bottom: 1.25vw;
}

.wat-is-section__right {
  width: 50%;
}

.wat-is-section__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.47vw;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--color-dark-blue);
  text-transform: uppercase;
  margin-bottom: 2.43vw;
}

.text-light-blue {
  color: var(--color-light-blue);
}

.wat-is-section__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-dark-blue);
  opacity: 0.7;
}

.wat-is-section__body p + p {
  margin-top: 1.25em;
}

/* ─── FOTO SECTIE ─── */
.photo-section {
  position: relative;
  background-color: var(--color-wit-blauw);
  padding-top: 11.11vw;
  padding-bottom: 0;
  padding-inline: 5.76vw;
}

.photo-section--bottom-only {
  padding-top: 0;
  padding-bottom: 11.11vw;
}

.bento-grid {
  position: relative;
  display: flex;
  gap: 1.5vw;
  height: 36vw;
}

.bento-grid__ball {
  position: absolute;
  bottom: 0;
  left: 5vw;
  width: 11.2vw;
  height: auto;
  transform: translateY(50%);
  z-index: 2;
  pointer-events: none;
}

.bento-grid__large {
  flex: 1.4;
  border-radius: 1.11vw;
  overflow: hidden;
}

.bento-grid__stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.bento-grid__small {
  flex: 1;
  border-radius: 1.11vw;
  overflow: hidden;
}

.bento-grid__large img,
.bento-grid__small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-section__box {
  width: 100%;
  aspect-ratio: 16 / 7.2;
  border-radius: 1.11vw;
  overflow: hidden;
}

.photo-section__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-section__logo {
  position: absolute;
  top: 12.5vw;
  right: calc(5.76vw + 4vw);
  width: 10.5vw;
  height: auto;
  transform: translateY(-50%) rotate(15deg);
  pointer-events: none;
}

.photo-section__cards {
  display: flex;
  align-items: stretch;
  gap: 1.5vw;
  margin-top: 1.5vw;
}

.cards-columns {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  padding-inline: 5.76vw;
  z-index: 0;
  pointer-events: none;
}

.cards-columns::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.07vw;
  background: rgba(11, 27, 44, 0.15);
}

.cards-column {
  flex: 1;
  border-width: 0 0.07vw 0 0;
  border-style: solid;
  border-image: linear-gradient(to top, rgba(11, 27, 44, 0.15), rgba(11, 27, 44, 0)) 1;
}

.cards-column:first-child {
  border-left-width: 0.07vw;
}

.cards-section__grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.5vw;
  padding-inline: 5.76vw;
}

.cards-section__grid .card:nth-child(2) {
  margin-top: 4.17vw;
}

.cards-section__grid .card:nth-child(3) {
  margin-top: 1.39vw;
}

.card {
  flex: 1;
  background: #ffffff;
  border-radius: 1.11vw;
  padding: 2.78vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.photo-section__cards .card:first-child {
  flex: 1.15;
}

.photo-section__cards .card:not(:first-child) {
  flex: 0.925;
}


/* Card highlight variant (lichtblauw) */
.card--highlight {
  background: var(--color-light-blue);
}

.card--highlight .card__title {
  color: #ffffff;
}

.card--highlight .card__sub {
  color: #ffffff;
}

.card--highlight .card__check {
  background: var(--color-dark-blue);
}

.photo-section__cards .card__check {
  width: 3.85vw;
  height: 3.85vw;
}

.card__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5vw;
}

.card__check {
  width: 3.5vw;
  height: 3.5vw;
  border-radius: 0.69vw;
  background: var(--color-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Sectie 4 cards: originele ronde icondiv en tekstopmaak */
.cards-section__grid .card__check {
  border-radius: 50%;
}

.card__text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 2.5vw;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-dark-blue);
  max-width: 80%;
}

.card__check img {
  width: 1.9vw;
  height: auto;
}

.card__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4.17vw;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--color-dark-blue);
  text-transform: uppercase;
  white-space: nowrap;
}

.card__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-dark-blue);
  opacity: 0.7;
}

/* ─── INFO SECTIE (sectie 6) ─── */
.info-section {
  background-color: var(--color-wit-blauw);
  padding-top: 11.11vw;
  padding-bottom: 11.11vw;
}

.info-section__inner {
  display: flex;
  align-items: stretch;
  gap: 10%;
  padding-inline: 5.76vw;
}

.info-section__left {
  width: 40%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info-section__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.69vw;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-light-blue);
  text-transform: uppercase;
  margin-bottom: 1.25vw;
}

.info-section__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.47vw;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--color-dark-blue);
  text-transform: uppercase;
  margin-bottom: 2.43vw;
}

.info-section__icon {
  margin-top: auto;
  width: 9vw;
  height: auto;
}

.info-section__right {
  width: 50%;
  display: flex;
  align-items: center;
}

/* ─── ACCORDEON ─── */
.accordion {
  width: 100%;
}

.accordion__item {
  border-bottom: 0.07vw solid;
  border-image: linear-gradient(to right, rgba(11, 27, 44, 0), rgba(11, 27, 44, 0.20)) 1;
}

.accordion__item:first-child {
  border-top: 0.07vw solid;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  padding-block: 2.78vw;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 2.08vw;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-dark-blue);
}

.accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.accordion__icon img {
  width: 1vw;
  height: auto;
  display: block;
}

.accordion__icon--active {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion__item.is-open .accordion__trigger {
  padding-bottom: 2.08vw;
}

.accordion__item.is-open .accordion__icon {
  background: var(--color-light-blue);
  transform: rotate(45deg);
}

.accordion__icon:hover,
.accordion__icon:active {
  background: var(--color-accent);
}

.accordion__item.is-open .accordion__icon--active {
  opacity: 1;
}

.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.accordion__item.is-open .accordion__body {
  grid-template-rows: 1fr;
}

.accordion__body > div {
  overflow: hidden;
}

.accordion__body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-dark-blue);
  opacity: 0.7;
  padding-top: 0;
  padding-bottom: 2.78vw;
}

/* ─── CTA SECTIE (sectie 8) ─── */
.cta-section {
  position: relative;
  background-color: var(--color-wit-blauw);
  padding-top: 11.11vw;
  padding-bottom: 11.11vw;
  padding-inline: 5.76vw;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-section .cards-columns::after {
  top: 0;
  bottom: auto;
}

.cta-section .cards-column {
  border-image: linear-gradient(to bottom, rgba(11, 27, 44, 0.15), rgba(11, 27, 44, 0)) 1;
}

.cta-section__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.69vw;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-light-blue);
  text-transform: uppercase;
  margin-bottom: 1.25vw;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.47vw;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--color-dark-blue);
  text-transform: uppercase;
  margin-bottom: 1.25vw;
}

.cta-section__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-dark-blue);
  opacity: 0.7;
  max-width: 38vw;
}

.cta-section__bars {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: 2.08vw;
  row-gap: 0.83vw;
  margin-inline: auto;
  margin-top: 3.47vw;
  margin-bottom: 3.47vw;
}

.cta-section__bar {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  align-items: center;
  background-color: var(--color-accent);
  border-radius: 1.11vw;
  padding-block: 2.43vw;
}

.cta-section__bar-item {
  display: flex;
  align-items: center;
  gap: 0.69vw;
}

.cta-section__bar-item:first-child {
  padding-inline-start: 2.78vw;
}

.cta-section__bar-item:last-child {
  padding-inline-end: 2.78vw;
}

.cta-section__bar-trigger {
  display: contents;
}

.cta-section__bar-body {
  display: contents;
}

.cta-section__bar-body > div {
  display: contents;
}

.cta-section__bar-plusicon {
  display: none;
}

.cta-section__bar-item img {
  width: 1.25vw;
  height: auto;
  flex-shrink: 0;
}

.cta-section__bar-item span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-dark-blue);
  white-space: nowrap;
}

/* ─── SECTIE 9: BANNER ─── */

.banner-section {
  padding-inline: 5.76vw;
}

.banner {
  position: relative;
  background-color: var(--color-light-blue);
  border-radius: 1.11vw;
  padding: 4.17vw;
  display: flex;
  flex-direction: column;
  gap: 4.17vw;
  overflow: visible;
}

.banner__ball {
  position: absolute;
  top: 0;
  right: 6vw;
  width: 11.2vw;
  height: auto;
  transform: translateY(-40%);
  pointer-events: none;
}

.banner__top {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}

.banner__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.69vw;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-accent);
  text-transform: uppercase;
}

.banner__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 4.17vw;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #ffffff;
  text-transform: uppercase;
}

.banner__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.banner__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.7;
  max-width: 42vw;
}

/* ─── SECTIE 10: SPONSORS CAROUSEL ─── */

.sponsors-section {
  background-color: var(--color-wit-blauw);
  padding-block: 6.94vw;
}

.sponsors-track-wrapper {
  overflow: hidden;
}

.sponsors-track {
  display: flex;
  align-items: center;
  gap: 10vw;
  width: max-content;
  will-change: transform;
  animation: sponsors-scroll 20s linear infinite;
}

.sponsors-logo {
  height: 3.5vw;
  width: auto;
  opacity: 0.8;
  flex-shrink: 0;
}

@keyframes sponsors-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── FOOTER ─── */

.footer {
  background-color: var(--color-light-blue);
  border-radius: 2.78vw 2.78vw 0 0;
  padding-inline: 5.76vw;
  padding-top: 0;
  padding-bottom: 0;
}

.footer__content {
  position: relative;
  padding-top: 8.33vw;
  padding-bottom: 8.33vw;
}

/* Kolommen stretchen naar volle breedte footer (incl. padding-inline compensatie) */
.footer .cards-columns {
  left: -5.76vw;
  right: -5.76vw;
}

.footer__bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 9.72vw;
}

.footer__credits {
  display: flex;
  align-items: center;
  gap: 0.42vw;
}

.footer__credits img {
  height: 1.4vw;
  width: auto;
}

.footer__copyright {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.97vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.7;
}

.footer__wordmark {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.83vw;
}

.footer__wordmark--mobile {
  display: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4vw;
}

.footer .cards-columns::after {
  background: rgba(255, 255, 255, 0.15);
}

.footer .cards-column {
  border-image: linear-gradient(to top, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)) 1;
}

.footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.47vw;
  flex-shrink: 0;
}

.footer__left-top {
  display: flex;
  align-items: flex-start;
  gap: 2.08vw;
}

.footer__logo {
  height: 6.88vw;
  width: auto;
  flex-shrink: 0;
}

.footer__actions {
  display: flex;
  align-items: center;
  gap: 0.83vw;
}

.footer__btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.22vw;
  height: 3.22vw;
  border-radius: 50%;
  background-color: var(--color-accent);
  flex-shrink: 0;
  transition: background-color 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__btn-circle:hover,
.footer__btn-circle:active {
  background-color: #ffffff;
}

.footer__btn-circle img {
  width: 1.8vw;
  height: 1.8vw;
  transition: filter 350ms cubic-bezier(0.22, 1, 0.36, 1);
}


.footer__tagline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.43vw;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: #ffffff;
  text-transform: uppercase;
}

.footer__nav {
  display: flex;
  gap: 6vw;
  flex-shrink: 0;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1.67vw;
}

.footer__col-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.69vw;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-accent);
  text-transform: uppercase;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.83vw;
}

.footer__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
}

.footer__link {
  transition: color 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer__link:hover,
.footer__link:active {
  color: var(--color-accent);
}

.footer__link--icon {
  display: flex;
  align-items: center;
  gap: 0.28vw;
}

.footer__link--icon img {
  flex-shrink: 0;
  width: 1.32vw;
  height: 1.32vw;
}

/* ─── MOBILE (< 768px) ─── */
/*
  Mobiele waarden: px ÷ 300 × 100 = vw
  Referentie: 300px breed Figma design
  Voorbeelden: 14px → 4.67vw | 28px → 9.33vw | 20px → 6.67vw | 40px → 13.33vw
*/
@media (max-width: 767px) {

  /* ── NAV ── */
  .nav__toggle {
    display: flex;
  }

  .nav.nav--sticky {
    border-radius: 0 0 5.33vw 5.33vw;
  }

  /* ── MOBILE MENU OVERLAY ── */
  .nav__mobile-overlay {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: var(--color-light-blue);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav__mobile-overlay.is-open {
    transform: translateX(0);
  }

  .nav__mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 6.67vw;
    padding-block: 4.27vw;
    margin-top: 8vw;
  }

  .nav__mobile-overlay .nav__logo img {
    height: 14vw;
    width: auto;
    display: block;
  }

  .nav__mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 11vw;
    height: 11vw;
    border-radius: 50%;
    background: var(--color-accent);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }

  .nav__mobile-close span {
    display: block;
    position: absolute;
    width: 5vw;
    height: 0.67vw;
    background: var(--color-dark-blue);
    border-radius: 0.67vw;
  }

  .nav__mobile-close span:first-child {
    transform: rotate(45deg);
  }

  .nav__mobile-close span:last-child {
    transform: rotate(-45deg);
  }

  .nav__mobile-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav__mobile-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8vw;
    width: 100%;
    padding-inline: 10vw;
    text-align: center;
  }

  .nav__mobile-items a:not(.btn) {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 6.67vw;
    letter-spacing: -0.04em;
    line-height: 1.3;
    color: #ffffff;
    text-decoration: none;
  }

  .nav {
    position: relative;
    padding-block: 1rem;
  }

  .nav__inner {
    padding-inline: 1.25rem;
    gap: 1rem;
  }

  .nav__logo img {
    height: 14vw;
  }

  .nav__toggle {
    gap: 1.87vw;
    padding: 1.33vw;
  }

  .nav__toggle span {
    width: 8vw;
    height: 0.67vw;
    border-radius: 0.67vw;
  }

  .nav__right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: var(--color-hero-bg);
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav__right.is-open {
    display: flex;
  }

  .nav__menu {
    flex-direction: column;
    gap: 0.875rem;
  }

  .nav__menu a {
    font-size: 1rem;
  }

  /* ── BUTTONS ── */
  /* font-size: 12px → 4vw; icon iets kleiner zodat button minder hoog is */
  .btn {
    font-size: 4vw;
    border-radius: 9999px;
    border-width: 2px;
  }

  .btn__icon {
    width: 2.3em;
    height: 2.3em;
  }

  .btn__icon img {
    width: 1.25em;
    height: 1.25em;
  }

  /* ── TOPBAR ── */
  /* 8px → 2.67vw | 12px → 4vw */
  .topbar {
    padding-block: 2.67vw;
  }

  .topbar p {
    font-size: 3.33vw;
  }

  /* ── HERO ── */
  /* title: 40px → 13.33vw | subtext: 15px → 5vw */
  .hero {
    height: auto;
    min-height: 120vw;
  }

  .hero__inner {
    gap: 6.67vw;
    padding-block: 16vw;
  }

  .hero__title {
    font-size: 13.33vw;
  }

  .hero__subtext {
    font-size: 4.33vw;
  }

  /* ── INTRO SECTIE ── */
  /* label: 10px → 3.33vw | text: 24px → 8vw | padding: 40px → 13.33vw */
  .intro-section {
    padding-top: 20vw;
    padding-bottom: 40vw;
    padding-inline: 6.67vw;
    overflow-x: clip;
    border-radius: 0 0 6.67vw 6.67vw;
  }

  .intro-section__columns {
    inset: 0 0 20vw 0;
    padding-inline: 6.67vw;
  }

  .intro-section__columns::after {
    height: 0.33vw;
  }

  .intro-section__inner {
    gap: 4vw;
  }

  .intro-section__label {
    font-size: 3.33vw;
  }

  .intro-section__text {
    font-size: 6vw;
    max-width: 100%;
  }

  /* Decoratieve foto's: half buiten viewport links/rechts */
  .intro-img {
    display: block;
    width: 30vw;
    height: 16.5vw;
    border-radius: 2.67vw;
  }

  .intro-img--bottom {
    left: -15vw;
    bottom: 26vw;
  }

  .intro-img--top {
    right: -15vw;
    top: 16vw;
  }

  /* ── VIDEO SECTIE ── */
  /* padding: 20px → 6.67vw | play-btn: 48px → 16vw | icon: 18px → 6vw */
  /* box 50% hoger + 20% extra: 7.2 × 1.5 × 1.2 = 12.96 | radius: 12px → 4vw */
  .video-section__box {
    aspect-ratio: 16 / 12.96;
    border-radius: 4vw;
    margin-top: -4vw;
  }

  /* video vult box: hoogte 100%, breedte 144% zodat 16:9 de tallere box dekt */
  .video-section__box iframe {
    width: 144%;
    height: 100%;
  }

  .video-section {
    padding-top: 6.67vw;
    padding-inline: 6.67vw;
  }

  .video-play-btn {
    width: 16vw;
    height: 16vw;
  }

  .video-play-btn img {
    width: 6vw;
  }

  /* ── WAT IS PICKLEBALL SECTIE ── */
  /* padding: 40px → 13.33vw | label: 10px → 3.33vw | title: 28px → 9.33vw | body: 14px → 4.67vw */
  .combined-section {
    padding-top: 20vw;
    padding-bottom: 20vw;
    gap: 13.33vw;
  }

  .wat-is-section__inner {
    flex-direction: column;
    gap: 0;
    padding-inline: 6.67vw;
    position: relative;
  }

  .wat-is-section__left {
    display: contents;
  }

  .wat-is-section__label {
    order: 1;
    font-size: 3.33vw;
    margin-bottom: 3.33vw;
  }

  .wat-is-section__title {
    order: 2;
    font-size: 9.33vw;
    margin-bottom: 6.67vw;
  }

  .wat-is-section__icon {
    display: block;
    position: absolute;
    right: 4vw;
    top: 7vw;
    width: 18vw;
  }

  .wat-is-section__right {
    order: 3;
    width: 100%;
    margin-bottom: 6.67vw;
  }

  .wat-is-section__left .btn {
    order: 4;
    align-self: flex-start;
  }

  .wat-is-section__body p {
    font-size: 4vw;
  }

  /* ── BENTO GRID ── */
  /* height: 210px → 70vw | radius: 14px → 4.67vw */
  .bento-grid {
    height: 70vw;
    gap: 2.67vw;
  }

  .bento-grid__stack {
    gap: 2.67vw;
  }

  .bento-grid__ball {
    display: block;
    width: 23vw;
    left: 6vw;
  }

  .bento-grid__large,
  .bento-grid__small {
    border-radius: 4vw;
  }

  /* ── FOTO SECTIE ── */
  /* radius: 14px → 4.67vw */
  .photo-section {
    padding-top: 20vw;
    padding-inline: 6.67vw;
  }

  .photo-section--bottom-only {
    padding-top: 0;
    padding-bottom: 20vw;
  }

  .photo-section__box {
    border-radius: 4vw;
    aspect-ratio: 16 / 10.08;
  }

  .photo-section__logo {
    display: block;
    width: 15vw;
    top: 20vw;
    right: 12vw;
  }

  .photo-section__cards {
    flex-direction: column;
    gap: 2.67vw;
    margin-top: 2.67vw;
  }

  .photo-section__cards .card:first-child,
  .photo-section__cards .card:not(:first-child) {
    flex: 1;
  }

  .photo-section__cards .card {
    gap: 2vw;
  }

  /* ── CARDS SECTIE GRID ── */
  .cards-section__grid {
    flex-direction: column;
    align-items: stretch;
    padding-inline: 6.67vw;
    gap: 2.67vw;
  }

  .cards-section__grid .card:nth-child(2),
  .cards-section__grid .card:nth-child(3) {
    margin-top: 0;
  }

  /* Cirkel links, tekst rechts naast elkaar */
  .cards-section__grid .card {
    flex-direction: row;
    align-items: center;
  }


  /* 3e card tekst over 2 regels */
  .cards-section__grid .card:nth-child(3) .card__text {
    max-width: 50vw;
  }

  /* ── CARDS ── */
  /* padding: 16px → 5.33vw | title: 28px → 9.33vw | body: 14px → 4.67vw */
  .card {
    border-radius: 4vw;
    padding: 5.33vw;
    gap: 4vw;
  }

  .card__top {
    gap: 4vw;
  }

  .card__check {
    width: 10vw;
    height: 10vw;
    border-radius: 2.67vw;
  }

  /* Ronde icondiv in sectie 4 blijft rond */
  .cards-section__grid .card__check {
    border-radius: 50%;
  }

  .photo-section__cards .card__check {
    width: 10vw;
    height: 10vw;
  }

  .card__check img {
    width: 5vw;
  }

  .card__text {
    font-size: 6vw;
  }

  .card__title {
    font-size: 9.33vw;
  }

  .card__sub {
    font-size: 4vw;
  }

  /* ── INFO SECTIE (over ons) ── */
  /* padding: 40px → 13.33vw | label: 10px → 3.33vw | title: 28px → 9.33vw */
  .info-section {
    padding-top: 20vw;
    padding-bottom: 20vw;
  }

  .info-section__inner {
    flex-direction: column;
    gap: 6.67vw;
    padding-inline: 6.67vw;
  }

  .info-section__left {
    width: 100%;
    position: relative;
  }

  .info-section__right {
    width: 100%;
  }

  .info-section__label {
    font-size: 3.33vw;
    margin-bottom: 3.33vw;
  }

  .info-section__title {
    font-size: 9.33vw;
    margin-bottom: 5.33vw;
  }

  .info-section__icon {
    display: block;
    position: absolute;
    right: 0;
    top: 10vw;
    width: 21vw;
  }

  /* ── ACCORDEON ── */
  /* trigger: 16px → 5.33vw | icon: 32px → 10.67vw | body: 14px → 4.67vw */
  .accordion__trigger {
    font-size: 5.33vw;
    padding-block: 5.33vw;
    gap: 4vw;
  }

  .accordion__item.is-open .accordion__trigger {
    padding-bottom: 4vw;
  }

  .accordion__icon {
    width: 9vw;
    height: 9vw;
  }

  .accordion__icon img {
    width: 3.33vw;
  }

  .accordion__item {
    border-image: linear-gradient(to right, rgba(11, 27, 44, 0), rgba(11, 27, 44, 0.20) 50%, rgba(11, 27, 44, 0)) 1;
  }

  .accordion__item:first-child {
    border-image: linear-gradient(to right, rgba(11, 27, 44, 0), rgba(11, 27, 44, 0.20) 50%, rgba(11, 27, 44, 0)) 1;
  }

  .accordion__body p {
    font-size: 4vw;
    padding-bottom: 5.33vw;
  }

  /* ── CTA SECTIE (waar & wanneer) ── */
  /* padding: 40px → 13.33vw | label: 10px → 3.33vw | title: 28px → 9.33vw */
  /* Balken scrollen horizontaal op mobiel */
  .cta-section {
    padding-top: 20vw;
    padding-bottom: 20vw;
    padding-inline: 6.67vw;
    overflow-x: clip;
  }

  .cta-section__label {
    font-size: 3.33vw;
    margin-bottom: 3.33vw;
  }

  .cta-section__title {
    font-size: 9.33vw;
    margin-bottom: 3.33vw;
  }

  .cta-section__text {
    font-size: 4vw;
    max-width: 100%;
  }

  .cta-section__bars {
    display: flex;
    flex-direction: column;
    overflow-x: visible;
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
    gap: 2.67vw;
    margin-top: 6.67vw;
    margin-bottom: 6.67vw;
    text-align: left;
  }

  .cta-section__bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-radius: 4vw;
    padding-block: 0;
  }

  .cta-section__bar-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 4vw;
    gap: 3.33vw;
  }

  .cta-section__bar-body {
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    transition: grid-template-rows 0.3s ease;
  }

  .cta-section__bar-body > div {
    display: flex;
    flex-direction: column;
    gap: 2.67vw;
    overflow: hidden;
    padding: 0 4vw 0;
    transition: padding-bottom 0.3s ease;
  }

  .cta-section__bar.is-open .cta-section__bar-body {
    grid-template-rows: 1fr;
  }

  .cta-section__bar.is-open .cta-section__bar-body > div {
    padding-bottom: 4vw;
  }

  .cta-section__bar-plusicon {
    display: flex;
    position: relative;
    flex-shrink: 0;
    width: 9vw;
    height: 9vw;
    border-radius: 50%;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .cta-section__bar-plusicon img {
    width: 3.33vw;
    height: auto;
    display: block;
  }

  .cta-section__bar-plusicon--active {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .cta-section__bar.is-open .cta-section__bar-plusicon {
    background: var(--color-light-blue);
    transform: rotate(45deg);
  }

  .cta-section__bar-plusicon:hover,
  .cta-section__bar-plusicon:active {
    background: var(--color-accent);
  }

  .cta-section__bar.is-open .cta-section__bar-plusicon--active {
    opacity: 1;
  }

  .cta-section__bar-item {
    display: grid;
    grid-template-columns: 5.33vw 1fr;
    align-items: center;
    gap: 2.67vw;
  }

  .cta-section__bar-item span {
    font-size: 4vw;
    white-space: normal;
  }

  .cta-section__bar-item img {
    width: 4.67vw;
    height: auto;
    justify-self: center;
  }

  .cta-section__bar-item:first-child {
    padding-inline-start: 0;
  }

  .cta-section__bar-item:last-child {
    padding-inline-end: 0;
  }

  /* ── BANNER SECTIE ── */
  /* padding: 20px → 6.67vw | label: 10px → 3.33vw | title: 30px → 10vw | body: 14px → 4.67vw */
  .banner-section {
    padding-inline: 6.67vw;
  }

  .banner {
    padding: 6.67vw;
    gap: 6.67vw;
    border-radius: 4vw;
  }

  .banner__ball {
    width: 20vw;
    right: 5.33vw;
  }

  .banner__top {
    gap: 3.33vw;
  }

  .banner__label {
    font-size: 3.33vw;
  }

  .banner__title {
    font-size: 10vw;
  }

  .banner__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6.67vw;
  }

  .banner__text {
    font-size: 4vw;
    max-width: 100%;
  }

  /* ── SPONSORS CAROUSEL ── */
  /* padding: 30px → 10vw | logo: 28px → 9.33vw | gap: 60px → 20vw */
  .sponsors-section {
    padding-block: 10vw;
  }

  .sponsors-logo {
    height: 9.33vw;
  }

  .sponsors-track {
    gap: 20vw;
  }

  /* ── FOOTER ── */
  /* border-radius: 16px → 5.33vw | padding: 40px → 13.33vw */
  .footer {
    border-radius: 5.33vw 5.33vw 0 0;
    padding-inline: 6.67vw;
  }

  .footer__content {
    padding-top: 13.33vw;
    padding-bottom: 13.33vw;
  }

  /* Lijn elementen uitlijnen op 6.67vw (= 20px nav-marge) */
  .cards-columns {
    padding-inline: 6.67vw;
  }

  .cards-columns::after {
    height: 0.33vw;
  }

  /* Kolommen compenseren voor nieuwe padding-inline */
  .footer .cards-columns {
    left: -6.67vw;
    right: -6.67vw;
  }

  .footer__inner {
    flex-direction: column;
    gap: 10vw;
  }

  .footer__left {
    gap: 5.33vw;
  }

  .footer__left-top {
    gap: 5.33vw;
    align-items: center;
  }

  /* logo: 60px → 20vw */
  .footer__logo {
    height: 20vw;
  }

  /* tagline: 22px → 7.33vw */
  .footer__tagline {
    font-size: 6.5vw;
  }

  .footer__actions {
    gap: 4vw;
  }

  /* circle btn: 44px → 14.67vw | icon: 24px → 8vw */
  .footer__btn-circle {
    width: 12vw;
    height: 12vw;
  }

  .footer__btn-circle img {
    width: 6vw;
    height: 6vw;
  }

  .footer__nav {
    flex-direction: column;
    gap: 10vw;
  }

  .footer__col {
    gap: 5.33vw;
  }

  /* col label: 10px → 3.33vw */
  .footer__col-label {
    font-size: 3.33vw;
  }

  /* list gap: 12px → 4vw */
  .footer__list {
    gap: 4vw;
  }

  /* link: 12px → 4vw */
  .footer__link {
    font-size: 4vw;
  }

  /* icon gap: 8px → 2.67vw | icon size: 16px → 5.33vw */
  .footer__link--icon {
    gap: 2.67vw;
  }

  .footer__link--icon img {
    width: 5.33vw;
    height: 5.33vw;
  }

  .footer__bottom-bar {
    flex-direction: column;
    align-items: center;
    gap: 2.67vw;
    margin-top: 10vw;
  }

  /* copyright: 10px → 3.33vw */
  .footer__copyright {
    font-size: 3.33vw;
  }

  .footer__wordmark:not(.footer__wordmark--mobile) {
    display: none;
  }

  .footer__wordmark--mobile {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 2.67vw;
  }

  /* credits gap: 6px → 2vw | logo: 16px → 5.33vw */
  .footer__credits {
    gap: 2vw;
  }

  .footer__credits img {
    height: 5.33vw;
  }
}

/* ─── CONTACT PAGE ─── */

.hero--contact {
  background-image: linear-gradient(to bottom, var(--color-light-blue) 42vw, var(--color-wit-blauw) 100%);
  background-color: var(--color-light-blue);
  height: auto;
}

.hero--contact .hero__content {
  align-items: stretch;
}

.contact-hero__inner {
  display: flex;
  flex-direction: column;
  padding-inline: 5.76vw;
  padding-top: 6.94vw;
  padding-bottom: 5.56vw;
  width: 100%;
  gap: 6.94vw;
  position: relative;
  z-index: 1;
}

.contact-hero__top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

.contact-hero__boxes {
  display: flex;
  gap: 1.39vw;
}

.contact-hero__box {
  flex: 1;
  background: #ffffff;
  border-radius: 1.11vw;
  padding: 2.78vw;
  display: flex;
  flex-direction: column;
  gap: 2.08vw;
}

.contact-box__item {
  display: flex;
  flex-direction: column;
  gap: 0.83vw;
}

.contact-box__tag {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.69vw;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-light-blue);
}

.contact-box__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-dark-blue);
  text-decoration: none;
  transition: color 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-box__link:hover,
.contact-box__link:active {
  color: var(--color-accent);
}

.contact-box__divider {
  height: 0.07vw;
  background: rgba(11, 27, 44, 0.20);
  width: 100%;
}

.contact-box__location {
  display: flex;
  align-items: center;
  gap: 0.56vw;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-dark-blue);
  text-decoration: none;
  transition: color 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-box__location:hover,
.contact-box__location:active {
  color: var(--color-accent);
}

.contact-box__location img {
  width: 1.11vw;
  height: auto;
  flex-shrink: 0;
}

.contact-hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 7.64vw;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--color-text-light);
  text-transform: uppercase;
  text-align: left;
}

.contact-hero__subtext {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 37ch;
  text-align: left;
}

.video-section--contact {
  background-color: var(--color-wit-blauw);
  padding-top: 0;
}

.video-section--contact .video-section__box {
  margin-top: 0;
}

.contact-form__intro {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}

.contact-form__heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.47vw;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--color-dark-blue);
  text-transform: uppercase;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.53vw;
  margin-top: 3.13vw;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.83vw;
}

.contact-form__input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
}

.contact-form__input {
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-dark-blue);
  width: 100%;
  padding: 0;
}

.contact-form__input::placeholder {
  color: var(--color-dark-blue);
  opacity: 0.3;
}

.contact-form__textarea {
  height: 6.94vw;
  overflow-y: auto;
  resize: none;
}

.contact-form__optional {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  color: var(--color-dark-blue);
  opacity: 0.3;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-form__error {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.83vw;
  color: #E32A40;
  display: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-form__error.is-visible {
  display: block;
}

.contact-form .btn {
  width: 100%;
  justify-content: space-between;
}

.form-success {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 2.08vw;
  background: var(--color-accent);
  border-radius: 1.11vw;
  padding: 1.67vw 2.78vw;
  margin-top: calc(1.39vw - 6.94vw);
}

.form-success.is-visible {
  display: flex;
}

.form-success__check {
  width: 3.5vw;
  height: 3.5vw;
  border-radius: 50%;
  background: var(--color-dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-success__check img {
  width: 1.9vw;
  height: auto;
}

.form-success__content {
  display: flex;
  flex-direction: column;
  gap: 0.42vw;
}

.form-success__main {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.39vw;
  letter-spacing: -0.04em;
  line-height: 1.2;
  color: var(--color-dark-blue);
}

.form-success__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.11vw;
  letter-spacing: -0.02em;
  line-height: 1.6;
  color: var(--color-dark-blue);
  opacity: 0.7;
}

@media (max-width: 767px) {
  .hero--contact {
    background-image: linear-gradient(to bottom, var(--color-light-blue) 125vw, var(--color-wit-blauw) 100%);
  }

  .contact-hero__inner {
    padding-inline: 6.67vw;
    padding-top: 13.33vw;
    padding-bottom: 26.67vw;
    gap: 13.33vw;
  }

  .contact-hero__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6.67vw;
  }

  .contact-hero__boxes {
    display: contents;
  }

  .contact-hero__box:last-child  { order: 1; }
  .contact-hero__box:first-child { order: 3; margin-top: calc(2.67vw - 13.33vw); }

  .contact-hero__box {
    border-radius: 4vw;
    padding: 6.67vw;
    gap: 10vw;
  }

  .contact-box__item {
    gap: 4vw;
  }

  .contact-box__tag {
    font-size: 3.33vw;
  }

  .contact-box__link {
    font-size: 4.33vw;
  }

  .contact-box__divider {
    height: 0.33vw;
  }

  .contact-box__location {
    font-size: 4.33vw;
    gap: 2.67vw;
  }

  .contact-box__location img {
    width: 4.33vw;
  }

  .contact-hero__title {
    font-size: 13.33vw;
  }

  .contact-hero__subtext {
    font-size: 4.33vw;
    max-width: 100%;
  }

  .contact-form__intro {
    gap: 6vw;
  }

  .contact-form__heading {
    font-size: 7.46vw;
  }

  .contact-form {
    gap: 7.33vw;
    margin-top: 0;
  }

  .contact-form__field {
    gap: 4vw;
  }

  .contact-form__input {
    font-size: 4.33vw;
  }

  .contact-form__textarea {
    height: 33.33vw;
  }

  .contact-form__optional {
    font-size: 4.33vw;
  }

  .contact-form__error {
    font-size: 3.33vw;
  }

  .form-success {
    order: 2;
    margin-top: calc(2.67vw - 13.33vw);
    border-radius: 4vw;
    padding: 4vw 5.33vw;
    gap: 4vw;
  }

  .form-success__check {
    width: 9.33vw;
    height: 9.33vw;
  }

  .form-success__check img {
    width: 4vw;
  }

  .form-success__main {
    font-size: 4vw;
  }

  .form-success__sub {
    font-size: 3.33vw;
  }
}
