:root {
  --ink: #161b18;
  --muted: #5d675f;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --line: #ded8cc;
  --forest: #263a2d;
  --moss: #5b7a44;
  --clay: #b95d36;
  --sun: #e8b85b;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(22, 27, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 18, 14, 0.78), rgba(12, 18, 14, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.88);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-action,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-action {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("https://unsplash.com/photos/OkdBRtO6aQM/download?force=true&w=2200");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 12, 9, 0.84) 0%, rgba(7, 12, 9, 0.62) 36%, rgba(7, 12, 9, 0.16) 70%),
    linear-gradient(0deg, rgba(22, 27, 24, 0.72), rgba(22, 27, 24, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 80px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.6;
}

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

.primary-btn {
  color: #1c160b;
  background: var(--sun);
  box-shadow: 0 12px 36px rgba(232, 184, 91, 0.24);
}

.primary-btn:hover {
  background: #f0c56e;
}

.secondary-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.quick-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro p:last-child {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.bike-card {
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 32px rgba(22, 27, 24, 0.06);
}

.bike-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 34px;
  font-size: 0.82rem;
  font-weight: 900;
}

.bike-type {
  color: var(--clay);
  text-transform: uppercase;
}

.status {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--forest);
  background: #eef3e7;
}

.bike-card h3 {
  margin: 0;
  font-size: 1.65rem;
}

.bike-card p {
  color: var(--muted);
  line-height: 1.65;
}

.bike-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.bike-card li {
  position: relative;
  padding-left: 20px;
  color: #364039;
}

.bike-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--moss);
  content: "";
}

.route-band {
  padding: 88px clamp(18px, 6vw, 72px);
  color: var(--white);
  background: var(--forest);
}

.route-band .section-heading {
  width: min(1160px, 100%);
  margin: 0 auto 34px;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1160px, 100%);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
}

.route-list article {
  min-height: 230px;
  padding: 28px;
  background: var(--forest);
}

.route-list span {
  color: var(--sun);
  font-weight: 900;
}

.route-list h3,
.steps h3 {
  margin: 20px 0 10px;
  font-size: 1.35rem;
}

.route-list p,
.steps p,
.contact-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.booking {
  padding-bottom: 98px;
}

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

.steps div {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #efe8dc;
}

.steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--clay);
  font-weight: 900;
}

.steps p {
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 70px clamp(18px, 6vw, 72px);
  color: var(--white);
  background: #1d221f;
}

.contact-band > div {
  max-width: 760px;
}

.contact-band p:last-child {
  margin-top: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 72px);
  color: #6d766f;
  background: #121613;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    max-width: 150px;
  }

  .nav-links {
    display: none;
  }

  .nav-action {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 86vh;
  }

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

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.4rem);
  }

  .intro,
  .bike-grid,
  .route-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .bike-card,
  .steps div,
  .route-list article {
    min-height: auto;
  }

  .contact-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .nav-action {
    font-size: 0;
    width: 42px;
    padding: 0;
  }

  .hero-actions a {
    width: 100%;
  }

  .quick-facts span {
    font-size: 0.82rem;
  }
}
