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

:root {
  --navy:   #0d1f3c;
  --blue:   #1a4a8a;
  --teal:   #2d8a8a;
  --light:  #f4f7fb;
  --white:  #ffffff;
  --gray-50:#f8fafc;
  --gray-100:#f1f5f9;
  --gray-200:#e2e8f0;
  --gray-400:#94a3b8;
  --gray-600:#475569;
  --gray-800:#1e293b;
  --star:   #f59e0b;
  --green:  #16a34a;
  --fs: clamp(0.875rem, 1.5vw, 1rem);
  --lh: 1.6;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(13,31,60,.10);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--fs);
  line-height: var(--lh);
  color: var(--gray-800);
  background: var(--white);
}

/* ── Typography ── */
h1,h2,h3 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
p  { margin-bottom: 1rem; }
a  { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(var(--max-w), 100% - 2rem); margin: 0 auto; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.75rem; padding-bottom: 0.75rem;
  gap: 1rem;
}
.site-logo {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-logo span { color: var(--teal); }
.header-phone {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
}
.header-phone:hover { background: var(--blue); text-decoration: none; }

/* ── Mobile nav ── */
.mobile-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.25rem; }
.mobile-nav-toggle svg { fill: var(--white); width: 28px; height: 28px; }
.desktop-nav { display: flex; gap: 1.5rem; }
.desktop-nav a { color: rgba(255,255,255,.85); font-size: 0.9rem; font-weight: 500; }
.desktop-nav a:hover { color: var(--white); text-decoration: underline; }

@media (max-width: 700px) {
  .mobile-nav-toggle { display: block; }
  .desktop-nav { display: none; }
  .site-header .container { flex-wrap: wrap; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 80svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;

}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,.82) 0%, rgba(26,74,138,.65) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 680px;
  padding: 4rem 2rem;
  color: var(--white);
}
.hero-eyebrow {
  display: inline-block;
  background: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal); color: var(--white);
  font-weight: 700; font-size: 1rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); text-decoration: none; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white); font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); text-decoration: none; }

/* ── Proof bar ── */
.proof-bar {
  background: var(--light);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
}
.proof-bar .container {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1.5rem 3rem;
}
.proof-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--gray-600); }
.proof-item .stars { color: var(--star); letter-spacing: 2px; }
.proof-item .val { color: var(--navy); }
.proof-sep { color: var(--gray-400); }

/* ── Services ── */
.section { padding: 4rem 0; }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(13,31,60,.12); }
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 0; }

/* ── Proof / About split ── */
.proof-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 700px) { .proof-split { grid-template-columns: 1fr; } }
.proof-text h2 { margin-bottom: 1rem; }
.proof-text p { color: var(--gray-600); margin-bottom: 1.25rem; }
.proof-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--light);
  border: 1px solid var(--gray-200);
  border-radius: 99px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
}
.badge svg { width: 14px; height: 14px; fill: var(--teal); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-grid img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--star); letter-spacing: 2px; margin-bottom: 0.75rem; font-size: 0.95rem; }
.review-quote { font-style: italic; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.65; }
.review-author { font-weight: 700; color: var(--navy); font-size: 0.9rem; }

/* ── Map / Location ── */
.map-section { background: var(--navy); color: var(--white); }
.map-section h2 { color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block h3 { color: var(--white); margin-bottom: 1rem; }
.contact-row {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.88);
  font-size: 0.95rem;
}
.contact-row svg { width: 18px; height: 18px; fill: var(--teal); flex-shrink: 0; margin-top: 2px; }
.contact-row a { color: rgba(255,255,255,.88); }
.contact-row a:hover { color: var(--white); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 2px solid rgba(255,255,255,.15); }
.map-embed iframe { display: block; width: 100%; height: 280px; border: 0; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 0;
  font-size: 1rem; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
}
.faq-q:hover { color: var(--blue); }
.faq-q svg { width: 20px; height: 20px; fill: var(--gray-400); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--gray-600);
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.25rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--blue);
  padding: 3rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 1.75rem; }
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 2rem 0;
  font-size: 0.85rem;
}
.site-footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--white); }

/* mobile responsiveness guardrails */
@media (max-width: 640px) { .hero-content { padding: 2rem 1rem; } .services-grid { grid-template-columns: 1fr; } .reviews-grid { grid-template-columns: 1fr; } }/
.star-rating { color: var(--star); letter-spacing: 1px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
