:root {
  --ink: #0b2c54;
  --muted: #0b2c54;
  --line: #d9d1c5;
  --paper: #f7f7f4;
  --accent: #0b2c54;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  background: var(--paper);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav a,
.site-header .contact-link {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:hover,
.site-header .contact-link:hover { text-decoration: underline; text-underline-offset: .35em; }
main > section { scroll-margin-top: 96px; }

.footer-copy { width: 100%; }

.footer-claim,
.footer-cities {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.footer-claim {
  font-size: .78rem;
  letter-spacing: .1em;
  line-height: 1.8;
}

.footer-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 12px;
  margin-top: 3px;
  font-size: .7rem;
  letter-spacing: .075em;
  line-height: 1.6;
}

.footer-city { white-space: nowrap; }
.city-separator { margin-left: .45em; }

.site-footer {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.site-footer nav { justify-content: center; }
.site-footer nav a { font-size: .92rem; }

.hero h1 { max-width: 23ch; }
.feature-section { background: #f2e7d3; }
.site-header, .split-section, .feature-section, .contact-section { border-color: rgb(11 44 84 / 20%); }
.eyebrow, .intro, .split-section > p, .feature-section > p:not(.eyebrow), .contact-section > p:not(.eyebrow), .contact-placeholder { color: var(--ink) !important; }
.legal-note { border-left-color: var(--ink); color: var(--ink); }

.acquisition-profile {
  max-width: 34rem;
  margin-top: 32px;
  border-top: 1px solid rgb(11 44 84 / 26%);
  border-bottom: 1px solid rgb(11 44 84 / 26%);
}

.acquisition-profile summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: .92rem;
  font-weight: 700;
  list-style: none;
}

.acquisition-profile summary::-webkit-details-marker { display: none; }
.acquisition-profile summary span { font-size: 1.2rem; font-weight: 400; }
.acquisition-profile[open] summary span { transform: rotate(45deg); }
.acquisition-profile__content { padding: 0 0 18px; }
.acquisition-profile__content p { margin: 0; color: var(--ink) !important; font-size: .94rem; }
.acquisition-profile__content h3 { margin: 24px 0 8px; color: var(--ink); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.acquisition-profile__content ul { margin: 0; padding-left: 1.15rem; color: var(--ink); font-size: .94rem; }
.acquisition-profile__content li + li { margin-top: 4px; }
.acquisition-profile__content .profile-note { margin-top: 24px; font-weight: 700; }

.contact-button {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 13px 16px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-button:hover { background: var(--ink); color: var(--paper); }

.no-break { white-space: nowrap; }
.sentence-start { white-space: nowrap; }

@media (min-width: 700px) {
  .split-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8%;
  }

  .split-section > p {
    max-width: 55ch;
    justify-self: end;
    text-align: justify;
    hyphens: none;
    text-wrap: pretty;
  }

  .footer-cities { flex-wrap: nowrap; justify-content: space-between; gap: 0; }

}

@media (max-width: 699px) {
  .site-header {
    min-height: 76px;
    padding-block: 0;
  }

  .primary-nav {
    gap: 16px;
    padding-top: 0;
  }

  .primary-nav a,
  .site-header .contact-link { font-size: .69rem; }
}

.mobile-wordmark,
.mobile-menu-toggle { display: none; }

.mobile-only-break { display: none; }

@media (max-width: 699px) {
  body { line-height: 1.62; }

  .site-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 76px;
    padding: 0 1cm;
    background: var(--paper);
  }

  .mobile-wordmark {
    display: inline-block;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    min-height: 44px;
    margin-right: -8px;
    padding: 8px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .mobile-menu-toggle i,
  .mobile-menu-toggle i::after {
    display: block;
    width: 13px;
    height: 1.5px;
    background: currentColor;
    content: "";
  }

  .mobile-menu-toggle i { position: relative; }
  .mobile-menu-toggle i::after { position: absolute; top: 5px; left: 0; }
  .mobile-menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(90deg); }

  .primary-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px 12px;
    border: 1px solid rgb(11 44 84 / 24%);
    background: rgb(248 247 242 / 98%);
    box-shadow: 0 17px 33px rgb(11 44 84 / 13%);
  }

  .site-header.is-mobile-menu-open .primary-nav { display: flex; }

  .primary-nav a,
  .site-header .contact-link {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 8px 6px;
    border-bottom: 1px solid rgb(11 44 84 / 18%);
    font-size: .89rem;
    letter-spacing: .04em;
    text-transform: none;
  }

  .primary-nav a:last-child { border-bottom: 0; }

  .section,
  .feature-section,
  .contact-section,
  .site-footer { width: 100%; }

  .section,
  .feature-section,
  .contact-section { padding: 68px 1cm; }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: calc(100svh - 76px);
    padding-top: 67px;
    padding-bottom: 31px;
  }

  .hero h1,
  .section h2,
  .acquisition-profile__content h3 {
    max-width: none;
    margin-top: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.38rem;
    font-weight: 400;
    letter-spacing: -.052em;
    line-height: 1.02;
    text-transform: none;
  }

  .hero h1 {
    width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .intro,
  .split-section > p,
  .feature-section > p:not(.eyebrow),
  .contact-section > p:not(.eyebrow),
  .acquisition-profile__content p,
  .acquisition-profile__content li,
  .plz-checker label,
  .plz-checker__result {
    max-width: none;
    color: var(--ink) !important;
    text-align: left;
    hyphens: auto;
    line-height: 1.62;
    text-wrap: pretty;
  }

  .intro {
    width: 100%;
    margin-top: 28px;
    font-size: 1rem;
  }

  .mobile-intro-line { display: block; white-space: nowrap; }

  .split-section > p { margin-top: 27px; }
  .mobile-paragraph-break { display: block; margin-top: 18px; }
  .mobile-only-break { display: initial; }
  .desktop-only-break { display: none; }

  .acquisition-profile summary,
  .acquisition-profile__content h3 { text-align: left; }

  .acquisition-profile__content h3 { margin: 28px 0 12px; }
  .acquisition-profile__content ul { padding-left: 17px; }
  .acquisition-profile__content li + li { margin-top: 7px; }

  .plz-checker { padding: 18px; }
  .plz-checker label { margin-bottom: 13px; }

  .contact-button {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    margin-top: 28px;
    padding-inline: 16px;
  }

  .site-footer { padding: 28px 1cm 43px; }
}
