:root {
  --container: 1320px;
  --blue: #064f97;
  --blue-dark: #05396c;
  --ink: #102231;
  --muted: #536572;
  --paper: #f7fafc;
  --surface: #fff;
  --line: #cad7e1;
  --header: 72px;
  color-scheme: light dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
.skip {
  position: fixed;
  z-index: 20;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
}
.skip:focus {
  transform: none;
}
.site-header {
  height: var(--header);
  background: rgba(247, 250, 252, 0.94);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.nav-shell {
  width: min(var(--container), calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img {
  width: 207px;
  height: 44px;
}
.nav-toggle {
  display: none;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}
nav a {
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta,
.button {
  background: var(--blue);
  color: #fff;
  border: 2px solid var(--blue);
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 4px;
}
.nav-cta:hover,
.button:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}
.hero {
  width: min(var(--container), calc(100% - 40px));
  min-height: 84vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.hero-copy {
  padding: clamp(54px, 8vh, 92px) clamp(38px, 6vw, 86px) 54px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(52px, 5.6vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 720px;
}
.hero h1 span {
  display: block;
  white-space: nowrap;
}
.lead {
  font-size: clamp(18px, 1.5vw, 22px);
  max-width: 620px;
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.button {
  display: inline-block;
  padding: 15px 21px;
}
.text-link {
  font-weight: 800;
  text-underline-offset: 5px;
}
.quick-facts {
  display: flex;
  gap: 40px;
  margin: 52px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.quick-facts div {
  display: grid;
  gap: 3px;
}
.quick-facts dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.quick-facts dd {
  margin: 0;
  font-weight: 800;
}
.hero-media {
  min-height: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
}
.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 36px;
  align-items: end;
  margin-bottom: 54px;
}
.section h2 {
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0;
}
.section-head > p:last-child {
  color: var(--muted);
  margin: 0;
}
.service-ledger {
  border-top: 2px solid var(--ink);
}
.service-ledger article {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.service-ledger span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--blue);
  font-weight: 800;
}
.service-ledger h3 {
  font-size: 25px;
  margin: 0;
}
.service-ledger p {
  margin: 0;
  color: var(--muted);
}
.area {
  background: var(--blue);
  color: #fff;
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100% - var(--container)) / 2));
  padding-right: max(20px, calc((100% - var(--container)) / 2));
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}
.area .eyebrow {
  color: #d4e9ff;
}
.area-copy p:last-child {
  max-width: 430px;
}
.places {
  margin: 0;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}
.places span {
  color: #9ccaff;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.contact-copy p:last-child {
  font-size: 19px;
  max-width: 520px;
}
.contact-panel {
  border-top: 2px solid var(--ink);
}
.contact-panel a {
  display: grid;
  gap: 4px;
  padding: 20px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.contact-panel small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.contact-panel strong {
  font-size: 20px;
}
.contact-panel span {
  color: var(--blue);
  font-weight: 800;
}
footer {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 38px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
footer img {
  width: 176px;
  height: auto;
}
footer p {
  margin: 12px 0 0;
}
.demo-note {
  max-width: 530px;
  color: var(--muted);
  font-size: 13px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.no-js .reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #edf6fc;
    --muted: #adc0cc;
    --paper: #0c1821;
    --surface: #12232f;
    --line: #29404e;
  }
  .site-header {
    background: rgba(12, 24, 33, 0.94);
  }
  .brand img,
  footer img {
    background: #fff;
    padding: 5px;
  }
  .area {
    background: #083e70;
  }
  .nav-cta,
  .button {
    color: #fff;
  }
}
@media (max-width: 850px) {
  .site-header {
    height: 68px;
  }
  .nav-shell {
    width: min(100% - 28px, var(--container));
  }
  .brand img {
    width: 176px;
    height: auto;
  }
  .nav-toggle {
    display: block;
    background: none;
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 9px 12px;
    font-weight: 800;
  }
  .js nav {
    display: none;
  }
  .js nav.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
  }
  .no-js .nav-toggle {
    display: none;
  }
  .no-js nav {
    gap: 12px;
    font-size: 12px;
  }
  .no-js nav a:not(.nav-cta) {
    display: none;
  }
  .hero {
    width: 100%;
    min-height: calc(100svh - 68px);
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 54px 20px 38px;
    min-height: 58svh;
  }
  .hero h1 {
    font-size: clamp(42px, 12vw, 64px);
  }
  .hero h1 span {
    white-space: normal;
  }
  .hero-media {
    height: 42svh;
    min-height: 300px;
  }
  .quick-facts {
    margin-top: 36px;
  }
  .section {
    width: calc(100% - 40px);
    padding: 78px 0;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-ledger article {
    grid-template-columns: 92px 1fr;
    gap: 14px;
  }
  .service-ledger p {
    grid-column: 2;
  }
  .area {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  footer {
    flex-direction: column;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 420px) {
  .nav-cta {
    padding: 9px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .quick-facts {
    gap: 20px;
  }
  .service-ledger article {
    grid-template-columns: 1fr;
  }
  .service-ledger p {
    grid-column: auto;
  }
  .section h2 {
    font-size: 40px;
  }
  .places {
    font-size: 27px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
