﻿/*
 * SET APART public site styles.
 *
 * Ported from the previous Next.js build (app/globals.css). Deviations from
 * that original, kept short deliberately so this stays diffable against it:
 *
 *   1. `@import "tailwindcss"` removed -- nothing here ever used a Tailwind
 *      utility.
 *   2. The font smoothing below, which the old build got from Tailwind's
 *      `antialiased` class on <body>.
 *   3. `.site-header` is `position: fixed` rather than `absolute`, so the bar
 *      stays visible while scrolling, plus the `scroll-margin-top` that keeps
 *      in-page anchors from landing underneath it.
 *
 * The :root palette here is the DEFAULT. Colours and fonts chosen in the admin
 * content editor are emitted as an inline :root override after this file, so
 * they win on specificity without this file being rewritten. Layout lives here
 * and only here -- see App\Models\SiteSettingModel for why.
 */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


:root {
  --cream: #fcdeb0;
  --rust: #a04d27;
  --olive: #465f17;
  --ink: #28201a;
  --midnight: #101827;
  --twilight: #3b2f68;
  --sun: #ffd34e;
  --coral: #ff6b4a;
  --sky: #59c8e6;
  --leaf: #73c66a;
  --purple: #7c5cfc;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

.site-header {
  align-items: center;
  background: rgba(16, 24, 39, 0.94);
  border-bottom: 1px solid rgba(255, 211, 78, 0.22);
  /* Now that the bar overlaps content permanently rather than only sitting on
     the hero, it needs to separate itself from what scrolls beneath it. */
  box-shadow: 0 10px 30px rgba(16, 24, 39, 0.18);
  color: var(--white);
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr auto auto;
  left: 0;
  padding: 17px clamp(24px, 5vw, 76px);
  /* `fixed`, not `sticky`: body sets `overflow-x: hidden`, which computes
     overflow-y to `auto` and makes body its own scroll container -- a sticky
     header would then stick to that box instead of the viewport and scroll
     away anyway. `fixed` was also a one-word change from the original
     `absolute`, so nothing reflows. */
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

/*
 * Anchor targets have to clear the fixed bar, or every in-page link (#event,
 * #cause, #register-now ...) lands with its heading hidden underneath it.
 * `scroll-margin-top` offsets the scroll position only -- it does not add any
 * actual spacing to the layout.
 *
 * The value is the header's exact height, so a section lands flush against the
 * bar's bottom border with no sliver of the previous section showing through.
 * site.js measures the real bar and overwrites --header-h on load and on
 * resize; the 77px here is only the no-JS fallback, and it is a fallback rather
 * than the answer because the bar changes height at the breakpoints below --
 * the button is hidden under 700px and the nav under 980px.
 */
:root {
  --header-h: 77px;
}

section[id] {
  scroll-margin-top: var(--header-h);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  align-items: center;
  border: 1px solid var(--cream);
  border-radius: 50%;
  color: var(--cream);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  letter-spacing: -2px;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 13px;
  letter-spacing: 0.15em;
}

.brand small {
  color: var(--cream);
  font-size: 8px;
  letter-spacing: 0.22em;
  margin-top: 3px;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: rgba(255, 253, 248, 0.78);
  font-size: 13px;
  font-weight: 700;
}

nav a:hover,
nav a:focus-visible {
  color: var(--sun);
}

.button {
  align-items: center;
  background: var(--sun);
  border: 1px solid var(--sun);
  border-radius: 999px;
  color: var(--midnight);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 12px;
  justify-content: center;
  padding: 15px 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 12px 30px rgba(255, 211, 78, 0.24);
  transform: translateY(-2px);
}

.button-small {
  font-size: 12px;
  padding: 11px 17px;
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 83% 18%, rgba(124, 92, 252, 0.28), transparent 24%),
    linear-gradient(145deg, #09111f 0%, var(--midnight) 52%, #211b39 100%);
  color: var(--white);
  display: grid;
  gap: clamp(35px, 5vw, 90px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 790px;
  overflow: hidden;
  padding: 145px clamp(24px, 7vw, 105px) 76px;
  position: relative;
}

.hero::after {
  background: var(--white);
  bottom: -1px;
  clip-path: polygon(0 52%, 8% 25%, 15% 58%, 23% 30%, 31% 63%, 40% 35%, 49% 70%, 59% 38%, 68% 66%, 77% 31%, 86% 62%, 94% 34%, 100% 57%, 100% 100%, 0 100%);
  content: "";
  height: 54px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.36;
  position: absolute;
}

.hero-glow-one {
  background: var(--coral);
  height: 330px;
  left: -150px;
  top: 340px;
  width: 330px;
}

.hero-glow-two {
  background: var(--sky);
  bottom: -230px;
  height: 430px;
  right: 20%;
  width: 430px;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--sun);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.23em;
  margin: 0 0 20px;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(58px, 6.3vw, 96px);
  letter-spacing: -0.055em;
  line-height: 0.88;
  margin: 0;
  max-width: 780px;
}

h1 span {
  color: var(--cream);
  display: block;
  font-style: italic;
  font-weight: 400;
  margin-top: 16px;
}

.hero-lead {
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  margin: 32px 0 0;
  max-width: 660px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 35px;
}

.text-link {
  border-bottom: 1px solid rgba(255, 253, 248, 0.4);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 0;
}

.event-meta {
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  padding-top: 22px;
}

.event-meta span,
.event-meta strong {
  display: block;
}

.event-meta span {
  color: var(--sun);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.event-meta strong {
  font-size: 13px;
  line-height: 1.45;
}

.hero-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 520px;
}

.hero-art img {
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.34));
  max-width: 660px;
  padding: 18px;
  position: relative;
  transform: none;
  width: min(100%, 660px);
  z-index: 2;
}

.logo-halo {
  background: conic-gradient(var(--sun), var(--coral), var(--sky), var(--purple), var(--sun));
  border-radius: 50%;
  filter: blur(50px);
  height: 360px;
  opacity: 0.4;
  position: absolute;
  width: 360px;
}

.cause-chip {
  background: var(--white);
  border-left: 5px solid var(--coral);
  bottom: 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.3;
  padding: 17px 20px;
  position: absolute;
  right: -18px;
  width: min(330px, 76%);
  z-index: 3;
}

.cause-chip span {
  color: var(--rust);
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
}

.signal-strip {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1280px;
  padding: 36px 30px 44px;
}

.signal-strip div {
  border-right: 1px solid #ddd3c5;
  padding: 0 30px;
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip strong,
.signal-strip span {
  display: block;
}

.signal-strip strong {
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.signal-strip span {
  font-size: 12px;
  line-height: 1.45;
  margin-top: 4px;
}

.poster-suite {
  background: var(--white);
  padding: 85px clamp(24px, 6vw, 90px) 100px;
}

.poster-suite-heading {
  align-items: end;
  display: grid;
  gap: 55px;
  grid-template-columns: 1.15fr 0.85fr;
  margin: 0 auto 42px;
  max-width: 1280px;
}

.poster-suite-heading .section-kicker {
  color: var(--rust);
}

.poster-suite-heading h2 {
  font-size: clamp(40px, 4.4vw, 68px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
}

.poster-suite-heading > p {
  border-left: 3px solid var(--sun);
  color: #6e6258;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 7px;
  padding-left: 22px;
}

.poster-rail {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1280px;
}

.poster-rail figure {
  margin: 0;
  min-width: 0;
}

.poster-card {
  aspect-ratio: 4 / 5.35;
  box-shadow: 0 16px 35px rgba(40, 32, 26, 0.14);
  overflow: hidden;
  position: relative;
}

.poster-card .poster-topline,
.poster-card .poster-footerline {
  font-size: clamp(6px, 0.55vw, 9px);
  font-weight: 900;
  left: 17px;
  letter-spacing: 0.13em;
  position: absolute;
  right: 17px;
  z-index: 4;
}

.poster-card .poster-topline {
  top: 17px;
}

.poster-card .poster-footerline {
  bottom: 17px;
}

.poster-main {
  background:
    radial-gradient(circle at 82% 16%, rgba(124, 92, 252, 0.52), transparent 28%),
    linear-gradient(150deg, #09111f 0%, #131d31 60%, #2c2249 100%);
  color: var(--white);
}

.poster-main::after {
  background: var(--coral);
  border-radius: 50%;
  bottom: -58px;
  content: "";
  height: 150px;
  left: -65px;
  opacity: 0.55;
  position: absolute;
  width: 150px;
}

.poster-main > img {
  border: 1px solid rgba(255, 211, 78, 0.22);
  border-radius: 13px;
  left: 14%;
  position: absolute;
  top: 14%;
  width: 72%;
}

.poster-main-copy {
  bottom: 46px;
  left: 17px;
  position: absolute;
  z-index: 3;
}

.poster-main-copy span {
  color: var(--sun);
  display: block;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.poster-main-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 47px);
  letter-spacing: -0.06em;
  line-height: 1;
  margin-top: 4px;
}

.poster-main-copy p {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 4px 0 0;
}

.poster-cause {
  background: var(--cream);
  color: var(--ink);
}

.poster-cause::after {
  background: var(--rust);
  bottom: 0;
  clip-path: polygon(0 27%, 100% 0, 100% 100%, 0 100%);
  content: "";
  height: 30%;
  left: 0;
  position: absolute;
  right: 0;
}

.poster-cause-bulb {
  align-items: center;
  background: var(--sun);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex;
  font-size: 30px;
  height: 78px;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 54px;
  transform: rotate(7deg);
  width: 78px;
}

.poster-cause-copy {
  left: 17px;
  position: absolute;
  top: 37%;
  z-index: 3;
}

.poster-cause-copy span {
  color: var(--rust);
  display: block;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.poster-cause-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.4vw, 39px);
  letter-spacing: -0.055em;
  line-height: 0.88;
  margin: 6px 0 10px;
}

.poster-cause-copy p {
  font-size: 8px;
  line-height: 1.45;
  max-width: 70%;
}

.poster-cause .poster-footerline {
  color: var(--white);
}

.poster-races {
  background: var(--midnight);
  color: var(--white);
  padding: 45px 14px 31px;
}

.poster-race-title {
  margin-bottom: 12px;
}

.poster-race-title strong,
.poster-race-title span {
  display: block;
}

.poster-race-title strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.poster-race-title span {
  color: var(--cream);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.poster-race-list {
  display: grid;
  gap: 5px;
}

.poster-race-list > div {
  align-items: center;
  color: var(--ink);
  display: grid;
  grid-template-columns: 42px 1fr;
  min-height: 34px;
  padding: 5px 9px;
}

.poster-race-list b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.poster-race-list span {
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.poster-race-list .race-sun {
  background: var(--sun);
}

.poster-race-list .race-olive {
  background: var(--olive);
  color: var(--white);
}

.poster-race-list .race-coral {
  background: var(--coral);
}

.poster-race-list .race-sky {
  background: var(--sky);
}

.poster-kids {
  background: var(--sun);
  color: var(--ink);
}

.poster-kids > img {
  height: 49%;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.poster-kids::after {
  background: var(--sun);
  clip-path: polygon(0 13%, 15% 4%, 33% 16%, 52% 3%, 73% 15%, 88% 5%, 100% 14%, 100% 100%, 0 100%);
  content: "";
  height: 59%;
  left: 0;
  position: absolute;
  right: 0;
  top: 41%;
}

.poster-kids .poster-topline {
  color: var(--white);
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.55);
}

.poster-kids-copy {
  bottom: 48px;
  left: 17px;
  position: absolute;
  right: 17px;
  z-index: 3;
}

.poster-kids-copy span {
  color: var(--rust);
  display: block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.poster-kids-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.1vw, 50px);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.poster-kids-copy p {
  border-top: 1px solid var(--ink);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 11px;
  padding-top: 9px;
}

.poster-kids .poster-footerline {
  font-size: clamp(4px, 0.42vw, 7px);
}

.poster-concert {
  background:
    radial-gradient(circle at center, rgba(124, 92, 252, 0.5), transparent 42%),
    var(--midnight);
  color: var(--white);
}

.poster-concert-rays {
  background: conic-gradient(
    from 0deg,
    transparent 0 8deg,
    rgba(255, 211, 78, 0.18) 8deg 12deg,
    transparent 12deg 36deg,
    rgba(89, 200, 230, 0.17) 36deg 42deg,
    transparent 42deg 75deg,
    rgba(255, 107, 74, 0.18) 75deg 81deg,
    transparent 81deg 360deg
  );
  height: 370px;
  left: 50%;
  position: absolute;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 370px;
}

.poster-concert-bulb {
  align-items: center;
  background: linear-gradient(145deg, var(--cream), var(--sun));
  border: 5px solid rgba(255, 253, 248, 0.9);
  border-radius: 50%;
  box-shadow:
    0 0 0 12px rgba(255, 211, 78, 0.1),
    0 0 55px rgba(255, 211, 78, 0.32);
  color: var(--rust);
  display: flex;
  font-size: 30px;
  height: 100px;
  justify-content: center;
  left: 50%;
  opacity: 0.7;
  position: absolute;
  top: 28%;
  transform: translate(-50%, -50%);
  width: 100px;
}

.poster-concert-copy {
  bottom: 48px;
  left: 17px;
  position: absolute;
  z-index: 3;
}

.poster-concert-copy span {
  color: var(--sun);
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.poster-concert-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 40px);
  letter-spacing: -0.045em;
  line-height: 0.9;
  margin: 6px 0 10px;
}

.poster-concert-copy p {
  color: var(--cream);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.poster-rail figcaption {
  color: #786c61;
  font-size: 10px;
  line-height: 1.45;
  padding: 13px 4px 0;
}

.poster-rail figcaption strong {
  color: var(--ink);
  display: block;
  font-size: 11px;
  margin-bottom: 2px;
}

/* Campaign poster suite */
.poster-suite {
  background:
    radial-gradient(circle at 88% 7%, rgba(255, 211, 78, 0.2), transparent 23%),
    radial-gradient(circle at 8% 78%, rgba(89, 200, 230, 0.11), transparent 26%),
    #f4ecdf;
  overflow: hidden;
  padding-bottom: 96px;
}

.poster-showcase {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1280px;
}

.poster-showcase figure {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(40, 32, 26, 0.09);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(40, 32, 26, 0.08);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 0;
  padding: 8px 8px 14px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.poster-showcase figure:hover {
  box-shadow: 0 24px 54px rgba(40, 32, 26, 0.14);
  transform: translateY(-4px);
}

.poster-feature {
  grid-column: 1 / -1;
}

.poster-showcase .poster-card {
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 21px;
  box-shadow: 0 18px 42px rgba(40, 32, 26, 0.16);
  flex: none;
  min-height: 0;
  width: 100%;
}

.poster-feature .poster-card {
  aspect-ratio: 2.35 / 1;
}

.poster-support .poster-card {
  aspect-ratio: 4 / 5.25;
}

.poster-showcase figcaption {
  align-items: center;
  color: #786c61;
  display: grid;
  font-size: 11px;
  gap: 12px;
  grid-template-columns: 32px 1fr;
  line-height: 1.45;
  min-height: 62px;
  padding: 12px 8px 0;
}

.poster-showcase figcaption > span {
  align-items: center;
  border: 1px solid rgba(40, 32, 26, 0.32);
  border-radius: 50%;
  color: var(--rust);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.poster-showcase figcaption strong {
  color: var(--ink);
  display: block;
  font-size: 11px;
}

.poster-showcase .poster-topline,
.poster-showcase .poster-footerline {
  font-size: 8px;
  left: 26px;
  right: 26px;
}

.poster-showcase .poster-topline {
  top: 22px;
}

.poster-showcase .poster-footerline {
  bottom: 20px;
}

.poster-main {
  background:
    radial-gradient(circle at 83% 22%, rgba(124, 92, 252, 0.26), transparent 31%),
    linear-gradient(100deg, rgba(7, 15, 28, 0.99) 0%, rgba(7, 15, 28, 0.96) 48%, rgba(7, 15, 28, 0.62) 74%, rgba(7, 15, 28, 0.9) 100%),
    var(--midnight);
}

.poster-main::after {
  background: linear-gradient(90deg, var(--coral), var(--sun), var(--sky), var(--purple));
  border-radius: 0;
  bottom: 56px;
  height: 4px;
  left: 24px;
  opacity: 1;
  right: 24px;
  width: auto;
}

.poster-main-glow {
  background:
    conic-gradient(
      from 210deg,
      transparent 0 9deg,
      rgba(255, 211, 78, 0.22) 9deg 14deg,
      transparent 14deg 35deg,
      rgba(89, 200, 230, 0.2) 35deg 41deg,
      transparent 41deg 65deg,
      rgba(255, 107, 74, 0.22) 65deg 71deg,
      transparent 71deg 360deg
    );
  height: 720px;
  position: absolute;
  right: -170px;
  top: -240px;
  width: 720px;
}

.poster-showcase .poster-main > img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.32));
  left: auto;
  position: absolute;
  right: 4%;
  top: 10%;
  transform: rotate(0.5deg);
  width: 45%;
}

.poster-showcase .poster-main-copy {
  bottom: auto;
  left: clamp(34px, 4vw, 62px);
  max-width: 46%;
  top: 26%;
}

.poster-main-copy span {
  font-size: 9px;
}

.poster-showcase .poster-main-copy strong {
  font-size: clamp(54px, 5.3vw, 86px);
  line-height: 0.84;
  margin-top: 10px;
}

.poster-showcase .poster-main-copy p {
  color: var(--cream);
  font-size: 9px;
  line-height: 1.55;
  margin-top: 13px;
}

.poster-main-details {
  bottom: 78px;
  display: grid;
  gap: 8px 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  left: clamp(34px, 4vw, 62px);
  position: absolute;
  right: clamp(34px, 4vw, 62px);
  z-index: 4;
}

.poster-main-details span {
  color: rgba(255, 253, 248, 0.78);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.poster-main-details b {
  color: var(--sun);
  font-family: Georgia, "Times New Roman", serif;
  display: block;
  font-size: 19px;
  margin-bottom: 2px;
  margin-right: 5px;
}

.poster-showcase .poster-cause {
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 211, 78, 0.28), transparent 26%),
    var(--cream);
}

.poster-showcase .poster-cause::after {
  clip-path: polygon(0 55%, 100% 16%, 100% 100%, 0 100%);
  height: 43%;
}

.poster-cause-rays {
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    transparent 0 10deg,
    rgba(160, 77, 39, 0.12) 10deg 13deg
  );
  height: 280px;
  position: absolute;
  right: -105px;
  top: -70px;
  width: 280px;
}

.poster-showcase .poster-cause-bulb {
  border-width: 4px;
  box-shadow: 0 12px 30px rgba(160, 77, 39, 0.25);
  height: 78px;
  right: 24px;
  top: 54px;
  width: 78px;
}

.poster-showcase .poster-cause-copy {
  left: 26px;
  right: 24px;
  top: 35%;
}

.poster-showcase .poster-cause-copy strong {
  font-size: clamp(31px, 2.8vw, 43px);
  line-height: 0.9;
  max-width: 94%;
}

.poster-showcase .poster-cause-copy p {
  font-size: 9px;
  max-width: 58%;
}

.poster-showcase .poster-races {
  padding: 58px 24px 44px;
}

.poster-showcase .poster-race-title {
  display: block;
  margin-bottom: 16px;
}

.poster-showcase .poster-race-title strong {
  font-size: clamp(29px, 2.4vw, 37px);
}

.poster-showcase .poster-race-list {
  gap: 8px;
  grid-template-columns: 1fr;
}

.poster-showcase .poster-race-list > div {
  grid-template-columns: 56px 1fr;
  min-height: 48px;
  padding: 9px 11px;
}

.poster-showcase .poster-race-list b {
  font-size: 25px;
}

.poster-showcase .poster-race-list span {
  font-size: 7px;
  line-height: 1.25;
}

.poster-showcase .poster-kids > img {
  height: 47%;
  object-position: center;
  width: 100%;
}

.poster-showcase .poster-kids::after {
  clip-path: polygon(0 10%, 18% 3%, 37% 12%, 57% 2%, 78% 11%, 100% 4%, 100% 100%, 0 100%);
  height: 61%;
  left: 0;
  top: 39%;
}

.poster-showcase .poster-kids-copy {
  bottom: 48px;
  left: 26px;
  right: 26px;
  top: auto;
}

.poster-showcase .poster-kids-copy span {
  font-size: 8px;
  line-height: 1.35;
}

.poster-showcase .poster-kids-copy strong {
  font-size: clamp(30px, 2.5vw, 39px);
  letter-spacing: -0.045em;
  margin-top: 8px;
}

.poster-showcase .poster-kids-copy p {
  font-size: 8px;
}

.poster-showcase .poster-kids .poster-topline {
  color: var(--white);
  left: 26px;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.55);
}

.poster-showcase .poster-kids .poster-footerline {
  font-size: 7px;
  left: 26px;
}

.poster-showcase .poster-concert {
  background:
    radial-gradient(circle at 78% 44%, rgba(124, 92, 252, 0.62), transparent 34%),
    linear-gradient(145deg, #09111f, #171f3a 64%, #3b2f68);
}

.poster-showcase .poster-concert-rays {
  height: 380px;
  left: 74%;
  top: 42%;
  width: 380px;
}

.poster-showcase .poster-concert-bulb {
  height: 96px;
  left: 74%;
  top: 40%;
  width: 96px;
}

.poster-showcase .poster-concert-copy {
  bottom: auto;
  left: 26px;
  right: 26px;
  top: 43%;
}

.poster-showcase .poster-concert-copy strong {
  font-size: clamp(29px, 2.5vw, 39px);
  line-height: 0.9;
}

.poster-showcase .poster-concert-copy p {
  font-size: 8px;
}

.poster-usage-strip {
  border-top: 1px solid rgba(40, 32, 26, 0.24);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  margin: 38px auto 0;
  max-width: 1280px;
  padding-top: 20px;
}

.poster-usage-strip span {
  color: #74685d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.intro-section {
  align-items: start;
  background: #f8f2e8;
  display: grid;
  gap: 60px;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 100px clamp(24px, 8vw, 120px);
}

.intro-section .section-kicker {
  color: var(--rust);
}

.intro-section h2 {
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.intro-section > p {
  border-left: 3px solid var(--sun);
  font-size: 18px;
  line-height: 1.8;
  margin: 32px 0 0;
  padding-left: 28px;
}

h2,
h3,
p {
  text-wrap: pretty;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.experience-section {
  background: #f8f2e8;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(24px, 8vw, 120px) 110px;
}

.experience-card {
  border: 1px solid rgba(40, 32, 26, 0.12);
  min-height: 390px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.experience-card::after {
  border-radius: 50%;
  content: "";
  height: 150px;
  opacity: 0.2;
  position: absolute;
  right: -54px;
  top: -42px;
  width: 150px;
}

.run-card {
  background: var(--cream);
}

.run-card::after {
  background: var(--rust);
}

.bazaar-card {
  background: var(--sun);
}

.bazaar-card::after {
  background: var(--purple);
}

.worship-card {
  background: var(--midnight);
  color: var(--white);
}

.worship-card::after {
  background: var(--sky);
}

.experience-card .section-kicker {
  color: var(--rust);
  margin-top: 65px;
}

.worship-card .section-kicker {
  color: var(--sun);
}

.card-index {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  opacity: 0.65;
}

.experience-card h3 {
  font-size: clamp(29px, 2.5vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
}

.experience-card > p:not(.section-kicker) {
  font-size: 15px;
  line-height: 1.7;
}

.experience-card > a {
  border-bottom: 1px solid currentColor;
  bottom: 32px;
  font-size: 12px;
  font-weight: 800;
  position: absolute;
}

.cause-section {
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  min-height: 720px;
}

.cause-visual {
  align-items: center;
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 211, 78, 0.2), transparent 22%),
    conic-gradient(
      from 225deg at 70% 24%,
      transparent 0 10deg,
      rgba(255, 107, 74, 0.2) 10deg 17deg,
      transparent 17deg 42deg,
      rgba(89, 200, 230, 0.18) 42deg 49deg,
      transparent 49deg 78deg,
      rgba(124, 92, 252, 0.18) 78deg 85deg,
      transparent 85deg 360deg
    ),
    var(--midnight);
  color: var(--white);
  display: flex;
  overflow: hidden;
  padding: clamp(42px, 6vw, 88px);
  position: relative;
}

.cause-visual::after {
  border: 1px solid rgba(255, 253, 248, 0.12);
  content: "";
  inset: 28px;
  position: absolute;
}

.cause-visual-copy {
  position: relative;
  z-index: 2;
}

.cause-visual-copy > span,
.cause-visual-copy > small {
  color: var(--sun);
  display: block;
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 900;
  letter-spacing: 0.22em;
}

.cause-visual-copy > strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(78px, 10vw, 148px);
  letter-spacing: -0.075em;
  line-height: 0.76;
  margin: 36px 0 28px;
}

.cause-visual-copy > p {
  color: var(--cream);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: 0.2em;
  margin: 0 0 24px;
}

.cause-visual-light {
  align-items: center;
  background: var(--sun);
  border: 12px solid rgba(255, 253, 248, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(255, 211, 78, 0.38);
  color: var(--rust);
  display: flex;
  font-size: 34px;
  height: 140px;
  justify-content: center;
  position: absolute;
  right: 8%;
  top: 12%;
  transform: rotate(8deg);
  width: 140px;
}

.cause-copy {
  padding: 90px clamp(34px, 7vw, 110px);
}

.cause-copy .section-kicker,
.kit-copy .section-kicker,
.bazaar-copy .section-kicker,
.sponsor-intro .section-kicker,
.benefits-section .section-kicker,
.closing-section .section-kicker {
  color: var(--rust);
}

.cause-copy h2,
.kit-copy h2,
.bazaar-copy h2,
.program-heading h2,
.sponsor-intro h2,
.benefits-section h2,
.closing-section h2 {
  font-size: clamp(40px, 4.4vw, 68px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
}

.large-copy {
  font-size: 19px;
  line-height: 1.75;
  margin: 30px 0 35px;
}

.cause-principles {
  border-top: 1px solid #d9d0c5;
}

.cause-principles > div {
  display: grid;
  gap: 15px;
  grid-template-columns: 36px 1fr;
  padding: 20px 0;
  border-bottom: 1px solid #d9d0c5;
}

.cause-principles span {
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
}

.cause-principles strong {
  font-size: 15px;
}

.cause-principles p {
  grid-column: 2;
  line-height: 1.5;
  margin: -8px 0 0;
}

.fine-print {
  color: #776c62;
  font-size: 11px;
  line-height: 1.65;
  margin-top: 25px;
}

.distances-section {
  background: var(--midnight);
  color: var(--white);
  padding: 105px clamp(24px, 7vw, 105px);
}

.section-heading {
  max-width: 880px;
}

.section-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
}

.section-heading > p:last-child {
  color: rgba(255, 253, 248, 0.68);
  font-size: 17px;
  line-height: 1.7;
  max-width: 700px;
}

.distance-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 55px;
}

.distance-card {
  min-height: 345px;
  padding: 28px;
  position: relative;
}

.distance-card.sun {
  background: var(--sun);
  color: var(--ink);
}

.distance-card.olive {
  background: var(--olive);
}

.distance-card.coral {
  background: var(--coral);
}

.distance-card.sky {
  background: var(--sky);
  color: var(--ink);
}

.distance-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6vw, 90px);
  letter-spacing: -0.08em;
  line-height: 1;
}

.distance-card > p {
  border-top: 1px solid currentColor;
  font-size: 20px;
  font-weight: 800;
  margin: 85px 0 15px;
  padding-top: 18px;
}

.distance-card small {
  display: block;
  font-size: 13px;
  line-height: 1.6;
}

.route-note {
  color: rgba(255, 253, 248, 0.52);
  font-size: 11px;
  margin: 26px 0 0;
}

.route-section {
  background: #f8f2e8;
  padding: 105px clamp(24px, 7vw, 105px);
}

.route-heading {
  align-items: end;
  display: grid;
  gap: clamp(36px, 7vw, 100px);
  grid-template-columns: 1.1fr 0.9fr;
  margin-bottom: 48px;
}

.route-heading .section-kicker {
  color: var(--rust);
}

.route-heading h2 {
  font-size: clamp(44px, 5.2vw, 78px);
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 0;
}

.route-heading > div:last-child > p {
  color: #655a50;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.route-map {
  background: var(--midnight);
  box-shadow: 0 24px 55px rgba(40, 32, 26, 0.18);
  margin: 0;
}

.route-map img {
  display: block;
  height: auto;
  width: 100%;
}

.route-map figcaption {
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  color: rgba(255, 253, 248, 0.6);
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: 14px 18px;
}

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

.route-reference {
  --route-tint: var(--sun);
  background: var(--white);
  border-top: 6px solid var(--sun);
  box-shadow: 0 18px 42px rgba(40, 32, 26, 0.16);
  margin: 0;
  overflow: hidden;
}

.route-reference.purple {
  --route-tint: var(--purple);
  border-top-color: var(--purple);
}

.route-reference.coral {
  --route-tint: var(--coral);
  border-top-color: var(--coral);
}

.route-reference.sky {
  --route-tint: var(--sky);
  border-top-color: var(--sky);
}

.route-reference-image {
  aspect-ratio: 470 / 696;
  background: var(--midnight);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.route-reference-image::before {
  background: var(--route-tint);
  content: "";
  inset: 0;
  mix-blend-mode: color;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.route-reference-image::after {
  background:
    linear-gradient(180deg, rgba(16, 24, 39, 0.72), transparent 24%),
    linear-gradient(0deg, rgba(16, 24, 39, 0.2), transparent 48%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.route-reference-image img {
  display: block;
  filter: grayscale(1) contrast(1.28) brightness(0.86);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.route-reference-image > span {
  color: var(--white);
  font-size: 7px;
  font-weight: 900;
  left: 15px;
  letter-spacing: 0.15em;
  position: absolute;
  top: 14px;
  z-index: 3;
}

.route-reference figcaption {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
  min-height: 112px;
  padding: 18px;
}

.route-reference figcaption > b {
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.route-reference figcaption strong {
  display: block;
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.route-reference figcaption p {
  color: #776c62;
  font-size: 9px;
  line-height: 1.45;
  margin: 7px 0 0;
}

.route-reference-credit {
  border-left: 4px solid var(--sun);
  color: #6a5e54;
  font-size: 10px;
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 920px;
  padding-left: 16px;
}

.route-cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.route-card {
  color: var(--ink);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr;
  min-height: 190px;
  padding: 24px;
}

.route-card.sun {
  background: var(--sun);
}

.route-card.purple {
  background: var(--purple);
  color: var(--white);
}

.route-card.coral {
  background: var(--coral);
}

.route-card.sky {
  background: var(--sky);
}

.route-card > span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  letter-spacing: -0.06em;
  line-height: 1;
}

.route-card strong {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  text-transform: uppercase;
}

.route-card p {
  font-size: 11px;
  line-height: 1.6;
  margin: 14px 0 0;
}

.route-approval-note {
  background: var(--cream);
  border-left: 5px solid var(--rust);
  color: #655a50;
  font-size: 11px;
  line-height: 1.65;
  margin-top: 18px;
  padding: 20px 22px;
}

.route-approval-note strong {
  color: var(--rust);
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-bottom: 5px;
}

.kit-section {
  align-items: stretch;
  background: #f8f2e8;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.kit-image {
  background: var(--cream);
  min-height: 760px;
}

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

.kit-copy {
  padding: 90px clamp(34px, 6vw, 95px);
}

.price-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  margin: 35px 0 25px;
}

.price-grid span {
  background: var(--white);
  border-top: 4px solid var(--rust);
  font-size: 11px;
  padding: 14px 10px;
}

.price-grid strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  margin-bottom: 5px;
}

.kit-copy ul {
  columns: 2;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.kit-copy li {
  break-inside: avoid;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.kit-copy li::before {
  color: var(--olive);
  content: "✦";
  left: 0;
  position: absolute;
}

.premium-note {
  background: var(--midnight);
  color: var(--white);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 25px;
  padding: 20px;
}

.premium-note strong {
  color: var(--sun);
  display: block;
  margin-bottom: 5px;
}

.bazaar-section {
  align-items: center;
  background: var(--sun);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 680px;
  overflow: hidden;
}

.bazaar-copy {
  padding: 85px clamp(34px, 7vw, 105px);
}

.bazaar-partner {
  border: 1px solid rgba(40, 32, 26, 0.45);
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 25px;
  padding: 9px 11px;
}

.bazaar-partner strong {
  color: var(--rust);
}

.bazaar-copy blockquote {
  border-left: 4px solid var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.4vw, 35px);
  line-height: 1.25;
  margin: 35px 0 25px;
  padding-left: 22px;
}

.bazaar-copy > p:not(.section-kicker) {
  font-size: 15px;
  line-height: 1.7;
}

.scripture-tag {
  border: 1px solid var(--ink);
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-top: 12px;
  padding: 8px 12px;
}

.bazaar-image {
  align-self: stretch;
}

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

.siteplan-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 211, 78, 0.16), transparent 24%),
    #f8f2e8;
  padding: 110px clamp(24px, 7vw, 105px);
}

.siteplan-heading {
  align-items: end;
  display: grid;
  gap: clamp(40px, 7vw, 105px);
  grid-template-columns: 1.1fr 0.9fr;
}

.siteplan-heading .section-kicker {
  color: var(--rust);
}

.siteplan-heading h2 {
  font-size: clamp(44px, 5vw, 76px);
  letter-spacing: -0.05em;
  line-height: 0.94;
  margin: 0;
}

.siteplan-heading > div:last-child > p {
  color: #655a50;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.siteplan-badge {
  border: 1px solid rgba(40, 32, 26, 0.36);
  display: inline-block;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-top: 22px;
  padding: 10px 12px;
}

.siteplan-metrics {
  background: var(--midnight);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 55px;
}

.siteplan-metrics > div {
  border-right: 1px solid rgba(255, 253, 248, 0.16);
  padding: 23px 20px;
}

.siteplan-metrics > div:last-child {
  border-right: 0;
}

.siteplan-metrics strong,
.siteplan-metrics span {
  display: block;
}

.siteplan-metrics strong {
  color: var(--sun);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.siteplan-metrics span {
  color: rgba(255, 253, 248, 0.68);
  font-size: 9px;
  line-height: 1.4;
  margin-top: 5px;
  text-transform: uppercase;
}

.siteplan-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.siteplan-hero {
  background: var(--midnight);
  border: 1px solid rgba(255, 211, 78, 0.28);
  box-shadow: 0 28px 70px rgba(16, 24, 39, 0.22);
  color: var(--white);
  margin: 20px 0 0;
  overflow: hidden;
}

.siteplan-hero .siteplan-card-head {
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.siteplan-hero .siteplan-card-head span {
  color: var(--sun);
}

.siteplan-hero-image {
  aspect-ratio: 3 / 2;
  background: #09111f;
  overflow: hidden;
}

.siteplan-hero-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.siteplan-hero figcaption {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr auto;
  padding: 24px 28px 28px;
}

.siteplan-hero figcaption strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.siteplan-hero figcaption p {
  color: rgba(255, 253, 248, 0.65);
  font-size: 11px;
  line-height: 1.6;
  margin: 8px 0 0;
  max-width: 760px;
}

.siteplan-hero figcaption a {
  border-bottom: 1px solid var(--sun);
  color: var(--sun);
  font-size: 9px;
  font-weight: 900;
  padding-bottom: 4px;
  white-space: nowrap;
}

.siteplan-card {
  background: var(--white);
  border: 1px solid #d8cfc2;
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.siteplan-card.dark {
  background: var(--midnight);
  border-color: var(--midnight);
  color: var(--white);
}

.siteplan-card-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
}

.siteplan-card-head span {
  color: var(--rust);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.siteplan-card.dark .siteplan-card-head span {
  color: var(--sun);
}

.siteplan-card-head strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.siteplan-image {
  aspect-ratio: 16 / 11;
  background: var(--midnight);
  overflow: hidden;
}

.siteplan-image.technical {
  background: #f8f2e8;
}

.siteplan-image img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.siteplan-card figcaption {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto;
  padding: 18px 20px 22px;
}

.siteplan-card figcaption p {
  color: #6d6258;
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
}

.siteplan-card.dark figcaption p {
  color: rgba(255, 253, 248, 0.64);
}

.siteplan-card figcaption a {
  border-bottom: 1px solid currentColor;
  color: var(--rust);
  font-size: 9px;
  font-weight: 900;
  padding-bottom: 4px;
  white-space: nowrap;
}

.siteplan-card.dark figcaption a {
  color: var(--sun);
}

.siteplan-zones {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
}

.siteplan-zones article {
  background: var(--white);
  border-top: 4px solid var(--sun);
  min-height: 188px;
  padding: 24px;
}

.siteplan-zones article:nth-child(2) {
  border-top-color: var(--coral);
}

.siteplan-zones article:nth-child(3) {
  border-top-color: var(--sky);
}

.siteplan-zones article:nth-child(4) {
  border-top-color: var(--purple);
}

.siteplan-zones span {
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.siteplan-zones strong {
  display: block;
  font-size: 14px;
  margin-top: 28px;
}

.siteplan-zones p {
  color: #6d6258;
  font-size: 11px;
  line-height: 1.55;
}

.siteplan-note {
  border-left: 5px solid var(--rust);
  color: #6d6258;
  font-size: 10px;
  line-height: 1.65;
  margin: 20px 0 0;
  padding: 12px 0 12px 18px;
}

.program-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(124, 92, 252, 0.35), transparent 27%),
    var(--midnight);
  color: var(--white);
  display: grid;
  gap: 65px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 110px clamp(24px, 8vw, 120px);
}

.program-heading {
  position: sticky;
  top: 45px;
  align-self: start;
}

.program-heading > p:last-child {
  color: rgba(255, 253, 248, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.timeline {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.timeline-row {
  display: grid;
  gap: 24px;
  grid-template-columns: 110px 14px 1fr;
  margin-left: -7px;
  min-height: 93px;
}

.timeline-row time {
  color: var(--sun);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  text-align: right;
}

.timeline-dot {
  background: var(--sun);
  border: 4px solid var(--midnight);
  border-radius: 50%;
  height: 14px;
  width: 14px;
}

.timeline-row strong {
  display: block;
  font-size: 16px;
}

.timeline-row p {
  color: rgba(255, 253, 248, 0.62);
  font-size: 13px;
  line-height: 1.5;
  margin: 6px 0 0;
}

.timeline-row.finale {
  background: var(--sun);
  color: var(--ink);
  margin-left: -7px;
  padding: 20px 18px 20px 0;
}

.timeline-row.finale time {
  color: var(--rust);
}

.timeline-row.finale .timeline-dot {
  border-color: var(--sun);
  background: var(--rust);
}

.timeline-row.finale p {
  color: var(--ink);
}

.fine-print.light {
  align-self: end;
  color: rgba(255, 253, 248, 0.45);
  grid-column: 2;
}

.sponsor-intro {
  background: var(--cream);
  display: grid;
  gap: 65px;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 105px clamp(24px, 8vw, 120px);
}

.partner-points {
  border-top: 1px solid var(--ink);
}

.partner-points p {
  border-bottom: 1px solid rgba(40, 32, 26, 0.28);
  display: grid;
  font-size: 15px;
  gap: 16px;
  grid-template-columns: 40px 1fr;
  line-height: 1.55;
  margin: 0;
  padding: 20px 0;
}

.partner-points span {
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
}

.tier-section {
  background: var(--white);
  padding: 0 clamp(24px, 8vw, 120px) 110px;
}

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

.tier-card {
  border: 1px solid #ded5ca;
  min-height: 305px;
  padding: 27px;
  position: relative;
}

.tier-card.featured {
  background: var(--midnight);
  color: var(--white);
}

.tier-flag {
  background: var(--sun);
  color: var(--ink);
  font-size: 8px !important;
  font-weight: 900;
  letter-spacing: 0.18em;
  padding: 6px 8px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.tier-card > p {
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 28px;
  max-width: 70%;
}

.tier-card > strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 39px;
  letter-spacing: -0.04em;
}

.tier-card > span {
  color: var(--rust);
  display: block;
  font-size: 11px;
  font-weight: 800;
  margin-top: 7px;
}

.tier-card.featured > span:not(.tier-flag) {
  color: var(--sun);
}

.tier-card > small {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 28px;
}

.tier-card > a {
  bottom: 25px;
  color: var(--rust);
  font-size: 11px;
  font-weight: 900;
  position: absolute;
}

.tier-card.featured > a {
  color: var(--sun);
}

.in-kind {
  align-items: center;
  background: var(--olive);
  color: var(--white);
  display: grid;
  gap: 25px;
  grid-template-columns: 0.7fr 1.1fr 1.6fr;
  margin-top: 14px;
  padding: 27px;
}

.in-kind > span {
  color: var(--cream);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.in-kind strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.in-kind p {
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.benefits-section {
  background: #f8f2e8;
  padding: 105px clamp(24px, 7vw, 105px);
}

.benefits-section .section-heading > p:last-child {
  color: #6e6258;
}

.table-wrap {
  margin-top: 45px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 850px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid #d6ccc0;
  font-size: 11px;
  line-height: 1.45;
  padding: 17px 12px;
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--midnight);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tbody th {
  color: var(--rust);
  width: 150px;
}

.trust-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 45px;
}

.trust-grid article {
  background: var(--white);
  border-top: 4px solid var(--sun);
  min-height: 150px;
  padding: 22px;
}

.trust-grid span {
  font-size: 13px;
  font-weight: 900;
}

.trust-grid p {
  color: #6e6258;
  font-size: 12px;
  line-height: 1.55;
}

.closing-section {
  align-items: center;
  background: var(--cream);
  display: grid;
  gap: 60px;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  padding: 70px clamp(24px, 8vw, 120px);
}

.closing-section > img {
  filter: drop-shadow(0 28px 28px rgba(40, 32, 26, 0.22));
  max-height: 560px;
  object-fit: contain;
  transform: rotate(-5deg);
  width: 100%;
}

.closing-section > div > p:not(.section-kicker) {
  font-size: 17px;
  line-height: 1.7;
  max-width: 650px;
}

.closing-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 32px;
}

.text-link.dark {
  border-color: var(--ink);
  color: var(--ink);
}

address {
  border-top: 1px solid rgba(40, 32, 26, 0.3);
  font-style: normal;
  margin-top: 40px;
  padding-top: 20px;
}

address strong,
address a {
  display: block;
}

address a {
  font-size: 13px;
  margin-top: 5px;
}

footer {
  align-items: center;
  background: var(--midnight);
  color: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto auto;
  padding: 36px clamp(24px, 6vw, 90px);
}

footer p,
footer > a:last-child {
  font-size: 11px;
}

footer > a:last-child {
  color: var(--sun);
  font-weight: 900;
}

.race-collateral-section {
  background: radial-gradient(circle at 90% 8%, rgba(255, 211, 78, 0.22), transparent 24%), #f4ecdf;
  padding: 105px clamp(24px, 6vw, 90px);
}

.race-collateral-heading {
  align-items: end;
  display: grid;
  gap: 55px;
  grid-template-columns: 1.1fr 0.9fr;
  margin: 0 auto 42px;
  max-width: 1280px;
}

.race-collateral-heading .section-kicker { color: var(--rust); }

.race-collateral-heading h2,
.registration-highlights h2,
.registration-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0;
}

.race-collateral-heading > p {
  border-left: 3px solid var(--sun);
  color: #6f635a;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  padding-left: 22px;
}

.runner-artboard-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: 1280px;
}

.runner-artboard-grid figure,
.bib-gallery figure { margin: 0; min-width: 0; }

.runner-artboard-grid figure {
  background: var(--midnight);
  border: 1px solid rgba(40, 32, 26, 0.1);
  box-shadow: 0 24px 55px rgba(40, 32, 26, 0.16);
  overflow: hidden;
}

.runner-artboard-grid img,
.bib-gallery img {
  aspect-ratio: 3 / 2;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.runner-artboard-grid figcaption {
  color: rgba(255, 253, 248, 0.68);
  font-size: 11px;
  line-height: 1.5;
  min-height: 74px;
  padding: 18px 20px;
}

.runner-artboard-grid figcaption strong {
  color: var(--sun);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  margin-bottom: 3px;
}

.bib-gallery-heading {
  align-items: center;
  border-bottom: 1px solid #d7cbb9;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: 64px auto 20px;
  max-width: 1280px;
  padding-bottom: 16px;
}

.bib-gallery-heading > div { align-items: center; display: flex; gap: 13px; }

.bib-gallery-heading span {
  align-items: center;
  background: var(--midnight);
  border-radius: 50%;
  color: var(--sun);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.bib-gallery-heading strong { font-size: 11px; letter-spacing: 0.15em; }
.bib-gallery-heading p { color: #75685e; font-size: 11px; margin: 0; }

.bib-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  max-width: 1280px;
}

.bib-gallery figure {
  background: var(--white);
  border-top: 6px solid var(--sun);
  box-shadow: 0 16px 34px rgba(40, 32, 26, 0.1);
  overflow: hidden;
}

.bib-gallery figure.olive { border-color: var(--olive); }
.bib-gallery figure.coral { border-color: var(--coral); }
.bib-gallery figure.sky { border-color: var(--sky); }

.bib-gallery figcaption { align-items: center; display: flex; gap: 12px; padding: 15px 18px 17px; }

.bib-gallery figcaption strong {
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.bib-gallery figcaption span {
  color: #6f635a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.race-collateral-note {
  background: var(--cream);
  border-left: 4px solid var(--rust);
  color: #6f635a;
  font-size: 11px;
  line-height: 1.6;
  margin: 20px auto 0;
  max-width: 1280px;
  padding: 15px 18px;
}

.footer-actions { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.footer-actions a { color: var(--sun); font-size: 12px; font-weight: 900; }

.registration-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 211, 78, 0.16), transparent 23%),
    radial-gradient(circle at 92% 68%, rgba(124, 92, 252, 0.34), transparent 30%),
    linear-gradient(145deg, #07101e 0%, #131d31 54%, #302451 100%);
}

.registration-scripture {
  background: var(--cream);
  border-left: 5px solid var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.35;
  margin-top: 28px;
  padding: 20px 22px;
}

.registration-page .distance-card small b { color: var(--sun); font-size: 14px; }
.registration-highlights { display: grid; grid-template-columns: 1fr 1fr; }

.registration-highlights article {
  min-height: 520px;
  overflow: hidden;
  padding: clamp(60px, 7vw, 105px);
  position: relative;
}

.registration-highlights article > p:not(.section-kicker) { font-size: 15px; line-height: 1.7; max-width: 530px; }

.registration-highlights article > span {
  bottom: 50px;
  font-size: 9px;
  font-weight: 900;
  left: clamp(60px, 7vw, 105px);
  letter-spacing: 0.17em;
  position: absolute;
}

.registration-kids {
  background: radial-gradient(circle at 84% 18%, rgba(255, 211, 78, 0.55), transparent 23%), linear-gradient(145deg, var(--cream), #f4b47d);
}

.registration-kids .section-kicker,
.registration-ready .section-kicker { color: var(--rust); }

.registration-concert {
  background: radial-gradient(circle at 80% 18%, rgba(89, 200, 230, 0.3), transparent 24%), linear-gradient(145deg, #21183e, var(--midnight));
  color: var(--white);
}

.registration-concert > p:not(.section-kicker) { color: rgba(255, 253, 248, 0.7); }
.registration-ready { background: var(--white); padding: 100px clamp(24px, 6vw, 90px); }

.registration-ready .section-heading,
.registration-ready .trust-grid { margin-left: auto; margin-right: auto; max-width: 1280px; }

.registration-cta {
  align-items: center;
  background: radial-gradient(circle at 18% 20%, rgba(255, 107, 74, 0.25), transparent 26%), linear-gradient(145deg, #08111f, #2b2149);
  color: var(--white);
  display: grid;
  gap: 70px;
  grid-template-columns: 1.35fr 0.65fr;
  padding: 105px clamp(24px, 10vw, 160px);
}

.registration-cta > div:first-child > p:last-child {
  color: rgba(255, 253, 248, 0.7);
  font-size: 15px;
  line-height: 1.7;
  max-width: 690px;
}

.registration-cta-action { align-items: stretch; display: flex; flex-direction: column; gap: 11px; }
.registration-cta-action small { color: rgba(255, 253, 248, 0.6); font-size: 10px; text-align: center; }
.registration-cta-action > a:not(.button) { color: var(--cream); font-size: 12px; font-weight: 700; text-align: center; }

@media (max-width: 980px) {
  .race-collateral-heading {
    align-items: start;
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .registration-cta {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 135px;
  }

  .hero-art {
    min-height: 440px;
  }

  .cause-chip {
    right: 0;
  }

  .poster-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .poster-suite-heading {
    grid-template-columns: 1fr;
  }

  .poster-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    min-height: 0;
  }

  .poster-feature {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .poster-feature,
  .poster-support {
    min-height: 0 !important;
  }

  .poster-feature .poster-card {
    aspect-ratio: 16 / 7.8;
  }

  .poster-main-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-section,
  .distance-grid,
  .route-reference-grid,
  .route-cards,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cause-section,
  .kit-section,
  .bazaar-section {
    grid-template-columns: 1fr;
  }

  .cause-visual,
  .bazaar-image {
    min-height: 580px;
  }

  .kit-image {
    min-height: 620px;
  }

  .program-section,
  .sponsor-intro,
  .route-heading,
  .siteplan-heading {
    grid-template-columns: 1fr;
  }

  .siteplan-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .siteplan-metrics > div:nth-child(3) {
    border-right: 0;
  }

  .siteplan-metrics > div:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 253, 248, 0.16);
  }

  .siteplan-zones {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-heading {
    position: static;
  }

  .fine-print.light {
    grid-column: 1;
  }

  .tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .race-collateral-section {
    padding: 75px 20px;
  }

  .runner-artboard-grid,
  .bib-gallery,
  .registration-highlights {
    grid-template-columns: 1fr;
  }

  .bib-gallery-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .registration-highlights article {
    min-height: 470px;
    padding: 70px 24px;
  }

  .registration-highlights article > span {
    bottom: 35px;
    left: 24px;
    right: 24px;
  }

  .registration-ready,
  .registration-cta {
    padding: 75px 20px;
  }

  .footer-actions {
    justify-content: flex-start;
  }

  .site-header {
    padding-inline: 18px;
  }

  .site-header .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 125px 20px 75px;
  }

  h1 {
    font-size: 54px;
  }

  .event-meta {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 380px;
  }

  .cause-chip {
    bottom: -15px;
  }

  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .signal-strip div:nth-child(2) {
    border-right: 0;
  }

  .poster-suite {
    padding: 70px 20px;
  }

  .poster-suite-heading {
    gap: 22px;
    margin-bottom: 30px;
  }

  .poster-showcase {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
    margin-inline: 0;
  }

  .poster-feature,
  .poster-support {
    grid-column: auto;
    min-height: 0 !important;
  }

  .poster-feature .poster-card {
    aspect-ratio: auto;
    height: 540px;
  }

  .poster-support .poster-card {
    aspect-ratio: 4 / 5.15;
  }

  .poster-showcase figure {
    border-radius: 24px;
    padding: 7px 7px 12px;
  }

  .poster-showcase .poster-main > img {
    right: 7%;
    top: 11%;
    width: 86%;
  }

  .poster-showcase .poster-main-copy {
    bottom: auto;
    left: 26px;
    max-width: 88%;
    top: 41%;
  }

  .poster-showcase .poster-main-copy strong {
    font-size: 50px;
  }

  .poster-main-details {
    bottom: 66px;
    gap: 7px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: 26px;
    right: 26px;
  }

  .poster-main-details b {
    display: inline;
    font-size: 16px;
  }

  .poster-showcase .poster-cause-copy strong,
  .poster-showcase .poster-race-title strong,
  .poster-showcase .poster-concert-copy strong {
    font-size: 38px;
  }

  .poster-showcase .poster-kids-copy strong {
    font-size: 38px;
  }

  .poster-showcase .poster-race-list > div {
    min-height: 58px;
  }

  .poster-rail {
    display: flex;
    gap: 14px;
    margin-inline: -20px;
    max-width: none;
    overflow-x: auto;
    padding: 0 20px 20px;
    scroll-snap-type: x mandatory;
  }

  .poster-rail figure {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .poster-card .poster-topline,
  .poster-card .poster-footerline {
    font-size: 8px;
  }

  .poster-main-copy strong,
  .poster-kids-copy strong {
    font-size: 50px;
  }

  .poster-cause-copy strong,
  .poster-concert-copy strong {
    font-size: 40px;
  }

  .intro-section {
    gap: 25px;
    grid-template-columns: 1fr;
    padding: 72px 24px;
  }

  .experience-section {
    grid-template-columns: 1fr;
    padding: 0 20px 75px;
  }

  .experience-card {
    min-height: 340px;
  }

  .cause-copy,
  .kit-copy,
  .bazaar-copy {
    padding: 70px 24px;
  }

  .cause-visual,
  .bazaar-image {
    min-height: 440px;
  }

  .distances-section,
  .route-section,
  .siteplan-section,
  .program-section,
  .sponsor-intro,
  .benefits-section {
    padding: 78px 20px;
  }

  .distance-grid,
  .route-reference-grid,
  .route-cards,
  .tier-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 160px;
  }

  .siteplan-metrics,
  .siteplan-grid,
  .siteplan-zones {
    grid-template-columns: 1fr;
  }

  .siteplan-metrics > div,
  .siteplan-metrics > div:nth-child(3) {
    border-right: 0;
  }

  .siteplan-metrics > div + div {
    border-top: 1px solid rgba(255, 253, 248, 0.16);
  }

  .siteplan-card figcaption {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .siteplan-hero figcaption {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .siteplan-hero-image {
    aspect-ratio: 3 / 2;
  }

  .siteplan-zones article {
    min-height: 160px;
  }

  .distance-card {
    min-height: 285px;
  }

  .distance-card > p {
    margin-top: 45px;
  }

  .kit-image {
    min-height: 430px;
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kit-copy ul {
    columns: 1;
  }

  .timeline-row {
    gap: 12px;
    grid-template-columns: 82px 14px 1fr;
  }

  .tier-section {
    padding: 0 20px 75px;
  }

  .in-kind {
    grid-template-columns: 1fr;
  }

  .closing-section {
    grid-template-columns: 1fr;
    padding: 65px 24px;
  }

  .closing-section > img {
    max-height: 400px;
  }

  footer {
    grid-template-columns: 1fr;
  }
}
