:root {
  --navy: #071b33;
  --navy-2: #0b2749;
  --orange: #f05a28;
  --orange-light: #ff7546;
  --cream: #f2eee7;
  --paper: #fbf9f5;
  --ink: #10223a;
  --muted: #657183;
  --line: rgba(16, 34, 58, .16);
  --white: #fff;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--navy);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .16);
  backdrop-filter: none;
}

a {
  color: inherit;
  text-decoration: none;
}

*:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

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

button {
  color: inherit;
  font: inherit;
}

svg {
  width: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

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

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  color: var(--white);
  background: var(--orange);
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 130px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .17);
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 249, 245, .93);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1400px, calc(100vw - 48px));
  height: 92px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  overflow: hidden;
  color: var(--white);
  background: var(--orange);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  transform: skew(-6deg);
}

.brand-mark span {
  display: grid;
  place-items: center;
  transform: skew(6deg);
}

.brand-mark span:last-child {
  color: var(--orange);
  background: var(--white);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  letter-spacing: -.02em;
}

.brand-copy strong {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-copy > span {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  margin-left: auto;
  margin-right: 46px;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-result {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.header-result:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0 13px;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 1;
  inset: 0;
  display: grid;
  align-content: center;
  min-height: 100dvh;
  padding: 120px 32px 40px;
  color: var(--white);
  background: var(--navy);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  font-family: var(--display);
  font-size: clamp(40px, 11vw, 72px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-menu nav span {
  color: var(--orange);
  font-family: var(--body);
  font-size: 11px;
}

.mobile-menu-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-scrim,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  animation: hero-in 1.4s var(--ease) both;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 20, 39, .92) 0%, rgba(5, 20, 39, .53) 48%, rgba(5, 20, 39, .12) 75%),
    linear-gradient(0deg, rgba(5, 20, 39, .72) 0%, transparent 48%);
}

.hero-grid {
  width: var(--shell);
  margin-inline: auto;
  border-right: 1px solid rgba(255, 255, 255, .11);
  border-left: 1px solid rgba(255, 255, 255, .11);
}

.hero-grid::before {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, .08);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-top: 170px;
  padding-bottom: 86px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.pulse-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid var(--orange);
  border-radius: inherit;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(.5); }
  100% { opacity: 0; transform: scale(1.4); }
}

.hero h1,
.volunteer h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(92px, 11.3vw, 180px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .72;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em,
.display-title em,
.volunteer h2 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 700;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 410px) 1fr;
  align-items: end;
  gap: 80px;
  margin-top: 52px;
}

.hero-intro {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
}

.hero-ctas {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease, border .2s ease, transform .2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

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

.button-primary:hover {
  background: var(--orange-light);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .56);
  background: rgba(7, 27, 51, .12);
  backdrop-filter: blur(6px);
}

.button-ghost:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.hero-rail {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-rail span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-rail i {
  width: 1px;
  height: 55px;
  overflow: hidden;
  background: rgba(255, 255, 255, .3);
}

.hero-rail i::after {
  display: block;
  width: 1px;
  height: 50%;
  content: "";
  background: var(--white);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  from { transform: translateY(-100%); }
  to { transform: translateY(220%); }
}

.hero-badge {
  position: absolute;
  z-index: 2;
  top: 134px;
  right: 6.5vw;
  display: flex;
  flex-direction: column;
  width: 128px;
  height: 128px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--cream);
  border-radius: 50%;
  font-family: var(--display);
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.hero-badge::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(7, 27, 51, .2);
  border-radius: inherit;
}

.hero-badge span {
  font-size: 11px;
  letter-spacing: .09em;
}

.hero-badge strong {
  margin: 5px 0;
  color: var(--orange);
  font-size: 22px;
}

.marquee {
  overflow: hidden;
  color: var(--white);
  background: var(--orange);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 35px;
  padding: 20px 0 20px max(24px, calc((100vw - var(--shell)) / 2));
  animation: marquee 28s linear infinite;
}

.marquee i {
  width: 8px;
  height: 8px;
  background: var(--navy);
  transform: rotate(45deg);
}

.event-status {
  padding: 58px 0;
  color: var(--white);
  background: #0a213e;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.event-status-inner {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  align-items: center;
  gap: 55px;
}

.event-status-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #54d38a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(84, 211, 138, .12);
}

.event-status-copy .eyebrow {
  margin-bottom: 9px;
}

.event-status-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .95;
  text-transform: uppercase;
}

.event-status-copy h2 em {
  color: var(--orange);
  font-style: italic;
}

.event-status-copy > p:last-child {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}

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

.event-status-actions .button {
  min-width: 190px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.after-movie {
  color: var(--white);
  background: var(--navy);
}

.result-layout {
  display: grid;
  grid-template-columns: 140px 1.1fr .8fr;
  gap: 60px;
}

.section-index {
  padding-top: 13px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.display-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 8vw, 118px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .78;
  text-transform: uppercase;
}

.result-copy {
  align-self: end;
}

.result-copy > p {
  max-width: 490px;
  margin: 0 0 46px;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
}

.result-links {
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.result-links a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease, padding .2s ease;
}

.result-links a:hover {
  padding-left: 8px;
  color: var(--orange-light);
}

.link-number {
  color: rgba(255, 255, 255, .35);
  font-size: 10px;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 70px;
  margin-bottom: 86px;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.race-list {
  border-top: 1px solid var(--line);
}

.race-card {
  position: relative;
  display: grid;
  grid-template-columns: 60px 90px 1fr 150px 60px;
  align-items: center;
  min-height: 158px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color .3s ease, padding .3s var(--ease);
}

.race-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: var(--navy);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s var(--ease);
}

.race-card:hover,
.race-card:focus-visible {
  z-index: 1;
  padding-right: 20px;
  padding-left: 20px;
  color: var(--white);
}

.race-card:hover::before,
.race-card:focus-visible::before {
  transform: scaleY(1);
}

.race-number {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.race-icon {
  width: 72px;
  height: 72px;
  padding: 9px;
  overflow: hidden;
  background: var(--cream);
  border-radius: 50%;
}

.race-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.race-name {
  display: flex;
  flex-direction: column;
  padding-left: 25px;
}

.race-name span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color .3s ease;
}

.race-card:hover .race-name span {
  color: rgba(255, 255, 255, .55);
}

.race-name strong {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  text-transform: uppercase;
}

.race-distance {
  color: var(--orange);
  font-family: var(--display);
  font-size: 35px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.race-distance small {
  display: block;
  color: var(--muted);
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: .1em;
  line-height: 1;
}

.race-arrow {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color .3s ease, background .3s ease, border .3s ease, transform .3s ease;
}

.race-card:hover .race-arrow {
  color: var(--navy);
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(45deg);
}

.experience {
  position: relative;
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 850px;
  color: var(--white);
  background: var(--navy);
}

.experience-image {
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.experience-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(48px, 7vw, 115px);
}

.experience-panel .section-index {
  margin-bottom: auto;
}

.experience-panel > p:not(.eyebrow) {
  max-width: 530px;
  margin: 42px 0 38px;
  color: rgba(255, 255, 255, .68);
}

.experience-panel blockquote {
  position: relative;
  max-width: 490px;
  margin: 0 0 40px;
  padding: 24px 0 24px 45px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  font-family: var(--display);
  font-size: 25px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.25;
}

.experience-panel blockquote span {
  position: absolute;
  top: 20px;
  left: 0;
  color: var(--orange);
  font-size: 45px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 34px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.experience-stamp {
  position: absolute;
  top: 50%;
  left: 56%;
  display: grid;
  width: 154px;
  height: 154px;
  place-items: center;
  color: var(--navy);
  background: var(--orange);
  border: 9px solid var(--navy);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.experience-stamp svg {
  position: absolute;
  inset: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  overflow: visible;
  fill: currentColor;
  stroke: none;
}

.experience-stamp text {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.experience-stamp strong {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 43px;
  line-height: 1;
}

.gallery {
  overflow: hidden;
  color: var(--white);
  background: #0b2440;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  align-items: end;
  gap: clamp(50px, 8vw, 130px);
  margin-bottom: 65px;
}

.gallery-heading .display-title {
  margin-bottom: 0;
}

.gallery-intro {
  padding-bottom: 8px;
}

.gallery-intro > p {
  margin: 0 0 38px;
  color: rgba(255, 255, 255, .7);
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gallery-controls button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, opacity .25s ease;
}

.gallery-controls button:hover:not(:disabled),
.gallery-controls button:focus-visible {
  color: var(--navy);
  background: var(--orange);
  border-color: var(--orange);
}

.gallery-controls button:disabled {
  opacity: .32;
  cursor: default;
}

.gallery-controls svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.gallery-count {
  min-width: 72px;
  color: rgba(255, 255, 255, .5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
}

.gallery-count strong {
  color: var(--orange);
}

.gallery-viewport {
  overflow-x: auto;
  padding: 0 max(20px, calc((100vw - var(--shell)) / 2)) 22px;
  scroll-behavior: smooth;
  scroll-padding-inline: max(20px, calc((100vw - var(--shell)) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-viewport:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

.gallery-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
}

.gallery-slide {
  position: relative;
  flex: 0 0 min(64vw, 760px);
  height: 480px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  scroll-snap-align: start;
}

.gallery-slide-portrait {
  flex-basis: min(38vw, 420px);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.gallery-slide:hover img {
  transform: scale(1.025);
}

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

.gallery-slide:nth-child(1) img {
  object-position: center 56%;
}

.gallery-slide:nth-child(3) img {
  object-position: center 43%;
}

.gallery-slide:nth-child(6) img {
  object-position: center 58%;
}

.gallery-slide::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(7, 27, 51, .88), transparent);
  content: "";
}

.gallery-slide figcaption {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-slide figcaption span {
  color: var(--orange);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.practical {
  background: var(--cream);
}

.resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.resource-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.resource-card img,
.resource-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.resource-card img {
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.resource-card:hover img {
  transform: scale(1.045);
}

.resource-shade {
  background: linear-gradient(0deg, rgba(7, 27, 51, .94) 0%, rgba(7, 27, 51, .18) 62%);
}

.resource-type,
.resource-content,
.resource-action {
  position: absolute;
  z-index: 1;
}

.resource-type {
  top: 26px;
  left: 26px;
  padding: 8px 11px;
  color: var(--navy);
  background: var(--cream);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.resource-content {
  bottom: 35px;
  left: 35px;
}

.resource-content span {
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.resource-content h3 {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .9;
  text-transform: uppercase;
}

.resource-action {
  right: 28px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quick-links {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.quick-links a {
  display: flex;
  min-height: 125px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease;
}

.quick-links a:first-child {
  border-left: 1px solid var(--line);
}

.quick-links a:hover {
  color: var(--white);
  background: var(--navy);
}

.quick-links small {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-family: var(--body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.volunteer {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.volunteer-photo,
.volunteer-overlay {
  position: absolute;
  inset: 0;
}

.volunteer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.volunteer-overlay {
  background:
    linear-gradient(90deg, rgba(7, 27, 51, .92) 0%, rgba(7, 27, 51, .66) 52%, rgba(7, 27, 51, .13) 80%),
    linear-gradient(0deg, rgba(7, 27, 51, .6), transparent 55%);
}

.volunteer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 820px;
  padding: 110px 0;
}

.volunteer h2 {
  max-width: 970px;
  font-size: clamp(70px, 9vw, 132px);
  line-height: .82;
}

.volunteer-bottom {
  display: grid;
  grid-template-columns: 430px auto;
  align-items: end;
  gap: 80px;
  margin-top: 65px;
}

.volunteer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .73);
}

.button-light {
  justify-self: start;
  color: var(--navy);
  background: var(--white);
}

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

.site-footer {
  padding: 95px 0 28px;
  color: var(--white);
  background: var(--navy);
}

/* Interior pages */
.inner-page {
  background: var(--paper);
}

.inner-page .site-header {
  color: var(--ink);
  background: rgba(251, 249, 245, .96);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.page-hero {
  position: relative;
  min-height: 650px;
  padding: 210px 0 90px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

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

.page-hero-media-runners img,
.page-hero-media-city img,
.page-hero-media-heroes img {
  object-position: center;
}

.page-hero-media-finish img {
  object-position: center 35%;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 27, 51, .96) 0%, rgba(7, 27, 51, .7) 48%, rgba(7, 27, 51, .22) 100%),
    linear-gradient(0deg, rgba(7, 27, 51, .8), transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(76px, 10vw, 150px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .76;
  text-transform: uppercase;
}

.page-hero h1 em {
  display: block;
  color: var(--orange);
  font-style: italic;
  font-weight: 700;
}

.page-hero-intro {
  display: grid;
  grid-template-columns: minmax(280px, 560px) auto;
  align-items: end;
  gap: 70px;
  margin-top: 48px;
}

.page-hero-intro p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
}

.page-hero-intro .button {
  width: fit-content;
  justify-self: end;
}

.anchor-nav {
  position: sticky;
  z-index: 20;
  top: 92px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 249, 245, .96);
  backdrop-filter: blur(15px);
  max-width: 100vw;
}

.anchor-nav-inner {
  display: flex;
  width: var(--shell);
  min-width: 0;
  margin-inline: auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-inline: contain;
}

.anchor-nav-inner::-webkit-scrollbar {
  display: none;
}

.anchor-nav a {
  padding: 19px 28px 17px 0;
  margin-right: 28px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.anchor-nav a:hover {
  color: var(--ink);
  border-color: var(--orange);
}

.anchor-nav a.is-active,
.anchor-nav a[aria-current="location"] {
  color: var(--ink);
  border-color: var(--orange);
}

.content-section {
  padding: 110px 0;
  scroll-margin-top: 150px;
}

.content-section + .content-section {
  border-top: 1px solid var(--line);
}

.content-section.alt {
  background: var(--cream);
}

.content-section.dark {
  color: var(--white);
  background: var(--navy);
}

.content-heading {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 520px);
  align-items: end;
  gap: 90px;
  margin-bottom: 65px;
}

.content-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .8;
  text-transform: uppercase;
}

.content-heading h2 em {
  display: block;
  color: var(--orange);
  font-style: italic;
  font-weight: 700;
}

.content-heading > p {
  margin: 0;
  color: var(--muted);
}

.dark .content-heading > p {
  color: rgba(255, 255, 255, .65);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fact {
  min-height: 145px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact small {
  display: block;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.section-actions .text-link {
  color: var(--ink);
}

.route-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  min-height: 570px;
  margin: 10px 0 30px;
  color: var(--white);
  background: var(--navy);
  scroll-margin-top: 160px;
}

.route-map {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  background: #e8e5df;
}

.route-map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .6s var(--ease);
}

.route-map span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 11px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.route-map:hover img {
  transform: scale(1.025);
}

.route-guide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px);
}

.route-guide h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .8;
  text-transform: uppercase;
}

.route-guide h2 em {
  color: var(--orange);
  font-style: italic;
}

.route-guide > p:not(.eyebrow) {
  margin: 30px 0;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}

.route-legend {
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.route-legend li {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  color: rgba(255, 255, 255, .58);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  font-size: 11px;
}

.route-legend strong {
  color: var(--white);
  font-size: 12px;
}

.route-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.route-half {
  background: #163760;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .35);
}

.route-four {
  background: #e84e3b;
}

.route-heroes {
  background: #f5c84c;
}

.partner-network {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 35px;
  padding: 34px;
  margin-top: 25px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.partner-network .footer-label {
  display: block;
}

.partner-network p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.partner-network .text-link {
  color: var(--ink);
  white-space: nowrap;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.alt .info-card {
  background: rgba(255, 255, 255, .5);
}

.dark .info-card {
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .04);
}

.info-card-number {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.info-card h3 {
  margin: 45px 0 18px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.info-card p,
.info-card li {
  color: var(--muted);
  font-size: 14px;
}

.dark .info-card p,
.dark .info-card li {
  color: rgba(255, 255, 255, .68);
}

.info-card ul,
.detail-copy ul {
  padding-left: 18px;
  margin: 16px 0 0;
}

.info-card a {
  color: var(--orange);
  font-weight: 700;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 35px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-row time {
  color: var(--orange);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 800;
}

.timeline-row strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.timeline-row span {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  padding: 30px;
  margin-top: 35px;
  color: var(--white);
  background: var(--orange);
}

.notice strong {
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
}

.notice p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(400px, 1.25fr);
  gap: 100px;
}

.detail-sidebar {
  align-self: start;
  position: sticky;
  top: 175px;
}

.detail-sidebar h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(55px, 6vw, 88px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .82;
  text-transform: uppercase;
}

.detail-sidebar h2 em {
  display: block;
  color: var(--orange);
  font-style: italic;
}

.detail-copy h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-copy p,
.detail-copy li {
  color: var(--muted);
}

.detail-block {
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.detail-block:last-child {
  border: 0;
}

.race-detail {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 60px;
  padding: 70px 0;
  scroll-margin-top: 140px;
  border-bottom: 1px solid var(--line);
}

.race-detail:last-child {
  border-bottom: 0;
}

.race-detail > div:last-child,
.race-detail-head > *,
.race-detail-body > * {
  min-width: 0;
}

.race-detail-icon {
  width: 115px;
  height: 115px;
  padding: 16px;
  background: var(--cream);
  border-radius: 50%;
}

.race-detail-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.race-detail-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}

.race-detail h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 6vw, 90px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .82;
  text-transform: uppercase;
}

.race-detail h2 span {
  display: block;
  color: var(--orange);
  font-size: .55em;
  letter-spacing: .03em;
}

.race-metric {
  color: var(--orange);
  font-family: var(--display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.race-metric small {
  display: block;
  color: var(--muted);
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: .1em;
}

.race-detail-body {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 50px;
  margin-top: 35px;
}

.race-detail-body p {
  margin: 0;
  color: var(--muted);
}

.race-specs {
  margin: 0;
}

.race-specs div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.race-specs dt {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.race-specs dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.accordion-list {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item button {
  display: grid;
  grid-template-columns: 40px 1fr 32px;
  width: 100%;
  align-items: center;
  gap: 15px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.accordion-item button > span:first-child {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.accordion-item button strong {
  font-family: var(--display);
  font-size: 25px;
  text-transform: uppercase;
}

.accordion-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 16px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform .2s ease;
}

.accordion-icon::after {
  transform: rotate(90deg);
}

.accordion-item.is-open .accordion-icon::after {
  transform: rotate(0);
}

.accordion-panel {
  max-width: 760px;
  padding: 0 55px 28px;
  color: var(--muted);
  font-size: 14px;
}

.contact-band {
  padding: 80px 0;
  color: var(--white);
  background: var(--orange);
}

.contact-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
}

.contact-band h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 6vw, 85px);
  font-weight: 900;
  line-height: .85;
  text-transform: uppercase;
}

.contact-band .button {
  color: var(--navy);
  background: var(--white);
}

@media (max-width: 900px) {
  .fact-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .content-heading,
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-sidebar {
    position: static;
  }

  .experience {
    display: block;
    min-height: 0;
  }

  .experience-image {
    height: clamp(400px, 62vw, 560px);
  }

  .experience-panel {
    min-height: 650px;
    padding: 90px var(--shell-gutter, 24px);
  }

  .experience-panel .section-index {
    margin-bottom: 48px;
  }

  .experience-stamp {
    top: clamp(400px, 62vw, 560px);
    left: auto;
    right: clamp(24px, 6vw, 52px);
    width: 140px;
    height: 140px;
    border-width: 8px;
    transform: translateY(-50%) rotate(-8deg);
  }
}

@media (max-width: 760px) {
  .page-hero {
    min-height: 610px;
    padding: 150px 0 70px;
  }

  .page-hero h1 {
    font-size: clamp(64px, 20vw, 96px);
  }

  .page-hero-intro,
  .content-heading,
  .race-detail-head,
  .race-detail-body,
  .contact-band-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-hero-intro .button {
    width: 100%;
    justify-self: stretch;
  }

  .anchor-nav {
    top: 76px;
  }

  .anchor-nav-inner {
    width: calc(100vw - 40px);
  }

  .anchor-nav a {
    flex: 0 0 auto;
  }

  .content-section {
    padding: 80px 0;
  }

  .fact-strip,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .timeline-row {
    grid-template-columns: 95px 1fr;
    gap: 15px;
  }

  .timeline-row span {
    grid-column: 2;
    text-align: left;
  }

  .race-detail {
    grid-template-columns: 65px 1fr;
    gap: 20px;
    padding: 50px 0;
  }

  .race-detail-icon {
    width: 62px;
    height: 62px;
    padding: 8px;
  }

  .race-detail h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .race-metric {
    text-align: left;
  }

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

  .race-detail .info-card {
    padding: 24px;
  }

  .race-detail .info-card h3 {
    font-size: 29px;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 100px;
  padding-bottom: 75px;
}

.brand-light .brand-mark span:last-child {
  color: var(--orange);
}

.footer-brand p {
  margin: 35px 0 0;
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-label {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  transition: color .2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-sponsor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.footer-sponsor span {
  color: rgba(255, 255, 255, .45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-sponsor strong {
  font-family: Arial, sans-serif;
  font-size: 35px;
  font-style: italic;
  letter-spacing: -.06em;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 26px;
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom > span:last-child {
  justify-self: end;
  color: var(--orange);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

.hero .reveal {
  animation: reveal-in .9s .2s var(--ease) forwards;
}

.hero h1.reveal {
  animation-delay: .33s;
}

.hero-bottom .reveal {
  animation-delay: .48s;
}

@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 48px, 920px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .result-layout {
    grid-template-columns: 100px 1fr;
  }

  .result-copy {
    grid-column: 2;
  }

  .race-card {
    grid-template-columns: 50px 80px 1fr 120px 50px;
  }

  .event-status-inner {
    grid-template-columns: 100px 1fr;
  }

  .event-status-actions {
    grid-column: 2;
    flex-direction: row;
    align-items: center;
  }

  .partner-network {
    grid-template-columns: 1fr 1fr;
  }

  .partner-network .text-link {
    grid-column: 1 / -1;
  }
}

@media (min-width: 901px) and (max-width: 1050px) {
  .experience {
    grid-template-columns: 50% 50%;
  }

  .experience-panel {
    padding: 80px 45px 80px 80px;
  }

  .experience-stamp {
    left: 50%;
    width: 132px;
    height: 132px;
    border-width: 8px;
  }

  .experience-stamp strong {
    font-size: 38px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 40px);
  }

  .section {
    padding: 88px 0;
  }

  .header-shell {
    width: calc(100vw - 32px);
    height: 76px;
  }

  .brand-copy strong {
    font-size: 10px;
  }

  .brand-copy > span {
    font-size: 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .header-result {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 52px;
  }

  .hero-kicker {
    margin-bottom: auto;
  }

  .hero h1 {
    font-size: clamp(72px, 23vw, 112px);
    line-height: .76;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 38px;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-badge {
    display: none;
  }

  .hero-rail {
    display: none;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 20, 39, .86), rgba(5, 20, 39, .22)),
      linear-gradient(0deg, rgba(5, 20, 39, .92), transparent 65%);
  }

  .button {
    min-height: 54px;
    padding: 0 18px;
  }

  .marquee {
    font-size: 17px;
  }

  .marquee-track {
    gap: 25px;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .event-status {
    padding: 52px 0;
  }

  .event-status-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .event-status-actions {
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .event-status-actions .button {
    width: 100%;
  }

  .result-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .result-layout .section-index,
  .result-copy {
    grid-column: auto;
  }

  .display-title {
    font-size: clamp(62px, 19vw, 95px);
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 55px;
  }

  .section-lead {
    max-width: 430px;
  }

  .race-card {
    grid-template-columns: 36px 62px 1fr 42px;
    min-height: 125px;
  }

  .race-icon {
    width: 54px;
    height: 54px;
    padding: 7px;
  }

  .race-name {
    padding-left: 14px;
  }

  .race-name strong {
    font-size: clamp(27px, 8vw, 39px);
  }

  .race-distance {
    display: none;
  }

  .race-arrow {
    width: 40px;
    height: 40px;
  }

  .experience {
    display: block;
    min-height: 0;
  }

  .experience-image {
    height: 65vw;
    min-height: 330px;
  }

  .experience-panel {
    padding: 85px 20px;
  }

  .experience-panel .section-index {
    margin-bottom: 38px;
  }

  .experience-stamp {
    top: min(65vw, 430px);
    left: auto;
    right: 22px;
    width: 120px;
    height: 120px;
    border-width: 7px;
    transform: translateY(-50%) rotate(-8deg);
  }

  .experience-stamp text {
    font-size: 9px;
  }

  .experience-stamp strong {
    font-size: 34px;
  }

  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 45px;
  }

  .gallery-intro > p {
    max-width: 480px;
    margin-bottom: 28px;
  }

  .gallery-track {
    gap: 14px;
  }

  .gallery-slide {
    flex-basis: calc(100vw - 54px);
    height: 470px;
  }

  .gallery-slide-portrait {
    flex-basis: calc(100vw - 54px);
  }

  .gallery-slide figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .page-hero-media-finish img {
    object-position: center 30%;
  }

  .page-hero-media-city img {
    object-position: 58% center;
  }

  .volunteer-photo img {
    object-position: 56% center;
  }

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

  .route-showcase {
    grid-template-columns: 1fr;
  }

  .route-map {
    min-height: 0;
    aspect-ratio: 1 / .78;
  }

  .route-guide {
    padding: 50px 28px;
  }

  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .partner-network {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .partner-network .text-link {
    grid-column: auto;
    white-space: normal;
  }

  .resource-card {
    min-height: 0;
    aspect-ratio: 1.15;
  }

  .quick-links {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .quick-links a,
  .quick-links a:first-child {
    min-height: 105px;
    border-left: 1px solid var(--line);
  }

  .volunteer,
  .volunteer-content {
    min-height: 760px;
  }

  .volunteer h2 {
    font-size: clamp(61px, 17vw, 92px);
  }

  .volunteer-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 45px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-nav {
    gap: 25px;
  }

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

  .footer-bottom > span:last-child {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    gap: 12px;
    font-size: 10px;
  }

  .hero-intro {
    font-size: 14px;
  }

  .race-card {
    grid-template-columns: 28px 52px 1fr 36px;
  }

  .race-icon {
    width: 46px;
    height: 46px;
  }

  .race-arrow {
    width: 34px;
    height: 34px;
  }

  .resource-content {
    bottom: 30px;
    left: 25px;
  }

  .resource-action {
    right: 22px;
  }

  .resource-content h3 {
    font-size: 46px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    row-gap: 45px;
  }
}

@media (max-width: 360px) {
  .race-detail {
    grid-template-columns: 1fr;
  }

  .race-detail-icon {
    margin-bottom: 4px;
  }

  .race-specs div {
    grid-template-columns: 72px 1fr;
  }

  .notice {
    padding: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
