:root {
  --navy: #0d3ff4;
  --navy-dark: #0a34cc;
  --teal: #f4c81a;
  --teal-light: #fdf5db;
  --bg: #fafaf8;
  --text: #1f2733;
  --text-muted: #5b6472;
  --border: #e7e5e0;
  --gold: #e0b23c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Public Sans', sans-serif;
}

a {
  color: #2c4a8a;
  text-decoration: none;
}
a:hover {
  color: var(--teal);
}

h1, h2, h3, .logo, .footer-logo {
  font-family: 'Lora', serif;
}

img { max-width: 100%; display: block; }

.eyebrow {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--teal); color: var(--navy); }
.btn-primary:hover { background: #e0b515; color: var(--navy); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-block { width: 100%; text-align: center; }

/* Topbar */
.topbar { background: var(--navy); color: #f2f1ec; font-size: 14px; }
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: #c9e9db; }

/* Header */
.header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-weight: 700; font-size: 24px; color: var(--navy); }
.nav { display: flex; gap: 32px; align-items: center; font-weight: 600; font-size: 15px; }
.nav a { color: #35415a; }
.nav a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 4px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* Hero */
.hero { padding: 80px 24px; max-width: 1280px; margin: 0 auto; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: 48px;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 22px;
}
.hero-copy p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 16px;
}

/* Stats */
.stats { background: var(--navy); padding: 36px 24px; }
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  color: #fff;
  text-align: center;
}
.stat-num { font-family: 'Lora', serif; font-size: 32px; font-weight: 700; }
.stat-label { font-size: 14px; color: #d7d5cf; }

/* Section */
.section { padding: 88px 24px; max-width: 1280px; margin: 0 auto; }
.section-alt { background: var(--teal-light); max-width: none; padding: 88px 24px; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { font-size: 36px; color: var(--navy); margin: 0; }
.section-sub { font-size: 18px; line-height: 1.6; color: var(--text-muted); margin: 16px 0 0; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--teal-light);
  margin-bottom: 18px;
}
.service-card h3 { font-size: 19px; color: var(--navy); margin: 0 0 8px; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* About */
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image { width: 100%; height: 420px; object-fit: cover; border-radius: 16px; }
.about-copy h2 { font-size: 34px; color: var(--navy); margin: 0 0 24px; }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.check-list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #3a4356;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 18px;
  background: var(--teal);
  border-radius: 3px;
}

/* Reviews */
.reviews-section { max-width: 1000px; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 14px; }
.review-card p { font-size: 16px; line-height: 1.65; color: #2c3444; margin: 0 0 20px; font-style: italic; }
.review-name { font-weight: 700; color: var(--navy); }

/* CTA banner */
.cta-banner { background: var(--navy); padding: 64px 24px; text-align: center; }
.cta-banner h2 { font-size: 28px; color: #fff; margin: 0 0 24px; }

/* Contact */
.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}
.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  height: fit-content;
}
.location-card h3 { font-size: 18px; margin: 0 0 12px; color: var(--navy); }
.location-card p { margin: 0 0 6px; font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.license { font-size: 13px !important; color: #7a8393 !important; }
.directions-link { display: inline-block; margin: 12px 0 20px; font-size: 14px; font-weight: 600; }
.map-embed { border-radius: 8px; overflow: hidden; }

.lead-form {
  background: var(--teal-light);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-form h3 { font-size: 22px; margin: 0 0 4px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #d5d2c9;
  font-size: 15px;
  font-family: 'Public Sans', sans-serif;
  width: 100%;
}
.lead-form textarea { resize: vertical; }
.radio-row { display: flex; gap: 20px; font-size: 15px; color: #3a4356; }
.radio-row label { display: flex; align-items: center; gap: 6px; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.captcha-row label { display: block; font-size: 14px; color: #3a4356; margin-bottom: 8px; }
.captcha-row input { max-width: 140px; }

.form-note { margin: 0; font-size: 13px; color: #7a8393; }
.form-status { margin: 0; font-size: 14px; font-weight: 600; min-height: 20px; }
.form-status.success { color: var(--teal); }
.form-status.error { color: #b3432b; }

/* Footer */
.footer { background: var(--navy-dark); color: #d7d5cf; padding: 64px 24px 32px; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-col-wide p { max-width: 280px; }
.footer-logo { font-weight: 700; font-size: 20px; color: #fff; margin-bottom: 12px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-heading { font-weight: 700; color: #fff; margin-bottom: 4px; font-size: 14px; }
.footer-col a { color: #d7d5cf; }
.footer-col p { margin: 0; line-height: 1.7; }
.footer-license { color: #a7aebd; font-size: 13px; margin-top: 6px !important; }
.footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #2a3450;
  font-size: 13px;
  color: #8a91a1;
}

.nav a.active { color: var(--teal); }

.section-cta { text-align: center; margin-top: 40px; }
.text-link { color: #2c4a8a; font-weight: 600; font-size: 15px; }

.service-card { text-decoration: none; }

.page-intro {
  padding: 72px 24px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-intro h1 { font-size: 44px; color: var(--navy); margin: 0 0 20px; }
.page-intro p { font-size: 18px; line-height: 1.6; color: var(--text-muted); margin: 0; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-story .about-image { height: 440px; }
.about-story h2 { font-size: 30px; color: var(--navy); margin: 0 0 20px; }
.about-story p { font-size: 16px; line-height: 1.7; color: #3a4356; margin: 0 0 18px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1280px; margin: 0 auto; }
.value-card { background: #fff; border-radius: 8px; padding: 32px; }
.value-card h3 { font-size: 19px; color: var(--navy); margin: 0 0 10px; }
.value-card p { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; }

.services-detail { display: flex; flex-direction: column; gap: 64px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row h2 { font-size: 28px; color: var(--navy); margin: 0 0 14px; }
.service-row p { font-size: 16px; line-height: 1.7; color: #3a4356; margin: 0; }
.service-row img { width: 100%; height: 300px; object-fit: cover; border-radius: 14px; }

.map-single { max-width: 600px; margin: 0 auto; }
.location-card.standalone { max-width: 560px; margin: 0 auto; }

.about-copy-block { max-width: 820px; margin: 0 auto; padding: 56px 24px 0; }
.about-copy-block p { font-size: 16px; line-height: 1.75; color: #3a4356; margin: 0 0 20px; }
.about-copy-block h2 { font-size: 26px; color: var(--navy); margin: 40px 0 16px; }
.about-copy-block h2:first-child { margin-top: 0; }

.advantages { max-width: none; }
.advantages h2 { font-size: 28px; color: var(--navy); margin: 0 0 28px; max-width: 1280px; margin-left: auto; margin-right: auto; padding: 0 24px; }
.advantages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.advantages-grid ul { margin: 0; padding-left: 20px; font-size: 16px; line-height: 1.9; color: #3a4356; }

.faq-section { max-width: 900px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
}
.faq-list summary { font-weight: 600; font-size: 16px; color: var(--navy); cursor: pointer; }
.faq-list p { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin: 14px 0 0; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner, .about-inner, .contact-grid, .about-story, .service-row { grid-template-columns: 1fr; direction: ltr; }
  .about-inner .about-image { order: -1; }
  .services-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 18px;
    box-shadow: 0 8px 12px rgba(0,0,0,0.06);
    display: none;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-copy h1 { font-size: 34px; }
  .services-grid, .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-inner { justify-content: flex-start; gap: 32px; }
}
