/* ============ DXB MOTO LABS — homepage ============ */
:root {
  --bg: #0b0b0c;
  --accent: #EE7623;
  --text: #ffffff;
  --muted: #9a9a9a;
  --dim: #8a8a8a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body.home {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- Nav ---------- */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  background: transparent;
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-copy {
  width: 42%;
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  padding-right: 32px;
}
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--dim);
}
.hero-title {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: 72px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 18px;
  font-weight: 400;
  white-space: nowrap; /* only the <br> breaks the line */
}
.hero-title .accent { color: #EE7623; }
.hero-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 28px 0;
}
.hero-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 380px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}
.btn-pill {
  background: var(--accent);
  color: #0b0b0c;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 999px;
  transition: opacity 0.2s;
}
.btn-pill:hover { opacity: 0.9; }
.btn-circle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: border-color 0.2s;
}
.btn-circle:hover { border-color: rgba(255, 255, 255, 0.6); }
.btn-circle svg { width: 18px; height: 18px; }

/* ---------- Bike stack (cropped by the right edge) ---------- */
.hero-bikes {
  position: relative;
  flex: 1;
  align-self: stretch;
  min-width: 0;
  /* nudge right; the matching margin keeps the render area inside the viewport */
  transform: translateX(40px);
  margin-right: 40px;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .nav { padding: 0 6%; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 12px; }
  .hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 64px;
  }
  .hero-bikes {
    order: -1;
    width: 100%;
    height: 55vh;
    flex: 0 0 55vh;
    transform: none;
    margin-right: 0;
  }
  .hero-copy {
    width: 100%;
    flex: 1 1 auto;
    padding: 40px 6% 64px;
  }
  .hero-title { font-size: 40px; }
}
