:root {
  --ink: #0f1623;          /* deep charcoal navy */
  --ink-2: #1a2433;
  --ink-3: #243044;
  --paper: #f7f8fa;
  --muted: #5b6677;
  --line: #e3e7ee;
  --accent: #d98324;       /* amber — craft / chrome */
  --accent-dark: #b86c14;
  --accent-soft: rgba(217, 131, 36, 0.12);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  margin: 0;
}

h1, h2, h3, .navbar-brand, .hero-title, .section-heading {
  font-family: 'Sora', 'Inter', sans-serif;
  letter-spacing: -0.015em;
}

main {
  padding-top: 0;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}

/* ---------- Navbar ---------- */
.site-navbar {
  background: rgba(15, 22, 35, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.85rem 0;
  transition: background 0.3s ease;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.35rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
}
.brand-mark { color: #fff; }
.brand-rest { color: var(--accent); }
.brand-llc {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 0.35rem;
  align-self: center;
}
.site-navbar .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}
.site-navbar .nav-link:hover {
  color: #fff;
}
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  border-radius: 6px;
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem !important;
}
.nav-cta:hover {
  background: var(--accent-dark);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-image: url('../img/hero-motorcycle.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 22, 35, 0.94) 0%, rgba(15, 22, 35, 0.78) 45%, rgba(15, 22, 35, 0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4rem;
  max-width: 820px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Buttons ---------- */
.btn-accent {
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
}
.btn-outline-light {
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
}

/* ---------- Section primitives ---------- */
.section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* ---------- Mission ---------- */
.mission {
  padding: 6rem 0;
  background: var(--paper);
}
.mission-lead {
  font-size: 1.15rem;
  color: #39434f;
  margin-bottom: 1.5rem;
}

/* ---------- Services ---------- */
.services {
  padding: 6rem 0;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 22, 35, 0.12);
}
.service-media {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
}
.soon-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(15, 22, 35, 0.25);
  z-index: 2;
}
.service-card--soon .service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 22, 35, 0.15), rgba(15, 22, 35, 0.45));
}
.service-body {
  padding: 1.75rem;
}
.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-body p {
  color: var(--muted);
  margin: 0;
}

/* ---------- CTA ---------- */
.cta {
  padding: 5.5rem 0;
  background: var(--ink);
  color: #fff;
}
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cta-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background: var(--ink);
  color: #fff;
  padding: 8rem 0 3.5rem;
}
.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.page-subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ---------- Legal / privacy ---------- */
.legal {
  padding: 4rem 0 5rem;
}
.legal-body p {
  color: #39434f;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.legal-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.25rem 0 0.75rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 1.5rem;
}
.footer-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
}
.footer-brand span { color: var(--accent); }
.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
  max-width: 320px;
}
.footer-heading {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Focus a11y ---------- */
.btn:focus, .btn:active:focus, .nav-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(217, 131, 36, 0.4);
}

@media (max-width: 767px) {
  .site-navbar { background: rgba(15, 22, 35, 0.98); }
  .hero { min-height: 80vh; }
}
