:root {
  --blue: #18689D;
  --light-blue: #34A0C6;
  --green: #9AC45A;
  --text: #354A57;
  --muted: #6B7C86;
  --soft: #F7F9FA;
  --white: #FFFFFF;
  --border: #E3E8EB;
  
  --navy: var(--blue);
--teal: var(--light-blue);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Lato', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo-link {
  display: block;
  line-height: 0;
}

.site-logo {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-phone {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.header-phone:hover {
  color: var(--light-blue);
}

.header-quote {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.header-quote:hover {
  background: var(--light-blue);
}

.hero {
  padding: 110px 0 100px;
  background: linear-gradient(135deg, #f8fbfc, #eef5f6);
  text-align: center;
}

.hero-content { max-width: 820px; }

.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
  margin: 0 0 14px;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.12;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  letter-spacing: -.04em;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.025em;
}

h3 { font-size: 1.3rem; }

.hero-copy {
  max-width: 700px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 1.12rem;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.primary { background: var(--teal); color: var(--navy); }
.secondary { border: 1px solid var(--navy); color: var(--navy); }
.white { background: var(--white); color: var(--navy); }
.outline { border: 1px solid rgba(255,255,255,.7); color: var(--white); }

.section { padding: 80px 0; }
.soft { background: var(--soft); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  background: var(--white);
}

.card p { margin-bottom: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.check-list p {
  padding: 10px 0;
  margin: 0;
  border-bottom: 1px solid var(--border);
}

.narrow { max-width: 850px; text-align: center; }
.large { font-size: 1.1rem; color: var(--muted); }

.cta {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta h2 { color: var(--white); }
.cta p:not(.eyebrow) { color: #d8e3e8; }
.light { color: var(--teal); }
.centered { margin-top: 28px; }

footer {
  padding: 26px 0;
  background: #0b2033;
  color: #b9c8d0;
  font-size: .88rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

footer strong { color: var(--white); }

@media (max-width: 760px) {
.site-logo {
  width: 155px;
}

.header-actions {
  gap: 10px;
}

.header-phone {
  display: none;
}

.header-quote {
  padding: 10px 14px;
  font-size: 0.9rem;
}  .hero { padding: 75px 0 70px; }
  .services-grid, .split { grid-template-columns: 1fr; }
  .split { gap: 25px; }
  .section { padding: 60px 0; }
  .phone-link { font-size: .9rem; }
  .footer-content { flex-direction: column; }
}
