:root {
  --navy-950: #071827;
  --navy-900: #0b2235;
  --navy-800: #11324a;
  --gold-500: #b78a31;
  --gold-400: #d4ad58;
  --gold-200: #e8d6aa;
  --stone-50: #f7f6f2;
  --stone-100: #efede6;
  --ink: #17212a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--stone-50);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.site-shell { min-height: 100vh; overflow: hidden; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--gold-400);
  color: var(--navy-950);
  padding: 10px 14px;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e9e5dc;
}

.header-inner {
  min-height: 86px;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 32px;
}

.brand { display: inline-flex; align-items: center; gap: 13px; width: fit-content; }
.brand-mark-wrap {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: white;
}
.brand-mark { width: 72px; height: auto; display: block; }
.brand-name {
  color: var(--navy-950);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
}
.brand-name span { display: block; color: var(--gold-500); }

.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav a {
  position: relative;
  padding: 33px 0 30px;
  color: #4f5961;
  font-size: 13px;
  font-weight: 700;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 22px;
  height: 2px;
  background: var(--gold-500);
  transition: right 180ms ease;
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { right: 0; }

.header-cta {
  justify-self: end;
  padding: 13px 17px;
  border: 1px solid var(--navy-900);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: background 180ms ease, color 180ms ease;
}
.header-cta:hover,
.header-cta:focus-visible { background: var(--navy-900); color: white; }

.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 85% 15%, rgba(183, 138, 49, 0.14), transparent 30%),
    linear-gradient(135deg, var(--navy-950) 0%, #0a2032 62%, #0d293e 100%);
  color: white;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to right, black, transparent 62%);
}

.hero-inner {
  min-height: 650px;
  padding: 96px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 90px;
  align-items: center;
}

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

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(49px, 5.6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.047em;
  line-height: 0.99;
}
.hero h1 span { color: var(--gold-400); }

.hero-intro {
  max-width: 650px;
  margin: 28px 0 0;
  color: #cbd4db;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 52px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-gold { background: var(--gold-400); color: var(--navy-950); }
.button-gold:hover,
.button-gold:focus-visible { background: #e3c06f; }
.button-ghost { border-color: rgba(255,255,255,0.35); color: white; }
.button-ghost:hover,
.button-ghost:focus-visible { border-color: white; background: rgba(255,255,255,0.08); }

.company-reference {
  margin: 26px 0 0;
  color: #8494a0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-card {
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, 0.975);
  color: var(--navy-950);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), #e2c77d);
}
.card-kicker {
  display: flex;
  justify-content: space-between;
  color: #68747d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.primary-metric { margin-top: 34px; }
.primary-metric strong {
  display: block;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 61px;
  font-weight: 400;
  letter-spacing: -0.05em;
}
.primary-metric span,
.secondary-metrics span {
  color: #6a747c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-rule { height: 1px; margin: 26px 0; background: #dedbd3; }
.secondary-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.secondary-metrics div + div { padding-left: 20px; border-left: 1px solid #dedbd3; }
.secondary-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}
.secondary-metrics span { display: block; line-height: 1.5; }
.metric-note {
  margin: 30px 0 0;
  padding-top: 18px;
  border-top: 1px solid #e7e4dc;
  color: #7a838a;
  font-size: 10px;
  line-height: 1.6;
}

.hero-disciplines {
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: #98a8b4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-disciplines span { position: relative; text-align: center; }
.hero-disciplines span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 22px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.16);
}

.metrics-strip { background: white; border-bottom: 1px solid #e6e2d9; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric {
  min-height: 168px;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #e6e2d9;
}
.metric:last-child { border-right: 1px solid #e6e2d9; }
.metric-index { margin-bottom: 14px; color: var(--gold-500); font-size: 10px; letter-spacing: 0.18em; }
.metric strong {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 37px;
  font-weight: 400;
}
.metric > span:last-child {
  margin-top: 8px;
  color: #777f84;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-section { padding: 120px 0; background: var(--stone-50); }
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: 100px;
  align-items: start;
}
.eyebrow-dark { color: var(--gold-500); }
.section-heading h2 {
  max-width: 480px;
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}
.lead-copy { margin: 0 0 36px; color: #56616a; font-size: 18px; line-height: 1.75; }
.featured-proof {
  padding: 32px;
  background: white;
  border: 1px solid #e4e0d6;
  box-shadow: 0 16px 40px rgba(17, 34, 49, 0.06);
}
.proof-status {
  color: var(--gold-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.featured-proof h3 {
  margin: 14px 0 12px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
}
.featured-proof p { margin: 0; color: #68727a; font-size: 14px; line-height: 1.7; }
.featured-proof dl {
  margin: 28px 0 0;
  padding-top: 23px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #e4e0d6;
}
.featured-proof dl div + div { padding-left: 20px; border-left: 1px solid #e4e0d6; }
.featured-proof dt {
  color: #879097;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.featured-proof dd {
  margin: 8px 0 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.35;
}

.project-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 610px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #e2ded4;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(17, 34, 49, 0.09);
}

.project-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  background: var(--gold-500);
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.project-number {
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.project-status {
  max-width: 210px;
  color: #737d84;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.project-location {
  margin: 42px 0 10px;
  color: #8b9296;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.project-type {
  min-height: 42px;
  margin: 14px 0 28px;
  color: var(--gold-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-transform: uppercase;
}

.project-detail {
  padding: 20px 0;
  border-top: 1px solid #e6e2d9;
}

.project-detail span,
.project-position span {
  color: #8c9498;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-detail p,
.project-position p {
  margin: 8px 0 0;
  color: #606b73;
  font-size: 13px;
  line-height: 1.65;
}

.project-position {
  margin-top: auto;
  padding: 20px;
  background: var(--stone-50);
}

.project-position p {
  color: var(--navy-900);
  font-weight: 700;
}

.capabilities-section {
  padding: 120px 0;
  background: var(--navy-950);
  color: white;
}

.section-intro-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  align-items: end;
  gap: 100px;
}

.section-intro-row h2,
.partners-title h2,
.contact-copy h2 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.section-intro-row > p {
  margin: 0;
  color: #aab6bf;
  font-size: 16px;
  line-height: 1.8;
}

.capability-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.capability-card {
  min-height: 330px;
  padding: 30px 28px;
  border-left: 1px solid rgba(255,255,255,0.16);
}

.capability-card:last-child {
  border-right: 1px solid rgba(255,255,255,0.16);
}

.capability-card > span {
  color: var(--gold-400);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.capability-card h3 {
  max-width: 180px;
  margin: 74px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.1;
}

.capability-card p {
  margin: 0;
  color: #91a0ac;
  font-size: 13px;
  line-height: 1.7;
}

.approach-section {
  padding: 125px 0;
  background: white;
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  align-items: start;
  gap: 110px;
}

.approach-heading {
  position: sticky;
  top: 36px;
}

.approach-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.6vw, 62px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.approach-heading > p:last-child {
  max-width: 520px;
  margin: 30px 0 0;
  color: #667078;
  font-size: 16px;
  line-height: 1.8;
}

.approach-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #dcd8cf;
}

.approach-list li {
  min-height: 172px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  border-bottom: 1px solid #dcd8cf;
}

.approach-index {
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.approach-list h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.approach-list p {
  max-width: 520px;
  margin: 0;
  color: #6d767d;
  font-size: 14px;
  line-height: 1.75;
}

.partners-section {
  padding: 120px 0;
  background: var(--stone-100);
}

.partners-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(560px, 1.15fr);
  gap: 100px;
  align-items: start;
}

.partners-title h2 {
  color: var(--navy-900);
  font-size: clamp(42px, 4.5vw, 61px);
}

.partner-groups {
  border-top: 1px solid #cdc8bd;
}

.partner-groups article {
  padding: 31px 0;
  display: grid;
  grid-template-columns: 58px minmax(150px, 0.65fr) 1fr;
  gap: 24px;
  border-bottom: 1px solid #cdc8bd;
}

.partner-groups span {
  color: var(--gold-500);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.partner-groups h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
}

.partner-groups p {
  margin: 0;
  color: #646e75;
  font-size: 13px;
  line-height: 1.72;
}

.contact-section {
  position: relative;
  isolation: isolate;
  padding: 120px 0;
  overflow: hidden;
  background: var(--navy-900);
  color: white;
}

.contact-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 96px 96px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 100px;
  align-items: center;
}

.contact-logo-card {
  min-height: 360px;
  display: grid;
  place-items: center;
  background: white;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.contact-logo-card img {
  width: min(82%, 380px);
  height: auto;
  display: block;
}

.contact-copy h2 {
  max-width: 650px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 36px;
  color: #b8c3cb;
  font-size: 17px;
  line-height: 1.75;
}

.site-footer { padding: 0; background: var(--navy-950); color: #93a2ae; }
.footer-main {
  min-height: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-main > div { display: flex; align-items: baseline; gap: 18px; }
.footer-main strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
}
.footer-main > div span {
  color: var(--gold-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-main nav { display: flex; gap: 28px; }
.footer-main nav a { color: #b1bbc3; font-size: 12px; font-weight: 700; }
.footer-main nav a:hover,
.footer-main nav a:focus-visible { color: white; }

.footer-lower {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #6f7f8a;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .primary-nav { display: none; }
  .hero-inner { min-height: auto; grid-template-columns: 1fr; gap: 55px; }
  .hero-card { max-width: 560px; }
  .proof-grid { grid-template-columns: 1fr; gap: 54px; }
  .project-grid { max-width: 760px; grid-template-columns: 1fr; }
  .project-card { min-height: auto; }
  .project-position { margin-top: 20px; }
  .section-intro-row,
  .approach-layout,
  .partners-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 56px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .capability-card:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.16); }
  .capability-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.16); }
  .approach-heading { position: static; }
  .partner-groups article { grid-template-columns: 58px minmax(170px, 0.65fr) 1fr; }
  .contact-logo-card { max-width: 540px; }
  .footer-main { padding: 36px 0; flex-direction: column; justify-content: center; }
}

@media (max-width: 720px) {
  .container,
  .header-inner { width: min(100% - 32px, 1180px); }
  .header-inner { min-height: 74px; }
  .brand-mark-wrap { width: 55px; height: 55px; }
  .brand-name { display: none; }
  .header-cta { padding: 11px 13px; font-size: 10px; }
  .hero-inner { padding: 72px 0 62px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-card { padding: 26px; }
  .primary-metric strong { font-size: 52px; }
  .hero-disciplines { padding: 20px 0; grid-template-columns: 1fr 1fr; gap: 16px 0; }
  .hero-disciplines span:nth-child(2)::after { display: none; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric {
    min-height: 140px;
    padding: 24px 20px;
    border-bottom: 1px solid #e6e2d9;
  }
  .metric:nth-child(2) { border-right: 1px solid #e6e2d9; }
  .metric strong { font-size: 30px; }
  .proof-section { padding: 84px 0; }
  .proof-grid { gap: 42px; }
  .lead-copy { font-size: 16px; }
  .featured-proof { padding: 24px; }
  .featured-proof dl { grid-template-columns: 1fr; gap: 18px; }
  .featured-proof dl div + div {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid #e4e0d6;
  }
  .project-grid { margin-top: 54px; }
  .project-card { padding: 24px; }
  .project-card::after { left: 24px; right: 24px; }
  .project-location { margin-top: 34px; }
  .capabilities-section,
  .approach-section,
  .partners-section,
  .contact-section { padding: 84px 0; }
  .section-intro-row { gap: 34px; }
  .section-intro-row > p,
  .approach-heading > p:last-child,
  .contact-copy > p:not(.eyebrow) { font-size: 15px; }
  .capability-grid { margin-top: 50px; grid-template-columns: 1fr; }
  .capability-card,
  .capability-card:nth-child(2) {
    min-height: 260px;
    border-right: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
  }
  .capability-card h3 { margin-top: 48px; }
  .approach-layout { gap: 48px; }
  .approach-list li { grid-template-columns: 54px 1fr; }
  .partners-layout { gap: 48px; }
  .partner-groups article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }
  .partner-groups p { grid-column: 2; }
  .contact-layout { gap: 48px; }
  .contact-logo-card { min-height: 280px; }
  .footer-main {
    min-height: 170px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer-main > div { flex-direction: column; align-items: center; gap: 8px; }
  .footer-main nav { flex-wrap: wrap; justify-content: center; gap: 18px 24px; }
  .footer-lower {
    min-height: 130px;
    padding: 28px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
