:root {
  --ink: #202329;
  --muted: #6d7480;
  --line: #e3e6ea;
  --paper: #ffffff;
  --soft: #f5f7f9;
  --blue: #0b6fb3;
  --green: #2da66a;
  --gold: #f2b84b;
  --charcoal: #171a1f;
  --shadow: 0 18px 50px rgba(26, 35, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 6vw;
  color: white;
  background: rgba(23, 26, 31, 0.96);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0;
}

.brand-logo {
  width: 58px;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 18px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  padding: 24px 0;
  color: #edf3f8;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.hero {
  position: relative;
  min-height: clamp(520px, 72vh, 720px);
  overflow: hidden;
  background: #0f141a;
}

.hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 8, 11, 0.78), rgba(5, 8, 11, 0.36) 45%, rgba(5, 8, 11, 0.12));
}

.hero-content {
  position: absolute;
  left: 6vw;
  bottom: 15%;
  width: min(720px, 88vw);
  color: white;
}

.hero-content p,
.eyebrow,
.section-heading p {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-content span {
  display: block;
  max-width: 580px;
  color: #edf3f8;
  font-size: clamp(18px, 2vw, 24px);
}

.section {
  padding: 88px 6vw;
}

.page-hero {
  padding: 96px 6vw 72px;
  color: white;
  background: linear-gradient(rgba(20, 28, 38, 0.78), rgba(20, 28, 38, 0.78)), url("assets/images/molse-bc-jeugd.jpg") center / cover;
}

.page-hero div {
  width: min(860px, 100%);
}

.page-hero p {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 80px);
  line-height: 1;
}

.page-section {
  padding: 72px 6vw;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.content-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 26px rgba(20, 28, 38, 0.06);
}

.content-panel img {
  max-height: 92px;
  width: auto;
  margin-bottom: 22px;
}

.form-status {
  min-height: 24px;
  color: var(--blue) !important;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-heading span,
.section-heading h2 + p {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.feature-grid,
.people-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.feature-grid article,
.person,
.price-card,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 26px rgba(20, 28, 38, 0.06);
}

.feature-grid article {
  overflow: hidden;
  padding: 0;
}

.feature-grid h3,
.feature-grid p {
  padding-right: 30px;
  padding-left: 30px;
}

.feature-grid h3 {
  margin-top: 24px;
}

.feature-grid p {
  padding-bottom: 30px;
}

.feature-media {
  position: relative;
  height: 178px;
  margin: 0;
  overflow: hidden;
  background: #223f59;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.feature-media-fast::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(242, 184, 75, 0), rgba(242, 184, 75, 0.45), rgba(242, 184, 75, 0));
  transform: translateX(-90%);
  animation: speed-sweep 3.5s ease-in-out infinite;
}

.feature-grid article:hover .feature-media img {
  transform: scale(1.07);
}

.feature-grid p,
.person p,
.timeline p,
.clubinfo p,
.contact p,
.split-band p {
  color: var(--muted);
}

.split-band,
.sponsor-band,
.clubinfo,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: 82px 6vw;
}

.split-band,
.stats-band {
  color: white;
  background: var(--charcoal);
}

.split-band p {
  color: #c8d0d8;
}

.strengths {
  display: grid;
  gap: 18px;
}

.strength-heading,
.strength-row {
  display: grid;
  grid-template-columns: 92px 1fr 48px;
  gap: 16px;
  align-items: center;
  font-weight: 800;
}

.strength-heading {
  grid-template-columns: 92px 1fr 48px;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.strength-heading span:last-child {
  grid-column: 2 / 4;
}

.progress-track {
  position: relative;
  display: block;
  height: 10px;
  overflow: hidden;
  background: #343b44;
}

.progress-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--value) * 1%);
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.is-visible .progress-track span {
  animation: bar-grow 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.is-visible .strength-row b {
  animation: pop-in 0.55s ease forwards;
}

.board {
  background: var(--soft);
}

.people-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.person {
  padding: 26px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.25s ease;
}

.person.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.person:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.person img {
  width: 104px;
  height: 104px;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: var(--shadow);
}

.role {
  margin: 8px 0 14px;
  color: var(--blue) !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.person a {
  display: inline-block;
  margin-top: 6px;
  color: var(--blue);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 54px 6vw;
  text-align: center;
  border-top: 1px solid #2e343b;
}

.stats-band strong {
  display: block;
  color: var(--gold);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.price-card {
  position: relative;
  padding: 32px;
  border: 1px solid #d6dee8;
  outline: 1px solid rgba(11, 111, 179, 0.08);
  box-shadow: 0 18px 42px rgba(21, 38, 60, 0.1);
}

.price-card.featured {
  box-shadow: 0 20px 48px rgba(21, 38, 60, 0.13);
}

.price {
  margin: 14px 0 20px;
  color: var(--blue);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 16px;
}

.price-card ul {
  padding-left: 18px;
  margin: 0 0 24px;
  color: #48515b;
}

.monthly-list {
  display: grid;
  gap: 7px;
  list-style: none;
  padding-left: 0 !important;
}

.monthly-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.badge {
  display: inline-block;
  padding: 9px 12px;
  color: white;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  background: #ca3f45;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: white;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  border-radius: 4px;
  background: var(--blue);
  cursor: pointer;
}

.button.ghost {
  color: var(--blue);
  background: #e8f3fb;
}

.bank {
  margin: 32px 0 0;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.sponsor-band {
  background: #eef4f8;
}

.sponsor-band a {
  justify-self: end;
  display: block;
  width: min(420px, 100%);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.timeline article {
  padding: 26px;
  border-top: 4px solid var(--gold);
}

time {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.clubinfo {
  color: white;
  background: #24465a;
}

.clubinfo p,
.clubinfo .eyebrow {
  color: #d8eaf5;
}

.info-list {
  display: grid;
  gap: 14px;
}

.map-only {
  min-height: 100%;
}

.info-list span {
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.map-embed {
  width: 100%;
  min-height: 260px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
}

.map-embed-large {
  min-height: 390px;
}

.club-detail {
  display: grid;
  gap: 28px;
  background: var(--soft);
}

.club-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: 28px;
}

.club-detail .content-panel {
  overflow: hidden;
}

.club-detail h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.club-detail h3 {
  margin: 22px 0 10px;
  font-size: 21px;
}

.club-detail a {
  color: var(--blue);
  font-weight: 800;
}

.club-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.date-list,
.fee-list {
  display: grid;
  gap: 8px 22px;
  margin: 16px 0 28px;
  padding-left: 20px;
}

.date-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-image {
  width: 100%;
  max-height: 420px;
  margin-top: 24px;
  object-fit: cover;
}

.contact {
  align-items: start;
  background: white;
}

form {
  display: grid;
  gap: 16px;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

label {
  display: grid;
  gap: 7px;
  color: #4d5660;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  border: 1px solid #cfd6de;
  border-radius: 4px;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(11, 111, 179, 0.18);
  border-color: var(--blue);
}

footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 26px 6vw;
  color: #cbd2da;
  background: var(--charcoal);
}

footer a {
  color: white;
}

@keyframes bar-grow {
  to {
    transform: scaleX(1);
  }
}

@keyframes pop-in {
  0% {
    transform: scale(0.7);
  }
  70% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes speed-sweep {
  0%,
  58% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 1000px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .main-nav a {
    padding: 4px 0;
  }

  .feature-grid,
  .timeline,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .people-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-band,
  .sponsor-band,
  .clubinfo,
  .contact,
  .club-detail-grid,
  .club-columns {
    grid-template-columns: 1fr;
  }

  .sponsor-band a {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    bottom: 10%;
  }

  .section,
  .page-section,
  .split-band,
  .sponsor-band,
  .clubinfo,
  .contact {
    padding: 62px 22px;
  }

  .feature-grid,
  .people-grid,
  .pricing-grid,
  .timeline,
  .content-grid,
  .date-list,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .stats-band {
    gap: 28px;
  }

  footer {
    flex-direction: column;
    align-items: center;
  }
}
