:root {
  --ink: #0F172A;
  --ink-soft: #334155;
  --paper: #FFFFFF;
  --mist: #F1F5F9;
  --line: #E2E8F0;
  --accent: #DC2626;
  --accent-dark: #B91C1C;
  --gold: #F59E0B;
  --shadow: 0 10px 30px -10px rgba(15,23,42,.18);
  --radius: 14px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(ellipse at top right, rgba(245,158,11,.25), transparent 55%),
    linear-gradient(160deg, #0F172A 0%, #1E293B 65%, #DC2626 140%);
  padding: 0 0 84px;
}
.hero-img {
  background-size: cover !important;
  background-position: center 30% !important;
  background-repeat: no-repeat !important;
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700;
}
.brand {
  color: #fff; text-decoration: none; letter-spacing: .04em; font-size: 1.05rem;
}
.brand span { color: var(--gold); }
.nav-call {
  color: #fff; text-decoration: none;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px; border-radius: 999px; font-size: .95rem;
  backdrop-filter: blur(6px);
}
.nav-call:hover { background: rgba(255,255,255,.16); }
.hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 56px 24px 0;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  font-weight: 700; color: var(--gold); margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.08; margin: 0 0 18px;
  font-weight: 800; letter-spacing: -.02em;
}
.lede {
  font-size: 1.15rem; line-height: 1.5; color: rgba(255,255,255,.85);
  max-width: 660px; margin: 0 0 32px;
}
.lede strong { color: #fff; }
.cta-row {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 12px;
  font-weight: 700; text-decoration: none; font-size: 1.02rem;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 22px -8px rgba(220,38,38,.7);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 12px 24px -8px rgba(220,38,38,.85); }
.btn-secondary {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.btn-secondary:hover { background: rgba(255,255,255,.18); }
.trust {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; gap: 22px; flex-wrap: wrap; color: rgba(255,255,255,.85); font-size: .98rem;
}
.trust li span { color: var(--gold); font-weight: 800; margin-right: 6px; }

/* ---------- SECTIONS ---------- */
section { padding: 84px 0; }
section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 8px; letter-spacing: -.01em;
}
.section-sub {
  color: var(--ink-soft); font-size: 1.06rem; max-width: 640px; margin: 0 0 36px;
}

/* services grid */
.services { background: var(--mist); }
.grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.card {
  background: var(--paper); border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.card img {
  display: block; width: 100%; height: 200px;
  object-fit: cover; object-position: center;
  background: var(--mist);
}
.card-body { padding: 20px 22px 24px; }
.card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* areas */
.areas .city-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.city-card {
  display: block; text-decoration: none; color: inherit;
  padding: 24px 22px; border-radius: var(--radius);
  background: linear-gradient(155deg, #FFFFFF, #F8FAFC);
  border: 1px solid var(--line);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.city-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); }
.city-card h3 { margin: 0 0 6px; font-size: 1.2rem; }
.city-card p { margin: 0 0 14px; color: var(--ink-soft); font-size: .96rem; }
.city-card span { color: var(--accent); font-weight: 700; font-size: .95rem; }

/* how */
.how { background: var(--mist); }
.steps {
  counter-reset: step;
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.steps li {
  background: var(--paper); padding: 22px; border-radius: var(--radius);
  border: 1px solid var(--line);
  counter-increment: step; position: relative;
  padding-top: 56px;
}
.steps li::before {
  content: counter(step);
  position: absolute; top: 18px; left: 22px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.steps strong { display: block; margin-bottom: 4px; font-size: 1.05rem; }

/* footer */
.footer {
  background: var(--ink); color: rgba(255,255,255,.85);
  padding: 36px 0; text-align: center;
}
.footer a { color: var(--gold); text-decoration: none; font-weight: 700; }
.footer .fine { color: rgba(255,255,255,.5); font-size: .85rem; margin-top: 14px; }

/* mobile sticky call bar */
@media (max-width: 640px) {
  body { padding-bottom: 68px; }
  .nav-call { display: none; }
  .hero { padding-bottom: 60px; }
  section { padding: 64px 0; }
  .footer { padding-bottom: 90px; }
  body::after {
    content: "📞 Call Jacob 209-353-7639";
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--accent); color: #fff;
    text-align: center; padding: 16px;
    font-weight: 800; font-size: 1.05rem; letter-spacing: .01em;
    box-shadow: 0 -8px 20px -6px rgba(0,0,0,.25);
    z-index: 50;
  }
  .hero h1 { font-size: 2rem; }
  .lede { font-size: 1.05rem; }
}

@media (prefers-color-scheme: dark) {
  /* keep light theme for client-facing site */
}

/* per-city page banner override */
body.city-page .hero { padding-bottom: 64px; }
body.city-page .hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
