/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #1a4b8c;
  --brand-dark: #0f3060;
  --brand-light: #e8f0fa;
  --accent: #d4700a;
  --text: #1a1a1a;
  --text-muted: #555;
  --surface: #f8f9fc;
  --surface-alt: #eef2f8;
  --white: #ffffff;
  --border: #dde3ed;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --transition: .2s ease;
  --max-w: 1140px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--accent); }
ul { list-style: none; }
address { font-style: normal; }

/* ── Layout Helpers ────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--surface); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brand-dark);
  margin-bottom: 2.5rem;
  letter-spacing: -.01em;
}

/* ── Header ───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--transition), box-shadow var(--transition);
  background: rgba(255,255,255,0);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  font-size: .95rem;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -.01em;
  white-space: nowrap;
  margin-right: auto;
}
.header-nav {
  display: flex;
  gap: 1.5rem;
}
.header-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--brand); }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-phone {
  background: var(--brand);
  color: var(--white) !important;
}
.btn-phone:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-primary {
  background: var(--brand);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  color: var(--white);
}
.btn-large { padding: .875rem 1.75rem; font-size: 1rem; }
.btn-outline {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
}
.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
}
.btn-outline-light {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

/* ── Hamburger ────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ───────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: .75rem 1.5rem 1.25rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: .6rem 0;
  color: var(--text);
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-of-type { border-bottom: none; }

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,40,80,.82) 0%,
    rgba(10,40,80,.55) 55%,
    rgba(10,40,80,.20) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  width: 100%;
  max-width: 680px;
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2.25rem;
  line-height: 1.55;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-bottom: 2rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 600;
}
.hero-rating svg { color: #f5c518; }
.hero-hours {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
}

/* ── Proof Bar ────────────────────────────────── */
.proof-bar {
  background: var(--brand-dark);
  padding: 1.25rem 1.5rem;
}
.proof-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem 2rem;
  text-align: center;
}
.proof-item strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}
.proof-item span {
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .1rem;
}
.proof-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,.2);
}

/* ── Services Grid ────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--brand);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: .6rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── About Split ───────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text p {
  font-size: .975rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .75rem;
  border-radius: 100px;
}
.about-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe {
  display: block;
  width: 100%;
}

/* ── Reviews ──────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: #f5c518;
}
.review-quote {
  font-size: .925rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}
.review-author {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.reviews-cta {
  text-align: center;
}

/* ── FAQ ──────────────────────────────────────── */
.faq-inner { max-width: 720px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: .975rem;
  color: var(--brand-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-item[open] .faq-question { background: var(--brand-light); }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--brand);
  font-weight: 300;
  flex-shrink: 0;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA Banner ──────────────────────────────── */
.cta-banner {
  background: var(--brand);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-banner-inner { max-width: 640px; margin: 0 auto; }
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-banner p {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  justify-content: center;
}

/* ── Contact ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}
.contact-row > div { flex: 1; }
.contact-row strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
.contact-row address,
.contact-row a {
  font-size: .975rem;
  color: var(--text);
}
.hours-list { margin-top: .5rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  padding: .3rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--text-muted); }

/* ── Footer ───────────────────────────────────── */
.site-footer {
  background: var(--brand-dark);
  padding: 2.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.footer-brand strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand span {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ── Responsive ── mobile responsiveness guardrails */
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .proof-item { padding: .5rem 1.25rem; }
}
@media (max-width: 700px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 88vh; }
  .hero-content { padding: 7rem 1.25rem 4rem; }
  .proof-divider { display: none; }
  .proof-bar-inner { gap: .5rem; }
  .proof-item { padding: .4rem .75rem; }
  .section { padding: 3.5rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-links { gap: .75rem; }
}
