@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #071a42;
  --navy-deep: #03102b;
  --gold: #f4c900;
  --cream: #f5f2e9;
  --ink: #0b1530;
  --line: rgba(7, 26, 66, 0.16);
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 16px; color: white; background: var(--navy); transition: top .2s ease; }
.skip-link:focus { top: 16px; }

.announcement {
  min-height: 36px;
  padding: 8px clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.announcement a { border-bottom: 1px solid currentColor; }

.site-header {
  height: 90px;
  padding: 0 clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 28px;
  color: white;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,.13);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { display: inline-flex; align-items: center; gap: 13px; justify-self: start; }
.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: white;
}
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong {
  font-family: var(--font-display), sans-serif;
  font-size: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brand small { margin-top: 6px; color: rgba(255,255,255,.65); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a { color: rgba(255,255,255,.76); font-size: 13px; font-weight: 700; }
.desktop-nav a:hover { color: var(--gold); }
.header-cta {
  justify-self: end;
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.35);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.header-cta:hover { color: var(--navy-deep); background: var(--gold); border-color: var(--gold); }
.mobile-nav { display: none; }

.site-header .online-shop {
min-height: 40px;
padding: 0 14px;
justify-content: center;
color: var(--navy-deep, #03102b);
background: var(--gold, #f4c900);
border: 1px solid var(--gold, #f4c900);
font-family: var(--font-body, Arial, sans-serif);
font-size: 13px;
font-weight: 800;
letter-spacing: 0;
line-height: 1.2;
text-transform: uppercase;
text-decoration: none;
white-space: nowrap;
}
.site-header .online-shop:hover {
color: var(--navy-deep, #03102b);
background: #fff;
border-color: #fff;
}
.site-header .online-shop:focus-visible {
outline: 2px solid #fff;
outline-offset: 4px;
}
.site-header .mobile-nav .online-shop {
display: flex;
margin-top: 8px;
padding: 12px;
}

.hero {
  min-height: 670px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 88px clamp(18px, 6vw, 96px) 72px;
  color: white;
  background-image: url("https://s3-ap-southeast-2.amazonaws.com/production.asf.org.au/project-images/a1HOZ000002Jonx2AC/00POZ00000QDKbR2AX.png");
  background-size: cover;
  background-position: center 42%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,16,43,.97) 0%, rgba(3,16,43,.8) 42%, rgba(3,16,43,.22) 100%),
    linear-gradient(0deg, rgba(3,16,43,.65), transparent 45%);
}
.hero-content { position: relative; z-index: 2; max-width: 850px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 36px; height: 2px; background: var(--gold); }
h1 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(78px, 11.3vw, 174px);
  font-weight: 800;
  line-height: .76;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.hero-copy { max-width: 540px; margin: 32px 0 0; color: rgba(255,255,255,.74); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.6; }
.catch-cry { margin-top: 26px; display: flex; align-items: center; flex-wrap: wrap; gap: 13px; color: white; font-family: var(--font-display), sans-serif; font-size: clamp(18px, 1.65vw, 25px); font-weight: 800; letter-spacing: .065em; text-transform: uppercase; }
.catch-cry i { width: 6px; height: 6px; display: inline-block; background: var(--gold); transform: rotate(45deg); }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; }
.button { min-height: 54px; padding: 0 23px; display: inline-flex; align-items: center; justify-content: center; gap: 32px; font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; transition: .2s ease; }
.button-gold { color: var(--navy-deep); background: var(--gold); }
.button-gold:hover { background: white; transform: translateY(-2px); }
.button-ghost { border: 1px solid rgba(255,255,255,.42); }
.button-ghost:hover { border-color: white; background: rgba(255,255,255,.1); }
.hero-card {
  width: min(370px, 38vw);
  position: relative;
  z-index: 2;
  padding: 26px;
  background: rgba(4,18,48,.86);
  border-top: 3px solid var(--gold);
  backdrop-filter: blur(12px);
}
.hero-card > p { margin: 0 0 20px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-card dl { margin: 0; }
.hero-card dl div { padding: 13px 0; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-card dt { color: rgba(255,255,255,.55); font-size: 11px; }
.hero-card dd { margin: 0; font-family: var(--font-display), sans-serif; font-size: 17px; font-weight: 700; text-align: right; text-transform: uppercase; }
.hero-card > a { margin-top: 20px; display: flex; justify-content: space-between; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.quick-links {
  min-height: 118px;
  padding: 0 clamp(18px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(210px, .7fr) 2fr;
  align-items: stretch;
  background: white;
  border-bottom: 1px solid var(--line);
}
.quick-links > p { margin: 0; display: flex; align-items: center; gap: 14px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.quick-links > p span { color: #9a927c; }
.quick-links > div { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-links > div a { padding: 0 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-left: 1px solid var(--line); font-family: var(--font-display), sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; }
.quick-links > div a span { color: #9a927c; font-family: var(--font-body); font-size: 14px; }
.quick-links > div a:hover { color: white; background: var(--navy); }
.section-pad { padding: clamp(60px, 100px, 155px) clamp(18px, 4vw, 96px); }
.section-kicker { display: flex; align-items: center; gap: 16px; }
.section-kicker span { color: #968e7b; font-size: 11px; font-weight: 800; }
.section-kicker p { margin: 0; font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-kicker-light span { color: rgba(255,255,255,.42); }
.section-kicker-light p { color: var(--gold); }
.intro { background: var(--cream); }
.intro-copy { margin-top: 20px; display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(50px, 9vw, 150px); align-items: start; }
.intro h2, .section-heading h2, .match-title h2, .news-top h2, .history-copy h2, .sponsor-heading h2, .join-section h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(60px, 8vw, 124px);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.intro-copy .lead { margin: 8px 0 28px; font-size: clamp(19px, 1.65vw, 24px); font-weight: 600; line-height: 1.5; }
.intro-copy div > p:not(.lead) { margin: 0; color: #6f6c62; font-size: 15px; line-height: 1.8; }
.text-link { margin-top: 30px; padding-bottom: 8px; display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.stat-row { margin-top: clamp(70px, 9vw, 130px); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-row div { padding: 32px 4px; display: flex; align-items: flex-end; gap: 18px; border-right: 1px solid var(--line); }
.stat-row div:last-child { border-right: 0; }
.stat-row strong { font-family: var(--font-display), sans-serif; font-size: clamp(42px, 5vw, 76px); line-height: 1; }
.stat-row span { max-width: 120px; color: #706c60; font-size: 11px; font-weight: 700; line-height: 1.45; text-transform: uppercase; }

.teams-section { color: white; background: var(--navy-deep); }
.section-heading { display: grid; grid-template-columns: .5fr 1fr .55fr; align-items: end; gap: 15px; }
.section-heading > p { margin: 0 0 4px; color: rgba(255,255,255,.57); font-size: 14px; line-height: 1.8; }
.team-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); }
.team-card { min-height: 480px; padding: 34px; position: relative; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.team-card > p { margin: 0; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; position: relative; z-index: 2; }
.team-card h3 { margin: auto 0 0; font-family: var(--font-display), sans-serif; font-size: clamp(70px, 6vw, 104px); font-weight: 800; line-height: .8; letter-spacing: -.04em; text-transform: uppercase; position: relative; z-index: 2; }
.team-card > span { margin: 24px 0; color: rgba(255,255,255,.58); font-size: 12px; position: relative; z-index: 2; }
.team-card a { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2); display: flex; justify-content: flex-end; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; position: relative; z-index: 2; }
.team-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,16,43,.98), rgba(3,16,43,.12)); }
.team-card.mens { background-image: url("../images/mens.png"); background-size: cover; background-position: center; }
.team-card.womens { background-image: url("../images/women-girls.webp"); background-size: cover; background-position: center; }
.team-card.juniors { background-image: url("../images/juniors-group.webp"); background-size: cover; background-position: center; }

.match-centre { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 150px); background: white; }
.match-title h2 { margin-top: 48px; }
.match-links { border-top: 1px solid var(--line); }
.match-links > a { min-height: 116px; padding: 20px 8px; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 22px; border-bottom: 1px solid var(--line); transition: .2s ease; }
.match-links > a:hover { padding-left: 20px; padding-right: 20px; color: white; background: var(--navy); }
.match-index { color: #999180; font-size: 10px; font-weight: 800; }
.match-links > a > span:nth-child(2) { font-family: var(--font-display), sans-serif; font-size: clamp(24px, 2.3vw, 34px); font-weight: 700; line-height: 1; text-transform: uppercase; }
.match-links small { margin-bottom: 9px; display: block; color: #898478; font-family: var(--font-body); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.match-links b { font-size: 18px; }

.news-section { background: var(--cream); }
.news-top { display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.news-top h2 { margin-top: 48px; }
.news-grid { margin-top: 70px; display: grid; grid-template-columns: 1.15fr .85fr; min-height: 570px; }
.feature-news { position: relative; padding: 44px; display: flex; align-items: flex-end; color: white; background-image: linear-gradient(0deg, rgba(3,16,43,.98), rgba(3,16,43,.22)), url("../images/wtdcc_logo.jpg"); background-size: cover; background-position: center; }
.feature-news p, .news-list p { margin: 0 0 18px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.feature-news h3 { max-width: 630px; margin: 0 0 34px; font-family: var(--font-display), sans-serif; font-size: clamp(45px, 5vw, 78px); font-weight: 800; line-height: .9; text-transform: uppercase; }
.feature-news span, .news-list span { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-list { display: grid; grid-template-rows: repeat(3, 1fr); }
.news-list a { padding: 34px 36px; position: relative; border: 1px solid var(--line); border-left: 0; border-bottom: 0; }
.news-list a:last-child { border-bottom: 1px solid var(--line); }
.news-list a:hover { color: white; background: var(--navy); }
.news-list h3 { max-width: 470px; margin: 0; font-family: var(--font-display), sans-serif; font-size: clamp(25px, 2.25vw, 34px); font-weight: 700; line-height: 1.05; text-transform: uppercase; }
.news-list span { position: absolute; right: 30px; bottom: 30px; }

.history-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(60px, 10vw, 160px); color: white; background: var(--navy); }
.history-copy h2 { margin-top: 44px; }
.history-copy > p { max-width: 530px; margin: 32px 0 0; color: rgba(255,255,255,.62); line-height: 1.8; }
.timeline { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.timeline li { min-height: 112px; padding: 20px 8px; display: grid; grid-template-columns: 100px 1fr; align-items: center; border-bottom: 1px solid rgba(255,255,255,.2); }
.timeline strong { color: var(--gold); font-family: var(--font-display), sans-serif; font-size: 38px; }
.timeline span { color: rgba(255,255,255,.76); font-size: 13px; }

.sponsors-section { background: var(--cream); }
.sponsor-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: clamp(50px, 10vw, 160px); }
.sponsor-heading h2 { margin-top: 46px; }
.sponsor-intro > p { max-width: 560px; margin: 0; color: #6f6c62; font-size: 16px; line-height: 1.75; }
.sponsor-groups { margin-top: clamp(72px, 8vw, 120px); display: grid; gap: 72px; }
.sponsor-tier-title { margin-bottom: 18px; display: flex; align-items: center; gap: 16px; }
.sponsor-tier-title span { width: 34px; height: 2px; background: var(--gold); }
.sponsor-tier-title p { margin: 0; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.sponsor-grid { display: grid; }
.sponsor-grid-premier { grid-template-columns: repeat(2, 1fr); }
.sponsor-grid-major { grid-template-columns: repeat(2, 1fr); }
.sponsor-grid-standard { grid-template-columns: repeat(3, 1fr); }
.sponsor-card { min-width: 0; min-height: 285px; padding: 24px 28px 22px; display: flex; flex-direction: column; background: white; border: 1px solid var(--line); border-right: 0; transition: transform .2s ease, box-shadow .2s ease; }
.sponsor-grid a:last-child { border-right: 1px solid var(--line); }
.sponsor-grid-standard a:nth-child(3n) { border-right: 1px solid var(--line); }
.sponsor-grid-standard a:nth-child(n+4) { border-top: 0; }
.sponsor-card:hover { position: relative; z-index: 2; transform: translateY(-5px); box-shadow: 0 22px 50px rgba(7,26,66,.13); }
.sponsor-tier-label { color: #8a8475; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.sponsor-logo-wrap { min-height: 175px; padding: 22px; display: flex; align-items: center; justify-content: center; flex: 1; }
.sponsor-logo-wrap img { max-width: 100%; max-height: 125px; object-fit: contain; }
.sponsor-grid-premier .sponsor-card { min-height: 330px; }
.sponsor-grid-premier .sponsor-logo-wrap { min-height: 215px; }
.sponsor-grid-premier .sponsor-logo-wrap img { max-width: 72%; max-height: 155px; }
.sponsor-card-footer { padding-top: 18px; display: flex; align-items: baseline; justify-content: space-between; gap: 22px; border-top: 1px solid var(--line); }
.sponsor-card-footer strong { font-family: var(--font-display), sans-serif; font-size: 18px; line-height: 1.05; text-transform: uppercase; }
.sponsor-card-footer span { color: #8a8475; font-size: 13px; }
.sponsor-source { margin-top: 58px; padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); }
.sponsor-source p { margin: 0; color: #777165; font-size: 12px; }
.sponsor-source a { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.sponsor-source a span { margin-left: 18px; }

.join-section { display: flex; align-items: end; justify-content: space-between; gap: 60px; background: var(--gold); }
.join-section > div > p { margin: 0 0 28px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.join-section h2 { font-size: clamp(55px, 7.5vw, 112px); }
.join-actions { min-width: 300px; display: grid; gap: 12px; }
.button-navy { color: white; background: var(--navy-deep); }
.button-outline { border: 1px solid rgba(3,16,43,.46); }
.button-outline:hover { color: white; background: var(--navy); }

.site-footer { padding: 40px clamp(18px, 6vw, 96px) 24px; color: white; background: var(--navy-deep); }
.footer-main { padding-top: 30px; padding-bottom: 50px; display: grid; grid-template-columns: 1.5fr .6fr .6fr; gap: 60px; }
.footer-main > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-main > div > p { margin: 0 0 10px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-main address, .footer-main a { color: rgba(255,255,255,.65); font-size: 12px; font-style: normal; line-height: 1.7; }
.footer-main a:hover { color: white; }
.footer-base { padding-top: 22px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.38); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-base strong { color: var(--gold); font-weight: 800; }
.footer-base a:hover { color: white; }
.footer-col { flex: 1; }
.footer-follow strong {
  font-family: var(--font-display), sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, .65);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-follow {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 1.5rem;
  padding: 0px 0px 20px 0px;
  border-top: 0px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.footer-follow h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(244, 201, 0, .45);
  border-radius: 50%;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  border-color: #F4C900;
  background: rgba(244, 201, 0, .1);
}
.footer-social-link:focus-visible {
  outline: 2px solid #F4C900;
  outline-offset: 3px;
}
.footer-social-link img {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

@media (max-width: 600px) {
  .footer-follow {
	flex-direction: column;
	gap: 1rem;
  }
}


.inline-img {
  width: 32px; height: 32px;
  vertical-align: middle;
  display: inline-block; /* Forces the block divs to sit side-by-side */
}

/* Interior pages */
.page-hero {
  min-height: 470px;
  padding: 78px clamp(18px, 6vw, 96px) 66px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: linear-gradient(120deg, var(--navy-deep), var(--navy));
}

.contact-cards {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.contact-cards a {
  overflow-wrap: anywhere;
}

.page-hero.has-image { background-size: cover; background-position: center; }
.page-hero.has-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,16,43,.98), rgba(3,16,43,.58)); }
.page-hero-content { width: min(900px, 100%); position: relative; z-index: 2; }
.breadcrumb { margin-bottom: 34px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.58); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a { color: white; }
.page-kicker { margin: 0 0 18px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.page-hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(68px, 10vw, 148px); font-weight: 800; line-height: .8; letter-spacing: -.045em; text-transform: uppercase; }
.page-hero .page-lead { max-width: 740px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.6vw, 22px); line-height: 1.55; }
.page-main { background: var(--cream); }
.content-section { padding: clamp(72px, 8vw, 120px) clamp(18px, 6vw, 96px); }
.content-section.white { background: white; }
.content-section.navy { color: white; background: var(--navy-deep); }
.content-section.gold { background: var(--gold); }
.content-width { width: min(1180px, 100%); margin: 0 auto; }
.content-head { max-width: 850px; margin-bottom: 48px; }
.content-head .label { margin: 0 0 16px; color: #8a8475; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.content-head h2 { margin: 0; font-family: var(--font-display); font-size: clamp(48px, 6.5vw, 98px); font-weight: 800; line-height: .88; letter-spacing: -.035em; text-transform: uppercase; }
.content-head p { max-width: 720px; margin: 25px 0 0; color: #6f6c62; font-size: 17px; line-height: 1.75; }
.navy .content-head .label { color: var(--gold); }
.navy .content-head p { color: rgba(255,255,255,.64); }
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.info-tile { min-height: 290px; padding: 30px; display: flex; flex-direction: column; background: white; }
.info-tile .tile-index { color: #9a927c; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.info-tile h2, .info-tile h3 { margin: auto 0 12px; font-family: var(--font-display); font-size: clamp(32px, 3vw, 48px); font-weight: 700; line-height: .92; text-transform: uppercase; }
.info-tile p { margin: 0; color: #6f6c62; font-size: 14px; line-height: 1.7; }
.info-tile a { margin-top: 24px; padding-top: 18px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.info-tile:hover a { color: #8a6f00; }
.pathway-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.pathway-card { min-height: 540px; padding: 32px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; color: white; background: var(--navy); background-size: cover; background-position: center; border-right: 1px solid rgba(255,255,255,.25); }
.pathway-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,16,43,.98), rgba(3,16,43,.12)); }
.pathway-card > * { position: relative; z-index: 1; }
.pathway-card .page-kicker { margin-bottom: auto; }
.pathway-card h2 { margin: 0; font-family: var(--font-display); font-size: clamp(58px, 6vw, 90px); line-height: .82; text-transform: uppercase; }
.pathway-card p { margin: 22px 0; color: rgba(255,255,255,.72); font-size: 14px; }
.pathway-card a { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.28); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.pathway-card.mens { background-image: url("../images/mens-champions.webp"); }
.pathway-card.women { background-image: url("../images/women-girls.webp"); }
.pathway-card.juniors { background-image: url("../images/juniors-group.webp"); }
.photo-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; background: white; }
.photo-split.reverse .photo-panel { order: 2; }
.photo-panel { min-height: 460px; background-size: cover; background-position: center; }
.copy-panel { padding: clamp(42px, 6vw, 86px); display: flex; flex-direction: column; justify-content: center; }
.copy-panel h2 { margin: 0; font-family: var(--font-display); font-size: clamp(48px, 6vw, 88px); line-height: .88; text-transform: uppercase; }
.copy-panel p { margin: 24px 0 0; color: #6f6c62; font-size: 16px; line-height: 1.75; }
.copy-panel .button { align-self: flex-start; margin-top: 30px; }
.link-list { border-top: 1px solid var(--line); }
.link-row { min-height: 104px; padding: 20px 8px; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 20px; border-bottom: 1px solid var(--line); }
.link-row:hover { padding-left: 20px; padding-right: 20px; color: white; background: var(--navy); }
.link-row .row-index { color: #999180; font-size: 10px; font-weight: 800; }
.link-row strong { display: block; font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 36px); line-height: 1; text-transform: uppercase; }
.link-row small { display: block; margin-top: 8px; color: #7c786f; font-size: 11px; }
.link-row b { font-size: 18px; }
.notice { margin-bottom: 34px; padding: 22px 24px; border-left: 4px solid var(--gold); background: white; color: #615b4e; }
.resource-list { display: grid; border-top: 1px solid var(--line); }
.resource-row { min-height: 94px; padding: 20px 8px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; border-bottom: 1px solid var(--line); }
.resource-row h2, .resource-row h3 { margin: 0; font-family: var(--font-display); font-size: clamp(23px, 2.4vw, 34px); line-height: 1; text-transform: uppercase; }
.resource-row p { margin: 7px 0 0; color: #777165; font-size: 12px; }
.resource-row a { font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.resource-row a:hover { color: #8a6f00; }
.two-column { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.prose h2 { margin: 12px 0 12px; font-family: var(--font-display); font-size: clamp(48px, 6vw, 88px); line-height: .88; text-transform: uppercase; }
.prose h3 { margin: 36px 0 12px; font-family: var(--font-display); font-size: 30px; text-transform: uppercase; }
.prose p, .prose li { margin: 0; color: #676257; font-size: 16px; line-height: 1.8; }
.prose ul { padding-left: 22px; }
.side-card { padding: 32px; color: white; background: var(--navy-deep); border-top: 4px solid var(--gold); }
.side-card h2 { margin: 0 0 20px; font-family: var(--font-display); font-size: 42px; line-height: .95; text-transform: uppercase; }
.side-card p, .side-card li, .side-card address { color: rgba(255,255,255,.68); font-size: 14px; font-style: normal; line-height: 1.75; }
.side-card ul { margin: 0; padding: 0; list-style: none; }
.side-card li { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.16); }
.side-card a { color: var(--gold); font-weight: 800; }
.action-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.button-outline-navy { border: 1px solid var(--navy-deep); }
.button-outline-navy:hover { color: white; background: var(--navy); }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.social-card { min-height: 100px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; background: white; }
.social-card .social-icon { color: var(--gold); font-family: var(--font-display); font-size: 64px; font-weight: 800; line-height: 1; }
.social-card h2 { margin: 0; font-family: var(--font-display); font-size: 34px; text-transform: uppercase; }
.social-card p { color: #6f6c62; font-size: 13px; }
.social-card a { padding-top: 6px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.empty-state { padding: 40px; border: 1px solid var(--line); background: white; }
.empty-state h2 { margin: 0 0 10px; font-family: var(--font-display); font-size: 40px; text-transform: uppercase; }
.empty-state p { margin: 0; color: #6f6c62; }
.current-page { color: var(--gold) !important; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-nav { display: block; justify-self: end; position: relative; }
  .mobile-nav summary { list-style: none; padding: 12px 16px; border: 1px solid rgba(255,255,255,.35); cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav nav { width: 220px; padding: 12px; position: absolute; top: 52px; right: 0; display: grid; background: var(--navy-deep); border: 1px solid rgba(255,255,255,.2); box-shadow: 0 18px 45px rgba(0,0,0,.35); }
  .mobile-nav nav a { padding: 12px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 13px; }
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-card { width: min(100%, 520px); margin-top: 48px; }
  .quick-links { grid-template-columns: 1fr; }
  .quick-links > p { min-height: 72px; }
  .intro-copy, .section-heading, .match-centre, .history-section, .sponsor-heading { grid-template-columns: 1fr; }
  .section-heading { align-items: start; }
  .section-heading > p { max-width: 520px; }
  .team-card { min-height: 400px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-list a { min-height: 170px; border-left: 1px solid var(--line); }
  .sponsor-grid-standard { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid-standard a:nth-child(3n) { border-right: 0; }
  .sponsor-grid-standard a:nth-child(2n) { border-right: 1px solid var(--line); }
  .sponsor-grid-standard a:nth-child(n+3) { border-top: 0; }
  .join-section { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-card { min-height: 430px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .photo-split, .two-column { grid-template-columns: 1fr; }
  .photo-split.reverse .photo-panel { order: 0; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .announcement { justify-content: center; }
  .site-header { height: 78px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 17px; }
  .brand small { font-size: 8px; }
  .hero { min-height: auto; padding: 72px 18px 48px; background-position: 61% center; }
  .hero::after { display: none; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,16,43,.97), rgba(3,16,43,.64)); }
  h1 { font-size: clamp(72px, 24vw, 110px); }
  .hero-copy { margin-top: 26px; }
  .catch-cry { gap: 10px; font-size: 19px; }
  .catch-cry i { width: 5px; height: 5px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { justify-content: space-between; }
  .hero-card { margin-top: 38px; padding: 22px; }
  .quick-links > div { grid-template-columns: 1fr; }
  .quick-links > div a { min-height: 70px; padding: 0; border-left: 0; border-top: 1px solid var(--line); }
  .section-pad { padding-top: 86px; padding-bottom: 86px; }
  .intro-copy { margin-top: 38px; gap: 40px; }
  .intro h2, .section-heading h2, .match-title h2, .news-top h2, .history-copy h2, .sponsor-heading h2, .join-section h2 { font-size: clamp(54px, 17vw, 80px); }
  .stat-row { grid-template-columns: 1fr; }
  .stat-row div { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-row div:last-child { border-bottom: 0; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card h3 { font-size: 78px; }
  .news-top { align-items: flex-start; flex-direction: column; }
  .news-grid { margin-top: 48px; }
  .feature-news { min-height: 500px; padding: 26px; }
  .feature-news h3 { font-size: 50px; }
  .news-list a { padding: 28px 24px; }
  .news-list span { right: 22px; bottom: 24px; }
  .timeline li { grid-template-columns: 84px 1fr; }
  .timeline strong { font-size: 32px; }
  .sponsor-groups { margin-top: 58px; gap: 54px; }
  .sponsor-grid-premier, .sponsor-grid-major, .sponsor-grid-standard { grid-template-columns: 1fr; }
  .sponsor-card, .sponsor-grid-premier .sponsor-card { min-height: 260px; border-right: 1px solid var(--line); border-top: 0; }
  .sponsor-grid a:first-child { border-top: 1px solid var(--line); }
  .sponsor-logo-wrap, .sponsor-grid-premier .sponsor-logo-wrap { min-height: 170px; }
  .sponsor-grid-standard a:nth-child(3n), .sponsor-grid-standard a:nth-child(2n) { border-right: 1px solid var(--line); }
  .sponsor-source { align-items: flex-start; flex-direction: column; }
  .join-actions { width: 100%; min-width: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-base { align-items: flex-start; flex-direction: column; }
  .page-hero { min-height: 390px; padding: 62px 18px 52px; }
  .page-hero h1 { font-size: clamp(64px, 22vw, 98px); }
  .page-hero::after { display: none; }
  .content-section { padding-left: 18px; padding-right: 18px; }
  .tile-grid, .social-grid { grid-template-columns: 1fr; }
  .info-tile { min-height: 250px; }
  .pathway-card { min-height: 390px; }
  .pathway-card h2 { font-size: 72px; }
  .photo-panel { min-height: 360px; }
  .copy-panel { padding: 44px 24px; }
  .link-row { grid-template-columns: 32px 1fr auto; gap: 12px; }
  .resource-row { grid-template-columns: 1fr; gap: 14px; }
  .action-row { display: grid; }
  .action-row .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
