:root {
  --ink: #173d4a;
  --ink-soft: #52656b;
  --green: #326247;
  --gold: #b9872b;
  --paper: #fafbf8;
  --white: #fff;
  --mist: #eef3ed;
  --line: #dce3dd;
  --max: 1160px;
  --font: "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.65 var(--font);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3,
dl {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 5px;
}
a:hover {
  text-decoration-thickness: 1px;
}
button {
  font: inherit;
  cursor: pointer;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
  border-radius: 2px;
}
[id] {
  scroll-margin-top: 96px;
}
h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(32px, 3.5vw, 42px);
}
h2 {
  font-size: clamp(24px, 2.4vw, 30px);
}
h3 {
  font-size: 18px;
}
.container {
  width: min(var(--max), calc(100% - 64px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--white);
  padding: 12px 20px;
  border: 2px solid var(--green);
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  line-height: 1.5;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid var(--green);
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}
.button:hover {
  background: #254c36;
  border-color: #254c36;
}
.button--outline {
  background: transparent;
  color: var(--green);
  border-color: #bdccbf;
}
.button--outline:hover {
  color: var(--green);
  background: var(--mist);
  border-color: var(--green);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}
.text-link:hover {
  text-decoration: underline;
}
.text-link > span,
.button > span {
  font-size: 19px;
  font-weight: 500;
}

/* Clear, consistent navigation on every page. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 80px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.logo::before {
  content: "";
  display: block;
  width: 40px;
  height: 44px;
  background: url("assets/goa-marathon-mark.svg") center / contain no-repeat;
}
.logo small {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--ink-soft);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 24px);
}
.main-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--green);
  border-bottom-color: var(--green);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
  background: var(--white);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
  transition: transform 0.15s ease;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

/* Home: the photo keeps its own colours and the text has its own space. */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  padding-block: 44px 36px;
}
.home-hero__copy {
  padding-block: 12px;
}
.home-hero__copy .eyebrow {
  margin-bottom: 15px;
}
.race-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 23px;
  font-size: 13px;
  font-weight: 650;
}
.date-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.home-hero h1 {
  max-width: 540px;
  font-size: clamp(38px, 4.1vw, 57px);
  line-height: 1.09;
  letter-spacing: -0.045em;
}
.home-hero h1 em {
  color: var(--green);
  font-style: normal;
}
.home-hero__lead {
  max-width: 455px;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 26px;
}
.hero-note {
  margin-top: 15px;
  font-size: 12px;
  color: var(--ink-soft);
}
.home-hero__photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--mist);
}
.home-hero__photo img {
  width: 100%;
  height: 462px;
  object-fit: cover;
  object-position: 57% 55%;
}
.home-hero__photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 11px;
  font-weight: 650;
}
.event-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  padding-block: 18px;
}
.event-strip > div {
  display: grid;
  gap: 4px;
  padding-inline: 28px;
  border-left: 1px solid var(--line);
}
.event-strip > div:first-child {
  border-left: 0;
  padding-left: 0;
}
.event-strip span {
  font-size: 11px;
  color: var(--ink-soft);
}
.event-strip strong {
  font-size: 14px;
  font-weight: 700;
}
.section {
  padding-block: 62px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.section-heading .eyebrow {
  margin-bottom: 8px;
}
.section-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 18px;
}
.race-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}
.race-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px 23px 20px;
  border-left: 1px solid var(--line);
  transition: background 0.18s ease;
}
.race-card:first-child {
  border-left: 0;
}
.race-card:hover {
  background: var(--mist);
}
.race-card:focus-visible {
  outline-offset: -4px;
}
.race-card__distance {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.15;
  color: var(--green);
}
.race-card__distance small {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}
.race-card h3 {
  margin-bottom: 9px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.025em;
}
.race-card p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}
.race-card__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}
.race-card__link span {
  font-size: 19px;
}
.story-section {
  padding-block: 42px;
  background: var(--mist);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
}
.story-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 4px;
}
.story-photo figcaption {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 11px;
}
.story-copy {
  max-width: 455px;
}
.story-copy p:not(.eyebrow) {
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 15px;
}
.story-copy .text-link {
  margin-top: 17px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.plan-card {
  display: flex;
  align-items: start;
  flex-direction: column;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}
.plan-card__number {
  font-size: 12px;
  color: var(--green);
  font-weight: 750;
  margin-bottom: 13px;
}
.plan-card h3 {
  margin-bottom: 10px;
}
.plan-card p {
  max-width: 290px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--ink-soft);
}
.plan-card .text-link {
  margin-top: auto;
}
.plan-card:hover .text-link {
  text-decoration: underline;
}
.help-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 27px;
  margin-bottom: 52px;
  border-block: 1px solid var(--line);
}
.help-strip h2 {
  font-size: 21px;
}
.help-strip p {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Inner pages open with useful, compact titles rather than promotional banners. */
.page-hero .container {
  padding-block: 28px 27px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--ink-soft);
  font-size: 12px;
}
.breadcrumb a:hover {
  color: var(--green);
  text-decoration: underline;
}
.breadcrumb span {
  color: #a2afa6;
}
.page-description {
  max-width: 700px;
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 15px;
}
.page-layout {
  display: grid;
  grid-template-columns: 186px minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  padding-block: 34px 64px;
  align-items: start;
}
.side-nav {
  position: sticky;
  top: 108px;
}
.side-nav__label {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}
.side-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 650;
}
.side-nav a:hover {
  color: var(--green);
  text-decoration: underline;
}
.content-stack {
  min-width: 0;
}
.content-stack > * + * {
  margin-top: 38px;
}
.content-intro {
  max-width: 760px;
}
.content-intro h2,
.photo-split h2 {
  font-size: clamp(23px, 2.2vw, 28px);
}
.content-intro p:not(.eyebrow) {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}
.content-intro > .button,
.content-intro > .text-link {
  margin-top: 20px;
}
.content-intro .eyebrow {
  margin-bottom: 9px;
}
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.photo-split__media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
}
.photo-split__body p:not(.eyebrow) {
  margin-top: 16px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.photo-split__body .text-link {
  margin-top: 14px;
}
.race-list {
  border-top: 1px solid var(--line);
}
.race-detail {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.race-detail__distance {
  font-size: 33px;
  font-weight: 750;
  letter-spacing: -0.045em;
  color: var(--green);
  line-height: 1.1;
}
.race-detail__distance span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}
.race-detail h2 {
  font-size: 21px;
}
.race-detail p {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 15px;
}
.race-detail .race-detail__note {
  font-size: 13px;
}
.notice {
  padding: 22px 25px;
  border-left: 3px solid var(--gold);
  background: #f0f3eb;
  border-radius: 0 4px 4px 0;
}
.notice h2 {
  font-size: 17px;
  letter-spacing: -0.015em;
}
.notice p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.notice .text-link {
  margin-top: 7px;
}
.inline-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
}
.inline-help h2 {
  font-size: 20px;
}
.inline-help p {
  margin-top: 7px;
  font-size: 14px;
  color: var(--ink-soft);
}
.checklist {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.checklist li {
  position: relative;
  padding: 18px 0 18px 43px;
  border-top: 1px solid var(--line);
  counter-increment: step;
}
.checklist li::before {
  content: "0" counter(step);
  position: absolute;
  left: 0;
  top: 20px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.checklist strong {
  font-size: 15px;
  font-weight: 700;
}
.content-intro .checklist p {
  margin-top: 6px;
  font-size: 14px;
}
.event-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.event-details > div {
  padding: 17px 24px 17px 0;
  border-bottom: 1px solid var(--line);
}
.event-details dt {
  font-size: 12px;
  color: var(--ink-soft);
}
.event-details dd {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 700;
}
.event-details a {
  color: var(--green);
  text-decoration: underline;
}
.faq-heading {
  margin-bottom: 18px;
  font-size: 22px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  min-height: 60px;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  color: var(--green);
  font-size: 23px;
  font-weight: 400;
  flex-shrink: 0;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details[open] summary {
  color: var(--green);
}
.faq-list details p {
  max-width: 680px;
  padding: 0 30px 21px 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: start;
  gap: 70px;
  padding-block: 42px 58px;
}
.contact-primary > p:not(.eyebrow) {
  margin-top: 17px;
  max-width: 490px;
  color: var(--ink-soft);
  font-size: 15px;
}
.contact-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 22px;
  margin-top: 22px;
  border-block: 1px solid var(--line);
  font-size: clamp(23px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--green);
}
.contact-phone:hover {
  text-decoration: underline;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.contact-details {
  padding: 28px;
  background: var(--mist);
  border-radius: 5px;
}
.contact-details h2 {
  font-size: 20px;
}
.contact-list {
  margin-top: 7px;
}
.contact-list div {
  padding-top: 21px;
}
.contact-list dt {
  font-size: 12px;
  color: var(--ink-soft);
}
.contact-list dd {
  margin: 6px 0 0;
  font-size: 14px;
}

/* A small, useful footer. */
.site-footer {
  background: var(--ink);
  color: var(--white);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  padding-block: 43px 33px;
}
.footer-main .logo small {
  color: #b7c9c9;
}
.footer-main > div > p {
  margin-top: 18px;
  font-size: 13px;
  color: #c7d4d6;
}
.footer-main > div > .footer-date {
  margin-top: 6px;
  font-size: 12px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.footer-links strong {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.footer-links a {
  display: flex;
  align-items: center;
  min-height: 36px;
  width: fit-content;
  color: #c7d4d6;
  font-size: 13px;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
  border-top: 1px solid #385964;
  color: #c7d4d6;
  font-size: 11px;
}
.footer-bottom a {
  display: flex;
  align-items: center;
  min-height: 44px;
}

@media (max-width: 1000px) {
  .container {
    width: calc(100% - 48px);
  }
  .nav-bar {
    min-height: 72px;
    flex-wrap: wrap;
    gap: 0 20px;
    padding-block: 12px;
  }
  .main-nav {
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 4px 24px;
    padding-top: 14px;
  }
  .has-js .menu-toggle {
    display: block;
  }
  .has-js .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    background: var(--paper);
    padding: 12px 24px 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 20px #173d4a0c;
  }
  .has-js .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }
  .main-nav a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .home-hero {
    gap: 28px;
    padding-top: 30px;
  }
  .home-hero h1 {
    font-size: 40px;
  }
  .home-hero__photo img {
    height: 415px;
  }
  .home-hero__lead {
    font-size: 15px;
  }
  .race-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .race-card:nth-child(3) {
    border-left: 0;
  }
  .race-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .race-card {
    padding: 23px;
  }
  .race-card__distance {
    margin-bottom: 15px;
  }
  .story-grid {
    gap: 30px;
  }
  .page-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 22px;
  }
  .side-nav {
    position: static;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .side-nav__label {
    flex-basis: 100%;
    margin-bottom: 0;
  }
  .side-nav a {
    min-height: 44px;
    border-bottom: 0;
    padding: 6px 0;
  }
  .contact-grid {
    gap: 30px;
  }
  .footer-main {
    gap: 36px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  html {
    scroll-padding-top: 84px;
  }
  [id] {
    scroll-margin-top: 84px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .nav-bar {
    min-height: 66px;
    padding-block: 9px;
  }
  .logo {
    font-size: 17px;
    gap: 8px;
  }
  .logo::before {
    width: 32px;
    height: 36px;
  }
  .logo small {
    font-size: 8px;
    margin-top: 3px;
  }
  .has-js .main-nav {
    padding-inline: 18px;
    max-height: calc(100dvh - 66px);
  }
  .has-js .main-nav.is-open {
    grid-template-columns: 1fr;
  }
  .home-hero {
    grid-template-columns: 1fr;
    padding-block: 28px 23px;
    gap: 24px;
  }
  .home-hero__copy {
    padding: 0;
  }
  .home-hero__copy .eyebrow {
    margin-bottom: 11px;
  }
  .race-date {
    margin-bottom: 18px;
    font-size: 12px;
  }
  .home-hero h1 {
    font-size: clamp(34px, 9.7vw, 43px);
    max-width: 440px;
  }
  .home-hero__lead {
    margin-top: 17px;
    font-size: 15px;
  }
  .hero-actions {
    margin-top: 20px;
    gap: 12px 20px;
  }
  .hero-note {
    font-size: 11px;
    margin-top: 11px;
  }
  .home-hero__photo img {
    height: 245px;
    object-position: 55% 55%;
  }
  .home-hero__photo figcaption {
    right: 10px;
    bottom: 10px;
    font-size: 10px;
  }
  .event-strip {
    grid-template-columns: 1fr 1fr;
    padding-block: 14px;
    row-gap: 12px;
  }
  .event-strip > div {
    padding-inline: 14px 0;
  }
  .event-strip strong {
    font-size: 13px;
  }
  .section {
    padding-block: 38px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 20px;
  }
  .section-heading h2 {
    font-size: 25px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.1px;
  }
  .race-card {
    padding: 19px 15px 15px;
  }
  .race-card__distance {
    font-size: 31px;
    margin-bottom: 12px;
    gap: 5px;
  }
  .race-card__distance small {
    font-size: 12px;
  }
  .race-card h3 {
    font-size: 14px;
  }
  .race-card p {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .race-card__link {
    font-size: 11px;
  }
  .section-note {
    font-size: 12px;
  }
  .story-section {
    padding-block: 28px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .story-photo img {
    height: 245px;
  }
  .story-copy h2 {
    font-size: 26px;
  }
  .story-copy .eyebrow {
    margin-bottom: 8px;
  }
  .story-copy p:not(.eyebrow) {
    margin-top: 13px;
    font-size: 14px;
  }
  .story-copy .text-link {
    margin-top: 13px;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .plan-card {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 14px;
    padding-top: 20px;
  }
  .plan-card__number {
    grid-row: 1 / 4;
    margin-top: 3px;
  }
  .plan-card h3 {
    font-size: 17px;
    margin-bottom: 7px;
  }
  .plan-card p {
    max-width: none;
    margin-bottom: 5px;
    font-size: 13px;
  }
  .plan-card .text-link {
    grid-column: 2;
    font-size: 13px;
  }
  .help-strip {
    flex-direction: column;
    align-items: start;
    gap: 17px;
    padding-block: 24px;
    margin-bottom: 34px;
  }
  .help-strip h2 {
    font-size: 20px;
  }
  .help-strip p {
    font-size: 13px;
  }
  .page-hero .container {
    padding-block: 20px 23px;
  }
  .breadcrumb {
    font-size: 11px;
    gap: 8px;
    margin-bottom: 12px;
  }
  .page-hero h1 {
    font-size: 31px;
  }
  .page-description {
    margin-top: 12px;
    font-size: 14px;
  }
  .page-layout {
    padding-block: 16px 42px;
    gap: 20px;
  }
  .side-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 12px;
    padding-bottom: 12px;
  }
  .side-nav__label {
    grid-column: 1 / -1;
    font-size: 10px;
  }
  .side-nav a {
    font-size: 12px;
    min-height: 44px;
    line-height: 1.5;
  }
  .content-stack > * + * {
    margin-top: 30px;
  }
  .content-intro h2,
  .photo-split h2 {
    font-size: 23px;
  }
  .content-intro p:not(.eyebrow) {
    margin-top: 13px;
    font-size: 14px;
  }
  .photo-split {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .photo-split__media img {
    height: 230px;
  }
  .photo-split__body p:not(.eyebrow) {
    font-size: 14px;
  }
  .race-detail {
    grid-template-columns: 77px minmax(0, 1fr);
    gap: 15px;
    padding-block: 21px;
  }
  .race-detail__distance {
    font-size: 30px;
  }
  .race-detail__distance span {
    font-size: 11px;
    margin-top: 7px;
  }
  .race-detail h2 {
    font-size: 18px;
    line-height: 1.35;
  }
  .race-detail p {
    font-size: 14px;
  }
  .race-detail .race-detail__note {
    font-size: 12px;
  }
  .notice {
    padding: 18px;
  }
  .notice h2 {
    font-size: 16px;
  }
  .notice p {
    font-size: 13px;
  }
  .notice .text-link {
    font-size: 13px;
  }
  .event-details {
    grid-template-columns: 1fr;
  }
  .event-details > div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding-block: 15px;
    padding-right: 0;
  }
  .event-details dd {
    margin: 0;
    font-size: 13px;
  }
  .event-details dt {
    font-size: 12px;
  }
  .faq-list summary {
    font-size: 14px;
    min-height: 62px;
    padding-block: 15px;
  }
  .faq-list details p {
    padding-right: 15px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    padding-block: 28px 34px;
    gap: 27px;
  }
  .contact-primary > p:not(.eyebrow) {
    font-size: 14px;
  }
  .contact-details {
    padding: 23px;
  }
  .footer-main {
    padding-block: 31px 22px;
    gap: 28px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }
  .footer-links a {
    min-height: 44px;
    font-size: 12px;
  }
  .footer-links strong {
    font-size: 11px;
    margin-bottom: 3px;
  }
  .footer-bottom {
    gap: 15px;
    font-size: 10px;
    min-height: 64px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
