@font-face {
  font-family: Lilita;
  src: url("assets/fonts/lilita.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Patrick;
  src: url("assets/fonts/patrick.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Nunito;
  src: url("assets/fonts/nunito.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Nunito;
  src: url("assets/fonts/nunito-bold.ttf") format("truetype");
  font-weight: 600 900;
  font-display: swap;
}
:root {
  --cream: #fff8e9;
  --ink: #102827;
  --orange: #ffad57;
  --teal: #087e7d;
  --yellow: #f6d35d;
  --line: #c9c9ac;
  --body: Nunito, Arial, sans-serif;
  --display: Lilita, Arial, sans-serif;
  --hand: Patrick, cursive;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
  scrollbar-color: var(--teal) var(--cream);
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
}
::selection {
  background: var(--yellow);
  color: var(--ink);
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 6px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
}
h2 {
  font-size: clamp(2.5rem, 4vw, 4.25rem);
}
h3 {
  font-size: 1.8rem;
}
p + p {
  margin-top: 1em;
}
p {
  max-width: 68ch;
}
.handwritten {
  font-family: var(--hand);
  font-weight: 400;
  line-height: 1.05;
}
.section-wrap {
  width: min(1304px, calc(100% - 112px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 20;
  padding: 12px;
  background: var(--cream);
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.2%;
  gap: 30px;
  position: relative;
  z-index: 5;
  background: var(--cream);
}
.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.9rem);
  line-height: 1;
  text-transform: uppercase;
}
.logo-frame {
  width: 155px;
  height: 94px;
  position: relative;
  display: block;
  flex: none;
  overflow: hidden;
}
.logo-frame img {
  width: 155px;
  max-width: none;
  position: absolute;
  top: -18px;
  left: 0;
}
.logo-frame .logo-lettering {
  clip-path: inset(55% 0 35% 0);
  filter: brightness(0);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  font-weight: 800;
  font-size: 19px;
}
.desktop-nav a {
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--teal);
}
.mobile-nav,
.mobile-break {
  display: none;
}
.hero {
  background: var(--orange) url("assets/hero-paper.webp") center/100% 100%
    no-repeat;
}
.hero-inner {
  max-width: 1536px;
  min-height: 690px;
  margin: auto;
  position: relative;
}
.hero-copy {
  width: 54%;
  padding: 50px 0 54px 5.7%;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(74px, 8.7vw, 134px);
  line-height: 0.99;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.hero h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
}
.hero h1 span:first-child {
  transform: rotate(-3deg);
  transform-origin: left bottom;
}
.hero h1 span:nth-child(2) {
  transform: rotate(-1deg);
}
.hero h1 span:last-child {
  transform: rotate(-2deg);
}
.hero-note {
  font-size: clamp(27px, 2.8vw, 43px);
  text-align: right;
  padding-right: 35px;
  margin-top: 12px;
  transform: rotate(-3deg);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}
.hero-note svg {
  width: 65px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-intro {
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.25;
  font-weight: 800;
  margin: 24px 0 20px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--cream);
  padding: 15px 23px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  min-height: 56px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  white-space: normal;
}
.button:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-3px);
}
.hero-collage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.runner {
  position: absolute;
  height: 108%;
  width: 38%;
  object-fit: contain;
  bottom: -2%;
  left: 47%;
  z-index: 2;
  filter: drop-shadow(2px 5px 3px #26342d16);
  animation: collage-settle 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.mud-badge {
  position: absolute;
  top: 11%;
  right: 6.3%;
  width: 155px;
  height: 145px;
  background: var(--yellow);
  font-size: 34px;
  text-align: center;
  padding: 15px;
  border: 3px solid var(--ink);
  border-radius: 49% 46% 50% 43%;
  transform: rotate(8deg);
  z-index: 3;
}
.mud-badge:after {
  content: "";
  position: absolute;
  inset: 5px -7px -5px 5px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
}
.snapshot {
  padding: 12px 12px 9px;
  background: var(--cream);
  box-shadow: 4px 8px 18px #162b2730;
  position: relative;
}
.snapshot:before {
  content: "";
  position: absolute;
  z-index: 3;
  top: -13px;
  left: 29%;
  width: 42%;
  height: 31px;
  background: #edce78e8;
  transform: rotate(-5deg);
}
.snapshot figcaption {
  font-size: 30px;
  padding: 8px 4px 0;
  text-align: center;
}
.hero-snapshot {
  position: absolute;
  width: 28%;
  right: 1.2%;
  top: 46%;
  transform: rotate(5deg);
  z-index: 1;
  pointer-events: auto;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-snapshot:hover {
  transform: rotate(0deg) translateY(-4px);
}
.hero-snapshot img {
  aspect-ratio: 1.6;
  object-fit: cover;
}
.rally-strip {
  position: relative;
  z-index: 3;
  background: var(--teal);
  color: var(--cream);
  font-family: var(--hand);
  font-size: clamp(25px, 3.3vw, 51px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  padding: 16px 6%;
  transform: rotate(1deg);
  margin: -10px -0px 0;
  text-align: center;
}
.rally-strip span {
  display: block;
  transform: rotate(-1deg);
}
.club-intro {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1fr;
  gap: 40px;
  align-items: start;
  padding-block: 72px 92px;
}
.club-intro h2 {
  font-size: clamp(30px, 3.1vw, 47px);
}
.club-intro p {
  font-size: 17px;
  line-height: 1.5;
}
.club-intro p + p {
  margin-top: 6px;
}
.underline {
  position: relative;
  isolation: isolate;
  display: inline-block;
}
.underline:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 7px;
  background: #f48c27;
  border-radius: 60%;
  transform: rotate(-2deg);
}
.text-link {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  display: inline-block;
  margin-top: 20px;
}
.text-link:hover {
  text-decoration-thickness: 3px;
}
.intro-photo {
  transform: rotate(-3deg);
}
.intro-photo img {
  aspect-ratio: 1.8;
  object-fit: cover;
  border-radius: 8px;
}
.intro-photo figcaption {
  text-align: center;
  font-size: 26px;
  margin-top: 10px;
}
.first-run {
  background: #f6d35d;
  padding: 80px 0 88px;
}
.first-run-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 100px;
}
.aside-note {
  font-size: 30px;
  display: block;
  transform: rotate(-4deg);
  margin-bottom: 24px;
}
.first-run h2 {
  font-size: clamp(48px, 5vw, 76px);
}
.first-run h2 span {
  color: #086866;
}
.first-run-heading > p {
  margin-top: 24px;
  max-width: 34ch;
}
.first-run .button {
  margin-top: 28px;
}
.first-run .small-note {
  font-size: 14px;
  margin-top: 14px;
}
.first-run-steps {
  padding-top: 24px;
  display: grid;
  gap: 36px;
}
.first-run-steps article {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid #9c933f;
}
.first-run-steps article:last-child {
  padding-bottom: 0;
  border: 0;
}
.step-number {
  font-family: var(--hand);
  font-size: 56px;
  line-height: 1;
  width: 40px;
  flex: none;
  transform: rotate(-7deg);
}
.first-run-steps p {
  margin-top: 14px;
}
.first-run-steps h3 {
  font-size: 32px;
}
.runs-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px 90px;
  padding-block: 110px 55px;
  align-items: center;
}
.runs-photo {
  transform: rotate(-4deg);
}
.runs-photo img {
  aspect-ratio: 1.2;
  object-fit: cover;
  object-position: center;
}
.runs-photo figcaption {
  padding-block: 16px 8px;
  font-size: 33px;
}
.runs-copy h2 {
  font-size: clamp(36px, 4vw, 59px);
  margin-bottom: 28px;
}
.runs-copy .button {
  margin-top: 28px;
}
.places {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  gap: 16px 29px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 30px;
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.places span {
  position: relative;
}
.places span:not(:last-child):after {
  content: "";
  position: absolute;
  right: -16px;
  top: 11px;
  width: 5px;
  height: 5px;
  background: #b95805;
  border-radius: 50%;
}
.questions-section {
  background: #f1eedc;
  padding: 80px 0 90px;
}
.questions-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.questions-layout > div > p {
  margin-top: 26px;
}
.questions-layout h2 .handwritten {
  font-size: 1em;
  color: #086866;
}
.questions {
  border-top: 1px solid #9fafa0;
}
.questions details {
  border-bottom: 1px solid #9fafa0;
}
.questions summary {
  list-style: none;
  cursor: pointer;
  padding: 23px 38px 23px 0;
  position: relative;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.4;
}
.questions summary::-webkit-details-marker {
  display: none;
}
.questions summary:after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  font-family: var(--hand);
  font-size: 32px;
}
.questions details[open] summary:after {
  content: "−";
}
.questions details[open] summary {
  padding-bottom: 10px;
}
.questions details p {
  padding: 0 34px 24px 0;
  font-size: 17px;
}
.questions summary:hover {
  color: #086866;
}
.team-section {
  padding-block: 90px 105px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 55px;
}
.section-heading p {
  max-width: 43ch;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.team-photo {
  padding: 10px;
  background: white;
  box-shadow: 2px 5px 16px #233c2418;
  transform: rotate(-2deg);
  margin-bottom: 27px;
}
.team-member:nth-child(2) .team-photo {
  transform: rotate(2deg);
}
.team-member:nth-child(3) .team-photo {
  transform: rotate(-1deg);
}
.team-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center 38%;
}
.team-member:first-child .team-photo img {
  object-position: center 40%;
}
.team-member h3 {
  font-size: 31px;
}
.team-role {
  font-size: 14px;
  font-weight: 800;
  margin-top: 10px;
  min-height: 44px;
}
.team-member > p:not(.team-role) {
  font-size: 17px;
  margin-top: 10px;
}
.team-member .text-link {
  font-size: 16px;
}
.hello-section {
  background: var(--teal);
  color: var(--cream);
  padding: 68px 0 60px;
  text-align: center;
}
.hello-inner > .handwritten {
  font-size: 34px;
  display: block;
  transform: rotate(-4deg);
  margin-bottom: 18px;
}
.hello-inner h2 {
  font-size: clamp(68px, 9vw, 132px);
  text-transform: uppercase;
}
.hello-inner > p {
  margin: 24px auto 0;
  font-size: 21px;
}
.hello-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.button-cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.button-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.button-cream:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}
.button-outline:hover {
  background: var(--cream);
  color: var(--ink);
}
.hello-inner .final-note {
  font-size: 33px;
  margin-top: 32px;
}
.hello-section a:focus-visible {
  outline-color: var(--cream);
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 30px 5%;
  font-size: 14px;
}
.footer-brand {
  font-family: var(--display);
  font-size: 23px;
  text-decoration: none;
}
.site-footer > a:last-child {
  font-weight: 800;
  white-space: nowrap;
}
@keyframes collage-settle {
  from {
    transform: translateY(15px) rotate(2deg);
  }
  to {
    transform: translateY(0) rotate(0);
  }
}
@media (min-width: 1600px) {
  .hero-inner {
    min-height: 740px;
  }
  .hero-copy {
    padding-top: 55px;
  }
  .hero h1 {
    font-size: 139px;
  }
  .hero-intro {
    margin-top: 36px;
  }
}
@media (max-width: 1200px) {
  .site-header {
    padding-inline: 3%;
    gap: 20px;
  }
  .logo-frame {
    width: 110px;
    height: 80px;
  }
  .logo-frame img {
    width: 125px;
    top: -15px;
    left: -7px;
  }
  .brand {
    gap: 10px;
  }
  .desktop-nav {
    font-size: 16px;
    gap: 24px;
  }
  .hero-inner {
    min-height: 610px;
  }
  .hero-copy {
    padding-left: 5%;
    padding-top: 42px;
    width: 56%;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .button {
    padding: 13px 16px;
    font-size: 16px;
    gap: 14px;
  }
  .runner {
    left: 47%;
    width: 39%;
    height: 102%;
    bottom: 0;
  }
  .mud-badge {
    width: 126px;
    height: 121px;
    font-size: 28px;
    right: 4%;
    top: 10%;
  }
  .hero-snapshot {
    top: 49%;
    width: 27%;
    right: 1.8%;
  }
  .snapshot figcaption {
    font-size: 24px;
  }
  .section-wrap {
    width: calc(100% - 80px);
  }
  .club-intro {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .intro-photo {
    display: none;
  }
  .first-run-layout,
  .questions-layout {
    gap: 60px;
  }
  .runs-section {
    gap: 50px;
  }
  .team-grid {
    gap: 28px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    gap: 18px;
  }
  .brand {
    font-size: 20px;
  }
  .logo-frame {
    width: 90px;
  }
  .logo-frame img {
    width: 105px;
    top: -4px;
  }
  .hero h1 {
    font-size: 8.7vw;
  }
  .hero-inner {
    min-height: 560px;
  }
  .hero-copy {
    width: 57%;
    padding-top: 40px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .button {
    min-width: 225px;
  }
  .hero-note {
    padding-right: 20px;
    font-size: 27px;
    gap: 10px;
  }
  .hero-intro {
    font-size: 21px;
    margin-top: 22px;
  }
  .runner {
    height: 98%;
    left: 47%;
    width: 39%;
  }
  .hero-snapshot {
    top: 53%;
  }
  .mud-badge {
    right: 3%;
    width: 110px;
    height: 110px;
    font-size: 25px;
  }
  .club-intro {
    padding-block: 55px;
  }
  .first-run-layout {
    gap: 40px;
  }
  .first-run-heading .button {
    font-size: 16px;
    padding: 14px;
  }
  .first-run-steps article {
    gap: 16px;
  }
  .runs-section {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .runs-copy h2 {
    font-size: 40px;
  }
  .runs-copy p {
    font-size: 16px;
  }
  .questions-layout {
    gap: 45px;
  }
  .team-grid {
    gap: 24px;
  }
  .team-member h3 {
    font-size: 25px;
  }
  .team-role {
    min-height: 62px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 16px;
  }
  .section-wrap {
    width: calc(100% - 40px);
  }
  body {
    font-size: 17px;
  }
  .site-header {
    height: 80px;
    padding-inline: 17px;
    gap: 12px;
  }
  .brand {
    font-size: 18px;
    gap: 5px;
  }
  .logo-frame {
    width: 78px;
    height: 77px;
  }
  .logo-frame img {
    width: 91px;
    left: -7px;
    top: -2px;
  }
  .mobile-break {
    display: block;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
    font-size: 16px;
    font-weight: 800;
  }
  .mobile-nav summary {
    cursor: pointer;
    list-style: none;
    border: 1.5px solid var(--ink);
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav summary span {
    font-size: 23px;
    line-height: 1;
  }
  .mobile-nav[open] summary span {
    transform: rotate(45deg);
  }
  .mobile-nav nav {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    display: grid;
    padding: 12px 22px 22px;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
    box-shadow: 0 12px 20px #10282720;
    z-index: 10;
  }
  .mobile-nav nav a {
    padding: 12px 8px;
    text-decoration: none;
  }
  .hero {
    background-size: auto 100%;
    background-position: 35% center;
  }
  .hero-inner {
    min-height: 0;
  }
  .hero-copy {
    width: 100%;
    padding: 34px 22px 0;
  }
  .hero h1 {
    font-size: clamp(58px, 14.1vw, 92px);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .hero-note {
    justify-content: flex-start;
    padding: 0 0 0 24%;
    margin-top: 8px;
    font-size: 30px;
    gap: 10px;
  }
  .hero-note svg {
    width: 52px;
  }
  .hero-intro {
    font-size: 21px;
    margin: 22px 0 18px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
  }
  .hero-actions .button {
    min-width: 0;
    font-size: 15px;
    gap: 8px;
    padding: 12px 10px;
    min-height: 59px;
    text-align: left;
  }
  .hero-collage {
    height: 390px;
    position: relative;
    margin-top: 16px;
    overflow: hidden;
  }
  .runner {
    height: 111%;
    width: 66%;
    left: 1%;
    bottom: -7%;
    z-index: 2;
  }
  .mud-badge {
    top: 20px;
    right: 10%;
    width: 110px;
    height: 105px;
    font-size: 26px;
    padding: 10px;
  }
  .hero-snapshot {
    width: 47%;
    right: 3%;
    top: 46%;
    padding: 7px 7px 5px;
    transform: rotate(6deg);
  }
  .hero-snapshot figcaption {
    font-size: 22px;
    padding: 8px 0 2px;
  }
  .snapshot:before {
    height: 23px;
    top: -9px;
  }
  .rally-strip {
    margin-top: -4px;
    padding: 15px 15px;
    font-size: clamp(18px, 4.7vw, 28px);
    white-space: nowrap;
  }
  .club-intro {
    display: block;
    padding: 42px 0 49px;
  }
  .club-intro h2 {
    font-size: 39px;
    margin-bottom: 25px;
  }
  .club-intro p {
    font-size: 17px;
  }
  .club-intro .text-link {
    font-size: 15px;
  }
  .first-run {
    padding: 48px 0 52px;
  }
  .first-run-layout {
    display: block;
  }
  .aside-note {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .first-run h2 {
    font-size: 57px;
  }
  .first-run-heading > p {
    margin-top: 20px;
  }
  .first-run-heading .button {
    font-size: 16px;
    margin-top: 22px;
  }
  .first-run-steps {
    padding-top: 42px;
    gap: 28px;
  }
  .first-run-steps article {
    padding-bottom: 25px;
    gap: 15px;
  }
  .first-run-steps h3 {
    font-size: 28px;
  }
  .first-run-steps p {
    font-size: 16px;
    margin-top: 10px;
  }
  .step-number {
    font-size: 47px;
    width: 32px;
  }
  .runs-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 58px 0 38px;
    gap: 36px;
  }
  .runs-photo {
    margin: 8px 8px 0;
  }
  .runs-photo img {
    aspect-ratio: 1.5;
  }
  .runs-photo figcaption {
    font-size: 28px;
    padding-block: 12px 5px;
  }
  .runs-copy h2 {
    font-size: 41px;
    margin-bottom: 24px;
  }
  .runs-copy p {
    font-size: 17px;
  }
  .runs-copy .button {
    font-size: 16px;
  }
  .places {
    font-size: 15px;
    gap: 10px 26px;
    padding-top: 24px;
  }
  .places span:not(:last-child):after {
    top: 9px;
    right: -15px;
  }
  .questions-section {
    padding: 47px 0 48px;
  }
  .questions-layout {
    display: block;
  }
  .questions-layout h2 {
    font-size: 40px;
  }
  .questions-layout > div > p {
    margin-top: 18px;
  }
  .questions {
    margin-top: 30px;
  }
  .questions summary {
    font-size: 18px;
    padding-block: 20px;
  }
  .questions summary:after {
    top: 14px;
  }
  .questions details p {
    font-size: 16px;
  }
  .team-section {
    padding-block: 48px 60px;
  }
  .section-heading {
    display: block;
    margin-bottom: 35px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .section-heading p {
    margin-top: 22px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .team-photo {
    margin: 0 6px 22px;
  }
  .team-photo img {
    object-position: center 36%;
  }
  .team-member:first-child .team-photo img {
    object-position: center 35%;
  }
  .team-member h3 {
    font-size: 31px;
  }
  .team-role {
    min-height: 0;
    margin-top: 8px;
    font-size: 14px;
  }
  .team-member > p:not(.team-role) {
    margin-top: 14px;
  }
  .hello-section {
    padding-block: 45px 38px;
  }
  .hello-inner > .handwritten {
    font-size: 29px;
  }
  .hello-inner h2 {
    font-size: 64px;
    line-height: 1;
  }
  .hello-inner > p {
    font-size: 18px;
    margin-top: 20px;
  }
  .hello-actions {
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
  }
  .hello-actions .button {
    font-size: 16px;
  }
  .hello-inner .final-note {
    font-size: 29px;
    margin-top: 27px;
  }
  .site-footer {
    padding: 26px 20px;
    align-items: flex-start;
    gap: 20px;
    font-size: 13px;
  }
  .footer-brand {
    font-size: 19px;
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
/* The original square logo includes generous transparent margins. */
@media (min-width: 1201px) {
  .logo-frame img {
    width: 130px;
    left: 12px;
    top: -15px;
  }
}
main {
  overflow-x: clip;
}
@media (min-width: 701px) {
  .runner {
    height: 98%;
    bottom: 0;
  }
}
@media (max-width: 700px) {
  .runner {
    height: 98%;
    bottom: 0;
  }
}

/* Ink-like strokes echo the hand-drawn notes in the hero. */
.doodle-arrow {
  display: inline-block;
  width: 1.8em;
  height: 1.4em;
  flex: none;
  vertical-align: middle;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.text-link .doodle-arrow {
  margin-left: 0.3em;
}

/* A quick paper-and-ink assembly, then the page settles. */
@media (prefers-reduced-motion: no-preference) {
  .hero h1 span {
    animation: ink-stamp 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero h1 span:nth-child(2) {
    animation-delay: 100ms;
  }
  .hero h1 span:nth-child(3) {
    animation-delay: 200ms;
  }
  .runner {
    animation: runner-arrives 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .mud-badge {
    animation: sticker-lands 600ms 240ms both;
  }
  .hero-snapshot {
    animation: print-lands 650ms 180ms both;
  }
  .hero-note svg path {
    stroke-dasharray: 160;
    animation: ink-draw 700ms 300ms both;
  }
  .doodle-arrow {
    transition: translate 180ms ease-out;
  }
  a:hover .doodle-arrow,
  a:focus-visible .doodle-arrow {
    translate: 4px 0;
  }
  .button:active {
    transform: translateY(1px) scale(0.97);
  }
  .team-photo {
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .team-member:focus-within .team-photo {
    transform: rotate(0deg) translateY(-6px);
  }
  .questions details[open] p {
    animation: answer-appears 220ms ease-out;
  }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .team-member:hover .team-photo {
    transform: rotate(0deg) translateY(-6px);
  }
  .mud-badge:hover {
    animation: sticker-wiggle 420ms ease-in-out;
  }
}
@keyframes ink-stamp {
  from {
    opacity: 0;
    scale: 1.12;
    translate: 0 -12px;
  }
  to {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}
@keyframes runner-arrives {
  from {
    opacity: 0;
    translate: 28px 12px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes sticker-lands {
  0% {
    opacity: 0;
    scale: 1.3;
    rotate: -12deg;
  }
  65% {
    opacity: 1;
    scale: 0.96;
    rotate: 3deg;
  }
  100% {
    opacity: 1;
    scale: 1;
    rotate: 0deg;
  }
}
@keyframes print-lands {
  from {
    opacity: 0;
    translate: 16px -24px;
    rotate: -9deg;
  }
  to {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
  }
}
@keyframes ink-draw {
  from {
    stroke-dashoffset: 160;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes sticker-wiggle {
  30% {
    rotate: -6deg;
  }
  65% {
    rotate: 4deg;
  }
  100% {
    rotate: 0deg;
  }
}
@keyframes answer-appears {
  from {
    opacity: 0;
    translate: 0 -4px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

/* Scroll assembles the scrapbook; unsupported browsers keep the finished page. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .club-intro h2,
    .first-run h2,
    .runs-copy h2,
    .section-heading h2,
    .hello-inner h2 {
      animation: scroll-stamp linear both;
      animation-timeline: view();
      animation-range: entry 25% entry 100%;
    }
    .intro-photo,
    .runs-photo,
    .team-photo {
      animation: scroll-print linear both;
      animation-timeline: view();
      animation-range: entry 20% entry 100%;
    }
    .team-member:nth-child(2) .team-photo {
      --paper-turn: 5deg;
    }
    .team-member:nth-child(3) .team-photo {
      --paper-turn: -3deg;
    }
    .step-number {
      animation: scroll-number linear both;
      animation-timeline: view();
      animation-range: entry 30% cover 25%;
    }
    .hello-inner > .handwritten {
      animation: scroll-signoff linear both;
      animation-timeline: view();
      animation-range: entry 30% cover 25%;
    }
  }
}
@keyframes scroll-stamp {
  from {
    opacity: 0.3;
    scale: 0.9;
    rotate: -2deg;
  }
  to {
    opacity: 1;
    scale: 1;
    rotate: 0deg;
  }
}
@keyframes scroll-print {
  from {
    opacity: 0.25;
    translate: 0 38px;
    rotate: var(--paper-turn, -5deg);
    scale: 0.94;
  }
  to {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
    scale: 1;
  }
}
@keyframes scroll-number {
  from {
    opacity: 0.3;
    scale: 0.65;
    rotate: -18deg;
  }
  to {
    opacity: 1;
    scale: 1;
    rotate: 0deg;
  }
}
@keyframes scroll-signoff {
  from {
    opacity: 0.3;
    translate: -18px 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  text-decoration: none;
}
.back-to-top:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.back-to-top .doodle-arrow {
  width: 22px;
  height: 30px;
}
@media (prefers-reduced-motion: no-preference) {
  .back-to-top:hover .doodle-arrow,
  .back-to-top:focus-visible .doodle-arrow {
    translate: 0 -4px;
  }
}
@media (max-width: 700px) {
  .site-footer {
    flex-direction: column;
    gap: 12px;
  }
  .footer-brand {
    display: inline-block;
  }
}
