:root {
  --ink: #121310;
  --ink-soft: #1d201b;
  --paper: #f2f0e8;
  --paper-strong: #fffdf6;
  --orange: #f1bf35;
  --yellow: #f1bf35;
  --blue: #f1bf35;
  --green: #1d201b;
  --line: rgba(18, 19, 16, 0.18);
  --light-line: rgba(255, 253, 246, 0.2);
  --page-x: 64px;
  --display: "Bahnschrift SemiCondensed", "Arial Narrow", Arial, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
}

.section-shell {
  padding-right: var(--page-x);
  padding-left: var(--page-x);
}

.section-code {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 30px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.section-code::before {
  width: 34px;
  height: 4px;
  content: "";
  background: currentColor;
}

.button {
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.round-action:focus-visible,
.text-link:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
}

.button-primary:hover {
  color: var(--paper-strong);
  background: var(--ink);
}

.button-small {
  min-height: 46px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--yellow);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  border: 0;
  color: inherit;
  background: transparent;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 22px;
}

.round-action {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  font-size: 25px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.round-action:hover {
  color: var(--paper-strong);
  background: var(--ink);
  transform: rotate(45deg);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  min-height: 76px;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 10px var(--page-x);
  color: var(--paper-strong);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    min-height 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  top: 0;
  right: 0;
  left: 0;
  min-height: 66px;
  padding: 10px var(--page-x);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: rgba(18, 19, 16, 0.92);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  width: 210px;
  gap: 0;
  text-decoration: none;
}

.brand-type {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand img {
  width: 175px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.nav a {
  position: relative;
  min-height: 44px;
  padding-top: 14px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-phone {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  overflow: hidden;
  color: var(--paper-strong);
  background: #677c83;
  isolation: isolate;
}

.hero-media,
.hero-media picture {
  position: absolute;
  z-index: -3;
  inset: 0;
  display: block;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  will-change: transform;
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 16, 0.78) 0%, rgba(12, 18, 16, 0.5) 33%, rgba(12, 18, 16, 0.05) 66%),
    linear-gradient(0deg, rgba(12, 18, 16, 0.78) 0%, transparent 35%);
}

.hero-coordinate {
  position: absolute;
  top: 112px;
  right: var(--page-x);
  display: flex;
  gap: 22px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
}

.hero-coordinate span {
  padding: 6px 9px;
  background: rgba(255, 253, 246, 0.82);
  backdrop-filter: blur(8px);
}

.hero-coordinate span:nth-child(2) {
  color: var(--ink);
  background: var(--orange);
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: var(--page-x);
  width: 670px;
  transform: translateY(-46%);
}

.hero-overline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-overline::before {
  width: 38px;
  height: 4px;
  content: "";
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 86px;
  font-weight: 900;
  line-height: 0.83;
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
  white-space: nowrap;
}

.hero h1 img {
  width: 565px;
  margin-top: 8px;
}

.hero-lead {
  width: 590px;
  margin: 34px 0 0;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.hero-dashboard {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 102px;
  grid-template-columns: repeat(3, 1fr) 1.25fr;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(18, 19, 16, 0.76);
  backdrop-filter: blur(16px);
}

.hero-dashboard > div,
.hero-dashboard > a {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-dashboard span {
  color: rgba(255, 253, 246, 0.62);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-dashboard strong {
  font-family: var(--display);
  font-size: 19px;
  text-transform: uppercase;
}

.hero-dashboard > a {
  position: relative;
  grid-template-columns: 1fr 56px;
  align-items: center;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-dashboard i {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.hero-dashboard i::before,
.hero-dashboard i::after {
  position: absolute;
  content: "";
}

.hero-dashboard i::before {
  top: 13px;
  left: 23px;
  width: 1px;
  height: 19px;
  background: currentColor;
}

.hero-dashboard i::after {
  bottom: 13px;
  left: 19px;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.manifesto {
  display: grid;
  grid-template-columns: 0.7fr 2.3fr;
  gap: 70px;
  padding: 118px var(--page-x) 128px;
  color: var(--ink);
  background: var(--yellow);
}

.manifesto-label {
  display: grid;
  align-content: start;
  gap: 8px;
  padding-top: 11px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.manifesto-label span:last-child {
  color: rgba(18, 19, 16, 0.58);
}

.manifesto-copy {
  max-width: 1180px;
  margin: 0;
  font-family: var(--display);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.formats {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(620px, 1.6fr);
  gap: 90px;
  padding-top: 140px;
  padding-bottom: 150px;
  color: var(--paper-strong);
  background: var(--ink);
}

.formats-heading {
  position: sticky;
  top: 100px;
  align-self: start;
}

.formats-heading h2,
.journey-heading h2,
.routes-title h2,
.photo-ticker-heading h2,
.bikes-heading h2,
.certificate-heading h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 62px;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.format-list {
  border-top: 1px solid var(--light-line);
}

.format-row {
  display: grid;
  min-height: 220px;
  grid-template-columns: 54px 1fr 58px;
  align-items: center;
  gap: 30px;
  padding: 42px 0;
  border-bottom: 1px solid var(--light-line);
}

.format-marker {
  align-self: start;
  padding-top: 7px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
}

.format-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
}

.format-row p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 253, 246, 0.64);
}

.formats .round-action:hover {
  color: var(--ink);
  background: var(--yellow);
}

.journey {
  position: relative;
  overflow: hidden;
  color: var(--paper-strong);
  background: var(--ink);
}

.journey-heading {
  padding-top: 138px;
  padding-bottom: 130px;
}

.journey-heading .section-code {
  color: var(--yellow);
}

.journey-heading h2 {
  max-width: 850px;
  font-size: 78px;
}

.journey-route {
  position: absolute;
  z-index: 1;
  top: 390px;
  bottom: 160px;
  left: 50%;
  width: 300px;
  pointer-events: none;
  transform: translateX(-50%);
}

.journey-route-line {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.journey-route-shadow,
.journey-route-path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.journey-route-shadow {
  stroke: rgba(241, 191, 53, 0.14);
  stroke-width: 28;
}

.journey-route-path {
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-width: 7;
}

.journey-sign {
  --sign-size: 52px;
  position: absolute;
  z-index: 2;
  display: flex;
  width: var(--sign-size);
  height: var(--sign-size);
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  opacity: 1;
  transform: translate(-50%, -50%);
}

.journey-sign::before {
  position: absolute;
  top: 50%;
  width: var(--link-width, 54px);
  border-top: 3px dotted var(--yellow);
  content: "";
  transform: translateY(-50%);
}

.journey-sign-start {
  top: 7.9%;
  left: 84%;
  --link-width: 55px;
}

.journey-sign-protection {
  top: 30.9%;
  left: 11%;
  --link-width: 50px;
}

.journey-sign-location {
  top: 56.4%;
  left: 88%;
  --link-width: 55px;
}

.journey-sign-camp {
  top: 87%;
  left: 12%;
  width: 92px;
  --link-width: 76px;
}

.journey-sign-start::before,
.journey-sign-location::before {
  right: calc(100% + 8px);
}

.journey-sign-protection::before,
.journey-sign-camp::before {
  left: calc(100% + 8px);
}

.journey-lucide-icon {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.journey-lucide-tent {
  width: 52px;
  flex: 0 0 52px;
}

.journey-lucide-fire {
  width: 42px;
  flex: 0 0 42px;
}

.journey-stage {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 860px;
  grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: 90px var(--page-x);
}

.journey-stage figure {
  position: relative;
  height: 690px;
  margin: 0;
  overflow: hidden;
  background: #292b26;
  grid-column: 1;
}

.journey-stage figure::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.journey-stage img {
  width: 100%;
  height: 114%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.journey-stage figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 20px;
  left: 24px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-copy {
  max-width: 500px;
  grid-column: 3;
}

.journey-copy > span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-copy h3 {
  margin: 28px 0 24px;
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
}

.journey-copy p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 253, 246, 0.7);
  font-size: 18px;
}

.journey-stage-reverse figure {
  grid-column: 3;
}

.journey-stage-reverse .journey-copy {
  grid-row: 1;
  grid-column: 1;
  justify-self: end;
  padding-right: 30px;
}

.routes {
  padding-top: 138px;
  padding-bottom: 0;
  color: var(--paper-strong);
  background: var(--ink);
}

.routes-title {
  padding-bottom: 90px;
}

.routes-title h2 {
  font-size: 76px;
}

.route-board {
  border-top: 1px solid var(--light-line);
}

.route-entry {
  display: grid;
  min-height: 190px;
  grid-template-columns: 200px minmax(300px, 1.1fr) minmax(330px, 1fr) 70px;
  align-items: center;
  gap: 42px;
  padding: 34px var(--page-x);
  border-bottom: 1px solid var(--light-line);
  transition:
    color 220ms ease,
    background 220ms ease;
}

.route-entry:hover,
.route-entry-featured {
  color: var(--ink);
  background: var(--yellow);
}

.route-entry-featured:hover {
  color: var(--paper-strong);
  background: #292b26;
}

.route-time {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 9px;
}

.route-time strong {
  font-family: var(--display);
  font-size: 58px;
  line-height: 0.8;
}

.route-time span,
.route-name span {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.route-name h3 {
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
}

.route-entry p {
  max-width: 500px;
  margin: 0;
}

.occasion {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--paper-strong);
  background: var(--ink);
}

.occasion > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.occasion-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 15, 13, 0.88) 0%, rgba(12, 15, 13, 0.45) 48%, rgba(12, 15, 13, 0.08) 76%),
    linear-gradient(0deg, rgba(12, 15, 13, 0.6), transparent 60%);
}

.occasion-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 900px;
  width: 660px;
  flex-direction: column;
  justify-content: center;
  padding: 110px var(--page-x);
}

.occasion-copy .section-code {
  color: var(--yellow);
}

.occasion-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 70px;
  line-height: 0.92;
  text-transform: uppercase;
}

.occasion-copy p:not(.section-code) {
  max-width: 520px;
  margin: 34px 0;
  font-size: 18px;
}

.occasion-copy .button {
  align-self: flex-start;
}

.photo-ticker {
  overflow: hidden;
  padding: 128px 0 120px;
  color: var(--paper-strong);
  background: var(--ink);
}

.photo-ticker-heading {
  margin-bottom: 80px;
}

.photo-ticker-heading .section-code {
  color: var(--yellow);
}

.photo-ticker-heading h2 {
  font-size: 72px;
}

.photo-lane {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px var(--page-x);
  color: rgba(255, 253, 246, 0.52);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
}

.photo-lane i {
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 48px, transparent 48px 76px);
}

.photo-lane-bottom {
  margin-top: 10px;
}

.photo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 14px 0;
  animation: trip-flow 98s linear infinite;
  will-change: transform;
}

.photo-track-reverse {
  animation-name: trip-flow-reverse;
}

.photo-track figure,
.photo-track figure.photo-card-landscape {
  position: relative;
  width: 340px;
  height: 420px;
  flex: 0 0 340px;
  margin: 0;
  overflow: hidden;
  background: #252721;
}

.photo-track figure:nth-child(4n + 2) {
  width: 500px;
  flex-basis: 500px;
}

.photo-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.photo-track figure:hover img {
  transform: scale(1.045);
}

@keyframes trip-flow {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes trip-flow-reverse {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.equipment {
  display: grid;
  grid-template-columns: 0.95fr 1.45fr;
  gap: 90px;
  padding: 140px var(--page-x);
  color: var(--paper-strong);
  background: var(--ink);
}

.equipment-heading {
  position: sticky;
  top: 100px;
  align-self: start;
}

.equipment-heading .section-code {
  color: var(--yellow);
}

.equipment-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 62px;
  line-height: 0.95;
  text-transform: uppercase;
}

.equipment-heading > p:last-child {
  max-width: 500px;
  margin: 30px 0 0;
  color: rgba(255, 253, 246, 0.72);
}

.equipment-list {
  border-top: 1px solid var(--paper-strong);
}

.equipment-list article {
  display: grid;
  min-height: 150px;
  grid-template-columns: 54px 0.8fr 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 253, 246, 0.62);
}

.equipment-list span {
  color: var(--yellow);
  font-family: var(--display);
  font-weight: 900;
}

.equipment-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
}

.equipment-list p {
  margin: 0;
  color: rgba(255, 253, 246, 0.7);
}

.bikes {
  padding-top: 140px;
  padding-bottom: 150px;
  color: var(--paper-strong);
  background: var(--ink);
}

.bikes-heading {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 95px;
}

.bikes-heading .section-code {
  margin-bottom: 8px;
  color: var(--orange);
}

.bike-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}

.bike-row {
  position: relative;
  display: grid;
  height: 780px;
  min-height: 0;
  grid-template-columns: 1fr;
  grid-template-rows: auto 285px auto 1fr;
  align-content: space-between;
  align-items: start;
  gap: 30px;
  padding: 34px;
  border: 0;
  border-right: 1px solid var(--light-line);
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.bike-row:last-child {
  border-right: 0;
}

.bike-row::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 9px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms ease;
}

.bike-row:nth-child(2)::before {
  background: var(--blue);
}

.bike-row:nth-child(3)::before {
  background: var(--yellow);
}

.bike-row:hover::before {
  transform: scaleX(1);
}

.bike-row .bike-index {
  color: rgba(255, 253, 246, 0.08);
  font-family: var(--display);
  font-size: 132px;
  font-weight: 900;
  line-height: 0.8;
}

.bike-row small {
  color: var(--orange);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bike-row:nth-child(2) small {
  color: var(--blue);
}

.bike-row:nth-child(3) small {
  color: #947000;
}

.bike-row h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 46px;
  line-height: 0.92;
  text-transform: uppercase;
}

.bike-row p {
  margin: 0;
  padding: 0;
  color: rgba(255, 253, 246, 0.62);
}

.bike-row p::before {
  content: none;
}

.bike-row:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.bike-spin {
  position: relative;
  width: 100%;
  height: 285px;
  overflow: hidden;
  background: var(--paper-strong);
  perspective: 900px;
  isolation: isolate;
}

.bike-spin::after {
  position: absolute;
  right: 16%;
  bottom: 18px;
  left: 16%;
  height: 14px;
  content: "";
  border-radius: 50%;
  background: rgba(18, 19, 16, 0.14);
  filter: blur(11px);
}

.bike-spin img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: rotateY(-16deg) scale(0.94);
  transition:
    opacity 500ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.bike-spin img.is-active {
  opacity: 1;
  transform: rotateY(0) scale(1);
}

.bike-spin > span {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
}

.certificate {
  display: block;
  min-height: 0;
  padding: 140px 0 150px;
  color: var(--paper-strong);
  background: var(--ink-soft);
}

.certificate-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 90px;
}

.certificate-heading .section-code {
  margin-bottom: 8px;
  color: var(--yellow);
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 var(--page-x);
  background: rgba(255, 253, 246, 0.2);
}

.certificate-option {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--ink-soft);
}

.certificate-preview {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #2a2c27;
}

.certificate-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.certificate-option:hover .certificate-preview img {
  transform: scale(1.035);
}

.certificate-copy {
  display: flex;
  min-height: 330px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid rgba(255, 253, 246, 0.2);
  border-top: 0;
}

.certificate-copy > span {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.certificate-copy h3 {
  margin: 22px 0 16px;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.certificate-copy p {
  margin: 0 0 28px;
  color: rgba(255, 253, 246, 0.64);
}

.certificate-copy .text-link {
  margin-top: auto;
  color: var(--yellow);
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  padding-top: 140px;
  padding-bottom: 150px;
  color: var(--paper-strong);
  background: var(--ink);
}

.faq-heading {
  position: sticky;
  top: 100px;
  align-self: start;
}

.faq-heading .section-code {
  color: var(--orange);
}

.faq-list {
  display: block;
  gap: 0;
  border-top: 1px solid var(--light-line);
}

.faq-list details {
  border: 0;
  border-bottom: 1px solid var(--light-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 106px;
  align-items: center;
  padding: 24px 64px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 22px;
  height: 2px;
  content: "";
  background: var(--yellow);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details > p {
  max-width: 680px;
  margin: -4px 0 0;
  padding: 0 80px 30px 0;
  color: rgba(255, 253, 246, 0.64);
}

.contact {
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.35fr 0.65fr;
}

.contact-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 110px var(--page-x);
  color: var(--ink);
  background: var(--yellow);
}

.contact-main h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 84px;
  line-height: 0.88;
  text-transform: uppercase;
}

.contact-main > p:not(.section-code) {
  max-width: 650px;
  margin: 34px 0;
  font-size: 18px;
}

.contact-phone {
  margin-bottom: 36px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.contact-main .button-primary {
  color: var(--paper-strong);
  background: var(--ink);
}

.contact-main .button-primary:hover {
  color: var(--ink);
  background: var(--yellow);
}

.contact-aside {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 90px 44px 44px;
  color: var(--paper-strong);
  background: var(--ink);
}

.contact-wordmark span {
  display: block;
  margin-bottom: 15px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-wordmark img {
  width: 100%;
  max-width: 390px;
}

.contact-socials {
  display: grid;
  border-top: 1px solid var(--paper-strong);
}

.contact-socials a {
  min-height: 58px;
  padding-top: 18px;
  border-bottom: 1px solid rgba(255, 253, 246, 0.55);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px var(--page-x);
  color: rgba(255, 253, 246, 0.62);
  background: var(--ink);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer a {
  min-height: 44px;
  padding-top: 13px;
  color: var(--paper-strong);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mobile-booking-bar {
  display: none;
}

/* Form */
.modal {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 10, 0.78);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(660px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 42px;
  border-radius: 0;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.modal-panel .eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-panel h2 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
}

.icon-button {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 25px;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 19, 16, 0.38);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--body);
  font-size: 16px;
  text-transform: none;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(22, 132, 197, 0.24);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkbox {
  grid-template-columns: 22px 1fr;
  align-items: start;
  font-family: var(--body) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

.checkbox input {
  width: 20px;
  min-height: 20px;
  margin: 0;
}

.button-wide {
  width: 100%;
  color: var(--paper-strong);
  background: var(--ink);
}

.form-message {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
}

.form-message.is-success {
  color: var(--green);
}

.form-message.is-error {
  color: #b52720;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  :root {
    --page-x: 34px;
  }

  .site-header {
    grid-template-columns: 190px 1fr auto;
    gap: 20px;
  }

  .nav {
    gap: 20px;
  }

  .header-phone {
    display: none;
  }

  .hero-copy {
    width: 600px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero h1 img {
    width: 475px;
  }

  .manifesto-copy {
    font-size: 46px;
  }

  .formats {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 55px;
  }

  .formats-heading h2,
  .equipment-heading h2,
  .bikes-heading h2,
  .certificate-heading h2,
  .faq-heading h2 {
    font-size: 50px;
  }

  .journey-heading h2,
  .routes-title h2,
  .photo-ticker-heading h2 {
    font-size: 64px;
  }

  .route-entry {
    grid-template-columns: 150px minmax(250px, 1fr) minmax(250px, 1fr) 58px;
    gap: 26px;
  }

  .route-time strong {
    font-size: 46px;
  }

  .bike-row {
    min-height: 540px;
    padding: 26px;
  }

  .bike-index {
    font-size: 104px;
  }

  .bike-row h3 {
    font-size: 38px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-x: 18px;
  }

  body {
    font-size: 16px;
  }

  .site-header,
  .site-header.is-scrolled {
    top: 0;
    right: 0;
    left: 0;
    min-height: 68px;
    grid-template-columns: 1fr auto;
    padding: 8px var(--page-x);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: rgba(18, 19, 16, 0.9);
    box-shadow: none;
    backdrop-filter: blur(14px);
  }

  .brand {
    width: 160px;
  }

  .brand-type {
    font-size: 9px;
  }

  .brand img {
    width: 142px;
  }

  .nav,
  .header-phone {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .header-actions .button-small {
    display: inline-grid;
    place-items: center;
    min-height: 44px;
    padding: 0 15px;
    font-size: 12px;
  }

  .hero {
    display: grid;
    min-height: 930px;
    height: auto;
    grid-template-rows: 58svh auto auto;
    padding: 68px 0 0;
    background: var(--ink);
  }

  .hero::after {
    content: none;
  }

  .hero-media {
    position: relative;
    z-index: 0;
    inset: auto;
    display: block;
    width: 100%;
    height: 58svh;
    grid-row: 1;
    margin: 0;
    padding: 0;
    transform: none;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center center;
  }

  .hero-shade {
    display: none;
  }

  .hero-coordinate {
    z-index: 2;
    top: 82px;
    right: var(--page-x);
    gap: 7px;
  }

  .hero-coordinate span {
    padding: 5px 7px;
    font-size: 9px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    grid-row: 2;
    padding: 34px var(--page-x) 38px;
    transform: none;
  }

  .hero-overline {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 0.9;
  }

  .hero h1 > span {
    white-space: normal;
  }

  .hero h1 img {
    width: 310px;
    margin-top: 7px;
  }

  .hero-lead {
    width: auto;
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-dashboard {
    position: relative;
    grid-row: 3;
    grid-template-columns: 1fr 1fr;
  }

  .hero-dashboard > div,
  .hero-dashboard > a {
    min-height: 84px;
    padding: 15px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-dashboard > div:nth-child(3) {
    display: none;
  }

  .hero-dashboard > a {
    grid-column: 1 / -1;
    min-height: 64px;
  }

  .manifesto {
    display: block;
    padding: 72px var(--page-x) 78px;
  }

  .manifesto-label {
    margin-bottom: 32px;
  }

  .manifesto-copy {
    font-size: 34px;
  }

  .formats {
    display: block;
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .formats-heading,
  .equipment-heading,
  .faq-heading {
    position: static;
  }

  .formats-heading {
    margin-bottom: 58px;
  }

  .formats-heading h2,
  .equipment-heading h2,
  .bikes-heading h2,
  .certificate-heading h2,
  .faq-heading h2 {
    font-size: 40px;
  }

  .format-row {
    min-height: 0;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    padding: 32px 0;
  }

  .format-row .round-action {
    grid-column: 2;
    width: 50px;
    height: 50px;
    margin-top: 8px;
  }

  .format-row h3 {
    font-size: 32px;
  }

  .journey-heading {
    padding-top: 82px;
    padding-bottom: 66px;
  }

  .journey-heading h2,
  .routes-title h2,
  .photo-ticker-heading h2 {
    font-size: 45px;
  }

  .journey-route {
    top: 310px;
    bottom: 80px;
    left: 0;
    width: 104px;
    transform: none;
  }

  .journey-sign {
    --sign-size: 36px;
  }

  .journey-sign-start,
  .journey-sign-location {
    left: 88%;
    --link-width: 26px;
  }

  .journey-sign-protection {
    left: 74px;
    --link-width: 25px;
  }

  .journey-sign-protection::before {
    right: calc(100% + 8px);
    left: auto;
  }

  .journey-sign-camp {
    left: 29px;
    width: 58px;
    --link-width: 28px;
  }

  .journey-sign::before {
    border-top-width: 2px;
  }

  .journey-lucide-tent {
    width: 32px;
    flex-basis: 32px;
  }

  .journey-lucide-fire {
    width: 25px;
    flex-basis: 25px;
  }

  .journey-stage,
  .journey-stage-reverse {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 30px;
    padding: 0 var(--page-x) 110px 116px;
  }

  .journey-stage::before {
    content: none;
  }

  .journey-stage figure,
  .journey-stage-reverse figure {
    width: 100%;
    height: 520px;
    grid-column: auto;
    order: 1;
  }

  .journey-stage .journey-copy,
  .journey-stage-reverse .journey-copy {
    max-width: none;
    grid-row: auto;
    grid-column: auto;
    order: 2;
    padding: 0;
  }

  .journey-copy h3 {
    margin: 18px 0;
    font-size: 34px;
  }

  .journey-copy p {
    font-size: 16px;
  }

  .routes {
    padding-top: 82px;
  }

  .routes-title {
    padding-bottom: 58px;
  }

  .route-entry {
    min-height: 0;
    grid-template-columns: 1fr 54px;
    gap: 24px 18px;
    padding: 28px var(--page-x);
  }

  .route-time {
    align-self: start;
  }

  .route-time strong {
    font-size: 42px;
  }

  .route-name {
    grid-column: 1;
  }

  .route-name h3 {
    font-size: 31px;
  }

  .route-entry p {
    grid-column: 1;
  }

  .route-entry .round-action {
    grid-row: 1 / 4;
    grid-column: 2;
    align-self: center;
    width: 52px;
    height: 52px;
  }

  .occasion,
  .occasion-copy {
    min-height: 760px;
  }

  .occasion > img {
    object-position: 58% center;
  }

  .occasion-copy {
    width: auto;
    justify-content: flex-end;
    padding: 90px var(--page-x) 70px;
  }

  .occasion-shade {
    background: linear-gradient(0deg, rgba(12, 15, 13, 0.94) 0%, rgba(12, 15, 13, 0.2) 78%);
  }

  .occasion-copy h2 {
    font-size: 46px;
  }

  .photo-ticker {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .photo-ticker-heading {
    margin-bottom: 52px;
  }

  .photo-lane {
    padding-right: var(--page-x);
    padding-left: var(--page-x);
  }

  .photo-track {
    gap: 10px;
    padding: 8px 0;
    animation-duration: 80s;
  }

  .photo-track figure,
  .photo-track figure.photo-card-landscape,
  .photo-track figure:nth-child(4n + 2) {
    width: 250px;
    height: 330px;
    flex-basis: 250px;
  }

  .equipment {
    display: block;
    padding: 82px var(--page-x) 88px;
  }

  .equipment-heading {
    margin-bottom: 56px;
  }

  .equipment-list article {
    min-height: 0;
    grid-template-columns: 34px 1fr;
    gap: 10px 16px;
    padding: 26px 0;
  }

  .equipment-list h3 {
    font-size: 24px;
  }

  .equipment-list p {
    grid-column: 2;
  }

  .bikes {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .bikes-heading,
  .certificate-heading {
    display: block;
    margin-bottom: 58px;
  }

  .bikes-heading .section-code,
  .certificate-heading .section-code {
    margin-bottom: 30px;
  }

  .bike-list {
    display: block;
  }

  .bike-row {
    height: 700px;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 245px auto 1fr;
    padding: 28px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .bike-row:last-child {
    border-bottom: 0;
  }

  .bike-index {
    font-size: 96px;
  }

  .bike-row h3 {
    font-size: 38px;
  }

  .bike-spin {
    height: 245px;
  }

  .certificate {
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .certificate-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 var(--page-x) 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .certificate-grid::-webkit-scrollbar {
    display: none;
  }

  .certificate-option {
    width: calc(100vw - 52px);
    flex: 0 0 calc(100vw - 52px);
    scroll-snap-align: start;
  }

  .certificate-copy {
    min-height: 310px;
    padding: 24px;
  }

  .certificate-copy h3 {
    font-size: 31px;
  }

  .faq {
    display: block;
    padding-top: 82px;
    padding-bottom: 88px;
  }

  .faq-heading {
    margin-bottom: 58px;
  }

  .faq-list summary {
    min-height: 88px;
    font-size: 20px;
  }

  .faq-list details > p {
    padding-right: 42px;
  }

  .contact {
    display: block;
    min-height: 0;
  }

  .contact-main {
    min-height: 620px;
    padding: 78px var(--page-x);
  }

  .contact-main h2 {
    font-size: 50px;
  }

  .contact-phone {
    font-size: 27px;
  }

  .contact-aside {
    min-height: 430px;
    padding: 62px var(--page-x) 28px;
  }

  .contact-wordmark img {
    width: 320px;
  }

  .site-footer {
    display: grid;
    min-height: 140px;
    gap: 6px;
    padding: 28px var(--page-x) 96px;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 90;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 8px;
    display: grid;
    min-height: 58px;
    grid-template-columns: 0.7fr 1.3fr;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(18, 19, 16, 0.94);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, calc(100% + 20px), 0);
    transition:
      opacity 200ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(14px);
  }

  .mobile-booking-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .mobile-booking-bar a,
  .mobile-booking-bar button {
    display: grid;
    min-height: 58px;
    place-items: center;
    border: 0;
    color: var(--paper-strong);
    background: transparent;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-booking-bar button {
    color: var(--ink);
    background: var(--yellow);
  }

  .modal {
    align-items: end;
    padding: 8px;
  }

  .modal-panel {
    width: 100%;
    max-height: calc(100svh - 16px);
    padding: 32px 20px;
  }

  .modal-panel h2 {
    padding-right: 46px;
    font-size: 34px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Expedition roadbook concept */

:root {
  --ink: #0b0d0b;
  --ink-soft: #151813;
  --paper: #eceae1;
  --paper-strong: #fffdf5;
  --yellow: #f5c33b;
  --orange: #f5c33b;
  --blue: #f5c33b;
  --route-dim: rgba(245, 195, 59, 0.2);
  --route-line: rgba(245, 195, 59, 0.42);
}

body {
  background: var(--ink);
}

.site-header,
.site-header.is-scrolled {
  min-height: 82px;
  grid-template-columns: 328px 1fr auto;
  padding: 10px var(--page-x);
  border: 0;
  border-bottom: 1px solid rgba(245, 195, 59, 0.72);
  color: var(--paper-strong);
  background: rgba(11, 13, 11, 0.97);
  box-shadow: none;
  backdrop-filter: blur(14px);
  transition:
    min-height 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.site-header::before {
  position: absolute;
  right: var(--page-x);
  bottom: -1px;
  width: 148px;
  height: 4px;
  content: "";
  background: var(--yellow);
}

.brand {
  position: relative;
  display: flex;
  width: 328px;
  min-width: 328px;
  height: 62px;
  align-items: center;
  gap: 14px;
  padding-right: 0;
}

.brand img {
  width: 210px;
  max-height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.46));
}

.brand-stamp {
  position: static;
  display: flex;
  width: auto;
  height: 34px;
  align-items: center;
  padding-left: 14px;
  border-left: 1px solid rgba(245, 195, 59, 0.58);
  color: rgba(255, 253, 245, 0.78);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  gap: 38px;
}

.nav a {
  color: rgba(255, 253, 245, 0.76);
  font-size: 12px;
  letter-spacing: 0;
}

.nav a:hover {
  color: var(--paper-strong);
}

.nav a::after {
  bottom: 4px;
  height: 2px;
}

.header-phone {
  color: var(--paper-strong);
}

.site-header .social-links {
  gap: 7px;
}

.site-header .social-link {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: none;
}

.site-header .social-link:hover {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px) scale(1.04);
}

.site-header .social-link svg {
  width: 19px;
  height: 19px;
}

.site-header .social-whatsapp {
  background: #25d366;
}

.site-header .social-telegram {
  background: #229ed9;
}

.site-header .social-max {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.site-header .social-max:hover {
  border-color: transparent;
  background: transparent;
}

.site-header .social-brand-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero {
  min-height: 850px;
  height: 100svh;
  padding-top: 82px;
  background: var(--ink);
}

.hero-media {
  top: 82px;
}

.hero-image {
  object-position: 58% center;
}

.hero-shade {
  z-index: -1;
  top: 82px;
  background: rgba(11, 13, 11, 0.88);
  clip-path: polygon(0 0, 54% 0, 45% 100%, 0 100%);
}

.hero::before {
  position: absolute;
  z-index: 1;
  top: 82px;
  bottom: 102px;
  left: 48.5%;
  width: 1px;
  content: "";
  background: rgba(245, 195, 59, 0.32);
  transform: rotate(4deg);
  transform-origin: top;
}

.hero-copy {
  z-index: 3;
  top: 49%;
  width: min(44vw, 640px);
  transform: translateY(-48%);
}

.hero-overline {
  margin-bottom: 27px;
  color: var(--yellow);
  font-size: 12px;
}

.hero-overline::before {
  width: 52px;
  height: 2px;
}

.hero h1 {
  font-size: clamp(62px, 5.4vw, 88px);
  line-height: 0.84;
}

.hero h1 img {
  width: min(38vw, 535px);
  margin-top: 14px;
}

.hero-lead {
  width: min(38vw, 540px);
  margin-top: 30px;
  color: rgba(255, 253, 245, 0.78);
  font-size: 17px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-actions .button-primary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: transparent;
}

.hero-atlas {
  position: absolute;
  z-index: 2;
  top: 82px;
  bottom: 102px;
  left: calc(49% - 150px);
  width: 320px;
  color: var(--yellow);
  pointer-events: none;
}

.hero-atlas-map {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-atlas-contour,
.hero-atlas-shadow,
.hero-atlas-route {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.hero-atlas-contour {
  stroke: rgba(255, 253, 245, 0.12);
  stroke-width: 1.2;
}

.hero-atlas-shadow {
  stroke: rgba(11, 13, 11, 0.66);
  stroke-width: 28;
}

.hero-atlas-route {
  stroke: var(--yellow);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 18 16;
  animation: atlas-route-flow 6s linear infinite;
}

.hero-atlas-marker {
  position: absolute;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--yellow);
}

.hero-atlas-marker svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-atlas-mountain {
  top: 21%;
  left: 68%;
}

.hero-atlas-forest {
  top: 52%;
  left: 13%;
}

.hero-atlas-pin {
  top: 73%;
  left: 59%;
}

.hero-atlas-caption {
  position: absolute;
  right: 9px;
  bottom: 21px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--yellow);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-coordinate {
  z-index: 4;
  top: 110px;
  gap: 8px;
}

.hero-coordinate span {
  border: 1px solid rgba(11, 13, 11, 0.28);
  background: rgba(255, 253, 245, 0.92);
  backdrop-filter: none;
}

.hero-dashboard {
  z-index: 5;
  min-height: 102px;
  border-top: 1px solid var(--yellow);
  background: rgba(11, 13, 11, 0.97);
  backdrop-filter: none;
}

.hero-dashboard > div,
.hero-dashboard > a {
  position: relative;
  border-right-color: rgba(245, 195, 59, 0.2);
}

.hero-dashboard > div::before {
  position: absolute;
  top: -6px;
  left: 31px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--ink);
  content: "";
  background: var(--yellow);
}

.hero-dashboard span {
  color: var(--yellow);
}

.hero-dashboard > a {
  background: var(--yellow);
}

.manifesto {
  position: relative;
  color: var(--paper-strong);
  border-top: 1px solid rgba(245, 195, 59, 0.2);
  border-bottom: 1px solid rgba(245, 195, 59, 0.2);
  background: var(--ink);
}

.manifesto::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 34%;
  width: 1px;
  content: "";
  background: rgba(245, 195, 59, 0.16);
}

.manifesto-label {
  color: var(--yellow);
}

.manifesto-label span:last-child {
  color: rgba(255, 253, 245, 0.46);
}

.manifesto-copy {
  max-width: 1100px;
  color: var(--paper-strong);
}

.formats {
  border-bottom: 1px solid rgba(245, 195, 59, 0.2);
}

.format-list {
  border-top: 1px solid rgba(245, 195, 59, 0.32);
}

.format-row {
  border-bottom: 1px dashed rgba(245, 195, 59, 0.28);
}

.format-marker {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: 14px;
}

.formats .round-action,
.route-entry .round-action {
  border-radius: 0;
}

.journey {
  border-bottom: 1px solid rgba(245, 195, 59, 0.28);
  background: var(--ink);
}

.journey-heading {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 360px;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 80px;
  padding-top: 105px;
  padding-bottom: 92px;
  border-bottom: 1px solid rgba(245, 195, 59, 0.18);
}

.journey-heading h2 {
  max-width: 520px;
  font-size: 76px;
}

.journey-legend {
  display: grid;
  gap: 16px;
  align-self: end;
  padding-bottom: 6px;
  color: rgba(255, 253, 245, 0.56);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-legend span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.journey-legend i {
  display: inline-block;
  width: 46px;
  height: 8px;
}

.legend-route {
  border-top: 5px dashed var(--yellow);
}

.legend-point {
  position: relative;
  border-top: 2px dotted var(--yellow);
}

.legend-point::after {
  position: absolute;
  top: -6px;
  right: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--yellow);
  content: "";
  background: var(--ink);
}

.journey-route {
  top: 0;
  bottom: 0;
  width: 380px;
}

.journey-contours path {
  fill: none;
  stroke: rgba(255, 253, 245, 0.075);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.journey-route-shadow,
.journey-route-base,
.journey-route-path,
.journey-route-reveal,
.journey-branch {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.journey-branch {
  stroke: rgba(245, 195, 59, 0.88);
  stroke-width: 2;
  stroke-dasharray: 3 8;
  transform-box: fill-box;
  transform-origin: left center;
}

.journey-branch-left {
  transform-origin: right center;
}

.journey-route-shadow {
  stroke: rgba(245, 195, 59, 0.1);
  stroke-width: 34;
}

.journey-route-base,
.journey-route-path {
  stroke-width: 10;
  stroke-dasharray: 24 18;
}

.journey-route-base {
  stroke: var(--route-dim);
}

.journey-route-path {
  stroke: var(--yellow);
}

.journey-route-reveal {
  stroke: #fff;
  stroke-width: 26;
  vector-effect: none;
}

.journey-sign {
  --sign-size: 48px;
  width: var(--sign-size);
  height: var(--sign-size);
  color: var(--yellow);
}

.journey-sign::before {
  content: none;
}

.journey-sign small {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  padding: 3px 5px;
  color: rgba(255, 253, 245, 0.66);
  background: var(--ink);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.journey-sign-start {
  top: 2%;
  left: 86.667%;
}

.journey-sign-mountain {
  top: 14%;
  left: 90%;
}

.journey-sign-protection {
  top: 43%;
  left: 92%;
}

.journey-sign-forest {
  top: 55%;
  left: 9.333%;
}

.journey-sign-direction {
  top: 61%;
  left: 81.667%;
}

.journey-sign-location {
  top: 68%;
  left: 12.667%;
}

.journey-sign-camp {
  top: 84%;
  left: 90%;
  width: 80px;
}

.journey-sign-finish {
  top: 98%;
  left: 15%;
}

.journey-lucide-icon {
  stroke-width: 1.8;
}

.journey-lucide-tent {
  width: 48px;
  flex-basis: 48px;
}

.journey-lucide-fire {
  width: 38px;
  flex-basis: 38px;
}

.journey-stage {
  min-height: 850px;
  grid-template-columns: minmax(0, 1fr) 380px minmax(0, 1fr);
  border-bottom: 1px solid rgba(245, 195, 59, 0.09);
}

.journey-stage figure {
  height: 660px;
  border: 1px solid rgba(245, 195, 59, 0.24);
}

.journey-stage figure::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 56px;
  height: 7px;
  content: "";
  background: var(--yellow);
}

.equipment-list {
  border-top-color: rgba(245, 195, 59, 0.52);
}

.equipment-list article {
  grid-template-areas: "icon index title text";
  grid-template-columns: 76px 42px minmax(190px, 0.78fr) minmax(240px, 1fr);
  gap: 26px;
  border-bottom: 1px dashed rgba(245, 195, 59, 0.3);
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.equipment-list article:hover {
  background: rgba(245, 195, 59, 0.045);
}

.equipment-icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  grid-area: icon;
  place-items: center;
  color: var(--yellow);
}

.equipment-icon::after {
  position: absolute;
  right: -7px;
  width: 1px;
  height: 42px;
  content: "";
  background: rgba(245, 195, 59, 0.34);
}

.equipment-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.equipment-list article:hover .equipment-icon svg {
  transform: translateY(-3px);
}

.equipment-index {
  grid-area: index;
  color: rgba(255, 253, 245, 0.42) !important;
  font-size: 11px;
}

.equipment-list h3 {
  grid-area: title;
}

.equipment-list p {
  grid-area: text;
}

.journey-copy h3 {
  font-size: 46px;
}

.routes,
.formats,
.photo-ticker,
.equipment,
.bikes,
.certificate,
.faq,
.contact {
  position: relative;
  isolation: isolate;
}

.routes::before,
.equipment::before,
.bikes::before,
.certificate::before,
.faq::before,
.contact::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: var(--page-x);
  width: 88px;
  height: 5px;
  content: "";
  background: var(--yellow);
}

@keyframes atlas-route-flow {
  to {
    stroke-dashoffset: -68;
  }
}

@media (max-width: 1180px) {
  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 272px 1fr auto;
    gap: 22px;
  }

  .brand {
    width: 272px;
    min-width: 272px;
    gap: 11px;
  }

  .brand img {
    width: 165px;
  }

  .brand-stamp {
    padding-left: 11px;
    font-size: 9px;
  }

  .nav {
    gap: 22px;
  }

  .header-phone {
    display: none;
  }

  .hero-copy {
    width: 46vw;
  }

  .hero-atlas {
    left: calc(51% - 140px);
    width: 280px;
  }

  .journey-route {
    width: 320px;
  }

  .journey-stage {
    grid-template-columns: minmax(0, 1fr) 320px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px var(--page-x);
  }

  .site-header::before {
    right: 0;
    width: 96px;
    height: 3px;
  }

  .brand {
    width: 176px;
    min-width: 176px;
    height: 52px;
    gap: 8px;
    padding-right: 0;
  }

  .brand img {
    width: 104px;
    max-height: 56px;
  }

  .brand-stamp {
    display: flex;
    width: 59px;
    height: 28px;
    padding-left: 8px;
    font-size: 7px;
    line-height: 1.1;
    white-space: normal;
  }

  .header-actions {
    gap: 7px;
  }

  .site-header .social-links {
    gap: 4px;
  }

  .site-header .social-link {
    width: 30px;
    height: 30px;
  }

  .site-header .social-link svg {
    width: 16px;
    height: 16px;
  }

  .header-actions .button-small {
    min-height: 38px;
    padding: 0 11px;
    font-size: 10px;
  }

  .hero {
    min-height: 980px;
    grid-template-rows: 55svh auto auto;
    padding-top: 68px;
  }

  .hero-media {
    top: auto;
    height: 55svh;
  }

  .hero-shade {
    z-index: 1;
    top: 68px;
    right: auto;
    bottom: auto;
    display: block;
    width: 34%;
    height: 55svh;
    background: rgba(11, 13, 11, 0.72);
    clip-path: polygon(0 0, 100% 0, 66% 100%, 0 100%);
  }

  .hero::before {
    top: 68px;
    bottom: auto;
    left: 26%;
    height: 55svh;
    transform: rotate(3deg);
  }

  .hero-atlas {
    z-index: 2;
    top: 68px;
    bottom: auto;
    left: 0;
    width: 118px;
    height: 55svh;
  }

  .hero-atlas-contour {
    opacity: 0.54;
  }

  .hero-atlas-shadow {
    stroke-width: 20;
  }

  .hero-atlas-route {
    stroke-width: 6;
    stroke-dasharray: 14 13;
  }

  .hero-atlas-marker {
    width: 28px;
    height: 28px;
  }

  .hero-atlas-mountain {
    left: 64%;
  }

  .hero-atlas-forest {
    left: 9%;
  }

  .hero-atlas-pin {
    left: 56%;
  }

  .hero-atlas-caption {
    right: auto;
    bottom: 9px;
    left: 8px;
    font-size: 7px;
  }

  .hero-coordinate {
    top: 84px;
    right: var(--page-x);
  }

  .hero-copy {
    z-index: 3;
    width: auto;
    padding-top: 42px;
    padding-bottom: 42px;
    background: var(--ink);
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero h1 img {
    width: min(82vw, 310px);
    margin-top: 9px;
  }

  .hero-lead {
    width: auto;
    color: rgba(255, 253, 245, 0.72);
  }

  .hero-dashboard {
    border-top-color: var(--yellow);
    background: var(--ink);
  }

  .manifesto {
    padding-top: 80px;
    padding-bottom: 84px;
  }

  .manifesto::before {
    top: 0;
    right: var(--page-x);
    bottom: auto;
    left: var(--page-x);
    width: auto;
    height: 1px;
  }

  .manifesto-copy {
    font-size: 32px;
  }

  .journey-heading {
    display: block;
    min-height: 340px;
    padding: 80px var(--page-x) 78px 116px;
  }

  .journey-heading h2 {
    font-size: 43px;
  }

  .journey-legend {
    display: none;
  }

  .journey-route {
    top: 0;
    bottom: 0;
    left: 0;
    width: 104px;
    transform: none;
  }

  .journey-route-shadow {
    stroke-width: 24;
  }

  .journey-route-base,
  .journey-route-path {
    stroke-width: 7;
    stroke-dasharray: 17 15;
  }

  .journey-route-reveal {
    stroke-width: 20;
  }

  .journey-sign {
    --sign-size: 32px;
  }

  .journey-sign small {
    display: none;
  }

  .journey-sign::before {
    border-top-width: 2px;
  }

  .journey-sign-camp {
    width: 54px;
  }

  .journey-lucide-tent {
    width: 30px;
    flex-basis: 30px;
  }

  .journey-lucide-fire {
    width: 23px;
    flex-basis: 23px;
  }

  .journey-stage,
  .journey-stage-reverse {
    padding-left: 116px;
    border-bottom-color: rgba(245, 195, 59, 0.12);
  }

  .journey-stage figure,
  .journey-stage-reverse figure {
    height: 520px;
  }

  .equipment-list article {
    grid-template-areas:
      "icon index"
      "icon title"
      ". text";
    grid-template-columns: 64px 1fr;
    gap: 7px 18px;
    padding: 28px 0;
  }

  .equipment-icon {
    width: 58px;
    height: 58px;
    align-self: start;
  }

  .equipment-icon::after {
    right: -5px;
    height: 38px;
  }

  .equipment-icon svg {
    width: 42px;
    height: 42px;
  }

}

@media (max-width: 374px) {
  .brand {
    width: 140px;
    min-width: 0;
  }

  .brand img {
    width: 108px;
  }

  .brand-stamp {
    display: none;
  }

  .header-actions {
    gap: 5px;
  }

  .header-actions .button-small {
    padding: 0 8px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
