:root {
  --charcoal: #1c1c1c;
  --charcoal-2: #242424;
  --charcoal-3: #303030;
  --orange: #ffc107;
  --orange-dark: #e0a800;
  --white: #ffffff;
  --off-white: #f2f2f2;
  --gray: #7a7d85;
  --text-dark: #1c1d20;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(0,0,0,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--charcoal);
}

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

ul { list-style: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-size: 0.95rem;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--charcoal);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  border-bottom: 3px solid var(--orange);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  padding: 6px 10px;
}
.logo-img {
  display: block;
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  color: var(--off-white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--orange); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
}
.phone-link:hover { color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(28,28,28,0.96) 28%, rgba(28,28,28,0.65) 60%, rgba(28,28,28,0.35) 100%),
    url('../images/hero.jpg') center 35% / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 25%, rgba(255,193,7,0.15), transparent 55%),
    linear-gradient(to top, rgba(28,28,28,0.85), transparent 40%);
}
.hero-inner {
  position: relative;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.eyebrow {
  color: var(--orange);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: #d6d7db;
  max-width: 560px;
  margin-bottom: 32px;
}
.accent-text { color: var(--orange); }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Trust bar ===== */
.trust-bar {
  background: var(--charcoal-2);
  padding: 28px 0;
  border-bottom: 1px solid var(--charcoal-3);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--off-white);
  font-family: var(--font-head);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ===== Section headings ===== */
.section-eyebrow {
  color: var(--orange-dark);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.section-eyebrow-light { color: var(--orange); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}
.section-title-light { color: var(--white); }
.section-sub {
  color: var(--gray);
  max-width: 620px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}
.section-sub-light { color: #c9cad0; }

/* ===== Services ===== */
.services { padding: 90px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e7e7e5;
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--orange);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.services-grid-6 { grid-template-columns: repeat(3, 1fr); }
.service-card-callout {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.service-card-callout h3 { color: var(--white); }
.service-card-callout p { color: #b8b9be; }
.service-card-callout .service-icon { background: var(--orange); color: var(--charcoal); }
.service-card-callout a { color: var(--orange); font-weight: 600; }
.service-card-callout a:hover { text-decoration: underline; }

/* ===== How it works ===== */
.how-it-works { padding: 90px 0; background: var(--charcoal); color: var(--white); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-eyebrow { color: var(--orange); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}
.step {
  text-align: center;
  padding: 20px;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.step p { color: #b8b9be; font-size: 0.95rem; }

/* ===== Gallery ===== */
.gallery { padding: 90px 0; background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: var(--white);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 60%);
}
.gallery-item span { position: relative; z-index: 1; }
.ph-1 { background-color: #3a3d43; }
.ph-2 { background-color: #4a3a30; }
.ph-3 { background-color: #33383f; }
.ph-4 { background-color: #45392e; }
.ph-5 { background-color: #3d4147; }
.ph-6 { background-color: #504235; }

/* ===== Pricing ===== */
.pricing { padding: 90px 0; background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.price-card {
  position: relative;
  background: var(--off-white);
  border: 2px solid #e7e7e5;
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-truck { font-size: 2rem; display: block; margin-bottom: 12px; }
.price-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--gray); }
.price-amount { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--charcoal); }
.price-card-popular {
  background: var(--charcoal);
  border-color: var(--orange);
}
.price-card-popular h3 { color: #b8b9be; }
.price-card-popular .price-amount { color: var(--orange); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--charcoal);
  font-family: var(--font-head);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ===== Testimonials ===== */
.testimonials { padding: 90px 0; background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid #e7e7e5;
  border-radius: var(--radius);
  padding: 28px 24px;
}
.stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { color: var(--text-dark); margin-bottom: 18px; font-style: italic; }
.testimonial-author { color: var(--gray); font-size: 0.9rem; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== Quote Bar (top, compact) ===== */
.quote-bar {
  background: var(--charcoal-2);
  border-bottom: 3px solid var(--orange);
  padding: 28px 0;
}
.quote-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
}
.quote-bar-head { flex: 0 0 auto; margin-right: 8px; }
.quote-bar-head h2 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.quote-bar-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 0.85rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.quote-bar-form {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
}
.qb-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 150px;
  min-width: 130px;
}
.qb-field-service { flex: 1 1 220px; }
.qb-field label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #9a9ca3;
}
.qb-field input,
.qb-field select {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--charcoal-3);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--charcoal);
  color: var(--white);
  transition: border-color 0.2s ease;
}
.qb-field input::placeholder { color: #6c6e75; }
.qb-field input:focus,
.qb-field select:focus {
  outline: none;
  border-color: var(--orange);
}
.quote-bar-form .btn { flex: 0 0 auto; white-space: nowrap; }

.quote-bar-consent {
  flex-basis: 100%;
  color: #8b8d94;
  font-size: 0.8rem;
  margin-top: 4px;
}
.quote-bar-consent .form-status { margin-left: 10px; font-weight: 600; }
.quote-bar-consent .form-status.success { color: #4fd97a; }
.quote-bar-consent .form-status.error { color: #ff7a6b; }

/* ===== Final CTA banner ===== */
.cta-banner { background: var(--charcoal); padding: 90px 0; text-align: center; }
.cta-banner-inner { max-width: 640px; margin: 0 auto; }
.cta-banner .section-eyebrow,
.cta-banner .section-sub { margin-left: auto; margin-right: auto; }
.cta-banner .btn { margin-top: 10px; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  margin-top: 14px;
  font-size: 0.9rem;
  min-height: 1.2em;
}
.form-status.success { color: #1e8a4c; }
.form-status.error { color: #c0392b; }

/* ===== Footer ===== */
.site-footer { background: var(--charcoal-2); color: #b8b9be; padding: 64px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-col p { margin-bottom: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--orange); }
.site-footer .logo-badge { margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid var(--charcoal-3);
  padding-top: 20px;
  font-size: 0.82rem;
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .phone-link span { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quote-bar-inner { flex-direction: column; align-items: stretch; }
  .quote-bar-form { flex-direction: column; align-items: stretch; }
  .qb-field, .qb-field-service { flex: 1 1 auto; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-6 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-cta .btn { padding: 10px 16px; font-size: 0.85rem; }
}

/* ===== Mobile nav open state ===== */
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--charcoal);
  padding: 20px 24px;
  gap: 16px;
  border-bottom: 3px solid var(--orange);
}
