@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  /* ===== COLORS ===== */
  --black: #0a0a0a;
  --charcoal: #151515;
  --graphite: #242424;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gray: #b2b2b2;
  --lime: #bed200;

  /* ===== LAYOUT ===== */
  --container: 1360px;
  --gutter: 25px;
  --radius: 20px;

  /* ===== TRANSITIONS ===== */
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--charcoal);
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--charcoal);
  color: var(--black);
  font-family: "Sora", Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.02em;
  overflow-x: clip;
}

body.menu-is-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  width: min(100% - (2 * var(--gutter)), var(--container));
  max-width: 100%;
  margin-inline: auto;
}

main,
main > section {
  min-width: 0;
  max-width: 100%;
}

main {
  width: 100%;
  overflow-x: clip;
}

.button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 9px 25px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--black);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.button:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.is-light .button:not(.is-dark):hover,
.is-light .button:not(.is-dark):focus-visible {
  background: var(--black);
  color: var(--white);
}

.button.is-dark {
  background: var(--black);
  color: var(--white);
}

.button.is-dark:hover {
  background: var(--graphite);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 33px;
  padding: 7px 17px;
  border: 2px solid var(--lime);
  border-radius: 999px;
  color: rgba(21, 21, 21, 0.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  backdrop-filter: blur(4px);
}

.eyebrow.is-on-dark {
  color: rgba(255, 255, 255, 0.85);
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.23;
  letter-spacing: -0.02em;
}

.section-heading > p {
  max-width: 530px;
  margin: 18px auto 0;
  color: rgba(10, 10, 10, 0.8);
}

.section-heading.is-centered {
  text-align: center;
}

.section-heading.is-row {
  display: block;
}

/* Universal subpage title */
.page-title {
  padding: 115px 0 50px;
  color: var(--white);
  background: var(--charcoal);
}

.page-title .breadcrumbs {
  margin-bottom: 25px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  list-style: none;
}

.page-title .breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  color: var(--lime);
  content: "/";
}

.page-title .breadcrumbs a:hover {
  color: var(--lime);
}

.page-title__copy {
  max-width: 800px;
}

.page-title h1 {
  max-width: 760px;
  margin: 14px 0 20px;
  font-size: clamp(38px, 10vw, 54px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-title__copy > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.6;
}
.scroll-progress {
  width: 180px;
  height: 3px;
  margin: 30px 0 0 15px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--off-white);
}

.scroll-progress span {
  display: block;
  width: 30%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  transform-origin: left;
}

.carousel-nav {
  display: none;
}

/* Header / WordPress menu */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--black);
  transition: height 320ms ease, background-color 320ms ease, box-shadow 320ms ease;
}

.site-header.is-scroll {
  position: fixed;
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.site-header__inner {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 100%;
  align-items: center;
  padding: 0 21px 0 25px;
  transition: padding 320ms ease;
}

.site-header__logo {
  position: relative;
  z-index: 102;
  flex: 0 0 87px;
  width: 87px;
  height: 40px;
  transition: width 320ms ease, flex-basis 320ms ease;
}

.site-header__logo img {
  width: 87px;
  height: 40px;
  object-fit: contain;
  transition: width 320ms ease, height 320ms ease;
}

.site-header__actions {
  z-index: 102;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.phone-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 4px;
  margin-right: 20px;
  color: var(--lime);
  font-size: 15px;
  font-weight: 600;
}

.phone-link span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  font-size: 0;
}

.phone-link span img {
  width: 12px;
  height: 20px;
}

.phone-link strong {
  display: block;
  white-space: nowrap;
}

.cart-link {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--white);
}

.cart-link img {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle i {
  position: absolute;
  width: 30px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition), top var(--transition);
}

.menu-toggle i:first-of-type {
  top: 15px;
}

.menu-toggle i:last-of-type {
  top: 24px;
}

.menu-toggle[aria-expanded="true"] i:first-of-type {
  top: 19px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i:last-of-type {
  top: 19px;
  transform: rotate(-45deg);
}

.primary-navigation {
  position: fixed;
  z-index: 101;
  inset: 0;
  visibility: hidden;
  overflow-y: auto;
  padding: 115px 25px 45px;
  background: rgba(10, 10, 10, 0.98);
  opacity: 0;
  transform: translateX(100%);
  transition: visibility var(--transition), opacity var(--transition), transform var(--transition);
}

.primary-navigation.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.menu,
.sub-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu > .menu-item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.menu-item > a {
  display: block;
  padding: 15px 44px 15px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 600;
  transition: color 180ms ease, padding 320ms ease;
}

.menu-item > a:hover {
  color: var(--lime);
}

.submenu-toggle {
  position: absolute;
  z-index: 2;
  top: 9px;
  right: 0;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--white);
  cursor: pointer;
}

.submenu-toggle::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform var(--transition);
}

.submenu-toggle[aria-expanded="true"]::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.sub-menu {
  max-height: 0;
  overflow: hidden;
  padding-left: 18px;
  opacity: 0;
  transition: max-height 300ms ease, opacity var(--transition);
}

.menu-item.is-open > .sub-menu {
  max-height: 700px;
  opacity: 1;
}

.sub-menu .menu-item {
  position: relative;
}

.sub-menu .menu-item > a {
  padding-block: 11px;
  font-size: 15px;
  font-weight: 400;
}

/* Hero */
.hero {
    position: relative;
    padding: 80px 0 0;
    color: var(--white);
    background: linear-gradient(var(--black) 76%, var(--charcoal));
    height: calc(100svh + 135px);
    max-height: 1035px;
}

.hero__media {
    position: absolute;
    z-index: 0;
    top: 80px;
    left: 50%;
    width: calc(100% + 28px);
    height: calc(100svh - 140px);
    overflow: hidden;
    transform: translateX(-50%);
    max-height: 760px;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(36, 36, 36, 0.3)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  content: "";
}

.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  position: absolute;
  top: -23.82%;
  left: 0;
  width: 100%;
  max-width: none;
  height: 123.74%;
  object-fit: cover;
  transform: scaleX(-1);
}

.hero__content {
    position: absolute;
    z-index: 1;
    top: 80px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 30px;
    height: calc(100svh - 100px);
    max-height: 800px;
}

.hero__copy h1 {
  margin: 7px 0 12px;
  font-size: clamp(30px, 8.18vw, 36px);
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.02em;
}

.hero__copy > p {
    margin: 0 0 20px;
    font-size: clamp(18px, 5.45vw, 24px);
    line-height: 40px;
}

.hero__copy .button-row {
  gap: 20px;
}

.hero__copy .button {
  padding-inline: 24px;
}

.hero-stats {
    display: grid;
    width: calc(100% + 30px);
    grid-template-columns: 1.4fr 1.3fr 1fr;
    gap: 0;
    align-items: start;
    padding: 20px 25px;
    margin-left: -15px;
    border-radius: var(--radius);
    background: var(--graphite);
}

.hero-stats__reviews,
.hero-scroll {
  display: none;
}

.hero-stats strong {
    display: block;
    margin-bottom: 3px;
    font-size: clamp(28px, 8.18vw, 30px);
    font-weight: 600;
    line-height: 40px;
    white-space: nowrap;
    height: 45px;
}

.hero-stats small {
  font-size: clamp(14px, 4.55vw, 20px);
}

.hero-stats > div > span {
    display: block;
    max-width: 100px;
    color: rgba(245, 245, 245, 0.6);
    line-height: 20px;
    font-size: 14px;
}

.mobile-rating {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 20px;
    padding: 35px 0 23px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(245, 245, 245, 0.6);
}

.mobile-rating > div {
  grid-column: 1;
  color: var(--lime);
  font-size: 22px;
  letter-spacing: 3px;
}

.mobile-rating p {
  margin: 3px 0 0;
}

.mobile-rating p:last-child {
    display: flex;
    min-width: 85px;
    grid-column: 2;
    grid-row: 1 / span 2;
    flex-direction: column;
    align-items: flex-start;
    margin-top: -10px;
}

.mobile-rating p:last-child strong {
    color: var(--white);
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
}

/* About */
.about {
  padding: 50px 0 35px;
  background: var(--white);
}

.about__intro {
  display: grid;
  gap: 25px;
}

.about__intro h2 {
    margin: 0 0 15px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.about__intro p {
  max-width: 550px;
  margin: 0;
  color: rgba(10, 10, 10, 0.8);
  line-height: 20px;
}

.about__action {
  display: flex;
  justify-content: flex-end;
  margin-top: -25px;
}

.about .scroll-progress {
  width: max(0px, calc(100% - 190px));
  margin-top: 52px;
}

.image-strip {
  margin-top: 30px;
}

.image-strip__track {
  display: grid;
  width: calc(100% + var(--gutter));
  grid-auto-columns: calc((100vw - (2 * var(--gutter))) / 1.45);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-right: var(--gutter);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.image-strip__track::-webkit-scrollbar,
.services__grid::-webkit-scrollbar,
.bikes__track::-webkit-scrollbar {
  display: none;
}

.image-strip figure {
  height: 266px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.image-strip figure > a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services */
.services {
  padding: 50px 0 60px;
  background: var(--white);
}

.services__region {
  margin-top: 35px;
}

.services__grid {
  display: grid;
  width: calc(100% + var(--gutter));
  grid-auto-columns: calc((100vw - (2 * var(--gutter))) / 1.45);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-right: var(--gutter);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-card {
  display: block;
  height: 230px;
  padding: 15px;
  border-radius: var(--radius);
  background: var(--off-white);
  scroll-snap-align: start;
  transition: background-color var(--transition), transform var(--transition);
}

.service-card:hover {
  background: #edf0d2;
  transform: translateY(-3px);
}

.service-card > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--lime);
  font-size: 24px;
  font-weight: 600;
}

.service-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
}

.service-card p {
  margin: 0;
  color: rgba(10, 10, 10, 0.8);
  line-height: 20px;
}

.services__action {
  display: flex;
  justify-content: flex-end;
  margin-top: -25px;
}

/* Bikes */
.bikes {
  overflow: hidden;
  padding: 50px 0 45px;
  background: var(--white);
}

.bikes .container {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
}

.bikes .section-heading.is-row {
  display: block;
  grid-row: 1;
}

.bikes-label-desktop {
  display: none;
}

.bikes .section-heading h2 {
  margin: 2px 0 0;
  font-size: 30px;
  line-height: 40px;
}

.bikes__region {
  min-width: 0;
  width: calc(100% + 40px);
  grid-row: 2;
  margin: 40px 0 0 -15px;
}

.bikes__track {
  display: grid;
  min-width: 0;
  width: 100%;
  grid-auto-columns: calc(75% + 11.25px);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-right: 25px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-card {
  width: 100%;
  min-width: 0;
  height: auto;
  container-type: inline-size;
  scroll-snap-align: start;
}

.product-card a {
  display: block;
  height: 100%;
}

.product-card__image {
  display: grid;
  width: 100%;
  height: auto;
  aspect-ratio: 31 / 24;
  overflow: hidden;
  place-items: center;
  border-radius: var(--radius);
  background: #f1f1f1;
}

.product-card__image img {
  width: 85.484%;
  height: 75.417%;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: darken;
}

.product-card__content {
  position: relative;
  width: calc(100% - 30px);
  height: 107px;
  padding: 0;
  margin: 10px 15px 0;
}

.product-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
}

.product-card__content > p {
  width: 220px;
  margin: 0;
  color: rgba(10, 10, 10, 0.8);
  font-size: 15px;
  line-height: 20px;
}

.product-card__content > p:last-of-type {
  margin-top: 23px;
  font-size: 14px;
}

.product-card__content > p:last-of-type strong {
  color: var(--lime);
  font-size: 18px;
  font-weight: 600;
}

.product-action {
  display: block;
  width: 76px;
  color: var(--black);
  text-align: center;
}

.product-card .product-action {
  position: absolute;
  top: 27px;
  right: 0;
}

.product-action > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--lime);
}

.product-action .theme-icon {
  width: 19.5px;
  height: 19.5px;
  color: var(--black);
  fill: none;
}

.product-action b {
  display: block;
  margin-top: 7px;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}



.bikes .scroll-progress {
  width: max(0px, calc(100% - 245px));
  margin-top: 87px;
}

.bikes__action {
  display: flex;
  grid-row: 3;
  justify-content: flex-end;
  margin-top: -24px;
}

.bikes__action .button {
  width: 185px;
  padding-inline: 15px;
  white-space: nowrap;
}

/* Featured bike */
.featured-bike {
  position: relative;
  padding: 60px 0 56px;
  overflow: hidden;
  color: var(--white);
  background: #050705;
}

.featured-bike::before,
.featured-bike::after {
  position: absolute;
  inset: 0;
  content: "";
}

.featured-bike::before {
  background: var(--featured-background, url("../img/featured-bike-bg.jpg")) center / cover no-repeat;
}

.featured-bike::after {
  background: rgba(0, 0, 0, 0.8);
}

.featured-bike .container {
  position: relative;
  z-index: 1;
}

.featured-bike__copy h2 {
  margin: 2px 0 20px;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}

.featured-bike__copy > p {
  max-width: 338px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 20px;
}

.featured-bike__panel {
  display: grid;
  grid-template-rows: 265px 200px;
  margin-top: 35px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.featured-bike__media {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  background: var(--charcoal);
  cursor: zoom-in;
}

.featured-bike__logo {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
  width: 82px;
  height: 59px;
  object-fit: cover;
  mix-blend-mode: exclusion;
  pointer-events: none;
}

.featured-bike__media:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px var(--lime);
}

.featured-bike__image {
  position: absolute;
  top: 13.34%;
  left: 5.79%;
  width: 88.28%;
  height: 86.65%;
  object-fit: contain;
  pointer-events: none;
}

.featured-bike__details {
  position: relative;
  height: 200px;
  padding: 5px 27px 22px;
  background: var(--charcoal);
}

.featured-bike__details h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
}

.featured-bike__details dl {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
}

.featured-bike__details dl div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
}

.featured-bike__details dt {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 20px;
}

.featured-bike__details dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.featured-bike__details > div {
  display: block;
  margin: 0;
}

.featured-bike__details > div > p {
  position: absolute;
  bottom: 22px;
  left: 27px;
  width: 255px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
}

.featured-bike__details > div > p strong {
    color: var(--lime);
    font-size: 18px;
    font-weight: 600;
}

.featured-bike .product-action {
  position: absolute;
  top: 100px;
  right: 25px;
}

.featured-bike .product-action b {
  color: var(--white);
}
/* Delivery */
.delivery {
  padding: 60px 0;
  background: var(--white);
}

.delivery__cards {
  display: grid;
  gap: 10px;
  margin-top: 35px;
}

.delivery__cards article {
  display: flex;
  min-height: 130px;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

.delivery__cards article > strong {
  display: grid;
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 2px solid var(--lime);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: var(--lime);
  font-size: 30px;
  font-weight: 600;
}

.delivery__cards p {
  margin: 0;
  color: rgba(10, 10, 10, 0.8);
  line-height: 20px;
}

/* Image-text */
.image-text {
  padding: 40px 0;
}

.image-text.is-light {
  background: var(--white);
  color: var(--black);
}

.image-text.is-dark {
  background: var(--black);
  color: var(--white);
}

.image-text > .container {
  display: grid;
  gap: 25px;
}

.delivery + .image-text {
  padding-top: 60px;
}

.image-text__media {
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
}

.image-text__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-text__copy h2 {
  margin: 8px 0 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.image-text__copy p {
  margin: 0 0 20px;
  color: rgba(10, 10, 10, 0.8);
  line-height: 20px;
}

.image-text.is-dark .image-text__copy p {
  color: rgba(255, 255, 255, 0.75);
}

.image-text.is-dark .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.image-text.is-dark .button.is-dark {
  background: var(--white);
  color: var(--black);
}

.image-text.is-dark .button.is-dark:hover {
  background: var(--off-white);
}

/* FAQ */
.faq {
  padding: 60px 0;
  background: var(--off-white);
}

.image-text + .faq {
  padding-top: 120px;
}

.faq .container {
  display: grid;
  gap: 30px;
}

.faq__list article {
  border-bottom: 1px solid var(--gray);
}

.faq__list h3 {
  margin: 0;
}

.faq__list button {
  display: flex;
  width: 100%;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 17px 0;
  border: 0;
  background: transparent;
  color: rgba(10, 10, 10, 0.85);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq__list button span {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform var(--transition);
}

.faq__list button[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.faq__list article > div {
  padding: 0 35px 20px 0;
}

.faq__list article > div p {
  margin: 0;
  color: rgba(10, 10, 10, 0.7);
}

/* Contact */
.contact {
  padding: 60px 0;
  color: var(--white);
  background: var(--charcoal);
}

.contact .container {
  display: grid;
  gap: 45px;
}

.contact__intro h2 {
  margin: 10px 0 18px;
  font-size: 36px;
  font-weight: 600;
  line-height: 42px;
}

.contact__intro > p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact__links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact__links a,
.site-footer__contact a {
  display: flex;
  min-height: 30px;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-weight: 600;
}

.contact__links a span,
.site-footer__contact a span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
}

.contact__links a span img,
.site-footer__contact a span img {
  width: auto;
  max-width: 17px;
  height: auto;
  max-height: 20px;
}

.contact__form h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 600;
}

.contact__form label {
  display: block;
}

.form-row {
  display: grid;
  gap: 15px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 11px 22px;
  border: 1px solid rgba(178, 178, 178, 0.6);
  border-radius: var(--radius);
  outline: 0;
  background: var(--charcoal);
  color: var(--white);
  transition: border-color var(--transition);
}

.contact__form input {
  height: 45px;
}

.contact__form textarea {
  min-height: 160px;
  margin-top: 15px;
  resize: vertical;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--lime);
}

.contact__form .button {
  display: flex;
  margin: 15px 0 0 auto;
}

.contact__form > p {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--lime);
  text-align: right;
}

/* Footer */
.site-footer {
  padding: 65px 0 25px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--black);
}

.site-footer__brand > a {
  display: block;
  width: 151px;
  height: 70px;
}

.site-footer__brand > a img {
  width: 151px;
  height: 70px;
  object-fit: contain;
}

.site-footer__socials {
  display: flex;
  width: max-content;
  height: 46px;
  gap: 8px;
  margin: -58px 0 0 auto;
}

.site-footer__socials a {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(255, 255, 255, 0.04);
}

.site-footer__socials .theme-icon {
  width: 17px;
  height: 17px;
}

.site-footer__socials a:last-child .theme-icon {
  width: 18px;
  height: 16px;
}

.site-footer__addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.site-footer__addresses p {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

.site-footer__nav {
  display: grid;
  gap: 35px;
  margin-top: 65px;
}

.site-footer__nav h2 {
  min-height: 17px;
  margin: 0 0 15px;
  color: rgba(245, 245, 245, 0.6);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.site-footer__nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__nav a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.site-footer__nav a:hover,
.site-footer__bottom a:hover {
  color: var(--lime);
}

.site-footer__contact {
  display: grid;
  gap: 10px;
  padding: 30px 0;
}

.site-footer__bottom {
  display: grid;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom p:nth-child(2) {
  display: flex;
  gap: 20px;
}

.site-footer__bottom p:last-child a {
  color: var(--white);
}

@media (min-width: 992px) {
  :root {
    --gutter: 40px;
  }

  .section-heading h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .section-heading.is-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }

  .page-title {
    padding: 130px 0 55px;
  }

  .page-title .breadcrumbs {
    margin-bottom: 30px;
  }

  .page-title h1 {
    font-size: clamp(50px, 4.5vw, 64px);
  }

  .page-title__copy > p {
    font-size: 18px;
  }
  .scroll-progress {
    display: none;
  }

  /* Desktop header */
  .site-header {
    position: absolute;
    top: 0;
    height: 100px;
    background: transparent;
  }

  .site-header__inner {
    max-width: 1480px;
    padding: 0 60px;
    margin-inline: auto;
    background: var(--black);
  }

  .site-header__logo {
    flex-basis: 87px;
  }

  .primary-navigation {
    position: static;
    z-index: auto;
    display: flex;
    visibility: visible;
    overflow: visible;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    background: transparent;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(13px, 1.9vw, 30px);
  }

  .menu > .menu-item {
    border: 0;
  }

  .menu-item > a {
    padding: 35px 0;
    font-size: clamp(11px, 0.875vw, 14px);
    font-weight: 600;
    white-space: nowrap;
  }

  .menu-item-has-children > a {
    padding-right: 15px;
  }

  .submenu-toggle {
    display: none;
  }

  .sub-menu {
    position: absolute;
    top: calc(100% - 16px);
    left: -20px;
    visibility: hidden;
    width: 230px;
    max-height: none;
    overflow: visible;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: var(--black);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(8px);
    transition: visibility var(--transition), opacity var(--transition), transform var(--transition);
  }

  .sub-menu .sub-menu {
    top: -10px;
    left: calc(100% + 10px);
  }

  .menu-item:hover > .sub-menu,
  .menu-item:focus-within > .sub-menu,
  .menu-item.is-open > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .sub-menu .menu-item > a {
    padding: 9px 0;
  }

  .phone-link {
    gap: 7px;
    margin-right: 0;
  }

  .phone-link strong {
    display: block;
    white-space: nowrap;
  }

  .menu-toggle {
    display: none;
  }

  .site-header__actions {
    gap: 30px;
  }

  /* Desktop hero */
  .hero {
      --hero-desktop-height: min(960px, 100svh);
      height: var(--hero-desktop-height);
      min-height: 0;
      max-height: 100svh;
      overflow: hidden;
      padding: 100px 60px 60px;
  }

  .admin-bar .hero {
    --hero-desktop-height: min(967px, calc(100svh - 32px));

    max-height: calc(100svh - 32px);
  }

  .hero__media {
      top: 100px;
      width: calc(100% - 50px);
      max-width: min(var(--container) + 500px);
      height: calc(var(--hero-desktop-height) - 192px);
      border-radius: var(--radius);
  }

  .hero__media img {
    top: 0;
    height: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: center;
  }

  .hero__content {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: block;
    height: calc(var(--hero-desktop-height) - 192px);
    max-height: none;
    padding-top: 176px;
  }


  .hero__copy h1 {
    margin: 8px 0 37px;
    font-size: clamp(46px, 4vw, 64px);
    line-height: 1.06;
  }

  .hero__copy > p {
    margin: 0 0 82px;
    font-size: clamp(24px, 2.25vw, 36px);
    line-height: 40px;
  }

  .hero__metrics {
    position: absolute;
    right: 0;
    bottom: -32px;
    display: flex;
    align-items: stretch;
    gap: 20px;
  }

  .hero-stats {
    position: static;
    display: grid;
    width: 680px;
    min-height: 160px;
    grid-template-columns: 168px 178px 146px 144px;
    align-items: start;
    gap: 0;
    padding: 30px 0 30px 44px;
    margin: 0;
  }

  .hero-stats__reviews {
    display: block;
  }

  .hero-stats > div {
    min-width: 0;
  }

  .hero-stats strong {
    font-size: 36px;
  }

  .hero-stats > div:not(.hero-stats__reviews) > span {
      margin-top: 16px;
      font-size: inherit;
  }

  .hero-stats__stars {
      display: flex;
      gap: 4px;
      margin-top: 15px;
      color: var(--lime);
  }

  .hero-stats__stars .theme-icon {
    width: 16px;
    height: 16px;
  }

  .hero-stats .hero-stats__reviews > span {
    max-width: none;
    margin-top: 5px;
  }

  .hero-stats__reviews b {
    font-weight: 600;
  }

  .hero-scroll {
    display: grid;
    width: 60px;
    height: 160px;
    place-items: center;
    border-radius: var(--radius);
    background: var(--graphite);
    color: var(--lime);
    transition: background-color var(--transition);
  }

  .hero-scroll:hover,
  .hero-scroll:focus-visible {
    background: #2d2d2d;
  }

  .hero-scroll .theme-icon {
    animation: hero-arrow-float 2.4s ease-in-out infinite;
  }

  .mobile-rating {
    display: none;
  }

  /* About */
  .about {
    padding: 80px 0 50px;
  }

  .about .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 40px;
  }

  .about__intro {
    grid-column: 1;
    grid-row: 1;
  }

  .about__intro h2 {
    font-size: 36px;
  }

  .about__action {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin-top: 0;
  }

  .image-strip {
    width: 100%;
    min-width: 0;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 50px;
  }

  .image-strip__track {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    overflow: visible;
    padding: 0;
  }

  .image-strip figure {
      height: 420px;
  }

  /* Services */
  .services {
    padding: 80px 0;
  }

  .services__region {
    margin-top: 40px;
  }

  .services__grid {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    overflow: visible;
    padding: 0;
  }

  .service-card {
    height: 230px;
    padding: 18px;
  }

  .services__action {
    justify-content: center;
    margin-top: 30px;
  }

  /* Bikes */
  .bikes {
    padding: 80px 0;
  }

  .bikes .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .bikes .section-heading.is-row {
    display: block;
    grid-column: 1;
    grid-row: 1;
    padding-left: 11px;
  }

  .bikes-label-mobile {
    display: none;
  }

  .bikes-label-desktop {
    display: inline;
  }

  .bikes .section-heading h2 {
    margin-top: 11px;
    font-size: 48px;
    line-height: 54px;
  }

  .bikes__region {
    width: calc(100vw - max(var(--gutter), calc((100vw - var(--container)) / 2)) - 11px);
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 40px 0 0 11px;
  }

  .bikes__track {
    width: 100%;
    grid-template-columns: none;
    grid-auto-columns: 443px;
    grid-auto-flow: column;
    gap: 15px;
    overflow-x: auto;
    padding-right: var(--gutter);
    scroll-snap-type: x mandatory;
  }

  .product-card {
    height: 428px;
  }

  .product-card__image {
    height: 300px;
  }

  .product-card__image img {
    width: 378.694px;
    height: 226.25px;
  }

  .product-card__content {
    height: 118px;
  }

  .product-card h3 {
    font-size: 20px;
    line-height: 40px;
  }

  .product-card__content > p {
    width: 255px;
    margin-top: 5px;
    font-size: 16px;
  }

  .product-card__content > p:last-of-type {
    margin-top: 29px;
    font-size: 14px;
  }

  .product-card .product-action {
    top: 38px;
    right: 0;
  }

  .bikes .scroll-progress {
    display: none;
  }

  .bikes__action {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    margin-top: 96px;
    transform: translateX(11px);
  }

  /* Featured */
  .featured-bike {
    min-height: 623px;
    padding: 80px 0;
  }

  .featured-bike .container {
    display: grid;
    height: 463px;
    min-height: 463px;
    grid-template-columns: 50.075% 49.925%;
    grid-template-rows: auto 1fr;
    align-items: start;
    overflow: hidden;
    padding: 0;
    border-radius: var(--radius);
    background: var(--charcoal);
  }

  .featured-bike__copy {
    grid-column: 2;
    grid-row: 1;
    padding: 60px 29px 0 40px;
  }

  .featured-bike__copy h2 {
    margin: 11px 0 19px;
    font-size: 48px;
    line-height: 54px;
  }

  .featured-bike__copy > p {
    max-width: 609px;
  }

  .featured-bike__panel {
    display: contents;
    margin: 0;
  }

  .featured-bike__media {
    height: 463px;
    min-height: 463px;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .featured-bike__logo {
    top: 30px;
    left: 30px;
  }

  .featured-bike__image {
    top: 6.84%;
  }

  .featured-bike__details {
    grid-column: 2;
    grid-row: 2;
    height: 100%;
    padding: 35px 40px 0;
  }

  .featured-bike__details h3 {
    font-size: 20px;
  }

  .featured-bike__details > div > p {
    right: 142px;
    bottom: 63px;
    left: auto;
    width: auto;
  }

  .featured-bike .product-action {
    top: 86px;
    right: 40px;
  }
  /* Delivery */
  .delivery {
    padding: 95px 0 70px;
  }

  .delivery__cards {
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin-top: 55px;
      padding-bottom: 80px;
      border-bottom: 1px solid #00000021;
  }

  .delivery__cards article {
    gap: 20px;
  }

  /* Image-text */
  .image-text {
    padding: 65px 0;
  }

  .image-text > .container {
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
  }

  .delivery + .image-text {
    padding-top: 75px;
  }

  .image-text + .faq {
    padding-top: 150px;
  }

  .image-text.is-right .image-text__media {
    grid-column: 2;
    grid-row: 1;
  }

  .image-text.is-right .image-text__copy {
    grid-column: 1;
    grid-row: 1;
  }

  .image-text__media {
    height: 365px;
  }

  .image-text__copy h2 {
    font-size: 36px;
    line-height: 44px;
  }

  /* FAQ */
  .faq {
    padding: 80px 0;
  }

  .faq .container {
    grid-template-columns: 1fr 1fr;
    gap: 120px;
  }

  .faq .section-heading h2 {
    font-size: 48px;
    line-height: 54px;
  }

  /* Contact */
  .contact {
    padding: 80px 0;
  }

  .contact .container {
    grid-template-columns: 1fr 1fr;
    gap: 120px;
  }

  .contact__intro h2 {
    font-size: 48px;
    line-height: 54px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .site-footer {
    min-height: 451px;
    padding: 75px 0 20px;
  }

  .site-footer .container {
    display: grid;
    grid-template-columns: 420px 1fr;
    column-gap: 100px;
  }

  .site-footer__brand {
    grid-column: 1;
  }

  .site-footer__socials {
    margin-top: -58px;
  }

  .site-footer__addresses {
    margin-top: 65px;
  }

  .site-footer__nav {
    grid-column: 2;
    grid-row: 1 / span 2;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
  }

  .site-footer__contact {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    gap: 55px;
    padding: 35px 0;
  }

  .site-footer__contact a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .site-footer__bottom {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .site-footer__bottom p:nth-child(2) {
    justify-self: center;
  }

  .site-footer__bottom p:last-child {
    justify-self: end;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header {
    height: 80px;
    background: var(--black);
  }

  .site-header__inner {
    width: 100%;
    max-width: none;
    padding: 0 25px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero__media {
    top: 80px;
    height: calc(var(--hero-desktop-height) - 172px);
  }

  .hero__content {
    height: calc(var(--hero-desktop-height) - 172px);
    padding-top: 156px;
  }

  .primary-navigation {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: block;
    visibility: hidden;
    overflow-y: auto;
    padding: 115px 25px 45px;
    background: rgba(10, 10, 10, 0.98);
    opacity: 0;
    transform: translateX(100%);
    transition: visibility var(--transition), opacity var(--transition), transform var(--transition);
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .menu {
    display: block;
  }

  .menu > .menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .menu-item > a {
    padding: 15px 44px 15px 0;
    font-size: 18px;
    white-space: normal;
  }

  .menu-item-has-children > a {
    padding-right: 44px;
  }

  .submenu-toggle {
    display: grid;
  }

  .sub-menu,
  .sub-menu .sub-menu {
    position: static;
    visibility: visible;
    width: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    transform: none;
    transition: max-height 300ms ease, opacity var(--transition);
  }

  .menu-item:hover > .sub-menu,
  .menu-item:focus-within > .sub-menu {
    max-height: 0;
    opacity: 0;
    transform: none;
  }

  .menu-item.is-open > .sub-menu,
  .menu-item.is-open:hover > .sub-menu,
  .menu-item.is-open:focus-within > .sub-menu {
    max-height: 700px;
    opacity: 1;
  }

  .sub-menu .menu-item > a {
    padding-block: 11px;
    font-size: 15px;
  }

  .phone-link {
    gap: 7px;
    margin-right: 0;
  }

  .phone-link strong {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header__actions {
    gap: 14px;
  }
}

@media (min-width: 1200px) {
  .site-header.is-scroll {
    height: 80px;
    animation: site-header-enter 320ms ease;
  }

  .site-header.is-scroll .menu > .menu-item > a {
    padding-block: 25px;
  }

  .site-header.is-scroll .menu > .menu-item > .sub-menu {
    top: calc(100% - 6px);
  }
}

@media (min-width: 400px) and (max-width: 419.98px) {
  .hero__copy .button-row {
    gap: 8px;
  }

  .hero__copy .button {
    padding-inline: 10px;
    font-size: 13px;
  }
}

@media (max-width: 399.98px) {
  .hero__copy .button-row {
    gap: 8px;
  }

  .hero__copy .button {
    padding-inline: 10px;
    font-size: 13px;
  }

  .hero-stats {
    padding-inline: 20px;
  }

  .phone-link {
    gap: 7px;
    margin-right: 0;
  }

  .phone-link strong {
    display: none;
  }

  .site-footer__socials {
    margin: 18px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* ===== FIGMA SERVICES + SVG SPRITE ===== */
.theme-icon {
  display: inline-block;
  flex: none;
  color: currentColor;
  vertical-align: middle;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.phone-link span .theme-icon {
  width: 12px;
  height: 20px;
}

.cart-link .theme-icon {
  width: 20px;
  height: 20px;
}

.menu-toggle__icon {
  width: 32px;
  height: 12px;
}

.submenu-toggle::after {
  display: none;
}

.submenu-toggle .theme-icon {
  transition: transform var(--transition);
}

.submenu-toggle[aria-expanded="true"] .theme-icon {
  transform: rotate(90deg);
}

.hero-stats__scroll {
  color: var(--lime);
}

.contact__links a span .theme-icon,
.site-footer__contact a span .theme-icon {
  width: auto;
  max-width: 17px;
  height: auto;
  max-height: 20px;
}

.faq__list button span {
  border: 0;
}

.faq__list button span .theme-icon {
  width: 20px;
  height: 20px;
}


.services {
  padding: 50px 0 60px;
}

.services__region {
  width: calc(100% + 40px);
  margin-top: 35px;
  margin-left: -15px;
}

.services__grid {
  width: 100%;
  grid-auto-columns: min(310px, calc(100vw - 50px));
  grid-auto-flow: column;
  gap: 10px;
  padding-right: 25px;
}

.service-card {
  height: 230px;
  overflow: hidden;
  padding: 15px 40px 15px 15px;
}

.service-card > span {
  width: 50px;
  height: 50px;
  font-size: 0;
}

.service-card > span .theme-icon {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin: 10px 0;
}

.service-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.services .scroll-progress {
  width: max(0px, calc(100% - 227px));
  margin-top: 52px;
}

.services__action {
  margin-top: -25px;
}

.services__action .button {
  width: 167px;
  padding-inline: 15px;
  white-space: nowrap;
}

.service-copy-desktop {
  display: none;
}

@media (min-width: 992px) {
  .services {
    padding: 79px 0 75px;
  }

  .services .section-heading h2 {
    margin-top: 10px;
    font-size: 48px;
    line-height: 1.2;
  }

  .services .section-heading > p {
    max-width: 448px;
    margin-top: 10px;
    line-height: 20px;
  }

  .services__region {
    width: 100%;
    margin-top: 48px;
    margin-left: 0;
  }

  .services__grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-columns: auto;
    grid-auto-flow: row;
    gap: 15px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .service-card {
    height: 250px;
    padding: 30px 47px 40px 26px;
  }

  .service-card > span {
    width: 60px;
    height: 60px;
  }

  .service-card p {
    display: block;
    overflow: visible;
    line-height: 22px;
  }

  .service-copy-mobile {
    display: none;
  }

  .service-copy-desktop {
    display: inline;
  }

  .services .scroll-progress {
    display: none;
  }

  .services__action {
    justify-content: center;
    margin-top: 40px;
  }
}


.mobile-rating > div {
  display: flex;
  gap: 3px;
  font-size: 0;
  letter-spacing: 0;
}

.mobile-rating > div .theme-icon {
  width: 20px;
  height: 20px;
}

.image-text .button.is-dark {
  gap: 8px;
}

@media (min-width: 640px) and (max-width: 991.98px) {
  .bikes__track {
    grid-auto-columns: calc(42.857143% + 2.142857px);
  }
}

@media (min-width: 992px) and (max-width: 1359.98px) {
  .bikes__region {
    width: calc(100% + var(--gutter) - 11px);
  }

  .bikes__track {
    grid-auto-columns: calc(30% - 1.5px);
  }

  .product-card {
    height: auto;
  }

  .product-card__image {
    height: auto;
    aspect-ratio: 31 / 24;
  }

  .product-card__image img {
    width: 85.484%;
    height: 75.417%;
  }

  .product-card__content {
    height: 107px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-card__content > p {
    width: min(220px, 100%);
    margin-top: 0;
    font-size: 15px;
  }

  .product-card__content > p:last-of-type {
    margin-top: 23px;
  }

  .product-card .product-action {
    top: 27px;
  }
}

@media (min-width: 1360px) {
  .bikes__track {
    grid-auto-columns: min(443px, calc(33.333333% - 1.666667px));
  }
}

@container (max-width: 280px) {
  .product-card__content {
    height: 120px;
  }

  .product-card h3 {
    overflow: hidden;
    font-size: 16px;
    line-height: 28px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-card__content > p {
    width: 100%;
    overflow: hidden;
    font-size: 13px;
    line-height: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-card__content > p:last-of-type {
    width: calc(100% - 70px);
    margin-top: 28px;
    overflow: visible;
    font-size: 12px;
    white-space: normal;
  }

  .product-card__content > p:last-of-type strong {
    font-size: 16px;
  }

  .product-card .product-action {
    top: 34px;
    width: 60px;
  }

  .product-action > span {
    width: 42px;
    height: 42px;
  }

  .product-action .theme-icon {
    width: 17px;
    height: 17px;
  }

  .product-action b {
    margin-top: 4px;
    font-size: 13px;
    line-height: 18px;
  }
}

@media (max-width: 991.98px) {
  .site-footer .container {
    display: flex;
    flex-direction: column;
  }

  .site-footer__brand {
    order: 1;
  }

  .site-footer__addresses {
    margin-top: 40px;
  }

  .site-footer__contact {
    order: 2;
    padding: 30px 0 0;
  }

  .site-footer__nav {
    order: 3;
    margin-top: 55px;
  }

  .site-footer__nav > div:nth-child(3) {
    margin-top: -35px;
  }

  .site-footer__nav > div:nth-child(3) h2 {
    display: none;
  }

  .site-footer__bottom {
    order: 4;
    margin-top: 30px;
  }

  html {
    scrollbar-width: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}

@keyframes site-header-enter {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes hero-arrow-float {
  0%,
  100% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(6px);
  }
}


@media (min-width: 992px) and (max-height: 900px) {
  .hero__content {
    padding-top: clamp(90px, 15svh, 135px);
  }

  .hero__copy h1 {
    margin-bottom: clamp(20px, 3svh, 27px);
    font-size: clamp(42px, 6.62svh, 60px);
  }

  .hero__copy > p {
    font-size: clamp(24px, 3.75svh, 34px);
  }
}

/* Desktop carousels (Swiper) */
@media (min-width: 992px) {
  .bikes__region.swiper,
  .image-strip.swiper {
    position: relative;
    overflow: hidden;
  }

  .bikes__region.swiper {
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  .bikes__track.swiper-wrapper,
  .image-strip__track.swiper-wrapper {
    display: flex;
    width: 100%;
    gap: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .carousel-nav {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .carousel-nav__button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(10, 10, 10, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--black);
    cursor: pointer;
    pointer-events: auto;
    transition: background-color var(--transition), color var(--transition);
  }

  .carousel-nav__button:hover,
  .carousel-nav__button:focus-visible {
    background: var(--lime);
  }

  .carousel-nav__button.is-prev .theme-icon {
    transform: rotate(180deg);
  }

  .carousel-nav__button.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
  }
}
