:root {
  --black: #050706;
  --black-soft: #0b0f0d;
  --charcoal: #121713;
  --silver: #d8ddd9;
  --muted: #a9b0ab;
  --emerald: #079653;
  --emerald-bright: #0ecf74;
  --line: rgba(20, 207, 116, .35);
  --max: 1500px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  margin: 0; 
  background: var(--black); 
  color: white; 
  font-family: Montserrat, Arial, sans-serif; 
  line-height: 1.6; 
  overflow-x: hidden; 
}
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
.container { width: min(94%, var(--max)); margin: 0 auto; }

/* Top Bar */
.topbar { 
  background: #020403; 
  border-top: 2px solid var(--emerald); 
  border-bottom: 1px solid rgba(255,255,255,.08); 
  font-size: .85rem; 
  color: #cfd5d1; 
}
.topbar-inner { 
  min-height: 34px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 1rem; 
  padding: 0.5rem 0;
}
.topbar span { color: var(--emerald-bright); }
.social-links { display: flex; gap: 1.25rem; }
.social-links a:hover { color: var(--emerald-bright); }

/* Header */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  background: rgba(3,5,4,.95); 
  backdrop-filter: blur(10px); 
  border-bottom: 1px solid var(--line); 
}
.nav-wrap { 
  min-height: 88px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 2rem; 
}
.brand { display: grid; line-height: 1; }
.brand-main { 
  font-family: Cinzel, serif; 
  font-weight: 800; 
  font-size: clamp(1.2rem, 2vw, 2rem); 
  letter-spacing: .03em; 
  text-shadow: 0 2px 0 #000; 
}
.brand-main em { color: var(--emerald-bright); font-style: normal; }
.brand-sub { 
  color: var(--emerald-bright); 
  font-weight: 700; 
  letter-spacing: .35em; 
  font-size: .72rem; 
  margin-top: .55rem; 
}
.main-nav { 
  display: flex; 
  gap: clamp(.9rem, 2vw, 2.1rem); 
  align-items: center; 
  font-weight: 700; 
  text-transform: uppercase; 
  font-size: .86rem; 
}
.main-nav a { 
  padding: .55rem .2rem; 
  border-bottom: 2px solid transparent; 
}
.main-nav a:hover { 
  color: var(--emerald-bright); 
  border-color: var(--emerald-bright); 
}
.menu-toggle { 
  display: none; 
  background: none; 
  color: white; 
  border: 1px solid var(--line); 
  padding: .5rem .7rem; 
  font-size: 1.4rem; 
  cursor: pointer;
}

/* Hero Section */
.hero { 
  position: relative; 
  min-height: 650px; 
  display: grid; 
  align-items: center; 
  background: url('assets/truck-main.jpg') center/cover no-repeat; 
  background-color: var(--black-soft); 
  overflow: hidden; 
}
.hero::after { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.76) 32%, rgba(0,0,0,.22) 64%, rgba(0,0,0,.35) 100%); 
}
.hero-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(0deg, rgba(2,4,3,.9), transparent 20%, transparent 80%, rgba(2,4,3,.45)); 
  z-index: 1; 
}
.hero-content { 
  position: relative; 
  z-index: 2; 
  padding: 7rem 0 6rem; 
}
.eyebrow { 
  color: var(--emerald-bright); 
  font-family: Cinzel, serif; 
  text-transform: uppercase; 
  letter-spacing: .28em; 
  font-weight: 800; 
  margin: 0 0 1rem; 
}
.hero h1 { 
  font-family: Cinzel, serif; 
  text-transform: uppercase; 
  font-size: clamp(3rem, 6vw, 6.8rem); 
  line-height: .96; 
  margin: 0; 
  max-width: 850px; 
  text-shadow: 0 3px 0 #000, 0 0 25px rgba(0,0,0,.8); 
}
.hero h1 span { color: var(--emerald-bright); }
.hero-copy { 
  font-size: clamp(1rem, 1.8vw, 1.35rem); 
  max-width: 720px; 
  color: #e4e9e6; 
  margin: 1.7rem 0 2rem; 
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn { 
  display: inline-flex; 
  min-height: 52px; 
  padding: .9rem 1.5rem; 
  align-items: center; 
  justify-content: center; 
  border-radius: 4px; 
  border: 1px solid rgba(255,255,255,.32); 
  font-weight: 800; 
  text-transform: uppercase; 
  letter-spacing: .04em; 
  cursor: pointer; 
  transition: all 0.3s ease;
}
.btn-primary { 
  background: linear-gradient(135deg, #07854a, #0ebd6b); 
  border-color: var(--emerald-bright); 
  box-shadow: 0 0 24px rgba(14,207,116,.18); 
}
.btn-primary:hover { 
  filter: brightness(1.12); 
  transform: translateY(-2px);
}
.btn-secondary { 
  background: rgba(0,0,0,.55); 
}
.btn-secondary:hover { 
  background: rgba(0,0,0,.75); 
}

/* Section Padding */
.section-pad { padding: 3.2rem 0; }

/* Feature Grid */
.feature-grid { 
  background: linear-gradient(#090d0b, #050706); 
  border-top: 1px solid var(--line); 
  border-bottom: 1px solid var(--line); 
}
.cards { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 1rem; 
}
.feature-card { 
  border: 1px solid rgba(24,207,116,.35); 
  background: #070a08; 
  min-height: 390px; 
  display: flex; 
  flex-direction: column; 
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.feature-card:hover { 
  transform: translateY(-5px); 
  border-color: var(--emerald-bright); 
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.card-image { 
  min-height: 145px; 
  background-size: cover; 
  background-position: center; 
  filter: saturate(.9) contrast(1.05); 
}
.image-truck { background-image: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.6)), url('assets/truck-main.jpg'); background-position: 68% 35%; }
.image-western { background-image: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.6)), url('assets/truck-main.jpg'); background-position: 22% 54%; }
.image-merch { background-image: linear-gradient(135deg,#2b2b2b,#080808); }
.image-live { background-image: linear-gradient(135deg,#0e3750,#071016); }

.card-body { 
  padding: 1.5rem; 
  display: flex; 
  flex-direction: column; 
  flex: 1; 
}
.card-body h2 { 
  font-family: Cinzel, serif; 
  font-size: 1.1rem; 
  margin: 0 0 .7rem; 
  text-transform: uppercase; 
}
.card-body p { 
  color: #c4cbc6; 
  font-size: .9rem; 
  margin-bottom: 1rem; 
}
.card-body a { 
  color: var(--emerald-bright); 
  font-weight: 800; 
  margin-top: auto; 
  text-transform: uppercase; 
  font-size: .8rem; 
}

/* Community Stats */
.center { text-align: center; }
.stats { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  border: 1px solid var(--line); 
}
.stats div { 
  padding: 2rem 1rem; 
  text-align: center; 
  border-right: 1px solid var(--line); 
}
.stats div:last-child { border-right: 0; }
.stats strong { 
  display: block; 
  color: var(--emerald-bright); 
  font-family: Cinzel, serif; 
  font-size: 1.4rem; 
  margin-bottom: 0.5rem;
}
.stats span { 
  color: #c0c7c2; 
  font-weight: 500;
}

/* Footer */
footer { background: #020403; border-top: 1px solid var(--line); }
.footer-wrap { 
  padding: 2rem 0; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  gap: 2rem; 
}
.footer-wrap strong { font-family: Cinzel, serif; }
.footer-wrap p { margin: .25rem 0 0; color: var(--emerald-bright); }
.footer-links { display: flex; gap: 1.25rem; }
.copyright { 
  text-align: center; 
  color: #8e9690; 
  border-top: 1px solid rgba(255,255,255,.07); 
  padding: 1rem; 
  font-size: .82rem; 
}

/* Mobile Menu Toggle */
@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: rgba(3, 5, 4, 0.98);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--line);
  }
  
  .main-nav.open {
    display: flex;
  }
  
  .main-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero {
    min-height: 500px;
  }
  
  .hero-content {
    padding: 5rem 0 4rem;
  }
}

/* Small Mobile */
@media (max-width: 600px) {
  .stats {
    grid-template-columns: 1fr;
  }
  
  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
  
  .topbar-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
}
