:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --card: #171717;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --green: #18c43c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: var(--green);
  color: white;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.brand strong, h1, h2, h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 0.04em;
}
.brand strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
}
.brand span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.desktop-nav, .mobile-nav {
  display: flex;
  gap: 1.25rem;
}
.desktop-nav a, .mobile-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
}
.desktop-nav a:hover, .mobile-nav a:hover, .phone-link:hover, .site-footer a:hover {
  color: var(--green);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font-weight: 700;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 1rem 1rem;
}
.mobile-nav.open { display: flex; }

.call-btn, .primary-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  background: var(--green);
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
}
.call-btn:hover, .primary-btn:hover { filter: brightness(1.08); }

.hero {
  position: relative;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
}
.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-image {
  background: url('assets/truck.jpg') center/cover no-repeat;
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.58) 45%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}
.eyebrow, .section-tag {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-weight: 700;
  font-size: 0.85rem;
}
.hero h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.92;
  margin: 0.6rem 0 0;
}
.hero h1 span { color: var(--green); }
.hero-text, .section-copy {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
.phone-link { font-weight: 700; }

.section {
  padding: 5rem 0;
}
.section.alt { background: var(--bg-alt); }
.section h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  margin: 0.5rem 0 0;
}
.section-copy.left { max-width: 560px; }

.cards-grid, .reviews-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
.cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card, .review, .feature, .quote-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
}
.card, .review { padding: 1.5rem; }
.card h3, .review strong, .site-footer h3 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}
.card p, .review p, .feature span { color: var(--muted); line-height: 1.7; }

.about-grid, .quote-wrap, .footer-grid {
  display: grid;
  gap: 2rem;
}
.about-grid, .quote-wrap { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.about-photo img {
  min-height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
  border: 1px solid var(--line);
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.feature { padding: 1.25rem; }
.feature strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.quote-form {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}
.quote-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #0c0c0c;
  color: white;
  font: inherit;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #090909;
}
.footer-grid {
  grid-template-columns: 1.1fr 0.8fr 1fr;
  padding: 3rem 0;
}
.site-footer a, .site-footer span { display: block; color: var(--muted); margin: 0.5rem 0; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1rem;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 960px) {
  .desktop-nav, .desktop-call { display: none; }
  .menu-toggle { display: inline-flex; }
  .cards-grid, .reviews-grid, .feature-list, .about-grid, .quote-wrap, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid, .quote-wrap, .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: min(1120px, calc(100% - 1.25rem)); }
  .topbar { font-size: 0.75rem; }
  .brand strong { font-size: 1.3rem; }
  .hero-actions { align-items: flex-start; }
  .cards-grid, .reviews-grid, .feature-list { grid-template-columns: 1fr; }
}
