:root {
  --navy: #071d36;
  --navy-2: #0d2c4f;
  --blue: #1f5f92;
  --steel: #66778a;
  --ink: #17202a;
  --muted: #647184;
  --line: #d8dee7;
  --paper: #f7f8f9;
  --white: #ffffff;
  --gold: #b9975b;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 29, 54, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--navy);
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 30px);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy);
  min-width: 116px;
  text-align: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  padding: 148px clamp(22px, 6vw, 72px) 86px;
}

.hero-media,
.cta-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 29, 54, 0.92) 0%, rgba(7, 29, 54, 0.74) 44%, rgba(7, 29, 54, 0.38) 100%),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(770px, 100%);
}

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

.section-kicker.light {
  color: #d8bd7c;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7.4vw, 6.65rem);
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.3vw, 4.6rem);
}

h3 {
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.28;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(1.24rem, 2vw, 1.8rem);
  line-height: 1.35;
}

.hero-copy {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 138px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

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

.button.primary:hover,
.button.primary:focus-visible {
  background: #e7edf4;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button.outline {
  margin-top: 34px;
  color: var(--navy);
  border-color: var(--navy);
}

.button.outline:hover,
.button.outline:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.section {
  padding: clamp(74px, 9vw, 122px) clamp(22px, 6vw, 72px);
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  margin-bottom: 46px;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.section-head.split p,
.section-head.centered p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head.centered {
  max-width: 760px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
}

.card-index,
.strategy-list span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card p,
.text-panel p,
.portfolio-copy p,
.strategy-list p,
.cta-content p,
.site-footer p {
  color: var(--muted);
}

.about-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  background: var(--paper);
}

.about-band > * {
  margin: 0;
  max-width: none;
}

.image-panel {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(7, 29, 54, 0.03), rgba(7, 29, 54, 0.16)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.text-panel {
  max-width: 590px;
}

.lead {
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
}

.text-link::after {
  content: "->";
  color: var(--gold);
}

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

.principles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principles div {
  min-height: 154px;
  padding: 28px 20px;
  color: var(--navy);
  font-weight: 800;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.portfolio {
  background: var(--paper);
}

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

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.portfolio-image {
  aspect-ratio: 1.28;
  background-position: center;
  background-size: cover;
}

.portfolio-image.tech {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1100&q=80");
}

.portfolio-image.healthcare {
  background-image: url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1100&q=80");
}

.portfolio-image.services-img {
  background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1100&q=80");
}

.portfolio-copy {
  padding: 26px;
}

.portfolio-copy span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.portfolio-copy h3 {
  margin: 12px 0 10px;
}

.strategies {
  background: var(--navy);
  color: var(--white);
}

.strategies-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 40px;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) clamp(22px, 6vw, 72px) 52px;
}

.strategies h2,
.cta h2 {
  color: var(--white);
}

.strategies-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.strategy-list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.strategy-list article {
  min-height: 340px;
  padding: 34px 26px 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.strategy-list h3 {
  color: var(--white);
}

.strategy-list p {
  color: rgba(255, 255, 255, 0.72);
}

.cta {
  position: relative;
  min-height: 580px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-2);
  padding: clamp(72px, 9vw, 126px) clamp(22px, 6vw, 72px);
}

.cta-image {
  background:
    linear-gradient(90deg, rgba(7, 29, 54, 0.94) 0%, rgba(7, 29, 54, 0.82) 46%, rgba(7, 29, 54, 0.38) 100%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=80") center/cover;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

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

.button.secondary.light {
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 54px clamp(22px, 6vw, 72px) 30px;
  color: rgba(255, 255, 255, 0.82);
  background: #041528;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.footer-nav a:not(:last-child)::after {
  content: "\00a0\2022\00a0";
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
}

@media (max-width: 1040px) {
  .principles,
  .strategy-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .site-header {
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 22px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 28px rgba(7, 29, 54, 0.1);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 220ms ease,
      opacity 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero {
    min-height: 760px;
    padding-top: 118px;
  }

  .section-head.split,
  .about-band,
  .strategies-hero {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .portfolio-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 190px;
    line-height: 1.15;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero,
  .cta {
    min-height: 680px;
  }

  .principles,
  .strategy-list {
    grid-template-columns: 1fr;
  }

  .strategy-list article,
  .service-card {
    min-height: auto;
  }
}
