:root {
  --blue-dark: #002b52;
  --blue-med: #003d73;
  --blue-accent: #008ba3;
  --ink: #1f2937;
  --muted: #6b7280;
  --light: #f7f7f7;
  --hero-gray: #9fa3a6;
  --footer-dark: #050b15;
}

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

body.page {
  font-family: 'Lato', sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
}

.top-bar {
  background: #000000;
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 300;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon {
  font-size: 14px;
}

.icon.muted {
  color: rgba(255, 255, 255, 0.6);
}

.icon.accent {
  color: var(--blue-med);
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 16px 24px;
  gap: 16px;
}

.logo-wrap {
  width: 176px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 6px;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.nav-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  min-height: 64px;
  background: var(--blue-dark);
  color: #d1d5db;
  font-weight: 300;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease;
}

.nav-button:hover {
  background: #003463;
}

.nav-button-alt {
  background: var(--blue-dark);
  color: #d1d5db;
  text-align: center;
}

.nav-sub {
  font-size: 9px;
  color: #9ca3af;
  text-transform: none;
}

.accent-line {
  height: 3px;
  width: 100%;
  background: var(--blue-accent);
}

.hero-image {
  height: 500px;
  overflow: hidden;
}

.page-hero {
  height: 400px;
  overflow: hidden;
}

.hero-image img,
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-cta {
  background: var(--hero-gray);
  color: #ffffff;
  text-align: center;
  padding: 56px 16px;
}

.hero-cta h1 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-cta p {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  display: inline-block;
  background: #ffffff;
  color: #4b5563;
  padding: 12px 48px;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #d1d5db;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.cta-button:hover {
  background: #f1f1f1;
}

.intro {
  padding: 80px 16px;
  background: #ffffff;
}

.content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 48px;
  letter-spacing: 1px;
}

.intro-copy {
  max-width: 760px;
  margin: 0 auto 48px;
  color: #6b7280;
  font-weight: 300;
  font-size: 18px;
  display: grid;
  gap: 20px;
}

.service-list {
  list-style: none;
  display: inline-grid;
  gap: 16px;
  text-align: left;
  font-size: 18px;
  color: #374151;
  font-weight: 300;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  color: var(--blue-accent);
}

.section-banner {
  background: rgba(156, 163, 166, 0.9);
  color: #ffffff;
  text-align: center;
  padding: 56px 16px;
}

.section-banner h1 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 16px;
}

.section-banner p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 300;
}

.section-banner .italic {
  font-style: italic;
}

.service-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px;
}

.panel {
  padding: 48px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  color: #6b7280;
  font-weight: 300;
}

.panel-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--blue-med);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 36px;
  color: var(--blue-med);
  font-weight: 700;
}

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}

.team-card {
  display: grid;
  gap: 14px;
  color: #374151;
}

.team-name {
  font-size: 24px;
  font-weight: 300;
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  color: #4b5563;
  font-weight: 300;
}

.contact {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}

.contact-block h2 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1f2937;
}

.contact-list {
  display: grid;
  gap: 20px;
  color: #6b7280;
  font-weight: 300;
  font-size: 18px;
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.hours {
  display: grid;
  gap: 12px;
  color: #6b7280;
  font-weight: 300;
  font-size: 18px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 8px;
}

.site-footer {
  margin-top: 40px;
}

.footer-band {
  height: 64px;
  width: 100%;
  background: var(--blue-med);
}

.footer-main {
  background: var(--footer-dark);
  color: #ffffff;
  padding: 80px 16px 48px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
}

.footer-grid h3 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid p {
  color: #9ca3af;
  font-weight: 300;
  line-height: 1.7;
}

.footer-list {
  display: grid;
  gap: 16px;
  color: #9ca3af;
  font-weight: 300;
}

.footer-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-bottom {
  margin-top: 80px;
  border-top: 1px solid #1f2937;
  padding-top: 16px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 300;
}

@media (max-width: 900px) {
  .nav-bar {
    flex-direction: column;
  }

  .primary-nav {
    width: 100%;
    justify-content: center;
  }

  .nav-button {
    flex: 1 1 150px;
    border-right: none;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 600px) {
  .hero-cta h1,
  .section-banner h1 {
    font-size: 28px;
  }

  .hero-cta p,
  .section-banner p {
    font-size: 16px;
  }

  .cta-button {
    padding: 12px 32px;
  }

  .panel {
    padding: 32px;
  }
}
