:root {
  --navy: #0e2742;
  --navy-2: #17375e;
  --gold: #c79a35;
  --green: #2f6f4e;
  --ink: #172033;
  --muted: #647084;
  --line: #dce3ec;
  --soft: #f4f7fa;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(14, 39, 66, .18);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(220, 227, 236, .9);
}
.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; letter-spacing: .04em; text-transform: uppercase; }
.brand strong { display: block; font-size: 15px; line-height: 1.05; color: var(--navy); }
.brand em { display: block; font-style: normal; font-size: 11px; color: var(--muted); font-weight: 700; }
.brand-mark { width: 48px; height: 36px; display: grid; place-items: center; }
.brand-mark svg { width: 48px; height: 30px; fill: none; stroke: var(--gold); stroke-width: 3; stroke-linejoin: round; }
.nav-links { display: flex; gap: 28px; font-weight: 600; color: #3d4a5d; }
.nav-links a:hover { color: var(--navy); }
.nav-cta { padding: 11px 18px; border-radius: 999px; background: var(--navy); color: var(--white); font-weight: 700; box-shadow: 0 10px 30px rgba(14, 39, 66, .2); }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 20% 20%, rgba(199,154,53,.28), transparent 28%), linear-gradient(135deg, #071626 0%, #0e2742 55%, #17375e 100%);
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: .3;
  background:
    linear-gradient(115deg, rgba(7,22,38,.95), rgba(14,39,66,.7)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80') center/cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -160px -10%;
  height: 280px;
  background: var(--white);
  transform: rotate(-3deg);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; padding: 90px 0 140px; }
.eyebrow { margin: 0 0 14px; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
h1, h2, h3 { margin: 0; line-height: 1.05; }
h1 { max-width: 820px; font-size: clamp(44px, 6vw, 76px); letter-spacing: -.055em; }
.hero-lede { margin: 26px 0 0; max-width: 720px; color: rgba(255,255,255,.82); font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 15px 22px; border-radius: 999px; font-weight: 800; }
.button.primary { background: var(--gold); color: #101820; }
.button.secondary { border: 1px solid rgba(255,255,255,.35); color: var(--white); }
.hero-card { align-self: end; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.1); backdrop-filter: blur(18px); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #69d69b; box-shadow: 0 0 0 8px rgba(105,214,155,.15); margin-bottom: 18px; }
.hero-card p { margin: 0 0 12px; color: rgba(255,255,255,.72); }
.hero-card h2 { font-size: 30px; letter-spacing: -.04em; margin-bottom: 28px; }
dl { display: grid; gap: 14px; margin: 0; }
dl div { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.16); }
dt { color: rgba(255,255,255,.6); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
dd { margin: 3px 0 0; font-weight: 800; }

.section { padding: 96px 0; }
.split { display: grid; grid-template-columns: .42fr 1fr; gap: 70px; align-items: start; }
.section-kicker { color: var(--navy); font-weight: 800; font-size: 18px; }
.intro-copy h2, .section-heading h2, .proof-copy h2, .area-copy h2, .contact h2 { font-size: clamp(34px, 4vw, 52px); letter-spacing: -.045em; color: var(--navy); }
.intro-copy p, .proof-copy p, .area-copy p, .contact p { color: var(--muted); font-size: 18px; margin: 22px 0 0; }
.services { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 28px; min-height: 230px; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(14,39,66,.12); }
.service-card span { color: var(--gold); font-weight: 800; letter-spacing: .12em; font-size: 12px; }
.service-card h3 { color: var(--navy); font-size: 22px; margin-top: 28px; }
.service-card p { color: var(--muted); margin: 12px 0 0; }
.proof-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.proof-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.proof-list div { border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.proof-list strong { display: block; color: var(--navy); margin-bottom: 6px; }
.proof-list span { color: var(--muted); }
.area { background: linear-gradient(180deg, var(--white), var(--soft)); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.map-card { position: relative; min-height: 460px; border-radius: 30px; overflow: hidden; background: linear-gradient(135deg, #dfe8ef, #f8fafc); border: 1px solid var(--line); box-shadow: 0 24px 70px rgba(14,39,66,.12); }
.map-card::before { content: ""; position: absolute; inset: 40px; border-radius: 45% 55% 38% 62%; border: 2px solid rgba(14,39,66,.14); transform: rotate(-18deg); }
.map-line { position: absolute; width: 70%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); top: 52%; left: 15%; transform: rotate(-28deg); }
.pin { position: absolute; background: var(--navy); color: var(--white); padding: 8px 11px; border-radius: 999px; font-size: 12px; font-weight: 800; box-shadow: 0 12px 28px rgba(14,39,66,.24); }
.pin::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; margin-right: 7px; }
.sacramento { left: 42%; top: 55%; } .eldorado { left: 54%; top: 48%; } .truckee { left: 66%; top: 30%; } .reno { left: 75%; top: 36%; } .chico { left: 38%; top: 22%; } .bay { left: 16%; top: 70%; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag-cloud span { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 9px 12px; color: #3d4a5d; font-weight: 700; font-size: 13px; }
.contact { background: var(--navy); color: var(--white); }
.contact h2 { color: var(--white); }
.contact p { color: rgba(255,255,255,.72); }
.contact-shell { display: grid; grid-template-columns: 1fr .55fr; gap: 40px; align-items: center; }
.contact-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 30px; }
.contact-card h3 { font-size: 34px; margin-bottom: 4px; }
.contact-card p { margin: 0 0 22px; }
.contact-card a { display: block; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.16); font-weight: 800; }
.footer { padding: 28px 0; background: #071626; color: rgba(255,255,255,.7); }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; font-size: 14px; }
.footer p { margin: 0; }
.footer a { color: var(--gold); font-weight: 800; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid, .split, .proof-grid, .area-grid, .contact-shell { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 70px; }
  .hero-card { align-self: auto; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .proof-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-shell { min-height: 68px; }
  .nav-cta { display: none; }
  h1 { font-size: 42px; }
  .section { padding: 72px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .map-card { min-height: 360px; }
  .pin { font-size: 10px; padding: 7px 9px; }
  .footer-grid { flex-direction: column; }
}
