:root {
  --brand-name: "The Women\2019s Football Hub";
  --ink: #151619;
  --ink-2: #303238;
  --muted: #6b7079;
  --line: #e6e8ec;
  --soft: #f6f7f9;
  --paper: #ffffff;
  --dark: #101114;
  --dark-2: #1b1d22;
  --red: #a71930;
  --red-2: #7e1025;
  --green: #1d6d48;
  --gold: #c79a35;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(12, 13, 16, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(167, 25, 48, 0.32);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 0.82rem;
}

.topbar-inner,
.section-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.nav-inner {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
}

.topbar strong {
  color: #fff;
}

.topbar a {
  color: #fff;
  opacity: 0.86;
}

.nav-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.nav-menu a {
  padding: 10px 7px;
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 750;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
  background: #f8eaed;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.site-search {
  display: flex;
  align-items: center;
  width: 190px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 10px 0 10px 14px;
  background: transparent;
  color: var(--ink);
}

.site-search button,
.nav-toggle {
  border: 0;
  cursor: pointer;
}

.site-search button {
  position: relative;
  width: 38px;
  height: 38px;
  color: transparent;
  background: transparent;
  font-weight: 900;
}

.site-search button::before {
  position: absolute;
  top: 10px;
  left: 9px;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid var(--red);
  border-radius: 50%;
}

.site-search button::after {
  position: absolute;
  top: 24px;
  left: 22px;
  width: 9px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: rotate(45deg);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 600px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.91) 0%, rgba(8, 9, 12, 0.70) 43%, rgba(8, 9, 12, 0.16) 78%),
    url("../img/hero-vrouwenvoetbal-platform.png") center right / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 86px 0 56px;
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  content: "";
  background: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
  margin-top: 30px;
}

.metric {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.metric strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--red);
}

.btn-primary:hover {
  background: var(--red-2);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.section {
  padding: 76px 0;
}

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

.section-dark {
  color: #fff;
  background: var(--dark);
}

.section-red {
  color: #fff;
  background: linear-gradient(135deg, var(--red-2), var(--red));
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-header h2,
.page-intro h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  font-weight: 900;
}

.section-header p,
.page-intro p,
.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-header p,
.section-red .section-header p,
.section-dark .lead,
.section-red .lead {
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 14, 17, 0.94), rgba(13, 14, 17, 0.80)),
    url("../img/hero-vrouwenvoetbal-platform.png") center / cover no-repeat;
}

.page-hero .section-inner {
  padding: 82px 0 72px;
}

.page-intro {
  max-width: 830px;
}

.page-intro p {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.breadcrumb a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 28px;
  align-items: stretch;
}

.feature-media {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(12, 13, 16, 0.1), rgba(12, 13, 16, 0.62)),
    url("../img/hero-vrouwenvoetbal-platform.png") center / cover no-repeat;
  border-radius: var(--radius);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(20, 21, 25, 0.03);
}

.card-dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--dark-2);
}

.card-accent {
  border-top: 4px solid var(--red);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}

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

.card-dark p,
.card-dark .meta,
.card-dark .tag-list {
  color: rgba(255, 255, 255, 0.72);
}

.card-link {
  margin-top: auto;
  color: var(--red);
  font-weight: 850;
}

.section-dark .card-link {
  color: #fff;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
}

.label,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
}

.label {
  color: #fff;
  background: var(--red);
}

.tag {
  color: var(--ink-2);
  background: #eef0f3;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 18px;
}

.story-card,
.news-card {
  min-height: 280px;
}

.club-card {
  min-height: 320px;
}

.profile-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: stretch;
}

.profile-panel {
  padding: 32px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(167, 25, 48, 0.92), rgba(16, 17, 20, 0.92)),
    url("../img/hero-vrouwenvoetbal-platform.png") center / cover no-repeat;
  border-radius: var(--radius);
}

.profile-panel h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.profile-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.stat {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-size: 1.3rem;
}

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

.event-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.event-date {
  display: grid;
  place-items: center;
  min-height: 72px;
  color: #fff;
  background: var(--dark);
  border-radius: var(--radius);
  text-align: center;
}

.event-date strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.event-date span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-item h3 {
  margin-bottom: 4px;
}

.event-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.filters,
.search-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px;
}

.search-panel input,
.search-panel select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.search-panel input {
  flex: 1 1 260px;
  padding: 0 14px;
}

.search-panel select {
  flex: 0 1 220px;
  padding: 0 12px;
}

.filter-chip {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  cursor: pointer;
  font-weight: 780;
}

.filter-chip.active,
.filter-chip:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.timeline-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.timeline-number {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.package {
  min-height: 360px;
}

.package .package-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.package-tier {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo-box {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 26px;
  align-items: start;
}

.form-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-2);
  font-weight: 820;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.field input,
.field select {
  min-height: 48px;
  padding: 0 12px;
}

.field textarea {
  min-height: 142px;
  padding: 12px;
  resize: vertical;
}

.field small,
.privacy-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.privacy-note {
  padding: 18px;
  border-left: 4px solid var(--red);
  background: #fff4f6;
  border-radius: var(--radius);
}

.form-status {
  min-height: 26px;
  margin-top: 12px;
  color: var(--green);
  font-weight: 800;
}

.empty-state {
  display: none;
  padding: 18px;
  border: 1px dashed #cfd3da;
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
}

.empty-state.visible {
  display: block;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--dark);
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-grid h2,
.footer-grid h3 {
  color: #fff;
}

.footer-grid ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

@media (max-width: 1200px) {
  .nav-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .site-header.is-open .nav-menu,
  .site-header.is-open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-header.is-open .nav-menu {
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .site-header.is-open .nav-actions {
    grid-row: 3;
    padding-bottom: 18px;
  }

  .site-header.is-open .site-search {
    width: 100%;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .hero {
    min-height: 620px;
    background:
      linear-gradient(90deg, rgba(8, 9, 12, 0.94), rgba(8, 9, 12, 0.76), rgba(8, 9, 12, 0.38)),
      url("../img/hero-vrouwenvoetbal-platform.png") center / cover no-repeat;
  }

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

  .feature-layout,
  .profile-split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 54px 0 38px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stat-list,
  .form-grid,
  .logo-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .section-header {
    display: block;
  }

  .feature-media {
    min-height: 270px;
  }

  .event-item {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .event-item .btn {
    grid-column: 1 / -1;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .topbar-inner,
  .nav-inner,
  .section-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .btn {
    width: 100%;
  }

  .card,
  .form-card,
  .profile-panel {
    padding: 20px;
  }
}

@media (max-width: 720px) {
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .metric {
    min-height: 78px;
    padding: 10px;
  }

  .metric strong {
    font-size: 1.16rem;
  }

  .metric span {
    font-size: 0.72rem;
  }
}
