:root {
  --navy: #082653;
  --navy-deep: #05254a;
  --gold: #d49b2a;
  --ink: #132642;
  --pale: #edf5fa;
  --line: #dce7ef;
  --content: 940px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  padding: .65rem 1rem;
  color: #fff;
  background: var(--navy);
  transform: translateY(-200%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 10;
  height: 120px;
  background: rgba(255, 255, 255, .98);
}

.header-inner {
  width: min(var(--content), calc(100% - 56px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  color: var(--navy);
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.2px;
}

.brand-mark { width: 74px; height: auto; flex: 0 0 auto; object-fit: contain; }

.primary-nav { display: flex; align-items: stretch; gap: 41px; height: 100%; }

.primary-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 1px;
  color: #122542;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.active::after { transform: scaleX(1); }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 472px;
  overflow: hidden;
  background: linear-gradient(90deg, #f7fafc 0%, #eff6fb 46%, #dcebf5 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 48%, rgba(255,255,255,.96), rgba(255,255,255,.12) 47%, transparent 70%);
}

.hero-map {
  position: absolute;
  top: 0;
  right: max(calc((100vw - 1180px) / 2), -65px);
  width: 710px;
  height: 100%;
  opacity: .92;
}

.hero-map svg { width: 100%; height: 100%; }

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 56px));
  min-height: 472px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy { width: 445px; padding: 26px 0 12px; }

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 5.7vw, 61px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -1.8px;
}

.gold-rule { display: block; width: 52px; height: 2px; margin: 36px 0 25px; background: var(--gold); }

.hero p {
  width: 405px;
  max-width: 100%;
  margin: 0;
  font-size: 19px;
  line-height: 1.58;
  letter-spacing: -.2px;
}

.information { background: #fff; }

.info-row {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 166px minmax(0, 1fr);
  width: min(var(--content), calc(100% - 56px));
  margin: 0 auto;
  padding: 25px 0;
  align-items: center;
}

.icon-disc {
  width: 105px;
  height: 105px;
  margin-left: 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(145deg, #f3f8fb, #e5eef4);
}

.icon-disc svg {
  width: 61px;
  height: 61px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-copy {
  min-height: 87px;
  padding: 1px 0 0 36px;
  border-left: 2px solid #e7eff5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-copy h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.28;
  font-weight: 650;
  letter-spacing: -.35px;
}

.info-copy p { margin: 0; max-width: 710px; font-size: 15px; line-height: 1.62; }

.site-footer {
  position: relative;
  min-height: 197px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(104deg, #073765 0%, #063a6c 48%, #05264c 100%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 56px));
  min-height: 197px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.mail-disc {
  width: 94px;
  height: 94px;
  flex: 0 0 auto;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.mail-disc svg { width: 55px; height: 55px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.footer-copy {
  min-height: 100px;
  margin-left: 51px;
  padding: 14px 0 10px 40px;
  border-left: 1px solid rgba(255,255,255,.6);
}

.footer-copy h2 { margin: 0 0 6px; font-size: 21px; font-weight: 500; letter-spacing: -.25px; }
.footer-copy a { color: #f2ad2e; font-size: 17px; text-decoration: none; }
.footer-copy a:hover, .footer-copy a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

.network-lines { position: absolute; right: -10px; bottom: -8px; width: 440px; height: 200px; }
.network-lines svg { width: 100%; height: 100%; }

@media (min-width: 821px) {
  .info-row:nth-child(1) { height: 167px; padding-block: 20px; }
  .info-row:nth-child(2) { height: 141px; padding-block: 18px; }
  .info-row:nth-child(3) { height: 151px; padding-block: 20px; }
  .info-row:nth-child(4) { height: 121px; padding-block: 13px; }
  .info-row:nth-child(5) { height: 122px; padding-block: 14px; }

  .info-row:nth-child(2) .icon-disc,
  .info-row:nth-child(3) .icon-disc { width: 101px; height: 101px; }

  .info-row:nth-child(4) .icon-disc,
  .info-row:nth-child(5) .icon-disc { width: 94px; height: 94px; margin-left: 13px; }

  .info-row:nth-child(4) .icon-disc svg,
  .info-row:nth-child(5) .icon-disc svg { width: 55px; height: 55px; }
}

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (max-width: 820px) {
  .site-header { height: 92px; }
  .header-inner { width: min(100% - 36px, var(--content)); }
  .brand { gap: 10px; font-size: 17px; }
  .brand-mark { width: 56px; height: auto; }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 44px;
    padding: 10px 8px;
    border: 0;
    border-radius: 2px;
    place-content: center;
    gap: 5px;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) { display: block; width: 27px; height: 2px; background: currentColor; transition: transform 160ms ease, opacity 160ms ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

  .primary-nav {
    position: absolute;
    inset: 92px 0 auto;
    height: auto;
    padding: 9px 18px 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    box-shadow: 0 12px 22px rgba(8,38,83,.12);
  }

  .primary-nav.open { display: flex; }
  .primary-nav a { min-height: 45px; padding: 0 10px; justify-content: center; }
  .primary-nav a::after { left: calc(50% - 24px); right: calc(50% - 24px); bottom: 5px; }

  .hero, .hero-inner { min-height: 560px; }
  .hero-inner { width: min(100% - 40px, var(--content)); align-items: flex-start; }
  .hero-copy { width: 100%; padding-top: 58px; }
  .hero h1 { font-size: clamp(44px, 13vw, 58px); }
  .hero p { width: min(90%, 410px); font-size: 17px; }
  .hero-map { width: 600px; height: 390px; top: auto; right: -225px; bottom: -35px; opacity: .48; }
  .gold-rule { margin: 27px 0 21px; }

  .info-row {
    width: min(100% - 40px, var(--content));
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 17px;
    padding: 25px 0;
  }
  .icon-disc { width: 82px; height: 82px; margin: 0; }
  .icon-disc svg { width: 48px; height: 48px; }
  .info-copy { min-height: 82px; padding-left: 20px; }
  .info-copy h2 { font-size: 20px; }
  .info-copy p { font-size: 14px; }

  .site-footer, .footer-inner { min-height: 225px; }
  .footer-inner { width: min(100% - 40px, var(--content)); }
  .mail-disc { width: 78px; height: 78px; }
  .mail-disc svg { width: 46px; height: 46px; }
  .footer-copy { margin-left: 24px; padding-left: 25px; }
  .footer-copy h2 { font-size: 18px; }
  .footer-copy a { font-size: 14px; overflow-wrap: anywhere; }
  .network-lines { opacity: .45; }
}

@media (max-width: 520px) {
  .brand { font-size: 15px; }
  .hero, .hero-inner { min-height: 530px; }
  .hero-copy { padding-top: 48px; }
  .hero p { width: 100%; }

  .info-row { grid-template-columns: 1fr; gap: 14px; padding: 28px 4px; }
  .icon-disc { width: 72px; height: 72px; }
  .icon-disc svg { width: 42px; height: 42px; }
  .info-copy { min-height: auto; padding: 0; border-left: 0; }
  .info-copy h2 { margin-bottom: 7px; }
  .desktop-only { display: none; }

  .footer-inner { padding: 32px 0; align-items: flex-start; }
  .mail-disc { width: 66px; height: 66px; }
  .mail-disc svg { width: 39px; height: 39px; }
  .footer-copy { min-height: 80px; margin-left: 16px; padding: 4px 0 4px 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
