:root {
  --red: #b90008;
  --deep-red: #760006;
  --ink: #181818;
  --muted: #646464;
  --paper: #fffafa;
  --line: #eadcdc;
  --grass: #12613c;
  --gold: #e0b44c;
  --shadow: 0 20px 60px rgba(38, 15, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(118, 0, 6, 0.96);
  box-shadow: 0 10px 40px rgba(42, 0, 3, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand span {
  max-width: 280px;
  line-height: 1.05;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep-red);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(118, 0, 6, 0.92), rgba(118, 0, 6, 0.46)),
    radial-gradient(circle at 78% 44%, rgba(224, 180, 76, 0.3), transparent 30%),
    linear-gradient(135deg, #13633d 0%, #123d2d 54%, #760006 54%, #b90008 100%);
}

.field-lines {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: min(620px, 90vw);
  aspect-ratio: 1;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.field-lines::before,
.field-lines::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.field-lines::after {
  inset: 41%;
  background: rgba(255, 255, 255, 0.16);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 160px;
}

.hero-logo {
  width: clamp(96px, 14vw, 158px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 22px 0 10px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3.25rem, 8vw, 7.7rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

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

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.score-strip {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translateX(-50%);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.score-strip div {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.score-strip div:last-child {
  border-right: 0;
}

.score-strip strong {
  color: var(--red);
  font-size: clamp(1.1rem, 3vw, 1.65rem);
}

.score-strip span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-note {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.55;
  font-weight: 700;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.news-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.08), rgba(24, 24, 24, 0.82)),
    linear-gradient(135deg, var(--red), var(--grass));
}

.featured-news {
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.02), rgba(24, 24, 24, 0.78)),
    linear-gradient(135deg, var(--deep-red), var(--red) 46%, #efefef 46%, #efefef 54%, var(--grass) 54%);
}

.news-card span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.news-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.split-section {
  width: 100%;
  max-width: none;
  padding: 84px clamp(18px, 4vw, 56px);
  background: #fff;
}

.split-section .section-heading,
.fixture-panel {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.fixture-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
}

.next-match,
.fixture-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.next-match {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(118, 0, 6, 0.2), rgba(118, 0, 6, 0.96)),
    linear-gradient(135deg, var(--grass), var(--deep-red));
}

.next-match span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.next-match h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.next-match p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.fixture-list {
  overflow: hidden;
}

.fixture-row {
  display: grid;
  grid-template-columns: 72px 1fr 74px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}

.fixture-row:last-child {
  border-bottom: 0;
}

.fixture-row span {
  color: var(--red);
  font-weight: 800;
}

.fixture-row b {
  justify-self: center;
  color: var(--grass);
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.team-copy {
  padding: 32px;
  border-left: 8px solid var(--red);
  background: #fff;
}

.team-copy h3 {
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1;
}

.team-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.stats-grid div {
  min-height: 150px;
  display: grid;
  align-content: center;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.stats-grid strong {
  color: var(--red);
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  line-height: 0.95;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 700;
}

.gallery-section {
  padding-top: 20px;
}

.roster-section {
  width: 100%;
  max-width: none;
  padding: 84px clamp(18px, 4vw, 56px);
  background: #fff;
}

.roster-section .section-heading,
.roster-tabs,
.roster-group {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.roster-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.roster-tabs button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.roster-tabs button.active {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.roster-group {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.roster-group.active {
  display: grid;
}

.player-card {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 250, 0.98)),
    linear-gradient(135deg, rgba(185, 0, 8, 0.14), rgba(18, 97, 60, 0.16));
}

.player-card span {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--grass);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.player-card strong {
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1.1;
}

.player-card small {
  color: var(--muted);
  font-weight: 700;
}

.sponsors-section {
  padding-top: 72px;
}

.sponsor-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  min-height: 260px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(118, 0, 6, 0.94), rgba(118, 0, 6, 0.58)),
    repeating-linear-gradient(120deg, var(--red) 0 42px, var(--deep-red) 42px 84px, var(--grass) 84px 126px);
}

.sponsor-hero span,
.sponsor-grid span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.sponsor-hero h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1;
}

.sponsor-hero p {
  max-width: 600px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.sponsor-hero a {
  min-width: 136px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--deep-red);
  background: #fff;
  font-weight: 800;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.sponsor-grid article {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.sponsor-grid strong {
  color: var(--ink);
  font-size: 1.22rem;
}

.kit-showcase {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: stretch;
}

.kit-copy {
  display: grid;
  align-content: end;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.05), rgba(24, 24, 24, 0.84)),
    repeating-linear-gradient(90deg, #05090b 0 42px, var(--red) 42px 58px, #151515 58px 92px);
}

.kit-copy span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.kit-copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.kit-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.kit-image {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.kit-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: contain;
}

.photo-story {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.photo-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.02), rgba(24, 24, 24, 0.82));
}

.photo-card div {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  max-width: 680px;
  padding: 28px;
  color: #fff;
}

.photo-card span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.photo-card h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1;
}

.photo-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 48px clamp(18px, 4vw, 56px) 28px;
  color: #fff;
  background: var(--deep-red);
}

.site-footer img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.site-footer h2 {
  margin: 14px 0 6px;
  text-transform: uppercase;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
  font-weight: 700;
}

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

.contact-link {
  min-width: 330px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-link span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-link strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: #f5eeee;
  }

  .hero {
    display: block;
    min-height: auto;
  }

  .hero-content {
    padding-top: 132px;
    padding-bottom: 34px;
  }

  .score-strip,
  .news-grid,
  .fixture-panel,
  .team-layout,
  .kit-showcase,
  .roster-group,
  .sponsor-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .score-strip {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto 34px;
    transform: none;
  }

  .score-strip div {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .fixture-row b {
    justify-self: start;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sponsor-hero {
    align-items: start;
    flex-direction: column;
  }

  .kit-image img {
    min-height: 260px;
  }

  .photo-card,
  .photo-card img {
    min-height: 360px;
  }

  .photo-card div {
    padding: 22px;
  }

  .contact-link {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .brand span {
    max-width: 150px;
    line-height: 1;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-actions a {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
