:root {
  --bg: #0f1115;
  --bg-surface: #181b22;
  --bg-surface-2: #1e222b;
  --fg: #e8e6e1;
  --fg-muted: #8a8b8e;
  --accent: #e85d26;
  --accent-glow: rgba(232, 93, 38, 0.15);
  --yellow: #d4a843;
  --green: #4a9e6b;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV (shared — also imported in request.css) */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 21, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.18s;
}

.nav-phone:hover {
  color: var(--fg);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 4px;
  letter-spacing: -0.2px;
  transition: all 0.18s;
}

.nav-cta:hover {
  background: #d4521e;
}

/* HERO CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-cta-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 4px;
  letter-spacing: -0.3px;
  transition: all 0.18s;
  box-shadow: 0 4px 20px rgba(232, 93, 38, 0.25);
}

.hero-cta-primary:hover {
  background: #d4521e;
  box-shadow: 0 6px 28px rgba(232, 93, 38, 0.4);
  transform: translateY(-1px);
}

.hero-cta-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.18s;
}

.hero-cta-secondary:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.16);
}

/* CLOSING ACTIONS */
.closing-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 32px;
  padding: 6px 16px;
  border: 1px solid rgba(232, 93, 38, 0.3);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.hero h1 .accent {
  color: var(--accent);
}

.lede {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: absolute;
  top: 0;
  right: -10%;
  width: 45%;
  height: 100%;
  pointer-events: none;
}

.hero-stripe {
  position: absolute;
  top: 10%;
  right: 0;
  width: 120%;
  height: 200px;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  transform: rotate(-12deg);
  border-radius: 4px;
}

.hero-stripe-2 {
  top: 35%;
  width: 80%;
  height: 120px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.08), transparent);
  transform: rotate(-12deg);
}

/* SECTION TAG */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
}

/* SERVICES */
.services {
  padding: 100px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-header {
  margin-bottom: 64px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 36px 28px;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: rgba(232, 93, 38, 0.2);
}

.service-card-highlight {
  background: linear-gradient(135deg, var(--bg-surface), rgba(232, 93, 38, 0.08));
  border-color: rgba(232, 93, 38, 0.2);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* WHY */
.why {
  padding: 100px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.why-text {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.why-marker {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  min-width: 32px;
  padding-top: 2px;
}

.why-point div {
  font-size: 17px;
  line-height: 1.6;
}

.why-point strong {
  color: var(--fg);
}

.why-point div {
  color: var(--fg-muted);
}

/* COVERAGE */
.coverage {
  padding: 100px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.coverage-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.coverage-text {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.coverage-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  color: var(--fg);
  letter-spacing: 0.3px;
}

/* CLOSING */
.closing {
  padding: 120px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  padding: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-location {
  font-size: 14px;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 20px;
  }

  .nav-phone {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 60px 24px 48px;
  }

  .hero-visual { display: none; }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    text-align: center;
    padding: 16px 24px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider { display: none; }

  .services,
  .why,
  .coverage,
  .closing {
    padding: 64px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .coverage-areas {
    gap: 8px;
  }

  .area {
    font-size: 13px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .lede {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }
}
