* {
  box-sizing: border-box;
}

:root {
  --navy: #0d2b4d;
  --navy-dark: #071b30;
  --red: #be2f2f;
  --cream: #f8f6f1;
  --text: #1d2430;
  --muted: #66707c;
  --white: #ffffff;
  --line: #e6e0d8;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.narrow {
  max-width: 760px;
  text-align: center;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  text-decoration: none;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .5px;
}

.brand-office {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.nav-button,
.primary-button,
.cta-button {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .3px;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-button:hover,
.primary-button:hover,
.cta-button:hover {
  transform: translateY(-2px);
}

.nav-button {
  color: var(--white);
  background: var(--red);
  padding: 11px 17px;
  border-radius: 3px;
  font-size: 13px;
}

.hero {
  background: var(--navy-dark);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  min-height: 620px;
}

.hero-copy {
  padding: 84px 42px 76px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 8vw, 112px);
  line-height: .88;
  letter-spacing: -3px;
}

.office {
  margin: 27px 0 0;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.25;
  text-transform: uppercase;
  font-weight: 700;
}

.office strong {
  color: #ef4545;
  font-size: 1.3em;
}

.tagline {
  margin: 18px 0 27px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 28px;
}

.primary-button {
  align-self: flex-start;
  padding: 14px 22px;
  color: var(--white);
  background: var(--red);
  border-radius: 3px;
}

.hero-photo {
  min-height: 620px;
  background: #d7e6f5;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.section {
  padding: 86px 0;
}

.section h2,
.cta h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
}

.section p {
  font-size: 18px;
}

.priorities {
  background: var(--white);
}

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

.card {
  border: 1px solid var(--line);
  padding: 30px;
  background: var(--cream);
}

.card-number {
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
}

.card h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  margin: 10px 0;
}

.card p {
  margin-bottom: 0;
  font-size: 16px;
}

.service {
  padding: 52px 0;
  background: var(--navy);
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.service-grid > div {
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,.25);
}

.service-grid > div:last-child {
  border-right: 0;
}

.big-stat {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.community {
  background: var(--cream);
}

.cta {
  padding: 62px 0;
  background: var(--red);
  color: var(--white);
}

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

.cta h2 {
  color: var(--white);
  margin-bottom: 7px;
}

.cta p {
  margin: 0;
}

.light {
  color: var(--white);
  opacity: .85;
}

.cta-button {
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 20px;
  white-space: nowrap;
}

footer {
  background: #061525;
  color: #dce3ea;
  padding: 25px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.placeholder {
  color: #ffb8b8;
}

@media (max-width: 800px) {
  .wrap {
    width: min(100% - 28px, 680px);
  }

  .nav {
    min-height: 66px;
  }

  .brand-name {
    font-size: 19px;
  }

  .nav-button {
    font-size: 11px;
    padding: 9px 11px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 54px 0 42px;
    text-align: center;
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 84px);
    letter-spacing: -2px;
  }

  .primary-button {
    align-self: center;
  }

  .hero-photo {
    min-height: 0;
  }

  .hero-photo img {
    max-height: 520px;
    object-position: center 12%;
  }

  .section {
    padding: 62px 0;
  }

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

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.25);
    padding: 24px 10px;
  }

  .service-grid > div:last-child {
    border-bottom: 0;
  }

  .cta-inner,
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
