:root {
  --black: #090a0c;
  --coal: #111317;
  --ink: #17191d;
  --muted: #69707b;
  --line: #dfe3e8;
  --paper: #f6f5f1;
  --white: #ffffff;
  --gold: #f2c230;
  --gold-dark: #c7950a;
  --blue: #2767c7;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(9, 10, 12, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 84px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.18));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.9rem;
  font-weight: 800;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
}

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

.main-nav a[aria-current="page"] {
  color: var(--gold);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  grid-template-columns: 18px auto;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #111317;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  grid-column: 1;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.menu-toggle span:nth-child(1) {
  grid-row: 1;
}

.menu-toggle span:nth-child(2) {
  grid-row: 2;
}

.menu-toggle span:nth-child(3) {
  grid-row: 3;
}

.menu-toggle strong {
  grid-column: 2;
  grid-row: 1 / 4;
  font-size: 0.86rem;
}

.mobile-menu {
  grid-column: 1 / -1;
  display: none;
  gap: 16px;
  padding: 14px 0 4px;
}

.mobile-nav,
.mobile-actions {
  display: grid;
  gap: 8px;
}

.mobile-nav a,
.mobile-actions a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.mobile-actions a {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 0.9rem;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

button.button {
  font-family: inherit;
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-primary {
  background: var(--gold);
  color: #111;
  box-shadow: 0 16px 34px rgba(242, 194, 48, 0.18);
}

.button-primary:hover {
  background: #ffd84d;
}

.button-dark {
  background: var(--coal);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-blue {
  background: var(--blue);
  color: var(--white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.95) 0%, rgba(7, 8, 10, 0.78) 38%, rgba(7, 8, 10, 0.14) 72%),
    linear-gradient(0deg, rgba(9, 10, 12, 0.8), rgba(9, 10, 12, 0.05) 44%);
}

.hero-content {
  position: relative;
  width: min(780px, 92vw);
  padding: 118px 0 210px clamp(22px, 8vw, 132px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker.dark {
  color: var(--gold-dark);
}

.hero h1 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.01em;
  line-height: 0.98;
}

section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
}

.hero h1 span {
  color: var(--gold);
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.55;
}

.hero-note {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  font-weight: 800;
}

.match-board {
  position: relative;
  z-index: 5;
  width: min(1320px, calc(100% - 36px));
  margin: -120px auto 0;
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 0.95fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.match-card {
  min-height: 280px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(145deg, #171a1f, #101216);
}

.match-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
}

.versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 26px 0;
}

.versus > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #08090b;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.club-logo {
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--gold);
}

.club-logo.is-hidden {
  visibility: hidden;
}

.match-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

select,
input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  font: inherit;
}

.results-card select {
  color: var(--black);
  background: var(--gold);
  border: 0;
  font-weight: 900;
}

.result-list {
  display: grid;
  margin-top: 12px;
}

.result-row,
.source-row {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.score {
  color: var(--gold);
  font-weight: 900;
}

.data-note,
.text-link {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 900;
}

.inline-cta {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold-dark);
  font-weight: 900;
}

.team-source-list {
  display: grid;
}

.source-row {
  grid-template-columns: 70px 1fr auto;
}

.section-light {
  background: var(--paper);
  color: var(--black);
}

.fixtures {
  padding: 84px clamp(22px, 7vw, 110px) 30px;
}

.fixtures-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.fixtures-heading p:not(.section-kicker) {
  max-width: 720px;
  color: #3f454d;
  line-height: 1.7;
}

.fixture-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.fixture-controls label {
  display: grid;
  gap: 8px;
  color: #20242a;
  font-size: 0.82rem;
  font-weight: 900;
}

.fixture-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.empty-state {
  margin: 0;
  padding: 26px 0;
  color: #59616b;
  font-weight: 800;
}

.fixture-row {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--black);
}

.fixture-row::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: var(--line);
}

.fixture-row.is-home::before {
  background: var(--gold);
}

.fixture-row.is-away::before {
  background: #8c96a3;
}

.fixture-row.is-home {
  background: linear-gradient(90deg, rgba(242, 194, 48, 0.08), transparent 42%);
}

.fixture-row.is-away {
  background: linear-gradient(90deg, rgba(140, 150, 163, 0.08), transparent 42%);
}

.fixture-row strong {
  font-weight: 900;
}

.fixture-row small,
.fixture-row span {
  color: #59616b;
}

.fixture-pill {
  display: inline-flex;
  justify-content: center;
  min-width: 88px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 900;
}

.place-badge {
  display: inline-flex;
  justify-content: center;
  min-width: 86px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef1f4;
  color: #20242a !important;
  font-size: 0.76rem;
  font-weight: 900;
}

.is-home .place-badge {
  background: rgba(242, 194, 48, 0.24);
}

.vision {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: clamp(28px, 7vw, 92px);
  padding: 94px clamp(22px, 7vw, 110px) 76px;
}

.section-copy h2,
.supporters h2,
.shop-strip h2,
.join h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
}

.section-copy p:not(.section-kicker) {
  max-width: 650px;
  color: #30343a;
  line-height: 1.72;
  font-size: 1.05rem;
}

.section-copy.invert p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.stat-strip div,
.sponsor-main,
.sponsor-grid a,
.sponsor-grid div,
.package-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stat-strip div {
  display: grid;
  align-content: center;
  min-height: 178px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 20px 42px rgba(9, 10, 12, 0.08);
}

.stat-strip strong {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.stat-strip span {
  margin-top: 6px;
  font-weight: 900;
}

.values {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(24px, 6vw, 72px);
  padding: 0 clamp(22px, 7vw, 110px) 82px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.value-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 180px;
  padding: 24px;
  background: var(--white);
}

.value-grid strong {
  font-size: 1.15rem;
  font-weight: 900;
}

.value-grid span {
  color: #4a5059;
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
}

.dark-panel,
.youth-panel {
  padding: clamp(34px, 6vw, 78px);
}

.dark-panel {
  background: #0d0f12;
}

.dark-panel h2,
.youth-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 28px;
}

.team-cards,
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.image-card,
.community-grid article {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: var(--coal);
}

.image-card img,
.community-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
}

.image-card div,
.community-grid article h3,
.community-grid article p {
  position: absolute;
  left: 22px;
  right: 22px;
}

.image-card div {
  bottom: 22px;
}

.image-card h3,
.community-grid h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 1.65rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.image-card p,
.community-grid p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.image-card a {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 900;
}

.youth-panel {
  background: var(--paper);
  color: var(--black);
}

.youth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 22px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.youth-grid div {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: var(--paper);
  text-align: center;
}

.youth-panel p {
  margin-bottom: 24px;
  color: #30343a;
  line-height: 1.72;
}

.youth-faq {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
}

.youth-faq details {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.youth-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.youth-faq p {
  margin: 10px 0 0;
  font-size: 0.94rem;
}

.youth-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.community {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 34px;
  padding: clamp(42px, 6vw, 76px) clamp(22px, 7vw, 110px);
  background: #0d0f12;
}

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

.community-grid article {
  min-height: 260px;
}

.community-grid article h3 {
  bottom: 76px;
}

.community-grid article p {
  bottom: 18px;
  margin: 0;
}

.supporters {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(28px, 6vw, 80px);
  padding: 76px clamp(22px, 7vw, 110px);
}

.sponsor-main {
  display: grid;
  gap: 16px;
  padding: 30px;
  margin: 22px 0 14px;
}

.sponsor-main span {
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sponsor-main img {
  width: min(330px, 80%);
}

.sponsor-grid img {
  width: auto;
  max-width: 86%;
  max-height: 58px;
  object-fit: contain;
}

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

.sponsor-grid a,
.sponsor-grid div {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px;
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.package-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.package-grid strong {
  font-size: 1.05rem;
}

.package-grid span {
  color: #4a5059;
  line-height: 1.55;
}

.shop-strip {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 28px;
  padding: 46px clamp(22px, 7vw, 110px);
  background: #0b0d10;
}

.shop-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.shop-items a {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  place-items: end start;
  min-height: 146px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(242, 194, 48, 0.08), rgba(21, 24, 29, 0.98)),
    linear-gradient(145deg, #24272d, #15181d);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.shop-items a:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 194, 48, 0.55);
}

.shop-items img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px 16px 28px;
  opacity: 0.82;
}

.shop-items span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 4px;
  background: rgba(9, 10, 12, 0.78);
  color: var(--gold);
  font-weight: 900;
}

.join {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding: 76px clamp(22px, 7vw, 110px);
}

.join-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}

.join-form label {
  display: grid;
  gap: 8px;
  color: #20242a;
  font-weight: 900;
}

.join-form label:nth-child(3),
.join-form .check-field,
.join-form .spam-note,
.join-form .form-status,
.join-form button {
  grid-column: 1 / -1;
}

.button:disabled,
button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: clamp(22px, 4vw, 64px);
  padding: 42px clamp(22px, 7vw, 110px);
  background: #0a0b0e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer img {
  width: 100px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.site-footer a {
  color: var(--gold);
}

.subhero {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
  padding: 130px clamp(22px, 7vw, 110px) 82px;
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.96), rgba(9, 10, 12, 0.78)),
    url("assets/algajad-hall.jpg") center / cover;
}

.subhero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-family: "Anton", Impact, sans-serif;
  line-height: 1.08;
  text-wrap: balance;
}

.subhero p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.vision-story {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(30px, 7vw, 100px);
  padding: 82px clamp(22px, 7vw, 110px);
}

.story-lead {
  position: sticky;
  top: 110px;
  align-self: start;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
}

.story-lead p {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.story-text {
  display: grid;
  gap: 22px;
  max-width: 820px;
}

.story-text p {
  margin: 0;
  color: #30343a;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.8;
}

.vision-path {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: clamp(28px, 6vw, 82px);
  padding: 0 clamp(22px, 7vw, 110px) 84px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.path-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: 26px;
  background: var(--white);
}

.path-grid span {
  color: var(--gold-dark);
  font-weight: 900;
}

.path-grid strong {
  font-size: 1.3rem;
  font-weight: 900;
}

.path-grid p {
  margin: 0;
  color: #4a5059;
  line-height: 1.65;
}

.vision-image-band {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 70px clamp(22px, 7vw, 110px);
  background: #0d0f12;
}

.vision-image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.vision-image-band > div {
  position: relative;
  max-width: 680px;
}

.vision-image-band h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.youth-subhero {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.96), rgba(9, 10, 12, 0.6)),
    url("assets/u11-medalid.jpg") center / cover;
}

.youth-register {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: clamp(28px, 6vw, 84px);
  padding: 78px clamp(22px, 7vw, 110px);
}

.register-panel {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  min-height: 320px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 24px 58px rgba(9, 10, 12, 0.12);
}

.register-panel img {
  width: 104px;
}

.register-panel strong {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.register-panel span {
  line-height: 1.6;
  font-weight: 800;
}

.youth-groups,
.youth-locations,
.youth-faq-page {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(28px, 6vw, 82px);
  padding: 0 clamp(22px, 7vw, 110px) 84px;
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.group-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 24px;
  background: var(--white);
}

.group-grid strong {
  font-size: 1.3rem;
  font-weight: 900;
}

.group-grid span {
  color: var(--gold-dark);
  font-weight: 900;
}

.group-grid p {
  margin: 0;
  color: #4a5059;
  line-height: 1.6;
}

.parent-guide {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 580px;
  background: #0d0f12;
}

.guide-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.guide-content {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 82px);
}

.guide-content h2 {
  color: var(--white);
  margin-bottom: 28px;
}

.guide-list {
  display: grid;
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.guide-list article {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.guide-list strong {
  color: var(--gold);
  font-weight: 900;
}

.guide-list p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.location-list span {
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: #4a5059;
  line-height: 1.65;
}

.matches-subhero {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.96), rgba(9, 10, 12, 0.6)),
    url("assets/u11-medalid.jpg") center / cover;
}

.team-subhero {
  min-height: 500px;
  padding-bottom: 126px;
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.97), rgba(9, 10, 12, 0.68) 42%, rgba(9, 10, 12, 0.25)),
    url("assets/u15-saal.jpg") center / cover;
}

.secondary-team {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.96), rgba(9, 10, 12, 0.58)),
    url("assets/algajad-hall.jpg") center / cover;
}

body[data-team-page="u13-i"] .team-subhero {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.97), rgba(9, 10, 12, 0.68) 42%, rgba(9, 10, 12, 0.28)),
    url("assets/u13-i-hero.jpg") center 42% / cover;
}

@supports (background-image: image-set(url("assets/u13-i-hero.webp") type("image/webp"))) {
  body[data-team-page="u13-i"] .team-subhero {
    background:
      linear-gradient(90deg, rgba(9, 10, 12, 0.97), rgba(9, 10, 12, 0.68) 42%, rgba(9, 10, 12, 0.28)),
      image-set(
        url("assets/u13-i-hero.webp") type("image/webp"),
        url("assets/u13-i-hero.jpg") type("image/jpeg")
      ) center 42% / cover;
  }
}

.supporters-subhero {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.96), rgba(9, 10, 12, 0.62)),
    url("assets/algajad-hall.jpg") center / cover;
}

.contact-subhero {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.96), rgba(9, 10, 12, 0.62)),
    url("assets/u15-saal.jpg") center / cover;
}

.contact-hero,
.supporters-hero {
  min-height: 440px;
}

.matches-page {
  padding: 82px clamp(22px, 7vw, 110px);
}

.big-list .fixture-row {
  grid-template-columns: 110px 1fr 100px 100px;
}

.teams-page,
.supporter-page,
.package-page,
.contact-page {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 82px);
  padding: 78px clamp(22px, 7vw, 110px);
}

.teams-page {
  display: block;
}

.team-tabs {
  position: relative;
  z-index: 7;
  width: min(1180px, calc(100% - 44px));
  margin: -42px auto 0;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px 10px 0 0;
  background: linear-gradient(145deg, #171a1f, #0f1115);
  box-shadow: 0 18px 46px rgba(9, 10, 12, 0.28);
}

.team-tabs a {
  flex: 1 0 118px;
  min-height: 54px;
  display: grid;
  place-items: center;
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.team-tabs a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: transparent;
  transform: translateX(-50%);
}

.team-tabs a:first-child,
.team-tabs a:hover {
  color: var(--gold);
}

.team-tabs a:first-child::after,
.team-tabs a:hover::after {
  background: var(--gold);
}

.team-overview {
  position: relative;
  z-index: 6;
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(28px, 5vw, 54px);
  border-radius: 0 0 12px 12px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 24px 76px rgba(9, 10, 12, 0.14);
}

.teams-page-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.team-list-card {
  display: grid;
  gap: 16px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.team-list-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 194, 48, 0.75);
  box-shadow: 0 18px 45px rgba(22, 24, 28, 0.12);
}

.team-list-card > span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-list-card strong {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.team-list-card p {
  margin: 0;
  color: #4b525b;
  font-weight: 800;
}

.team-list-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.team-list-card small {
  padding: 6px 8px;
  border-radius: 4px;
  background: #f0f1f2;
  color: #333941;
  font-weight: 900;
}

.team-facts,
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-self: start;
}

.team-facts div,
.info-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.team-facts span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-facts strong {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  overflow-wrap: break-word;
  word-break: normal;
}

#team-email {
  font-size: clamp(0.98rem, 1.25vw, 1.2rem);
  letter-spacing: -0.02em;
}

.team-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 clamp(22px, 7vw, 110px) 82px;
}

.team-highlights {
  display: grid;
  gap: 22px;
  padding: 0 clamp(22px, 7vw, 110px) 72px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-self: start;
}

.fact-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(9, 10, 12, 0.05);
}

.fact-grid span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fact-grid strong {
  color: var(--black);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.fact-grid small {
  color: #68717c;
  font-weight: 800;
  line-height: 1.35;
}

.roster-section {
  display: grid;
  gap: 22px;
  padding: 0 clamp(22px, 7vw, 110px) 86px;
}

.player-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.player-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
}

.player-row > strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

.player-row span {
  display: grid;
  gap: 4px;
  font-weight: 900;
}

.player-row small {
  color: #68717c;
  font-weight: 800;
}

.team-match-row,
.team-result-row {
  display: grid;
  align-items: center;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.team-match-row:hover,
.team-result-row:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 194, 48, 0.7);
  box-shadow: 0 14px 32px rgba(9, 10, 12, 0.08);
}

.team-match-row {
  grid-template-columns: 112px 1fr auto;
  gap: 18px;
}

.team-match-row.is-featured {
  min-height: 108px;
  background: linear-gradient(105deg, #fff9df, #ffffff 58%);
}

.match-date,
.team-result-row > span {
  display: grid;
  gap: 3px;
  font-weight: 900;
}

.match-date small,
.team-result-row small,
.team-match-row small {
  color: #6b737d;
  font-weight: 800;
}

.team-result-row {
  grid-template-columns: 104px 1fr auto 1fr auto;
  gap: 14px;
}

.team-result-row b {
  min-width: 62px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 900;
}

.team-result-row em {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dfe3e8;
  color: #22262b;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
}

.team-result-row em.is-win {
  background: var(--gold);
}

.team-result-row em.is-draw {
  background: #dfe3e8;
}

.team-result-row em.is-neutral {
  width: auto;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef0f2;
  color: #4a5059;
}

.league-table-section {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: clamp(24px, 5vw, 64px);
  padding: 0 clamp(22px, 7vw, 110px) 56px;
}

.league-table-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 18px 42px rgba(9, 10, 12, 0.06);
}

.league-table-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(105deg, #fff9df, #ffffff 62%);
}

.league-table-top span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.league-table-top strong {
  color: var(--black);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.league-table-wrap {
  overflow-x: auto;
}

.league-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.league-table th,
.league-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  white-space: nowrap;
}

.league-table th {
  background: #f6f7f8;
  color: #59616b;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.league-table th:nth-child(2),
.league-table td:nth-child(2) {
  min-width: 240px;
  text-align: left;
}

.league-table a {
  color: inherit;
  font-weight: 900;
}

.league-table tr.is-rae {
  background: rgba(242, 194, 48, 0.16);
}

.league-table tr.is-rae td:first-child,
.league-table tr.is-rae td:last-child {
  color: var(--gold-dark);
  font-weight: 900;
}

.team-video-section {
  display: grid;
  gap: 22px;
  padding: 0 clamp(22px, 7vw, 110px) 82px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.video-card {
  overflow: hidden;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 14px 36px rgba(9, 10, 12, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 194, 48, 0.75);
  box-shadow: 0 18px 45px rgba(9, 10, 12, 0.12);
}

.video-thumb {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 18% 12%, rgba(242, 194, 48, 0.22), transparent 34%),
    linear-gradient(145deg, #171a1f, #0d0f12);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.035);
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 10, 12, 0.48), rgba(9, 10, 12, 0.06));
}

.video-provider {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(9, 10, 12, 0.78);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.video-play-mark {
  position: relative;
  z-index: 2;
  display: block;
  width: 58px;
  height: 58px;
  margin: 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 16px 42px rgba(242, 194, 48, 0.26);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-play-mark::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--black);
}

.video-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.video-card-body span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.video-card-body h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.video-card-body p {
  margin: 0;
  color: #68717c;
  font-weight: 800;
}

.video-card-body em {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.video-meta strong {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

.video-meta small {
  color: #4b525b;
  font-weight: 900;
}

.team-join-cta {
  width: min(1320px, calc(100% - 44px));
  margin: -36px auto 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 12px;
  background:
    radial-gradient(circle at 0% 50%, rgba(242, 194, 48, 0.16), transparent 32%),
    linear-gradient(145deg, #171a1f, #0d0f12);
  color: var(--white);
}

.team-join-cta span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-join-cta h2 {
  margin: 4px 0 8px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.team-join-cta p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.seo-team-fallback {
  display: grid;
  gap: 18px;
  width: min(1320px, calc(100% - 44px));
  margin: -36px auto 80px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
}

.seo-team-fallback h2,
.seo-team-fallback h3,
.seo-team-fallback p {
  margin: 0;
}

.seo-team-fallback h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.seo-team-fallback h3 {
  margin-top: 10px;
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-team-fallback ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #3e444d;
  line-height: 1.55;
}

.community-subhero {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.96), rgba(9, 10, 12, 0.62)),
    url("assets/u11-medalid.jpg") center / cover;
}

.community-page {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 6vw, 82px);
  padding: 78px clamp(22px, 7vw, 110px);
}

.community-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.community-feature-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.community-feature-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 900;
}

.community-feature-grid p {
  margin: 0;
  color: #4a5059;
  line-height: 1.65;
}

.supporter-wall {
  display: grid;
  gap: 14px;
}

.package-grid-large {
  align-self: start;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--black);
}

.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 0;
  line-height: 1.65;
  font-weight: 800;
}

.info-grid strong {
  font-size: 1.18rem;
  font-weight: 900;
}

.info-grid span {
  color: #4a5059;
  line-height: 1.6;
}

.info-grid a {
  color: var(--gold-dark);
  font-weight: 900;
}

.contact-directory {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 64px clamp(22px, 7vw, 110px) 36px;
}

.contact-directory article,
.contact-form-panel,
.partner-value,
.partner-benefits,
.partner-impact {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
}

.contact-directory article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 230px;
  padding: 24px;
}

.contact-directory strong {
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.22;
}

.contact-directory p {
  margin: 0;
  color: #4a5059;
  line-height: 1.65;
}

.contact-directory a:not(.inline-cta) {
  color: inherit;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

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

.inline-cta.as-button {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  padding: 36px clamp(22px, 7vw, 110px) 72px;
}

.contact-form-panel {
  padding: clamp(24px, 4vw, 38px);
}

.form-intro {
  margin-bottom: 24px;
}

.form-intro h2 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.form-intro p {
  max-width: 620px;
  margin: 0;
  color: #4a5059;
  line-height: 1.7;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: #20242a;
  font-weight: 900;
}

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #20242a;
}

.field-label span,
.check-field .check-text span,
.join-form .check-field > span {
  color: #d22d2d;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  background: #fff;
  color: var(--black);
  font: inherit;
}

.form-grid textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

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

.check-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: #3e444d;
  font-size: 0.88rem;
  line-height: 1.45;
}

.check-field input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
}

.check-text {
  color: #3e444d;
}

.form-trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-actions-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}

.spam-note {
  margin: 0;
  color: #68717c;
  font-size: 0.85rem;
  font-weight: 800;
}

.form-status {
  margin: 14px 0 0;
  color: #b02a2a;
  font-weight: 900;
}

.form-status[data-status="success"] {
  color: #176b37;
}

.form-status[data-status="pending"] {
  color: #5d6673;
}

.call-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 0%, rgba(242, 194, 48, 0.2), transparent 42%),
    linear-gradient(145deg, #171a1f, #0d0f12);
  color: var(--white);
}

.call-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.call-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 clamp(22px, 7vw, 110px) 78px;
}

.contact-cta-grid a {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  border-radius: 12px;
  background: linear-gradient(145deg, #171a1f, #0d0f12);
  color: var(--white);
}

.contact-cta-grid strong {
  font-size: 1.25rem;
  font-weight: 900;
}

.contact-cta-grid span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.supporters-hero .hero-actions {
  margin-top: 26px;
}

.partner-value,
.partner-benefits,
.partner-impact {
  width: min(1320px, calc(100% - 44px));
  margin: 0 auto 18px;
  padding: clamp(24px, 4vw, 34px);
}

.partner-value h2,
.partner-impact h2 {
  margin: 0 0 22px;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.value-card-grid,
.impact-grid {
  display: grid;
  gap: 14px;
}

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

.impact-grid {
  grid-template-columns: repeat(5, 1fr);
}

.value-card-grid article,
.impact-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbfa;
}

.value-card-grid span {
  color: var(--gold-dark);
  font-size: 1.8rem;
  font-weight: 900;
}

.value-card-grid strong,
.impact-grid strong {
  font-size: 1.12rem;
  font-weight: 900;
}

.value-card-grid p,
.impact-grid p {
  margin: 0;
  color: #4a5059;
  line-height: 1.65;
}

.partner-benefits {
  display: grid;
  grid-template-columns: 0.46fr 1.54fr;
  gap: 28px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.benefit-list span {
  min-height: 82px;
  display: grid;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfbfa;
  color: #30343a;
  font-weight: 800;
  line-height: 1.45;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 7, 9, 0.72);
  backdrop-filter: blur(8px);
}

.modal-backdrop[hidden] {
  display: none;
}

.sponsor-modal {
  position: relative;
  width: min(560px, 100%);
  max-height: min(92dvh, 860px);
  overflow: auto;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 14px;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f1f2f4;
  color: var(--black);
  font-size: 1.5rem;
  cursor: pointer;
}

.sponsor-form .button {
  width: 100%;
  margin-top: 14px;
}

.documents-strip {
  padding: 64px clamp(22px, 7vw, 110px);
  background: #0d0f12;
}

.documents-strip h2 {
  max-width: 920px;
  color: var(--white);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .match-board,
  .fixtures-heading,
  .fixture-controls,
  .vision,
  .values,
  .subhero,
  .vision-story,
  .vision-path,
  .path-grid,
  .youth-register,
  .youth-groups,
  .youth-locations,
  .youth-faq-page,
  .group-grid,
  .parent-guide,
  .teams-page,
  .team-overview,
  .team-highlights,
  .team-data,
  .roster-section,
  .league-table-section,
  .team-video-section,
  .supporter-page,
  .package-page,
  .contact-page,
  .community-page,
  .split-section,
  .community,
  .supporters,
  .shop-strip,
  .join,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .community-grid,
  .team-cards,
  .value-grid,
  .player-list,
  .video-grid,
  .teams-page-list,
  .fact-grid,
  .team-facts,
  .info-grid,
  .contact-directory,
  .contact-form-section,
  .contact-cta-grid,
  .value-card-grid,
  .impact-grid,
  .partner-benefits,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .team-tabs {
    overflow-x: auto;
  }

  .team-result-row {
    grid-template-columns: 86px 1fr auto;
  }

  .team-result-row strong:nth-of-type(2) {
    grid-column: 2 / 3;
  }

  .team-result-row em {
    grid-row: 1 / span 2;
    grid-column: 3;
  }

  .contact-directory {
    padding-top: 42px;
  }

  .contact-form-section {
    padding-top: 24px;
  }

  .call-card {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    grid-template-columns: auto 1fr;
    justify-items: center;
    gap: 12px;
  }

  .brand img {
    width: 96px;
  }

  .header-actions,
  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(7, 8, 10, 0.96) 0%, rgba(7, 8, 10, 0.74) 58%, rgba(7, 8, 10, 0.25) 100%);
  }

  .hero-content {
    width: 100%;
    padding: 310px 18px 150px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .subhero {
    padding: 92px 18px 56px;
  }

  .subhero h1 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
    line-height: 1.1;
  }

  .story-lead {
    position: static;
  }

  .match-board {
    width: calc(100% - 24px);
    margin-top: -96px;
  }

  .versus,
  .stat-strip,
  .youth-grid,
  .community-grid,
  .sponsor-grid,
  .package-grid,
  .shop-items,
  .teams-page-list,
  .video-grid,
  .fact-grid,
  .location-list,
  .community-feature-grid,
  .form-grid,
  .benefit-list,
  .join-form {
    grid-template-columns: 1fr;
  }

  .contact-directory,
  .contact-form-section,
  .contact-cta-grid,
  .partner-value,
  .partner-benefits,
  .partner-impact {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-directory,
  .contact-form-section,
  .contact-cta-grid,
  .partner-value,
  .partner-benefits,
  .partner-impact {
    padding-bottom: 42px;
  }

  .form-actions-line {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .form-actions-line {
    flex-direction: column;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .sponsor-modal {
    width: 100%;
    max-height: 92dvh;
    border-radius: 18px 18px 0 0;
  }

  .team-subhero {
    min-height: 420px;
    padding-bottom: 104px;
  }

  .team-overview,
  .team-tabs,
  .team-join-cta {
    width: min(100% - 24px, 1320px);
  }

  .team-tabs a {
    min-height: 50px;
  }

  .team-match-row,
  .team-result-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .team-result-row em {
    width: auto;
    height: auto;
    justify-self: start;
    padding: 5px 10px;
    border-radius: 999px;
  }

  .team-join-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .result-row,
  .source-row,
  .fixture-row {
    grid-template-columns: 1fr;
  }

  .big-list .fixture-row {
    grid-template-columns: 1fr;
  }

  .card-topline {
    align-items: stretch;
    flex-direction: column;
  }
}
