:root {
  --ink: #101214;
  --muted: #5c6670;
  --paper: #fbfaf7;
  --line: rgba(16, 18, 20, 0.12);
  --green: #28d684;
  --amber: #f7b733;
  --red: #e94f37;
  --blue: #1769aa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.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: 18px clamp(20px, 4vw, 56px);
  color: white;
  background: rgba(16, 18, 20, 0.88);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav {
  gap: clamp(12px, 3vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.site-nav a:focus-visible,
.button:focus-visible,
.contact-details a:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 130px clamp(20px, 5vw, 72px) 54px;
  overflow: hidden;
  color: white;
}

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

.slide {
  opacity: 0;
  transform: scale(1.04);
  background-size: cover;
  background-position: center;
  transition: opacity 1200ms ease, transform 6200ms ease;
}

.slide:nth-child(1) {
  background-image: url("https://images.unsplash.com/photo-1558981403-c5f9899a28bc?auto=format&fit=crop&w=2200&q=85");
}

.slide:nth-child(2) {
  background-image: url("https://images.unsplash.com/photo-1517846693594-1567da72af75?auto=format&fit=crop&w=2200&q=85");
}

.slide:nth-child(3) {
  background-image: url("https://images.unsplash.com/photo-1530046339160-ce3e530c7d2f?auto=format&fit=crop&w=2200&q=85");
}

.slide:nth-child(4) {
  background-image: url("https://images.unsplash.com/photo-1449426468159-d96dbf08f19f?auto=format&fit=crop&w=2200&q=85");
}

.slide:nth-child(5) {
  background-image: url("https://images.unsplash.com/photo-1508357941501-0924cf312bbd?auto=format&fit=crop&w=2200&q=85");
}

.slide:nth-child(6) {
  background-image: url("https://images.unsplash.com/photo-1568772585407-9361f9bf3a87?auto=format&fit=crop&w=2200&q=85");
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.55)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.04) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 10vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

.intro-copy h2 span {
  display: block;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.35;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: #06130d;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: white;
  backdrop-filter: blur(10px);
}

.availability-panel {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 72px);
  bottom: 54px;
  width: min(360px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(12, 14, 16, 0.62);
  backdrop-filter: blur(16px);
}

.availability-panel div {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(40, 214, 132, 0.18);
}

.panel-label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.availability-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.12;
}

.availability-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.intro-section,
.process-section,
.contact-section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.intro-section,
.split-section,
.process-section,
.contact-section {
  scroll-margin-top: 108px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
  background: white;
}

.intro-copy p:not(.section-kicker),
.section-text p,
.timeline p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stats-row div {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  border: 1px solid rgba(16, 18, 20, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 246, 241, 0.94)),
    #f7f6f1;
  box-shadow: 0 14px 34px rgba(16, 18, 20, 0.07);
  text-align: center;
}

.stats-row div::before {
  content: "";
  width: 42px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--amber);
}

.stats-row div:nth-child(2)::before {
  background: var(--blue);
}

.stats-row div:nth-child(3)::before {
  background: var(--green);
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.08;
}

.stats-row span {
  max-width: 210px;
  color: var(--muted);
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  min-height: 680px;
  background: #f1f3f4;
}

.split-section.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.split-section.reverse .section-media {
  order: 2;
}

.section-media {
  min-height: 460px;
  background-size: cover;
  background-position: center;
}

.rider-media {
  background-image: url("https://images.unsplash.com/photo-1517846693594-1567da72af75?auto=format&fit=crop&w=1600&q=85");
}

.workshop-media {
  background-image: url("https://images.unsplash.com/photo-1449426468159-d96dbf08f19f?auto=format&fit=crop&w=1600&q=85");
}

.section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 72px);
}

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

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: #2f363d;
  font-size: 17px;
  line-height: 1.5;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--red);
}

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

.process-section h2 {
  max-width: 900px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--red));
}

.timeline-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 270px;
  padding: 0 0 0;
}

.timeline-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #1d2023;
  color: var(--amber);
  font-weight: 900;
}

.timeline-step h3 {
  max-width: 210px;
  margin-bottom: 0;
}

.timeline-step p {
  max-width: 220px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
}

.contact-section {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.contact-copy {
  max-width: 900px;
}

.contact-copy p:not(.section-kicker) {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 18px;
  padding-top: 0;
  border-top: 0;
  font-style: normal;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
}

.contact-detail-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 26px;
  height: 26px;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ff6f00;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--blue);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: white;
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .availability-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 36px;
  }

  .intro-section,
  .contact-section,
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .section-media {
    order: 0;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 31px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-step {
    min-height: auto;
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 18px;
    padding-bottom: 34px;
  }

  .timeline-step h3,
  .timeline-step p {
    max-width: none;
    grid-column: 2;
  }

  .timeline-number {
    grid-row: 1 / span 2;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    font-size: 13px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 156px;
  }

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

  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .stats-row div {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
