:root {
  /* Brand palette: change these values to recolor all CSS-driven UI. */
  --navy: #082841;
  --navy-rgb: 8, 40, 65;
  --navy-deep: #031b31;
  --navy-deep-rgb: 3, 27, 49;
  --ink-deep: #02111e;
  --ink-deep-rgb: 2, 17, 30;
  --gold: #BFA75D;
  --gold-rgb: 191, 167, 93;
  --gold-light-rgb: 238, 215, 147;
  --road-light-blue: #63b3ff;
  --road-light-blue-rgb: 173, 220, 255;
  --road-light-red: #c96f64;
  --road-light-red-rgb: 244, 176, 164;
  --road-light-green: #72a982;
  --road-light-green-rgb: 184, 224, 194;
  --white: #ffffff;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;
  --transparent: transparent;

  /* Surfaces, borders, and secondary text. */
  --surface-soft: #fbfcfe;
  --surface-muted: #fbfbfb;
  --surface-muted-rgb: 251, 251, 251;
  --surface-cool: #f9fbfd;
  --surface-cloud: #f8fafc;
  --surface-blue: #f7faff;
  --surface-blue-strong: #f2f6fc;
  --surface-blue-mid: #eaf2fd;
  --surface-blue-mid-rgb: 234, 242, 253;
  --surface-blue-pale: #edf4fb;
  --surface-blue-edge: #dce7f7;
  --border-soft: #d9e2ee;
  --border-input: #c7d0dc;
  --border-disabled: #c8d0d7;
  --text-muted: #5f7181;
  --text-disabled: #65717c;
  --text-placeholder: #9aa5af;
  --surface-disabled: #dfe4e8;
  --content-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.5;
}

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

.site-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  color: inherit;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.icon-growth {
  -webkit-mask-image: url("assets/icons/growth.svg");
  mask-image: url("assets/icons/growth.svg");
}

.icon-target {
  -webkit-mask-image: url("assets/icons/target.svg");
  mask-image: url("assets/icons/target.svg");
}

.icon-lead-generation {
  -webkit-mask-image: url("assets/icons/lead-generation.svg");
  mask-image: url("assets/icons/lead-generation.svg");
}

.icon-group {
  -webkit-mask-image: url("assets/icons/group.svg");
  mask-image: url("assets/icons/group.svg");
}

.icon-down-graphic {
  -webkit-mask-image: url("assets/icons/down-graphic.svg");
  mask-image: url("assets/icons/down-graphic.svg");
}

.icon-dollar {
  -webkit-mask-image: url("assets/icons/dollar.svg");
  mask-image: url("assets/icons/dollar.svg");
}

.icon-mountain {
  -webkit-mask-image: url("assets/icons/mountain.svg");
  mask-image: url("assets/icons/mountain.svg");
}

.icon-task {
  -webkit-mask-image: url("assets/icons/task.svg");
  mask-image: url("assets/icons/task.svg");
}

.icon-loudspeaker {
  -webkit-mask-image: url("assets/icons/loudspeaker.svg");
  mask-image: url("assets/icons/loudspeaker.svg");
}

.icon-calendar {
  -webkit-mask-image: url("assets/icons/calendar.svg");
  mask-image: url("assets/icons/calendar.svg");
}

.icon-location {
  -webkit-mask-image: url("assets/icons/location.svg");
  mask-image: url("assets/icons/location.svg");
}

.button-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  color: var(--white);
  font-size: 1.05em;
}

.hero {
  position: relative;
  z-index: auto;
  min-height: 1060px;
  padding-top: 76px;
  overflow: hidden;
  isolation: auto;
  background-color: var(--navy);
}

.hero-scenery {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-sun {
  position: absolute;
  z-index: 4;
  top: -430px;
  left: -430px;
  width: clamp(720px, 64vw, 860px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--gold-light-rgb), 0.34) 0%,
    rgba(var(--gold-rgb), 0.2) 24%,
    rgba(var(--gold-rgb), 0.08) 46%,
    var(--transparent) 72%
  );
  filter: blur(14px);
  mix-blend-mode: screen;
  opacity: 0.66;
  will-change: transform, opacity;
  animation: sun-breathe 10s ease-in-out infinite alternate;
}

@keyframes sun-breathe {
  from {
    opacity: 0.58;
    transform: translate3d(-6px, 5px, 0) scale(0.94);
  }

  to {
    opacity: 0.82;
    transform: translate3d(8px, -4px, 0) scale(1.08);
  }
}

.hero-scenery::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(var(--ink-deep-rgb), 0.88) 0%, rgba(var(--navy-deep-rgb), 0.57) 47%, rgba(var(--navy-deep-rgb), 0.08) 100%),
    linear-gradient(180deg, rgba(var(--ink-deep-rgb), 0.18) 22%, rgba(var(--navy-deep-rgb), 0.68) 100%);
}

.hero-scenery img {
  position: absolute;
  display: block;
  max-width: none;
  user-select: none;
}

.hero-scenery-range {
  z-index: 1;
  bottom: -4%;
  left: -6%;
  width: auto;
  height: 108%;
  opacity: 0.76;
  will-change: transform;
  animation: mountain-drift 60s linear infinite alternate;
}

@keyframes mountain-drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(7%);
  }
}

.hero-scenery-road {
  z-index: 2;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
}

.hero-road-light {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  overflow: visible;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-road-light-path {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  animation: none;
}

.hero-road-light-path-glow {
  stroke-width: 8;
  stroke-dasharray: 62 148;
  opacity: 0;
  filter: url("#hero-road-light-glow");
}

.hero-road-light-path-core {
  stroke-width: 1.7;
  stroke-dasharray: 18 16 4 172;
  opacity: 0;
}

.hero-road-light-path-travel {
  stroke: rgb(var(--gold-light-rgb));
  stroke-width: 2;
  stroke-dasharray: 24 976;
  stroke-dashoffset: 0;
  opacity: 0;
  filter: drop-shadow(0 0 5px var(--gold)) drop-shadow(0 0 11px var(--gold));
  animation: none;
  will-change: stroke-dashoffset;
}

.hero-road-pulse {
  pointer-events: none;
}

.hero-road-pulse-glow {
  fill: var(--gold);
  opacity: 0.24;
  filter: url("#hero-road-light-glow");
}

.hero-road-pulse-core {
  fill: rgb(var(--gold-light-rgb));
  stroke: none;
  opacity: 0.54;
  filter: blur(0.45px) drop-shadow(0 0 6px var(--gold)) drop-shadow(0 0 14px var(--gold));
}

.hero-road-pulse-glow.is-blue {
  fill: var(--road-light-blue);
}

.hero-road-pulse-core.is-blue {
  fill: rgb(var(--road-light-blue-rgb));
  filter: blur(0.45px) drop-shadow(0 0 6px var(--road-light-blue))
    drop-shadow(0 0 14px var(--road-light-blue));
}

.hero-road-pulse-glow.is-red {
  fill: var(--road-light-red);
}

.hero-road-pulse-core.is-red {
  fill: rgb(var(--road-light-red-rgb));
  filter: blur(0.55px) drop-shadow(0 0 5px var(--road-light-red))
    drop-shadow(0 0 12px var(--road-light-red));
}

.hero-road-pulse-glow.is-green {
  fill: var(--road-light-green);
}

.hero-road-pulse-core.is-green {
  fill: rgb(var(--road-light-green-rgb));
  filter: blur(0.6px) drop-shadow(0 0 5px var(--road-light-green))
    drop-shadow(0 0 11px var(--road-light-green));
}

@keyframes hero-road-light-flow {
  to {
    stroke-dashoffset: -210;
  }
}

@keyframes hero-road-light-travel {
  to {
    stroke-dashoffset: -1000;
  }
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  right: -1%;
  left: -1%;
  height: 120px;
  clip-path: polygon(0 0, 50% 40px, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero::before {
  z-index: 4;
  bottom: -70px;
  background: var(--gold);
}

.hero::after {
  z-index: 5;
  bottom: -74px;
  background: var(--white);
}

.site-nav {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: auto;
  min-height: 76px;
  margin: 0;
  padding: 0 max(24px, calc((100vw - var(--content-width)) / 2 + 18px));
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--transparent);
  background: var(--transparent);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  isolation: isolate;
  transform: none;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-nav.is-scrolled {
  border-bottom-color: var(--transparent);
  background: var(--navy-deep);
  box-shadow: 0 6px 18px rgba(var(--ink-deep-rgb), 0.18);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  padding-block: 4px;
  align-items: center;
}

.brand img {
  display: block;
  width: clamp(215px, 23vw, 252px);
  max-width: none;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 62px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(var(--gold-rgb), 0.62);
  border-radius: 7px;
  color: var(--white);
  background: rgba(var(--navy-deep-rgb), 0.54);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

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

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown[open] .nav-dropdown-toggle::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  width: max-content;
  min-width: 230px;
  padding: 9px;
  gap: 3px;
  border: 1px solid rgba(var(--gold-rgb), 0.38);
  border-radius: 8px;
  background: rgba(var(--navy-deep-rgb), 0.99);
  box-shadow: 0 16px 36px rgba(var(--black-rgb), 0.32);
  transform: translateX(-50%);
}

.nav-dropdown-menu a {
  display: flex;
  min-height: 42px;
  padding: 10px 12px;
  align-items: center;
  border-radius: 5px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu .nav-dropdown-active {
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.1);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(var(--gold-rgb), 0.45);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding-inline: 21px;
}

.hero-content {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(calc(100% - clamp(32px, 7vw, 96px)), 1120px);
  margin: 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
  transform: translate(-50%, -50%);
}

.eyebrow {
  display: flex;
  width: 100%;
  margin: 0 0 8px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  font-size: clamp(0.95rem, 1.45vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: clamp(42px, 6vw, 62px);
  height: 1px;
  background: var(--gold);
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, min(5.35vw, 8vh), 4.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 3px 14px rgba(var(--black-rgb), 0.4);
}

h1 strong,
h1 span {
  display: block;
}

h1 strong {
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 0.93em;
  font-weight: 700;
}

#home .hero-content h1 {
  letter-spacing: 0.005em;
}

#home .hero-content h1 strong {
  margin-bottom: 0;
  padding-block: 12px;
  font-size: 1em;
}

#home .hero-content h1 > span {
  padding-block: 12px;
}

.brand-divider {
  display: flex;
  margin: 24px 0 3px;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.brand-divider > span:not(.site-icon) {
  width: 58px;
  height: 1px;
  background: var(--gold);
}

.brand-divider .divider-icon {
  display: block;
  width: 64px;
  height: 46px;
  object-fit: contain;
}

.hero-intro {
  margin: 0;
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  font-weight: 700;
}

.benefits {
  display: grid;
  width: min(100%, 920px);
  margin: 16px auto 14px;
  grid-template-columns: repeat(3, 1fr);
}

.benefit {
  display: flex;
  min-height: 66px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;
}

.benefit + .benefit {
  border-left: 1px solid var(--gold);
}

.benefit-icon {
  display: block;
  width: 60px;
  height: 60px;
  flex-basis: 60px;
  object-fit: contain;
}

.benefit p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.benefit strong,
.benefit p span {
  display: block;
}

.benefit strong {
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (min-width: 761px) {
  .benefits {
    width: min(100%, 1040px);
  }

  .benefit {
    min-height: 84px;
    padding-inline: 28px;
    gap: 18px;
  }

  .benefit-icon {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .benefit p {
    font-size: 1.05rem;
  }

  .benefit strong {
    font-size: 1.12rem;
  }
}

.hero-button {
  min-width: 320px;
  min-height: 48px;
  margin: 34px 0 48px;
  padding-inline: 20px;
  font-size: 0.82rem;
}

.hero-button i,
.hero-button svg {
  font-size: 1.2rem;
  line-height: 1;
}

.challenges {
  position: relative;
  color: var(--navy);
  background: linear-gradient(180deg, var(--white) 0%, var(--surface-soft) 100%);
}

.section-shell {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
  padding: 52px 0 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  background-image: linear-gradient(
    105deg,
    var(--navy) 0%,
    var(--navy) 42%,
    var(--gold) 47%,
    rgba(var(--white-rgb), 0.98) 50%,
    var(--gold) 53%,
    var(--navy) 58%,
    var(--navy) 100%
  );
  background-position: 180% 0;
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  animation: challenge-heading-shine 15s ease-in-out infinite;
}

@keyframes challenge-heading-shine {
  0%,
  4% {
    background-position: 180% 0;
  }

  18%,
  100% {
    background-position: -180% 0;
  }
}

.section-heading p {
  margin: 9px 0 0;
  font-size: clamp(0.94rem, 1.4vw, 1.08rem);
  font-weight: 600;
}

.challenge-grid {
  display: grid;
  margin: 38px 0 28px;
  grid-template-columns: repeat(3, 1fr);
}

.challenge-card {
  min-height: 220px;
  padding: 8px clamp(30px, 4vw, 62px) 20px;
  transition: transform 180ms ease;
}

.challenge-card:nth-child(1) {
  animation: challenge-card-float 7.5s ease-in-out 0s infinite;
}

.challenge-card:nth-child(2) {
  animation: challenge-card-float 7.5s ease-in-out 1.25s infinite;
}

.challenge-card:nth-child(3) {
  animation: challenge-card-float 7.5s ease-in-out 2.5s infinite;
}

@keyframes challenge-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.challenge-card:hover {
  animation: none;
  transform: translateY(-5px);
}

.challenge-card + .challenge-card {
  border-left: 1px solid rgba(var(--navy-rgb), 0.24);
}

.challenge-icon {
  display: inline-flex;
  width: 66px;
  height: 66px;
  aspect-ratio: 1 / 1;
  flex: 0 0 66px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(145deg, var(--surface-blue-strong), var(--surface-blue-edge));
  box-shadow: 0 8px 22px rgba(var(--navy-rgb), 0.12);
  font-size: 2.35rem;
}

.challenge-icon .site-icon {
  width: 42px;
  height: 42px;
}

.challenge-icon-image {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.challenge-icon .site-icon,
.system-card .system-icon.site-icon,
.about-info-icon .site-icon {
  background: currentColor;
}

.challenge-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 900;
  text-transform: uppercase;
}

.challenge-card p {
  max-width: 270px;
  margin: 0 auto;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.65;
}

.challenge-reassurance {
  display: flex;
  margin: 0 auto 10px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.challenge-reassurance .reassurance-icon {
  display: block;
  width: 84px;
  height: 60px;
  object-fit: contain;
}

.challenge-reassurance p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
}

.gold-dash {
  color: var(--gold);
}

.challenge-button {
  min-width: 340px;
  min-height: 54px;
  font-size: 0.88rem;
}

.challenge-button svg,
.challenge-button i {
  font-size: 1.25rem;
}

.help-section {
  color: var(--navy);
  background: #e8f1fb;
}

.help-shell {
  display: grid;
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
  padding: 62px 0;
  grid-template-columns: 380px 1fr;
  gap: 72px;
}

.coach-card {
  display: flex;
  padding: 0 58px 8px 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 2px solid rgba(var(--gold-rgb), 0.72);
  text-align: center;
}

@media (min-width: 761px) {
  .coach-card {
    transform: translateY(-24px);
  }
}

.coach-photo {
  position: relative;
  width: 320px;
  height: 241px;
  overflow: hidden;
}

.coach-photo::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48px;
  background: linear-gradient(
    to bottom,
    rgba(var(--surface-blue-mid-rgb), 0),
    var(--surface-blue-mid) 92%
  );
}

.coach-photo > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.coach-divider {
  display: flex;
  position: relative;
  z-index: 0;
  margin-top: -24px;
  align-items: center;
  gap: 7px;
}

.coach-divider > span:not(.site-icon) {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.coach-divider .divider-icon {
  width: 56px;
  height: 40px;
  object-fit: contain;
}

.coach-card h3 {
  margin: 2px 0 0;
  font-size: 1.72rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.coach-card > p {
  margin: 5px 0 10px;
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 700;
}

.coach-button {
  width: 100%;
  min-height: 50px;
  padding-inline: 14px;
  font-size: 0.8rem;
}

.coach-button svg,
.coach-button i {
  font-size: 1.1rem;
}

.help-copy {
  padding-top: 2px;
}

.help-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  background-image: linear-gradient(
    105deg,
    var(--navy) 0%,
    var(--navy) 42%,
    var(--gold) 47%,
    rgba(var(--white-rgb), 0.98) 50%,
    var(--gold) 53%,
    var(--navy) 58%,
    var(--navy) 100%
  );
  background-position: -180% 0;
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.9rem, 2.7vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  animation: help-heading-shine 6.8s ease-in-out infinite;
}

@keyframes help-heading-shine {
  0%,
  18% {
    background-position: 180% 0;
  }

  48%,
  100% {
    background-position: -180% 0;
  }
}

.help-copy p {
  max-width: 700px;
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.65;
}

.system-intro {
  color: var(--navy);
  background: #e8f1fb;
}

.system-shell {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
  padding: 64px 0 70px;
}

.system-heading {
  text-align: center;
}

.system-title-row {
  display: flex;
  width: min(100%, 1120px);
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.system-title-row span {
  width: 74px;
  height: 1px;
  background: var(--gold);
}

.system-title-row h2 {
  margin: 0;
  color: var(--navy);
  background-image: linear-gradient(
    105deg,
    var(--navy) 0%,
    var(--navy) 42%,
    var(--gold) 47%,
    rgba(var(--white-rgb), 0.98) 50%,
    var(--gold) 53%,
    var(--navy) 58%,
    var(--navy) 100%
  );
  background-position: 180% 0;
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  white-space: nowrap;
  animation: challenge-heading-shine 15s ease-in-out infinite;
}

.system-heading > p {
  margin: 22px 0 50px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
}

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

.system-card {
  position: relative;
  display: flex;
  min-height: 405px;
  padding: 32px 28px 28px;
  align-items: center;
  flex-direction: column;
  border: 1px solid rgba(var(--navy-rgb), 0.18);
  border-radius: 14px;
  background: rgba(var(--white-rgb), 0.9);
  box-shadow: 0 12px 32px rgba(var(--navy-rgb), 0.08);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.system-card:nth-child(1) {
  animation: system-card-lift 11.3s ease-in-out -2.1s infinite;
}

.system-card:nth-child(2) {
  animation: system-card-lift 13.1s ease-in-out -8.4s infinite;
}

.system-card:nth-child(3) {
  animation: system-card-lift 9.7s ease-in-out -5.2s infinite;
}

@keyframes system-card-lift {
  0%,
  72%,
  100% {
    transform: translateY(0);
    box-shadow: 0 12px 32px rgba(var(--navy-rgb), 0.08);
  }

  79%,
  86% {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(var(--navy-rgb), 0.14);
  }
}

.system-card + .system-card {
  border-left: 1px solid rgba(var(--navy-rgb), 0.18);
}

.system-card:not(:last-child)::after {
  content: "\f061";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -42px;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: "Font Awesome 6 Free";
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.system-card:hover {
  animation: none;
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(var(--navy-rgb), 0.14);
}

.system-number {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 1.1rem;
  font-weight: 800;
}

.system-icon {
  display: block;
  position: relative;
  width: 58px;
  height: 58px;
  margin: 0 auto 8px;
  color: var(--navy);
  font-size: 3.1rem;
}

.build-mountain {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.system-duration {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.system-card h3 {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.system-card > p:not(.system-duration) {
  max-width: none;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: clamp(.78rem, 1vw, .88rem);
  font-weight: 500;
  line-height: 1.75;
}

.system-copy-line {
  display: block;
  white-space: nowrap;
}

.system-card-link,
.system-marketing-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.system-card-link {
  width: 100%;
  margin-top: auto;
  padding: 10px;
  color: var(--white);
  background: var(--navy);
  font-size: clamp(.58rem, .72vw, .68rem);
  letter-spacing: .05em;
  white-space: nowrap;
}

.system-card-link:hover,
.system-card-link:focus-visible {
  color: var(--navy);
  background: var(--gold);
  transform: translateY(-2px);
}

.system-marketing-card {
  position: relative;
  margin-top: 72px;
  padding: 34px 54px 32px;
  border: 2px solid var(--gold);
  border-radius: 16px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 14px 32px rgba(var(--navy-rgb), .14);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: system-marketing-sway 19s ease-in-out -6s infinite;
}

@keyframes system-marketing-sway {
  0%,
  82%,
  92%,
  100% {
    transform: translateX(0);
  }

  85% {
    transform: translateX(-5px);
  }

  89% {
    transform: translateX(5px);
  }
}

.system-marketing-card:hover,
.system-marketing-card:focus-within {
  animation: none;
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(var(--navy-rgb), .22);
}

.system-marketing-card::before {
  content: "\f063";
  position: absolute;
  top: -57px;
  left: 50%;
  color: var(--gold);
  font-family: "Font Awesome 6 Free";
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
}

.system-marketing-card h3 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.system-marketing-card p {
  max-width: 980px;
  margin: 0 auto;
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.65;
}

.system-marketing-link {
  margin-top: 26px;
  padding: 10px 28px;
  color: var(--navy);
  background: var(--gold);
}

.system-marketing-link:hover,
.system-marketing-link:focus-visible {
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.booking-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(var(--navy-deep-rgb), 0.94), rgba(var(--navy-rgb), 0.76)),
    url("assets/about-footer-mountains.png") center bottom / cover no-repeat;
}

.booking-shell {
  display: grid;
  width: min(calc(100% - 48px), 760px);
  min-height: 310px;
  margin: 0 auto;
  padding: 40px 0 38px;
  align-items: center;
  grid-template-columns: 1fr;
}

.booking-message {
  display: flex;
  align-items: center;
  gap: 24px;
}

.booking-icon {
  display: inline-flex;
  width: 110px;
  height: 110px;
  flex: 0 0 110px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background: var(--transparent);
  box-shadow: none;
  cursor: pointer;
  font-size: 3.25rem;
  text-decoration: none;
}

.booking-icon .site-icon {
  width: 78px;
  height: 78px;
}

.booking-icon-image {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transform-origin: 50% 82%;
  animation: booking-icon-shake 9.7s ease-in-out 2.3s infinite;
}

@keyframes booking-icon-shake {
  0%,
  76%,
  88%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  78% {
    transform: translateX(-2px) rotate(-5deg);
  }

  80% {
    transform: translateX(2px) rotate(5deg);
  }

  82% {
    transform: translateX(-1px) rotate(-4deg);
  }

  84% {
    transform: translateX(1px) rotate(4deg);
  }

  86% {
    transform: translateX(0) rotate(-2deg);
  }
}

.booking-copy h2 {
  margin: 0 0 7px;
  font-size: clamp(1.05rem, 4.8vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.booking-copy > p {
  max-width: 470px;
  margin: 0 0 18px;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.55;
}

.booking-guidebook {
  display: grid;
  max-width: 470px;
  margin: 0 0 20px;
  align-items: center;
  grid-template-columns: 82px 1fr;
  gap: 14px;
}

.booking-guidebook > img {
  width: 82px;
  height: 116px;
  object-fit: contain;
}

.booking-guidebook h3 {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-guidebook p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
}

.booking-button {
  min-width: 330px;
  min-height: 52px;
  font-size: 0.84rem;
}

.scheduler-preview {
  display: grid;
  align-self: end;
  min-height: 270px;
  padding: 20px 22px 14px;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 15px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(var(--navy-rgb), 0.12);
}

.calendar-panel h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
  text-align: center;
}

.calendar-today-heading {
  white-space: nowrap;
}

.calendar-today-heading span {
  display: inline;
  margin: 0;
  color: var(--gold);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.calendar-month {
  display: flex;
  margin-bottom: 3px;
  align-items: center;
  justify-content: space-between;
}

.calendar-month strong {
  font-size: 0.78rem;
}

.calendar-month button {
  display: inline-flex;
  width: 30px;
  height: 30px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--transparent);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.calendar-month button:hover,
.calendar-month button:focus-visible {
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.13);
  transform: scale(1.08);
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.68rem;
  text-align: center;
}

.calendar-table th {
  padding: 2px;
  font-size: 0.56rem;
  text-transform: uppercase;
}

.calendar-table td {
  width: 14.28%;
  padding: 5px 1px;
}

.calendar-table td span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
}

.time-panel {
  display: flex;
  padding-left: 12px;
  flex-direction: column;
  border-left: 1px solid var(--border-soft);
  gap: 5px;
}

.time-panel > p {
  margin: 0 0 3px;
  font-size: 0.75rem;
  font-weight: 700;
}

.time-panel button {
  min-height: 34px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: var(--navy);
  background: var(--white);
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.time-panel small {
  margin-top: auto;
  font-size: 0.52rem;
  text-align: center;
}

.site-footer {
  color: var(--white);
  background: var(--navy-deep);
}

.footer-shell {
  display: grid;
  width: min(calc(100% - 48px), 1160px);
  min-height: 92px;
  margin: 0 auto;
  align-items: center;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

.footer-brand img {
  display: block;
  width: 225px;
  height: auto;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  text-align: center;
}

.footer-meta > p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
}

.powered-by-credit { display:inline-flex; align-items:center; gap:7px; padding:7px 10px; border:1px solid rgba(255,255,255,.75); border-radius:999px; background:transparent; color:#fff; font:600 12px/1.2 Arial,sans-serif; text-decoration:none; box-shadow:none; }
.powered-by-credit:hover { border-color:#ff6a00; color:#ff6a00; }
.powered-by-icon { width:16px; height:16px; border-radius:4px; }

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.footer-socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.95rem;
  transition: color 180ms ease, background-color 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--navy-deep);
  background: var(--gold);
}

@media (max-width: 1024px) {
  .system-benefits {
    display: none;
  }

  .hero {
    min-height: 900px;
  }
}

@media (max-width: 760px) {
  .btn-17 {
    padding-inline: 16px;
  }

  .btn-17 .text {
    gap: 8px;
  }

  .hero {
    min-height: 850px;
    padding-top: 86px;
  }

  .about-topbar {
    min-height: 86px;
  }

  .hero-scenery-range {
    left: -50%;
  }

  .hero-sun {
    top: -335px;
    left: -335px;
    width: 650px;
  }

  .hero-scenery-road,
  .hero-road-light {
    right: -42%;
  }

  .site-nav {
    width: 100%;
    padding-inline: 16px;
    min-height: 86px;
  }

  .brand img {
    width: 210px;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav-actions {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    display: flex;
    width: min(310px, calc(100vw - 32px));
    padding: 16px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    border: 1px solid rgba(var(--gold-rgb), 0.35);
    border-radius: 9px;
    background: rgba(var(--navy-deep-rgb), 0.98);
    box-shadow: 0 14px 34px rgba(var(--ink-deep-rgb), 0.38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.menu-open .nav-actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-actions .nav-link {
    display: flex;
    min-height: 44px;
    padding: 10px 12px;
    align-items: center;
    justify-content: center;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 4px;
    border-color: rgba(var(--gold-rgb), 0.24);
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown-menu a {
    justify-content: center;
  }

  .nav-actions .button-small {
    width: 100%;
  }

  .button-small {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 0.69rem;
  }

  .hero-content {
    width: min(calc(100% - 32px), 960px);
    margin: 0;
  }

  .eyebrow {
    gap: 10px;
    letter-spacing: 0.14em;
  }

  .benefits {
    width: min(100%, 420px);
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 62px;
    padding: 8px 26px;
    justify-content: flex-start;
  }

  .benefit + .benefit {
    border-top: 1px solid rgba(var(--gold-rgb), 0.55);
    border-left: 0;
  }

  .hero-button {
    width: min(100%, 360px);
    min-width: 0;
  }

  .section-shell {
    width: min(calc(100% - 32px), 1000px);
    padding-top: 34px;
  }

  .challenge-grid {
    width: min(100%, 430px);
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  .challenge-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .challenge-card + .challenge-card {
    border-top: 1px solid rgba(var(--navy-rgb), 0.18);
    border-left: 0;
  }

  .challenge-reassurance {
    margin-top: 8px;
    gap: 12px;
  }

  .challenge-button {
    width: min(100%, 340px);
    min-width: 0;
  }

  .help-shell {
    width: min(calc(100% - 32px), 1000px);
    padding-top: 34px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .coach-card {
    width: min(100%, 360px);
    margin: 0 auto;
    padding: 0 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.72);
  }

  .help-copy {
    width: min(100%, 600px);
    margin: 0 auto;
  }

  .help-copy h2 {
    text-align: center;
  }

  .help-copy p {
    font-size: 0.82rem;
  }

  .system-title-row {
    width: min(100%, 760px);
    gap: 12px;
  }

  .system-title-row h2 {
    white-space: normal;
  }

  .system-title-row span {
    width: 34px;
  }

  .system-shell {
    width: min(calc(100% - 32px), 1000px);
    padding-top: 26px;
  }

  .system-grid {
    width: min(100%, 430px);
    margin: 0 auto;
    grid-template-columns: 1fr;
  }

  .system-card {
    min-height: 0;
    padding: 36px 28px 28px;
  }

  .system-card + .system-card {
    border-top: 1px solid rgba(var(--navy-rgb), 0.18);
    border-left: 1px solid rgba(var(--navy-rgb), 0.18);
  }

  .system-card > p:not(.system-duration) {
    max-width: 290px;
    font-size: 0.84rem;
  }

  .system-card:not(:last-child)::after {
    content: "\f063";
    top: auto;
    right: auto;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
  }

  .system-marketing-card {
    width: min(100%, 430px);
    margin: 64px auto 0;
    padding: 34px 24px 30px;
  }

  .system-marketing-card h3 {
    margin-inline: 0;
  }

  .system-marketing-card p {
    font-size: .86rem;
  }

  .booking-shell {
    width: min(calc(100% - 32px), 1000px);
    padding: 34px 0 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .booking-message {
    width: min(100%, 520px);
    margin: 0 auto;
    align-items: flex-start;
  }

  .booking-icon {
    width: 74px;
    height: 74px;
    flex-basis: 74px;
    font-size: 2.2rem;
  }

  .booking-icon .site-icon {
    width: 62px;
    height: 62px;
  }

  .booking-button {
    width: min(100%, 310px);
    min-width: 0;
  }

  .scheduler-preview {
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .footer-shell {
    width: min(calc(100% - 32px), 1000px);
    padding: 22px 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .system-copy-line {
    display: inline;
    white-space: normal;
  }

  .system-copy-line::after {
    content: " ";
  }

  .booking-message {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .booking-guidebook {
    width: 100%;
    text-align: left;
  }

  .scheduler-preview {
    grid-template-columns: 1fr;
  }

  .time-panel {
    padding: 12px 0 0;
    border-top: 1px solid var(--border-soft);
    border-left: 0;
  }

  .time-panel small {
    margin-top: 6px;
  }
}

/* About page */
.about-page {
  color: var(--navy);
}

.about-topbar {
  min-height: 76px;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  box-shadow: 0 4px 18px rgba(var(--navy-rgb), 0.18);
}

.about-topbar .site-nav,
.about-topbar .site-nav.is-scrolled {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
  box-shadow: 0 4px 18px rgba(var(--navy-rgb), 0.18);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.about-topbar .site-nav {
  border-bottom-color: var(--transparent);
}

.about-topbar .site-nav.is-scrolled {
  border-bottom-color: var(--transparent);
}

.nav-link-active {
  color: var(--gold);
}

.about-story {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--white) 0%, var(--surface-cool) 100%);
}

.about-story::before,
.about-story::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.about-story::before {
  background:
    url("assets/hero-mountain.png") right center / auto 118% no-repeat,
    url("assets/mountain-range-transparent-v2.png") left bottom / auto 92% no-repeat;
  filter: saturate(0.92) contrast(0.96);
  opacity: 0.11;
}

.about-story::after {
  background:
    radial-gradient(circle at 4% 5%, rgba(var(--gold-rgb), 0.15), var(--transparent) 31%),
    linear-gradient(115deg, rgba(var(--navy-rgb), 0.05), var(--transparent) 46%);
}

.about-story-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - 64px), 1200px);
  margin: 0 auto;
  padding: 64px 0 72px;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 62px;
}

.about-story-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
  text-shadow: none;
  text-transform: uppercase;
}

.about-story-copy h1 span,
.about-story-copy h1 strong {
  display: block;
}

.about-story-copy h1 strong {
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.88em;
}

.about-gold-rule {
  display: flex;
  width: max-content;
  margin: 24px auto 26px;
  align-items: center;
  gap: 10px;
}

.about-gold-rule img {
  display: block;
  width: 38px;
  height: 27px;
  object-fit: contain;
}

.about-gold-rule > span {
  display: block;
  width: 62px;
  height: 1px;
  background: var(--gold);
}

.about-story-copy > p {
  max-width: 500px;
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.about-story-copy > p strong {
  font-weight: 800;
}

.about-story-button {
  min-width: 315px;
  min-height: 56px;
  margin-top: 12px;
  font-size: 0.88rem;
}

.about-story-image {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(var(--navy-rgb), 0.16);
}

.about-story-image img {
  display: block;
  width: 100%;
  height: auto;
}

.about-info {
  padding: 48px 24px 56px;
  background: var(--white);
}

.about-info-blue {
  background: #e8f1fb;
}

.about-info-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.about-info-icon {
  display: inline-flex;
  width: 76px;
  height: 76px;
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(var(--white-rgb), 0.82);
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(var(--navy-rgb), 0.08);
}

.about-info-icon-image {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.about-info h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.about-heading-rule {
  display: block;
  width: 54px;
  height: 1px;
  margin: 13px auto 15px;
  background: var(--gold);
}

.about-info p {
  margin: 0 auto;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
}

.about-info-lead {
  margin-bottom: 14px !important;
}

.about-info-emphasis {
  margin-top: 10px !important;
  font-weight: 800 !important;
}

.about-cta {
  position: relative;
  display: flex;
  min-height: 340px;
  overflow: hidden;
  isolation: isolate;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy-deep);
}

.about-cta-mountains {
  position: absolute;
  z-index: -3;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.about-cta-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(var(--navy-deep-rgb), 0.94), rgba(var(--navy-rgb), 0.76));
}

.about-cta-mark {
  position: absolute;
  z-index: -1;
  top: 56px;
  right: clamp(40px, 10vw, 160px);
  width: 120px;
  height: 84px;
  color: var(--gold);
  opacity: 0.9;
}

.about-cta-content {
  width: min(calc(100% - 48px), 1000px);
  padding: 48px 0;
  text-align: center;
}

.about-cta-content h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.about-cta-content > span {
  display: block;
  width: 84px;
  height: 1px;
  margin: 16px auto;
  background: var(--gold);
}

.about-cta-content p {
  max-width: 660px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
}

.about-cta-button {
  min-width: 360px;
  min-height: 58px;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .about-cta-content h2 {
    white-space: normal;
  }

  .about-story-shell {
    width: min(calc(100% - 40px), 680px);
    padding: 48px 0 56px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-story-copy {
    text-align: center;
  }

  .about-gold-rule {
    margin-inline: auto;
  }

  .about-story-copy > p {
    margin-inline: auto;
  }

  .about-story-image {
    order: -1;
  }

  .about-cta-mark {
    right: 28px;
    width: 90px;
  }
}

@media (max-width: 560px) {
  .about-topbar .site-nav {
    padding-bottom: 12px;
  }

  .about-story-shell {
    width: min(calc(100% - 32px), 680px);
  }

  .about-story-copy h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .about-story-button,
  .about-cta-button {
    width: 100%;
    min-width: 0;
  }

  .about-info {
    padding-inline: 18px;
  }

  .about-info p,
  .about-cta-content p {
    font-size: 0.95rem;
  }

  .about-cta-mark {
    display: none;
  }
}

@media (max-width: 510px) {
  .site-nav {
    padding-top: 12px;
    align-items: flex-start;
  }

  .brand img {
    width: 175px;
  }

  .button-small {
    width: 126px;
    padding: 7px 10px;
  }

  h1 {
    font-size: clamp(2rem, 11.5vw, 3.1rem);
  }

  #home .hero-content h1 {
    font-size: clamp(1.65rem, 8.8vw, 2.4rem);
  }

  .eyebrow span {
    display: none;
  }
}

/* Guidebook landing page */
.guidebook-page {
  min-height: 100vh;
  color: var(--navy);
  background: var(--white);
}

.guidebook-main {
  background:
    radial-gradient(circle at 49% 54%, rgba(var(--gold-rgb), 0.07), var(--transparent) 28%),
    linear-gradient(135deg, var(--white) 0%, var(--surface-cloud) 100%);
}

.guidebook-hero {
  display: flex;
  min-height: calc(100vh - 76px);
  padding: 32px 24px 30px;
  align-items: center;
}

.guidebook-shell {
  display: grid;
  width: min(100%, 1460px);
  margin: 0 auto;
  align-items: center;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(18px, 2.3vw, 42px);
}

.guidebook-copy h1,
.guidebook-form h2 {
  font-family: "Oswald", "Montserrat", Arial, sans-serif;
  text-transform: uppercase;
}

.guidebook-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 2.8vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-shadow: none;
}

.guidebook-rule {
  display: block;
  width: 74px;
  height: 1px;
  margin: 32px 0 30px;
  background: var(--gold);
}

.guidebook-copy p {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.05rem, 1.25vw, 1.32rem);
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

.guidebook-copy .guidebook-lead {
  margin-bottom: 18px;
}

.guidebook-benefits {
  max-width: 520px;
  margin: 18px 0 0;
  padding-left: 24px;
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
}

.guidebook-benefits li + li {
  margin-top: 5px;
}

.guidebook-product {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  grid-row: 1;
  grid-column: 2;
}

.guidebook-product img {
  display: block;
  width: min(100%, 570px);
  height: auto;
  filter: drop-shadow(0 18px 20px rgba(var(--navy-rgb), 0.18));
  transform: scale(1.06);
}

.guidebook-form {
  grid-column: 1 / -1;
  padding: clamp(28px, 2.8vw, 46px);
  border-radius: 12px;
  background: rgba(var(--white-rgb), 0.98);
  box-shadow: 0 12px 34px rgba(var(--navy-rgb), 0.14);
}

.guidebook-form h2 {
  margin: 0;
  font-size: clamp(1.1rem, 1.45vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
}

.guidebook-form-divider {
  display: flex;
  margin: 18px auto 20px;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.guidebook-form-divider span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.guidebook-form-divider img {
  width: 36px;
  height: 25px;
  object-fit: contain;
}

.guidebook-form > p:not(.guidebook-privacy, .guidebook-status) {
  margin: 0 0 24px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
}

.guidebook-form label {
  display: block;
  margin-bottom: 17px;
}

.guidebook-form label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.88rem;
  font-weight: 800;
}

.guidebook-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--border-input);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-size: 0.94rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.guidebook-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.18);
}

.guidebook-name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.guidebook-submit {
  width: 100%;
  min-height: 56px;
  padding-inline: 18px;
  border: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.32rem);
  letter-spacing: 0.015em;
}

.guidebook-submit svg,
.guidebook-submit i {
  font-size: 1.35em;
}

.guidebook-privacy {
  display: flex;
  margin: 14px 0 0;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.87rem;
  font-weight: 500;
  line-height: 1.45;
}

.guidebook-privacy svg,
.guidebook-privacy i {
  margin-top: 3px;
  color: var(--navy);
}

.guidebook-status {
  margin: 14px 0 0;
  padding: 11px 13px;
  border-radius: 5px;
  color: var(--navy);
  background: rgba(var(--gold-rgb), 0.16);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.guidebook-embed-card {
  align-self: start;
}

.guidebook-form-embed-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
}

.guidebook-form-embed-wrap::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18px;
  pointer-events: none;
  background: var(--white);
}

.guidebook-form-embed {
  display: block;
  width: 100%;
  min-height: 760px;
  background: var(--white);
}

.guidebook-footer {
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-deep), var(--navy));
}

.guidebook-footer-shell {
  display: grid;
  width: min(calc(100% - 48px), 1360px);
  min-height: 132px;
  margin: 0 auto;
  padding: 24px 0;
  align-items: center;
  grid-template-columns: 0.92fr 1.2fr 0.92fr;
}

.guidebook-footer-brand,
.guidebook-footer-message,
.guidebook-footer-copyright {
  min-width: 0;
}

.guidebook-footer-brand {
  display: flex;
  padding-right: 38px;
  justify-content: center;
}

.guidebook-footer-brand img {
  width: min(100%, 310px);
}

.guidebook-footer-message {
  margin: 0;
  padding: 12px 38px;
  border-right: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  font-size: clamp(0.95rem, 1.35vw, 1.25rem);
  font-weight: 500;
  text-align: center;
}

.guidebook-footer-copyright {
  margin: 0;
  padding-left: 48px;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .guidebook-shell {
    width: min(100%, 980px);
    grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  }

  .guidebook-copy {
    padding-left: 12px;
  }

  .guidebook-product {
    grid-row: 1;
    grid-column: 2;
  }

  .guidebook-product img {
    width: min(100%, 400px);
    transform: none;
  }

  .guidebook-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .guidebook-hero {
    padding: 34px 18px;
  }

  .guidebook-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .guidebook-copy {
    padding-left: 0;
    text-align: center;
  }

  .guidebook-copy h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .guidebook-rule {
    margin-inline: auto;
  }

  .guidebook-copy p {
    margin-inline: auto;
  }

  .guidebook-product {
    grid-row: auto;
    grid-column: auto;
  }

  .guidebook-product img {
    width: min(82vw, 300px);
  }

  .guidebook-form {
    grid-column: auto;
  }

  .guidebook-footer-shell {
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .guidebook-footer-brand {
    padding-right: 0;
  }

  .guidebook-footer-brand img {
    width: min(100%, 280px);
  }

  .guidebook-footer-message {
    padding: 18px 12px;
    border-top: 1px solid rgba(var(--gold-rgb), 0.75);
    border-right: 0;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.75);
    border-left: 0;
  }

  .guidebook-footer-copyright {
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .guidebook-name-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .guidebook-form {
    padding: 28px 20px;
  }

  .guidebook-form-embed {
    min-height: 820px;
  }
}

/* Guidebook confirmation page */
.guidebook-confirmation-page {
  min-height: 100vh;
  color: var(--navy);
  background: var(--navy);
}

.guidebook-confirmation-main {
  display: grid;
  min-height: calc(100vh - 168px);
  padding: 84px 24px;
  place-items: center;
  background:
    linear-gradient(115deg, rgba(var(--navy-deep-rgb), 0.94), rgba(var(--navy-rgb), 0.72)),
    url("assets/about-footer-mountains.png") center / cover no-repeat;
}

.guidebook-confirmation-card {
  width: min(100%, 720px);
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid rgba(var(--gold-rgb), 0.56);
  border-radius: 16px;
  background: rgba(var(--white-rgb), 0.98);
  box-shadow: 0 26px 70px rgba(var(--black-rgb), 0.3);
  text-align: center;
}

.guidebook-confirmation-icon {
  display: inline-flex;
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: var(--surface-blue-pale);
  font-size: 2rem;
}

.guidebook-confirmation-eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.guidebook-confirmation-card h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 6vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-shadow: none;
  text-transform: uppercase;
}

.guidebook-confirmation-rule {
  display: block;
  width: 82px;
  height: 2px;
  margin: 26px auto;
  background: var(--gold);
}

.guidebook-confirmation-card > p:not(.guidebook-confirmation-eyebrow) {
  max-width: 580px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 500;
  line-height: 1.7;
}

.guidebook-confirmation-card > p + p {
  margin-top: 14px;
}

.guidebook-confirmation-button {
  min-width: 290px;
  margin-top: 30px;
}

@media (max-width: 560px) {
  .guidebook-confirmation-main {
    padding: 52px 16px;
  }

  .guidebook-confirmation-card {
    padding: 36px 20px;
  }

  .guidebook-confirmation-icon {
    width: 66px;
    height: 66px;
    font-size: 1.7rem;
  }

  .guidebook-confirmation-button {
    width: 100%;
    min-width: 0;
  }
}

/* Shared booking experience */
.calendar-month > span {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.qr-panel {
  display: flex;
  padding-left: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border-left: 1px solid var(--border-soft);
  color: var(--navy);
  text-align: center;
  transition: transform 180ms ease, color 180ms ease;
}

.qr-panel:hover,
.qr-panel:focus-visible {
  color: var(--gold);
  transform: translateY(-2px);
}

.qr-panel strong {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.qr-desktop-label {
  display: inline;
}

.qr-mobile-label {
  display: none;
  white-space: nowrap;
}

.qr-panel > span:last-child {
  max-width: 150px;
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.35;
}

.qr-code {
  position: relative;
  display: block;
  width: 138px;
  height: 138px;
  border: 8px solid var(--white);
  color: var(--navy);
  background-color: var(--white);
  background-image: repeating-conic-gradient(var(--navy) 0 25%, var(--transparent) 0 50%);
  background-size: 13px 13px;
  box-shadow: 0 7px 20px rgba(var(--navy-rgb), 0.14);
}

.qr-code-image {
  object-fit: cover;
  background: var(--navy);
}

.qr-finder {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 5px solid var(--navy);
  background: var(--white);
}

.qr-finder::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 5px;
  left: 5px;
  background: var(--navy);
}

.qr-finder-one {
  top: 4px;
  left: 4px;
}

.qr-finder-two {
  top: 4px;
  right: 4px;
}

.qr-finder-three {
  bottom: 4px;
  left: 4px;
}

.modal-open {
  overflow: hidden;
}

/* Scheduling page */
.schedule-main {
  color: var(--white);
  background: var(--navy);
}

.schedule-hero {
  min-height: calc(100vh - 168px);
  padding: 68px 24px 76px;
  background:
    linear-gradient(110deg, rgba(var(--navy-deep-rgb), 0.95), rgba(var(--navy-rgb), 0.78)),
    url("assets/about-footer-mountains.png") center bottom / cover no-repeat;
}

.schedule-heading {
  width: min(100%, 850px);
  margin: 0 auto 34px;
  text-align: center;
}

.schedule-eyebrow {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.schedule-heading h1 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.schedule-heading > p:last-child {
  max-width: 680px;
  margin: 20px auto 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.schedule-experience {
  display: grid;
  width: min(100%, 1080px);
  margin: 0 auto;
  align-items: stretch;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
}

.schedule-calendar-card,
.schedule-form-card,
.schedule-booking-card,
.schedule-guidebook-card {
  padding: 30px;
  border: 1px solid rgba(var(--gold-rgb), 0.48);
  border-radius: 16px;
  color: var(--navy);
  background: rgba(var(--white-rgb), 0.96);
  box-shadow: 0 22px 60px rgba(var(--black-rgb), 0.2);
}

.schedule-booking-card {
  overflow: hidden;
  grid-column: 1 / -1;
  padding: 24px;
  background: var(--white);
}

.schedule-booking-embed {
  display: block;
  width: 100%;
  min-height: 680px;
  margin-top: -24px;
  border-radius: 10px;
  background: var(--white);
}

@media (min-width: 1025px) {
  .schedule-booking-embed {
    margin-top: -48px;
  }
}

.schedule-guidebook-card {
  display: grid;
  grid-column: 1 / -1;
  padding: 38px 48px;
  align-items: center;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 52px;
  background: var(--white);
}

.schedule-guidebook-visual {
  display: flex;
  width: 100%;
  max-width: 280px;
  padding: 0;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.schedule-guidebook-visual img {
  display: block;
  width: min(100%, 220px);
  height: auto;
  border-radius: 4px;
}

.schedule-guidebook-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-transform: uppercase;
}

.schedule-guidebook-eyebrow {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-guidebook-copy > p:not(.schedule-guidebook-eyebrow) {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
}

.schedule-guidebook-copy > p:not(.schedule-guidebook-eyebrow) + p:not(.schedule-guidebook-eyebrow) {
  margin-top: 1.65em;
}

.schedule-card-heading {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  gap: 14px;
}

.schedule-card-heading > .site-icon {
  width: 46px;
  height: 46px;
  color: var(--gold);
}

.schedule-heading-icon {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.schedule-card-heading p,
.schedule-card-heading h2 {
  margin: 0;
}

.schedule-card-heading p {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.schedule-card-heading h2 {
  font-size: 1rem;
  font-weight: 800;
}

.schedule-calendar-month {
  margin-bottom: 12px;
}

.schedule-calendar-table {
  font-size: 0.88rem;
}

.schedule-calendar-table th {
  padding: 8px 3px;
  font-size: 0.65rem;
}

.schedule-calendar-table td {
  height: 42px;
}

.schedule-calendar-table td span {
  width: 30px;
  height: 30px;
}

.schedule-calendar-note {
  margin: 17px 0 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-align: center;
}

.schedule-calendar-brand {
  display: block;
  width: 104px;
  height: auto;
  margin: 28px auto 0;
}

.schedule-form-card h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.schedule-form-card > p {
  margin: 5px 0 20px;
  font-size: 0.88rem;
  font-weight: 500;
}

.schedule-field label,
.schedule-form-card legend {
  display: block;
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.schedule-fields-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.schedule-field input {
  width: 100%;
  height: 48px;
  margin: 0 0 16px;
  padding: 0 14px;
  border: 1px solid rgba(var(--navy-rgb), 0.24);
  border-radius: 5px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
}

.schedule-date-field {
  margin-top: 0;
}

.calendar-date-button {
  display: inline-flex;
  width: 30px;
  height: 30px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--transparent);
  border-radius: 50%;
  color: var(--navy);
  background: var(--transparent);
  font: inherit;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.calendar-date-button:hover,
.calendar-date-button:focus-visible {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.12);
}

.calendar-date-button.is-past,
.calendar-date-button.is-weekend {
  color: var(--text-placeholder);
  cursor: not-allowed;
}

.calendar-date-button.is-past:hover,
.calendar-date-button.is-past:focus-visible,
.calendar-date-button.is-weekend:hover,
.calendar-date-button.is-weekend:focus-visible {
  border-color: var(--border-disabled);
  color: var(--text-disabled);
  background: var(--surface-disabled);
  box-shadow: none;
}

.calendar-date-button[aria-current="date"] {
  color: var(--white);
  background: var(--navy);
}

.calendar-date-button[aria-pressed="true"] {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.22);
}

.schedule-form-card fieldset {
  margin: 2px 0 20px;
  padding: 0;
  border: 0;
}

.schedule-times {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.schedule-times label {
  cursor: pointer;
}

.schedule-times input {
  position: absolute;
  opacity: 0;
}

.schedule-times span {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
}

.schedule-times input:checked + span,
.schedule-times input:focus-visible + span {
  color: var(--white);
  background: var(--navy);
}

.schedule-submit {
  width: 100%;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.schedule-form-status {
  margin: 14px 0 0 !important;
  padding: 10px 12px;
  border-radius: 5px;
  color: var(--navy);
  background: var(--surface-blue-pale);
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  text-align: center;
}

.schedule-consent-dialog {
  width: min(calc(100% - 32px), 570px);
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 16px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(var(--black-rgb), 0.34);
}

.schedule-consent-dialog::backdrop {
  background: rgba(var(--navy-deep-rgb), 0.78);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.schedule-consent-card {
  position: relative;
  padding: 38px;
  text-align: center;
}

.schedule-consent-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--surface-blue-pale);
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.schedule-consent-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: var(--surface-blue-pale);
  font-size: 1.55rem;
}

.schedule-consent-eyebrow {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-consent-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}

.schedule-consent-card > p:not(.schedule-consent-eyebrow) {
  margin: 18px auto 24px;
  max-width: 470px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.65;
}

.schedule-consent-actions {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 12px;
}

.schedule-consent-back,
.schedule-consent-submit {
  min-height: 50px;
  font-family: inherit;
  cursor: pointer;
}

.schedule-consent-back {
  border: 1px solid rgba(var(--navy-rgb), 0.3);
  border-radius: 5px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.schedule-consent-submit {
  width: 100%;
  border: 0;
}

@media (max-width: 760px) {
  .scheduler-preview {
    grid-template-columns: 1fr;
  }

  .qr-panel {
    padding: 18px 0 0;
    border-top: 1px solid var(--border-soft);
    border-left: 0;
  }

  .qr-desktop-label {
    display: none;
  }

  .qr-mobile-label {
    display: inline;
  }

  .schedule-hero {
    padding: 48px 16px 56px;
  }

  .schedule-experience {
    grid-template-columns: 1fr;
  }

  .schedule-guidebook-card {
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .schedule-guidebook-visual img {
    width: min(100%, 180px);
  }

  .schedule-calendar-brand {
    display: none;
  }

}

@media (max-width: 480px) {
  .schedule-calendar-card,
  .schedule-form-card,
  .schedule-guidebook-card {
    padding: 22px 16px;
  }

  .schedule-calendar-table td {
    height: 36px;
  }

  .schedule-times {
    grid-template-columns: 1fr;
  }

  .schedule-fields-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .schedule-consent-card {
    padding: 34px 20px 24px;
  }

  .schedule-consent-actions {
    grid-template-columns: 1fr;
  }
}

/* 404 page */
.error-page {
  min-height: 100vh;
  background: var(--navy);
}

.error-main {
  color: var(--white);
  background: var(--navy);
}

.error-hero {
  display: grid;
  min-height: calc(100vh - 168px);
  padding: 82px 24px 76px;
  place-items: center;
  background:
    linear-gradient(110deg, rgba(var(--navy-deep-rgb), 0.95), rgba(var(--navy-rgb), 0.78)),
    url("assets/about-footer-mountains.png") center bottom / cover no-repeat;
}

.error-content {
  width: min(100%, 860px);
  text-align: center;
}

.error-mark {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.error-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.error-code {
  margin: 0;
  color: var(--gold);
  font-size: clamp(7rem, 18vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.72;
  text-shadow: 0 12px 34px rgba(var(--black-rgb), 0.3);
}

.error-content h1 {
  max-width: 820px;
  margin: 42px auto 0;
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-shadow: none;
  text-transform: uppercase;
}

.error-divider {
  width: 82px;
  height: 1px;
  margin: 26px auto;
  background: var(--gold);
}

.error-copy {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(var(--white-rgb), 0.9);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 500;
  line-height: 1.75;
}

.error-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 560px) {
  .schedule-booking-card {
    padding: 12px;
  }

  .schedule-booking-embed {
    min-height: 760px;
    margin-top: 0;
  }

  .error-hero {
    padding: 64px 18px 58px;
  }

  .error-actions {
    flex-direction: column;
  }

  .error-actions .button {
    width: min(100%, 330px);
  }
}

/* Expanded shared navigation for Program and Workshops. */
.site-nav { gap: 24px; }
.nav-actions { gap: clamp(16px, 2vw, 28px); }
.nav-actions .nav-link { white-space: nowrap; }
.nav-actions .button-small { min-height: 44px; padding-inline: 18px; font-size: .75rem; }
.nav-link[aria-current="page"], .footer-nav a[aria-current="page"] { color: var(--gold); }
.footer-shell { padding-block: 28px 22px; gap: 22px 32px; }
.footer-nav { display: flex; justify-content: flex-end; align-items: center; flex-wrap: wrap; gap: 14px 26px; }
.footer-nav a { min-height: 32px; display: inline-flex; align-items: center; font-size: .76rem; font-weight: 700; text-transform: uppercase; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--gold); }
.footer-meta { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(var(--gold-rgb), .22); }
@media (max-width: 1100px) {
  .site-nav { min-height: 86px; padding: 10px 18px; align-items: center; }
  .about-topbar { min-height: 86px; }
  .about-topbar .site-nav { padding-bottom: 10px; }
  .brand img { width: 210px; }
  .menu-toggle { display: inline-flex; flex: 0 0 auto; }
  .nav-actions {
    position: absolute; top: calc(100% + 8px); right: 16px;
    display: flex; width: min(340px, calc(100vw - 32px)); max-height: calc(100dvh - 110px); overflow-y: auto;
    padding: 16px; align-items: stretch; flex-direction: column; gap: 8px;
    border: 1px solid rgba(var(--gold-rgb), .35); border-radius: 9px;
    background: rgba(var(--navy-deep-rgb), .98); box-shadow: 0 14px 34px rgba(var(--ink-deep-rgb), .38);
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
  .site-nav.menu-open .nav-actions { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .nav-actions .nav-link { display: flex; min-height: 44px; padding: 10px 12px; align-items: center; justify-content: center; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; }
  .nav-dropdown-menu { position: static; width: 100%; min-width: 0; margin-top: 4px; border-color: rgba(var(--gold-rgb), .24); box-shadow: none; transform: none; }
  .nav-dropdown-menu a { justify-content: center; }
  .nav-actions .button-small { width: 100%; }
  .nav-actions .button-small .text { white-space: normal; }
}
@media (max-width: 760px) {
  .footer-shell { grid-template-columns: 1fr; justify-items: center; }
  .footer-nav { justify-content: center; gap: 10px 20px; }
  .footer-meta { width: 100%; }
}
@media (max-width: 380px) {
  .brand img { width: 185px; }
}
