:root {
  --bg: #0a0f18;
  --bg-alt: #0f1624;
  --text: #e8ecf4;
  --muted: #9aa8c4;
  --accent: #ff6b35;
  --accent-soft: #ff8c5a;
  --card: #121a2a;
  --border: #243044;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #070b12 0%, #0a0f18 100%);
  line-height: 1.65;
}

.hero {
  min-height: 58vh;
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
}

.hero.section.fade-in,
.hero.section.fade-in-left {
  opacity: 1;
  transform: none;
}

.section-alt {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Unsplash — motorcycle / workshop (direct URLs); desktop uses compressed params */
.section-bg-bike-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1762604462286-472334549804?auto=format&fit=crop&w=1200&q=70");
  background-size: cover;
  background-position: center;
}

.section-bg-bike-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1200&q=70");
  background-size: cover;
  background-position: center;
}

/* bike-3 & bike-4: URLs verified HTTP 200 (previous IDs returned 404 from Unsplash/imgix) */
.section-bg-bike-3 {
  background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("https://images.unsplash.com/photo-1636761358757-0a616eb9e17e?auto=format&fit=crop&w=1200&q=70");
  background-size: cover;
  background-position: center;
}

.section-bg-bike-4 {
  background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?auto=format&fit=crop&w=1200&q=70");
  background-size: cover;
  background-position: center;
}

[class*="section-bg-bike"] h1,
[class*="section-bg-bike"] h2,
[class*="section-bg-bike"] h3 {
  color: var(--text);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

[class*="section-bg-bike"] .eyebrow {
  color: var(--accent-soft);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

[class*="section-bg-bike"] .subheadline,
[class*="section-bg-bike"] p {
  color: rgba(232, 236, 244, 0.95);
}

[class*="section-bg-bike"] p a:not(.btn) {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

section,
.section {
  padding: 72px 0;
}

.hero.section {
  padding: 100px 0 80px;
}

h1, h2, h3 {
  line-height: 1.12;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(1.85rem, 5vw, 3.1rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.45rem, 3.5vw, 2.15rem);
  font-weight: 800;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.section:not([class*="section-bg-bike"]) p,
.section-alt:not([class*="section-bg-bike"]) p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 11, 18, 0.96);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--text);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--text);
}

.hero-content {
  max-width: 800px;
}

.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.subheadline {
  font-size: clamp(1.02rem, 2.1vw, 1.28rem);
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: 1px solid transparent;
  background: var(--accent);
  color: #0a0a0a;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.98rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: rgba(255, 107, 53, 0.12);
}

.btn-small {
  padding: 9px 16px;
  font-size: 0.88rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}

.card h3 {
  color: var(--text);
}

.city-link {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  min-height: 72px;
  transition: border-color 0.2s ease;
}

.city-link:hover {
  border-color: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.lead-form {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  display: grid;
  gap: 10px;
}

.lead-form label {
  font-size: 0.9rem;
  color: var(--text);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #2c3a52;
  border-radius: 10px;
  padding: 11px 12px;
  background: #0c121f;
  color: var(--text);
  font: inherit;
}

.lead-form textarea {
  min-height: 110px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(255, 107, 53, 0.35);
  border-color: var(--accent);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #060910;
}

.footer-wrap {
  min-height: 68px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.footer-wrap p {
  margin: 0;
}

.faq-item {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
}

.mobile-call {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  text-align: center;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 800;
  padding: 14px;
  border-radius: 999px;
}

.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Mobile: no heavy photo backgrounds — faster LCP */
@media (max-width: 768px) {
  body {
    background: #0a0f18;
  }

  .section-bg-bike-1,
  .section-bg-bike-2,
  .section-bg-bike-3,
  .section-bg-bike-4 {
    background: #0d1524 !important;
  }

  [class*="section-bg-bike"] h1,
  [class*="section-bg-bike"] h2,
  [class*="section-bg-bike"] h3 {
    text-shadow: none;
  }

  .site-header {
    backdrop-filter: none;
  }

  .btn:hover {
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .main-nav {
    display: none;
  }

  .btn-small {
    display: none;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section,
  section {
    padding: 56px 0;
  }

  .hero.section {
    padding: 80px 0 64px;
  }

  .mobile-call {
    display: inline-flex;
    justify-content: center;
    width: calc(100% - 28px);
  }

  .hero-cta .btn,
  .lead-form .btn {
    width: 100%;
  }

  body {
    overflow-x: hidden;
  }
}
