:root {
  --color-ink: #0a1211;
  --color-black: #080d0c;
  --color-forest-950: #071512;
  --color-forest-900: #0c201b;
  --color-forest-800: #132d25;
  --color-forest-700: #1d3a31;
  --color-stone-950: #242724;
  --color-stone-800: #4f5752;
  --color-stone-500: #8b908b;
  --color-stone-300: #c7c6bd;
  --color-paper: #eeeae1;
  --color-paper-dark: #dfdbd1;
  --color-snow: #f7f5ef;
  --color-white: #ffffff;
  --color-orange: #e86f08;
  --color-orange-hover: #ff7a0a;
  --color-orange-dark: #bd5605;
  --color-border-dark: rgba(255, 255, 255, 0.18);
  --color-border-light: rgba(20, 26, 23, 0.18);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius-sm: 2px;
  --radius-md: 4px;
  --header-height: 80px;
  --header-height-scrolled: 68px;
  --section-y: clamp(4rem, 8vw, 7rem);
  --container: min(1240px, calc(100% - 32px));
  --ease-ui: 180ms ease;
  --ease-image: 500ms ease;
  --shadow-soft: 0 24px 64px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-black);
  color: var(--color-snow);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .route-line__path--draw {
    stroke-dashoffset: 0;
  }

  .format-card,
  .bike-tile {
    opacity: 1;
    transform: none;
  }

  .tour-price-card,
  .tour-special-card,
  .tour-carousel__slide {
    opacity: 1;
    transform: none;
  }

  .tour-carousel__slide {
    transition: none;
  }

  .booking-card__border {
    animation: none;
  }

  .booking-submit__shine {
    animation: none;
  }

  .format-card__border {
    animation: none !important;
  }

  .format-card__media::after {
    display: none;
  }
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--color-orange);
  color: var(--color-black);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.section__inner {
  width: var(--container);
  margin-inline: auto;
}

.display-heading {
  margin: 0 0 1rem;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.display-heading--center {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section {
  position: relative;
  padding-block: var(--section-y);
}

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

.section--paper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 28%);
  background-size: 4px 4px, 100% 100%, 100% 100%;
}

.section--dark {
  background: var(--color-black);
  color: var(--color-snow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background var(--ease-ui),
    border-color var(--ease-ui),
    color var(--ease-ui),
    transform var(--ease-ui);
}

.button--solid {
  background: var(--color-orange);
  color: var(--color-black);
}

.button--solid:hover {
  background: var(--color-orange-hover);
}

.button--outline {
  border-color: var(--color-border-dark);
  background: rgba(8, 13, 12, 0.35);
  color: var(--color-snow);
  backdrop-filter: blur(8px);
}

.button--outline:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(8, 13, 12, 0.55);
}

.button--small {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.button--whatsapp {
  min-width: 172px;
}

.button__text--mobile {
  display: none;
}

.wa-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.wa-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wa-icon path {
  fill: currentColor;
}

.media-frame {
  margin: 0;
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03) brightness(0.96);
  transition: transform var(--ease-image);
}

.route-line {
  overflow: visible;
  fill: none;
  stroke: var(--color-orange);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.route-line__path {
  stroke-dasharray: 5 7;
  stroke-linecap: round;
}

.route-line__path--solid {
  stroke-dasharray: none;
}

.journey-shell {
  position: relative;
  isolation: isolate;
}

@media (max-width: 980px) {
  .route-line--journey {
    display: none;
  }
}

.route-line--journey {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.route-line--journey .route-line__path {
  stroke-width: 2;
  opacity: 0.95;
}

.route-line__dot--scaled {
  vector-effect: non-scaling-stroke;
}

.route-line__dot--hollow.route-line__dot--scaled {
  fill: var(--color-paper);
  stroke: var(--color-orange);
  stroke-width: 1.5;
}

.route-line__arrow--scaled {
  vector-effect: non-scaling-stroke;
  fill: var(--color-orange);
}

.route-line__dot {
  fill: var(--color-orange);
  stroke: none;
}

.route-line__mark {
  stroke: var(--color-orange);
  fill: none;
}

.route-line__dot--hollow {
  fill: var(--color-paper);
  stroke: var(--color-orange);
  stroke-width: 1.5;
}

.route-line__arrow {
  fill: var(--color-orange);
  stroke: none;
}

.route-line--journey .route-line__path--draw {
  stroke-dasharray: 5 7;
  stroke-dashoffset: 0;
}

.route-line__path--draw {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.route-line__path--draw.is-drawn {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.4s ease;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  height: var(--header-height);
  padding-inline: clamp(16px, 3vw, 40px);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    height var(--ease-ui),
    background var(--ease-ui),
    border-color var(--ease-ui),
    backdrop-filter var(--ease-ui);
}

.site-header--scrolled {
  height: var(--header-height-scrolled);
  border-color: var(--color-border-dark);
  background: rgba(8, 13, 12, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__accent {
  color: var(--color-orange);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: 0.92rem;
  font-weight: 500;
}

.desktop-nav a {
  color: rgba(247, 245, 239, 0.78);
  transition: color var(--ease-ui);
}

.desktop-nav a:hover {
  color: var(--color-orange);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-phone {
  color: rgba(247, 245, 239, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--color-orange);
}

@media (max-width: 1180px) and (min-width: 981px) {
  .desktop-nav a:nth-child(n + 5) {
    display: none;
  }
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  background: rgba(8, 13, 12, 0.45);
  cursor: pointer;
}

.menu-button__icon,
.menu-button__icon::before,
.menu-button__icon::after {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  border-radius: 1px;
  background: var(--color-snow);
  transition: transform var(--ease-ui), opacity var(--ease-ui);
}

.menu-button__icon {
  position: relative;
}

.menu-button__icon::before,
.menu-button__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button__icon::before {
  top: -6px;
}

.menu-button__icon::after {
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-button__icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-button__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-button__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(4, 8, 7, 0.72);
  backdrop-filter: blur(6px);
}

.mobile-menu__panel {
  position: absolute;
  inset: 0 0 0 auto;
  display: flex;
  flex-direction: column;
  width: min(100%, 360px);
  padding: 24px;
  background: var(--color-forest-950);
  box-shadow: var(--shadow-soft);
}

.mobile-menu__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-snow);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.mobile-menu nav {
  display: grid;
  gap: 6px;
  margin-top: 2rem;
}

.mobile-menu nav a {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border-dark);
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mobile-menu__footer {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 2rem;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  min-height: clamp(720px, 100svh, 950px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 22%, rgba(31, 67, 78, 0.28), transparent 34%),
    linear-gradient(115deg, #06151b 0%, #041015 52%, #020809 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  animation: heroImageIn 780ms ease both;
}

.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 56%;
  filter: saturate(0.96) contrast(1.04) brightness(0.92);
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.015);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 16, 21, 0.12) 0%, rgba(4, 16, 21, 0.08) 36%, rgba(4, 16, 21, 0.42) 62%, rgba(2, 8, 9, 0.86) 100%),
    linear-gradient(180deg, rgba(2, 8, 9, 0.18) 0%, rgba(2, 8, 9, 0.04) 38%, rgba(2, 8, 9, 0.82) 100%),
    linear-gradient(0deg, rgba(4, 16, 21, 0.16), rgba(4, 16, 21, 0.16));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(640px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
  padding:
    calc(var(--header-height) + 3rem)
    0
    clamp(4rem, 8vh, 6rem);
}

.hero__copy {
  grid-column: 2;
  max-width: 680px;
  transform: translateY(24px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.2rem;
  color: rgba(247, 245, 239, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: heroTextIn 640ms ease 100ms both;
}

.hero__eyebrow span {
  width: 42px;
  height: 2px;
  background: var(--color-orange);
}

.hero__title {
  display: grid;
  gap: 0.02em;
  max-width: 680px;
  margin: 0 0 1.25rem;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 3.3rem;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero__title span {
  animation: heroTextIn 700ms ease both;
}

.hero__title span:nth-child(1) {
  animation-delay: 190ms;
}

.hero__title span:nth-child(2) {
  animation-delay: 300ms;
}

.hero__title-accent {
  color: var(--color-orange);
}

.hero__lead {
  max-width: 520px;
  margin: 0 0 2rem;
  color: rgba(247, 245, 239, 0.8);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.65;
  animation: heroTextIn 700ms ease 420ms both;
}

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

.hero .hero__actions {
  animation: heroTextIn 700ms ease 540ms both;
}

.hero .button {
  min-height: 54px;
  border-radius: 6px;
  padding-inline: 1.45rem;
}

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

.hero__secondary {
  border-color: rgba(247, 245, 239, 0.26);
}

.hero__coords {
  position: absolute;
  left: clamp(18px, 3vw, 42px);
  bottom: clamp(22px, 4vh, 42px);
  z-index: 3;
  margin: 0;
  color: rgba(247, 245, 239, 0.46);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro {
  overflow: visible;
  margin-top: -1px;
}

.intro__layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.display-heading--intro {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  color: var(--color-black);
}

@media (max-width: 980px) {
  .display-heading--intro::before {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin-bottom: 1rem;
    background: var(--color-orange);
  }
}

.intro__copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(2.5rem, 5vw, 3.75rem);
}

.intro__copy p {
  max-width: 36ch;
  margin: 0 0 1.5rem;
  color: var(--color-stone-950);
  font-size: clamp(0.98rem, 1.6vw, 1.05rem);
  line-height: 1.65;
}

.intro__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-orange);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color var(--ease-ui), gap var(--ease-ui);
}

.intro__link:hover {
  color: var(--color-orange-hover);
  gap: 0.55rem;
}

.intro__photo {
  position: relative;
  min-height: clamp(280px, 40vw, 480px);
  margin: 0;
  box-shadow: 0 18px 48px rgba(8, 13, 12, 0.14);
}

.intro__photo img {
  aspect-ratio: 16 / 10;
  object-position: center 42%;
}

.intro__coords {
  position: absolute;
  top: 50%;
  right: clamp(8px, 1.5vw, 18px);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin: 0;
  color: var(--color-stone-800);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  line-height: 1.55;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.intro__coords-icon {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  transform: rotate(90deg);
}

.formats {
  overflow-x: clip;
}

.formats__lead {
  max-width: 52ch;
  margin: -0.5rem auto 2rem;
  color: rgba(247, 245, 239, 0.72);
  font-size: clamp(0.98rem, 1.6vw, 1.05rem);
  line-height: 1.65;
  text-align: center;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 14px);
  perspective: 1200px;
}

.format-card {
  position: relative;
  min-height: clamp(360px, 48vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-forest-950);
  cursor: pointer;
  isolation: isolate;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease,
    box-shadow 400ms ease;
}

.format-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.format-card:nth-child(2).is-visible {
  transition-delay: 120ms;
}

.format-card:nth-child(3).is-visible {
  transition-delay: 240ms;
}

.format-card__border {
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: 1px;
  opacity: 0;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--color-orange) 60deg,
    rgba(255, 122, 10, 0.35) 120deg,
    transparent 180deg
  );
  transition: opacity 350ms ease;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.format-card:hover .format-card__border,
.format-card:focus-within .format-card__border {
  opacity: 1;
  animation: formatBorderSpin 4s linear infinite;
}

@keyframes formatBorderSpin {
  to {
    transform: rotate(360deg);
  }
}

.format-card__spotlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    320px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(232, 111, 8, 0.22),
    transparent 42%
  );
  transition: opacity 350ms ease;
}

.format-card:hover .format-card__spotlight,
.format-card:focus-within .format-card__spotlight {
  opacity: 1;
}

.format-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  perspective: 900px;
}

.format-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 58%
  );
  transform: translateX(-120%);
  transition: transform 900ms ease;
}

.format-card:hover .format-card__media::after,
.format-card:focus-within .format-card__media::after {
  transform: translateX(120%);
}

.format-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 48vw, 520px);
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.92) contrast(1.04) brightness(0.88);
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 400ms ease;
  will-change: transform;
}

.format-card:nth-child(1) img {
  object-position: center 35%;
}

.format-card:nth-child(2) img {
  object-position: center 45%;
}

.format-card:nth-child(3) img {
  object-position: center 30%;
}

.format-card:hover,
.format-card:focus-within {
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(232, 111, 8, 0.18);
}

.format-card:hover img,
.format-card:focus-within img {
  transform: scale(1.07);
  filter: saturate(1) contrast(1.06) brightness(0.94);
}

.format-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.65rem;
  padding: clamp(1rem, 3vw, 1.75rem);
  background: linear-gradient(180deg, transparent 22%, rgba(4, 8, 7, 0.55) 52%, rgba(4, 8, 7, 0.94) 100%);
  transition: background 400ms ease;
}

.format-card:hover .format-card__overlay,
.format-card:focus-within .format-card__overlay {
  background: linear-gradient(180deg, transparent 18%, rgba(4, 8, 7, 0.62) 48%, rgba(4, 8, 7, 0.96) 100%);
}

.format-card__icon {
  width: 28px;
  height: 28px;
  color: var(--color-orange);
  transition: transform 350ms ease;
}

.format-card:hover .format-card__icon,
.format-card:focus-within .format-card__icon {
  transform: translateY(-2px) scale(1.06);
}

.format-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 400ms ease, color 300ms ease;
}

.format-card:hover h3,
.format-card:focus-within h3 {
  transform: translateY(-3px);
  color: var(--color-white);
}

.format-card p {
  margin: 0;
  color: rgba(247, 245, 239, 0.82);
  font-size: 0.94rem;
  transition: transform 400ms ease 40ms, opacity 300ms ease;
}

.format-card:hover p,
.format-card:focus-within p {
  transform: translateY(-2px);
  opacity: 0.95;
}

.format-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  color: var(--color-orange);
  font-size: 0.9rem;
  font-weight: 700;
  transition: gap 250ms ease, color 250ms ease;
}

.format-card:hover .format-card__link,
.format-card:focus-within .format-card__link {
  gap: 0.55rem;
  color: var(--color-orange-hover);
}

.tours {
  position: relative;
  overflow-x: clip;
}

.tours::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 22%, rgba(232, 111, 8, 0.1), transparent 48%);
}

.tours .section__inner {
  position: relative;
  z-index: 1;
}

.gallery {
  overflow-x: clip;
  padding-top: 0;
  padding-bottom: 0;
}

.gallery .tour-carousel {
  margin-top: 0;
}

.tours__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.tours .display-heading--center {
  margin-bottom: 0.75rem;
}

.tours__lead {
  max-width: 52ch;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  color: rgba(247, 245, 239, 0.72);
  font-size: clamp(0.98rem, 1.6vw, 1.05rem);
  line-height: 1.65;
  text-align: center;
}

.tour-carousel {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw) 0;
  padding: clamp(1rem, 2.5vw, 1.5rem) 0 clamp(1.5rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 18% 12%, rgba(232, 111, 8, 0.12), transparent 34%),
    linear-gradient(180deg, var(--color-black) 0%, var(--color-forest-950) 100%);
  color: var(--color-snow);
  overflow: hidden;
}

.tour-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 50% 120%, rgba(232, 111, 8, 0.08), transparent 42%);
}

.tour-carousel__viewport {
  position: relative;
  height: clamp(360px, 52vw, 540px);
  perspective: 1500px;
  perspective-origin: 50% 42%;
}

.tour-carousel__track {
  position: relative;
  width: min(640px, 86vw);
  height: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  transform-style: preserve-3d;
}

.tour-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, -120px) scale(0.72) rotateY(0deg);
  transition:
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 680ms ease,
    filter 680ms ease;
  will-change: transform, opacity;
}

.tour-carousel__slide[data-offset="0"] {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
  z-index: 4;
  filter: none;
}

.tour-carousel__slide[data-offset="-1"],
.tour-carousel__slide[data-offset="1"] {
  opacity: 0.92;
  pointer-events: auto;
  z-index: 3;
  filter: brightness(0.58) saturate(0.92);
  cursor: pointer;
}

.tour-carousel__slide[data-offset="-1"] {
  transform: translate3d(-68%, 0, -80px) scale(0.84) rotateY(22deg);
}

.tour-carousel__slide[data-offset="1"] {
  transform: translate3d(68%, 0, -80px) scale(0.84) rotateY(-22deg);
}

.tour-carousel__slide[data-offset="-2"],
.tour-carousel__slide[data-offset="2"] {
  opacity: 0.72;
  z-index: 2;
  filter: brightness(0.52) saturate(0.9);
}

.tour-carousel__slide[data-offset="-2"] {
  transform: translate3d(-118%, 0, -160px) scale(0.68) rotateY(28deg);
}

.tour-carousel__slide[data-offset="2"] {
  transform: translate3d(118%, 0, -160px) scale(0.68) rotateY(-28deg);
}

.tour-carousel__figure {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.tour-carousel__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 13, 12, 0.88) 100%);
  pointer-events: none;
}

.tour-carousel__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.tour-carousel__caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.15rem;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tour-carousel__ui {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.35rem;
}

.tour-carousel__control {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(8, 13, 12, 0.55);
  color: var(--color-snow);
  cursor: pointer;
  transition:
    border-color var(--ease-ui),
    background var(--ease-ui),
    transform var(--ease-ui);
}

.tour-carousel__control:hover {
  border-color: rgba(232, 111, 8, 0.55);
  background: rgba(232, 111, 8, 0.16);
}

.tour-carousel__control svg {
  width: 18px;
  height: 18px;
}

.tour-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.tour-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    transform var(--ease-ui),
    background var(--ease-ui),
    width var(--ease-ui);
}

.tour-carousel__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--color-orange);
}

.tours__pricing {
  display: grid;
  gap: 0.95rem;
}

.tours__pricing-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.tours__block-title {
  margin: 0;
  color: var(--color-snow);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.tours__block-lead {
  margin: 0;
  color: rgba(247, 245, 239, 0.66);
  font-size: 0.92rem;
}

.tour-price-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.tour-price-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 124px;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    background var(--ease-ui);
}

.tour-price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  transition: background var(--ease-ui);
}

.tour-price-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tour-price-card:nth-child(2).is-visible {
  transition-delay: 70ms;
}

.tour-price-card:nth-child(3).is-visible {
  transition-delay: 130ms;
}

.tour-price-card:nth-child(4).is-visible {
  transition-delay: 190ms;
}

.tour-price-card:hover,
.tour-price-card:focus-within {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
}

.tour-price-card:hover::before,
.tour-price-card:focus-within::before,
.tour-price-card--accent::before {
  background: var(--color-orange);
}

.tour-price-card--accent {
  background:
    linear-gradient(180deg, rgba(232, 111, 8, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.tour-price-card__duration {
  color: rgba(247, 245, 239, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.tour-price-card__price {
  color: var(--color-orange);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.7vw, 2.05rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.tours__specials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}

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

.tours__specials:not(.tours__specials--bikes) {
  grid-template-columns: 1fr;
}

.tour-special-card {
  position: relative;
  min-height: clamp(320px, 34vw, 440px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: var(--color-forest-950);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 480ms ease 220ms,
    transform 480ms ease 220ms,
    border-color var(--ease-ui);
  isolation: isolate;
}

.tour-special-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tour-special-card:hover,
.tour-special-card:focus-within {
  border-color: rgba(232, 111, 8, 0.45);
}

.tour-special-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.05) brightness(0.86);
  transition: transform var(--ease-image), filter var(--ease-image);
}

.tour-special-card:hover img,
.tour-special-card:focus-within img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.06) brightness(0.94);
}

.tour-special-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
  background:
    linear-gradient(180deg, rgba(8, 13, 12, 0.08) 8%, rgba(8, 13, 12, 0.44) 48%, rgba(8, 13, 12, 0.94) 100%),
    linear-gradient(90deg, rgba(8, 13, 12, 0.55), transparent 62%);
}

.tour-special-card__kicker {
  align-self: flex-start;
  margin: 0 0 0.1rem;
  color: rgba(247, 245, 239, 0.72);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-special-card__label {
  max-width: 18ch;
  margin: 0;
  color: var(--color-snow);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  letter-spacing: 0.03em;
  line-height: 1.12;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tour-special-card__meta {
  margin: 0;
  color: var(--color-orange);
  font-weight: 800;
}

.tour-special-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.tour-special-card__specs li {
  min-height: 28px;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 245, 239, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
}

.tour-special-card__note {
  margin: 0.05rem 0 0;
  color: rgba(247, 245, 239, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tour-special-card--advanced {
  min-height: clamp(320px, 30vw, 430px);
}

.tour-special-card--advanced img {
  object-position: center 48%;
}

.tour-special-card--advanced .tour-special-card__overlay {
  padding-right: clamp(1.25rem, 12vw, 10rem);
  background:
    linear-gradient(90deg, rgba(8, 13, 12, 0.96) 0%, rgba(8, 13, 12, 0.72) 44%, rgba(8, 13, 12, 0.18) 100%),
    linear-gradient(180deg, transparent 0%, rgba(8, 13, 12, 0.82) 100%);
}

.tour-special-card--advanced .tour-special-card__label {
  max-width: 22ch;
  font-size: clamp(1.3rem, 3vw, 2.05rem);
}

.bike-layout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 14px);
}

.bike-tile {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-forest-950);
  opacity: 1;
  transform: none;
  transition:
    opacity 650ms ease,
    transform 650ms ease,
    border-color var(--ease-ui),
    box-shadow var(--ease-ui);
  isolation: isolate;
}

html.js .bike-tile:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}

.bike-tile.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bike-tile:nth-child(2).is-visible {
  transition-delay: 120ms;
}

.bike-tile:nth-child(3).is-visible {
  transition-delay: 240ms;
}

.bike-tile--kews,
.bike-tile--electric,
.bike-tile--manual {
  grid-column: auto;
  grid-row: auto;
}

.bike-tile__gallery {
  padding: clamp(0.65rem, 1.2vw, 0.85rem) clamp(0.65rem, 1.2vw, 0.85rem) 0;
}

.bike-tile__gallery--soon {
  display: grid;
  place-content: center;
  gap: 0.35rem;
  min-height: clamp(210px, 24vw, 260px);
  margin: clamp(0.65rem, 1.2vw, 0.85rem) clamp(0.65rem, 1.2vw, 0.85rem) 0;
  padding: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 40%, rgba(232, 111, 8, 0.14), transparent 62%),
    linear-gradient(180deg, var(--color-forest-900), var(--color-forest-950));
  text-align: center;
}

.bike-tile__soon-label {
  color: rgba(247, 245, 239, 0.52);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bike-tile__soon-power {
  color: rgba(247, 245, 239, 0.18);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.bike-tile__soon-note {
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bike-expand {
  display: flex;
  width: 100%;
  height: clamp(210px, 24vw, 260px);
  gap: 6px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.bike-expand__item {
  flex: 0 0 clamp(3.25rem, 22%, 4.5rem);
  min-width: 0;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-forest-900);
  cursor: pointer;
  transition:
    flex 500ms ease-in-out,
    box-shadow 500ms ease;
}

.bike-expand__item.is-expanded {
  flex: 1 1 auto;
  box-shadow: inset 0 0 0 1px rgba(232, 111, 8, 0.35);
}

.bike-expand__item:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}

.bike-expand__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.94) contrast(1.04) brightness(0.9);
  transition: filter 400ms ease, transform 500ms ease;
  pointer-events: none;
}

.bike-expand__item.is-expanded img {
  filter: saturate(1) contrast(1.06) brightness(0.96);
}

.bike-expand__item:not(.is-expanded):hover img {
  filter: saturate(1) contrast(1.04) brightness(0.94);
}

.bike-tile__body {
  display: grid;
  gap: 0.45rem;
  padding: clamp(0.95rem, 1.8vw, 1.2rem) clamp(0.95rem, 1.8vw, 1.2rem) clamp(1rem, 2vw, 1.25rem);
}

.bike-tile__kicker {
  margin: 0;
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bike-tile h3 {
  margin: 0;
  color: var(--color-snow);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.bike-tile__meta {
  margin: 0;
  color: rgba(247, 245, 239, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.bike-tile__text {
  margin: 0;
  color: rgba(247, 245, 239, 0.66);
  font-size: 0.92rem;
  line-height: 1.55;
}

.bike-tile__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.bike-tile__specs li {
  min-height: auto;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 245, 239, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.bike-tile__specs span {
  display: block;
  margin-bottom: 0.16rem;
  color: rgba(247, 245, 239, 0.54);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tours__panel {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.1rem, 2vw, 1.55rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--color-forest-950);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.tours__panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--color-orange);
}

.tours__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 10px;
  min-width: 0;
}

.tours__meta-item {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.tours__included,
.tours__notes {
  min-width: 0;
}

.tours__meta-title {
  margin: 0 0 0.65rem;
  color: var(--color-snow);
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tours__meta-item p {
  margin: 0;
  color: rgba(247, 245, 239, 0.72);
  font-size: 0.9rem;
}

.tour-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tour-time {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(232, 111, 8, 0.34);
  background: rgba(232, 111, 8, 0.12);
  color: var(--color-snow);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.tours-included-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.tours-included-list li {
  padding: 0.38rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 245, 239, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
}

.tours__routes-note {
  margin: 0.85rem 0 0;
  color: rgba(247, 245, 239, 0.68);
  font-size: 0.9rem;
}

.tours__notes {
  display: grid;
  gap: 0.55rem;
}

.tours__booking-notes {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tours__booking-notes li,
.tours__bring {
  margin: 0;
  color: rgba(247, 245, 239, 0.82);
  font-size: 0.92rem;
}

.tours__booking-notes strong,
.tours__bring strong {
  color: var(--color-orange);
}

.tours__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.tours__cta {
  margin-top: 0;
}

.equipment {
  position: relative;
  overflow: hidden;
}

.equipment::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 78% 42%, rgba(232, 111, 8, 0.1), transparent 48%);
}

.equipment__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "copy catalog"
    "foot catalog";
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.equipment__copy {
  grid-area: copy;
}

.equipment-catalog {
  grid-area: catalog;
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 420px;
  padding: clamp(1rem, 3vw, 1.75rem);
  border: 1px solid var(--color-border-dark);
  background:
    radial-gradient(circle at 50% 38%, rgba(232, 111, 8, 0.12), transparent 62%),
    rgba(255, 255, 255, 0.02);
  outline: none;
}

.equipment__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.equipment__copy p {
  max-width: 44ch;
  margin: 0 0 1rem;
  color: rgba(247, 245, 239, 0.82);
}

.equipment-catalog__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1.25rem 0 1rem;
}

.equipment__foot {
  grid-area: foot;
  align-self: end;
}

.equipment-catalog__nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.55rem 0.2rem 0.55rem 0;
  border: 0;
  background: transparent;
  color: rgba(247, 245, 239, 0.52);
  font: inherit;
  font-size: 0.94rem;
  text-align: left;
  cursor: pointer;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    color 260ms ease,
    opacity 260ms ease;
}

.equipment-catalog__nav-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  transform: scale(0.6);
  transition:
    background 260ms ease,
    transform 260ms ease;
}

.equipment-catalog__nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 0;
  height: 1px;
  background: var(--color-orange);
  transition: width 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.equipment-catalog__nav-item:hover {
  color: var(--color-snow);
  transform: translateX(6px);
}

.equipment-catalog__nav-item.is-active {
  color: var(--color-snow);
  font-weight: 700;
}

.equipment-catalog__nav-item.is-active::before {
  background: var(--color-orange);
  transform: scale(1);
}

.equipment-catalog__nav-item.is-active::after {
  width: 2.4rem;
}

.equipment__note {
  margin: 0 0 1.5rem;
  color: rgba(247, 245, 239, 0.62);
  font-size: 0.92rem;
}

.equipment__cta {
  width: fit-content;
}

.equipment-catalog__loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  background: rgba(8, 13, 12, 0.72);
  transition: opacity 320ms ease, visibility 320ms ease;
}

.equipment-catalog__loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.equipment-catalog__loader-ring {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--color-orange);
  border-radius: 50%;
  animation: equipment-spin 0.9s linear infinite;
}

@keyframes equipment-spin {
  to {
    transform: rotate(360deg);
  }
}

.equipment-catalog__viewport {
  position: relative;
  min-height: min(420px, 55vh);
}

.equipment-catalog__overview {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.equipment-catalog__overview.is-visible {
  opacity: 1;
  transform: scale(1);
}

.equipment-catalog__overview.is-hiding {
  opacity: 0;
  transform: scale(0.82) translateY(16px);
}

.equipment-catalog__stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  min-height: min(420px, 55vh);
  touch-action: none;
  cursor: grab;
}

.equipment-catalog__stage.is-dragging {
  cursor: grabbing;
}

.equipment-catalog__item-shell {
  display: grid;
  place-items: center;
  min-height: min(380px, 52vh);
  opacity: 0;
  transform: translateY(16px) scale(0.82);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.equipment-catalog__item-shell.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.equipment-catalog__item-shell.is-category-exit {
  opacity: 0;
  transform: translateY(16px) scale(0.82);
}

.equipment-catalog__item-shell.is-category-enter {
  opacity: 0;
  transform: translateY(16px) scale(0.82);
}

.equipment-catalog__item-shell.is-item-exit-left {
  opacity: 0;
  transform: translateX(-80px) scale(0.96);
  transition-duration: 350ms;
}

.equipment-catalog__item-shell.is-item-exit-right {
  opacity: 0;
  transform: translateX(80px) scale(0.96);
  transition-duration: 350ms;
}

.equipment-catalog__item-shell.is-item-enter-from-right {
  opacity: 0;
  transform: translateX(80px) scale(0.96);
  transition-duration: 350ms;
}

.equipment-catalog__item-shell.is-item-enter-from-left {
  opacity: 0;
  transform: translateX(-80px) scale(0.96);
  transition-duration: 350ms;
}

.equipment-catalog__item {
  width: 100%;
  max-width: min(100%, 480px);
  height: min(72vh, 480px);
  max-height: 58vh;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.38));
  user-select: none;
  -webkit-user-drag: none;
}

.equipment-catalog__arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(8, 13, 12, 0.42);
  color: var(--color-snow);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease;
}

.equipment-catalog__arrow svg {
  width: 18px;
  height: 18px;
}

.equipment-catalog__arrow:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.equipment-catalog__arrow:active {
  transform: scale(0.94);
}

.equipment-catalog__meta {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-align: center;
}

.equipment-catalog__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-snow);
}

.equipment-catalog__counter {
  margin: 0;
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.equipment-catalog__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.equipment-catalog__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 245, 239, 0.24);
  cursor: pointer;
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.equipment-catalog__dot.is-active {
  background: var(--color-orange);
  transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
  .equipment-catalog__item-shell,
  .equipment-catalog__overview,
  .equipment-catalog__nav-item,
  .equipment-catalog__loader-ring {
    animation: none;
    transition-duration: 0.01ms !important;
  }
}

.booking {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 111, 8, 0.14), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(232, 111, 8, 0.08), transparent 38%),
    linear-gradient(180deg, #0a1211 0%, #101f1a 48%, #0a1211 100%);
  color: var(--color-snow);
}

.booking__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, #000 20%, transparent 72%);
}

.booking__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.booking__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking__lead {
  max-width: 42ch;
  margin: 0 0 1.25rem;
  color: rgba(247, 245, 239, 0.88);
  font-size: 1.02rem;
  line-height: 1.65;
}

.booking__steps {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.booking__steps li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(247, 245, 239, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.booking__steps span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(232, 111, 8, 0.35);
  background: rgba(232, 111, 8, 0.12);
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.booking__phone {
  margin: 0;
  color: rgba(247, 245, 239, 0.78);
  font-size: 0.95rem;
}

.booking__phone a {
  color: var(--color-orange);
  font-weight: 700;
}

.booking-card {
  position: relative;
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(247, 245, 239, 0.1), rgba(8, 13, 12, 0.72)),
    rgba(12, 22, 19, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  isolation: isolate;
  overflow: hidden;
}

.booking-card__border {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 1px;
  opacity: 0.65;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--color-orange) 70deg,
    rgba(255, 122, 10, 0.35) 130deg,
    transparent 190deg
  );
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  animation: bookingBorderSpin 5s linear infinite;
}

@keyframes bookingBorderSpin {
  to {
    transform: rotate(360deg);
  }
}

.booking-card__spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--spot-x, 50%) var(--spot-y, 50%),
    rgba(232, 111, 8, 0.14),
    transparent 40%
  );
}

.booking-form {
  position: relative;
  z-index: 1;
  color-scheme: dark;
}

.booking-mode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 1rem;
}

.booking-mode__option {
  display: grid;
  gap: 0.22rem;
  min-height: 68px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(247, 245, 239, 0.07), rgba(247, 245, 239, 0.02)),
    rgba(8, 13, 12, 0.58);
  color: rgba(247, 245, 239, 0.78);
  cursor: pointer;
  text-align: left;
  transition:
    border-color var(--ease-ui),
    background var(--ease-ui),
    color var(--ease-ui),
    transform var(--ease-ui);
}

.booking-mode__option:hover,
.booking-mode__option:focus-visible {
  outline: none;
  border-color: rgba(232, 111, 8, 0.5);
  color: var(--color-snow);
}

.booking-mode__option.is-active {
  border-color: rgba(232, 111, 8, 0.78);
  background:
    linear-gradient(135deg, rgba(232, 111, 8, 0.28), rgba(232, 111, 8, 0.08)),
    rgba(8, 13, 12, 0.82);
  color: var(--color-snow);
  transform: translateY(-1px);
}

.booking-mode__option span {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.booking-mode__option small {
  color: rgba(247, 245, 239, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.booking-mode__option.is-active small {
  color: rgba(247, 245, 239, 0.78);
}

.booking-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 1rem;
}

.booking-form [hidden] {
  display: none !important;
}

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

.booking-rental-note {
  margin: 0.4rem 0 0;
  color: rgba(247, 245, 239, 0.66);
  font-size: 0.88rem;
  line-height: 1.45;
}

.booking-field {
  display: grid;
  gap: 0.4rem;
}

.booking-field__label {
  color: rgba(247, 245, 239, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(8, 13, 12, 0.72);
  color: var(--color-snow);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color var(--ease-ui),
    box-shadow var(--ease-ui),
    background var(--ease-ui);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(247, 245, 239, 0.42);
}

.booking-form select {
  appearance: none;
  padding-right: 2.2rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-orange) 50%),
    linear-gradient(135deg, var(--color-orange) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.booking-form select option {
  background: #101916;
  color: var(--color-snow);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(232, 111, 8, 0.75);
  background: rgba(8, 13, 12, 0.92);
  box-shadow:
    0 0 0 3px rgba(232, 111, 8, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.booking-form textarea {
  min-height: 112px;
  resize: vertical;
}

.booking-form__wide {
  grid-column: 1 / -1;
}

.booking-date {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr) auto minmax(0, 1.05fr);
  gap: 0.65rem;
  align-items: center;
}

.booking-date__sep {
  color: rgba(247, 245, 239, 0.55);
  font-size: 0.78rem;
  white-space: nowrap;
}

.booking-date__pick {
  color-scheme: dark;
}

.booking-date__pick::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.82) sepia(0.35) saturate(4) hue-rotate(345deg);
  opacity: 0.9;
}

.booking-field__error {
  margin: 0;
  color: #ffb4a6;
  font-size: 0.78rem;
  line-height: 1.35;
}

.booking-field--invalid input,
.booking-field--invalid select,
.booking-field--invalid textarea {
  border-color: rgba(255, 120, 100, 0.65);
}

.form-error {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 120, 100, 0.35);
  border-radius: 6px;
  background: rgba(255, 120, 100, 0.1);
  color: #ffb4a6;
  font-size: 0.9rem;
}

.booking-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 54px;
  padding: 0.75rem 1.25rem;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--color-orange) 0%, #ff7a0a 100%);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--ease-ui), filter var(--ease-ui);
}

.booking-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.booking-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.booking-submit__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.42) 50%, transparent 72%);
  transform: translateX(-120%);
  animation: bookingSubmitShine 3.2s ease-in-out infinite;
}

@keyframes bookingSubmitShine {
  0%,
  55% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

.booking-submit__arrow {
  font-size: 1.1rem;
  transition: transform var(--ease-ui);
}

.booking-submit:hover .booking-submit__arrow {
  transform: translateX(3px);
}

.final-cta {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(420px, 55vw, 560px);
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.9) contrast(1.04) brightness(0.88);
}

.final-cta__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 10, 0.82) 0%, rgba(4, 12, 10, 0.45) 45%, rgba(4, 12, 10, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 12, 10, 0.35), transparent 40%);
}

.route-line--cta {
  position: absolute;
  top: 24%;
  left: clamp(16px, 3vw, 40px);
  z-index: 2;
  width: 40px;
  height: 200px;
}

.final-cta__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  padding-block: 4rem;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.faq__grid > div > p {
  max-width: 40ch;
  color: rgba(247, 245, 239, 0.76);
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.faq-list summary {
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list details[open] summary {
  color: var(--color-orange);
}

.faq-list p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: rgba(247, 245, 239, 0.76);
  font-size: 0.94rem;
}

.footer {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
  background: var(--color-forest-950);
  color: rgba(247, 245, 239, 0.82);
  overflow: hidden;
}

.route-line--footer {
  position: absolute;
  bottom: 72px;
  left: clamp(16px, 3vw, 40px);
  width: 120px;
  height: 60px;
  opacity: 0.7;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  width: var(--container);
  margin-inline: auto;
}

.footer__logo {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__heading {
  margin: 0 0 0.75rem;
  color: var(--color-snow);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer nav,
.footer__contacts {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__social a:hover,
.footer nav a:hover,
.footer__contacts a:hover {
  color: var(--color-orange);
}

.footer__mountains {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: 48px;
  width: 200px;
  height: 60px;
  color: rgba(247, 245, 239, 0.18);
}

.footer__bottom {
  width: var(--container);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-dark);
  color: rgba(247, 245, 239, 0.55);
  font-size: 0.86rem;
}

.mobile-booking-bar {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 80;
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--color-orange);
  box-shadow: var(--shadow-soft);
  color: var(--color-black);
  font-weight: 800;
  text-align: center;
}

.mobile-booking-bar[hidden] {
  display: none;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
    --header-height-scrolled: 60px;
  }

  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

  .button--whatsapp {
    min-width: 0;
    padding-inline: 0.8rem;
  }

  .button__text--desktop {
    display: none;
  }

  .button__text--mobile {
    display: inline;
  }

  .hero {
    align-items: end;
    min-height: 100svh;
    background:
      radial-gradient(circle at 64% 18%, rgba(48, 89, 104, 0.22), transparent 42%),
      linear-gradient(180deg, #06151b 0%, #020809 100%);
  }

  .hero__media {
    inset: 0 0 auto;
    width: 100%;
    height: min(60svh, 540px);
  }

  .hero__media img {
    filter: saturate(0.98) contrast(1.02) brightness(0.94);
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(4, 16, 21, 0.04) 0%, rgba(4, 16, 21, 0.04) 34%, rgba(4, 16, 21, 0.68) 53%, #020809 70%, #020809 100%),
      linear-gradient(90deg, rgba(4, 16, 21, 0.04) 0%, rgba(4, 16, 21, 0.3) 100%),
      linear-gradient(0deg, rgba(4, 16, 21, 0.1), rgba(4, 16, 21, 0.1));
  }

  .hero__content {
    display: block;
    width: min(100% - 28px, 460px);
    margin-inline: auto;
    padding:
      calc(var(--header-height) + 1rem)
      14px
      clamp(2.2rem, 8vh, 4rem);
  }

  .hero__copy {
    max-width: none;
    transform: none;
  }

  .hero__eyebrow {
    margin-bottom: 0.9rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .hero__eyebrow span {
    width: 28px;
    flex-shrink: 0;
  }

  .hero__title {
    max-width: 100%;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 10.2vw, 2.45rem);
    line-height: 0.94;
    overflow-wrap: break-word;
  }

  .hero__lead {
    max-width: 34ch;
    margin-bottom: 1.35rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero .button {
    width: 100%;
    min-height: 52px;
  }

  .bike-tile__body {
    padding: 1.15rem;
  }

  .hero__coords {
    display: none;
  }

  .intro__layout,
  .equipment__grid,
  .booking__grid,
  .faq__grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .equipment__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "catalog"
      "foot";
  }

  .equipment-catalog__nav {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.45rem;
    margin: 1rem 0;
    padding-bottom: 0.35rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .equipment-catalog__nav::-webkit-scrollbar {
    display: none;
  }

  .equipment__foot {
    grid-area: foot;
    align-self: end;
  }

  .equipment-catalog__nav-item {
    flex: 0 0 auto;
    width: auto;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    white-space: nowrap;
    transform: none;
  }

  .equipment-catalog__nav-item::after {
    display: none;
  }

  .equipment-catalog__nav-item:hover {
    transform: none;
  }

  .equipment-catalog__nav-item.is-active {
    border-color: rgba(232, 111, 8, 0.55);
    background: rgba(232, 111, 8, 0.12);
  }

  .equipment-catalog__stage {
    min-height: min(340px, 55vh);
  }

  .equipment-catalog__arrow {
    width: 40px;
    height: 40px;
  }

  .equipment-catalog__item {
    max-height: 58vh;
  }

  .equipment__cta {
    width: 100%;
    justify-content: center;
  }

  .tours__pricing-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .tours__specials--bikes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-carousel__slide[data-offset="-2"],
  .tour-carousel__slide[data-offset="2"] {
    opacity: 0;
    pointer-events: none;
  }

  .tour-carousel__slide[data-offset="-1"] {
    transform: translate3d(-58%, 0, -80px) scale(0.8) rotateY(18deg);
  }

  .tour-carousel__slide[data-offset="1"] {
    transform: translate3d(58%, 0, -80px) scale(0.8) rotateY(-18deg);
  }

  .tours__cta {
    width: 100%;
  }

  .intro__coords {
    display: none;
  }

  .intro__copy {
    padding-left: 0;
    order: 2;
  }

  .intro__photo {
    order: 1;
    min-height: 240px;
  }

  .formats .section__inner,
  .tours .section__inner,
  .gallery .section__inner {
    width: min(1240px, calc(100% - 24px));
  }

  .format-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bike-layout-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bike-expand,
  .bike-tile__gallery--soon {
    height: clamp(220px, 52vw, 280px);
    min-height: clamp(220px, 52vw, 280px);
  }

  .bike-expand__item {
    flex: 0 0 28%;
  }

  .format-card {
    min-height: 320px;
  }

  .format-card__overlay {
    padding: 1.35rem 1.15rem;
  }

  .tour-carousel {
    width: auto;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    padding-inline: 0;
  }

  .tour-carousel__viewport {
    height: clamp(300px, 78vw, 420px);
  }

  .tour-carousel__track {
    width: min(560px, 88vw);
  }

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

  .tour-price-card {
    padding: 1rem 0.85rem;
    min-height: 108px;
  }

  .tour-price-card__price {
    font-size: clamp(1.1rem, 5.2vw, 1.45rem);
  }

  .tours__panel {
    padding: 1.1rem;
  }

  .tours__specials,
  .tours__specials--bikes {
    grid-template-columns: 1fr;
  }

  .tour-special-card {
    min-height: 300px;
  }

  .tour-special-card__label {
    max-width: 24ch;
  }

  .tour-special-card--advanced .tour-special-card__overlay {
    padding-right: 1.15rem;
  }

  .booking-form__fields {
    grid-template-columns: 1fr;
  }

  .booking-mode-fields {
    grid-template-columns: 1fr;
  }

  .booking-mode {
    grid-template-columns: 1fr;
  }

  .booking-date {
    grid-template-columns: 1fr;
  }

  .booking-date__sep {
    text-align: center;
  }

  .booking-card {
    padding: 1rem;
  }

  .booking__steps {
    margin-bottom: 1rem;
  }

  .footer__mountains {
    display: none;
  }
}

@media (min-width: 769px) {
  .mobile-booking-bar {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-booking-bar {
    inset: auto 12px calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  .header-phone {
    display: inline-flex;
  }

  .hero {
    align-items: center;
    min-height: clamp(720px, 100svh, 950px);
    background:
      radial-gradient(circle at 76% 22%, rgba(31, 67, 78, 0.28), transparent 34%),
      linear-gradient(115deg, #06151b 0%, #041015 52%, #020809 100%);
  }

  .hero__media {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(4, 16, 21, 0.1) 0%, rgba(4, 16, 21, 0.12) 34%, rgba(4, 16, 21, 0.48) 60%, rgba(2, 8, 9, 0.88) 100%),
      linear-gradient(180deg, rgba(2, 8, 9, 0.18) 0%, rgba(2, 8, 9, 0.04) 38%, rgba(2, 8, 9, 0.82) 100%),
      linear-gradient(0deg, rgba(4, 16, 21, 0.14), rgba(4, 16, 21, 0.14));
  }

  .hero__content {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(350px, 0.88fr);
    align-items: center;
    gap: 1.5rem;
    width: min(100% - 40px, 900px);
    padding: calc(var(--header-height) + 2rem) 0 clamp(3rem, 7vh, 5rem);
  }

  .hero__copy {
    grid-column: 2;
    max-width: 430px;
    transform: translateY(14px);
  }

  .hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero__eyebrow span {
    width: 34px;
  }

  .hero__title {
    max-width: 10ch;
    font-size: 2.8rem;
  }

  .hero__lead {
    max-width: 420px;
  }

  .hero .hero__actions {
    display: flex;
  }

  .hero .button {
    width: auto;
  }

  .hero__coords {
    display: block;
  }
}

.legal-page {
  max-width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  color: rgba(247, 245, 239, 0.92);
}

.legal-page__header {
  margin-bottom: 2rem;
}

.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  color: var(--color-orange);
  font-weight: 600;
  transition: color var(--ease-ui);
}

.legal-page__back:hover {
  color: var(--color-orange-hover);
}

.legal-page__meta {
  margin: 0 0 0.75rem;
  color: rgba(247, 245, 239, 0.55);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.legal-page h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.legal-page__lead {
  margin: 0;
  color: rgba(247, 245, 239, 0.78);
  font-size: 1.02rem;
  line-height: 1.65;
}

.legal-page__toc {
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.legal-page__toc-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.legal-page__toc ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.legal-page__toc a {
  color: rgba(247, 245, 239, 0.86);
  text-decoration: underline;
  text-decoration-color: rgba(232, 111, 8, 0.35);
  text-underline-offset: 0.18em;
  transition: color var(--ease-ui);
}

.legal-page__toc a:hover {
  color: var(--color-orange-hover);
}

.legal-page__content {
  display: grid;
  gap: 2rem;
}

.legal-section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-snow);
}

.legal-section p {
  margin: 0 0 0.85rem;
  color: rgba(247, 245, 239, 0.78);
  line-height: 1.68;
}

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

.legal-list {
  margin: 0 0 0.85rem;
  padding-left: 1.2rem;
  color: rgba(247, 245, 239, 0.78);
  line-height: 1.65;
}

.legal-list li + li {
  margin-top: 0.35rem;
}

.legal-section a {
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.legal-section a:hover {
  color: var(--color-orange-hover);
}

.legal-page__footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border-dark);
  color: rgba(247, 245, 239, 0.55);
  font-size: 0.9rem;
}

.legal-page__footer a {
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

@media (max-width: 768px) {
  .legal-page {
    max-width: calc(100% - 28px);
    padding-top: 1.5rem;
  }

  .legal-page__toc {
    padding: 1rem;
  }
}
