:root {
  color-scheme: light dark;
  --bg: #f1f5fa;
  --surface: #fbfdff;
  --surface-soft: #dfe9f6;
  --ink: #101d2f;
  --muted: #526277;
  --line: #c6d2df;
  --brand: #073382;
  --brand-strong: #052568;
  --brand-ink: #f7faff;
  --header-bg: rgb(241 245 250 / .96);
  --container: 1360px;
  --header-height: 78px;
  --pad: clamp(20px, 3.2vw, 52px);
  --section-space: clamp(96px, 10vw, 166px);
  --radius: 12px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
}

button,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Avenir Next", "Aptos Display", "Segoe UI", Arial, sans-serif;
  font-weight: 690;
  letter-spacing: -.045em;
  line-height: .98;
}

h2 {
  font-size: clamp(48px, 5.6vw, 86px);
}

h3 {
  font-size: clamp(27px, 2.4vw, 38px);
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--brand-ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.container,
.header-inner {
  width: min(calc(100% - (var(--pad) * 2)), var(--container));
  margin-inline: auto;
}

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

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 210px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand picture,
.brand img {
  display: block;
  width: 200px;
  height: auto;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  font-size: 14px;
  font-weight: 680;
  white-space: nowrap;
}

.nav-panel a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-panel > a:not(.nav-cta) {
  position: relative;
}

.nav-panel > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.nav-panel > a:not(.nav-cta):hover::after,
.nav-panel > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-panel .nav-cta {
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--brand-ink);
}

.menu-toggle {
  min-width: 78px;
  min-height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.menu-lines {
  width: 19px;
  display: grid;
  gap: 5px;
}

.menu-lines i {
  width: 100%;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform .25s var(--ease);
}

.menu-toggle[aria-expanded="true"] .menu-lines i:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  height: min(84svh, 840px);
}

.hero-frame {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
}

.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(44px, 5.2vw, 82px);
  background: var(--surface);
}

.eyebrow {
  margin-bottom: 33px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(58px, 5.6vw, 88px);
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 740;
  white-space: nowrap;
  transition: transform .2s var(--ease), background-color .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  background: var(--brand);
  color: var(--brand-ink);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--brand-strong);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.hero-media {
  min-width: 0;
  display: flex;
  margin: 0;
  background: var(--surface-soft);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.facts {
  padding-top: clamp(48px, 5vw, 74px);
}

.fact-row {
  display: grid;
  grid-template-columns: .7fr 1fr 1.15fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-row p {
  min-width: 0;
  margin: 0;
  padding: 30px clamp(20px, 3vw, 46px);
}

.fact-row p:first-child {
  padding-left: 0;
}

.fact-row p + p {
  border-left: 1px solid var(--line);
}

.fact-row strong,
.fact-row span {
  display: block;
}

.fact-row strong {
  margin-bottom: 5px;
  font-size: 20px;
}

.fact-row span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding-block: var(--section-space);
}

.section-heading {
  max-width: 930px;
  margin-bottom: clamp(64px, 8vw, 112px);
}

.section-heading h2 {
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.service-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-image {
  min-height: 690px;
  grid-row: 1 / 4;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-group {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  padding: clamp(30px, 4vw, 58px);
  border-radius: var(--radius);
}

.service-group h3 {
  margin-bottom: 0;
}

.service-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.service-group li {
  position: relative;
  padding-left: 14px;
}

.service-group li::before {
  content: "";
  position: absolute;
  top: .75em;
  left: 0;
  width: 6px;
  height: 1px;
  background: currentColor;
}

.service-home {
  border: 1px solid var(--line);
  background: var(--surface);
}

.service-business {
  background: var(--brand);
  color: var(--brand-ink);
}

.service-business ul {
  color: rgb(247 250 255 / .82);
}

.service-floor {
  background: var(--surface-soft);
}

.service-floor p {
  margin: 0;
  color: var(--muted);
}

.record {
  padding-top: 0;
}

.record-media {
  height: clamp(330px, 32vw, 438px);
  margin: 0 0 clamp(46px, 6vw, 82px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.record-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.record-copy {
  max-width: 950px;
}

.record-copy h2 {
  margin-bottom: 28px;
}

.record-copy p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.region {
  padding-top: 0;
}

.region-frame {
  position: relative;
  padding-bottom: 130px;
}

.region-media {
  height: clamp(460px, 44vw, 610px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.region-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.region-copy {
  position: absolute;
  right: clamp(24px, 6vw, 92px);
  bottom: 0;
  width: min(650px, calc(100% - 96px));
  padding: clamp(42px, 5vw, 70px);
  border-top: 6px solid var(--brand);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--surface);
}

.region-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 4.3vw, 67px);
}

.region-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.careers {
  padding-top: 0;
}

.careers-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 72px;
  padding: clamp(52px, 7vw, 96px);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.careers-layout h2 {
  max-width: 850px;
  margin-bottom: 24px;
}

.careers-layout p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact {
  padding-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
  padding-top: var(--section-space);
  border-top: 1px solid var(--line);
}

.contact-intro h2 {
  max-width: 780px;
  margin-bottom: 30px;
}

.contact-intro p {
  max-width: 620px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 19px;
}

.contact-details {
  margin: 0;
  font-style: normal;
}

.contact-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item > span,
.map-card > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 690;
}

.contact-item a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  overflow-wrap: anywhere;
}

.map-card {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  transition: transform .2s var(--ease), border-color .2s ease;
}

.map-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.map-card strong {
  font-size: 20px;
  line-height: 1.45;
}

.map-card em {
  color: var(--brand);
  font-size: 14px;
  font-style: normal;
  font-weight: 740;
  text-decoration: underline;
  text-underline-offset: .25em;
}

.site-footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-main {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) auto;
  gap: clamp(46px, 8vw, 120px);
  align-items: start;
}

.footer-brand picture,
.footer-brand img {
  display: block;
  width: 230px;
  height: auto;
}

.footer-brand p,
.footer-address p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-links a,
.footer-address a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 670;
}

.footer-address {
  text-align: right;
}

.footer-address p {
  margin-top: 0;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-meta p {
  margin-bottom: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d1521;
    --surface: #142031;
    --surface-soft: #1d2d43;
    --ink: #eef5ff;
    --muted: #afbed0;
    --line: #354961;
    --brand: #91b9f7;
    --brand-strong: #a8c9fb;
    --brand-ink: #10203a;
    --header-bg: rgb(13 21 33 / .96);
  }

  .service-business {
    background: #203b68;
    color: #f4f8ff;
  }

  .service-business ul {
    color: #cbd9ec;
  }
}

@media (max-width: 1050px) {
  .js .menu-toggle {
    display: inline-flex;
  }

  html:not(.js) .site-header {
    position: relative;
    height: auto;
  }

  html:not(.js) .header-inner {
    height: auto;
    flex-wrap: wrap;
    padding-bottom: 18px;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    right: var(--pad);
    width: min(420px, calc(100vw - (var(--pad) * 2)));
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--surface);
  }

  html:not(.js) .nav-panel {
    position: static;
    width: 100%;
    flex-basis: 100%;
  }

  .nav-panel a {
    min-height: 52px;
    padding-inline: 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-panel .nav-cta {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 0;
  }

  .js .nav-panel:not(.is-open) {
    display: none;
  }

  .service-composition {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }

  .service-group {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    max-height: none;
  }

  .hero-frame {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .hero-copy {
    min-height: 600px;
  }

  .hero-media {
    height: 440px;
  }

  .fact-row {
    grid-template-columns: 1fr;
  }

  .fact-row p,
  .fact-row p:first-child {
    padding: 24px 0;
  }

  .fact-row p + p {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .service-image {
    height: 560px;
    min-height: 0;
    grid-row: auto;
  }

  .service-group {
    min-height: 250px;
    grid-template-columns: .75fr 1fr;
  }

  .record-media {
    height: auto;
    aspect-ratio: 1920 / 618;
  }

  .region-frame {
    padding-bottom: 0;
  }

  .region-copy {
    position: static;
    width: calc(100% - 48px);
    margin: -70px auto 0;
  }

  .careers-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .careers-layout .button {
    justify-self: start;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 70px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
    --pad: 18px;
    --section-space: 96px;
  }

  body {
    font-size: 16px;
  }

  .header-inner {
    gap: 14px;
  }

  .brand {
    width: 180px;
    height: 70px;
  }

  .brand picture,
  .brand img {
    width: 174px;
  }

  .menu-toggle {
    min-width: 76px;
  }

  .hero-frame {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .hero-copy {
    min-height: 572px;
    padding: 58px var(--pad) 54px;
  }

  .eyebrow {
    margin-bottom: 28px;
  }

  h1 {
    max-width: 360px;
    margin-bottom: 25px;
    font-size: clamp(50px, 14.2vw, 61px);
  }

  .hero-lede {
    max-width: 370px;
    margin-bottom: 32px;
    font-size: 18px;
  }

  .hero-media {
    height: 330px;
  }

  .facts {
    padding-top: 46px;
  }

  .section-heading {
    margin-bottom: 58px;
  }

  .section-heading h2,
  .record-copy h2,
  .careers-layout h2,
  .contact-intro h2 {
    font-size: clamp(43px, 12.5vw, 56px);
  }

  .section-heading p,
  .record-copy p,
  .careers-layout p,
  .contact-intro p {
    font-size: 17px;
  }

  .service-image {
    height: 420px;
  }

  .service-group {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

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

  .record-media {
    min-height: 210px;
    aspect-ratio: auto;
  }

  .record-media img {
    object-position: center;
  }

  .region-media {
    height: 430px;
  }

  .region-copy {
    width: calc(100% - 24px);
    margin-top: -42px;
    padding: 38px 26px;
  }

  .region-copy h2 {
    font-size: clamp(42px, 11.5vw, 52px);
  }

  .careers-layout {
    width: 100%;
    padding: 64px var(--pad);
    border-radius: 0;
  }

  .contact-layout {
    gap: 62px;
  }

  .contact-intro,
  .contact-details {
    min-width: 0;
    width: 100%;
  }

  .contact-item a {
    font-size: clamp(19px, 5.2vw, 24px);
  }

  .map-card {
    min-height: 224px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .footer-brand picture,
  .footer-brand img {
    width: 210px;
  }

  .footer-address {
    text-align: left;
  }

  .footer-meta {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 410px) {
  .brand {
    width: 162px;
  }

  .brand picture,
  .brand img {
    width: 156px;
  }

  .menu-toggle {
    min-width: 72px;
    padding-inline: 10px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
