:root {
  --bg: #f7f7f5;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f1f2f2;
  --text: #111820;
  --text-soft: #4d545b;
  --muted: #7b8288;
  --border: #e2e4e5;
  --border-dark: #cfd3d6;
  --accent: #ff4b16;
  --accent-dark: #d9360a;
  --black: #08090a;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--max-width), calc(100% - 44px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-wrap > img,
.site-logo {
  width: 150px !important;
  height: auto !important;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.logo-text span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  position: relative;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 180ms ease;
}

.nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(247, 247, 245, 0.98) 0%,
      rgba(247, 247, 245, 0.96) 34%,
      rgba(247, 247, 245, 0.62) 58%,
      rgba(247, 247, 245, 0.18) 100%
    ),
    url("/images/hero-supermoto.jpg.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 32%, rgba(255, 75, 22, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.82));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 24, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 24, 28, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.35;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - 44px));
  min-height: 620px;
  margin: 0 auto;
  padding: 92px 0 76px;
  display: flex;
  align-items: center;
}

.hero-inner > div:first-child {
  width: min(590px, 100%);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 4.4px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 850;
  letter-spacing: -3px;
  line-height: 0.95;
}

.hero-description {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-visual {
  display: none;
}

/* BUTTONS */

.button {
  min-height: 52px;
  padding: 14px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: #ffffff;
  background: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.15px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(255, 75, 22, 0.18);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--border-dark);
}

.button.secondary:hover {
  color: var(--accent);
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: none;
}

/* FEATURES */

.features {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.features-inner {
  width: min(var(--max-width), calc(100% - 44px));
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  min-height: 82px;
  padding: 8px 30px;
  border-right: 1px solid var(--border);
}

.feature:first-child {
  padding-left: 0;
}

.feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature strong {
  display: block;
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.feature span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* SECTIONS */

.section {
  width: min(var(--max-width), calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-header {
  margin-bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 3.3px;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
}

/* PRODUCTS */

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) 1.05fr;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(10, 14, 18, 0.055);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product:hover {
  border-color: var(--border-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(10, 14, 18, 0.09);
}

.product-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  background: #f0f1f2;
}

.product-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product h3 {
  margin: 0;
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}

.product p {
  margin: 14px 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.price {
  margin: 6px 0 4px;
  color: var(--text);
  font-size: 27px;
  font-weight: 850;
  letter-spacing: -0.6px;
}

.availability {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.compatibility {
  margin: 16px 0 24px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.compatibility li::marker {
  color: var(--accent);
}

.product .button {
  margin-top: auto;
}

/* BRAND SECTION */

.brand-strip {
  width: min(var(--max-width), calc(100% - 44px));
  margin: 0 auto;
  padding: 20px 0 78px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.brand-text h2 {
  max-width: 560px;
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.08;
}

.brand-text p {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}

.brand-logo-large {
  min-height: 250px;
  padding: 35px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.80), rgba(255,255,255,0.55)),
    linear-gradient(135deg, #d9dde0, #f5f6f7);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.brand-logo-large strong {
  display: block;
  color: var(--text);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 850;
  font-style: italic;
  letter-spacing: -4px;
  line-height: 1;
}

.brand-logo-large span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 15px;
  letter-spacing: 10px;
  text-transform: uppercase;
}

/* CONTACT */

.contact-section {
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.contact-box {
  width: min(var(--max-width), calc(100% - 44px));
  margin: 0 auto;
  padding: 66px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-card {
  padding: 31px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(10, 14, 18, 0.045);
}

.contact-card h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 27px;
  letter-spacing: -0.7px;
}

.contact-card p {
  margin: 10px 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* PRODUCT PAGE */

.product-page {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.product-page-gallery {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(10, 14, 18, 0.055);
}

.product-page-image {
  width: 100%;
  min-height: 520px;
  height: 520px;
  object-fit: cover;
  background: #f0f1f2;
}

.product-page-info {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(10, 14, 18, 0.055);
}

.product-page-info h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 850;
  letter-spacing: -2px;
  line-height: 1.02;
}

.product-page-short {
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.product-page-price {
  margin-top: 26px;
  color: var(--accent);
  font-size: 38px;
  font-weight: 850;
  letter-spacing: -1px;
}

.product-page-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.product-page-extra {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

/* FOOTER */

.site-footer {
  padding: 31px 22px;
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--border);
  font-size: 13px;
  text-align: center;
}

/* TABLET */

@media (max-width: 980px) {
  .hero {
    background-position: 62% center;
  }

  .hero-inner {
    min-height: 560px;
  }

  .features-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:nth-child(2) {
    border-right: 0;
  }

  .feature:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

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

  .product-image {
    height: 290px;
    min-height: 290px;
  }

  .brand-strip,
  .product-page,
  .product-page-extra {
    grid-template-columns: 1fr;
  }

  .product-page-image {
    min-height: 360px;
    height: 360px;
  }
}

/* MOBILE */

@media (max-width: 720px) {
  .header-inner {
    width: min(100% - 30px, var(--max-width));
    min-height: auto;
    padding: 13px 0;
    flex-wrap: wrap;
  }

  .logo-wrap > img {
    width: 115px !important;
    height: 45px !important;
  }

  .logo-text {
    display: none;
  }

  .nav {
    width: 100%;
    padding-top: 10px;
    gap: 17px;
    overflow-x: auto;
  }

  .nav a {
    flex: 0 0 auto;
    font-size: 10px;
  }

  .hero {
    min-height: 560px;
    background-position: 64% center;
  }

  .hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(247, 247, 245, 0.98) 0%,
        rgba(247, 247, 245, 0.88) 74%,
        rgba(247, 247, 245, 0.78) 100%
      );
  }

  .hero-inner {
    width: min(100% - 32px, var(--max-width));
    min-height: 560px;
    padding: 64px 0 58px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 60px);
    letter-spacing: -2.2px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.65;
  }

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

  .features-inner {
    width: min(100% - 32px, var(--max-width));
    grid-template-columns: 1fr;
  }

  .feature,
  .feature:first-child,
  .feature:last-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .section,
  .brand-strip,
  .contact-box {
    width: min(100% - 32px, var(--max-width));
  }

  .section {
    padding: 58px 0;
  }

  .section-header {
    display: block;
  }

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

  .product-image {
    height: 250px;
    min-height: 250px;
  }

  .product-content {
    padding: 25px;
  }

  .brand-strip {
    padding-bottom: 62px;
  }

  .brand-logo-large {
    min-height: 210px;
  }

  .brand-logo-large span {
    letter-spacing: 6px;
  }

  .contact-box {
    padding: 55px 0;
    grid-template-columns: 1fr;
  }

  .product-page-info {
    padding: 25px;
  }

  .product-page-image {
    min-height: 280px;
    height: 280px;
  }

  .product-page-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.footer-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

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