:root {
  --pine: #17392f;
  --pine-dark: #0d241f;
  --sage: #dce7d2;
  --cream: #fff8ea;
  --gold: #f2b84b;
  --gold-soft: rgba(242, 184, 75, 0.18);
  --sky: #6d8798;
  --slate: #22303a;
  --ink: #14201d;
  --muted: #63736f;
  --white: #ffffff;
  --shadow: rgba(9, 24, 22, 0.22);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(242, 184, 75, 0.12), transparent 22rem),
    linear-gradient(180deg, #fbf6ea 0%, #eef3e7 52%, #dce7d2 100%);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: var(--cream);
  background: rgba(13, 36, 31, 0.9);
  border-bottom: 1px solid rgba(255, 248, 234, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--pine-dark);
  background: linear-gradient(135deg, #fff1c9, var(--gold));
  border-radius: 50%;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

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

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand small {
  color: #f5dca1;
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.main-nav a {
  padding: 10px 12px;
  color: rgba(255, 248, 234, 0.86);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.main-nav .nav-donate {
  color: var(--pine-dark);
  background: var(--gold);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 34px;
  padding: clamp(40px, 7vw, 92px);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(13, 36, 31, 0.9), rgba(13, 36, 31, 0.54) 46%, rgba(13, 36, 31, 0.18)),
    url(assets/mountain-trail-hero.webp) center / cover;
}

.hero-copy {
  max-width: 780px;
  padding-top: 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f5cf7a;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 900;
}

.eyebrow.dark {
  color: #936815;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
}

h2 {
  color: var(--pine-dark);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h3 {
  color: var(--pine-dark);
  font-size: 1.25rem;
}

.hero p,
.page-hero p {
  max-width: 54ch;
  color: rgba(255, 248, 234, 0.9);
  font-size: 1.12rem;
  line-height: 1.62;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  color: var(--pine-dark);
  background: var(--gold);
  box-shadow: 0 18px 42px rgba(242, 184, 75, 0.22);
}

.button.secondary {
  color: var(--cream);
  border: 1px solid rgba(255, 248, 234, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.dark-button {
  color: var(--pine-dark) !important;
  border-color: rgba(23, 57, 47, 0.3) !important;
}

.hero-card {
  padding: 26px;
  border: 1px solid rgba(255, 248, 234, 0.25);
  border-radius: 18px;
  background: rgba(13, 36, 31, 0.66);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.hero-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-card strong {
  display: block;
  margin: 12px 0;
  font-size: 1.6rem;
  line-height: 1.04;
}

.hero-card p {
  margin: 0;
  color: rgba(255, 248, 234, 0.82);
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 78px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.intro-card,
.path-stop,
.donate-panel,
.impact-stack article,
.mission-grid article {
  padding: 24px;
  border: 1px solid rgba(23, 57, 47, 0.12);
  border-radius: 20px;
  background: rgba(255, 248, 234, 0.72);
  box-shadow: 0 18px 48px var(--shadow);
}

.intro-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pine-dark);
  font-size: 1.1rem;
}

.intro-card p,
.path-stop p,
.sponsor-preview p,
.heartbeat-copy p,
.mission-grid p,
.donate-panel p,
.impact-stack span,
.video-feature p {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

.trail-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.42), rgba(220, 231, 210, 0.72)),
    radial-gradient(circle at 80% 10%, rgba(242, 184, 75, 0.18), transparent 20rem);
}

.path-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.path-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 48%;
  height: 3px;
  background:
    linear-gradient(90deg, transparent, var(--gold), transparent),
    repeating-linear-gradient(90deg, var(--pine) 0 14px, transparent 14px 28px);
  opacity: 0.36;
}

.path-stop {
  position: relative;
  z-index: 1;
  min-height: 240px;
}

.path-stop span,
.mission-grid span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  color: var(--pine-dark);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.path-stop:nth-child(3) {
  transform: translateY(36px);
}

.path-stop:nth-child(4) {
  transform: translateY(-18px);
}

.feature-band,
.field-note-band,
.founder-band,
.video-feature,
.sponsor-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.feature-band {
  color: var(--cream);
  background: var(--pine-dark);
}

.feature-band img,
.field-note-band img,
.founder-band img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.feature-band h2,
.feature-band p {
  color: var(--cream);
}

.text-link {
  color: #f5cf7a;
  font-weight: 900;
  text-underline-offset: 4px;
}

.dark-link {
  color: #936815;
}

.training-map {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
  gap: 34px;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.96) 0 36%, rgba(255, 248, 234, 0.62) 48%, rgba(13, 36, 31, 0.1)),
    url(assets/mountain-trail-hero.webp) center / cover;
}

.training-copy {
  align-self: center;
  max-width: 520px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 248, 234, 0.82);
  box-shadow: 0 20px 60px rgba(9, 24, 22, 0.14);
}

.training-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.map-note {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(23, 57, 47, 0.16);
  border-radius: 18px;
  background: rgba(255, 248, 234, 0.74);
}

.map-note strong {
  color: var(--pine-dark);
}

.map-note span {
  color: var(--muted);
}

.mountain-route {
  position: relative;
  min-height: 620px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 36, 31, 0.06), rgba(13, 36, 31, 0.42)),
    url(assets/mountain-trail-hero.webp) 64% center / cover;
  box-shadow: 0 24px 70px var(--shadow);
}

.route-line {
  position: absolute;
  inset: 6% 10%;
  width: 80%;
  height: 88%;
  overflow: visible;
}

.route-line path {
  fill: none;
  stroke: rgba(245, 207, 122, 0.78);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 16 20;
  filter: drop-shadow(0 0 12px rgba(245, 207, 122, 0.46));
}

.route-stop {
  position: absolute;
  width: min(320px, 44%);
  padding: 20px;
  border: 1px solid rgba(255, 248, 234, 0.7);
  border-radius: 16px;
  background: rgba(255, 248, 234, 0.88);
  box-shadow: 0 18px 50px rgba(9, 24, 22, 0.26);
}

.route-stop span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: var(--cream);
  background: var(--pine);
  border: 3px solid var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.route-stop h3 {
  margin-bottom: 8px;
}

.route-stop p {
  margin-bottom: 0;
  color: #40514c;
}

.stop-one {
  top: 8%;
  right: 5%;
}

.stop-two {
  top: 40%;
  right: 12%;
}

.stop-three {
  left: 8%;
  bottom: 9%;
}

.field-note-band {
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 184, 75, 0.16), transparent 22rem),
    var(--cream);
}

.field-note-band p {
  color: var(--muted);
  line-height: 1.6;
}

.sponsor-preview {
  background: var(--cream);
}

.page-hero {
  min-height: 460px;
  display: grid;
  align-items: end;
  padding: clamp(48px, 8vw, 96px);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(13, 36, 31, 0.9), rgba(13, 36, 31, 0.3)),
    url(assets/mountain-trail-hero.webp) center / cover;
}

.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.donate-hero {
  background:
    linear-gradient(90deg, rgba(13, 36, 31, 0.9), rgba(13, 36, 31, 0.22)),
    url(assets/training-room.webp) center / cover;
}

.videos-hero {
  background:
    linear-gradient(90deg, rgba(13, 36, 31, 0.9), rgba(13, 36, 31, 0.24)),
    url(assets/rmlf-current-05.webp) center / cover;
}

.heartbeat-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: center;
  background: var(--cream);
}

.heartbeat {
  width: 100%;
  min-height: 150px;
  overflow: visible;
}

.heartbeat path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.heartbeat-base {
  stroke: rgba(242, 184, 75, 0.48);
  stroke-width: 4;
  filter: drop-shadow(0 0 10px rgba(242, 184, 75, 0.22));
}

.heartbeat-white {
  stroke: rgba(255, 255, 255, 0.74);
  stroke-width: 2.8;
  stroke-dasharray: 56 844;
  animation: pulseTravel 1.55s linear infinite;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.54))
    drop-shadow(0 0 16px rgba(255, 248, 234, 0.24));
}

@keyframes pulseTravel {
  from {
    stroke-dashoffset: 900;
  }

  to {
    stroke-dashoffset: 0;
  }
}

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

.mission-path-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-content: center;
  gap: 34px;
  padding: clamp(54px, 7vw, 96px);
  color: var(--cream);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 36, 31, 0.72), rgba(13, 36, 31, 0.86)),
    url(assets/mountain-trail-hero.webp) center / cover;
}

.mission-path-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    repeating-radial-gradient(circle at 20% 40%, transparent 0 18px, rgba(255, 248, 234, 0.18) 19px 20px),
    linear-gradient(120deg, transparent, rgba(255, 248, 234, 0.08), transparent);
}

.mission-path-copy,
.mission-path-visual,
.mission-path-hero blockquote {
  position: relative;
  z-index: 1;
}

.mission-path-copy {
  text-align: center;
}

.mission-path-copy h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.mission-path-copy p {
  color: rgba(255, 248, 234, 0.9);
  font-size: 1.15rem;
}

.mission-path-visual {
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(26px, 5vw, 58px) 0;
}

.mission-path-visual .heartbeat {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1120px, 92vw);
  min-height: 140px;
  transform: translate(-50%, -50%);
  opacity: 0.84;
}

.mission-grid-overlay {
  position: relative;
  z-index: 2;
}

.mission-grid-overlay article {
  min-height: 330px;
  color: var(--cream);
  border-color: rgba(245, 207, 122, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.12), rgba(23, 57, 47, 0.76)),
    var(--image, rgba(13, 36, 31, 0.62));
  backdrop-filter: blur(5px);
}

.mission-grid-overlay article:nth-child(1) {
  --image: url(assets/rmlf-current-03.webp) center / cover;
}

.mission-grid-overlay article:nth-child(2) {
  --image: url(assets/rmlf-current-04.webp) center / cover;
}

.mission-grid-overlay article:nth-child(3) {
  --image: url(assets/rmlf-current-05.webp) center / cover;
}

.mission-grid-overlay h2,
.mission-grid-overlay p {
  color: var(--cream);
}

.mission-path-hero blockquote {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.founder-band {
  background: var(--pine-dark);
  color: var(--cream);
}

.founder-band h2,
.founder-band p {
  color: var(--cream);
}

blockquote {
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: #f7dfac;
  font-size: 1.2rem;
  line-height: 1.45;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  color: rgba(255, 248, 234, 0.76);
  font-size: 0.9rem;
}

.donate-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  background: #edf3e7;
}

.donate-panel {
  background: var(--cream);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.amount-grid button {
  min-height: 70px;
  border: 1px solid rgba(23, 57, 47, 0.18);
  border-radius: 18px;
  color: var(--pine-dark);
  background: rgba(220, 231, 210, 0.65);
  font: 900 1.35rem/1 "Segoe UI", sans-serif;
}

.amount-grid button.is-selected,
.amount-grid button:hover {
  background: var(--gold);
}

.custom-amount {
  display: grid;
  gap: 8px;
  color: var(--pine-dark);
  font-weight: 900;
}

.custom-amount input {
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(23, 57, 47, 0.2);
  border-radius: 14px;
  background: white;
  font: inherit;
}

.donation-note {
  margin: 18px 0 22px;
}

.prototype-note {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.impact-stack {
  display: grid;
  gap: 14px;
}

.impact-stack article {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
}

.impact-stack strong {
  color: var(--pine-dark);
  font-size: 2rem;
}

.video-feature {
  background: var(--cream);
}

.video-frame,
.embed-placeholder {
  position: relative;
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 36, 31, 0.1), rgba(13, 36, 31, 0.64)),
    var(--image) center / cover;
  box-shadow: 0 24px 70px var(--shadow);
}

.youtube-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(242, 184, 75, 0.18), transparent 18rem),
    var(--pine-dark);
  box-shadow: 0 24px 70px var(--shadow);
}

.youtube-frame.featured-video {
  min-height: 430px;
}

.youtube-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-placeholder {
  display: grid;
  place-items: center;
  min-height: 430px;
}

.embed-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 36, 31, 0.18), rgba(13, 36, 31, 0.72));
}

.embed-placeholder > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 24px;
  color: var(--cream);
  text-align: center;
}

.embed-placeholder strong {
  font-size: 1.35rem;
}

.embed-placeholder p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 248, 234, 0.82);
}

.embed-placeholder.small {
  min-height: 280px;
  border-radius: 22px;
}

.video-frame button,
.play-dot {
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 12px rgba(242, 184, 75, 0.2);
}

.video-frame button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
}

.video-frame button span,
.play-dot::after {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--pine-dark);
}

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

.video-embed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  background: #edf3e7;
}

.video-embed-grid article h2 {
  margin: 16px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.story-card {
  position: relative;
  min-height: 340px;
  display: grid;
  align-content: end;
  padding: 22px;
  color: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 36, 31, 0.02), rgba(13, 36, 31, 0.84)),
    var(--image) center / cover;
  box-shadow: 0 20px 58px var(--shadow);
}

.story-card p {
  margin: 0 0 8px;
  color: #f5cf7a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 900;
}

.story-card h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--cream);
  font-size: 1.7rem;
}

.play-dot {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.play-dot::after {
  content: "";
  margin-left: 3px;
  border-top-width: 8px;
  border-bottom-width: 8px;
  border-left-width: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 248, 234, 0.8);
  background: var(--pine-dark);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .intro-grid,
  .path-layout,
  .feature-band,
  .field-note-band,
  .founder-band,
  .sponsor-preview,
  .heartbeat-section,
  .mission-grid,
  .training-map,
  .donate-layout,
  .video-feature,
  .video-embed-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .path-line {
    display: none;
  }

  .path-stop:nth-child(n) {
    transform: none;
  }

  .mountain-route {
    min-height: auto;
    display: grid;
    gap: 16px;
    padding: 22px;
  }

  .route-line {
    display: none;
  }

  .route-stop {
    position: relative;
    inset: auto;
    width: auto;
  }
}

@media (max-width: 560px) {
  .main-nav {
    width: 100%;
  }

  .main-nav a {
    flex: 1 1 44%;
    text-align: center;
  }

  .amount-grid,
  .impact-stack article {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Scene prototype: fixed header with fading panels */
.scene-site {
  height: 100vh;
  overflow: hidden;
  background: var(--pine-dark);
}

.scene-header {
  position: fixed;
  left: 0;
  right: 0;
}

.scene-header .brand,
.scene-header .main-nav button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.scene-header .brand {
  color: inherit;
  background: transparent;
}

.scene-header .main-nav button {
  padding: 10px 12px;
  color: rgba(255, 248, 234, 0.86);
  text-decoration: none;
  border-radius: 999px;
  background: transparent;
  font-weight: 800;
  font-size: 0.82rem;
}

.scene-header .main-nav button:hover,
.scene-header .main-nav button.is-active {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.scene-header .main-nav .nav-donate {
  color: var(--pine-dark);
  background: var(--gold);
}

.scene-shell {
  position: relative;
  height: 100vh;
  padding-top: 76px;
  overflow: hidden;
}

.scene-panel {
  position: absolute;
  inset: 76px 0 0;
  min-height: calc(100vh - 76px);
  display: grid;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.01);
  transition:
    opacity 420ms ease,
    transform 580ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.scene-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.basecamp-scene {
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  padding: clamp(42px, 6vw, 92px) clamp(42px, 6vw, 92px) clamp(118px, 13vh, 168px);
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(13, 36, 31, 0.9), rgba(13, 36, 31, 0.54) 42%, rgba(13, 36, 31, 0.1) 72%),
    url(assets/mountain-trail-hero-sign.webp) center / cover;
}

.basecamp-copy {
  max-width: 820px;
  align-self: center;
  margin-left: 0;
  transform: translateY(-4vh);
}

.basecamp-copy h1 {
  max-width: 13ch;
}

.basecamp-status {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--cream);
  background: rgba(13, 36, 31, 0.88);
  border-top: 1px solid rgba(255, 248, 234, 0.14);
}

.basecamp-status-item {
  position: relative;
  padding: 18px clamp(14px, 3vw, 44px);
  border-right: 1px solid rgba(255, 248, 234, 0.14);
  text-align: center;
  font-weight: 900;
  outline: none;
}

.basecamp-status-item:last-child {
  border-right: 0;
}

.basecamp-status-item strong {
  display: block;
  margin-inline: auto;
}

.basecamp-status-item small {
  display: block;
  margin-top: 4px;
  margin-inline: auto;
  color: #f5cf7a;
  font-weight: 700;
}

.status-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 18px);
  z-index: 25;
  width: min(360px, calc(100vw - 34px));
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 190ms ease,
    transform 190ms ease;
}

.basecamp-status-item:hover .status-popover,
.basecamp-status-item:focus-visible .status-popover,
.basecamp-status-item:focus-within .status-popover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.verse-popover {
  min-height: 180px;
  padding: 22px 24px;
  color: var(--cream);
  border: 1px solid rgba(245, 207, 122, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(13, 36, 31, 0.76), rgba(13, 36, 31, 0.48));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 234, 0.16),
    0 24px 70px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
}

.verse-entry {
  position: absolute;
  inset: 22px 24px;
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--cream);
  opacity: 0;
  animation: verseFade 12s ease-in-out infinite;
}

.verse-entry:nth-child(2) {
  animation-delay: 4s;
}

.verse-entry:nth-child(3) {
  animation-delay: 8s;
}

.verse-popover span {
  display: block;
  color: #f5cf7a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.verse-popover p {
  margin: 0;
  color: rgba(255, 248, 234, 0.95);
  font-size: 0.95rem;
  line-height: 1.5;
}

.verse-popover cite {
  color: rgba(245, 207, 122, 0.9);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes verseFade {
  0%,
  27% {
    opacity: 1;
  }

  35%,
  100% {
    opacity: 0;
  }
}

.image-popover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(245, 207, 122, 0.32);
  border-radius: 16px;
  background: rgba(13, 36, 31, 0.82);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.42);
}

.image-popover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: statusImageFade 9s ease-in-out infinite;
  animation-play-state: paused;
}

.image-popover img:nth-child(2) {
  animation-delay: 3s;
}

.image-popover img:nth-child(3) {
  animation-delay: 6s;
}

.basecamp-status-item:hover .image-popover img,
.basecamp-status-item:focus-visible .image-popover img,
.basecamp-status-item:focus-within .image-popover img {
  animation-play-state: running;
}

@keyframes statusImageFade {
  0%,
  28% {
    opacity: 1;
  }

  36%,
  100% {
    opacity: 0;
  }
}

.training-scene {
  grid-template-columns: minmax(330px, 0.37fr) minmax(0, 0.63fr);
  align-items: stretch;
  background: #fff8ea;
  overflow: hidden;
}

.training-story {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  padding: clamp(42px, 5.5vw, 78px);
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.98), rgba(255, 248, 234, 0.9)),
    radial-gradient(circle at 22% 68%, rgba(194, 137, 55, 0.12), transparent 15rem);
  box-shadow: 28px 0 60px rgba(255, 248, 234, 0.72);
}

.training-story::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    repeating-radial-gradient(circle at 20% 20%, transparent 0 13px, rgba(38, 63, 52, 0.14) 14px 15px),
    repeating-radial-gradient(circle at 80% 72%, transparent 0 18px, rgba(38, 63, 52, 0.1) 19px 20px);
  pointer-events: none;
}

.training-story > * {
  position: relative;
  z-index: 1;
}

.training-story h2 {
  max-width: 9.5ch;
  margin-bottom: 16px;
}

.training-story > p:not(.eyebrow) {
  max-width: 34ch;
  color: rgba(13, 36, 31, 0.82);
}

.map-note {
  position: relative;
  max-width: 260px;
  margin-top: 34px;
  padding: 22px 22px 22px 74px;
  border: 1px solid rgba(194, 137, 55, 0.26);
  border-radius: 12px;
  background: rgba(255, 248, 234, 0.72);
  box-shadow: 0 18px 42px rgba(57, 41, 19, 0.12);
}

.map-note strong,
.map-note span:not(.map-pin) {
  display: block;
}

.map-note strong {
  color: var(--pine-dark);
  line-height: 1.25;
}

.map-note span:not(.map-pin) {
  margin-top: 14px;
  color: rgba(13, 36, 31, 0.78);
  line-height: 1.55;
}

.map-pin {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 32px;
  height: 32px;
  color: var(--pine);
}

.map-pin svg,
.story-stop svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.storyboard-map {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.46) 0%, rgba(255, 248, 234, 0.16) 28%, rgba(13, 36, 31, 0.02) 100%),
    url(assets/mountain-trail-hero.webp) 64% center / cover;
}

.storyboard-map::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 32%;
  background: linear-gradient(90deg, rgba(255, 248, 234, 0.94), rgba(255, 248, 234, 0.74) 48%, rgba(255, 248, 234, 0));
  pointer-events: none;
}

.storyboard-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 77% 42%, rgba(255, 248, 234, 0.03), rgba(13, 36, 31, 0.2) 82%),
    linear-gradient(180deg, rgba(13, 36, 31, 0.04), rgba(13, 36, 31, 0.18));
  pointer-events: none;
}

.story-route {
  position: absolute;
  inset: 8% 8% 8% 7%;
  z-index: 2;
  width: 85%;
  height: 84%;
  overflow: visible;
}

.story-route path {
  fill: none;
  stroke: rgba(245, 207, 122, 0.9);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 18 20;
  filter: drop-shadow(0 3px 8px rgba(38, 26, 10, 0.22));
}

.story-stop {
  position: absolute;
  z-index: 3;
  width: min(330px, 38%);
  min-height: 126px;
  padding: 20px 24px 20px 76px;
  border: 1px solid rgba(94, 72, 35, 0.22);
  border-radius: 12px;
  background: rgba(255, 248, 234, 0.88);
  box-shadow: 0 22px 58px rgba(9, 24, 22, 0.25);
  backdrop-filter: blur(5px);
}

.story-stop span {
  position: absolute;
  left: -32px;
  top: 26px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 14px;
  color: #f5cf7a;
  background: radial-gradient(circle at 45% 30%, rgba(245, 207, 122, 0.12), transparent 60%), var(--pine);
  border: 5px solid rgba(245, 207, 122, 0.92);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(9, 24, 22, 0.28);
}

.story-stop h3 {
  margin: 0 0 8px;
  color: var(--pine-dark);
  font-size: clamp(1.2rem, 1.9vw, 1.8rem);
  line-height: 1.02;
}

.story-stop p {
  margin: 0;
  color: rgba(13, 36, 31, 0.82);
  font-size: 0.98rem;
  line-height: 1.42;
}

.story-stop-one {
  top: 8%;
  right: 10%;
}

.story-stop-two {
  top: 39%;
  right: 22%;
}

.story-stop-three {
  left: 11%;
  bottom: 10%;
}
.mission-scene {
  align-content: center;
  gap: 34px;
  padding: clamp(54px, 6vw, 92px) clamp(34px, 5vw, 70px) clamp(34px, 4vw, 64px);
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(13, 36, 31, 0.76), rgba(13, 36, 31, 0.9)),
    url(assets/mountain-trail-hero.webp) center / cover;
  overflow: hidden;
}

.mission-title {
  position: relative;
  z-index: 8;
  margin-bottom: 8px;
  text-align: center;
}

.mission-title h2,
.mission-title p {
  color: var(--cream);
}

.wide-heartbeat {
  position: absolute;
  left: 0;
  right: 0;
  top: 57%;
  z-index: 8;
  width: 100vw;
  height: 210px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.66;
  mix-blend-mode: screen;
}

.heartbeat-ghost,
.heartbeat-trail,
.heartbeat-white {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.heartbeat-ghost {
  opacity: 0;
  stroke: rgba(245, 207, 122, 0);
  stroke-width: 1;
}

.heartbeat-trail {
  filter: url(styles.css);
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 5.4;
}

.heartbeat-white {
  filter: url(styles.css);
  stroke: rgba(255, 255, 255, 0.74);
  stroke-width: 1.85;
}

.mission-card-row {
  position: relative;
  z-index: auto;
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  padding-top: 48px;
  margin-top: 4px;
  margin-inline: auto;
}

.mission-photo-card {
  position: relative;
  min-width: 0;
  min-height: 392px;
  display: grid;
  align-content: start;
  overflow: visible;
  border: 1px solid rgba(245, 207, 122, 0.32);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(13, 36, 31, 0.02), rgba(13, 36, 31, 0.2)),
    var(--image) center / cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.mission-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(13, 36, 31, 0.08), transparent 36%),
    linear-gradient(0deg, rgba(13, 36, 31, 0.24), transparent 42%);
  pointer-events: none;
}

.mission-photo-card:hover,
.mission-photo-card:focus-visible {
  z-index: 9;
  transform: translateY(-6px);
  border-color: rgba(245, 207, 122, 0.58);
  box-shadow: 0 32px 84px rgba(0, 0, 0, 0.38);
}

.mission-icon {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 11;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  color: #f5cf7a;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 35%, rgba(245, 207, 122, 0.13), transparent 56%),
    rgba(13, 36, 31, 0.78);
  font-weight: 900;
  box-shadow:
    0 0 0 8px rgba(245, 207, 122, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.24);
}

.mission-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-card-label {
  position: absolute;
  left: 50%;
  top: 50px;
  z-index: 11;
  padding: 6px 13px;
  transform: translateX(-50%);
  color: #f5cf7a;
  background: rgba(13, 36, 31, 0.7);
  border: 1px solid rgba(245, 207, 122, 0.26);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.mission-text {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 12;
  width: min(300px, calc(100% - 36px));
  min-height: 0;
  padding: 18px 20px;
  color: var(--pine-dark);
  background: rgba(255, 248, 234, 0.94);
  border: 1px solid rgba(180, 125, 49, 0.26);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translate(-50%, 18px) scale(0.96);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  pointer-events: none;
}

.mission-text h3,
.mission-text p {
  color: var(--pine-dark);
}

.mission-text h3 {
  margin-bottom: 8px;
}

.mission-text p {
  margin: 0;
  font-size: 0.95rem;
}

.mission-photo-card:hover .mission-text,
.mission-photo-card:focus-visible .mission-text,
.mission-photo-card:focus-within .mission-text {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.mission-verse {
  position: relative;
  z-index: 8;
  display: block;
  max-width: 880px;
  margin-inline: auto;
  padding-left: 0;
  border-left: 0;
  text-align: center;
  color: #f5cf7a;
  text-decoration-color: rgba(245, 207, 122, 0.42);
  text-underline-offset: 0.25em;
}

.mission-verse:hover {
  color: #fff8df;
  text-decoration-color: currentColor;
}

.scripture-notice {
  position: relative;
  z-index: 8;
  max-width: 840px;
  margin: 16px auto 0;
  color: rgba(255, 248, 234, 0.68);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.videos-scene {
  grid-template-columns: minmax(320px, 0.35fr) minmax(0, 0.65fr);
  gap: 32px;
  align-items: center;
  padding: clamp(34px, 5vw, 70px);
  background:
    radial-gradient(circle at 70% 20%, rgba(242, 184, 75, 0.16), transparent 22rem),
    linear-gradient(180deg, var(--cream), #eef3e7);
}

.video-copy h2 {
  max-width: 11ch;
}

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

.video-launch-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  color: var(--cream);
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(13, 36, 31, 0.02), rgba(13, 36, 31, 0.82)),
    var(--thumb) center / cover;
  box-shadow: 0 22px 60px var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.video-launch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(9, 24, 22, 0.3);
}

.video-launch-card.featured {
  grid-row: span 2;
  min-height: 540px;
}

.video-launch-card strong {
  max-width: 12ch;
  font-size: 2rem;
  line-height: 1;
}

.video-launch-card small {
  color: #f5cf7a;
  font-weight: 900;
}

.play-badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  color: var(--pine-dark);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 0 0 12px rgba(242, 184, 75, 0.18);
}

.give-scene {
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.52fr);
  gap: 34px;
  align-items: center;
  padding: clamp(34px, 5vw, 70px);
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.18), rgba(13, 36, 31, 0.72)),
    url(assets/mountain-trail-hero.webp) center / cover;
}

.give-copy {
  color: var(--cream);
}

.give-copy h2,
.give-copy p {
  color: var(--cream);
}

.scene-donate-panel {
  max-width: 620px;
  justify-self: end;
}

@media (max-width: 920px) {
  .scene-site {
    height: auto;
    overflow: auto;
  }

  .scene-header {
    position: sticky;
  }

  .scene-shell {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .scene-panel {
    position: relative;
    inset: auto;
    display: none;
    min-height: auto;
  }

  .scene-panel.is-active {
    display: grid;
  }

  .basecamp-scene,
  .training-scene,
  .videos-scene,
  .give-scene,
  .mission-card-row,
  .video-launch-grid {
    grid-template-columns: 1fr;
  }

  .basecamp-status {
    position: relative;
    grid-template-columns: 1fr;
    margin: 30px -18px -18px;
  }

  .storyboard-map {
    min-height: 760px;
  }

  .story-stop {
    width: min(330px, 78%);
  }

  .mission-scene {
    padding-block: 42px;
  }

  .wide-heartbeat {
    top: 46%;
  }

  .mission-card-row {
    width: min(420px, 100%);
    gap: 52px;
  }

  .mission-photo-card {
    min-height: 340px;
  }

  .video-launch-card.featured {
    min-height: 320px;
  }
}
/* Final Training Path storyboard tuning */
.scene-header {
  min-height: 64px;
  padding: 10px clamp(22px, 5vw, 72px);
  color: var(--pine-dark);
  background: rgba(255, 248, 234, 0.96);
  border-bottom: 1px solid rgba(23, 57, 47, 0.14);
  box-shadow: 0 2px 16px rgba(13, 36, 31, 0.08);
}

.scene-header .brand strong {
  color: var(--pine-dark);
}

.scene-header .brand small {
  color: #b47d31;
}

.scene-header .main-nav button {
  color: var(--pine-dark);
  background: transparent;
  border-radius: 0;
  padding: 9px 10px 7px;
  font-size: 0.78rem;
}

.scene-header .main-nav button:hover,
.scene-header .main-nav button.is-active {
  color: #9f6f28;
  background: transparent;
  box-shadow: inset 0 -2px 0 #c28937;
}

.scene-header .main-nav .nav-donate {
  color: var(--pine-dark);
  background: var(--gold);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: none;
}

.scene-shell {
  padding-top: 64px;
}

.scene-panel {
  inset: 64px 0 0;
  min-height: calc(100vh - 64px);
}

.training-scene {
  grid-template-columns: minmax(360px, 0.38fr) minmax(0, 0.62fr);
  background: #fff8ea;
}

.training-story {
  align-content: start;
  padding: clamp(118px, 22vh, 230px) clamp(34px, 4.7vw, 78px) clamp(48px, 7vh, 96px);
  box-shadow: 42px 0 72px rgba(255, 248, 234, 0.78);
}

.training-story h2 {
  max-width: 8.6ch;
  margin: 0 0 16px;
  color: var(--pine-dark);
  font-size: clamp(3rem, 4.4vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.training-story > p:not(.eyebrow) {
  max-width: 245px;
  font-size: 0.98rem;
  line-height: 1.52;
}

.training-story .eyebrow.dark {
  margin-bottom: 18px;
  color: #9f6f28;
  letter-spacing: 0.18em;
}

.map-note {
  max-width: 260px;
  margin-top: clamp(44px, 8vh, 82px);
  padding: 22px 22px 22px 74px;
  border-radius: 12px;
  background: rgba(255, 248, 234, 0.7);
  box-shadow: 0 16px 36px rgba(13, 36, 31, 0.08);
}

.storyboard-map {
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.68) 0%, rgba(255, 248, 234, 0.34) 20%, rgba(255, 248, 234, 0.02) 42%),
    url(assets/mountain-trail-hero.webp) 66% center / cover;
}

.storyboard-map::before {
  width: 34%;
  background: linear-gradient(90deg, rgba(255, 248, 234, 0.98), rgba(255, 248, 234, 0.72) 54%, rgba(255, 248, 234, 0));
}

.storyboard-map::after {
  background: linear-gradient(180deg, rgba(13, 36, 31, 0.02), rgba(13, 36, 31, 0.12));
}

.story-route {
  inset: 13% 10% 12% 9%;
  width: 78%;
  height: 76%;
}

.story-route path {
  stroke-width: 7.5;
  stroke-dasharray: 16 18;
  filter: drop-shadow(0 3px 7px rgba(38, 26, 10, 0.2));
}

.story-stop {
  width: min(292px, 34%);
  min-height: 108px;
  padding: 18px 20px 18px 66px;
  border-radius: 10px;
  background: rgba(255, 248, 234, 0.88);
  box-shadow: 0 18px 42px rgba(9, 24, 22, 0.2);
}

.story-stop span {
  left: -28px;
  top: 24px;
  width: 56px;
  height: 56px;
  padding: 13px;
  border-width: 4px;
}

.story-stop h3 {
  max-width: 10ch;
  margin-bottom: 8px;
  font-size: clamp(1.34rem, 1.55vw, 1.72rem);
  line-height: 0.96;
}

.story-stop p {
  font-size: 0.86rem;
  line-height: 1.38;
}

.story-stop-one {
  top: 7.8%;
  right: 12%;
}

.story-stop-two {
  top: 39%;
  right: 24%;
}

.story-stop-three {
  left: 12.5%;
  bottom: 10%;
}

@media (max-width: 920px) {
  .scene-header {
    position: sticky;
  }

  .scene-shell {
    padding-top: 0;
  }

  .scene-panel {
    inset: auto;
    min-height: auto;
  }

  .training-story {
    padding: 48px 26px;
  }

  .storyboard-map {
    min-height: 720px;
  }

  .story-stop {
    width: min(310px, 78%);
  }
}
/* Training valley page final composition */
.training-scene {
  grid-template-columns: minmax(360px, 0.37fr) minmax(0, 0.63fr);
  background: #fff8ea;
}

.training-story {
  align-content: start;
  padding: clamp(72px, 15vh, 150px) clamp(34px, 4.8vw, 78px) clamp(44px, 6vh, 78px);
  box-shadow: 52px 0 92px rgba(255, 248, 234, 0.86);
}

.training-story .eyebrow.dark {
  margin-bottom: 18px;
  color: #9f6f28;
  letter-spacing: 0.2em;
}

.training-story h2 {
  max-width: 9ch;
  margin: 0 0 18px;
  color: var(--pine-dark);
  font-size: clamp(3.6rem, 5.8vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.training-story > p:not(.eyebrow) {
  max-width: 270px;
  color: rgba(13, 36, 31, 0.78);
  font-size: 1.05rem;
  line-height: 1.5;
}

.map-note {
  max-width: 260px;
  margin-top: clamp(36px, 7vh, 72px);
}

.storyboard-map {
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.72) 0%, rgba(255, 248, 234, 0.38) 20%, rgba(255, 248, 234, 0.03) 44%),
    url(assets/training-valley-path.webp) 50% center / cover;
}

.storyboard-map::before {
  width: 33%;
  background: linear-gradient(90deg, rgba(255, 248, 234, 0.98), rgba(255, 248, 234, 0.78) 52%, rgba(255, 248, 234, 0));
}

.storyboard-map::after {
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(13, 36, 31, 0.03), rgba(13, 36, 31, 0.1));
}

.story-route {
  inset: 10% 37% 7% 5%;
  width: 48%;
  height: 82%;
}

.story-route path {
  stroke-width: 8;
  stroke-dasharray: 17 19;
  stroke: rgba(245, 207, 122, 0.92);
  filter: drop-shadow(0 3px 7px rgba(38, 26, 10, 0.24));
}

.story-stop {
  right: clamp(44px, 6vw, 98px);
  left: auto;
  width: min(330px, 31%);
  min-height: 116px;
  padding: 18px 22px 18px 72px;
  border-radius: 12px;
  background: rgba(255, 248, 234, 0.9);
  box-shadow: 0 18px 44px rgba(9, 24, 22, 0.22);
}

.story-stop span {
  left: -29px;
  top: 25px;
  width: 58px;
  height: 58px;
  border-width: 4px;
}

.story-stop h3 {
  max-width: 11ch;
  font-size: clamp(1.38rem, 1.7vw, 1.92rem);
  line-height: 0.98;
}

.story-stop p {
  font-size: 0.88rem;
  line-height: 1.36;
}

.story-stop-one {
  top: 11%;
}

.story-stop-two {
  top: 39%;
}

.story-stop-three {
  bottom: 12%;
}

@media (max-width: 920px) {
  .training-story h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .story-route {
    inset: 12% 18% 12% 4%;
    width: 58%;
    height: 76%;
  }

  .story-stop {
    right: 22px;
    width: min(310px, 62%);
  }
}
/* Training path pin connector cleanup */
.storyboard-map {
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.72) 0%, rgba(255, 248, 234, 0.36) 20%, rgba(255, 248, 234, 0.02) 44%),
    url(assets/training-valley-path.webp) 42% center / cover;
}

.story-route.story-pins {
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.story-route.story-pins .pin-line {
  stroke: rgba(255, 248, 234, 0.78);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: none;
  filter: drop-shadow(0 1px 4px rgba(13, 36, 31, 0.45));
}

.story-route.story-pins .push-pin circle {
  fill: #f5cf7a;
  stroke: rgba(13, 36, 31, 0.86);
  stroke-width: 4;
  filter: drop-shadow(0 3px 8px rgba(13, 36, 31, 0.38));
}

.story-route.story-pins .push-pin path {
  fill: none;
  stroke: rgba(13, 36, 31, 0.82);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: none;
  filter: none;
}

.story-stop {
  z-index: 4;
}

.story-stop-one,
.story-stop-two,
.story-stop-three {
  right: clamp(44px, 5.8vw, 92px);
}

@media (max-width: 920px) {
  .story-route.story-pins {
    display: none;
  }
}
/* Training path realistic push pins */
.story-route.story-pins .pin-line {
  stroke: rgba(255, 248, 234, 0.82);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-dasharray: none;
  filter: drop-shadow(0 1px 3px rgba(13, 36, 31, 0.48));
}

.story-route.story-pins .push-pin {
  transform-box: fill-box;
  transform-origin: center;
  filter: drop-shadow(0 4px 7px rgba(13, 36, 31, 0.42));
}

.story-route.story-pins .pin-head {
  fill: url(styles.css);
  stroke: rgba(89, 63, 23, 0.9);
  stroke-width: 1.3;
}

.story-route.story-pins .pin-highlight {
  fill: rgba(255, 255, 255, 0.58);
  stroke: none;
}

.story-route.story-pins .pin-needle {
  fill: url(styles.css);
  stroke: rgba(34, 39, 34, 0.62);
  stroke-width: 0.7;
}

.story-route.story-pins .pin-shadow {
  fill: rgba(13, 36, 31, 0.34);
  stroke: none;
}
/* Training path PNG push pins */
.story-route.story-pins .pin-line {
  stroke: rgba(255, 248, 234, 0.84);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: none;
  filter: drop-shadow(0 1px 3px rgba(13, 36, 31, 0.48));
}

.story-route.story-pins .push-pin-img {
  overflow: visible;
  filter: drop-shadow(0 7px 9px rgba(13, 36, 31, 0.42));
  transform-box: fill-box;
  transform-origin: 50% 80%;
}

.story-route.story-pins .push-pin-one {
  transform: rotate(-10deg) scale(0.86);
}

.story-route.story-pins .push-pin-two {
  transform: rotate(7deg) scale(0.82);
}

.story-route.story-pins .push-pin-three {
  transform: rotate(-5deg) scale(0.84);
}
/* Training path exact pin-tip alignment */
.story-route.story-pins .push-pin-img {
  filter: drop-shadow(0 5px 7px rgba(13, 36, 31, 0.42));
  transform-box: fill-box;
  transform-origin: 50% 100%;
}

.story-route.story-pins .push-pin-one {
  transform: rotate(-8deg);
}

.story-route.story-pins .push-pin-two {
  transform: rotate(5deg);
}

.story-route.story-pins .push-pin-three {
  transform: rotate(-4deg);
}
/* Training path simplified connector cards */
.story-route.story-pins {
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.story-route.story-pins .pin-line {
  stroke: rgba(255, 248, 234, 0.9);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-dasharray: none;
  filter: drop-shadow(0 1px 4px rgba(13, 36, 31, 0.55));
}

.story-route.story-pins .push-pin-img,
.story-route.story-pins .push-pin,
.story-route.story-pins .pin-head,
.story-route.story-pins .pin-needle,
.story-route.story-pins .pin-highlight,
.story-route.story-pins .pin-shadow {
  display: none;
}

.story-stop {
  right: clamp(46px, 5vw, 88px);
  left: auto;
  width: min(495px, 42%);
  min-height: 174px;
  padding: 28px 34px 28px 92px;
  border-radius: 14px;
  background: rgba(255, 248, 234, 0.92);
  box-shadow: 0 24px 58px rgba(9, 24, 22, 0.24);
}

.story-stop span {
  left: -32px;
  top: 36px;
  width: 72px;
  height: 72px;
  padding: 17px;
  border-width: 5px;
}

.story-stop h3 {
  max-width: 12ch;
  margin-bottom: 12px;
  font-size: clamp(2rem, 2.55vw, 2.85rem);
  line-height: 0.96;
}

.story-stop p {
  font-size: 1.1rem;
  line-height: 1.42;
}

.story-stop-one {
  top: 8%;
  bottom: auto;
}

.story-stop-two {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.story-stop-three {
  top: auto;
  bottom: 8%;
}

@media (max-width: 920px) {
  .story-route.story-pins {
    display: none;
  }

  .story-stop {
    width: min(430px, 82%);
    min-height: 150px;
  }
}

/* Training path lower-stack card tuning */
.story-route.story-pins {
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.story-route.story-pins .pin-line {
  stroke: rgba(255, 248, 234, 0.84);
  stroke-width: 1.08;
  stroke-linecap: round;
  stroke-dasharray: none;
  filter: drop-shadow(0 1px 3px rgba(12, 35, 30, 0.42));
}

.story-stop {
  right: clamp(54px, 5vw, 96px);
  width: min(360px, 32%);
  min-height: 112px;
  padding: 20px 24px 18px 72px;
}

.story-stop span {
  display: grid;
}

.story-stop h3 {
  max-width: 13ch;
  font-size: clamp(1.35rem, 1.65vw, 1.9rem);
  line-height: 1;
}

.story-stop p {
  font-size: 0.9rem;
  line-height: 1.35;
}

.story-stop-one,
.story-stop-two,
.story-stop-three {
  bottom: auto;
  transform: translateY(-50%);
}

.story-stop-one {
  top: 32%;
}

.story-stop-two {
  top: 52%;
}

.story-stop-three {
  top: 72%;
}

/* Training path stable scaling alignment */
.storyboard-map {
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.72) 0%, rgba(255, 248, 234, 0.36) 20%, rgba(255, 248, 234, 0.02) 44%),
    url(assets/training-valley-path.webp) 0 0 / 100% 100% no-repeat;
}

.story-route.story-pins {
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Training path card-line lock */
.story-stop {
  right: 5.25%;
  width: 27.5%;
  min-height: clamp(108px, 11.5vh, 142px);
  padding: clamp(16px, 1.8vw, 22px) clamp(18px, 2vw, 26px) clamp(16px, 1.8vw, 22px) clamp(62px, 5.8vw, 78px);
}

.story-stop span {
  left: clamp(-34px, -2.4vw, -24px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(54px, 4.8vw, 68px);
  height: clamp(54px, 4.8vw, 68px);
  padding: clamp(13px, 1.2vw, 17px);
}

.story-stop h3 {
  font-size: clamp(1.25rem, 1.58vw, 1.75rem);
}

.story-stop p {
  font-size: clamp(0.78rem, 0.82vw, 0.92rem);
}

.story-stop-one,
.story-stop-two,
.story-stop-three {
  bottom: auto;
  transform: translateY(-50%);
}

.story-stop-one {
  top: 32%;
}

.story-stop-two {
  top: 52%;
}

.story-stop-three {
  top: 72%;
}

/* Sponsor page mockup composition */
.give-scene {
  position: absolute;
  overflow: hidden;
  grid-template-columns: minmax(320px, 0.48fr) minmax(430px, 0.52fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(54px, 7vw, 92px) clamp(54px, 7vw, 100px) 0;
  background: linear-gradient(180deg, #fff8ea 0%, #fff6e6 48%, #17342a 48%, #17342a 100%);
}

.give-scene::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 92px;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.08), rgba(13, 36, 31, 0.42)),
    url(assets/mountain-trail-hero.webp) center 58% / cover no-repeat;
  z-index: 0;
}

.give-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 207, 122, 0.12), transparent 30%),
    linear-gradient(180deg, transparent 42%, rgba(255, 248, 234, 0.18) 48%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.give-copy,
.scene-donate-panel,
.give-mountain-band,
.give-footer-strip {
  position: relative;
  z-index: 1;
}

.give-copy {
  align-self: start;
  color: var(--pine-dark);
}

.give-copy h2 {
  max-width: 600px;
  margin: 0 0 18px;
  color: var(--pine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 3.5vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.give-copy p {
  max-width: 470px;
  color: rgba(13, 36, 31, 0.78);
  font-size: 1.05rem;
  line-height: 1.55;
}

.scene-donate-panel {
  width: min(720px, 100%);
  max-width: none;
  justify-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.scene-donate-panel .amount-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.scene-donate-panel .amount-grid button {
  position: relative;
  min-height: 142px;
  padding: 20px 14px 16px;
  border: 1px solid rgba(184, 132, 49, 0.34);
  border-radius: 8px;
  color: var(--pine-dark);
  background: rgba(255, 248, 234, 0.78);
  box-shadow: 0 18px 42px rgba(94, 67, 24, 0.12);
  text-align: center;
}

.scene-donate-panel .amount-grid button strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  font-weight: 500;
}

.scene-donate-panel .amount-grid button span {
  display: block;
  color: rgba(13, 36, 31, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.28;
}

.scene-donate-panel .amount-grid button em {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 6px 8px;
  border-radius: 8px 8px 0 0;
  color: #f8dd9b;
  background: #123428;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-donate-panel .amount-grid button.is-featured,
.scene-donate-panel .amount-grid button.is-selected,
.scene-donate-panel .amount-grid button:hover {
  color: #fff8ea;
  background: #123428;
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(18, 52, 40, 0.28);
}

.scene-donate-panel .amount-grid button.is-featured strong,
.scene-donate-panel .amount-grid button.is-selected strong,
.scene-donate-panel .amount-grid button:hover strong,
.scene-donate-panel .amount-grid button.is-featured span,
.scene-donate-panel .amount-grid button.is-selected span,
.scene-donate-panel .amount-grid button:hover span {
  color: #fff8ea;
}

.scene-donate-panel .custom-amount {
  max-width: 330px;
  margin: 0 0 14px auto;
  color: rgba(13, 36, 31, 0.78);
}

.scene-donate-panel .custom-amount input {
  background: rgba(255, 248, 234, 0.78);
}

.scene-donate-panel .donation-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  margin: 0 0 16px;
  color: rgba(13, 36, 31, 0.76);
  font-weight: 800;
}

.scene-donate-panel .donation-note::before {
  content: "\1F512";
  font-size: 0.95rem;
}

.scene-donate-panel .button.primary {
  width: min(390px, 100%);
  margin-left: auto;
  justify-content: center;
  background: var(--gold);
  color: var(--pine-dark);
}

.give-mountain-band {
  grid-column: 1 / -1;
  align-self: end;
  min-height: clamp(260px, 35vh, 410px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(36px, 6vh, 72px) clamp(18px, 2vw, 34px);
  color: #fff8ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.1vw, 2.45rem);
  line-height: 1.18;
  text-shadow: 0 3px 20px rgba(8, 20, 17, 0.7);
}

.give-footer-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 calc(clamp(54px, 7vw, 100px) * -1);
  padding: 26px clamp(54px, 7vw, 100px);
  color: #fff8ea;
  background: rgba(18, 52, 40, 0.94);
  border-top: 1px solid rgba(245, 207, 122, 0.24);
}

.give-footer-strip article {
  padding: 0 28px;
  border-right: 1px solid rgba(245, 207, 122, 0.16);
}

.give-footer-strip article:last-child {
  border-right: 0;
}

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

.give-footer-strip strong {
  margin-bottom: 8px;
  color: #f5cf7a;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.give-footer-strip span {
  color: rgba(255, 248, 234, 0.82);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .give-scene {
    grid-template-columns: 1fr;
    padding: 34px 22px 0;
  }

  .scene-donate-panel .amount-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .give-footer-strip {
    grid-template-columns: 1fr;
    margin: 0 -22px;
    padding: 24px 22px;
  }

  .give-footer-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 207, 122, 0.16);
    padding: 16px 0;
  }
}

/* Sponsor page panel cleanup and hiker silhouette */
.give-scene {
  padding-top: clamp(42px, 5vw, 72px);
}

.scene-donate-panel {
  transform: translateY(-18px);
}

.scene-donate-panel .amount-grid {
  gap: 10px;
  margin-bottom: 10px;
}

.scene-donate-panel .amount-grid button {
  min-height: 118px;
  padding: 16px 12px 12px;
}

.scene-donate-panel .amount-grid button strong {
  margin-bottom: 6px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.scene-donate-panel .amount-grid button span {
  font-size: 0.74rem;
  line-height: 1.22;
}

.scene-donate-panel .amount-grid button em {
  padding: 5px 8px;
  font-size: 0.58rem;
}

.scene-donate-panel .custom-amount {
  max-width: 290px;
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.scene-donate-panel .custom-amount input {
  min-height: 38px;
  padding: 8px 12px;
}

.scene-donate-panel .donation-note {
  max-width: 610px;
  margin: 0 0 10px auto;
  font-size: 0.86rem;
  line-height: 1.28;
  text-align: right;
}

.scene-donate-panel .button.primary {
  min-height: 44px;
  padding: 12px 22px;
}

.give-mountain-band {
  position: relative;
}

.give-mountain-band::after {
  content: "";
  position: absolute;
  right: clamp(180px, 18vw, 330px);
  bottom: 0;
  width: clamp(58px, 5.2vw, 86px);
  height: clamp(146px, 13vw, 220px);
  background:
    radial-gradient(circle at 50% 8%, rgba(20, 18, 14, 0.92) 0 10%, transparent 11%),
    linear-gradient(96deg, transparent 0 38%, rgba(18, 17, 14, 0.92) 39% 58%, transparent 59%),
    linear-gradient(104deg, transparent 0 43%, rgba(18, 17, 14, 0.88) 44% 54%, transparent 55%),
    linear-gradient(70deg, transparent 0 45%, rgba(18, 17, 14, 0.86) 46% 53%, transparent 54%),
    linear-gradient(118deg, transparent 0 42%, rgba(18, 17, 14, 0.86) 43% 50%, transparent 51%);
  background-size: 100% 38%, 100% 58%, 100% 72%, 100% 100%, 100% 100%;
  background-position: center top, center 24%, center 36%, center bottom, center bottom;
  background-repeat: no-repeat;
  opacity: 0.72;
  filter: blur(0.1px) drop-shadow(0 16px 18px rgba(7, 15, 12, 0.42));
  transform: perspective(320px) rotateX(8deg) rotateZ(2deg);
  transform-origin: bottom center;
  pointer-events: none;
}

@media (max-width: 980px) {
  .scene-donate-panel {
    transform: none;
  }

  .give-mountain-band::after {
    right: 16%;
  }
}

/* Sponsor page text flow and real hiker silhouette */
.give-scene {
  grid-template-columns: minmax(520px, 0.52fr) minmax(620px, 0.48fr);
  grid-template-rows: minmax(420px, 48%) minmax(0, 1fr) auto;
}

.give-scene::before {
  bottom: 92px;
  height: 42%;
}

.give-copy h2 {
  max-width: 760px;
  font-size: clamp(3.25rem, 4.15vw, 5.55rem);
  line-height: 0.96;
}

.give-copy p {
  max-width: 640px;
  margin-top: 18px;
  font-size: clamp(1rem, 1vw, 1.16rem);
}

.scene-donate-panel {
  align-self: start;
  transform: translateY(-10px);
}

.give-mountain-band {
  grid-column: 1 / -1;
  grid-row: 2;
  min-height: clamp(300px, 38vh, 440px);
}

.give-mountain-band::after {
  display: none;
}

.trail-hiker {
  position: absolute;
  right: clamp(220px, 23vw, 430px);
  bottom: clamp(12px, 1.5vw, 28px);
  width: clamp(46px, 4.2vw, 72px);
  height: auto;
  opacity: 0.78;
  filter: drop-shadow(0 18px 14px rgba(5, 13, 10, 0.34));
  transform: rotate(2deg);
  transform-origin: bottom center;
}

.trail-hiker .hiker-fill {
  fill: rgba(13, 24, 20, 0.86);
}

.trail-hiker .hiker-stick {
  fill: none;
  stroke: rgba(13, 24, 20, 0.78);
  stroke-width: 5;
  stroke-linecap: round;
}

@media (max-width: 1180px) {
  .give-scene {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .give-copy h2 {
    max-width: 680px;
    font-size: clamp(2.65rem, 7vw, 4.8rem);
  }

  .trail-hiker {
    right: 18%;
  }
}

/* Sponsor page mockup scene reset */
.give-scene {
  position: absolute;
  overflow: hidden;
  grid-template-columns: minmax(620px, 0.52fr) minmax(640px, 0.48fr);
  grid-template-rows: minmax(440px, 54%) minmax(0, 1fr) auto;
  gap: clamp(24px, 3.5vw, 58px);
  align-items: start;
  padding: clamp(58px, 7vw, 92px) clamp(62px, 7vw, 110px) 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.96) 0%, rgba(255, 248, 234, 0.92) 38%, rgba(255, 248, 234, 0.28) 52%, rgba(15, 39, 31, 0.14) 64%, rgba(13, 36, 31, 0.22) 100%),
    url(assets/mountain-trail-hero.webp) center bottom / cover no-repeat;
}

.give-scene::before,
.give-scene::after {
  display: none;
}

.give-copy,
.scene-donate-panel,
.give-mountain-band,
.give-footer-strip {
  position: relative;
  z-index: 1;
}

.give-copy {
  align-self: start;
  color: var(--pine-dark);
}

.give-copy h2 {
  max-width: 850px;
  margin: 0 0 18px;
  color: var(--pine-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.55rem, 4.55vw, 5.8rem);
  line-height: 0.93;
  letter-spacing: -0.035em;
}

.give-copy p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(13, 36, 31, 0.72);
  font-size: clamp(1rem, 1vw, 1.16rem);
  line-height: 1.45;
}

.scene-donate-panel {
  width: min(710px, 100%);
  max-width: none;
  justify-self: end;
  align-self: start;
  transform: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.scene-donate-panel .amount-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.scene-donate-panel .amount-grid button {
  min-height: 128px;
  padding: 20px 12px 14px;
  border: 1px solid rgba(184, 132, 49, 0.34);
  border-radius: 8px;
  color: var(--pine-dark);
  background: rgba(255, 248, 234, 0.78);
  box-shadow: 0 18px 42px rgba(94, 67, 24, 0.12);
  text-align: center;
}

.scene-donate-panel .amount-grid button strong {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.15vw, 2.35rem);
  font-weight: 500;
}

.scene-donate-panel .amount-grid button span {
  display: block;
  color: rgba(13, 36, 31, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.22;
}

.scene-donate-panel .amount-grid button.is-featured,
.scene-donate-panel .amount-grid button.is-selected,
.scene-donate-panel .amount-grid button:hover {
  color: #fff8ea;
  background: #123428;
}

.scene-donate-panel .amount-grid button.is-featured span,
.scene-donate-panel .amount-grid button.is-selected span,
.scene-donate-panel .amount-grid button:hover span,
.scene-donate-panel .amount-grid button.is-featured strong,
.scene-donate-panel .amount-grid button.is-selected strong,
.scene-donate-panel .amount-grid button:hover strong {
  color: #fff8ea;
}

.scene-donate-panel .custom-amount {
  max-width: 330px;
  margin: 0 0 12px auto;
  color: rgba(13, 36, 31, 0.75);
  font-size: 0.84rem;
}

.scene-donate-panel .custom-amount input {
  min-height: 42px;
  background: rgba(255, 248, 234, 0.72);
}

.scene-donate-panel .donation-note {
  max-width: 630px;
  margin: 0 0 16px auto;
  justify-content: flex-end;
  color: rgba(13, 36, 31, 0.72);
  font-size: 0.88rem;
  line-height: 1.28;
  text-align: right;
}

.scene-donate-panel .button.primary {
  width: min(390px, 100%);
  min-height: 48px;
  margin-left: auto;
  justify-content: center;
  background: var(--gold);
  color: var(--pine-dark);
}

.give-mountain-band {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  min-height: auto;
  display: flex;
  align-items: end;
  padding: 0 0 clamp(30px, 5vh, 62px) clamp(18px, 2vw, 34px);
  color: #fff8ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.25vw, 2.65rem);
  line-height: 1.14;
  text-shadow: 0 4px 22px rgba(7, 18, 15, 0.84);
}

.trail-hiker {
  display: none;
}

.give-footer-strip {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 calc(clamp(62px, 7vw, 110px) * -1);
  padding: 26px clamp(62px, 7vw, 110px);
  color: #fff8ea;
  background: rgba(18, 52, 40, 0.96);
  border-top: 1px solid rgba(245, 207, 122, 0.22);
}

@media (max-width: 1180px) {
  .give-scene {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    padding: 34px 22px 0;
  }

  .give-copy h2 {
    max-width: 760px;
    font-size: clamp(2.65rem, 7vw, 4.8rem);
  }

  .scene-donate-panel {
    justify-self: start;
  }

  .scene-donate-panel .amount-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .give-footer-strip {
    grid-template-columns: 1fr;
    margin: 0 -22px;
    padding: 24px 22px;
  }
}

/* Sponsor footer match Basecamp */
.give-footer-strip {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 calc(clamp(62px, 7vw, 110px) * -1);
  padding: 18px clamp(62px, 7vw, 110px);
  color: var(--cream);
  background: rgba(13, 36, 31, 0.88);
  border-top: 1px solid rgba(255, 248, 234, 0.14);
}

.give-footer-strip article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 54px;
  padding: 0 clamp(14px, 3vw, 44px);
  border-right: 1px solid rgba(255, 248, 234, 0.14);
  text-align: center;
}

.give-footer-strip article:last-child {
  border-right: 0;
}

.give-footer-strip strong {
  display: block;
  margin: 0 auto 4px;
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.give-footer-strip span {
  display: block;
  margin-inline: auto;
  color: #f5cf7a;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .give-footer-strip {
    grid-template-columns: 1fr;
    margin: 0 -22px;
    padding: 10px 22px;
  }

  .give-footer-strip article {
    min-height: 50px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 234, 0.14);
  }

  .give-footer-strip article:last-child {
    border-bottom: 0;
  }
}

/* Remove floating sponsor note lock */
.scene-donate-panel .donation-note::before {
  content: none;
  display: none;
}

/* Sponsor footer email link */
.give-footer-strip a {
  color: #f5cf7a;
  text-decoration-color: rgba(245, 207, 122, 0.42);
  text-underline-offset: 0.2em;
}

.give-footer-strip a:hover {
  color: #fff8ea;
  text-decoration-color: currentColor;
}

/* Basecamp contact footer item */
.basecamp-status {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.basecamp-status-item a {
  color: #f5cf7a;
  text-decoration-color: rgba(245, 207, 122, 0.42);
  text-underline-offset: 0.2em;
}

.basecamp-status-item a:hover {
  color: #fff8ea;
  text-decoration-color: currentColor;
}

.contact-status small {
  white-space: nowrap;
}

@media (max-width: 920px) {
  .basecamp-status {
    grid-template-columns: 1fr;
  }

  .contact-status small {
    white-space: normal;
  }
}

/* Dedicated mobile experience */
body.is-mobile-experience {
  height: auto;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #102b22;
}

body.is-mobile-experience .scene-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px 14px 10px;
}

body.is-mobile-experience .brand {
  justify-content: start;
}

body.is-mobile-experience .brand span:last-child {
  min-width: 0;
}

body.is-mobile-experience .brand strong {
  font-size: 0.9rem;
  line-height: 1.1;
}

body.is-mobile-experience .brand small {
  font-size: 0.68rem;
}

body.is-mobile-experience .main-nav {
  justify-content: start;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

body.is-mobile-experience .main-nav::-webkit-scrollbar {
  display: none;
}

body.is-mobile-experience .main-nav .scene-link {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(13, 36, 31, 0.08);
}

body.is-mobile-experience .scene-shell {
  height: auto;
  min-height: calc(100svh - 102px);
  overflow: visible;
}

body.is-mobile-experience .scene-panel {
  position: relative;
  inset: auto;
  display: none;
  min-height: calc(100svh - 102px);
  overflow: hidden;
}

body.is-mobile-experience .scene-panel.is-active {
  display: block;
}

body.is-mobile-experience .basecamp-scene {
  padding: clamp(34px, 9vw, 58px) 18px 0;
  background:
    linear-gradient(180deg, rgba(13, 36, 31, 0.18), rgba(13, 36, 31, 0.78)),
    url(assets/mountain-trail-hero-sign.webp) 62% center / cover no-repeat;
}

body.is-mobile-experience .basecamp-copy {
  max-width: 560px;
  margin: 0 auto;
  transform: none;
  text-align: left;
}

body.is-mobile-experience .basecamp-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 15vw, 5rem);
  line-height: 0.96;
}

body.is-mobile-experience .hero-actions {
  grid-template-columns: 1fr;
  max-width: 360px;
}

body.is-mobile-experience .basecamp-status {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  grid-template-columns: 1fr;
  margin: clamp(34px, 10vh, 90px) -18px 0;
}

body.is-mobile-experience .basecamp-status-item {
  min-height: 64px;
  padding: 14px 18px;
}

body.is-mobile-experience .status-popover {
  left: 50%;
  width: min(330px, calc(100vw - 36px));
}

body.is-mobile-experience .training-scene {
  display: none;
  background: #fff8ea;
}

body.is-mobile-experience .training-scene.is-active {
  display: block;
}

body.is-mobile-experience .training-story {
  min-height: auto;
  padding: 34px 22px 22px;
}

body.is-mobile-experience .training-story h2 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 17vw, 5.2rem);
}

body.is-mobile-experience .map-note {
  margin-top: 24px;
}

body.is-mobile-experience .storyboard-map {
  min-height: 620px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 180px 18px 24px;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.12), rgba(13, 36, 31, 0.42)),
    url(assets/training-valley-path.webp) center bottom / cover no-repeat;
}

body.is-mobile-experience .story-route.story-pins {
  display: none;
}

body.is-mobile-experience .story-stop {
  position: relative;
  inset: auto;
  width: auto;
  min-height: 108px;
  margin: 0;
  transform: none;
  padding: 18px 18px 18px 72px;
}

body.is-mobile-experience .story-stop span {
  left: 12px;
  width: 46px;
  height: 46px;
  padding: 11px;
}

body.is-mobile-experience .story-stop h3 {
  font-size: 1.35rem;
}

body.is-mobile-experience .mission-scene {
  display: none;
  min-height: auto;
  padding: 42px 18px 34px;
  overflow: hidden;
}

body.is-mobile-experience .mission-scene.is-active {
  display: block;
}

body.is-mobile-experience .mission-title h2 {
  font-size: clamp(2.4rem, 12vw, 4rem);
}

body.is-mobile-experience .wide-heartbeat {
  top: 42%;
  height: 110px;
}

body.is-mobile-experience .mission-card-row {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}

body.is-mobile-experience .mission-photo-card {
  min-height: 300px;
}

body.is-mobile-experience .mission-verse,
body.is-mobile-experience .scripture-notice {
  padding-inline: 6px;
}

body.is-mobile-experience .videos-scene {
  display: none;
  padding: 34px 18px;
}

body.is-mobile-experience .videos-scene.is-active {
  display: block;
}

body.is-mobile-experience .video-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.5rem, 12vw, 4rem);
}

body.is-mobile-experience .video-launch-grid {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

body.is-mobile-experience .video-launch-card,
body.is-mobile-experience .video-launch-card.featured {
  min-height: 260px;
  grid-row: auto;
}

body.is-mobile-experience .give-scene {
  display: none;
  min-height: auto;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  padding: 34px 18px 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 234, 0.97) 0%, rgba(255, 248, 234, 0.9) 38%, rgba(255, 248, 234, 0.2) 58%, rgba(13, 36, 31, 0.5) 100%),
    url(assets/mountain-trail-hero.webp) center bottom / cover no-repeat;
}

body.is-mobile-experience .give-scene.is-active {
  display: block;
}

body.is-mobile-experience .give-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 14vw, 4.6rem);
}

body.is-mobile-experience .give-copy p {
  max-width: 34rem;
}

body.is-mobile-experience .scene-donate-panel {
  width: auto;
  margin-top: 28px;
}

body.is-mobile-experience .scene-donate-panel .amount-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-mobile-experience .scene-donate-panel .amount-grid button {
  min-height: 112px;
}

body.is-mobile-experience .scene-donate-panel .custom-amount,
body.is-mobile-experience .scene-donate-panel .donation-note,
body.is-mobile-experience .scene-donate-panel .button.primary {
  width: 100%;
  max-width: none;
  margin-left: 0;
  text-align: left;
  justify-content: center;
}

body.is-mobile-experience .give-mountain-band {
  min-height: 280px;
  padding: 80px 0 30px;
  font-size: clamp(1.45rem, 7vw, 2.4rem);
}

body.is-mobile-experience .give-footer-strip {
  grid-template-columns: 1fr;
  margin: 0 -18px;
  padding: 0;
}

body.is-mobile-experience .give-footer-strip article {
  min-height: 62px;
  padding: 14px 18px;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 248, 234, 0.14);
}

body.is-mobile-experience .give-footer-strip article:last-child {
  border-bottom: 0;
}

/* Mobile touch refinements */
body.is-mobile-experience .scene-panel.is-active {
  overflow-y: visible;
}

body.is-mobile-experience .button,
body.is-mobile-experience .scene-link,
body.is-mobile-experience .amount-grid button,
body.is-mobile-experience .video-launch-card,
body.is-mobile-experience .mission-photo-card,
body.is-mobile-experience .basecamp-status-item {
  touch-action: manipulation;
}

body.is-mobile-experience .mission-photo-card .mission-popout {
  opacity: 1;
  transform: translate(-50%, -6px);
  pointer-events: none;
}

body.is-mobile-experience .mission-photo-card {
  padding-bottom: 86px;
}

body.is-mobile-experience .status-popover {
  position: static;
  transform: none;
  margin-top: 12px;
  opacity: 1;
  pointer-events: auto;
}

body.is-mobile-experience .basecamp-status-item:not(:focus-within) .status-popover {
  display: none;
}

body.is-mobile-experience .basecamp-status-item:focus-within .status-popover {
  display: block;
}

body.is-mobile-experience .hero-actions .button,
body.is-mobile-experience #donateButton {
  min-height: 48px;
}

body.is-mobile-experience .scene-donate-panel .donation-note {
  text-align: center;
}

body.is-mobile-experience .training-scene,
body.is-mobile-experience .give-scene,
body.is-mobile-experience .videos-scene,
body.is-mobile-experience .mission-scene,
body.is-mobile-experience .basecamp-scene {
  border-radius: 0;
}

