:root {
  --navy: #101d35;
  --blue: #1570b8;
  --light-blue: #a9d9fb;
  --sky: #eaf4fa;
  --white: #fff;
  --ink: #172033;
  --muted: #576274;
  --concrete: #eef1f3;
  --line: #d8dee4;
  --error: #a12b2b;
  --success: #216e48;
  --shadow: 0 18px 50px rgba(16, 29, 53, 0.13);
  --radius: 4px;
  --frame: min(1320px, calc(100% - 48px));
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
button,
input,
textarea {
  font: inherit;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 0.65rem 1rem;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.skip-link:not(:focus) {
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  transform: none;
}
.frame {
  width: var(--frame);
  margin-inline: auto;
}
.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow--light {
  color: #a9d9fb;
}
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section--tight {
  padding: 2.5rem 0;
}
.section--sky {
  background: var(--sky);
}
.section--concrete {
  background: var(--concrete);
}
.section-title {
  max-width: 760px;
  margin: 0 0 2.2rem;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--navy);
}
.lead {
  max-width: 760px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: #344054;
}
.copy {
  max-width: 760px;
}
.copy p {
  margin: 0 0 1.2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.15rem;
  border: 2px solid var(--navy);
  border-radius: 2px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.16s,
    color 0.16s,
    transform 0.16s;
}
.button:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}
.button--ghost {
  background: transparent;
  color: var(--navy);
}
.button--ghost:hover {
  color: var(--white);
}
.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}
.button--light:hover {
  border-color: var(--sky);
  background: var(--sky);
  color: var(--navy);
}
.button--outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
  color: var(--white);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}
:focus-visible {
  outline: 3px solid #55b6ff;
  outline-offset: 3px;
}
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1.5rem;
}
.brand {
  display: block;
  width: 220px;
}
.brand img {
  width: 100%;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.6rem);
}
.nav a {
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--blue);
}
.nav .button {
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  color: var(--white);
}
.mobile-call {
  display: none;
}
.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--concrete);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1.1fr);
  min-height: 690px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 5.5rem)
    clamp(4rem, 8vw, 7rem) max(24px, calc((100vw - 1320px) / 2));
}
.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(3rem, 6.2vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.hero .lead {
  margin: 1.4rem 0 0;
  max-width: 620px;
}
.hero-media {
  position: relative;
  min-height: 520px;
  background: var(--navy);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 160px;
  aspect-ratio: 1;
  border: 28px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  transform: translate(-45%, 45%);
}
@media (min-width: 981px) and (max-height: 820px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(440px, 0.88fr);
    min-height: calc(100svh - 82px);
  }
  .hero-copy {
    padding-top: clamp(2.25rem, 5vh, 3rem);
    padding-right: clamp(2rem, 4vw, 4rem);
    padding-bottom: clamp(2.25rem, 5vh, 3rem);
  }
  .hero h1 {
    max-width: 680px;
    font-size: clamp(3rem, 4.75vw, 4.35rem);
    line-height: 0.94;
  }
  .hero .lead {
    max-width: 600px;
    margin-top: 1rem;
    font-size: 1.1rem;
    line-height: 1.45;
  }
  .hero .button-row {
    margin-top: 1.2rem;
  }
  .hero-media {
    min-height: 0;
  }
  .page-hero-grid {
    min-height: calc(100svh - 82px);
  }
  .page-hero__main {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
  .page-hero--designed h1 {
    font-size: clamp(3rem, 5.2vw, 4.65rem);
  }
}
.proof-strip {
  background: var(--navy);
  color: var(--white);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: proof-item;
}
.proof-item {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 188px;
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  text-align: center;
  counter-increment: proof-item;
}
.proof-item::before {
  content: "0" counter(proof-item);
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(169, 217, 251, 0.55);
  border-radius: 50%;
  color: #a9d9fb;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
.proof-item:last-child {
  border-right: 0;
}
.proof-item strong {
  display: block;
  max-width: 360px;
  font-size: 1.08rem;
  line-height: 1.3;
}
.proof-item span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #c8d4e4;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}
.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}
.cards:has(> .service-card) {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.service-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: span 4;
  min-height: 210px;
  overflow: hidden;
  padding: 1.65rem;
  background:
    linear-gradient(rgba(21, 112, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 112, 184, 0.055) 1px, transparent 1px),
    var(--white);
  background-size: 28px 28px;
  border: 1px solid rgba(16, 29, 53, 0.16);
  color: var(--navy);
}
.service-card:first-child {
  grid-column: span 7;
  min-height: 244px;
  background:
    linear-gradient(rgba(169, 217, 251, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 217, 251, 0.08) 1px, transparent 1px),
    var(--navy);
  background-size: 32px 32px;
  color: var(--white);
}
.service-card:nth-child(2) {
  grid-column: span 5;
  min-height: 244px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    var(--blue);
  background-size: 32px 32px;
  border-color: var(--blue);
  color: var(--white);
}
.service-card::after {
  content: attr(data-index) / "";
  position: absolute;
  z-index: -1;
  right: -0.06em;
  bottom: -0.31em;
  color: rgba(21, 112, 184, 0.085);
  font-size: clamp(7rem, 11vw, 10.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.09em;
}
.service-card:first-child::after,
.service-card:nth-child(2)::after {
  color: rgba(255, 255, 255, 0.085);
}
.service-card__top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.service-card .service-index {
  flex: 0 0 auto;
  border-color: currentColor;
  color: inherit;
}
.service-type {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.68;
}
.service-card:nth-child(2) .service-type {
  opacity: 1;
}
.service-card h3 {
  max-width: 520px;
  margin: 2.25rem 0 1rem;
  color: inherit;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.06;
}
.service-card__line {
  display: block;
  width: 54px;
  height: 4px;
  background: var(--blue);
}
.service-card:first-child .service-card__line,
.service-card:nth-child(2) .service-card__line {
  background: var(--light-blue);
}
.projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.project-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.project-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--concrete);
}
.project-card__body {
  padding: 1.25rem;
}
.project-card h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.15;
}
.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.project-card__link {
  display: block;
  margin-top: 0.8rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.split img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split img[src$="/5-1-1024x1024.jpg"] {
  object-fit: contain;
  object-position: center;
  background: var(--white);
}
.split__body {
  padding-block: 1rem;
}
.split__body h2 {
  margin: 0 0 1.2rem;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}
.services-proof {
  background: var(--white);
}
.services-proof-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  background: var(--navy);
}
.services-proof-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #5d5c50;
}
.services-proof-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(16, 29, 53, 0.02) 56%, rgba(16, 29, 53, 0.42));
}
.services-proof-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.78) contrast(1.08) brightness(0.96);
}
.services-proof-media figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--light-blue);
  background: rgba(16, 29, 53, 0.88);
  color: var(--white);
}
.services-proof-media figcaption span {
  color: var(--light-blue);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.services-proof-media figcaption strong {
  font-size: 0.96rem;
  line-height: 1.3;
}
.services-proof-copy {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem);
  color: var(--white);
}
.services-proof-copy::after {
  content: "2007";
  position: absolute;
  right: -0.05em;
  bottom: -0.24em;
  color: rgba(169, 217, 251, 0.055);
  font-size: clamp(7rem, 13vw, 12rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.09em;
  pointer-events: none;
}
.services-proof-copy > * {
  position: relative;
  z-index: 1;
}
.services-proof-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.services-proof-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.5rem 0 0;
  color: #d3ddea;
}
.services-proof-copy .button-row {
  margin-top: 2rem;
}
.services-proof-copy :focus-visible {
  outline-color: var(--white);
}
.closing-cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--navy);
}
.closing-cta__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.38fr);
  grid-template-areas:
    "copy action"
    "facts action";
  overflow: hidden;
  background: #172641;
  color: var(--white);
  box-shadow: 0 24px 70px rgba(6, 16, 31, 0.28);
}
.closing-cta__copy {
  grid-area: copy;
  padding: clamp(2.5rem, 5vw, 4.6rem) clamp(2rem, 5vw, 4.8rem) 2.3rem;
}
.closing-cta h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.058em;
}
.closing-cta__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: #cbd6e5;
}
.closing-cta__facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 clamp(2rem, 5vw, 4.8rem) clamp(2.5rem, 5vw, 4.2rem);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}
.closing-cta__facts li {
  display: grid;
  align-content: start;
  min-height: 96px;
  padding: 1rem 1rem 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.closing-cta__facts li:first-child {
  padding-left: 0;
  border-left: 0;
}
.closing-cta__facts span {
  color: var(--light-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.closing-cta__facts strong {
  margin-top: 0.45rem;
  font-size: 0.93rem;
  line-height: 1.3;
}
.closing-cta__action {
  position: relative;
  grid-area: action;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(2rem, 4vw, 3.4rem);
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
}
.closing-cta__action::before {
  content: attr(data-mark);
  position: absolute;
  right: -0.06em;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.09);
  font-size: clamp(8rem, 14vw, 14rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.1em;
}
.closing-cta__action > span {
  position: relative;
  z-index: 1;
}
.closing-cta__action small {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.closing-cta__action strong {
  display: block;
  max-width: 260px;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.closing-cta__arrow {
  display: grid;
  place-items: center;
  width: 68px;
  aspect-ratio: 1;
  margin-top: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-size: 1.55rem;
  transition: background 0.18s, color 0.18s;
}
.closing-cta__action:hover .closing-cta__arrow,
.closing-cta__action:focus-visible .closing-cta__arrow {
  background: var(--white);
  color: var(--blue);
}
.closing-cta--services {
  background: var(--sky);
}
.closing-cta--services .closing-cta__shell {
  background: var(--blue);
}
.closing-cta--services .closing-cta__action {
  background: var(--navy);
}
.closing-cta--portfolio,
.closing-cta--team {
  background: var(--concrete);
}
.closing-cta--portfolio .closing-cta__shell,
.closing-cta--team .closing-cta__shell {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(16, 29, 53, 0.12);
}
.closing-cta--portfolio .eyebrow,
.closing-cta--team .eyebrow {
  color: var(--blue);
}
.closing-cta--portfolio .closing-cta__copy > p:not(.eyebrow),
.closing-cta--team .closing-cta__copy > p:not(.eyebrow) {
  color: var(--muted);
}
.closing-cta--portfolio .closing-cta__facts,
.closing-cta--team .closing-cta__facts {
  border-color: var(--line);
}
.closing-cta--portfolio .closing-cta__facts li,
.closing-cta--team .closing-cta__facts li {
  border-color: var(--line);
}
.closing-cta--about .closing-cta__action {
  background: var(--light-blue);
  color: var(--navy);
}
.closing-cta--about .closing-cta__action small {
  color: rgba(16, 29, 53, 0.68);
}
.closing-cta--about .closing-cta__action::before {
  color: rgba(16, 29, 53, 0.08);
}
.closing-cta--about .closing-cta__arrow {
  border-color: rgba(16, 29, 53, 0.5);
}
.closing-cta--about .closing-cta__action:hover .closing-cta__arrow,
.closing-cta--about .closing-cta__action:focus-visible .closing-cta__arrow {
  background: var(--navy);
  color: var(--white);
}
.home-hero {
  position: relative;
  display: flex;
  min-height: min(760px, calc(100svh - 82px));
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.home-hero__image,
.home-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-hero__image {
  object-fit: cover;
  object-position: 58% center;
}
.home-hero__veil {
  background:
    linear-gradient(90deg, rgba(9, 20, 39, 0.96) 0%, rgba(9, 20, 39, 0.86) 42%, rgba(9, 20, 39, 0.28) 74%, rgba(9, 20, 39, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 20, 39, 0.58) 0%, transparent 52%);
}
.home-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 7vh, 5.5rem) 0 2.2rem;
}
.home-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.4rem, 6.1vw, 5.8rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
}
.home-hero h1 span {
  display: block;
  color: var(--light-blue);
}
.home-hero .lead {
  max-width: 620px;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}
.home-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin: auto 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}
.home-hero__facts div {
  padding: 0 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.home-hero__facts div:first-child {
  padding-left: 0;
  border-left: 0;
}
.home-hero__facts dt,
.about-hero__facts dt,
.project-hero dt {
  color: var(--light-blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.home-hero__facts dd,
.about-hero__facts dd,
.project-hero dd {
  margin: 0.2rem 0 0;
  font-weight: 700;
  line-height: 1.3;
}
.services-hero,
.portfolio-hero,
.about-hero,
.team-hero,
.project-hero {
  display: grid;
  min-height: min(660px, calc(100svh - 82px));
}
.services-hero {
  grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1.15fr);
  background: var(--navy);
}
.services-hero__media,
.portfolio-hero__media,
.about-hero__portrait,
.team-hero__media,
.project-hero__media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}
.services-hero__media img,
.portfolio-hero__media img,
.team-hero__media img,
.project-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-hero__media img {
  object-position: center top;
}
.team-hero__media img {
  object-position: center top;
}
.services-hero__caption,
.portfolio-hero__media figcaption,
.team-hero__media figcaption,
.about-hero__portrait figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 1rem 1.15rem;
  background: rgba(9, 20, 39, 0.88);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.services-hero__caption span,
.portfolio-hero__media figcaption span {
  display: block;
  color: var(--light-blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.services-hero__caption strong,
.portfolio-hero__media figcaption strong {
  display: block;
  margin-top: 0.1rem;
  line-height: 1.35;
}
.services-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) max(32px, calc((100vw - 1320px) / 2)) clamp(3rem, 6vw, 5rem) clamp(3rem, 7vw, 7rem);
  color: var(--white);
}
.services-hero h1,
.portfolio-hero h1,
.about-hero h1,
.team-hero h1,
.contact-hero h1,
.project-hero h1 {
  margin: 0;
  font-size: clamp(3.3rem, 5.5vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}
.services-hero .lead,
.portfolio-hero .lead,
.about-hero .lead,
.contact-hero .lead,
.project-hero .lead {
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.85);
}
.services-hero__note {
  margin: auto 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.services-hero__note span {
  margin: 0 0.45rem;
  color: var(--light-blue);
}
.services-proof-band {
  padding: 3.5rem 0;
  background: var(--navy);
  color: var(--white);
}
.services-proof-band__inner {
  display: grid;
  grid-template-columns: 0.5fr 1fr auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.services-proof-band__year {
  display: grid;
}
.services-proof-band__year strong {
  color: var(--light-blue);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.services-proof-band__year span {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.services-proof-band h2 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  line-height: 1;
  letter-spacing: -0.045em;
}
.services-proof-band p:not(.eyebrow) {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}
.services-proof-band .button-row {
  justify-content: flex-end;
  margin: 0;
}
.portfolio-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  background: var(--navy);
  color: var(--white);
}
.portfolio-hero__copy {
  display: flex;
  align-items: center;
  padding: clamp(4rem, 7vw, 7rem) clamp(2.5rem, 6vw, 6rem) clamp(4rem, 7vw, 7rem) max(32px, calc((100vw - 1320px) / 2));
}
.portfolio-hero__copy > div {
  width: 100%;
}
.portfolio-hero__link,
.team-hero__link,
.project-hero__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.25rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}
.portfolio-hero__link span:last-child,
.team-hero__link span:last-child,
.project-hero__link span:last-child {
  display: grid;
  width: 2.1rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.about-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  background: var(--navy);
  color: var(--white);
}
.about-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) clamp(3rem, 7vw, 7rem) clamp(3rem, 6vw, 5rem) max(32px, calc((100vw - 1320px) / 2));
}
.about-hero__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: auto 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}
.about-hero__portrait {
  background: var(--white);
}
.about-hero__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.about-hero__portrait figcaption,
.team-hero__media figcaption {
  font-weight: 700;
}
.company-story {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.company-story aside {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--blue);
  color: var(--white);
}
.company-story aside span {
  color: var(--light-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.company-story aside strong {
  display: block;
  margin-top: 1.2rem;
  font-size: clamp(2rem, 3.7vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.about-operating-system {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background:
    linear-gradient(rgba(21, 112, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 112, 184, 0.045) 1px, transparent 1px),
    var(--concrete);
  background-size: 40px 40px;
}
.about-operating-system::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -16vw;
  right: -13vw;
  width: min(44vw, 680px);
  aspect-ratio: 1;
  border: clamp(48px, 7vw, 100px) solid rgba(21, 112, 184, 0.08);
  border-radius: 50%;
}
.about-operating-system__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.about-operating-system__heading h2 {
  max-width: 860px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}
.about-operating-system__heading > p {
  max-width: 520px;
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 1.08rem;
}
.about-operating-system__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  border: 1px solid rgba(16, 29, 53, 0.18);
  box-shadow: var(--shadow);
}
.about-direction {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--navy);
  color: var(--white);
}
.about-direction::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 220px;
  aspect-ratio: 1;
  border: 34px solid rgba(169, 217, 251, 0.09);
  border-radius: 50%;
}
.about-direction__masthead {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--light-blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-direction__statement {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1.2rem;
  padding: clamp(1.7rem, 3vw, 2.35rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.about-direction__statement:last-child {
  padding-bottom: 0.4rem;
  border-bottom: 0;
}
.about-direction__index {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border: 1px solid rgba(169, 217, 251, 0.58);
  border-radius: 50%;
  color: var(--light-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.about-direction__statement h3 {
  margin: 0 0 0.55rem;
  color: var(--light-blue);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-direction__statement p {
  margin: 0;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.5;
}
.about-values {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--white);
}
.about-values header {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
}
.about-values h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
}
.about-values ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
}
.about-values li {
  display: grid;
  grid-template-columns: 44px minmax(130px, 0.55fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}
.about-values li > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.about-values h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
}
.about-values li p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}
.about-operating-system__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.7rem clamp(2rem, 4vw, 3.5rem);
  background: var(--blue);
  color: var(--white);
}
.about-operating-system__action p {
  margin: 0;
}
.about-operating-system__action strong,
.about-operating-system__action span {
  display: block;
}
.about-operating-system__action strong {
  font-size: 1.05rem;
}
.about-operating-system__action span {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}
.about-operating-system__action .button {
  flex: 0 0 auto;
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}
.about-operating-system__action .button:hover {
  border-color: var(--sky);
  background: var(--sky);
  color: var(--navy);
}
.team-hero {
  grid-template-columns: minmax(0, 0.85fr) minmax(540px, 1.15fr);
  background: var(--sky);
}
.team-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) clamp(3rem, 7vw, 7rem) clamp(3rem, 6vw, 5rem) max(32px, calc((100vw - 1320px) / 2));
}
.team-hero h1 {
  color: var(--navy);
}
.team-hero .lead {
  margin: 1.35rem 0 0;
}
.team-hero__link {
  border-top-color: rgba(16, 29, 53, 0.25);
  color: var(--navy);
}
.contact-hero {
  padding: 3rem 0;
  background: var(--navy);
  color: var(--white);
}
.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}
.contact-hero__copy ol {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.contact-hero__jump {
  display: none;
}
.contact-hero__copy li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 700;
}
.contact-hero__copy li span {
  color: var(--light-blue);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.contact-hero__form {
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}
.contact-hero__form h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.contact-hero__form > p:not(.eyebrow) {
  margin: 0.65rem 0 1.2rem;
  font-size: 0.85rem;
}
.contact-hero__form .field textarea {
  min-height: 105px;
}
.contact-hero__form .field input,
.contact-hero__form .field textarea {
  min-height: 46px;
  padding: 0.6rem 0.75rem;
}
.contact-hero__form .form-status {
  min-height: 1.25rem;
  margin: 0.55rem 0;
}
.office-panel {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}
.office-panel .contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  margin: 0;
}
.contact-office {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--blue);
  color: var(--white);
}
.contact-office__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact-office__intro h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.058em;
}
.contact-office__intro > p:not(.eyebrow) {
  max-width: 540px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}
.contact-office__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}
.contact-office__details div {
  min-height: 142px;
  padding: 1.35rem;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}
.contact-office__details dt {
  color: var(--light-blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-office__details dd {
  margin: 0.65rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}
.contact-office__details a {
  color: var(--white);
}
.project-hero {
  grid-template-columns: minmax(420px, 0.78fr) minmax(0, 1.22fr);
  background: var(--navy);
  color: var(--white);
}
.project-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 6vw, 6rem) clamp(2.5rem, 6vw, 6rem) clamp(3rem, 5vw, 4.5rem) max(32px, calc((100vw - 1320px) / 2));
}
.project-hero h1 {
  font-size: clamp(3rem, 4.7vw, 4.75rem);
}
.project-hero dl {
  display: grid;
  gap: 1.1rem;
  margin: 2rem 0 0;
}
.project-hero dl div {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}
.project-hero__media img {
  object-position: center;
}
.page-hero {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--sky);
}
.page-hero--legal {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
.page-hero--legal h1 {
  max-width: 850px;
  font-size: clamp(3rem, 5vw, 4.5rem);
}
.page-hero--designed {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.page-hero--designed::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 112, 184, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 112, 184, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, currentColor, transparent 68%);
}
.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.55fr);
  align-items: stretch;
  min-height: 540px;
}
.page-hero__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 6rem) clamp(2.5rem, 6vw, 6rem)
    clamp(4rem, 7vw, 6rem) 0;
}
.page-hero__main .lead {
  margin: 1.35rem 0 0;
  max-width: 690px;
}
.page-hero--designed h1 {
  max-width: 850px;
  font-size: clamp(3.35rem, 5.8vw, 5.35rem);
}
.page-hero-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(2.25rem, 4vw, 3.5rem);
  background: var(--blue);
  box-shadow: 30px 0 0 var(--blue);
  color: var(--white);
}
.page-hero-panel::after {
  content: "";
  position: absolute;
  top: -82px;
  right: -68px;
  width: 190px;
  aspect-ratio: 1;
  border: 28px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.page-hero-panel > * {
  position: relative;
  z-index: 1;
}
.page-hero-stat {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.page-hero-stat strong {
  font-size: clamp(3.9rem, 6vw, 5.75rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
}
.page-hero-stat span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-hero-details {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.page-hero-details div {
  display: grid;
  gap: 0.1rem;
}
.page-hero-details strong {
  font-size: 1rem;
  line-height: 1.3;
}
.page-hero-details span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}
.page-hero-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}
.page-hero-details + .page-hero-link {
  margin-top: 2.25rem;
}
.page-hero-link span:last-child {
  display: grid;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}
.page-hero-link:hover span:first-child,
.page-hero-link:focus-visible span:first-child {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.page-hero-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-hero-steps li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 700;
}
.page-hero-steps li span {
  color: var(--light-blue);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.page-hero-steps + .page-hero-link {
  margin-top: 2rem;
}
.page-hero--services {
  padding: clamp(3.5rem, 6vw, 5.75rem) 0;
}
.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.page-hero--services h1 {
  max-width: 820px;
  font-size: clamp(3.3rem, 5.4vw, 5.1rem);
}
.page-hero--services .lead {
  margin: 1.4rem 0 0;
  max-width: 680px;
}
.services-hero-action {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.25rem);
  background: var(--blue);
  color: var(--white);
}
.services-hero-action::after {
  content: "";
  position: absolute;
  top: -88px;
  right: -88px;
  width: 190px;
  aspect-ratio: 1;
  border: 30px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.services-hero-action > * {
  position: relative;
  z-index: 1;
}
.services-hero-action h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.045em;
}
.services-hero-action p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.92);
}
.services-hero-button {
  justify-content: space-between;
  width: 100%;
  margin-top: 1.6rem;
  gap: 1.5rem;
}
.services-hero-action :focus-visible {
  outline-color: var(--white);
}
.page-hero--dark {
  background: var(--navy);
  color: var(--white);
}
.page-hero--dark::before {
  background-image:
    linear-gradient(rgba(169, 217, 251, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 217, 251, 0.055) 1px, transparent 1px);
}
.page-hero--dark h1 {
  color: var(--white);
}
.page-hero--dark .lead {
  color: #d3ddea;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.3rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.page-hero--dark .breadcrumbs {
  color: #c5d2e3;
}
.breadcrumbs a {
  font-weight: 700;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.gallery figure {
  grid-column: span 4;
  margin: 0;
}
.gallery figure:first-child {
  grid-column: span 8;
  grid-row: span 2;
}
.gallery--8 figure:nth-last-child(-n + 2) {
  grid-column: span 6;
}
.gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.project-facts {
  gap: 1.35rem;
}
.project-facts div {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.project-facts span {
  display: block;
  font-size: 0.78rem;
  color: #a9d9fb;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.project-facts strong {
  font-size: 1.05rem;
  line-height: 1.4;
}
.project-facts .page-hero-link {
  margin-top: 0.4rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
}
.team-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center top;
  background: #15171b;
}
.team-card__body {
  padding: 1.3rem;
}
.team-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
}
.team-card .role {
  margin: 0.15rem 0 0.9rem;
  color: var(--blue);
  font-weight: 700;
}
.team-card dl {
  margin: 0;
  font-size: 0.86rem;
}
.team-card dt {
  float: left;
  clear: left;
  margin-right: 0.35rem;
  font-weight: 700;
}
.team-card dd {
  margin: 0 0 0.25rem;
  overflow-wrap: anywhere;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.contact-list {
  padding: 0;
  list-style: none;
}
.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list strong {
  display: block;
  color: var(--navy);
}
.form {
  padding: clamp(1.4rem, 4vw, 3rem);
  background: var(--concrete);
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.field--full {
  grid-column: 1/-1;
}
.field label {
  color: var(--navy);
  font-weight: 700;
}
.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #9aa5b4;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}
.field textarea {
  min-height: 170px;
  resize: vertical;
}
.field small {
  color: var(--muted);
}
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}
.form-status {
  min-height: 1.7rem;
  margin: 0.9rem 0;
  color: var(--muted);
}
.form-status[data-error="true"] {
  color: var(--error);
}
.legal {
  max-width: 850px;
}
.legal h2 {
  margin: 2.5rem 0 0.7rem;
  color: var(--navy);
  font-size: 1.65rem;
}
.legal h3 {
  color: var(--navy);
}
.legal li {
  margin-bottom: 0.55rem;
}
.notice {
  padding: 1rem 1.2rem;
  border-left: 5px solid var(--blue);
  background: var(--sky);
}
.comparison-hero {
  padding: 4rem 0;
  background: var(--navy);
  color: var(--white);
}
.comparison-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.comparison-hero p {
  max-width: 760px;
  color: #d3ddea;
}
.comparison-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.comparison-shot {
  background: var(--concrete);
  border: 1px solid var(--line);
}
.comparison-shot header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.comparison-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top;
}
.change-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.change-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: var(--white);
}
.change-card h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
}
.change-card p {
  margin: 0;
  color: var(--muted);
}
.table-wrap {
  overflow: auto;
}
.route-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.route-table th,
.route-table td {
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.route-table th {
  background: var(--navy);
  color: var(--white);
}
.status-pass {
  color: var(--success);
  font-weight: 700;
}
.site-footer {
  padding: 4rem 0 1.5rem;
  background: #0b162a;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 3rem;
}
.footer-logo {
  width: 240px;
  height: auto;
  margin-bottom: 1.2rem;
}
.footer-copy {
  max-width: 460px;
  color: #c7d2e1;
}
.footer-title {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}
.footer-links {
  display: grid;
  gap: 0.5rem;
}
.footer-links a {
  color: #dce5f0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  color: #b7c5d8;
}
.footer-bottom nav {
  display: flex;
  gap: 1rem;
}
.empty-state {
  min-height: 55vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.empty-state h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  color: var(--navy);
  margin: 0;
}
@media (max-width: 980px) {
  :root {
    --frame: min(100% - 40px, 900px);
  }
  .menu-button {
    display: block;
  }
  .nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 1rem 20px 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav[data-open] {
    display: grid;
  }
  .nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
  }
  .nav .mobile-call {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 4.5rem max(20px, calc((100vw - 900px) / 2));
    order: 1;
  }
  .hero-media {
    order: 2;
    min-height: auto;
    aspect-ratio: 4/3;
  }
  .hero-media:after {
    width: 100px;
    border-width: 18px;
  }
  .home-hero {
    min-height: calc(100svh - 82px);
  }
  .home-hero__veil {
    background:
      linear-gradient(90deg, rgba(9, 20, 39, 0.94) 0%, rgba(9, 20, 39, 0.76) 62%, rgba(9, 20, 39, 0.28) 100%),
      linear-gradient(0deg, rgba(9, 20, 39, 0.64) 0%, transparent 58%);
  }
  .services-hero,
  .portfolio-hero,
  .about-hero,
  .team-hero,
  .project-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .services-hero__media,
  .portfolio-hero__media,
  .about-hero__portrait,
  .team-hero__media,
  .project-hero__media {
    min-height: 420px;
  }
  .services-hero__media {
    min-height: 360px;
  }
  .services-hero__copy,
  .portfolio-hero__copy,
  .about-hero__copy,
  .team-hero__copy,
  .project-hero__copy {
    padding: 4rem max(20px, calc((100vw - 900px) / 2));
  }
  .services-hero__note,
  .about-hero__facts {
    margin-top: 2.5rem;
  }
  .services-proof-band__inner {
    grid-template-columns: 0.55fr 1fr;
  }
  .services-proof-band .button-row {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .company-story,
  .contact-hero__grid,
  .office-panel,
  .contact-office__grid {
    grid-template-columns: 1fr;
  }
  .about-operating-system__heading,
  .about-operating-system__layout {
    grid-template-columns: 1fr;
  }
  .about-operating-system__heading {
    gap: 1.5rem;
  }
  .about-operating-system__heading > p {
    max-width: 680px;
  }
  .contact-hero__copy {
    max-width: 680px;
  }
  .contact-hero__form {
    max-width: 760px;
  }
  .page-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-hero__main {
    padding: 4.5rem 0 3.5rem;
  }
  .page-hero-panel {
    min-height: 360px;
    margin-bottom: 2rem;
    box-shadow: 20px 0 0 var(--blue), -20px 0 0 var(--blue);
  }
  .page-hero-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards,
  .projects,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards:has(> .service-card) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards:has(> .service-card) .service-card {
    grid-column: auto;
  }
  .cards:has(> .service-card) .service-card:first-child {
    grid-column: 1 / -1;
  }
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .services-proof-grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  }
  .services-proof-copy {
    padding: 3rem;
  }
  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .services-hero-action {
    max-width: 620px;
  }
  .gallery figure,
  .gallery figure:first-child {
    grid-column: span 6;
    grid-row: auto;
  }
  .gallery--8 figure:nth-last-child(-n + 2) {
    grid-column: span 6;
  }
  .gallery--9 figure:last-child {
    grid-column: 1 / -1;
  }
  .closing-cta__shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "facts"
      "action";
  }
  .closing-cta__action {
    flex-direction: row;
    align-items: flex-end;
    min-height: 230px;
  }
  .closing-cta__arrow {
    flex: 0 0 auto;
    margin-top: 0;
  }
  .contact-office__intro {
    max-width: 720px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  :root {
    --frame: calc(100% - 40px);
  }
  body {
    font-size: 17px;
  }
  .site-header .brand {
    width: 185px;
  }
  .header-inner {
    min-height: 72px;
  }
  .nav {
    top: 72px;
  }
  .hero-copy {
    padding: 4rem 20px;
  }
  .home-hero {
    min-height: calc(100svh - 72px);
  }
  .home-hero__image {
    object-position: 64% center;
  }
  .home-hero__veil {
    background:
      linear-gradient(90deg, rgba(9, 20, 39, 0.95) 0%, rgba(9, 20, 39, 0.76) 74%, rgba(9, 20, 39, 0.36) 100%),
      linear-gradient(0deg, rgba(9, 20, 39, 0.72) 0%, transparent 62%);
  }
  .home-hero__content {
    padding: 2.7rem 0 1.4rem;
  }
  .home-hero h1 {
    max-width: 350px;
    font-size: clamp(2.85rem, 13.2vw, 4rem);
  }
  .home-hero .lead {
    max-width: 340px;
    font-size: 1.05rem;
  }
  .home-hero__facts {
    gap: 0;
    padding-top: 1rem;
  }
  .home-hero__facts div {
    padding: 0 0.55rem;
  }
  .home-hero__facts dt {
    font-size: 0.58rem;
  }
  .home-hero__facts dd {
    font-size: 0.75rem;
  }
  .services-hero__media,
  .portfolio-hero__media,
  .about-hero__portrait,
  .team-hero__media,
  .project-hero__media {
    min-height: 260px;
  }
  .services-hero__media {
    display: grid;
    grid-template-rows: 220px auto;
    min-height: 292px;
    background: var(--navy);
  }
  .services-hero__media img {
    position: relative;
    inset: auto;
    grid-row: 1;
    height: 220px;
  }
  .services-hero__caption {
    position: relative;
    inset: auto;
    grid-row: 2;
    margin: 0;
    padding: 1rem 20px;
  }
  .services-hero__copy,
  .portfolio-hero__copy,
  .about-hero__copy,
  .team-hero__copy,
  .project-hero__copy {
    padding: 2.35rem 20px;
  }
  .services-hero h1,
  .portfolio-hero h1,
  .about-hero h1,
  .team-hero h1,
  .contact-hero h1,
  .project-hero h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.35rem);
  }
  .services-hero .lead,
  .portfolio-hero .lead,
  .about-hero .lead,
  .team-hero .lead,
  .contact-hero .lead {
    margin-top: 1rem;
    font-size: 1.05rem;
  }
  .services-hero__note,
  .about-hero__facts {
    margin-top: 2rem;
  }
  .services-hero__caption,
  .portfolio-hero__media figcaption,
  .team-hero__media figcaption,
  .about-hero__portrait figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }
  .services-proof-band {
    padding: 3rem 0;
  }
  .services-proof-band__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .services-proof-band .button-row {
    grid-column: auto;
  }
  .about-hero__facts {
    gap: 0.8rem;
  }
  .company-story {
    gap: 2.5rem;
  }
  .about-operating-system {
    padding: 4.25rem 0;
    background-size: 32px 32px;
  }
  .about-operating-system::before {
    top: -120px;
    right: -140px;
    width: 360px;
    border-width: 50px;
  }
  .about-operating-system__heading {
    margin-bottom: 2.4rem;
  }
  .about-operating-system__heading h2 {
    font-size: clamp(2.6rem, 12vw, 3.75rem);
  }
  .about-direction,
  .about-values {
    padding: 1.6rem;
  }
  .about-direction__masthead {
    display: grid;
    gap: 0.35rem;
  }
  .about-direction__statement {
    grid-template-columns: 42px 1fr;
    gap: 0.9rem;
    padding: 1.55rem 0;
  }
  .about-direction__index {
    width: 38px;
  }
  .about-values header {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding-bottom: 1.6rem;
  }
  .about-values li {
    grid-template-columns: 34px 1fr;
    gap: 0.15rem 0.8rem;
    padding: 1.15rem 0;
  }
  .about-values h4,
  .about-values li p {
    grid-column: 2;
  }
  .about-values h4 {
    grid-row: 1;
  }
  .about-values li p {
    grid-row: 2;
  }
  .about-operating-system__action {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.6rem;
  }
  .contact-hero {
    padding: 2.75rem 0;
  }
  .contact-hero__grid {
    gap: 2.5rem;
  }
  .contact-hero__jump {
    display: inline-flex;
    margin-top: 1.4rem;
  }
  .contact-hero__form {
    padding: 1.4rem;
  }
  .contact-hero__form .form-grid,
  .office-panel .contact-list {
    grid-template-columns: 1fr;
  }
  .contact-hero__form .field--full {
    grid-column: auto;
  }
  .contact-office__details {
    grid-template-columns: 1fr;
  }
  .contact-office__details div {
    min-height: auto;
  }
  .closing-cta {
    padding: 2.25rem 0;
  }
  .closing-cta__copy {
    padding: 2.2rem 1.4rem 1.5rem;
  }
  .closing-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }
  .closing-cta__facts {
    margin: 0 1.4rem 2rem;
  }
  .closing-cta__facts li {
    min-height: 88px;
    padding-inline: 0.7rem;
  }
  .closing-cta__facts li:first-child {
    padding-left: 0;
  }
  .closing-cta__facts strong {
    font-size: 0.8rem;
  }
  .closing-cta__action {
    min-height: 190px;
    padding: 1.5rem;
  }
  .closing-cta__arrow {
    width: 56px;
  }
  .project-hero dl {
    margin-top: 1.4rem;
  }
  .page-hero--services {
    padding: 3.5rem 0;
  }
  .page-hero__main {
    padding: 2.5rem 0 1.75rem;
  }
  .page-hero--designed h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.45rem);
  }
  .page-hero__main .lead {
    margin-top: 0.75rem;
    font-size: 1.08rem;
  }
  .page-hero-panel {
    min-height: 300px;
    margin-bottom: 1.25rem;
    padding: 1.4rem;
  }
  .page-hero-panel::after {
    top: -74px;
    right: -78px;
    width: 170px;
  }
  .page-hero-stat strong {
    font-size: 4rem;
  }
  .page-hero-stat {
    padding-bottom: 1.2rem;
  }
  .page-hero-details {
    gap: 0.8rem;
    margin-top: 1rem;
  }
  .page-hero-details + .page-hero-link {
    margin-top: 1.4rem;
  }
  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }
  .services-hero-grid {
    gap: 2rem;
  }
  .services-hero-action {
    padding: 1.7rem;
  }
  .services-proof-grid {
    grid-template-columns: 1fr;
  }
  .services-proof-media img {
    aspect-ratio: 3/4;
    object-position: center;
  }
  .services-proof-copy {
    padding: 2.4rem 1.7rem 2.8rem;
  }
  .services-proof-copy h2 {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }
  .services-proof-media figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    padding: 1.1rem 20px;
  }
  .proof-item:last-child {
    border-bottom: 0;
  }
  .cards,
  .projects,
  .team-grid,
  .comparison-pair,
  .change-grid {
    grid-template-columns: 1fr;
  }
  .cards:has(> .service-card) {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 4rem 0;
  }
  .service-card {
    min-height: auto;
  }
  .cards:has(> .service-card) .service-card:first-child {
    grid-column: auto;
  }
  .service-card,
  .service-card:first-child,
  .service-card:nth-child(2) {
    min-height: 196px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery figure,
  .gallery figure:first-child {
    grid-column: auto;
  }
  .gallery--8 figure:nth-last-child(-n + 2),
  .gallery--9 figure:last-child {
    grid-column: auto;
  }
  .gallery img {
    min-height: auto;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field--full {
    grid-column: auto;
  }
  .comparison-shot img {
    height: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-bottom nav {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button,
  .project-card,
  .closing-cta__arrow {
    transition: none;
  }
}
@media print {
  .site-header,
  .site-footer,
  .button-row,
  .closing-cta {
    display: none;
  }
  .section {
    padding: 1.5rem 0;
  }
  .service-card:first-child,
  .service-card:nth-child(2) {
    background: var(--white);
    color: var(--navy);
  }
  .service-card:first-child .service-card__line,
  .service-card:nth-child(2) .service-card__line {
    background: var(--blue);
  }
}
.project-card img {
  height: 320px;
}
@media (max-width: 640px) {
  .project-card img {
    height: 280px;
  }
}

/* Editorial reset: let verified work and people lead; keep UI chrome quiet. */
.site-header {
  position: relative;
}
.home-hero__veil {
  background: rgba(9, 20, 39, 0.64);
}

.services-index-section {
  background: var(--white);
}
.services-index-section > .frame > .section-title {
  max-width: 900px;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
}
.services-index-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.services-index-heading .section-title {
  margin-bottom: 0;
}
.services-index-heading > p {
  max-width: 540px;
  margin: 0 0 0.25rem;
  color: var(--muted);
}
.service-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}
.service-card,
.service-card:first-child,
.service-card:nth-child(2) {
  position: static;
  isolation: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  grid-column: auto;
  gap: 2.3rem;
  align-items: stretch;
  min-height: clamp(190px, 16vw, 240px);
  padding: clamp(1.4rem, 2.2vw, 2rem);
  overflow: visible;
  border: 0;
  background: var(--white);
  color: var(--navy);
}
.service-card::after,
.service-card__top,
.service-card__line,
.service-type {
  display: none;
}
.service-card .service-index,
.service-card:first-child .service-index,
.service-card:nth-child(2) .service-index {
  position: static;
  align-self: start;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  padding: 0.35rem;
  border: 0;
  border-radius: 0;
  background: var(--concrete);
  color: var(--navy);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}
.service-card .service-index::after {
  display: none;
}
.service-card h3,
.service-card:first-child h3,
.service-card:nth-child(2) h3 {
  align-self: end;
  max-width: none;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.project-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.project-card:hover {
  box-shadow: none;
}
.project-card img,
.project-card img:last-child {
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
}
.project-card img[src$="/windy-hill-athletic-center-card-v2.jpg"] {
  filter: brightness(1.06) contrast(1.12) saturate(1.2);
}
.project-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.2rem 1rem;
  padding: 1rem 0 0;
  border-top: 3px solid var(--navy);
}
.project-card h3 {
  margin: 0;
}
.project-card p {
  grid-column: 1;
}
.project-card__link {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  margin: 0;
  white-space: nowrap;
}
.projects:has(.project-card:nth-child(4)) {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem) 1.4rem;
}
.projects:has(.project-card:nth-child(4)) .project-card {
  grid-column: span 4;
}
.projects:has(.project-card:nth-child(4)) .project-card:nth-child(5n + 1) {
  grid-column: span 7;
}
.projects:has(.project-card:nth-child(4)) .project-card:nth-child(5n + 2) {
  grid-column: span 5;
}
.projects:has(.project-card:nth-child(4)) .project-card:nth-child(5n + 1) img,
.projects:has(.project-card:nth-child(4)) .project-card:nth-child(5n + 2) img {
  aspect-ratio: 16 / 10;
}

.company-story aside {
  padding: 1rem 0 1rem clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid var(--blue);
  background: transparent;
  color: var(--navy);
}
.company-story aside span {
  color: var(--blue);
}
.company-story aside strong {
  font-size: clamp(1.9rem, 3.5vw, 2.85rem);
}

.about-operating-system {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background: var(--concrete);
}
.about-operating-system::before,
.about-direction::after {
  display: none;
}
.about-operating-system__layout {
  gap: clamp(1.15rem, 2.2vw, 2rem);
  border: 0;
  box-shadow: none;
}
.about-direction {
  padding: clamp(2.2rem, 4vw, 3.75rem);
  background:
    linear-gradient(145deg, rgba(21, 112, 184, 0.2), transparent 42%),
    var(--navy);
  color: var(--white);
  box-shadow: 0 24px 58px rgba(8, 24, 48, 0.18);
}
.about-values {
  padding: clamp(2.2rem, 4vw, 3.75rem);
  border-top: 8px solid var(--light-blue);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(8, 24, 48, 0.08);
}
.about-direction__masthead {
  border-bottom-color: rgba(255, 255, 255, 0.3);
  color: var(--light-blue);
}
.about-direction__statement {
  grid-template-columns: 50px 1fr;
  border-bottom-color: rgba(255, 255, 255, 0.17);
}
.about-direction__index {
  position: relative;
  display: block;
  width: auto;
  aspect-ratio: auto;
  padding-top: 0.2rem;
  border: 0;
  border-radius: 0;
  color: var(--light-blue);
  font-size: 0.76rem;
}
.about-direction__index::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 0.7rem;
  background: var(--blue);
}
.about-direction__statement h3 {
  color: var(--light-blue);
}
.about-direction__statement p {
  color: rgba(255, 255, 255, 0.92);
}
.about-values header {
  grid-template-columns: 1fr;
  gap: 0.3rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--navy);
}
.about-values ol {
  border-bottom-color: var(--line);
}
.about-values li {
  grid-template-columns: 40px minmax(130px, 0.55fr) minmax(0, 1fr);
}
.about-values li > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--white);
  line-height: 1;
}
.about-operating-system__action {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
}
.about-operating-system__action span {
  color: var(--muted);
}
.about-operating-system__action .button {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.team-grid {
  gap: clamp(1.5rem, 3vw, 2.6rem) 1.4rem;
}
.team-card {
  border: 0;
  background: transparent;
}
.team-card img {
  object-position: center top;
}
.team-card__body {
  padding-inline: 0;
  border-top: 3px solid var(--navy);
}

.closing-cta,
.closing-cta--services,
.closing-cta--portfolio,
.closing-cta--team {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}
.closing-cta__shell,
.closing-cta--services .closing-cta__shell,
.closing-cta--portfolio .closing-cta__shell,
.closing-cta--team .closing-cta__shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  grid-template-areas: none;
  min-height: 470px;
  overflow: hidden;
  border: 0;
  background: var(--concrete);
  color: var(--navy);
  box-shadow: none;
}
.closing-cta__media {
  position: relative;
  min-width: 0;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}
.closing-cta__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.closing-cta--project .closing-cta__media img {
  object-position: center 35%;
}
.closing-cta__copy {
  grid-area: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5.5rem);
}
.closing-cta .eyebrow,
.closing-cta--portfolio .eyebrow,
.closing-cta--team .eyebrow {
  color: var(--blue);
}
.closing-cta h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(2.4rem, 4.7vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}
.closing-cta__copy > p:not(.eyebrow),
.closing-cta--portfolio .closing-cta__copy > p:not(.eyebrow),
.closing-cta--team .closing-cta__copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.15rem 0 0;
  color: var(--muted);
}
.closing-cta__facts {
  grid-area: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.4rem;
  margin: 1.5rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.closing-cta__facts li,
.closing-cta__facts li:first-child {
  display: list-item;
  min-height: 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.closing-cta__facts li::before {
  content: "•";
  margin-right: 0.45rem;
  color: var(--blue);
}
.closing-cta__copy .button {
  align-self: flex-start;
  gap: 1.2rem;
  margin-top: 1.7rem;
}
.closing-cta__action,
.closing-cta__arrow {
  display: none;
}
.services-index-section + .closing-cta,
#project-grid + .closing-cta,
.about-operating-system + .closing-cta,
#team-grid + .closing-cta {
  padding-top: 0;
}

.contact-office {
  background: var(--concrete);
  color: var(--navy);
}
.contact-office .eyebrow {
  color: var(--blue);
}
.contact-office__intro > p:not(.eyebrow) {
  color: var(--muted);
}
.contact-office__details {
  border-color: rgba(16, 29, 53, 0.24);
}
.contact-office__details div {
  border-color: rgba(16, 29, 53, 0.24);
}
.contact-office__details dt {
  color: var(--blue);
}
.contact-office__details a {
  color: var(--navy);
}

@media (max-width: 980px) {
  .about-operating-system__layout {
    gap: 1.25rem;
  }
  .about-direction,
  .about-values {
    padding: clamp(2rem, 6vw, 3.25rem);
  }
  .services-index-heading,
  .closing-cta__shell,
  .closing-cta--services .closing-cta__shell,
  .closing-cta--portfolio .closing-cta__shell,
  .closing-cta--team .closing-cta__shell {
    grid-template-columns: 1fr;
  }
  .closing-cta__media {
    min-height: 360px;
  }
  .projects:has(.project-card:nth-child(4)) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .projects:has(.project-card:nth-child(4)) .project-card,
  .projects:has(.project-card:nth-child(4)) .project-card:nth-child(5n + 1),
  .projects:has(.project-card:nth-child(4)) .project-card:nth-child(5n + 2) {
    grid-column: auto;
  }
  .service-list {
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
  }
  .service-card,
  .service-card:first-child,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: 1fr;
    grid-column: 1;
    gap: 1.25rem;
    align-items: center;
    min-height: 112px;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--line);
  }
  .service-card h3,
  .service-card:first-child h3,
  .service-card:nth-child(2) h3 {
    align-self: center;
    font-size: clamp(1.45rem, 4vw, 2rem);
  }
}

@media (max-width: 640px) {
  .about-operating-system__layout {
    gap: 1rem;
  }
  .about-direction,
  .about-values {
    padding: 1.5rem;
  }
  .about-direction__statement {
    grid-template-columns: 42px 1fr;
  }
  .about-values li {
    grid-template-columns: 36px 1fr;
  }
  .about-values h4,
  .about-values li p {
    grid-column: 2;
  }
  .about-values h4 {
    grid-row: 1;
  }
  .about-values li p {
    grid-row: 2;
  }
  .home-hero__veil {
    background: rgba(9, 20, 39, 0.7);
  }
  .service-list {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card:first-child,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: 1;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: 1fr;
    gap: 0.75rem;
    min-height: 96px;
    padding: 1.15rem 0;
    border-right: 0;
  }
  .service-card h3,
  .service-card:first-child h3,
  .service-card:nth-child(2) h3 {
    font-size: 1.35rem;
  }
  .project-card__body {
    grid-template-columns: 1fr;
  }
  .project-card__link {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0.55rem;
  }
  .projects:has(.project-card:nth-child(4)) {
    grid-template-columns: 1fr;
  }
  .closing-cta,
  .closing-cta--services,
  .closing-cta--portfolio,
  .closing-cta--team {
    padding: 3rem 0;
  }
  .closing-cta__shell,
  .closing-cta--services .closing-cta__shell,
  .closing-cta--portfolio .closing-cta__shell,
  .closing-cta--team .closing-cta__shell {
    min-height: 0;
  }
  .closing-cta__media {
    min-height: 260px;
  }
  .closing-cta__copy {
    padding: 2.2rem 1.4rem;
  }
  .closing-cta h2 {
    font-size: clamp(2.25rem, 10.8vw, 3.1rem);
  }
}

/* Contact is an action page: keep the project form in the first viewport. */
@media (min-width: 981px) and (max-height: 820px) {
  .contact-hero {
    padding: 1.25rem 0;
  }
  .contact-hero__grid {
    gap: clamp(2rem, 5vw, 5rem);
  }
  .contact-hero h1 {
    font-size: clamp(3.2rem, 4.8vw, 4.4rem);
  }
  .contact-hero .lead {
    margin-top: 0.9rem;
    font-size: 1rem;
  }
  .contact-hero__copy ol {
    margin-top: 1.25rem;
  }
  .contact-hero__copy li {
    padding: 0.6rem 0;
  }
  .contact-hero__form {
    padding: 1.25rem 1.65rem;
  }
  .contact-hero__form h2 {
    font-size: 2rem;
  }
  .contact-hero__form > p:not(.eyebrow) {
    margin: 0.4rem 0 0.7rem;
    font-size: 0.75rem;
  }
  .contact-hero__form .form-grid {
    gap: 0.7rem 1rem;
  }
  .contact-hero__form .field input,
  .contact-hero__form .field textarea {
    min-height: 40px;
    padding: 0.4rem 0.65rem;
  }
  .contact-hero__form .field textarea {
    min-height: 72px;
  }
  .contact-hero__form .field small {
    font-size: 0.72rem;
  }
  .contact-hero__form .form-status {
    min-height: 1rem;
    margin: 0.2rem 0;
  }
  .contact-hero__form .button {
    min-height: 48px;
    padding: 0.65rem 1rem;
  }
}

@media (max-width: 980px) {
  .contact-hero {
    padding: 2rem 0;
  }
  .contact-hero__grid {
    gap: 1.5rem;
  }
  .contact-hero__copy ol,
  .contact-hero__jump {
    display: none;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 0 0 2rem;
  }
  .contact-hero__grid {
    gap: 0;
  }
  .contact-hero__copy {
    padding: 1.6rem 0 1.35rem;
  }
  .contact-hero .lead {
    margin-top: 0.75rem;
    line-height: 1.45;
  }
  .contact-hero__form {
    padding: 1.3rem 1.4rem;
    box-shadow: none;
  }
  .contact-hero__form h2 {
    font-size: 2rem;
  }
  .contact-hero__form > p:not(.eyebrow) {
    margin-bottom: 0.9rem;
  }
}
