* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-body);
  line-height: 1.6;
  background: var(--bg-white);
}

a { text-decoration: none; color: inherit; }
h1, h2 { color: var(--text-dark); font-weight: 700; }
img { max-width: 100%; display: block; }

/* Header */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}
.header-nav-right { justify-content: flex-end; }
.nav-link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}
.nav-link:hover { color: var(--brand-blue-light); }
.header-logo {
  text-align: center;
  white-space: nowrap;
  padding: 0 20px;
}
.logo-word {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
}
.logo-tag {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  color: #cfe0f2;
  margin-top: 2px;
}
.btn-quote {
  background: #ffffff;
  color: var(--brand-navy);
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
}

/* Hero */
.hero {
  position: relative;
  height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 140px 24px 0;
}
.hero-content h1 {
  color: #ffffff;
  font-size: 38px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.hero-sub {
  color: #ffffff;
  font-size: 16px;
  margin-top: 20px;
  background: rgba(11,38,71,0.55);
  display: inline-block;
  padding: 10px 24px;
}

/* Mission */
.mission {
  max-width: 780px;
  margin: 72px auto;
  padding: 0 24px;
  text-align: center;
  font-size: 19px;
  font-style: italic;
  color: var(--text-dark);
}

/* Services */
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  text-align: center;
}
.services h2 {
  font-size: 34px;
  color: var(--brand-blue);
  margin-bottom: 48px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-icon {
  width: 64px; height: 64px;
  color: var(--brand-navy);
  margin-bottom: 18px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Quote CTA */
.quote-cta-wrap {
  text-align: center;
  padding: 32px 24px 56px;
  border-top: 1px solid var(--border-soft);
  margin-top: 32px;
}
.btn-hero {
  display: inline-block;
  background: var(--brand-blue);
  color: #ffffff;
  padding: 16px 38px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
}
.btn-hero:hover { background: var(--brand-navy); }

/* Resources band */
.resources-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--brand-navy);
}
.resources-text {
  padding: 64px 64px;
  color: #ffffff;
}
.resources-text h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 28px;
}
.resources-list {
  list-style: disc;
  padding-left: 20px;
}
.resources-list li {
  margin-bottom: 14px;
}
.resources-list a {
  color: #e4ecf6;
  text-decoration: underline;
  font-size: 16px;
}
.resources-list a:hover { color: #ffffff; }
.resources-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 40px 24px 28px;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}
.footer-address, .footer-contact {
  font-size: 14px;
  color: var(--text-body);
}
.footer-social {
  margin: 18px 0;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid var(--text-muted);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-body);
}
.footer-bottom {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--brand-blue); }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .hero-content h1 { font-size: 26px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .resources-band { grid-template-columns: 1fr; }
  .resources-text { padding: 40px 28px; }
}
