:root {
  --black: #050505;
  --red: #d71920;
  --carbon: #1e2023;
  --steel: #71767c;
  --off-white: #f2f0eb;
  --gold: #b58a45;
  --line-dark: rgba(242, 240, 235, 0.19);
  --line-light: rgba(5, 5, 5, 0.17);
  --content: 1220px;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--off-white);
  color: var(--black);
  padding: 12px 16px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 92px;
  padding: 0 max(5vw, calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--off-white);
  border-bottom: 1px solid var(--line-light);
}

.brand {
  width: 238px;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.desktop-nav a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 34px 0 32px;
}

.desktop-nav a:hover {
  border-color: var(--red);
}

.desktop-nav .nav-cta {
  background: var(--red);
  color: white;
  padding: 13px 18px;
  border: 0;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  cursor: pointer;
  list-style: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 12px 14px;
  border: 1px solid var(--line-light);
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(78vw, 290px);
  background: var(--carbon);
  color: var(--off-white);
  border-top: 3px solid var(--red);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.mobile-nav nav a {
  display: block;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(500px, 0.92fr) minmax(0, 1.08fr);
  background: var(--carbon);
  color: var(--off-white);
}

.hero-copy {
  padding: clamp(70px, 7vw, 110px) max(5vw, calc((100vw - var(--content)) / 2));
  padding-right: clamp(45px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--off-white);
}

.eyebrow.gold {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 0;
}

h1 {
  font-size: clamp(3.35rem, 5.6vw, 6.35rem);
  text-transform: uppercase;
}

h1 > span {
  display: block;
}

.hero-red {
  color: var(--red);
}

.hero-disciplines {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--off-white);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 750;
}

.brand-line {
  margin: 7px 0 0;
  color: #c9c9c7;
  font-size: 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  padding: 14px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button.primary:hover {
  background: #b51118;
}

.button.secondary {
  border-color: var(--line-dark);
  color: var(--off-white);
}

.button.secondary:hover {
  border-color: var(--off-white);
}

.hero-media {
  margin: 0;
  min-height: 690px;
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--line-dark);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

.hero-media figcaption,
.arena-gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  margin: 0;
  padding: 9px 12px;
  background: rgba(5, 5, 5, 0.88);
  color: var(--off-white);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section {
  padding: clamp(74px, 8vw, 120px) max(5vw, calc((100vw - var(--content)) / 2));
}

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

.section-heading h2,
.brand-section h2,
.partners-copy h2,
.contact-section h2 {
  font-size: clamp(2.75rem, 5vw, 5.4rem);
  text-transform: uppercase;
}

.section-lead {
  max-width: 540px;
  margin: 22px 0 0;
  color: #505358;
  font-size: 1.05rem;
}

.discipline-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.discipline-card {
  min-width: 0;
  background: var(--carbon);
  color: var(--off-white);
  border-bottom: 4px solid var(--red);
}

.discipline-card:first-child {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.discipline-card:nth-child(n + 2) {
  min-height: 350px;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(205px, 0.72fr);
}

.discipline-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.discipline-card:first-child img {
  min-height: 540px;
  flex: 1 1 auto;
}

.discipline-card:nth-child(1) img {
  object-position: center 57%;
}

.discipline-card:nth-child(2) img {
  object-position: 54% center;
}

.discipline-card:nth-child(3) img {
  object-position: 55% center;
}

.discipline-card > div {
  min-height: 174px;
  padding: 22px 24px 25px;
  position: relative;
}

.discipline-card:nth-child(n + 2) > div {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.discipline-card span,
.pathway-number {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.discipline-card h3 {
  margin-top: 6px;
  font-size: clamp(1.85rem, 2.5vw, 2.8rem);
  text-transform: uppercase;
}

.discipline-card p {
  margin: 13px 0 0;
  color: #c2c3c4;
  font-size: 0.92rem;
}

.event-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(48px, 8vw, 120px);
  background: var(--black);
  color: var(--off-white);
}

.event-status h2 {
  max-width: 740px;
  font-size: clamp(2.75rem, 5vw, 5.4rem);
  text-transform: uppercase;
}

.event-status > p:last-of-type {
  max-width: 610px;
  color: #c2c3c4;
}

.status-label {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 11px;
  border: 1px solid var(--steel);
  color: #d7d8d8;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.light-button {
  background: var(--off-white);
  color: var(--black);
}

.light-button:hover {
  background: white;
}

.past-event-card {
  padding: clamp(30px, 4vw, 48px);
  align-self: center;
  background: var(--off-white);
  color: var(--black);
  border-top: 5px solid var(--red);
}

.past-date {
  margin: 0 0 9px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.past-event-card h3 {
  max-width: 450px;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  text-transform: uppercase;
}

.past-event-card dl {
  margin: 28px 0;
}

.past-event-card dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
}

.past-event-card dt {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.past-event-card dd {
  margin: 0;
  font-weight: 750;
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.text-links a,
.pathway-grid a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  background: var(--carbon);
  color: var(--off-white);
}

.brand-section figure {
  min-height: 650px;
  margin: 0;
  overflow: hidden;
}

.brand-section figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% center;
}

.brand-section > div {
  padding: clamp(70px, 8vw, 120px) max(5vw, calc((100vw - var(--content)) / 2));
  padding-left: clamp(48px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-section > div > p:not(.eyebrow) {
  max-width: 590px;
  margin: 25px 0 0;
  color: #c7c8c8;
  font-size: 1.05rem;
}

.brand-section > div > p:last-child {
  color: var(--off-white);
  font-weight: 800;
}

.split-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.split-heading .section-lead {
  margin: 0 0 5px;
}

.arena-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: 330px 250px;
  gap: 12px;
}

.arena-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--carbon);
}

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

.gallery-crowd {
  grid-column: 1 / 3;
}

.gallery-crowd img {
  object-position: center 42%;
}

.gallery-ride {
  grid-column: 3;
  grid-row: 1 / 3;
}

.gallery-ride img {
  object-position: center 57%;
}

.gallery-rope img {
  object-position: center;
}

.gallery-partners {
  grid-column: 2;
}

.gallery-partners img {
  object-position: center;
}

.pathways {
  background: var(--carbon);
  color: var(--off-white);
}

.pathways .section-lead {
  color: #bfc1c2;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.pathway-grid article {
  min-height: 285px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line-dark);
}

.pathway-grid article:last-child {
  border-right: 0;
}

.pathway-grid h3 {
  margin-top: 16px;
  font-size: 2.5rem;
  text-transform: uppercase;
}

.pathway-grid p {
  margin: 16px 0 26px;
  color: #c2c3c4;
}

.pathway-grid a {
  margin-top: auto;
}

.partners-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  background: var(--black);
  color: var(--off-white);
}

.partners-image {
  min-height: 610px;
  overflow: hidden;
}

.partners-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners-copy {
  padding: clamp(70px, 8vw, 120px) max(5vw, calc((100vw - var(--content)) / 2));
  padding-left: clamp(50px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partners-copy > p:not(.eyebrow) {
  max-width: 625px;
  color: #c3c5c5;
}

.partners-copy .partner-lead {
  margin-top: 28px;
  color: var(--off-white);
  font-size: 1.15rem;
  font-weight: 750;
}

.partners-copy .button {
  width: fit-content;
  margin-top: 22px;
}

.merch-intro {
  max-width: 465px;
}

.merch-intro p {
  margin: 0 0 18px;
  color: #505358;
}

.dark-button {
  background: var(--carbon);
  color: var(--off-white);
}

.dark-button:hover {
  background: var(--black);
}

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

.product-grid article {
  min-width: 0;
}

.product-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-top: 3px solid var(--carbon);
}

.product-grid article > div {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding-top: 15px;
}

.product-grid h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.product-grid span {
  font-size: 0.88rem;
  font-weight: 900;
}

.merch-note {
  max-width: 920px;
  margin: 28px 0 0;
  color: #595c60;
  font-size: 0.86rem;
}

.merch-note a {
  font-weight: 800;
}

.contact-section {
  padding: clamp(70px, 8vw, 115px) max(5vw, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 8vw, 120px);
  background: var(--red);
  color: white;
}

.contact-section h2 {
  max-width: 650px;
}

.contact-options {
  align-self: center;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-options a {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.contact-options span {
  color: rgba(255, 255, 255, 0.78);
}

.contact-options strong {
  text-align: right;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

footer {
  min-height: 150px;
  padding: 34px max(5vw, calc((100vw - var(--content)) / 2));
  display: grid;
  grid-template-columns: 220px 1fr auto auto;
  align-items: center;
  gap: 28px;
  background: var(--off-white);
  border-top: 1px solid var(--line-light);
  color: #55585c;
  font-size: 0.78rem;
}

.footer-brand {
  width: 210px;
}

footer a:not(.footer-brand) {
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 19px;
  }

  .desktop-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
  }

  .hero-copy {
    padding-left: 5vw;
  }

  .brand-section,
  .partners-section {
    grid-template-columns: 1fr 1fr;
  }

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

  footer {
    grid-template-columns: 210px 1fr auto;
  }

  footer > p:last-child {
    grid-column: 2 / -1;
    margin: 0;
  }
}

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

  .site-header {
    min-height: 76px;
  }

  .brand {
    width: 188px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 590px;
    padding: 68px 6vw 64px;
  }

  .hero-media {
    min-height: 470px;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .discipline-grid,
  .event-section,
  .brand-section,
  .partners-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .discipline-grid {
    grid-template-rows: none;
  }

  .discipline-card:first-child,
  .discipline-card:nth-child(n + 2) {
    min-height: 0;
    display: block;
    grid-row: auto;
  }

  .discipline-card img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .discipline-card:first-child img {
    min-height: 0;
  }

  .discipline-card:nth-child(1) img {
    object-position: center 52%;
  }

  .discipline-card > div {
    min-height: 0;
  }

  .brand-section figure,
  .partners-image {
    min-height: 460px;
  }

  .brand-section > div,
  .partners-copy {
    padding: 72px 6vw;
  }

  .split-heading {
    display: block;
  }

  .split-heading .section-lead {
    margin-top: 22px;
  }

  .arena-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 340px 220px;
  }

  .gallery-crowd {
    grid-column: 1 / 3;
  }

  .gallery-ride {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-rope {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-partners {
    grid-column: 1 / 3;
    grid-row: 3;
  }

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

  .pathway-grid article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .pathway-grid article:last-child {
    border-bottom: 0;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  footer > p:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.9rem, 14vw, 4.35rem);
  }

  .hero-copy {
    min-height: 545px;
  }

  .hero-media {
    min-height: 350px;
  }

  .hero-media figcaption,
  .arena-gallery figcaption {
    right: 10px;
    bottom: 10px;
    font-size: 0.6rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    justify-content: space-between;
  }

  .section {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .past-event-card {
    padding: 30px 24px;
  }

  .brand-section figure,
  .partners-image {
    min-height: 340px;
  }

  .arena-gallery {
    display: block;
  }

  .arena-gallery figure {
    height: 280px;
    margin-bottom: 10px;
  }

  .arena-gallery .gallery-ride {
    height: 390px;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 12px;
  }

  .product-grid h3 {
    font-size: 0.85rem;
  }

  .contact-options a {
    display: block;
  }

  .contact-options strong {
    display: block;
    margin-top: 5px;
    text-align: left;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-brand {
    width: 190px;
    margin-bottom: 8px;
  }
}

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

  .button {
    transition: none;
  }
}
