:root {
  --ink: #161112;
  --ink-soft: #25191b;
  --cream: #fff4e3;
  --paper: #f6e9d5;
  --orange: #f45a19;
  --sun: #ff8b25;
  --red: #dd302d;
  --wine: #702934;
  --line: rgba(255, 244, 227, 0.2);
  --display: "Archivo Black", Impact, sans-serif;
  --condensed: "Oswald", Arial Narrow, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.13;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(22, 17, 18, 0.92), rgba(22, 17, 18, 0));
}

.brand {
  display: flex;
  flex-direction: column;
  width: max-content;
  line-height: 0.86;
}

.brand-main {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -2px;
}

.brand-sub {
  margin-top: 6px;
  color: var(--sun);
  font-family: var(--condensed);
  font-size: 9px;
  letter-spacing: 5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--condensed);
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--sun);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 52px;
  padding: 0 22px;
  color: var(--cream);
  border: 1px solid rgba(255, 244, 227, 0.52);
  background: var(--orange);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  border-color: var(--sun);
  background: var(--red);
  transform: translateY(-3px);
}

.link-arrow {
  position: relative;
  display: inline-block;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.link-arrow::before {
  position: absolute;
  top: 8px;
  left: 1px;
  width: 18px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.link-arrow::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.button-small {
  min-height: 39px;
  padding: 0 16px;
  font-size: 13px;
}

.button-ghost {
  background: rgba(22, 17, 18, 0.22);
  backdrop-filter: blur(6px);
}

.button-dark {
  border-color: var(--ink);
  color: var(--cream);
  background: var(--ink);
}

.button-dark:hover {
  border-color: var(--ink);
  background: var(--wine);
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: flex-end;
  padding: 148px clamp(18px, 5.6vw, 92px) 110px;
  overflow: hidden;
}

.hero-photo,
.hero-shade,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background: url("assets/group-cafe.jpg") center 35% / cover no-repeat;
  animation: hero-scale 14s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(22, 17, 18, 0.93) 0%, rgba(22, 17, 18, 0.64) 42%, rgba(22, 17, 18, 0.08) 100%),
    linear-gradient(0deg, rgba(22, 17, 18, 0.93) 0%, rgba(22, 17, 18, 0) 52%);
}

.hero-glow {
  opacity: 0.85;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 7% 0%, rgba(245, 77, 25, 0.78), transparent 35%),
    radial-gradient(circle at 93% 92%, rgba(255, 132, 30, 0.45), transparent 30%);
}

.hero-content,
.hero-stamp,
.scroll-note {
  position: relative;
}

.hero-content {
  z-index: 2;
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sun);
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--display);
  letter-spacing: -0.075em;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  font-size: clamp(70px, 11vw, 172px);
}

h2 {
  font-size: clamp(55px, 7vw, 112px);
}

h1 em,
h2 em {
  color: var(--sun);
  font-family: var(--condensed);
  font-weight: 600;
  letter-spacing: -0.07em;
}

.hero-copy {
  max-width: 590px;
  margin: 26px 0 30px;
  color: rgba(255, 244, 227, 0.86);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stamp {
  position: absolute;
  right: 6vw;
  bottom: 105px;
  z-index: 2;
  display: flex;
  width: 132px;
  height: 132px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--cream);
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: rgba(112, 41, 52, 0.64);
  font-family: var(--condensed);
  line-height: 1;
  transform: rotate(-12deg);
}

.hero-stamp span {
  font-size: 12px;
  letter-spacing: 0.14em;
}

.hero-stamp strong {
  margin: 7px 0;
  color: var(--sun);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.08em;
  line-height: 0.92;
  text-align: center;
}

.scroll-note {
  position: absolute;
  right: 6vw;
  bottom: 34px;
  z-index: 2;
  color: rgba(255, 244, 227, 0.74);
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: 0.17em;
}

.scroll-note span {
  margin-left: 10px;
  color: var(--sun);
}

.ticker {
  overflow: hidden;
  padding: 18px 0;
  color: var(--cream);
  background: linear-gradient(90deg, var(--wine), var(--red), var(--sun), var(--wine));
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 25px;
  white-space: nowrap;
  animation: ticker-slide 25s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.06em;
}

.ticker-motif {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--ink);
  background:
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat,
    linear-gradient(45deg, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(-45deg, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px));
}

.section {
  padding: 112px clamp(18px, 5.6vw, 92px);
}

.section-label {
  padding-bottom: 13px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
  color: var(--sun);
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.17em;
}

.club {
  background:
    radial-gradient(circle at 78% 7%, rgba(221, 48, 45, 0.25), transparent 30%),
    radial-gradient(circle at 3% 85%, rgba(244, 90, 25, 0.14), transparent 30%),
    var(--ink);
}

.club-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
}

.section-copy {
  max-width: 690px;
  margin-top: 30px;
  color: rgba(255, 244, 227, 0.7);
  font-size: 19px;
  line-height: 1.7;
}

.club-stats {
  display: grid;
  gap: 14px;
}

.stat-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.85fr) 1fr;
  align-items: center;
  gap: 16px;
  min-height: 146px;
  padding: 22px 25px;
  border: 1px solid var(--line);
  background: rgba(255, 244, 227, 0.035);
}

.stat-card strong {
  color: var(--sun);
  font-family: var(--display);
  font-size: 68px;
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.stat-card .distance-stat {
  font-size: 59px;
  white-space: nowrap;
}

.stat-card span {
  font-size: 23px;
}

.stat-card .distance-unit {
  display: inline-block;
  margin-left: 2px;
}

.stat-card .distance-plus {
  margin-left: 2px;
}

.stat-card .free-stat {
  font-size: 31px;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.stat-card p {
  margin-bottom: 0;
  color: rgba(255, 244, 227, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.monthly-planning {
  padding-top: 118px;
}

.planning-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.month-widget {
  display: flex;
  width: 158px;
  min-height: 158px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 139, 37, 0.35), transparent 38%),
    rgba(255, 244, 227, 0.04);
  text-align: center;
}

.month-widget span,
.month-widget small {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.month-widget strong {
  color: var(--sun);
  font-family: var(--display);
  font-size: 67px;
  letter-spacing: -0.1em;
  line-height: 0.95;
}

.planning-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.7fr);
  gap: 14px;
}

.planning-list {
  display: grid;
  gap: 8px;
}

.planning-item {
  display: grid;
  min-height: 100px;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 11px 16px 11px 11px;
  color: var(--cream);
  border: 1px solid var(--line);
  background: rgba(255, 244, 227, 0.035);
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.planning-item:hover,
.planning-item.is-active {
  border-color: rgba(255, 139, 37, 0.82);
  background: rgba(244, 90, 25, 0.15);
  transform: translateX(7px);
}

.planning-date {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--ink);
  background: var(--sun);
}

.planning-date small,
.planning-summary small {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.planning-date strong {
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: -0.1em;
  line-height: 0.9;
}

.planning-summary {
  display: grid;
  gap: 7px;
}

.planning-summary small {
  color: var(--sun);
}

.planning-summary b {
  font-family: var(--condensed);
  font-size: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.planning-arrow {
  color: var(--sun);
  font-size: 20px;
}

.planning-focus {
  display: flex;
  min-height: 530px;
  justify-content: space-between;
  padding: 24px;
  flex-direction: column;
  border: 1px solid rgba(255, 139, 37, 0.75);
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 139, 37, 0.76), transparent 28%),
    radial-gradient(circle at 0% 80%, rgba(221, 48, 45, 0.55), transparent 42%),
    var(--wine);
}

.focus-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.focus-date {
  display: flex;
  width: 138px;
  height: 138px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 244, 227, 0.64);
  border-radius: 50%;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  transform: rotate(-9deg);
}

.focus-date strong {
  color: var(--sun);
  font-family: var(--display);
  font-size: 64px;
  letter-spacing: -0.1em;
  line-height: 0.85;
}

.focus-copy p {
  margin-bottom: 6px;
  color: var(--sun);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.focus-copy h3 {
  max-width: 430px;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(31px, 3.4vw, 54px);
  letter-spacing: -0.07em;
  line-height: 0.98;
  text-transform: uppercase;
}

.focus-copy dl {
  display: grid;
  gap: 9px;
  margin-bottom: 0;
}

.focus-copy dl div {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 10px;
}

.focus-copy dt {
  color: var(--sun);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.focus-copy dd {
  margin: 0;
  color: rgba(255, 244, 227, 0.8);
  font-size: 13px;
  line-height: 1.4;
}

.focus-copy dd small {
  color: rgba(255, 244, 227, 0.6);
  font-size: 11px;
}

.map-widget {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 0;
  margin-top: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 244, 227, 0.035);
}

.map-copy {
  padding: 28px;
}

.map-copy h3 {
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 43px);
  letter-spacing: -0.07em;
  line-height: 0.98;
  text-transform: uppercase;
}

.map-copy p:last-child {
  margin-bottom: 16px;
  color: rgba(255, 244, 227, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

.map-copy address {
  margin-bottom: 16px;
  color: var(--cream);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}

.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sun);
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.map-directions:hover {
  color: var(--cream);
}

.map-frame {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  background: var(--paper);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) sepia(0.3) contrast(1.05);
}

.map-frame span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  color: var(--cream);
  background: var(--wine);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  pointer-events: none;
}

.mobile-run-drawer {
  display: none;
}

.run-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 85%, rgba(255, 203, 74, 0.86), transparent 25%),
    radial-gradient(circle at 2% 5%, rgba(221, 48, 45, 0.72), transparent 28%),
    linear-gradient(135deg, var(--orange), var(--sun));
}

.run-section .section-label,
.run-section .eyebrow {
  color: var(--ink);
  border-color: rgba(22, 17, 18, 0.27);
}

.run-card {
  padding: 34px;
  border: 2px solid var(--ink);
  background: rgba(255, 244, 227, 0.16);
}

.run-card-top,
.run-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.live-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  animation: live-pulse 1.4s ease-in-out infinite;
}

.run-date {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 40px 0 36px;
}

.run-date p {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  font-family: var(--condensed);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.run-date h2 {
  font-size: clamp(65px, 11vw, 176px);
}

.run-date strong {
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(65px, 8vw, 130px);
  letter-spacing: -0.1em;
  line-height: 0.85;
}

.run-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.run-details article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  min-height: 140px;
  padding: 26px 22px;
  border-right: 2px solid var(--ink);
}

.run-details article:last-child {
  border-right: 0;
}

.run-details span {
  font-family: var(--display);
  font-size: 23px;
}

.run-details h3 {
  margin-bottom: 7px;
  font-family: var(--condensed);
  font-size: 22px;
  text-transform: uppercase;
}

.run-details p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.55;
}

.run-card-footer {
  padding-top: 24px;
}

.run-card-footer p {
  max-width: 480px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.gallery {
  background: var(--ink-soft);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.gallery-heading p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 244, 227, 0.68);
  font-size: 17px;
  line-height: 1.6;
}

.photo-grid {
  display: grid;
  grid-auto-rows: 390px;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--wine);
}

.photo-large {
  grid-row: span 2;
}

.photo-wide {
  grid-column: span 2;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transition: transform 600ms ease, filter 600ms ease;
}

.photo-wide img {
  object-position: center 76%;
}

.photo:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.045);
}

.photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 13px;
  color: var(--cream);
  background: var(--red);
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.steps {
  background:
    radial-gradient(circle at 95% 10%, rgba(244, 90, 25, 0.28), transparent 27%),
    var(--ink);
}

.steps-heading {
  margin-bottom: 42px;
}

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

.step-card {
  min-height: 260px;
  padding: 25px;
  border: 1px solid var(--line);
  background: rgba(255, 244, 227, 0.035);
}

.step-card strong {
  color: var(--sun);
  font-family: var(--display);
  font-size: 55px;
  letter-spacing: -0.09em;
}

.step-card h3 {
  margin: 52px 0 9px;
  font-family: var(--condensed);
  font-size: 27px;
  text-transform: uppercase;
}

.step-card p {
  max-width: 310px;
  margin-bottom: 0;
  color: rgba(255, 244, 227, 0.64);
  font-size: 15px;
  line-height: 1.55;
}

.partners {
  color: var(--ink);
  background: var(--paper);
}

.partners .section-label {
  color: var(--wine);
  border-color: rgba(22, 17, 18, 0.2);
}

.partners-copy {
  margin-bottom: 45px;
  color: rgba(22, 17, 18, 0.72);
  font-size: 18px;
}

.partners-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.35fr;
  align-items: center;
  gap: 20px;
  padding: 33px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.partners-row span {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 54px);
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.partner-motif {
  display: block;
  width: 38px;
  height: 38px;
  color: var(--orange);
  background:
    linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat,
    linear-gradient(45deg, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(-45deg, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px));
}

.faq {
  background: var(--ink);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--condensed);
  font-size: 23px;
  list-style: none;
  text-transform: uppercase;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  color: var(--sun);
  font-family: var(--body);
  font-size: 29px;
  font-weight: 400;
  transition: transform 180ms ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  max-width: 630px;
  padding: 0 0 24px;
  margin-bottom: 0;
  color: rgba(255, 244, 227, 0.65);
  font-size: 16px;
  line-height: 1.65;
}

details p a {
  color: var(--sun);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  position: relative;
  display: flex;
  min-height: 640px;
  align-items: center;
  justify-content: center;
  padding: 70px 18px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 16% 16%, rgba(221, 48, 45, 0.95), transparent 35%),
    radial-gradient(circle at 90% 50%, rgba(255, 139, 37, 0.95), transparent 42%),
    radial-gradient(circle at 45% 100%, rgba(112, 41, 52, 0.82), transparent 46%),
    var(--ink);
}

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

.final-content h2 {
  margin-bottom: 30px;
  font-size: clamp(70px, 11vw, 176px);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 5.6vw, 92px);
  color: rgba(255, 244, 227, 0.58);
  background: #0f0c0d;
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: 0.13em;
}

footer p {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes hero-scale {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }

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

@keyframes live-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(221, 48, 45, 0.6);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(221, 48, 45, 0);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    position: relative;
    z-index: 12;
    display: grid;
    gap: 5px;
    width: 46px;
    height: 42px;
    align-content: center;
    padding: 8px;
    border: 1px solid var(--line);
    background: rgba(22, 17, 18, 0.52);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream);
  }

  .main-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    width: min(330px, 100vw);
    min-height: 100vh;
    align-items: stretch;
    justify-content: center;
    padding: 95px 28px 40px;
    flex-direction: column;
    background: rgba(22, 17, 18, 0.96);
    backdrop-filter: blur(16px);
  }

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

  .main-nav a {
    font-size: 22px;
  }

  .hero {
    min-height: 760px;
    padding-bottom: 78px;
  }

  .hero-photo {
    background-position: 52% center;
  }

  .hero-copy {
    max-width: 480px;
    font-size: 17px;
  }

  .hero-stamp {
    right: 20px;
    bottom: 34px;
    width: 88px;
    height: 88px;
  }

  .hero-stamp span {
    font-size: 8px;
  }

  .hero-stamp strong {
    margin: 4px 0;
    font-size: 13px;
  }

  .scroll-note {
    display: none;
  }

  .club-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .planning-layout,
  .map-widget {
    grid-template-columns: 1fr;
  }

  .planning-focus {
    min-height: 440px;
  }

  .run-date {
    display: block;
  }

  .run-date strong {
    display: block;
    margin-top: 12px;
  }

  .run-details,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .run-details article {
    min-height: auto;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .run-details article:last-child {
    border-bottom: 0;
  }

  .gallery-heading {
    display: block;
  }

  .gallery-heading p {
    margin-top: 20px;
  }

  .photo-grid {
    grid-auto-rows: 290px;
  }

  .photo-large {
    grid-row: span 1;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding-top: 14px;
  }

  .brand-main {
    font-size: 26px;
  }

  .brand-sub {
    font-size: 8px;
    letter-spacing: 4px;
  }

  .hero {
    min-height: 710px;
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(66px, 20vw, 104px);
  }

  h2 {
    font-size: clamp(53px, 15vw, 88px);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-label {
    margin-bottom: 38px;
  }

  .section-copy {
    font-size: 17px;
  }

  .monthly-planning {
    padding-top: 84px;
  }

  .planning-heading {
    display: block;
  }

  .month-widget {
    width: 100%;
    min-height: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    padding: 13px 15px;
    margin-top: 22px;
    flex-direction: row;
  }

  .month-widget strong {
    font-size: 46px;
  }

  .planning-item {
    min-height: 88px;
    grid-template-columns: 62px 1fr auto;
    gap: 12px;
    padding: 9px 12px 9px 9px;
  }

  .planning-date {
    min-height: 68px;
  }

  .planning-date strong {
    font-size: 37px;
  }

  .planning-summary small {
    font-size: 9px;
  }

  .planning-summary b {
    font-size: 19px;
  }

  .planning-focus {
    display: none;
  }

  .map-widget {
    display: none;
  }

  .mobile-run-drawer {
    position: fixed;
    z-index: 40;
    inset: 0;
  }

  .mobile-run-drawer.is-open {
    display: flex;
    align-items: flex-end;
  }

  .mobile-drawer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(15, 12, 13, 0.78);
    backdrop-filter: blur(6px);
  }

  .mobile-drawer-panel {
    position: relative;
    width: 100%;
    max-height: 92vh;
    padding: 18px;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    color: var(--cream);
    border-top: 1px solid rgba(255, 139, 37, 0.8);
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 139, 37, 0.47), transparent 34%),
      radial-gradient(circle at 0% 100%, rgba(221, 48, 45, 0.36), transparent 44%),
      var(--wine);
    box-shadow: 0 -16px 42px rgba(0, 0, 0, 0.38);
    animation: drawer-rise 220ms ease-out;
  }

  .mobile-drawer-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
  }

  .mobile-drawer-head .eyebrow {
    margin-bottom: 4px;
  }

  .mobile-drawer-head span {
    font-family: var(--condensed);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
  }

  .mobile-drawer-close {
    width: 42px;
    height: 42px;
    color: var(--cream);
    border: 1px solid rgba(255, 244, 227, 0.52);
    background: rgba(22, 17, 18, 0.23);
    cursor: pointer;
    font-family: var(--body);
    font-size: 30px;
    line-height: 1;
  }

  .mobile-drawer-date {
    display: flex;
    width: 88px;
    height: 88px;
    align-items: center;
    justify-content: center;
    margin: 12px 0 10px;
    flex-direction: column;
    border: 1px solid rgba(255, 244, 227, 0.64);
    border-radius: 50%;
    font-family: var(--condensed);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    transform: rotate(-7deg);
  }

  .mobile-drawer-date strong {
    color: var(--sun);
    font-family: var(--display);
    font-size: 43px;
    letter-spacing: -0.1em;
    line-height: 0.82;
  }

  .mobile-drawer-date b {
    font-weight: 700;
  }

  .mobile-drawer-panel h3 {
    margin-bottom: 13px;
    font-family: var(--display);
    font-size: 29px;
    letter-spacing: -0.07em;
    line-height: 0.96;
    text-transform: uppercase;
  }

  .mobile-drawer-details {
    display: grid;
    gap: 8px;
    margin: 0 0 14px;
  }

  .mobile-drawer-details div {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 8px;
  }

  .mobile-drawer-details dt {
    color: var(--sun);
    font-family: var(--condensed);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.11em;
  }

  .mobile-drawer-details dd {
    margin: 0;
    color: rgba(255, 244, 227, 0.86);
    font-size: 12px;
    line-height: 1.4;
  }

  .mobile-drawer-details small {
    color: rgba(255, 244, 227, 0.62);
    font-size: 10px;
  }

  .mobile-drawer-map {
    height: 168px;
    overflow: hidden;
    border: 1px solid rgba(255, 244, 227, 0.24);
    background: var(--paper);
  }

  .mobile-drawer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) sepia(0.3) contrast(1.05);
    pointer-events: none;
  }

  .mobile-drawer-directions {
    width: 100%;
    margin-top: 12px;
  }

  .stat-card {
    display: block;
  }

  .stat-card p {
    margin-top: 12px;
  }

  .run-card {
    padding: 20px;
  }

  .run-card-top,
  .run-card-footer {
    display: block;
  }

  .live-pill {
    margin-top: 20px;
  }

  .run-date {
    padding: 30px 0;
  }

  .run-date p {
    font-size: 17px;
  }

  .run-date h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .run-card-footer .button {
    width: 100%;
    margin-top: 18px;
  }

  .photo-grid {
    display: block;
  }

  .photo {
    min-height: 265px;
    margin-bottom: 12px;
  }

  .photo-large {
    min-height: 360px;
  }

  .step-card {
    min-height: 220px;
  }

  .step-card h3 {
    margin-top: 32px;
  }

  .partners-row {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .partners-row span {
    font-size: 46px;
    text-align: left;
  }

  .partner-motif {
    width: 38px;
    height: 38px;
    justify-self: start;
  }

  summary {
    font-size: 19px;
  }

  .final-cta {
    min-height: 520px;
  }
}

@keyframes drawer-rise {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
