/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
iframe { border: 0; }
address { font-style: normal; }

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --accent: #0369a1;
  --accent-hover: #025a8c;
  --accent-light: #e0f2fe;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
  --max: 1120px;
  --container: min(calc(100% - 32px), var(--max));
}

/* ── Container ──────────────────────────────────────────────── */
.container { width: var(--container); margin: 0 auto; }

/* ── Typography helpers ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: .75rem;
}
.section-lead {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6875rem 1.375rem;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s, transform .1s;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-phone {
  background: var(--accent);
  color: #fff;
  font-size: .875rem;
  padding: .5rem 1rem;
}
.btn-phone:hover { background: var(--accent-hover); }

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--accent);
  padding: .875rem 1.75rem;
  font-size: 1rem;
}
.btn-light:hover { background: var(--accent-light); }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
}
.brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-weight: 800; font-size: 1rem; color: var(--text); }
.brand-tagline { font-size: .6875rem; color: var(--muted); font-weight: 400; }

.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}
.nav-list a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s;
}
.nav-list a:hover { color: var(--text); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: .25rem;
  margin-left: auto;
}

.mobile-nav {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: .75rem 0;
}
.mobile-nav ul { list-style: none; }
.mobile-nav a {
  display: block;
  padding: .75rem 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-phone { color: var(--accent) !important; font-weight: 700 !important; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,30,60,.82) 0%, rgba(2,30,60,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #e0f2fe;
  font-size: .8125rem;
  font-weight: 600;
  padding: .375rem .875rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero-badge svg { color: #fbbf24; }
.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
}

/* ── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 1.125rem 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ── SECTIONS ───────────────────────────────────────────────── */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg); }

/* ── SERVICES ────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow .2s, transform .15s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text);
}
.service-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── REVIEWS ────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.review-stars { display: flex; gap: .125rem; color: #f59e0b; }
.review-quote {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.review-footer cite {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--muted);
  font-style: normal;
}
.reviews-cta { text-align: center; }

/* ── LOCATION ───────────────────────────────────────────────── */
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.contact-item {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
}
.contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: .8125rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.contact-item span,
.contact-item address { font-size: .9375rem; color: var(--muted); line-height: 1.5; }
.contact-item a { color: var(--accent); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.map-wrap iframe { width: 100%; display: block; }
.map-image-wrap { position: relative; }
.map-image-wrap img { width: 100%; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 760px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  padding: 1.125rem 1.375rem;
  font-weight: 600;
  font-size: .9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: background .15s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { background: var(--surface-2); }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s;
}
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.375rem 1.125rem;
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.faq-answer p { margin: 0; }

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--accent);
  padding: 3.5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .375rem;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.6);
  padding: 3rem 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .375rem;
}
.footer-brand strong { font-size: 1.0625rem; font-weight: 700; color: #fff; }
.footer-brand span { font-size: .875rem; }
.footer-brand a { color: rgba(255,255,255,.7); font-size: .875rem; }
.footer-brand a:hover { color: #fff; }
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.55); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }

/* mobile responsiveness guardrails: @media breakpoints ensure clean stacking on phones, no horizontal scroll, viewport-fitted embeds */
/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .location-split { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  .hero { min-height: 80vh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .trust-inner { gap: 1rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; }
}

/* surfaced lead-form block */
.lead-form-section{padding:4rem 1.5rem;background:linear-gradient(180deg,var(--gray-50,#f8f9fb),#edf4fb)}
.lead-form-shell{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,520px);gap:2rem;align-items:start}
.lead-form-copy{padding:1rem 0}
.lead-form-eyebrow{display:inline-block;margin-bottom:1rem;font-size:.8rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--blue,#1565a8)}
.lead-form-copy h2{font-size:clamp(1.75rem,3vw,2.35rem);margin-bottom:1rem;color:var(--navy,var(--text,#0f1f2e))}
.lead-form-copy p{color:var(--muted,#5a6678);max-width:40rem;margin-bottom:1.5rem}
.lead-form-highlights{display:grid;gap:.9rem;margin-bottom:1.5rem}
.lead-form-highlight{background:rgba(255,255,255,.76);border:1px solid rgba(21,101,168,.12);border-radius:14px;padding:1rem 1.1rem;box-shadow:0 2px 12px rgba(15,31,46,.1)}
.lead-form-highlight strong{display:block;color:var(--navy,var(--text,#0f1f2e));margin-bottom:.2rem}
.lead-form-highlight span{color:var(--muted,#5a6678);font-size:.95rem}
.lead-form-card{background:var(--white,#fff);border:1px solid rgba(15,31,46,.08);border-radius:20px;padding:1.35rem;box-shadow:0 8px 32px rgba(15,31,46,.14)}
.lead-form-status{border-radius:14px;padding:.9rem 1rem;margin-bottom:1rem;font-size:.95rem;font-weight:600}
.lead-form-status.is-success{background:#eaf8ef;color:#146b38;border:1px solid #b7e3c6}
.lead-form-status.is-error{background:#fff1eb;color:#a43f16;border:1px solid #f3c2ae}
.lead-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.lead-form-field{display:flex;flex-direction:column;gap:.45rem}
.lead-form-field span{font-size:.9rem;font-weight:700;color:var(--navy,var(--text,#0f1f2e))}
.lead-form-field-full{grid-column:1/-1}
.lead-form-field input,.lead-form-field select,.lead-form-field textarea{width:100%;border:1px solid var(--gray-200,#e2e6ec);border-radius:12px;padding:.9rem 1rem;font:inherit;color:var(--text,#1a1a2e);background:var(--white,#fff);transition:border-color .2s,box-shadow .2s;appearance:none}
.lead-form-field textarea{resize:vertical;min-height:132px}
.lead-form-field input:focus,.lead-form-field select:focus,.lead-form-field textarea:focus{outline:none;border-color:rgba(21,101,168,.7);box-shadow:0 0 0 4px rgba(21,101,168,.12)}
.lead-form-honeypot{position:absolute;left:-9999px;opacity:0;pointer-events:none}
.lead-form-button{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.95rem 1.35rem;border:0;border-radius:999px;background:var(--blue,#1565a8);color:#fff;text-decoration:none;font:inherit;font-weight:700;line-height:1.1;cursor:pointer;box-shadow:0 10px 24px rgba(21,101,168,.18);transition:transform .2s ease,box-shadow .2s ease,opacity .2s ease}
.lead-form-button:hover,.lead-form-button:focus-visible{transform:translateY(-1px);box-shadow:0 14px 28px rgba(21,101,168,.22);opacity:.98}
.lead-form-button:focus-visible{outline:2px solid rgba(21,101,168,.25);outline-offset:3px}
.lead-form-button-submit{width:100%;margin-top:1rem}
.lead-form-note{font-size:.84rem;line-height:1.6;color:var(--muted,#5a6678);margin-top:.85rem}
@media(max-width:900px){.lead-form-shell{grid-template-columns:1fr}.lead-form-copy{padding:0}.lead-form-card{padding:1.1rem}}
@media(max-width:640px){.lead-form-grid{grid-template-columns:1fr}.lead-form-button{width:100%}}

/* surfaced top lead cta */
.top-lead-cta{padding:.9rem 1.5rem;background:linear-gradient(90deg,rgba(21,101,168,.12),rgba(15,31,46,.08));border-bottom:1px solid rgba(15,31,46,.08)}
.top-lead-cta__inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.top-lead-cta__text{margin:0;color:var(--navy,var(--text,#0f1f2e));font-size:.98rem;font-weight:600;line-height:1.5}
.top-lead-cta__button{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:.85rem 1.2rem;border-radius:999px;background:var(--blue,#1565a8);color:#fff;text-decoration:none;font-weight:700;line-height:1.1;white-space:nowrap;box-shadow:0 10px 24px rgba(21,101,168,.18);transition:transform .2s ease,box-shadow .2s ease,opacity .2s ease}
.top-lead-cta__button:hover,.top-lead-cta__button:focus-visible{transform:translateY(-1px);box-shadow:0 14px 28px rgba(21,101,168,.22);opacity:.98}
.top-lead-cta__button:focus-visible{outline:2px solid rgba(21,101,168,.25);outline-offset:3px}
#lead-form,.lead-form-section,.lead-form-anchor,.quote-section{scroll-margin-top:7rem}
@media(max-width:720px){.top-lead-cta{padding:1rem 1.25rem}.top-lead-cta__inner{flex-direction:column;align-items:flex-start}.top-lead-cta__button{width:100%}}
