:root {
  --black: #0b0b0d;
  --coal: #131316;
  --panel: #1a1a1f;
  --line: #2a2a31;
  --white: #ffffff;
  --dim: #b9b9c2;
  --red: #e02424;
  --red-dark: #b91c1c;
  --green: #22a94c;
  --blue: #3b82f6;
  --gold: #fbbf24;
  --orange: #f97316;
  --steel: #94a3b8;
  --radius: 14px;
  --wrap: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, .brand-name {
  font-family: 'Oswald', 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,13,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; text-decoration: none; color: var(--white); }
.brand-wordmark { height: 44px; width: auto; display: block; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-socials { display: flex; align-items: center; gap: 4px; margin-right: 6px; }
.header-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 8px;
  color: var(--dim);
  transition: color .15s ease, background .15s ease;
}
.header-socials a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.header-phone {
  color: var(--white); text-decoration: none; font-weight: 600; font-size: 0.95rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 24px rgba(224,36,36,0.35); }
.btn-red:hover { background: var(--red-dark); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 0.9rem; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-bg {
  position: absolute; inset: 0;
  background: url('hero-truck.jpg') center 38% / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,11,13,0.94) 0%, rgba(11,11,13,0.82) 45%, rgba(11,11,13,0.45) 100%);
}
.hero-inner { position: relative; padding: 96px 0 110px; max-width: 640px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 600; margin-bottom: 16px; }
.hero h1 .three { color: var(--red); }
.hero-tag {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--dim);
  margin-bottom: 10px;
}
.hero-motto {
  font-style: italic;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.hero-motto .treat { color: var(--red); font-style: normal; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.85rem; font-weight: 500;
}
.badge .star { color: var(--gold); }

/* ---------- section scaffolding ---------- */
section { padding: 80px 0; }
.section-kicker {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 600; margin-bottom: 14px; }
.section-lede { color: var(--dim); max-width: 640px; margin-bottom: 44px; font-size: 1.05rem; }

/* ---------- services ---------- */
.services { background: var(--coal); border-bottom: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
@media (min-width: 1000px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  border-top: 3px solid var(--accent, var(--red));
}
.service-card.lawn { --accent: var(--green); }
.service-card.restore { --accent: var(--orange); }
.service-card.junk { --accent: var(--red); }
.service-card.wash { --accent: var(--blue); }
.service-card.demo { --accent: var(--steel); }
.service-card.lights { --accent: var(--gold); }
.service-icon { margin-bottom: 14px; color: var(--accent); }
.service-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.service-card ul { list-style: none; }
.service-card li {
  color: var(--dim); font-size: 0.93rem; padding: 5px 0 5px 22px; position: relative;
}
.service-card li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- how it works ---------- */
.how { border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.step {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px;
}
.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem; font-weight: 600; color: var(--red);
  margin-bottom: 8px;
}
.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.step p { color: var(--dim); font-size: 0.95rem; }

/* ---------- work / gallery ---------- */
.work { background: var(--coal); border-bottom: 1px solid var(--line); }
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.work-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--panel); margin: 0; }
.work-card figcaption { padding: 12px 16px; font-size: 0.9rem; color: var(--dim); }

/* before/after slider */
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  user-select: none;
  background: var(--black);
}
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-top {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-label {
  position: absolute; top: 10px;
  z-index: 3;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(11,11,13,0.72);
  color: var(--white);
  pointer-events: none;
}
.ba-label-before { left: 10px; }
.ba-label-after { right: 10px; color: var(--gold); }
.ba-divider {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos);
  width: 3px;
  margin-left: -1.5px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,0.6);
  z-index: 2;
  pointer-events: none;
}
.ba-grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; letter-spacing: -1px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.ba-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  -webkit-appearance: none;
  appearance: none;
  touch-action: pan-y;
}
.ba-range:focus-visible ~ * { outline: none; }
.ba-slider:has(.ba-range:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- social band ---------- */
.social-band { background: var(--black); border-bottom: 1px solid var(--line); padding: 64px 0; }
.social-band .section-lede { margin-bottom: 30px; }
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin-bottom: 22px; }
.social-btn {
  display: flex; align-items: center; gap: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--white);
  transition: transform .15s ease, border-color .15s ease;
}
.social-btn:hover { transform: translateY(-2px); border-color: var(--sb, var(--red)); }
.social-btn .sb-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: var(--sb, var(--red));
  color: #fff;
}
.social-btn.sb-google .sb-icon { color: #1a1a1a; }
.sb-name { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.03em; font-weight: 600; font-size: 1.02rem; display: block; }
.sb-sub { color: var(--dim); font-size: 0.84rem; display: block; }
.social-btn.sb-youtube { --sb: #e02424; }
.social-btn.sb-facebook { --sb: #1877f2; }
.social-btn.sb-nextdoor { --sb: #00b246; }
.social-btn.sb-google { --sb: var(--gold); }
.social-band .band-more { color: var(--dim); font-size: 0.95rem; }
.social-band .band-more a { color: var(--white); font-weight: 600; }

/* contact socials */
.contact-socials { display: flex; justify-content: center; gap: 12px; margin-bottom: 22px; }
.contact-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--dim);
  transition: color .15s ease, border-color .15s ease, transform .15s ease;
}
.contact-socials a:hover { color: var(--white); border-color: var(--white); transform: translateY(-2px); }

/* ---------- why ---------- */
.why { border-bottom: 1px solid var(--line); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.why-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.why-card .why-icon { color: var(--red); margin-bottom: 12px; }
.why-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.why-card p { color: var(--dim); font-size: 0.93rem; }
.why-card .verse-ref {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- reviews ---------- */
.reviews { background: var(--coal); border-bottom: 1px solid var(--line); }
.review-summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.review-score {
  display: flex; align-items: baseline; gap: 10px;
  font-family: 'Oswald', sans-serif; font-size: 2.6rem; font-weight: 600;
}
.review-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.review-meta { color: var(--dim); font-size: 0.95rem; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-bottom: 30px; }
.review-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; }
.review-card blockquote { color: var(--white); font-size: 0.97rem; flex: 1; }
.review-card cite { color: var(--dim); font-style: normal; font-size: 0.88rem; font-weight: 600; }
.review-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- area ---------- */
.area { border-bottom: 1px solid var(--line); }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip {
  background: var(--panel); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: 0.9rem; color: var(--dim);
}

/* ---------- contact ---------- */
.contact { background: var(--coal); text-align: center; }
.contact .section-lede { margin-left: auto; margin-right: auto; }
.contact-phone {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  margin: 10px 0 26px;
}
.contact-phone:hover { color: var(--gold); }
.contact-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 22px; }
.contact-note { color: var(--dim); font-size: 0.95rem; }

/* ---------- service agreement page ---------- */
.agreement { background: var(--coal); }
.agreement-wrap { max-width: 780px; }
.agreement h1.section-title { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
.agreement .section-lede { margin-bottom: 24px; }
.agreement-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.agreement-body {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  margin-bottom: 30px;
}
.agreement-intro {
  color: var(--dim);
  font-size: 0.97rem;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.agreement-item { padding: 16px 0; }
.agreement-item + .agreement-item { border-top: 1px solid var(--line); }
.agreement-item h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.agreement-num { color: var(--red); margin-right: 6px; }
.agreement-item p { color: var(--dim); font-size: 0.95rem; }
.agreement-item strong { color: var(--white); }
.agreement-item ul { list-style: none; }
.agreement-item li {
  color: var(--dim); font-size: 0.95rem; padding: 5px 0 5px 22px; position: relative;
}
.agreement-item li::before {
  content: '•';
  position: absolute; left: 6px;
  color: var(--red);
  font-weight: 700;
}
.agreement-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.service-card .card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent, var(--red));
  text-decoration: none;
}
.service-card .card-link:hover { text-decoration: underline; }

/* ---------- hiring strip ---------- */
.hiring { border-top: 1px solid var(--line); background: var(--black); padding: 56px 0; }
.hiring-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 24px;
}
.hiring .section-title { margin-bottom: 8px; }
.hiring-lede { color: var(--dim); max-width: 560px; font-size: 0.98rem; }

/* ---------- links page ---------- */
.linkspage { background: var(--coal); min-height: 60vh; }
.links-wrap { max-width: 640px; }
.linkspage .section-lede { margin-bottom: 34px; }
.links-list { display: flex; flex-direction: column; gap: 14px; }
.link-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--white);
  transition: transform .15s ease, border-color .15s ease;
}
.link-card:hover { border-color: var(--red); transform: translateY(-2px); }
.link-icon {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(224,36,36,0.12);
  color: var(--red);
}
.link-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.link-title { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.03em; font-weight: 600; font-size: 1.05rem; }
.link-sub { color: var(--dim); font-size: 0.88rem; }
.link-arrow { margin-left: auto; color: var(--dim); font-size: 1.1rem; }
.link-card:hover .link-arrow { color: var(--red); }
.link-card-hiring { border-color: var(--red); background: rgba(224,36,36,0.08); }
.link-card-hiring .link-icon { background: var(--red); color: #fff; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 30px 0; }
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  color: var(--dim); font-size: 0.88rem;
}
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--dim); text-decoration: none; }
.footer-links a:hover { color: var(--white); }

/* ---------- mobile call bar ---------- */
.callbar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--red);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #fff; text-decoration: none; font-weight: 700; font-size: 1.05rem;
}

@media (max-width: 720px) {
  .hero-inner { padding: 64px 0 72px; }
  section { padding: 60px 0; }
  .header-cta .btn { display: none; }
  .header-socials { margin-right: 2px; }
  .header-socials a { width: 30px; height: 30px; }
  .callbar { display: block; }
  body { padding-bottom: 64px; }
  .brand-wordmark { height: 38px; }
}
