:root {
  color-scheme: light;
  --navy-950: #071625;
  --navy-900: #0b1f33;
  --navy-800: #15344f;
  --lake-500: #3b7697;
  --lake-100: #dceaf0;
  --orange-500: #f36d2a;
  --orange-400: #ff8a4c;
  --cream: #fff8ea;
  --paper: #f5f4ef;
  --white: #ffffff;
  --ink: #122335;
  --muted: #5d6b78;
  --line: #d9dee2;
  --shell: min(1180px, calc(100% - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--white);
  font-weight: 800;
  color: var(--navy-950);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 48px;
  height: 48px;
  color: var(--cream);
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.7vw, 36px);
}

nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange-400);
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.nav-contact {
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.nav-contact:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.96) 0%, rgba(7, 22, 37, 0.81) 36%, rgba(7, 22, 37, 0.18) 68%, rgba(7, 22, 37, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 22, 37, 0.78) 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--orange-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.eyebrow span {
  width: 36px;
  height: 2px;
  background: var(--orange-500);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.6;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--orange-500);
  color: var(--navy-950);
}

.button-primary:hover {
  background: var(--orange-400);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.art-note {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.credential-bar {
  color: var(--white);
  background: var(--navy-900);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.credential-grid > div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 28px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.credential-grid > div:not(:first-child) {
  padding-left: 28px;
}

.credential-grid > div:last-child {
  border-right: 0;
}

.credential-label {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential-grid strong {
  font-size: 1.02rem;
}

.section {
  padding-block: clamp(82px, 10vw, 138px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--navy-900);
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  line-height: 1.04;
}

.mission-copy {
  padding-top: 42px;
}

.mission-copy p {
  color: var(--muted);
}

.mission-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.43;
}

.service-grid {
  margin-top: clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.service-card:first-child {
  padding-left: 0;
}

.service-card:last-child {
  border-right: 0;
}

.service-number {
  color: var(--orange-500);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--navy-900);
  font-size: 1.24rem;
}

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

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 4%, rgba(59, 118, 151, 0.26), transparent 30%),
    var(--navy-950);
}

.section-kicker-light {
  color: var(--orange-400);
}

.section-dark h2 {
  color: var(--white);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading-row > p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.leader-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.045);
}

.leader-card:hover {
  border-color: rgba(243, 109, 42, 0.65);
}

.leader-initials {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--orange-400);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-style: italic;
}

.leader-role {
  margin: 46px 0 10px;
  color: var(--orange-400);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leader-card h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.1;
}

.leader-card p:not(.leader-role) {
  color: rgba(255, 255, 255, 0.67);
}

.leader-card a {
  display: inline-flex;
  gap: 8px;
  color: var(--white);
  font-weight: 750;
  text-decoration-color: var(--orange-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  overflow-wrap: anywhere;
}

.compliance {
  background: var(--white);
}

.compliance-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(55px, 8vw, 120px);
}

.compliance-wrap > * {
  min-width: 0;
}

.compliance-title-block h2 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
}

.compliance-title-block > p:last-child {
  max-width: 520px;
  margin-top: 28px;
  color: var(--muted);
}

.compliance-list {
  margin: 0;
}

.compliance-list > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.compliance-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.compliance-list dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compliance-list dd {
  margin: 0;
  color: var(--navy-900);
  font-weight: 700;
}

.contact-band {
  grid-column: 1 / -1;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(34px, 5vw, 58px);
  color: var(--white);
  background: var(--orange-500);
}

.contact-band .section-kicker {
  margin-bottom: 8px;
  color: var(--navy-950);
}

.contact-band h3 {
  max-width: 590px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 500;
  line-height: 1.12;
}

.button-light {
  min-width: 0;
  max-width: 100%;
  flex: 0 1 auto;
  overflow-wrap: anywhere;
  background: var(--white);
  color: var(--navy-900);
}

.button-light:hover {
  background: var(--cream);
}

footer {
  padding-block: 36px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--navy-950);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  display: grid;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand span,
footer p {
  font-size: 0.82rem;
}

footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand small,
  nav a:not(.nav-contact) {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 22, 37, 0.96) 0%, rgba(7, 22, 37, 0.78) 60%, rgba(7, 22, 37, 0.3) 100%),
      linear-gradient(0deg, rgba(7, 22, 37, 0.7) 0%, transparent 40%);
  }

  .credential-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .credential-grid > div,
  .credential-grid > div:not(:first-child) {
    min-height: 108px;
    padding: 22px;
  }

  .credential-grid > div:nth-child(2) {
    border-right: 0;
  }

  .credential-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section-grid,
  .section-heading-row,
  .compliance-wrap {
    grid-template-columns: 1fr;
  }

  .mission-copy {
    padding-top: 0;
  }

  .section-heading-row {
    gap: 28px;
  }

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

  .service-card,
  .service-card:first-child {
    min-height: auto;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .leader-card {
    min-height: 500px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .brand strong {
    max-width: 150px;
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .nav-contact {
    padding: 9px 13px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 730px;
    align-items: end;
  }

  .hero-image {
    object-position: 71% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(7, 22, 37, 0.98) 8%, rgba(7, 22, 37, 0.8) 58%, rgba(7, 22, 37, 0.28) 100%);
  }

  .hero-content {
    padding-top: 150px;
    padding-bottom: 62px;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 5.5rem);
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .art-note {
    display: none;
  }

  .credential-grid {
    grid-template-columns: 1fr;
  }

  .credential-grid > div,
  .credential-grid > div:not(:first-child) {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .credential-grid > div:last-child {
    border-bottom: 0;
  }

  .leader-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    min-height: 0;
  }

  .compliance-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-band {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  footer p {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
