:root {
  --ink: #102233;
  --navy: #071b2d;
  --blue: #0f3d5c;
  --teal: #1a8a8f;
  --gold: #c7943f;
  --steel: #627184;
  --mist: #f3f7f8;
  --white: #ffffff;
  --line: #dce5e8;
  --shadow: 0 22px 60px rgba(7, 27, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(7, 27, 45, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 224px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 130px clamp(20px, 5vw, 72px) 52px;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 27, 45, 0.95) 0%, rgba(7, 27, 45, 0.72) 42%, rgba(7, 27, 45, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 27, 45, 0.45), rgba(7, 27, 45, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-actions {
  margin: 34px 0 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button-primary {
  color: var(--navy);
  background: var(--gold);
}

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

.hero-stats {
  margin: 0;
}

.hero-stats div {
  min-width: 178px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats dt {
  font-weight: 800;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: 92px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 760px;
  color: var(--steel);
  font-size: 18px;
}

.intro {
  background: var(--mist);
}

.intro-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.service-card,
.leader-card,
.career-panel,
.proof-item {
  border: 1px solid var(--line);
  background: var(--white);
}

.intro-grid article {
  padding: 28px;
}

.intro-grid p,
.service-card p,
.leader-card p,
.career-panel p,
.approach-content p,
.check-list {
  color: var(--steel);
}

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

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  min-height: 260px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 138, 143, 0.45);
  box-shadow: var(--shadow);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: 0 clamp(20px, 5vw, 72px) 92px;
  background: linear-gradient(180deg, var(--white), var(--mist));
}

.approach-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.approach-content {
  max-width: 620px;
}

.check-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 0 13px 34px;
  border-top: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 14px;
  background: var(--teal);
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  color: var(--white);
  background: var(--navy);
}

.proof-item {
  padding: 30px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  margin-bottom: 12px;
  font-size: 28px;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.72);
}

.company {
  background: var(--mist);
}

.leader-card {
  display: flex;
  align-items: center;
  gap: 26px;
  max-width: 760px;
  padding: 30px;
}

.leader-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-size: 42px;
  font-weight: 800;
}

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

.career-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(15, 61, 92, 0.96), rgba(26, 138, 143, 0.9)),
    var(--blue);
  color: var(--white);
}

.career-panel div {
  max-width: 760px;
}

.career-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.career-panel .eyebrow {
  color: #f0c778;
}

.contact {
  background: var(--mist);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-grid a,
.contact-grid span {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 1060px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

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

  .approach {
    grid-template-columns: 1fr;
    padding-top: 76px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .career-panel,
  .leader-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 12px;
    font-size: 13px;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero {
    min-height: 100vh;
    padding-top: 190px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 27, 45, 0.97), rgba(7, 27, 45, 0.76));
  }

  h1 {
    font-size: 42px;
  }

  .intro-grid,
  .service-grid,
  .proof,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .approach {
    padding-bottom: 70px;
  }

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