@font-face {
  font-family: "Oswald";
  src: url("../fonts/oswald-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #080a0b;
  --charcoal: #111416;
  --paper: #f2efe8;
  --white: #faf8f2;
  --muted: #a8abad;
  --red: #e23b32;
  --rule: #34383a;
  --hero-shift: 0px;
  --page-shift: 0px;
  --product-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 122px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

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

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
}

p {
  text-wrap: pretty;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  min-height: 108px;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(175px, 1fr);
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 10, 11, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  text-decoration: none;
  text-transform: uppercase;
}

.header-lockup {
  width: clamp(190px, 14vw, 215px);
  height: auto;
}

.location {
  color: #d0d1d0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.21em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 40px);
}

.site-nav a {
  padding: 45px 0 39px;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  transition: border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-bottom-color: var(--red);
}

.location {
  justify-self: end;
  text-align: right;
  text-transform: uppercase;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 735px;
  padding: 176px 5vw 88px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: -5%;
  width: 110%;
  max-width: none;
  height: 110%;
  object-fit: cover;
  object-position: var(--hero-focus-desktop, center 42%);
  transform: translate3d(0, var(--hero-shift), 0) scale(1.03);
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 8, 9, 0.9) 0%, rgba(6, 8, 9, 0.72) 37%, rgba(6, 8, 9, 0.18) 68%, rgba(6, 8, 9, 0.02) 100%),
    linear-gradient(0deg, rgba(6, 8, 9, 0.5), transparent 48%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(870px, 70vw);
  min-width: 0;
}

.eyebrow,
.section-number {
  margin: 0 0 18px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.eyebrow span {
  color: var(--red);
}

h1,
h2 {
  margin: 0;
  text-transform: uppercase;
  font-family: "Oswald", "Arial Narrow", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  transform: translateX(-0.035em);
}

h2 {
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  font-size: clamp(76px, 8.8vw, 142px);
  line-height: 0.89;
}

h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 0.0155em var(--white);
}

.hero-intro {
  max-width: 680px;
  margin: 31px 0;
  color: #e0e0de;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 60px;
  padding: 0 32px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.button-primary {
  background: var(--red);
}

.button-outline {
  border-color: #dad7cf;
}

.text-action {
  display: inline-block;
  padding: 9px 0;
  border-bottom: 2px solid currentColor;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.hero-index {
  position: absolute;
  right: 5vw;
  bottom: 77px;
  z-index: 2;
  display: grid;
  justify-items: end;
  gap: 9px;
}

.hero-index > span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 72px;
  line-height: 1;
}

.hero-index small {
  color: #d0d1d0;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.course-strip {
  min-height: 132px;
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  color: var(--black);
  background: var(--paper);
}

.course-title,
.distance {
  padding: 28px 4vw;
  display: grid;
  align-content: center;
  border-right: 1px solid #bbb8b0;
}

.course-title > span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.course-title small,
.distance small {
  margin-top: 7px;
  color: #77756f;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.distance {
  grid-template-columns: auto 1fr;
  column-gap: 11px;
}

.distance strong {
  font-family: "Oswald", Impact, "Arial Narrow", sans-serif;
  font-size: 55px;
  line-height: 0.85;
}

.distance > span {
  padding-top: 8px;
  color: #65645f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.distance small {
  grid-column: 1 / -1;
}

.team-intro {
  padding: 90px 5vw;
  display: grid;
  grid-template-columns: 0.48fr 1.52fr;
  gap: 50px;
  color: var(--black);
  background: var(--paper);
}

.team-intro h2,
.match-story h2,
.sunshade h2 {
  font-size: clamp(50px, 5vw, 80px);
  line-height: 0.9;
}

.team-intro div > p {
  max-width: 780px;
  margin: 28px 0 0;
  color: #52524f;
  font-size: 18px;
  line-height: 1.7;
}

.match-story {
  min-height: 530px;
  padding: 66px 5vw;
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) 1fr;
  gap: 55px;
  background: var(--charcoal);
}

.story-image {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
}

.story-image > span {
  position: absolute;
  inset: 0 auto auto 0;
  padding: 15px 20px;
  background: var(--red);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.story-copy {
  align-self: center;
}

.story-copy > p:not(.eyebrow),
.sunshade-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin: 25px 0 28px;
  color: #b5b7b8;
  font-size: 16px;
  line-height: 1.7;
}

.sunshade {
  padding: 92px 5vw;
  background: var(--black);
}

.sunshade-heading {
  max-width: 950px;
  margin-bottom: 55px;
}

.sunshade-wide,
.sunshade-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.sunshade-wide {
  min-height: 520px;
}

.sunshade-wide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

figcaption {
  position: absolute;
  inset: auto auto 0 0;
  padding: 16px 20px;
  color: var(--white);
  background: rgba(8, 10, 11, 0.88);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.sunshade-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sunshade-gallery figure {
  height: 420px;
}

.sunshade-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-photo img {
  transform: translate3d(0, var(--product-shift), 0) scale(1.08);
  will-change: transform;
}

.site-nav a[aria-current="page"] {
  border-bottom-color: var(--red);
}

.page-hero {
  position: relative;
  min-height: 540px;
  padding: 180px 5vw 75px;
  display: grid;
  align-content: end;
  background-color: #111416;
  background-image:
    linear-gradient(90deg, rgba(8, 10, 11, 0.76), rgba(8, 10, 11, 0.08)),
    var(--page-image, linear-gradient(135deg, #252b2e, #080a0b));
  background-position: center calc(50% + var(--page-shift));
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.page-hero-image {
  position: absolute;
  z-index: 0;
  inset: -5%;
  width: 110%;
  max-width: none;
  height: 110%;
  object-fit: cover;
  object-position: var(--page-image-focus-desktop, center center);
  transform: translate3d(0, var(--page-shift), 0) scale(1.03);
  will-change: transform;
}

.page-hero[data-hero-rotation]::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 10, 11, 0.76), rgba(8, 10, 11, 0.08));
}

.page-hero[data-hero-rotation] > div {
  position: relative;
  z-index: 2;
}

.hero[data-hero-rotation],
.page-hero[data-hero-rotation] {
  background-image: none;
}

.page-team .page-hero {
  --page-image: url("../images/hero.jpg");
}

.page-competition .page-hero {
  --page-image: url("../images/match.jpg");
}

.page-journal .page-hero {
  --page-image: url("../images/rattle.jpg");
}

.page-sunshade .page-hero {
  --page-image: url("../images/sunshade-wide.jpg");
}

.page-contact .page-hero {
  --page-image: url("../images/hero.jpg");
}

.page-tracker .page-hero {
  --page-image: url("../images/match.jpg");
  background-position: center calc(54% + var(--page-shift));
}

.page-athlon .page-hero {
  --page-image: url("../images/athlon-helos-btr-scope.jpg");
  background-position: center calc(58% + var(--page-shift));
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(68px, 8vw, 126px);
}

.page-hero p:last-child {
  max-width: 680px;
  margin: 28px 0 0;
  color: #d5d5d2;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}

.content-section {
  padding: 80px 5vw;
}

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

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
}

.content-grid.reverse > :first-child {
  order: 2;
}

.content-grid img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.content-grid .team-history-image {
  object-position: center top;
}

.history-figure {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.history-figure figcaption {
  inset: auto auto 0 0;
  max-width: calc(100% - 24px);
}

.content-copy h2,
.section-heading h2 {
  font-size: clamp(46px, 5.5vw, 84px);
  line-height: 0.9;
}

.content-copy p,
.article-card p,
.contact-copy p {
  color: #b9bcbd;
  font-size: 16px;
  line-height: 1.75;
}

.paper .content-copy p,
.paper .article-card p {
  color: #555651;
}

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

.team-grid,
.article-grid,
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-card,
.article-card,
.stage-card {
  margin: 0;
  border: 1px solid var(--rule);
  background: var(--charcoal);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-card img.team-photo--wayne {
  object-position: left center;
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  color: #c8cbcc;
  background:
    radial-gradient(circle at 50% 42%, rgba(226, 59, 50, 0.16), transparent 32%),
    linear-gradient(145deg, #202527, #101315);
}

.team-card .team-photo-placeholder > span {
  width: 66px;
  height: 66px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--white);
  font: 700 24px/1 "Oswald", "Arial Narrow", Impact, sans-serif;
  letter-spacing: 0.04em;
}

.team-photo-placeholder > small {
  color: #aeb2b3;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.team-card figcaption,
.article-card,
.stage-card {
  position: static;
  padding: 22px;
}

.team-card strong,
.stage-card strong {
  display: block;
  text-transform: uppercase;
  font: 700 27px/1 "Oswald", "Arial Narrow", Impact, sans-serif;
  letter-spacing: 0.02em;
}

.team-card span,
.stage-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.team-card .team-affiliation {
  margin-top: 7px;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.credential-list {
  margin-top: 17px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-card .credential {
  min-height: 36px;
  margin: 0;
  padding: 6px 11px 6px 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #454a4d;
  border-radius: 2px;
  color: #d9dcdd;
  background: #171b1d;
  letter-spacing: 0.08em;
}

.team-card .credential-symbol {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  font: 900 9px/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.team-card .credential-text {
  margin: 0;
  color: inherit;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.team-card .credential--distinguished {
  border-color: rgba(212, 169, 67, 0.55);
  color: #ecd27d;
  background: linear-gradient(135deg, rgba(179, 129, 34, 0.22), rgba(17, 20, 22, 0.95));
}

.team-card .credential--distinguished .credential-symbol {
  border-style: double;
  border-width: 3px;
  box-shadow: 0 0 0 1px rgba(236, 210, 125, 0.22);
}

.team-card .credential--p100 {
  border-color: rgba(224, 199, 67, 0.55);
  color: #eee080;
  background: #233025;
}

.team-card .credential--p100 .credential-symbol {
  width: 32px;
  flex-basis: 32px;
  border-radius: 10px 10px 3px 3px;
  color: #2f502e;
  background: #e5d44f;
}

.team-card .credential--classification {
  border-color: rgba(226, 59, 50, 0.65);
  color: #f4a09a;
}

.team-card .credential--classification .credential-symbol {
  border-radius: 3px;
  color: var(--white);
  background: var(--red);
}

.team-card .credential--eic {
  border-color: rgba(184, 115, 51, 0.65);
  color: #d9a06e;
}

.team-card .credential--eic .credential-symbol {
  color: #f9e4ce;
  background: #8d4e27;
  box-shadow: inset 0 0 0 2px #b87333;
}

.team-disciplines {
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px solid var(--rule);
}

.team-card .discipline-heading {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.discipline-tags {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
}

.discipline-tags li {
  padding: 6px 8px;
  border: 1px solid #3d4244;
  color: #c7cacb;
  background: #171b1d;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.08em;
}

.stage-card {
  min-height: 275px;
  display: grid;
  align-content: space-between;
  border-top: 4px solid var(--red);
}

.stage-card .yardage {
  color: transparent;
  -webkit-text-stroke: 0.0155em #8d9091;
  font: 700 clamp(96px, 8vw, 138px)/0.9 "Oswald", Impact, sans-serif;
  letter-spacing: -0.025em;
}

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

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.article-card h2 {
  margin: 6px 0 18px;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 0.95;
}

.article-card .date {
  color: var(--red);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.longform {
  padding: 80px 5vw 100px;
  color: #2c2e2e;
  background: var(--paper);
}

.article-intro,
.article-body,
.article-figure-wide,
.article-image-grid {
  width: min(920px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.article-byline {
  margin: 0 0 28px;
  color: #6d6f6d;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: 0.16em;
}

.image-zoom-note {
  margin: -15px 0 28px;
  color: #777975;
  font-size: 12px;
  font-style: italic;
}

.editor-note {
  margin-bottom: 34px;
  padding: 24px 28px;
  border-left: 5px solid var(--red);
  background: #e5e1d8;
}

.editor-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.editor-note p,
.article-disclosure {
  margin: 0;
  color: #555651;
  font-size: 14px;
  line-height: 1.7;
}

.article-lede {
  margin: 0 0 48px;
  font-size: clamp(21px, 2.2vw, 29px);
  line-height: 1.55;
}

.article-body {
  padding: 48px 0 28px;
}

.article-body h2 {
  margin-bottom: 24px;
  color: var(--black);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.96;
}

.article-body p {
  margin: 0 0 24px;
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.82;
}

.article-figure {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.article-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-trigger {
  cursor: zoom-in;
}

.lightbox-trigger:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: -4px;
}

.image-lightbox {
  width: min(1180px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100vh - 48px);
  padding: 54px 18px 18px;
  border: 1px solid #4b4f50;
  color: var(--white);
  background: #050606;
  overflow: hidden;
}

.image-lightbox::backdrop {
  background: rgba(3, 4, 4, 0.88);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.image-lightbox figure {
  margin: 0;
  display: grid;
  justify-items: center;
}

.image-lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 150px);
  object-fit: contain;
}

.image-lightbox figcaption {
  position: static;
  width: 100%;
  padding: 14px 4px 2px;
  color: #c2c4c4;
  background: transparent;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 8px 10px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.lightbox-close span {
  margin-left: 5px;
  color: var(--red);
  font-size: 22px;
  line-height: 0;
  vertical-align: -2px;
}

.article-figure-wide {
  aspect-ratio: 16 / 9;
}

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

.article-image-grid .article-figure {
  min-height: 360px;
}

.article-conclusion .button {
  margin: 10px 0 28px;
}

.article-disclosure {
  padding-top: 24px;
  border-top: 1px solid #c8c4bc;
}

.article-conclusion .text-action {
  margin-top: 30px;
}

.tracker-section {
  padding: 80px 5vw 95px;
  color: var(--black);
  background: var(--paper);
}

.tracker-heading,
.tracker-source-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.tracker-heading h2,
.tracker-source-section h2 {
  font-size: clamp(50px, 6vw, 92px);
  line-height: 0.9;
}

.tracker-note,
.tracker-source-section p {
  margin: 0;
  color: #565752;
  font-size: 16px;
  line-height: 1.75;
}

.match-controls {
  margin: 50px 0 28px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(220px, 0.8fr) 1fr;
  gap: 18px;
  align-items: end;
  border: 1px solid #cbc7be;
  background: #e9e5dc;
}

.match-controls label {
  display: grid;
  gap: 8px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.match-controls select {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 14px;
  border: 1px solid #aaa79f;
  border-radius: 0;
  color: var(--black);
  background: #fff;
  font: 15px/1.2 Arial, Helvetica, sans-serif;
}

.match-controls > p {
  margin: 0;
  display: grid;
  justify-items: end;
  gap: 7px;
}

.match-controls strong {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.match-controls p span {
  color: #777872;
  font-size: 11px;
}

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

.match-card {
  min-height: 385px;
  padding: clamp(26px, 3.2vw, 45px);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-top: 5px solid var(--red);
  color: var(--white);
  background: var(--charcoal);
}

.match-date {
  width: 100%;
  margin: 0 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--red);
  text-transform: uppercase;
  font-size: clamp(12px, 0.85vw, 14px);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.match-date span {
  padding: 5px 7px;
  color: var(--white);
  background: var(--red);
  font-size: 10px;
}

.match-card h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 3.4vw, 55px);
  line-height: 0.98;
}

.match-venue {
  margin: 0 0 22px;
  color: #d5d6d5;
  text-transform: uppercase;
  font-size: clamp(11px, 0.75vw, 12px);
  font-weight: 800;
  letter-spacing: 0.13em;
}

.match-summary {
  margin: 0 0 22px;
  color: #b8bbbc;
  font-size: 15px;
  line-height: 1.7;
}

.match-tags {
  margin: auto 0 22px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.match-tags li {
  padding: 7px 9px;
  border: 1px solid #4b4f50;
  color: #c8caca;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.match-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 45px;
  border: 1px solid #cbc7be;
  color: #61625e;
  text-align: center;
}

.tracker-source-section {
  padding: 75px 5vw;
  background: var(--black);
}

.tracker-source-section p {
  margin-bottom: 25px;
  color: #b8bbbc;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(45px, 8vw, 120px);
}

.contact-card {
  padding: clamp(28px, 4vw, 55px);
  color: var(--black);
  background: var(--paper);
}

.contact-card label,
.contact-card input,
.contact-card textarea {
  display: block;
  width: 100%;
}

.contact-card label {
  margin: 20px 0 8px;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.contact-card input,
.contact-card textarea {
  padding: 14px;
  border: 1px solid #bbb8b0;
  border-radius: 0;
  background: #fff;
  font: inherit;
}

.contact-card textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-card .button {
  width: auto;
  margin-top: 24px;
  color: var(--white);
  border: 0;
  cursor: pointer;
}

footer {
  min-height: 185px;
  padding: 42px 5vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1.4fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--rule);
  background: #050606;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.footer-brand {
  display: grid;
  gap: 5px;
}

.footer-brand span,
.footer-details p,
.footer-details small {
  color: #96999b;
}

.footer-details {
  text-align: center;
}

.footer-details p {
  margin: 0 0 9px;
}

.footer-details small {
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.footer-connect {
  display: grid;
  justify-items: end;
  gap: 18px;
}

.footer-email {
  text-transform: none;
  letter-spacing: 0.08em;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.social-links a {
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--rule);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  border-color: var(--red);
  background: rgba(226, 59, 50, 0.14);
}

.social-links svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

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

  .location {
    display: none;
  }

  .site-nav {
    gap: 20px;
  }

  .hero-index {
    display: none;
  }

  .hero-copy {
    width: min(850px, 92vw);
  }
}

@media (min-width: 741px) {
  .hero h1,
  .page-hero h1 {
    white-space: nowrap;
    text-wrap: nowrap;
  }
}

@media (max-width: 740px) {
  html {
    scroll-padding-top: 92px;
  }

  .site-header {
    position: fixed;
    min-height: auto;
    padding: 16px 22px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    background: var(--black);
  }

  .header-lockup {
    width: min(190px, 58vw);
  }

  .menu-button {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    border: 0;
    background: transparent;
    text-transform: uppercase;
    font: 800 9px/1 Arial, sans-serif;
    letter-spacing: 0.18em;
  }

  .menu-button i,
  .menu-button i::before,
  .menu-button i::after {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
  }

  .menu-button i {
    position: relative;
  }

  .menu-button i::before,
  .menu-button i::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-button i::before {
    top: -6px;
  }

  .menu-button i::after {
    top: 6px;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--rule);
  }

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

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--rule);
  }

  .hero {
    min-height: 620px;
    padding: 90px 22px 60px;
    width: 100%;
    max-width: 100vw;
    background-color: #111416;
  }

  .hero-copy,
  .course-strip,
  .course-strip > *,
  .team-intro > *,
  .match-story > *,
  .sunshade > *,
  .sunshade-gallery > * {
    min-width: 0;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(6, 8, 9, 0.94) 0%, rgba(6, 8, 9, 0.32) 100%),
      linear-gradient(90deg, rgba(6, 8, 9, 0.55), transparent);
  }

  .hero-image {
    display: block;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: var(--hero-focus-mobile, center 42%);
  }

  .hero-image,
  .product-photo img {
    transform: none;
    will-change: auto;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(52px, 16vw, 72px);
    line-height: 0.9;
    transform: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .course-strip {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    grid-template-columns: repeat(3, 1fr);
  }

  .course-title {
    grid-column: 1 / -1;
    padding: 22px;
    border-bottom: 1px solid #bbb8b0;
  }

  .distance {
    padding: 22px 15px;
    min-width: 0;
  }

  .distance strong {
    font-size: 39px;
  }

  .distance small {
    overflow-wrap: anywhere;
  }

  .team-intro,
  .match-story {
    grid-template-columns: 1fr;
    padding: 55px 22px;
  }

  .story-image {
    min-height: 260px;
  }

  .sunshade {
    padding: 58px 22px;
  }

  .sunshade-wide,
  .sunshade-wide img {
    min-height: 330px;
    height: 330px;
  }

  .sunshade-gallery {
    grid-template-columns: 1fr;
  }

  .sunshade-gallery figure {
    height: 420px;
  }

  .page-hero {
    min-height: 480px;
    padding: 125px 22px 55px;
  }

  .page-hero-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: var(--page-image-focus-mobile, center center);
    transform: none;
    will-change: auto;
  }

  .page-hero h1 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .content-section {
    padding: 55px 22px;
  }

  .tracker-section,
  .tracker-source-section {
    padding: 55px 22px;
  }

  .tracker-heading,
  .tracker-source-section,
  .match-controls,
  .match-list {
    grid-template-columns: 1fr;
  }

  .match-controls > p {
    justify-items: start;
  }

  .match-card {
    min-height: 0;
  }

  .longform {
    padding: 55px 22px 70px;
  }

  .article-image-grid {
    grid-template-columns: 1fr;
  }

  .article-image-grid .article-figure {
    min-height: 280px;
  }

  .article-body {
    padding-top: 40px;
  }

  .editor-note {
    padding: 21px 20px;
  }

  .image-lightbox {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 48px 10px 12px;
  }

  .image-lightbox img {
    max-height: calc(100vh - 130px);
  }

  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .content-grid.reverse > :first-child {
    order: initial;
  }

  .team-grid,
  .article-grid,
  .stage-grid {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 35px 22px;
  }

  .footer-details {
    text-align: left;
  }

  .footer-connect {
    justify-items: start;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image,
  .product-photo img {
    transform: none;
    will-change: auto;
  }
}
