:root {
  --navy: #071a33;
  --navy-deep: #041225;
  --cobalt: #1d4ed8;
  --cobalt-dark: #173fae;
  --ink: #10213b;
  --muted: #5d6a7d;
  --line: #d8dee8;
  --surface: #f5f7fb;
  --white: #ffffff;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --sans: Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
a:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 4px;
}
h1, h2, p, dl, dd, figure { margin-top: 0; }
.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.header-inner {
  width: min(100% - (var(--gutter) * 2), var(--container));
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-inline: auto;
}
.wordmark {
  width: fit-content;
  color: var(--cobalt);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
}
.site-nav a {
  padding-block: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--cobalt); }
.header-contact {
  justify-self: end;
  padding: 10px 16px;
  background: var(--cobalt);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}
.header-contact:hover { background: var(--cobalt-dark); }
section { scroll-margin-top: 76px; }

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) 0;
  background: var(--navy);
  color: var(--white);
}
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(4, 18, 37, 0.58);
  content: "";
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
}
.hero-copy { min-width: 0; }
.hero .eyebrow { color: #b9ccff; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--cobalt);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.35rem, 6vw, 5.75rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.hero-lead {
  margin-bottom: 30px;
  color: #dfe7f5;
  font-size: 1rem;
}
.hero-lead strong {
  color: var(--white);
  font-size: 1.08em;
  font-variant-numeric: tabular-nums;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(38px, 5vw, 58px);
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}
.button-primary { border-color: var(--cobalt); background: var(--cobalt); color: var(--white); }
.button-primary:hover { border-color: var(--cobalt-dark); background: var(--cobalt-dark); }
.button-secondary { background: rgba(4, 18, 37, 0.22); color: var(--white); }
.button-secondary:hover { background: var(--white); color: var(--navy); }
.hero a:focus-visible { outline-color: var(--white); }
.registration-summary {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 0.9fr;
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}
.registration-summary > div {
  min-width: 0;
  padding: 18px 20px 20px 0;
}
.registration-summary > div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}
.registration-summary dt {
  margin-bottom: 7px;
  color: #b9c7da;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.registration-summary dd {
  margin-bottom: 0;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  background: var(--navy);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% center;
}

.metrics {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.metric {
  min-width: 0;
  padding: 30px clamp(24px, 3vw, 44px);
}
.metric:first-child { padding-left: 0; }
.metric + .metric { border-left: 1px solid var(--line); }
.metric span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.metric strong {
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
.metric:first-child strong { color: var(--cobalt); }

.section { padding: clamp(76px, 8vw, 116px) 0; }
.profile-section { background: var(--surface); }
.section-heading { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-heading h2, .contact-intro h2 {
  max-width: 700px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.04;
}
.section-heading > p:last-child, .contact-intro > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}
.facts {
  margin-bottom: 0;
  border-top: 2px solid var(--ink);
  background: var(--white);
}
.facts > div {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 80px);
  padding: 23px clamp(20px, 3vw, 36px);
  border-bottom: 1px solid var(--line);
}
.facts dt {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.facts dd {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.representative-section { background: var(--cobalt); color: var(--white); }
.representative-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: end;
}
.representative-heading { margin-bottom: 0; }
.representative-heading .eyebrow { color: #dce5ff; }
.representative-heading h2 { color: var(--white); }
.representative-card {
  padding: clamp(28px, 4vw, 48px);
  background: var(--navy);
  border-top: 4px solid var(--white);
}
.representative-name {
  margin: 0 0 clamp(34px, 5vw, 58px);
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.representative-card > p:last-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.representative-card span {
  color: #b9c7da;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.representative-card strong { color: var(--white); }

.contact-section { background: var(--navy-deep); color: var(--white); }
.contact-section a:focus-visible { outline-color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(56px, 9vw, 128px);
}
.contact-intro .eyebrow { color: #9bb4ff; }
.contact-intro h2 { color: var(--white); }
.contact-intro > p:last-child { color: #b9c7da; }
.contact-details { border-top: 1px solid rgba(255, 255, 255, 0.55); }
.contact-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-item > span {
  color: #9bb4ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-item address, .contact-item a {
  color: var(--white);
  font-size: 1.02rem;
  font-style: normal;
  font-weight: 650;
  overflow-wrap: anywhere;
}
.contact-item a { text-decoration-color: #9bb4ff; text-underline-offset: 5px; }
.phone-links { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.contact-map {
  grid-column: 1 / -1;
  margin: clamp(22px, 4vw, 48px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  background: #dce3ea;
}
.contact-map iframe {
  width: 100%;
  height: clamp(320px, 40vw, 460px);
  display: block;
  border: 0;
}
.contact-map figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 20px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-map figcaption a {
  color: var(--cobalt);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer { border-top: 1px solid #25364f; background: var(--navy-deep); color: #aab7c9; }
.footer-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  font-size: 0.75rem;
}
.footer-inner p { margin-bottom: 0; }

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr; gap: 24px; }
  .site-nav { justify-self: end; }
  .header-contact { display: none; }
  .representative-grid, .contact-grid { grid-template-columns: 1fr; }
  .representative-grid, .contact-grid { gap: 44px; }
}

@media (max-width: 680px) {
  .hero { min-height: 780px; }
  .hero::after { background: rgba(4, 18, 37, 0.72); }
  .hero-visual img { object-position: 64% center; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric, .metric:first-child { padding: 21px 0; }
  .metric + .metric { border-top: 1px solid var(--line); border-left: 0; }
  .registration-summary { grid-template-columns: 1fr; }
  .registration-summary > div { padding: 16px 0; }
  .registration-summary > div + div { padding-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.34); border-left: 0; }
}

@media (max-width: 540px) {
  :root { --gutter: 18px; }
  .site-header { height: 64px; }
  .header-inner { gap: 12px; }
  .wordmark { font-size: 0.72rem; letter-spacing: 0.05em; }
  .site-nav { gap: clamp(9px, 3vw, 14px); }
  .site-nav a { font-size: 0.68rem; }
  section { scroll-margin-top: 64px; }
  .hero { min-height: 780px; padding: 58px 0; }
  .section { padding: 62px 0; }
  h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .facts > div, .contact-item { grid-template-columns: 1fr; gap: 8px; }
  .facts > div { padding: 20px 18px; }
  .representative-card > p:last-child { align-items: flex-start; flex-direction: column; gap: 6px; }
  .contact-item { gap: 7px; }
  .contact-map iframe { height: 330px; }
  .contact-map figcaption { align-items: flex-start; flex-direction: column; gap: 6px; padding: 15px 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 5px; padding: 22px 0; }
}

@media (max-width: 370px) {
  :root { --gutter: 16px; }
  .wordmark { max-width: 54px; line-height: 1.05; }
  .site-nav { gap: 8px; }
  .site-nav a { font-size: 0.65rem; }
  .hero { min-height: 790px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
