:root {
  --blue: #1e3a5f;
  --blue-soft: #dbeafe;
  --blue-light: #eff6ff;
  --gray: #64748b;
  --dark: #0f172a;
  --white: #ffffff;
  --line: #e2e8f0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

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

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

.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

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

.brand {
  font-weight: 800;
  color: var(--blue);
  font-size: 1.15rem;
}

.nav nav {
  display: flex;
  gap: 18px;
  color: var(--gray);
  font-weight: 600;
  font-size: .95rem;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(30,58,95,.92), rgba(15,23,42,.72)),
    url("/images/hero.jpg") center/cover no-repeat;
  color: var(--white);
}

.hero__content {
  max-width: 760px;
  padding: 80px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  font-weight: 800;
  color: var(--blue-soft);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--blue);
}

h3 {
  color: var(--blue);
  margin-bottom: 10px;
}

.lead {
  font-size: 1.2rem;
  max-width: 650px;
  color: #e5edf7;
}

.btn {
  display: inline-block;
  margin-top: 18px;
  background: var(--white);
  color: var(--blue);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.btn--outline {
  background: var(--blue);
  color: var(--white);
  box-shadow: none;
}

.section {
  padding: 84px 0;
}

.section--soft {
  background: var(--blue-light);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.card,
.panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(15,23,42,.06);
}

.card p,
.split p,
.address {
  color: var(--gray);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
}

.quote {
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.25;
}

.location {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 32px;
  align-items: stretch;
}

.address {
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.mapbox {
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
}

.mapbox iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.footer {
  padding: 28px 0;
  background: var(--dark);
  color: #cbd5e1;
  text-align: center;
}

@media (max-width: 760px) {
  .nav {
    height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav nav {
    flex-wrap: wrap;
  }

  .cards,
  .split,
  .location {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: 68vh;
  }
}
