:root {
  --bg: #050505;
  --panel: #111;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: #f5f5f5;
  --muted: #bdbdbd;
  --orange: #ff5a00;
  --max: 1500px;
  --header-h: 86px;
  --font: "Inter", Arial, Helvetica, sans-serif;
  --font-display: "Bebas Neue", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0,0,0,.98), rgba(0,0,0,.92));
  border-bottom: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100%, var(--max));
  height: 100%;
  margin: 0 auto;
  padding: 0 42px;
  display: grid;
  grid-template-columns: 190px 1fr 185px;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 175px;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.brand img {
  max-width: 175px;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,90,0,.18));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.main-nav a {
  position: relative;
  padding: 32px 0 29px;
  color: #e7e7e7;
  transition: color .25s ease, letter-spacing .25s ease, text-shadow .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  text-shadow: 0 0 12px rgba(255,90,0,.3);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  min-height: 52px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.header-cta,
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 22px rgba(255,90,0,.18);
}

.btn-secondary {
  background: rgba(0,0,0,.52);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

.header-cta::before,
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  transform: translateX(-130%);
  transition: transform .65s ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,90,0,.25);
}

.header-cta:hover::before,
.btn:hover::before {
  transform: translateX(130%);
}

.menu-toggle {
  display: none;
}

/* HERO */

.hero {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.94) 0%,
      rgba(0,0,0,.74) 27%,
      rgba(0,0,0,.26) 48%,
      rgba(0,0,0,.02) 100%
    ),
    url("../images/hero/hero-bike.jpg") 58% center / cover no-repeat;
  transition: all .35s ease;
}

.hero-bg {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 50px 42px 52px;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .24em;
}

.hero h1,
.section-heading h2,
.text-panel h2,
.contact-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(50px, 5.2vw, 76px);
  line-height: .9;
}

.hero h1 span {
  color: var(--orange);
  font-style: italic;
}

.hero-copy {
  max-width: 500px;
  margin-top: 22px;
  color: #d5d5d5;
  font-size: 15px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

/* SERVICES */

.section-block {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px 56px 18px;
}

.section-heading h2,
.text-panel h2,
.contact-copy h2 {
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.02;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px 20px 22px;
  background: linear-gradient(180deg,#171717 0%,#0d0d0d 100%);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,90,0,.55);
  box-shadow: 0 12px 40px rgba(0,0,0,.45), 0 0 25px rgba(255,90,0,.10);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,90,0,.25);
  background: radial-gradient(circle at center, rgba(255,90,0,.08), transparent 70%);
  color: var(--orange);
  font-size: 34px;
  transition: transform .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
}

.service-card:hover .service-icon {
  transform: translateY(-6px) scale(1.08);
  border-color: rgba(255,90,0,.55);
  background: radial-gradient(circle at center, rgba(255,90,0,.20), transparent 70%);
  color: #ff7b2c;
}

.service-card h3 {
  min-height: 44px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: .04em;
}

.service-card p {
  color: #c7c7c7;
  font-size: 13px;
  line-height: 1.36;
  font-weight: 600;
}

.service-card:hover p {
  color: #f0f0f0;
}

/* ABOUT / SUPPLIERS */

.split-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #070707;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.text-panel,
.image-panel {
  min-height: 250px;
  border-right: 1px solid var(--line);
}

.text-panel {
  padding: 42px 56px;
  background: rgba(9,9,9,.92);
}

.text-panel p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 14px;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

.about-panel h2 {
  max-width: 460px;
  font-size: clamp(30px, 3vw, 44px);
}

.about-image {
  padding: 24px;
  background: #070707;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .6s ease, filter .6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.supplier-panel {
  grid-column: 1 / -1;
  padding: 38px 56px 42px;
  border-top: 1px solid var(--line);
  border-right: none;
}

.supplier-panel h2 {
  max-width: 720px;
}

.supplier-panel p:not(.eyebrow) {
  max-width: 620px;
}

.supplier-banner {
  margin: 28px auto 0;
  max-width: 780px;
  width: 100%;
  overflow: hidden;
}

.supplier-banner img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  opacity: .92;
  transition: transform .6s ease, opacity .4s ease;
}

.supplier-banner:hover img {
  transform: scale(1.03);
  opacity: 1;
}

/* CONTACT */

.contact-strip {
  width: min(100%, var(--max));
  margin: 0 auto;
  min-height: 112px;
  padding: 26px 56px;
  display: grid;
  grid-template-columns: 1fr 200px 1.35fr;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(14,14,14,.98), rgba(7,7,7,.98));
}

.contact-copy p {
  color: #cfcfcf;
  font-size: 15px;
  font-weight: 650;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-items a,
.contact-items > span {
  min-height: 74px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg,#141414,#0b0b0b);
  color: #c9c9c9;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  transition: border-color .25s ease, color .25s ease;
}

.contact-items i {
  color: var(--orange);
  font-size: 20px;
}

.contact-items a:hover {
  border-color: rgba(255,90,0,.5);
  color: #fff;
}

/* FOOTER */

.site-footer {
  width: 100%;
  margin: 0;
  padding: 26px 32px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.14);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: #9a9a9a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: #d6d6d6;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.footer-links a:hover {
  color: var(--orange);
}

/* RESPONSIVE */

@media (max-width: 1250px) {
  .header-inner {
    grid-template-columns: 160px 1fr 170px;
    padding: 0 32px;
  }

  .brand {
    width: 145px;
  }

  .brand img {
    max-width: 145px;
  }

  .main-nav {
    gap: 24px;
    font-size: 11px;
  }

  .hero {
    min-height: 430px;
    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,.93) 0%,
        rgba(0,0,0,.72) 28%,
        rgba(0,0,0,.26) 50%,
        rgba(0,0,0,.04) 100%
      ),
      url("../images/hero/hero-bike.jpg") 58% center / cover no-repeat;
  }

  .hero-content,
  .section-block,
  .text-panel,
  .contact-strip,
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero h1 {
    max-width: 540px;
    font-size: clamp(37px, 3.45vw, 50px);
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-strip {
    grid-template-columns: 1fr 180px;
  }

  .contact-items {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 145px 1fr;
    padding: 0 22px;
  }

  .brand {
    width: 135px;
  }

  .brand img {
    max-width: 135px;
    max-height: 76px;
  }

  .main-nav,
  .menu-toggle {
    display: none;
  }

  .header-cta {
    display: flex;
    justify-self: end;
    min-height: 52px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero {
    min-height: 620px;
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.74) 0%,
        rgba(0,0,0,.58) 42%,
        rgba(0,0,0,.42) 100%
      ),
      url("../images/hero/hero-bike.jpg") 62% center / cover no-repeat;
  }

  .hero-content {
    padding: 46px 28px 48px;
  }

  .eyebrow {
    font-size: 13px;
    letter-spacing: .22em;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 12vw, 58px);
    line-height: .92;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 20px;
    line-height: 1.35;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 66px;
    font-size: 17px;
  }

  .section-block {
    padding: 46px 28px 32px;
  }

  .section-heading h2,
  .about-panel h2,
  .supplier-panel h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    padding: 34px 24px;
  }

  .service-icon {
    width: 94px;
    height: 94px;
    font-size: 42px;
  }

  .service-card h3 {
    min-height: 0;
    font-size: 28px;
  }

  .service-card p,
  .text-panel p:not(.eyebrow),
  .contact-copy p {
    font-size: 19px;
    line-height: 1.4;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .about-panel,
  .supplier-panel {
    padding: 32px 22px;
  }

  .about-image {
    padding: 22px;
    border-right: none;
  }

  .supplier-banner img {
    max-height: none;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    padding: 44px 28px;
    gap: 26px;
  }

  .contact-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-items a,
  .contact-items > span {
    min-height: auto;
    padding: 20px 0;
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
    font-size: 16px;
    line-height: 1.25;
    word-break: break-word;
    white-space: normal;
    border-left: none;
    border-right: none;
  }

  .contact-items i {
    min-width: 24px;
    font-size: 20px;
  }

  .footer-inner {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    grid-template-columns: 135px 1fr;
    padding: 0 16px;
  }

  .brand {
    width: 130px;
  }

  .header-cta {
    padding: 0 14px;
    font-size: 11px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    padding: 44px 16px;
  }

  .section-block,
  .contact-strip,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-panel,
  .supplier-panel {
    padding-left: 16px;
    padding-right: 16px;
  }
}