:root {
  --cyan: #08a7c4;
  --cyan-dark: #006f86;
  --yellow: #ffc528;
  --ink: #1e292d;
  --ink-soft: #3e4b4f;
  --paper: #ffffff;
  --mist: #f2f5f4;
  --line: #d8dfdf;
  --green: #24714f;
  --max-width: 1180px;
  --page-pad: 28px;
  --shadow: 0 12px 28px rgba(24, 43, 48, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 64px;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 700;
}

p {
  margin-bottom: 20px;
}

.shell {
  width: min(calc(100% - (2 * var(--page-pad))), var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: 92px;
}

.section--tight {
  padding-block: 62px;
}

.section--mist {
  background: var(--mist);
}

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

.section--dark .eyebrow {
  color: #8de7f4;
}

.section--dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading > :last-child {
  justify-self: end;
}

.section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.section-heading--single {
  display: block;
}

.section-heading--single > * {
  max-width: 690px;
}

.section-heading--single p {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--yellow);
  color: #172025;
}

.button--primary:hover {
  background: #ffd55f;
}

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

.button--dark:hover {
  background: #344448;
}

.button--ghost {
  border-color: currentColor;
  background: transparent;
}

.button--ghost:hover {
  background: rgba(8, 167, 196, 0.08);
}

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

.button--text {
  min-height: auto;
  padding: 0;
  color: var(--cyan-dark);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.announcement {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 7px var(--page-pad);
  background: var(--yellow);
  color: #182126;
  font-size: 14px;
  text-decoration: none;
}

.announcement__label {
  font-weight: 800;
}

.announcement__body {
  color: #3d4445;
}

.utility-bar {
  background: var(--cyan-dark);
  color: white;
  font-size: 13px;
  font-weight: 650;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-bar a,
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.utility-divider {
  width: 1px;
  height: 14px;
  margin-inline: 4px;
  background: rgba(255, 255, 255, 0.6);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bdf087;
  box-shadow: 0 0 0 3px rgba(189, 240, 135, 0.18);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(30, 41, 45, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 154px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 26px;
}

.desktop-nav__list {
  display: flex;
  align-items: stretch;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.desktop-nav__list li {
  display: flex;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--cyan);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-waiver {
  color: var(--cyan-dark);
  font-size: 14px;
}

.header-join {
  min-height: 42px;
  font-size: 14px;
}

.mobile-nav {
  display: none;
}

.mobile-nav__icon,
.mobile-nav__icon::before,
.mobile-nav__icon::after {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  content: "";
}

.mobile-nav__icon {
  position: relative;
}

.mobile-nav__icon::before {
  position: absolute;
  top: -6px;
}

.mobile-nav__icon::after {
  position: absolute;
  top: 6px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(690px, calc(100svh - 150px));
  align-items: end;
  overflow: hidden;
  background: #293235;
  color: white;
}

.hero::before,
.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 27, 30, 0.86) 0%, rgba(18, 27, 30, 0.54) 48%, rgba(18, 27, 30, 0.08) 78%),
    linear-gradient(0deg, rgba(18, 27, 30, 0.5), transparent 55%);
  content: "";
}

.hero__image,
.page-hero__image {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}

.hero__content {
  padding-block: 90px 88px;
}

.hero__content > div {
  max-width: 700px;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero p {
  max-width: 590px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #8de7f4;
}

.hero .button--ghost,
.page-hero .button--ghost {
  color: white;
}

.visit-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.visit-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.visit-fact {
  display: grid;
  min-height: 108px;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 20px 28px;
  text-decoration: none;
}

.visit-fact + .visit-fact {
  border-left: 1px solid var(--line);
}

.visit-fact svg {
  color: var(--cyan-dark);
}

.visit-fact__icon {
  display: grid !important;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan-dark) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.visit-fact span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.visit-fact strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}

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

.program-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}

.program-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 23, 26, 0.92), transparent 68%);
  content: "";
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.program-card:hover img {
  transform: scale(1.025);
}

.program-card__content {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.program-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

.program-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.program-card__title h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 72px;
}

.split-feature__media {
  position: relative;
}

.split-feature__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.split-feature__badge {
  position: absolute;
  right: -22px;
  bottom: 28px;
  width: 140px;
  padding: 16px;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 28px 0 32px;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: start;
}

.feature-list svg {
  margin-top: 3px;
  color: var(--cyan-dark);
}

.feature-list li > span {
  color: var(--cyan-dark);
  font-weight: 800;
}

.event-band {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 60px;
  align-items: center;
}

.event-date {
  display: grid;
  width: 176px;
  height: 176px;
  align-content: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  text-align: center;
}

.event-date strong {
  font-size: 44px;
  line-height: 1;
}

.event-date span {
  color: #8de7f4;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 470px;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.page-hero--compact {
  min-height: 300px;
  padding-block: 110px 56px;
}

.content-shell {
  max-width: 800px;
}

.content-shell > :first-child {
  margin-top: 0;
}

.page-hero__content {
  padding-block: 90px 72px;
}

.page-hero h1 {
  max-width: 740px;
  font-size: 58px;
}

.page-hero p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  counter-reset: visit-step;
}

.step {
  position: relative;
  padding-top: 26px;
  border-top: 3px solid var(--line);
  counter-increment: visit-step;
}

.step::before {
  position: absolute;
  top: -19px;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: white;
  content: counter(visit-step);
  font-size: 14px;
  font-weight: 800;
}

.step p {
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.price-snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.price-snapshot > div {
  padding: 28px;
}

.price-snapshot > div + div {
  border-left: 1px solid var(--line);
}

.price-snapshot span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.price-snapshot strong {
  font-size: 32px;
}

.climb-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}

.climb-type {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding-block: 30px;
  border-top: 1px solid var(--line);
}

.climb-type__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 167, 196, 0.12);
  color: var(--cyan-dark);
}

.climb-type p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.36fr 0.64fr;
  gap: 72px;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  font-size: 18px;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list p {
  max-width: 680px;
  padding-right: 46px;
  margin-bottom: 24px;
  color: var(--ink-soft);
}

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

.pricing-card {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.pricing-card--featured {
  border: 2px solid var(--cyan);
  box-shadow: var(--shadow);
}

.pricing-card__tag {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 6px 10px;
  border-radius: 0 0 4px 4px;
  background: var(--cyan);
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card h2 {
  margin-bottom: 34px;
  font-size: 21px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.pricing-card__price strong {
  font-size: 48px;
  line-height: 1;
}

.pricing-card__price span,
.pricing-card__note {
  color: var(--ink-soft);
  font-size: 14px;
}

.pricing-card__note {
  flex: 1;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 54px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.benefit-grid li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}

.benefit-grid svg {
  margin-top: 2px;
  color: var(--green);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
}

.rate-table th,
.rate-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.rate-table th {
  color: var(--ink-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.rate-table td:nth-child(n + 2),
.rate-table th:nth-child(n + 2) {
  text-align: right;
}

.rate-table strong {
  font-size: 19px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 46px 50px;
  border-radius: 6px;
  background: var(--cyan);
  color: white;
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: 32px;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.proof-item {
  min-width: 0;
  padding: 28px 24px;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 25px;
  line-height: 1.2;
}

.proof-item span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
}

.terrain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.terrain-grid > article {
  min-width: 0;
  padding: 30px 26px;
}

.terrain-grid > article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.terrain-grid > article > strong {
  display: block;
  margin-bottom: 34px;
  color: #8de7f4;
  font-size: 13px;
}

.terrain-grid > article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.terrain-feature {
  min-width: 0;
  padding: 30px 26px;
}

.terrain-feature + .terrain-feature {
  border-left: 1px solid var(--line);
}

.terrain-feature__index {
  display: block;
  margin-bottom: 34px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 800;
}

.terrain-feature h3 {
  font-size: 22px;
}

.terrain-feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.section--dark .terrain-grid {
  border-color: rgba(255, 255, 255, 0.2);
}

.section--dark .terrain-feature + .terrain-feature {
  border-color: rgba(255, 255, 255, 0.2);
}

.section--dark .terrain-feature__index {
  color: #8de7f4;
}

.section--dark .terrain-feature p {
  color: rgba(255, 255, 255, 0.7);
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.content-card svg {
  margin-bottom: 34px;
  color: var(--cyan-dark);
}

.content-card h2,
.content-card h3 {
  font-size: 23px;
}

.content-card p {
  flex: 1;
  color: var(--ink-soft);
}

.content-card .button {
  align-self: flex-start;
}

.program-directory {
  display: grid;
  border-top: 1px solid var(--line);
}

.program-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 50px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.program-entry h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.program-entry p {
  max-width: 720px;
  color: var(--ink-soft);
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid #b8c8ca;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.program-details {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border-radius: 4px;
  background: var(--mist);
}

.program-detail {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  font-size: 14px;
}

.program-detail span:first-child {
  color: var(--ink-soft);
  font-weight: 700;
}

.program-details .button {
  width: 100%;
  margin-top: 8px;
}

.image-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.image-link {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 390px;
  align-items: end;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}

.image-link::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 31, 35, 0.94), transparent 68%);
  content: "";
}

.image-link img {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  transition: transform 240ms ease;
}

.image-link:hover img {
  transform: scale(1.025);
}

.image-link__content {
  padding: 26px;
}

.image-link__content .eyebrow {
  color: #8de7f4;
}

.image-link__content h2,
.image-link__content h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.image-link__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--ink-soft);
  font-size: 12px;
  text-transform: uppercase;
}

.comparison-table td:first-child {
  font-weight: 750;
}

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

.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}

.event-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.event-card__content {
  padding: 24px;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 14px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 750;
}

.event-card h2,
.event-card h3 {
  font-size: 23px;
}

.event-card p {
  color: var(--ink-soft);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-item {
  position: relative;
  padding: 32px 30px 0 0;
}

.timeline-item + .timeline-item {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-item::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.timeline-item + .timeline-item::before {
  left: 30px;
}

.timeline-item strong {
  display: block;
  margin-bottom: 12px;
  color: #8de7f4;
  font-size: 14px;
}

.timeline-item h2,
.timeline-item h3 {
  font-size: 23px;
}

.timeline-item p {
  color: rgba(255, 255, 255, 0.7);
}

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

.contact-options {
  display: grid;
  gap: 12px;
}

.contact-option {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-option > svg:first-child {
  color: var(--cyan-dark);
}

.contact-option strong,
.contact-option span {
  display: block;
}

.contact-option span {
  color: var(--ink-soft);
  font-size: 14px;
}

.callout {
  padding: 28px;
  border-left: 4px solid var(--yellow);
  background: var(--mist);
}

.callout p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding-top: 64px;
  background: #182226;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.8fr;
  gap: 52px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: #86e5f2;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-grid a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  text-decoration: none;
}

.footer-grid p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-grid svg {
  flex: 0 0 auto;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer-bottom a {
  color: inherit;
}

.prototype-note {
  margin-left: auto;
}

.current-climbs-band {
  background: var(--cyan);
}

.current-climbs-band .eyebrow {
  color: #15383f;
}

.current-climbs-band .section-heading {
  margin-bottom: 0;
}

.current-climbs-band .section-heading p {
  margin-bottom: 18px;
  color: #15383f;
}

.editor-launcher {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ink);
  color: white;
}

.editor-launcher:hover {
  background: var(--cyan-dark);
}

.editor-dialog {
  width: min(92vw, 540px);
  max-height: 90vh;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.editor-dialog::backdrop {
  background: rgba(18, 29, 32, 0.65);
  backdrop-filter: blur(3px);
}

.editor-dialog form {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.editor-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.editor-heading h2 {
  margin: 0;
  font-size: 28px;
}

.editor-heading .eyebrow {
  margin-bottom: 6px;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--mist);
  color: var(--ink);
}

.editor-intro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.editor-dialog label:not(.toggle-row) {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 750;
}

.editor-dialog input,
.editor-dialog textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #bbc6c7;
  border-radius: 4px;
  background: white;
  color: var(--ink);
}

.editor-dialog input:focus,
.editor-dialog textarea:focus {
  border-color: var(--cyan-dark);
  outline: 3px solid rgba(8, 167, 196, 0.16);
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.toggle-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan-dark);
}

.editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 8px;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav__list {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .split-feature {
    gap: 42px;
  }

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

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

  .proof-item:nth-child(3) {
    border-left: 0;
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .terrain-feature:nth-child(3) {
    border-left: 0;
  }

  .terrain-feature:nth-child(n + 3) {
    border-top: 1px solid currentColor;
    border-top-color: var(--line);
  }

  .section--dark .terrain-feature:nth-child(n + 3) {
    border-top-color: rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 820px) {
  :root {
    --page-pad: 20px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .section {
    padding-block: 72px;
  }

  .announcement__body,
  .utility-bar a {
    display: none;
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .header-inner {
    min-height: 68px;
  }

  .desktop-nav,
  .header-waiver,
  .header-join {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    list-style: none;
  }

  .editor-launcher {
    width: 44px;
    height: 44px;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    top: 54px;
    right: 0;
    display: grid;
    width: min(320px, calc(100vw - 40px));
    max-height: calc(100svh - 160px);
    padding: 10px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: white;
    box-shadow: var(--shadow);
  }

  .mobile-nav nav .desktop-nav__list {
    display: contents;
  }

  .mobile-nav nav .desktop-nav__list li {
    display: contents;
  }

  .mobile-nav nav a {
    padding: 12px 14px;
    border-radius: 3px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav nav a.active,
  .mobile-nav nav a:hover {
    background: var(--mist);
    color: var(--cyan-dark);
  }

  .mobile-nav nav .mobile-nav__utility {
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 620px;
  }

  .hero::before,
  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(18, 27, 30, 0.82), rgba(18, 27, 30, 0.2)),
      linear-gradient(0deg, rgba(18, 27, 30, 0.8), transparent 75%);
  }

  .hero__content {
    padding-block: 70px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .visit-strip__grid {
    grid-template-columns: 1fr;
  }

  .visit-fact {
    min-height: 84px;
    padding: 16px 10px;
  }

  .visit-fact + .visit-fact {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading,
  .split-feature,
  .event-band,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
  }

  .section-heading > :last-child {
    justify-self: start;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 350px;
  }

  .split-feature__badge {
    right: 16px;
  }

  .event-band {
    gap: 32px;
  }

  .event-date {
    width: 136px;
    height: 136px;
  }

  .steps-grid,
  .pricing-grid,
  .content-card-grid,
  .image-link-grid,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    gap: 38px;
  }

  .price-snapshot {
    grid-template-columns: 1fr;
  }

  .price-snapshot > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
  }

  .price-snapshot > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .climb-types {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 30px;
  }

  .program-entry,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .program-entry {
    gap: 24px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline-item,
  .timeline-item + .timeline-item {
    padding: 28px 0 28px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .timeline-item::before,
  .timeline-item + .timeline-item::before {
    top: 34px;
    left: 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding: 36px 30px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 16px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .announcement {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 13px;
  }

  .utility-bar {
    font-size: 12px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: 570px;
    align-items: end;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__content {
    padding-block: 54px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 18px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .section {
    padding-block: 58px;
  }

  .section--tight {
    padding-block: 44px;
  }

  .program-card {
    min-height: 330px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(3) {
    padding-inline: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-item + .proof-item {
    border-left: 0;
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .terrain-grid {
    grid-template-columns: 1fr;
  }

  .terrain-grid > article {
    padding-inline: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0 !important;
  }

  .terrain-grid > article:first-child {
    border-top: 0;
  }

  .terrain-feature,
  .terrain-feature:nth-child(3) {
    padding-inline: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .terrain-feature + .terrain-feature {
    border-left: 0;
  }

  .terrain-feature:first-child {
    border-top: 0;
  }

  .section--dark .terrain-feature,
  .section--dark .terrain-feature:nth-child(3) {
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .terrain-feature__index {
    margin-bottom: 16px;
  }

  .content-card {
    min-height: 0;
  }

  .image-link {
    min-height: 330px;
  }

  .page-hero {
    min-height: 410px;
  }

  .page-hero__content {
    padding-block: 64px 52px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .climb-type {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .climb-type__icon {
    width: 40px;
    height: 40px;
  }

  .rate-table {
    font-size: 14px;
  }

  .rate-table th,
  .rate-table td {
    padding: 14px 8px;
  }

  .rate-table th:first-child,
  .rate-table td:first-child {
    padding-left: 0;
  }

  .rate-table th:last-child,
  .rate-table td:last-child {
    padding-right: 0;
  }

  .comparison-table-wrap {
    overflow: visible;
  }

  .comparison-table {
    min-width: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
  }

  .comparison-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    padding-block: 24px;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table td {
    padding: 0;
    border: 0;
  }

  .comparison-table td::before {
    display: block;
    margin-bottom: 3px;
    color: var(--ink-soft);
    content: attr(data-label);
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
  }

  .comparison-table td:first-child,
  .comparison-table td:last-child {
    grid-column: 1 / -1;
  }

  .comparison-table td:first-child {
    font-size: 19px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .prototype-note {
    margin-left: 0;
  }

  .editor-dialog form {
    padding: 22px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
