:root {
  --black: #050505;
  --charcoal: #171717;
  --ink: #1c1713;
  --muted: #70655b;
  --orange: #f47c20;
  --orange-dark: #9f1f0f;
  --orange-deep: #5f0d08;
  --gold: #ffd762;
  --orange-soft: #fff2df;
  --white: #ffffff;
  --line: #eadfd4;
  --soft: #fbf6ef;
  --shadow: 0 24px 60px -42px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(16px);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--white);
}

.brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-text strong {
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-title {
  margin: 0;
  max-width: none;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.club-header .header-inner {
  min-height: 64px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.top-nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 0.95rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.76);
}

.top-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.top-nav .nav-cta,
.button.primary {
  color: var(--black);
  background: var(--orange);
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  gap: 5px;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-panel {
  padding: 12px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.96);
}

.menu-panel[hidden] {
  display: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.menu-grid a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.menu-grid a:last-child {
  border-bottom: 0;
}

.menu-grid strong {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.sticky-club-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 58;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.sticky-club-bar .header-inner {
  min-height: 66px;
}

.sticky-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.sticky-brand img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--white);
}

.sticky-brand span {
  overflow: hidden;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

body.has-sticky-club-bar .sticky-club-bar {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.has-sticky-club-bar .menu-panel {
  position: fixed;
  top: 66px;
  right: 0;
  left: 0;
  z-index: 57;
  max-height: calc(100vh - 66px);
  overflow: auto;
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  color: var(--black);
  border: 1px solid var(--line);
  background: var(--white);
}

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

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.9) 50%, rgba(95, 13, 8, 0.86) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 72px),
    var(--black);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 2px solid rgba(244, 124, 32, 0.32);
}

.hero::before {
  width: 520px;
  height: 520px;
  right: -170px;
  top: -150px;
  border-radius: 999px;
}

.hero::after {
  width: 380px;
  height: 220px;
  right: 9vw;
  bottom: -76px;
  border-radius: 0 0 220px 220px;
  border-top: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 116px);
  padding: clamp(54px, 8vw, 96px) 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4.2rem, 12vw, 9.7rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.02;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero p {
  max-width: 62ch;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 2vw, 1.2rem);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 14px;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 124, 32, 0.24), transparent 35%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.photo-frame > img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.74)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.18), transparent 55%);
}

.photo-logo {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.photo-logo img {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  border: 3px solid var(--white);
  background: var(--white);
}

.photo-logo strong {
  display: block;
  max-width: 13ch;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.45rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.source-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.38);
}

.source-card strong {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.source-card span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

section {
  padding: clamp(48px, 7vw, 82px) 0;
  scroll-margin-top: 82px;
}

.legacy-section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 82px;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-title p {
  font-size: 1rem;
}

.mini-label {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

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

.card,
.schedule-card,
.link-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card {
  padding: 22px;
}

.card h3,
.schedule-card h3,
.link-card h3 {
  margin-bottom: 12px;
}

.card p + p {
  margin-top: 12px;
}

.card .list li + li,
.compact-list li + li {
  margin-top: 9px;
}

.compact-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.soft-band {
  background: var(--orange-soft);
}

.orange-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 48%),
    var(--orange-dark);
}

.orange-band p {
  color: rgba(255, 255, 255, 0.78);
}

.join-steps {
  counter-reset: steps;
}

.step {
  position: relative;
  padding-left: 78px;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--black);
  background: var(--orange);
  font-weight: 900;
}

.schedule {
  background: var(--black);
  color: var(--white);
}

.schedule .section-title p {
  color: rgba(255, 255, 255, 0.72);
}

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

.schedule-card {
  overflow: hidden;
  background: #111;
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.schedule-card h3 {
  padding: 18px;
  color: var(--black);
  background: var(--orange);
}

.schedule-card ul,
.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-card li {
  padding: 15px 18px;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.5;
}

.schedule-card b {
  display: block;
  color: var(--white);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.price {
  padding: 16px;
  border-radius: var(--radius);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.price strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.5rem;
  color: var(--orange);
}

.session-actions {
  margin-top: 18px;
}

.fixtures {
  background:
    linear-gradient(180deg, var(--white), var(--orange-soft));
}

.home-next-fixtures {
  background: var(--white);
}

.home-next-fixtures .next-fixtures {
  margin-bottom: 0;
}

.next-fixtures {
  margin-bottom: 26px;
}

.next-fixtures-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.next-fixtures-heading h3 {
  margin: 4px 0 0;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1;
  text-transform: uppercase;
}

.next-fixtures-heading p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.next-fixtures-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.next-fixture-card {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.next-fixture-team {
  margin: 0;
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.next-fixture-home-away {
  width: fit-content;
  margin: 0;
  padding: 4px 7px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.next-fixture-home-away.is-home {
  color: var(--orange-dark);
  border-color: rgba(244, 124, 32, 0.5);
  background: var(--orange-soft);
}

.next-fixture-card h4 {
  margin: 2px 0 0;
  font-size: 1.08rem;
  line-height: 1.28;
}

.next-fixture-date,
.next-fixture-venue,
.next-fixture-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.5;
}

.next-fixture-date {
  color: var(--ink);
  font-weight: 900;
}

.next-fixture-venue span {
  color: var(--muted);
}

.next-fixture-link {
  width: fit-content;
  margin-top: 4px;
  color: var(--orange-dark);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.team-calendars {
  margin: 0 0 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

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

.team-calendar-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.team-calendar-card h4,
.team-calendar-card p {
  margin: 0;
}

.team-calendar-card h4 {
  font-size: 1.05rem;
  line-height: 1.3;
}

.team-calendar-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.calendar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calendar-actions .button {
  min-height: 38px;
  padding: 0.62rem 0.75rem;
}

.calendar-copy {
  cursor: pointer;
  font: inherit;
}

.calendar-copy-feedback {
  min-height: 1.35em;
  color: var(--orange-dark) !important;
  font-size: 0.78rem !important;
  font-weight: 800;
}

.follow-band {
  background:
    linear-gradient(180deg, var(--white), var(--orange-soft));
}

.player-info-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.section-stack {
  display: grid;
  gap: 16px;
}

.player-info-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
  gap: 16px;
  align-items: stretch;
}

.player-checklist,
.payment-card {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.player-checklist {
  display: grid;
  gap: 14px;
}

.info-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

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

.info-row strong {
  color: var(--black);
  font-weight: 900;
}

.info-row p {
  line-height: 1.55;
}

.payment-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.competitive-payment {
  grid-column: 1 / -1;
}

.player-updates {
  grid-column: 1 / -1;
}

#community-registration,
#team-registration {
  scroll-margin-top: 96px;
}

.support-subsection {
  margin-top: 16px;
}

.volunteer-section {
  display: grid;
  gap: 16px;
}

.volunteer-role-group {
  display: grid;
  gap: 12px;
}

.volunteer-role-group + .volunteer-role-group {
  margin-top: 18px;
}

.committee-roles {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.committee-roles > h3,
.volunteer-role-group > h3 {
  margin: 0;
}

.volunteer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 48%),
    var(--orange-dark);
}

.volunteer-intro p {
  color: rgba(255, 255, 255, 0.78);
}

.volunteer-intro a:not(.button) {
  color: var(--white);
  font-weight: 900;
}

.volunteer-roles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.role-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.role-card summary {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 48px 16px 18px;
  cursor: pointer;
  list-style: none;
}

.role-card summary::-webkit-details-marker {
  display: none;
}

.role-card summary::after {
  content: "+";
  position: absolute;
  top: 15px;
  right: 18px;
  color: var(--orange-dark);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.role-card[open] summary::after {
  content: "-";
}

.role-title {
  font-family: "Oswald", Impact, sans-serif;
  color: var(--black);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.role-holder {
  color: var(--orange-dark);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.35;
}

.role-holder--vacant {
  color: var(--muted);
}

.role-card .status-pill {
  justify-self: start;
}

.role-card ul {
  margin: 0;
  padding: 0 18px 18px 36px;
  color: var(--muted);
  line-height: 1.5;
}

.role-card li + li {
  margin-top: 7px;
}

.role-responsibility {
  color: var(--ink);
  font-weight: 800;
}

.feed-card,
.channel-strip,
.policy-downloads {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.follow-feed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.feed-card {
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 12px;
  overflow: hidden;
}

.feed-card p {
  line-height: 1.5;
}

.embedded-feed {
  width: 100%;
  height: 430px;
  border: 0;
  border-radius: calc(var(--radius) - 4px);
  background: var(--white);
}

.youtube-frame {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 315px;
}

.channel-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.social-channel,
.download-link,
.whatsapp-link {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
}

.social-channel {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 14px;
}

.social-channel strong {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  text-transform: uppercase;
}

.social-channel span {
  color: var(--muted);
  line-height: 1.45;
}

.social-channel-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-logo-button,
.social-brand-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  color: var(--white);
}

.social-logo-button {
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.social-logo-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px -12px rgba(0, 0, 0, 0.65);
}

.social-logo-button--facebook,
.social-brand-mark--facebook {
  background: #1877f2;
}

.social-logo-button--instagram,
.social-brand-mark--instagram {
  background: #c13584;
}

.social-logo-button--youtube,
.social-brand-mark--youtube {
  background: #ff0000;
}

.brand-icon {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.brand-icon--outline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

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

.whatsapp-link,
.download-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 16px;
  font-weight: 900;
}

.whatsapp-link {
  color: var(--ink);
  border-color: rgba(244, 124, 32, 0.36);
  background: #fff7f0;
}

.social-channel.whatsapp-link {
  display: grid;
  align-items: start;
}

.whatsapp-link span,
.download-link span {
  color: var(--muted);
  font-weight: 700;
}

.link-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.link-card .mini-label {
  color: var(--orange);
}

.policy-safeguarding {
  max-width: 560px;
}

.facilities-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.facilities-card > p {
  margin: 0;
}

.facilities-funding {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: calc(var(--radius) - 4px);
  color: var(--black);
  background: var(--orange);
}

.facilities-funding .mini-label {
  color: var(--black);
}

.facilities-funding strong {
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(2.45rem, 4vw, 3.45rem);
  line-height: 0.95;
}

.facilities-funding span:last-child {
  font-weight: 700;
  line-height: 1.4;
}

.footer-partners {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

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

.footer-partners-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.footer .partner-logo {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--white);
}

.footer .partner-logo:hover {
  border-color: var(--orange);
}

.footer .partner-logo--cheshire-west {
  border-color: #174b5b;
  background: #174b5b;
}

.footer .partner-logo img {
  display: block;
  max-width: 126px;
  max-height: 50px;
  object-fit: contain;
}

.policy-downloads {
  margin-top: 16px;
}

.policy-downloads h3 {
  margin-bottom: 12px;
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.download-link .status-pill {
  color: var(--orange-dark);
  background: var(--orange-soft);
  font-weight: 900;
}

.footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer .social-logo-button {
  width: 38px;
  height: 38px;
}

.footer .social-logo-button .brand-icon {
  width: 20px;
  height: 20px;
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

html[data-theme="light"] body {
  color: var(--ink);
  background: var(--white);
}

html[data-theme="light"] .site-header {
  position: relative;
  border-bottom: 0;
  background: var(--white);
  backdrop-filter: none;
}

html[data-theme="light"] .club-header {
  position: relative;
  overflow: hidden;
  min-height: clamp(390px, 42vw, 560px);
  background: url("/assets/court-hoop.jpg") center 62% / cover no-repeat;
}

html[data-theme="light"] .club-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04) 38%, rgba(255, 255, 255, 0) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 43%, rgba(255, 255, 255, 0.64) 61%, var(--white) 82%);
}

html[data-theme="light"] .club-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24%;
  pointer-events: none;
  background: var(--white);
}

html[data-theme="light"] .club-header .header-inner {
  position: relative;
  z-index: 2;
  align-items: flex-end;
  min-height: clamp(360px, 40vw, 522px);
  padding-bottom: clamp(22px, 4vw, 54px);
}

html[data-theme="light"] .brand,
html[data-theme="light"] .top-nav a {
  color: var(--ink);
}

html[data-theme="light"] .brand {
  gap: clamp(14px, 2vw, 24px);
}

html[data-theme="light"] .brand img {
  width: clamp(58px, 6vw, 84px);
  height: clamp(58px, 6vw, 84px);
  box-shadow: 0 16px 34px -26px rgba(0, 0, 0, 0.7);
}

html[data-theme="light"] .brand-title {
  font-size: clamp(2.05rem, 5vw, 4.5rem);
  line-height: 0.92;
  text-shadow: 0 18px 40px rgba(255, 255, 255, 0.86);
}

html[data-theme="light"] .menu-toggle {
  color: var(--ink);
  border-color: rgba(28, 23, 19, 0.18);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.82);
}

html[data-theme="light"] .menu-panel {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 40px -34px rgba(0, 0, 0, 0.36);
}

html[data-theme="light"] .sticky-club-bar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.5);
}

html[data-theme="light"] .sticky-brand {
  color: var(--ink);
}

html[data-theme="light"] .sticky-brand img {
  box-shadow: 0 12px 28px -22px rgba(0, 0, 0, 0.7);
}

html[data-theme="light"] .menu-grid a {
  color: var(--ink);
  border-color: var(--line);
}

html[data-theme="light"] .menu-grid a:hover {
  border-color: rgba(244, 124, 32, 0.42);
  color: var(--orange-dark);
}

html[data-theme="light"] .brand-text span {
  color: var(--muted);
}

html[data-theme="light"] .top-nav a:hover {
  color: var(--black);
  background: var(--orange-soft);
}

html[data-theme="light"] .hero {
  color: var(--black);
  background: var(--white);
  padding: 0;
}

html[data-theme="light"] .hero::before,
html[data-theme="light"] .hero::after {
  display: none;
}

html[data-theme="light"] .hero-grid {
  width: 100%;
  max-width: none;
  min-height: auto;
  padding: clamp(18px, 4vw, 42px) 0 clamp(48px, 7vw, 78px);
  display: block;
  gap: 0;
}

html[data-theme="light"] .hero-copy {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  text-align: left;
}

html[data-theme="light"] h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3rem, 5.1vw, 4.45rem);
  line-height: 0.92;
  white-space: nowrap;
}

html[data-theme="light"] .hero p {
  max-width: 64ch;
  margin-right: 0;
  margin-left: 0;
  margin-top: 0;
  color: #4f4036;
}

html[data-theme="light"] .button.secondary {
  color: var(--ink);
  border-color: rgba(28, 23, 19, 0.24);
  background: rgba(255, 255, 255, 0.86);
}

html[data-theme="light"] .hero-panel,
html[data-theme="light"] .photo-logo,
html[data-theme="light"] .source-card {
  display: none;
}

html[data-theme="light"] .source-card {
  color: var(--ink);
  border-color: rgba(159, 31, 15, 0.18);
  background: rgba(255, 255, 255, 0.86);
}

html[data-theme="light"] .source-card span,
html[data-theme="light"] .schedule .section-title p {
  color: var(--muted);
}

html[data-theme="light"] .schedule,
html[data-theme="light"] .footer {
  background: var(--white);
}

html[data-theme="light"] .schedule {
  color: var(--ink);
}

html[data-theme="light"] .schedule-card {
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

html[data-theme="light"] .schedule-card li {
  color: var(--muted);
  border-top: 1px solid var(--line);
}

html[data-theme="light"] .schedule-card b {
  color: var(--ink);
}

html[data-theme="light"] .price {
  color: var(--ink);
  border-color: var(--line);
  background: var(--orange-soft);
}

html[data-theme="light"] .footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
}

html[data-theme="light"] .footer a {
  color: var(--ink);
}

html[data-theme="light"] .footer .social-logo-button {
  color: var(--white);
}

html[data-theme="light"] .footer-partners {
  border-bottom-color: var(--line);
}

html[data-theme="light"] .footer-partners-label {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .section-title,
  .follow-feed-grid,
  .player-info-grid,
  .player-info-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .schedule-grid,
  .price-grid,
  .channel-strip,
  .volunteer-roles-grid,
  .download-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

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

  .top-nav {
    display: none;
  }

  .volunteer-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .brand-text strong {
    white-space: normal;
  }

  html[data-theme="light"] .brand-title {
    font-size: clamp(2rem, 10vw, 3.25rem);
    white-space: normal;
  }

  .sticky-club-bar .header-inner {
    min-height: 62px;
  }

  .sticky-brand {
    gap: 10px;
  }

  .sticky-brand img {
    width: 38px;
    height: 38px;
  }

  .sticky-brand span {
    max-width: calc(100vw - 118px);
    font-size: clamp(1.05rem, 5.6vw, 1.35rem);
  }

  body.has-sticky-club-bar .menu-panel {
    top: 62px;
    max-height: calc(100vh - 62px);
  }

  .schedule-grid,
  .price-grid,
  .channel-strip,
  .volunteer-roles-grid,
  .download-list {
    grid-template-columns: 1fr;
  }

  .next-fixtures-heading {
    align-items: start;
    flex-direction: column;
  }

  .next-fixtures-grid {
    grid-template-columns: 1fr;
  }

  .team-calendar-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 12vw, 3.65rem);
    white-space: normal;
  }

  .step {
    padding-left: 22px;
    padding-top: 74px;
  }
}

/* Compact shared masthead for focused inner pages. */
body.inner-page .site-header {
  position: sticky;
  top: 0;
  z-index: 58;
}

body.inner-page .club-header {
  min-height: 0;
  overflow: visible;
  background: var(--black);
}

body.inner-page .club-header::before,
body.inner-page .club-header::after {
  display: none;
}

body.inner-page .club-header .header-inner {
  align-items: center;
  min-height: 66px;
  padding: 0;
}

body.inner-page .brand {
  gap: 12px;
}

body.inner-page .brand img {
  width: 42px;
  height: 42px;
}

body.inner-page .brand-title {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1;
  text-shadow: none;
  white-space: nowrap;
}

body.inner-page .sticky-club-bar {
  display: none;
}

body.inner-page .menu-panel {
  position: fixed;
  top: 66px;
  right: 0;
  left: 0;
  z-index: 57;
  max-height: calc(100vh - 66px);
  overflow: auto;
}

html[data-theme="light"] body.inner-page .site-header,
html[data-theme="light"] body.inner-page .club-header {
  background: rgba(255, 255, 255, 0.98);
}

.menu-grid a[aria-current="page"] {
  color: var(--orange-dark);
}

.page-intro {
  padding: clamp(42px, 6vw, 68px) 0 clamp(36px, 5vw, 54px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-intro .section-inner {
  display: grid;
  gap: 14px;
}

.page-intro h1,
html[data-theme="light"] .page-intro h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.94;
  white-space: normal;
}

.page-intro p {
  max-width: 66ch;
  font-size: 1.05rem;
}

.home-about-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: 900px;
}

@media (max-width: 620px) {
  body.inner-page .brand-title {
    max-width: calc(100vw - 118px);
    overflow: hidden;
    font-size: 1.1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-about-summary {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
