@import url("https://api.fontshare.com/v2/css?f[]=excon@400,500,600,700,800,900&f[]=ranade@300,400,500,600,700&display=swap");
@import url("./variables.css");
@import url("./reset.css");
@import url("./components.css");
@import url("./responsive.css");

html {
  scroll-padding-top: 96px;
}

[id] {
  scroll-margin-top: 96px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
}

p {
  font-family: var(--font-body);
  font-weight: 300;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 6px;
  padding: 12px 14px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 900;
  transition: transform var(--speed);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--color-white);
  background: rgba(8, 8, 8, .34);
  backdrop-filter: blur(14px);
  transition: background var(--speed), box-shadow var(--speed), border-color var(--speed);
}

.site-header.is-scrolled,
.site-header.is-inner {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(8, 8, 8, .94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.nav-bar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  line-height: 1.1;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--color-yellow);
  border-radius: 8px;
  color: var(--color-yellow);
}

.brand-logo {
  width: 44px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 15px;
  text-transform: uppercase;
}

.brand-subtitle {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link,
.submenu-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  border: 0;
  border-radius: 6px;
  padding: 0 11px;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-link:hover,
.submenu-toggle:hover {
  background: rgba(255, 255, 255, .1);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: var(--color-black);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--speed), transform var(--speed);
}

.nav-item:focus-within .submenu,
.nav-item:hover .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu a {
  display: block;
  border-radius: 6px;
  padding: 11px 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 800;
}

.submenu a:hover {
  background: rgba(255, 212, 0, .12);
  color: var(--color-yellow);
}

.menu-button {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  background: transparent;
  color: var(--color-white);
  font-weight: 900;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  overflow-y: auto;
  padding: 22px;
  background: var(--color-black);
  color: var(--color-white);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.mobile-nav details,
.mobile-nav > a {
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  padding: 8px 0;
}

.mobile-nav summary,
.mobile-nav > a {
  display: flex;
  min-height: 50px;
  align-items: center;
  font-size: 22px;
  font-weight: 900;
  list-style: none;
}

.mobile-nav details a {
  display: block;
  border-radius: 6px;
  padding: 12px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 130px 0 70px;
  background: var(--color-black);
  color: var(--color-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .9), rgba(8, 8, 8, .56), rgba(8, 8, 8, .18)),
    linear-gradient(180deg, rgba(8, 8, 8, .22), rgba(8, 8, 8, .72)),
    url("../assets/images/hero-rain-match.png") center / cover;
}

.hero > .container {
  position: relative;
}

.hero .lead {
  color: rgba(255, 255, 255, .84);
  text-shadow: 0 1px 18px rgba(0, 0, 0, .35);
}

.hero .title-xl {
  max-width: none;
  font-size: clamp(54px, 7.2vw, 96px);
  white-space: nowrap;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 58px;
  background: var(--color-black);
  color: var(--color-white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .95), rgba(8, 8, 8, .64), rgba(8, 8, 8, .36)),
    url("../assets/images/facility-placeholder.webp") center / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 212, 0, .5);
}

.page-hero > .container {
  position: relative;
  display: grid;
  gap: 34px;
}

.page-hero .lead,
.page-hero .eyebrow {
  color: rgba(255, 255, 255, .82);
}

.page-hero .eyebrow {
  color: var(--color-yellow);
}

.page-hero-content {
  max-width: 790px;
}

.history-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .94), rgba(8, 8, 8, .66), rgba(8, 8, 8, .24)),
    linear-gradient(180deg, rgba(8, 8, 8, .08), rgba(8, 8, 8, .66)),
    url("../assets/images/history-team-1932.png") center top / cover;
}

.installations-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .94), rgba(8, 8, 8, .62), rgba(8, 8, 8, .18)),
    linear-gradient(180deg, rgba(8, 8, 8, .12), rgba(8, 8, 8, .7)),
    url("../assets/images/installations-field-horizontal.jpg") center / cover;
}

.committee-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .96), rgba(8, 8, 8, .68), rgba(8, 8, 8, .26)),
    linear-gradient(180deg, rgba(8, 8, 8, .08), rgba(8, 8, 8, .6)),
    url("../assets/images/committee-line-field.jpg") center / cover;
}

.contact-hero::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, .9), rgba(8, 8, 8, .52), rgba(8, 8, 8, .12)),
    linear-gradient(180deg, rgba(8, 8, 8, .08), rgba(8, 8, 8, .62)),
    url("../assets/images/contact-ball.jpg") 72% 34% / cover;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .14);
}

.hero-facts div {
  padding: 18px;
  background: rgba(8, 8, 8, .66);
}

.hero-facts dt {
  color: var(--color-yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: var(--color-white);
  font-weight: 900;
}

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

.hero-note {
  display: inline-flex;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 212, 0, .4);
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(8, 8, 8, .72);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 800;
}

.instagram-section {
  border-top: 1px solid rgba(255, 212, 0, .32);
  border-bottom: 1px solid rgba(8, 8, 8, .1);
  padding: clamp(28px, 5vw, 48px) 0;
  background:
    linear-gradient(135deg, rgba(255, 212, 0, .14), rgba(255, 255, 255, .96) 46%),
    var(--color-off-white);
}

.instagram-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.instagram-copy {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
}

.instagram-copy h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 54px);
  line-height: .96;
  text-transform: uppercase;
}

.instagram-copy-text > p:not(.eyebrow) {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(36, 36, 36, .76);
  font-size: clamp(16px, 2vw, 19px);
}

.instagram-copy .eyebrow {
  margin: 0 0 8px;
}

.instagram-follow {
  flex: 0 0 auto;
}

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.instagram-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(8, 8, 8, .12);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 18px 42px rgba(8, 8, 8, .06);
}

.instagram-image-link {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-grey-light);
}

.instagram-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--speed);
}

.instagram-card:hover .instagram-image-link img {
  transform: scale(1.035);
}

.instagram-card-body {
  display: grid;
  flex: 1;
  gap: 10px;
  padding: clamp(18px, 2vw, 22px);
}

.instagram-card-body span {
  color: var(--color-yellow-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.instagram-card-body h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.instagram-card-body p {
  margin: 0;
  color: rgba(36, 36, 36, .74);
}

.instagram-card-body .button {
  width: fit-content;
  margin-top: auto;
}

.match-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.official-widget-card {
  box-shadow: 0 18px 55px rgba(8, 8, 8, .08);
}

.dark-band .matchcenter-widget,
.dark-band .calendar-panel {
  color: var(--color-black);
}

.team-card img,
.news-card img,
.facility-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-feature img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.news-image-sponsor {
  object-position: center 78%;
}

.stat-card {
  display: grid;
  min-width: 0;
  min-height: 156px;
  align-content: center;
  gap: 14px;
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--color-white);
}

.stat-card p {
  margin: 0;
  color: rgba(36, 36, 36, .78);
  font-size: 15px;
  font-weight: 400;
}

.stat-number {
  display: block;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(36px, 3.9vw, 52px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.stat-date {
  font-size: clamp(26px, 2.7vw, 34px);
}

.stat-word {
  font-size: clamp(24px, 2.8vw, 38px);
  white-space: normal;
}

.club-section {
  overflow: hidden;
}

.club-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

.club-copy {
  max-width: 760px;
}

.club-copy .lead {
  margin-bottom: 24px;
}

.club-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  min-width: 0;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.team-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 100%;
}

.team-card img {
  height: 190px;
}

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

.team-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.team-card .information-placeholder {
  margin: 0;
  min-height: 0;
}

.team-card .button {
  width: fit-content;
}

.sponsor-section {
  background:
    linear-gradient(180deg, var(--color-off-white), #fff 52%, var(--color-off-white));
}

.sponsor-intro {
  max-width: 780px;
  margin-bottom: 28px;
}

.sponsor-intro .title-lg {
  font-size: clamp(38px, 6vw, 68px);
}

.sponsor-intro .lead {
  margin: 14px 0 0;
}

.sponsor-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(340px, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(8, 8, 8, .12);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 22px 55px rgba(8, 8, 8, .08);
}

.sponsor-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 212, 0, .13), rgba(8, 8, 8, 0) 54%),
    var(--color-black);
  color: var(--color-white);
}

.sponsor-copy h3 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.06;
}

.sponsor-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(16px, 2vw, 19px);
}

.sponsor-copy .lead {
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.sponsor-copy .button {
  width: fit-content;
}

.sponsor-points {
  display: grid;
  gap: 0;
  background: var(--color-white);
}

.sponsor-points article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid rgba(8, 8, 8, .1);
  padding: clamp(20px, 3vw, 30px);
  background: var(--color-white);
}

.sponsor-points article:last-child {
  border-bottom: 0;
}

.sponsor-points span {
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.sponsor-points h3,
.sponsor-note-card h3,
.sponsor-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.05;
}

.sponsor-points p {
  grid-column: 2;
  margin: -8px 0 0;
  color: rgba(36, 36, 36, .72);
}

.sponsor-note-card {
  margin-top: 22px;
  border-left: 5px solid var(--color-yellow);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 24px);
  background: var(--color-white);
}

.sponsor-note-card p {
  margin: 8px 0 0;
  color: rgba(36, 36, 36, .74);
  font-size: 15px;
}

.sponsor-openings {
  margin-top: 32px;
}

.sponsor-openings .grid {
  margin-top: 12px;
}

.sponsor-card .card-body {
  display: grid;
  gap: 16px;
}

.sponsor-logo-frame {
  display: grid;
  height: 172px;
  place-items: center;
  border: 1px solid rgba(8, 8, 8, .08);
  border-radius: 6px;
  padding: 18px;
  background: transparent;
}

.sponsor-logo-frame img {
  display: block;
  width: auto;
  max-width: 82%;
  max-height: 120px;
  object-fit: contain;
}

.sponsor-logo-frame-nike img {
  max-width: 84%;
  max-height: 112px;
}

.sponsor-logo-frame-city img {
  max-width: 84%;
  max-height: 120px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: start;
}

.history-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.history-intro-text {
  display: grid;
  gap: 18px;
}

.history-intro-text p,
.history-values p {
  margin: 0;
  color: rgba(36, 36, 36, .76);
  font-size: clamp(17px, 2vw, 21px);
}

.history-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(30px, 5vw, 56px);
}

.history-fact {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
}

.history-fact span {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  line-height: .92;
}

.history-fact p {
  margin: 0;
  color: rgba(36, 36, 36, .74);
  font-weight: 700;
}

.history-timeline {
  display: grid;
  gap: 18px;
}

.history-event {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.history-year {
  display: grid;
  min-height: 100%;
  place-items: center;
  border: 1px solid rgba(255, 212, 0, .38);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  line-height: .95;
  text-align: center;
}

.history-year-small {
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1.05;
}

.history-event h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.history-event p {
  margin: 0;
  color: rgba(36, 36, 36, .78);
}

.history-values {
  display: grid;
  gap: clamp(26px, 5vw, 44px);
}

.history-values .card h3 {
  margin-top: 0;
  font-size: 26px;
}

.history-source-section {
  padding-top: 0;
}

.history-source {
  display: grid;
  gap: 14px;
  align-items: start;
}

.history-source p {
  margin: 0;
}

.committee-section {
  background:
    linear-gradient(180deg, var(--color-off-white), #fff 48%, var(--color-off-white));
}

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

.committee-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border-top: 8px solid var(--color-yellow);
}

.committee-card-featured {
  grid-column: 1 / -1;
  display: flex;
  border-top: 0;
  background: var(--color-black);
  color: var(--color-white);
}

.committee-card h3 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.committee-card:not(.committee-card-featured) h3 {
  font-size: clamp(30px, 3vw, 40px);
}

.committee-card p {
  margin: 0;
}

.committee-card .card-body {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
}

.committee-card .card-body > p:not(.committee-role) {
  color: rgba(36, 36, 36, .76);
}

.committee-card-featured .card-body > p:not(.committee-role) {
  color: rgba(255, 255, 255, .76);
}

.committee-role {
  color: var(--color-yellow-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.committee-card-featured .committee-role {
  color: var(--color-yellow);
}

.committee-contact {
  width: fit-content;
  margin-top: auto;
}

.committee-card-featured .committee-contact {
  background: var(--color-yellow);
  color: var(--color-black);
}

.committee-values .card h3 {
  margin-top: 0;
  font-size: 28px;
}

.committee-values .card p {
  margin: 0;
  color: rgba(36, 36, 36, .76);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(26px, 5vw, 46px);
}

.facility-list {
  display: grid;
  gap: 24px;
}

.facility-detail {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1fr);
  min-height: 330px;
}

.facility-photo {
  position: relative;
  min-height: 100%;
  margin: 0;
  background: var(--color-grey-light);
}

.facility-photo img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.facility-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 6px;
  padding: 7px 9px;
  background: rgba(8, 8, 8, .72);
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 800;
}

.facility-photo figcaption a {
  color: var(--color-yellow);
  text-decoration: underline;
}

.facility-content {
  display: grid;
  align-content: center;
  gap: 14px;
}

.facility-content h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.facility-content p {
  margin: 0;
  max-width: 560px;
  color: rgba(36, 36, 36, .74);
}

.facility-content address {
  border-left: 5px solid var(--color-yellow);
  padding: 10px 0 10px 14px;
  color: var(--color-black);
  font-style: normal;
  font-weight: 900;
}

.facility-tag {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 212, 0, .2);
  color: var(--color-grey-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-section {
  background:
    linear-gradient(180deg, var(--color-off-white), #fff 46%, var(--color-off-white));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 110px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-method {
  border-left: 5px solid var(--color-yellow);
  padding: 18px 20px;
  background: var(--color-white);
  box-shadow: 0 18px 40px rgba(8, 8, 8, .06);
}

.contact-method-label {
  color: var(--color-yellow-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method h3 {
  margin: 6px 0 6px;
  font-size: 20px;
}

.contact-method .contact-button {
  width: fit-content;
  margin-top: 8px;
  color: var(--color-black);
  text-decoration: none;
}

.contact-form {
  box-shadow: 0 28px 70px rgba(8, 8, 8, .12);
}

.form-heading {
  margin-bottom: 22px;
}

.form-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: .96;
  text-transform: uppercase;
}

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

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-grey-dark);
  font-weight: 900;
}

.form-field span {
  font-size: 13px;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(8, 8, 8, .16);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fafafa;
  color: var(--color-black);
  transition: border-color var(--speed), box-shadow var(--speed), background var(--speed);
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--color-yellow-dark);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(255, 212, 0, .22);
  outline: 0;
}

.form-actions {
  display: grid;
  gap: 14px;
  align-items: start;
}

.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 28px;
  align-items: end;
}

.site-footer {
  padding: 54px 0;
  background: var(--color-black);
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 28px;
}

.footer-brand {
  margin: 0 0 10px;
  color: var(--color-yellow);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-title {
  margin: 0 0 12px;
  color: var(--color-yellow);
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .76);
  font-weight: 800;
}

.site-footer p {
  max-width: 430px;
  color: rgba(255, 255, 255, .7);
}

.site-footer .footer-brand {
  color: var(--color-yellow);
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .grid-2,
  .grid-3,
  .grid-5,
  .match-strip,
  .footer-grid,
  .contact-layout,
  .contact-cta-inner,
  .facility-detail,
  .club-layout,
  .history-intro-grid,
  .history-event,
  .committee-grid,
  .committee-card,
  .committee-card-featured {
    grid-template-columns: 1fr;
  }

  .committee-card-featured {
    grid-column: 1 / -1;
  }

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

  .hero {
    min-height: 82vh;
    padding-bottom: 44px;
  }

  .title-xl {
    font-size: 70px;
  }

  .hero .title-xl {
    font-size: clamp(54px, 8.2vw, 78px);
  }

  .contact-intro {
    position: static;
  }

  .facility-detail {
    min-height: 0;
  }

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

  .club-copy {
    max-width: none;
  }

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

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

  .sponsor-panel {
    grid-template-columns: 1fr;
  }

  .instagram-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav-bar {
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-logo {
    width: 34px;
    height: 44px;
  }

  .brand-name {
    max-width: 150px;
    font-size: 12px;
  }

  .brand-subtitle {
    display: none;
  }

  .title-xl {
    font-size: 46px;
    line-height: .98;
  }

  .hero .title-xl {
    font-size: clamp(36px, 10.2vw, 48px);
    white-space: nowrap;
  }

  .section {
    padding: 46px 0;
  }

  .page-hero {
    padding: 104px 0 36px;
  }

  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, .96), rgba(8, 8, 8, .74)),
      url("../assets/images/facility-placeholder.webp") center / cover;
  }

  .history-hero::before {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, .96), rgba(8, 8, 8, .74)),
      url("../assets/images/history-team-1932.png") center top / cover;
  }

  .installations-hero::before {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, .96), rgba(8, 8, 8, .74)),
      url("../assets/images/installations-field-horizontal.jpg") center / cover;
  }

  .committee-hero::before {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, .96), rgba(8, 8, 8, .74)),
      url("../assets/images/committee-line-field.jpg") center / cover;
  }

  .contact-hero::before {
    background:
      linear-gradient(90deg, rgba(8, 8, 8, .94), rgba(8, 8, 8, .58)),
      url("../assets/images/contact-ball.jpg") 75% 34% / cover;
  }

  .hero-facts,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 14px;
  }

  .history-facts {
    grid-template-columns: 1fr;
  }

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

  .instagram-section {
    padding: 32px 0;
  }

  .instagram-copy {
    display: grid;
    gap: 18px;
    align-items: start;
  }

  .instagram-follow {
    width: 100%;
  }

  .instagram-feed {
    grid-template-columns: 1fr;
  }

  .committee-contact {
    width: 100%;
  }

  .history-year {
    min-height: auto;
    justify-items: start;
    text-align: left;
  }

  .facility-photo img {
    min-height: 230px;
  }

  .facility-content {
    align-content: start;
  }

  .facility-content h3 {
    font-size: 28px;
  }

  .facility-content .button {
    width: 100%;
  }

  .club-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sponsor-copy {
    padding: 24px;
  }

  .sponsor-copy .button {
    width: 100%;
  }

  .sponsor-points article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }

  .sponsor-points p {
    grid-column: auto;
    margin: 0;
  }

  .sponsor-note-card {
    padding: 20px;
  }

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

  .stat-card {
    min-height: 128px;
  }

  .stat-number {
    font-size: clamp(36px, 12vw, 52px);
  }

  .stat-date {
    font-size: clamp(30px, 9vw, 42px);
  }

  .stat-word {
    font-size: clamp(28px, 9vw, 40px);
  }

  .iframe-wrapper,
  .iframe-wrapper iframe,
  .football-widget-wrapper,
  .football-widget-frame,
  .matchcenter-widget,
  .calendar-panel {
    min-height: 860px;
  }

  .team-card img,
  .news-card img,
  .facility-card img,
  .news-feature img {
    height: 190px;
  }
}
