@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

:root {
  --blue: #005189;
  --blue2: #0b6fae;
  --cyan: #83d3ee;
  --pale: #eaf5fa;
  --ink: #11242e;
  --dark: #07151d;
  --muted: #5d707a;
  --line: #d3e1e8;
  --paper: #f6fafc;
  --white: #ffffff;
  --steel: #eef4f7;
  --sans: "Manrope", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #dbe8ee; }
body {
  margin: 0;
  min-width: 0;
  background: #dbe8ee;
  font-family: var(--sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}
body.contact-focus .contact-form { box-shadow: 0 0 0 4px rgba(131,211,238,.42), 0 18px 50px rgba(15,45,60,.16); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p, figure { margin: 0; }
ul { margin: 0; padding: 0; }

.page {
  width: min(100%, 1440px);
  margin: 0 auto;
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.pad { padding-left: 64px; padding-right: 64px; }
.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;
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(0,81,137,.20);
  background: #fff;
}
.nav.transparent {
  position: absolute;
  z-index: 50;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 96px;
  padding-left: 64px;
  padding-right: 64px;
  transform: none;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}
section[id] { scroll-margin-top: 118px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 210px; }
.brand img { width: 54px; height: 58px; object-fit: contain; }
.brand-name { line-height: .94; text-transform: uppercase; }
.brand-name b { display: block; font-weight: 800; font-size: 20px; letter-spacing: -.02em; transition: color .24s ease; }
.brand-name span { display: block; margin-top: 5px; font-weight: 800; font-size: 11px; letter-spacing: .12em; color: var(--blue); transition: color .24s ease; }
.dark .brand-name b, .transparent .brand-name b { color: #fff; }
.dark .brand-name span, .transparent .brand-name span { color: var(--cyan); }
.navlinks { display: flex; align-items: center; gap: 26px; font-weight: 650; font-size: 13px; color: #415866; transition: color .24s ease; }
.transparent .navlinks { color: #e5f4fa; }
.navlinks a { transition: opacity .18s ease, transform .18s ease; }
.navlinks a:hover { opacity: .72; }
.navlinks a:active, .btn:active { transform: translateY(1px); }
.cta { background: var(--blue); color: #fff; padding: 14px 18px; border-radius: 3px; font-weight: 700; letter-spacing: .01em; transition: background .24s ease, color .24s ease, transform .18s ease; }
.transparent .cta { background: var(--blue); border-color: var(--blue); color: #fff; }
.transparent .cta:hover { background: #073d66; opacity: 1; }
.nav.transparent.scrolled {
  position: fixed;
  left: 50%;
  right: auto;
  top: 16px;
  width: min(calc(100% - 32px), 1312px);
  height: 76px;
  padding-left: 28px;
  padding-right: 28px;
  transform: translateX(-50%);
  background: rgba(246,250,252,.94);
  border-color: rgba(0,81,137,.18);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(15,45,60,.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav.transparent.scrolled .brand-name b { color: var(--ink); }
.nav.transparent.scrolled .brand-name span { color: var(--blue); }
.nav.transparent.scrolled .navlinks { color: #18313d; }
.nav.transparent.scrolled .cta { background: var(--blue); color: #fff; }
.transparent .navlinks a.active { color: #fff; box-shadow: inset 0 -2px 0 var(--cyan); }
.nav.transparent.scrolled .navlinks a.active { color: var(--ink); }
.nav.transparent.scrolled .cta.active { color: #fff; box-shadow: none; }

.eyebrow { font-weight: 800; font-size: 12px; letter-spacing: .11em; text-transform: uppercase; color: var(--blue); }
.eyebrow.light { color: var(--cyan); }
.h1 { font-size: clamp(58px, 5vw, 70px); line-height: .94; letter-spacing: -.055em; font-weight: 800; }
.h2 { font-size: 46px; line-height: 1; letter-spacing: -.04em; font-weight: 800; }
.h3 { font-size: 27px; line-height: 1.08; letter-spacing: -.025em; font-weight: 800; }
.body-xl { font-size: 22px; line-height: 1.36; color: #dceef5; }
.body { font-size: 17px; line-height: 1.55; color: #536a75; }
.image { width: 100%; height: 100%; object-fit: cover; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 15px 19px;
  min-height: 48px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  text-transform: none;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn.white { background: #fff; color: var(--dark); }
.btn.white:hover { background: var(--cyan); }
.btn.submit { background: var(--blue); color: #fff; border: 0; width: fit-content; }
.btn.submit:hover { background: #073d66; }

.back-to-top {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(7,21,29,.86);
  color: #fff;
  box-shadow: 0 16px 42px rgba(15,45,60,.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .22s ease, transform .22s ease, background .22s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.back-to-top:hover { background: var(--blue); }
.back-to-top:active { transform: translate(-50%, 1px); }
.back-to-top:focus-visible { outline: 3px solid rgba(131,211,238,.75); outline-offset: 3px; }
.back-to-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hero-full { height: 585px; position: relative; color: #fff; background: #07151d; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: #07151d; }
.hero-main {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 65%;
  height: 100%;
  filter: saturate(.82) contrast(1.06) brightness(.72);
  object-position: center;
}
.hero-support {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  display: block;
  overflow: hidden;
  opacity: .97;
}
.hero-support::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7,21,29,.18), rgba(7,21,29,0));
  pointer-events: none;
}
.hero-support img { filter: saturate(.92) contrast(1.04) brightness(.96); object-position: center; }
.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,21,29,.88) 0%, rgba(7,21,29,.72) 38%, rgba(7,21,29,.28) 66%, rgba(7,21,29,.10) 100%),
    linear-gradient(180deg, rgba(246,250,252,.06) 0%, rgba(246,250,252,0) 45%, rgba(7,21,29,.18) 100%);
  pointer-events: none;
}
.hero-full .content {
  position: relative;
  z-index: 2;
  padding-top: 165px;
  max-width: 760px;
}
.hero-full .content .h1 { margin-top: 18px; }
.hero-full .content .body-xl { margin-top: 20px; max-width: 640px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-full .content .button-row { margin-top: 48px; }

.services-band { padding-top: 86px; padding-bottom: 8px; }
.service-title { margin-bottom: 28px; }
.section-lede { max-width: 640px; }
.service-strip {
  position: relative;
  z-index: 4;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(15,45,60,.12);
}
.service-heading {
  grid-column: 1 / -1;
  padding: 30px 32px 22px;
  border-bottom: 1px solid var(--line);
}
.service-heading .h2 { margin-top: 10px; }
.sector-headlines {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #f9fcfd;
}
.sector-headlines span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  color: var(--blue);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.sector-headlines span:last-child { border-right: 0; }
.service-tile { min-height: 205px; padding: 26px; border-right: 1px solid var(--line); }
.service-tile:nth-of-type(4n) { border-right: 0; }
.service-tile .eyebrow { font-size: 11px; }
.service-tile .h3 { margin-top: 16px; }
.service-tile .body { margin-top: 14px; }

.client-strip {
  min-height: 104px;
  margin: 34px 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
  background: transparent;
  border: 0;
  color: #334a55;
}
.client-strip img {
  display: block;
  max-width: 188px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.02);
  opacity: .86;
  mix-blend-mode: multiply;
}
.client-strip img[alt="Grosvenor Engineering Group"] { max-height: 36px; }
.client-strip img[alt="Tate Asia Pacific"] { max-height: 34px; }

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}
.section-title .h2 { margin-top: 14px; }
.team-band {
  margin-top: 92px;
  padding-top: 86px;
  padding-bottom: 88px;
  background: #eaf5fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.team-grid { display: grid; grid-template-columns: 1.04fr .98fr .98fr; gap: 20px; }
.team-card { background: #fff; border: 1px solid var(--line); padding: 26px; min-height: 270px; }
.team-card.large { background: #eef7fb; }
.team-card > .body:first-of-type,
.team-card > .eyebrow + .body { margin-top: 18px; }
.team-card .body + .body { margin-top: 14px; }
.check-list, .plain-list { list-style: none; display: grid; gap: 13px; margin-top: 18px; }
.check-list li, .plain-list li { color: #334a55; font-size: 16px; line-height: 1.45; border-bottom: 1px solid #dfeaf0; padding-bottom: 12px; }
.check-list li:last-child, .plain-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.sponsor-note { margin-top: 18px; color: var(--blue); font-size: 15px; line-height: 1.45; font-weight: 700; }
.sponsor-panel {
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px 18px;
  align-items: center;
}
.sponsor-panel .eyebrow { grid-column: 1 / -1; }
.sponsor-panel .h3 { margin: 0; font-size: 17px; line-height: 1.34; letter-spacing: 0; font-weight: 600; color: #34505c; max-width: 720px; }
.sponsor-logo { width: 58px; height: 58px; object-fit: contain; }

.projects-band { padding-top: 96px; }
.project-client-strip { margin: 34px 0 36px; }
.projects-heading { margin-bottom: 18px; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.six-projects { gap: 22px; }
.project-card { background: #fff; border: 1px solid var(--line); overflow: hidden; }
.project-card .pic { height: 245px; position: relative; overflow: hidden; }
.blue-wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,81,137,.04), rgba(0,81,137,.22)); pointer-events: none; }
.project-card .meta { padding: 20px; display: grid; gap: 14px; }
.tag {
  display: inline-flex;
  background: #e9f3f8;
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 8px 10px;
  border-radius: 2px;
}
.project-card .h3 { margin-top: 14px; }
.project-card .body { margin-top: 10px; }
.project-labels { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.install-type {
  display: inline-flex;
  background: #f5fafc;
  border: 1px solid var(--line);
  color: #45606d;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 7px 9px;
  border-radius: 2px;
}
.project-sites {
  border-top: 1px solid #dfeaf0;
  padding-top: 13px;
}
.project-sites-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 9px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-sites-action {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: .05em;
  white-space: nowrap;
}
.project-sites-toggle:disabled { cursor: default; opacity: 1; }
.project-sites-list {
  list-style: none;
  display: grid;
  gap: 6px;
  max-height: 42px;
  overflow: hidden;
  transition: max-height .28s ease;
}
.project-sites.expanded .project-sites-list { max-height: 420px; }
.project-sites-list li {
  position: relative;
  padding-left: 13px;
  color: #405966;
  font-size: 13px;
  line-height: 1.35;
}
.project-sites-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}
.category-table { margin-top: 48px; border-top: 1px solid var(--line); }
.cat-row { display: grid; grid-template-columns: 210px 1fr 150px; gap: 24px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.cat-row b { font-size: 25px; line-height: 1.08; letter-spacing: -.03em; font-weight: 800; }
.cat-row span { font-weight: 800; color: var(--blue); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; text-align: right; }
.contact-band {
  margin-top: 66px;
  background: var(--blue);
  color: #fff;
  padding: 34px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.contact-band p { color: #d9eef7; margin-top: 9px; }
.contact-band .h3 { color: #fff; }

.gallery-band { padding-top: 82px; padding-bottom: 84px; }
.gallery-title { margin-bottom: 0; }
.gallery-group { margin-top: 54px; }
.gallery-group-head { display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: 34px; align-items: end; border-top: 1px solid var(--line); padding-top: 26px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.hac-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery-grid figure { height: 230px; position: relative; overflow: hidden; border: 1px solid var(--line); background: #dfeaf0; }
.hac-gallery figure { height: 265px; }
.gallery-grid figcaption { display: none; }
.gallery-grid figure::after { content: none; }
.video-card {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
}
.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #07151d;
  object-fit: cover;
}
.video-card .body { margin-top: 8px; }

.form-section {
  padding-top: 76px;
  padding-bottom: 84px;
  background: #eaf5fa;
  border-top: 1px solid var(--line);
}
.form-wrap { display: grid; grid-template-columns: .82fr 1fr; gap: 46px; align-items: start; }
.form-copy .h2 { margin-top: 14px; }
.form-copy > .body { margin-top: 18px; max-width: 560px; }
.contact-methods { display: grid; gap: 10px; margin-top: 24px; font-weight: 700; color: #294552; }
.contact-methods a:hover { color: var(--blue); }
.linkedin-coming { display: inline-flex; align-items: center; gap: 9px; }
.linkedin-icon { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 3px; background: #0a66c2; color: #fff; font-weight: 800; font-size: 14px; line-height: 1; font-family: Arial, Helvetica, sans-serif; }
.contact-form { display: grid; gap: 18px; background: #fff; border: 1px solid var(--line); padding: 26px; box-shadow: 0 18px 50px rgba(15,45,60,.10); transition: box-shadow .2s ease; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form .honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.contact-form label span { color: #304a56; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 2px; background: #fbfdfe; color: var(--ink); padding: 13px 14px; outline: none; }
.contact-form textarea { resize: vertical; min-height: 142px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,81,137,.12); }
.contact-form input[aria-invalid="true"], .contact-form textarea[aria-invalid="true"] { border-color: #a83232; }
.form-status { min-height: 24px; color: var(--muted); font-size: 14px; line-height: 1.5; }

.site-footer {
  background: #07151d;
  color: #fff;
  min-height: 176px;
  display: grid;
  gap: 34px;
  padding-top: 42px;
  padding-bottom: 28px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.footer-brand img { width: 54px; height: 58px; object-fit: contain; }
.footer-brand > span { display: block; line-height: .94; text-transform: uppercase; }
.footer-brand b { display: block; color: #fff; font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.footer-brand span span { display: block; margin-top: 5px; font-weight: 800; font-size: 11px; letter-spacing: .12em; color: var(--cyan); }
.footer-main .body { max-width: 560px; text-align: right; }
.site-footer .body { color: #d2e5ed; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.copyright { color: #9db5c1; font-size: 13px; line-height: 1.4; }
.truespeak-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b9ccd5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}
.truespeak-credit img { width: 132px; height: auto; display: block; }


.services-band.simple-services { padding-top: 86px; padding-bottom: 86px; }
.services-band.simple-services + .team-band { margin-top: 0; }
.inner-site .services-band.simple-services { padding-top: 72px; padding-bottom: 72px; }
.what-we-do-feature {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: 46px;
  align-items: stretch;
}
.what-we-do-copy {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.what-we-do-copy .h2 { margin-top: 14px; }
.what-we-do-copy .section-lede { margin-top: 22px; max-width: 780px; }
.what-we-do-image {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #dfeaf0;
  box-shadow: 0 18px 50px rgba(15,45,60,.10);
}
.what-we-do-image img { object-position: center; filter: saturate(.9) contrast(1.04); }

.page-nav {
  min-height: 96px;
  padding-left: 64px;
  padding-right: 64px;
  background: #07151d;
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.page-nav .brand-name b { color: #fff; }
.page-nav .brand-name span { color: var(--cyan); }
.page-nav .navlinks { color: #e5f4fa; }
.page-nav .navlinks a.active { color: #fff; box-shadow: inset 0 -2px 0 var(--cyan); }
.page-nav .cta { background: var(--blue); border-color: var(--blue); color: #fff; }
.page-nav .cta:hover { background: #073d66; opacity: 1; }

.inner-site {
  padding-top: 116px;
}
.inner-site .nav.transparent.scrolled {
  z-index: 70;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 60px;
  background: #07151d;
  color: #fff;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,81,137,.28), rgba(7,21,29,0) 58%);
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero .h1 { margin-top: 16px; max-width: 850px; }
.page-hero .body { margin-top: 18px; max-width: 720px; color: #dceef5; }
.inner-site .services-band { padding-top: 72px; padding-bottom: 80px; }
.inner-site .team-band { margin-top: 0; }
.inner-site .projects-band { padding-top: 76px; padding-bottom: 84px; }
.inner-site .gallery-band { padding-top: 76px; }
.inner-site .form-section { border-top: 0; }
.inner-site .site-footer { margin-top: 0; }

.page-based-page .services-band.simple-services { padding-top: 72px; padding-bottom: 72px; }
.page-based-page .team-band { margin-top: 0; }
.page-based-page .projects-band { padding-top: 76px; padding-bottom: 84px; }
.page-based-page .gallery-band { padding-top: 76px; }
.page-based-page .form-section { border-top: 0; }
.page-based-page .site-footer { margin-top: 0; }

.page-based-home .services-band.simple-services,
.page-based-page .services-band.simple-services,
.page-based-page .projects-band,
.page-based-page .gallery-band,
.page-based-page .form-section {
  padding-top: 76px;
}
.page-based-page .team-band { padding-top: 75px; }
.page-based-home .what-we-do-copy,
.page-based-page .what-we-do-copy {
  min-height: 0;
  justify-content: flex-start;
  border-top: 0;
  padding-top: 0;
  padding-bottom: 44px;
}

@media (max-width: 1120px) {
  .what-we-do-feature { grid-template-columns: 1fr; gap: 24px; }
  .what-we-do-copy { min-height: 0; padding: 34px 0; }
  .what-we-do-image { min-height: 300px; }
  .pad { padding-left: 32px; padding-right: 32px; }
  .nav.transparent { padding-left: 32px; padding-right: 32px; }
  .service-strip { margin-left: 0; margin-right: 0; grid-template-columns: repeat(2, 1fr); }
  .sector-headlines { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sector-headlines span:nth-child(3) { border-right: 0; }
  .sector-headlines span:nth-child(n+4) { border-top: 1px solid var(--line); }
  .service-tile { border-bottom: 1px solid var(--line); }
  .service-tile:nth-of-type(2n) { border-right: 0; }
  .service-tile:nth-last-of-type(-n+2) { border-bottom: 0; }
  .client-strip { margin-left: 32px; margin-right: 32px; padding-left: 28px; padding-right: 28px; flex-wrap: wrap; height: auto; min-height: 104px; justify-content: flex-start; }
  .client-strip img { max-width: 160px; max-height: 38px; }
  .section-title, .form-wrap { grid-template-columns: 1fr; gap: 24px; }
  .section-title > .body { max-width: 620px; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hac-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat-row { grid-template-columns: 190px 1fr 150px; }
}

@media (max-width: 760px) {
  .hero-full .content .button-row { margin-top: 38px; }
  .what-we-do-feature { gap: 20px; }
  .what-we-do-copy { padding: 0 0 28px; border-top: 0; }
  .what-we-do-image { min-height: 220px; }
  .services-band.simple-services { padding-top: 56px; padding-bottom: 56px; }
  .services-band.simple-services + .team-band { margin-top: 0; }
  .inner-site .services-band.simple-services { padding-top: 54px; padding-bottom: 54px; }
  .page-based-home .services-band.simple-services,
  .page-based-page .services-band.simple-services,
  .page-based-page .projects-band,
  .page-based-page .gallery-band,
  .page-based-page .form-section {
    padding-top: 76px;
  }
  .page-based-page .team-band { padding-top: 75px; }
  .page-based-home .what-we-do-copy,
  .page-based-page .what-we-do-copy {
    padding-top: 0;
    padding-bottom: 28px;
  }

  .page-nav { height: auto; min-height: 92px; padding: 14px 18px; align-items: center; gap: 16px; flex-direction: column; }
  .page-nav .brand { justify-content: center; }
  .page-nav .navlinks { width: 100%; flex-wrap: wrap; justify-content: center; text-align: center; gap: 14px 18px; font-size: 12px; }
  .page-nav .navlinks .cta { display: none; }
  .inner-site { padding-top: 126px; }
  .inner-site .team-band { margin-top: 0; }
  .page-hero { padding-top: 52px; padding-bottom: 44px; }
  .inner-site .services-band { padding-top: 54px; padding-bottom: 60px; }
  .inner-site .projects-band, .inner-site .gallery-band { padding-top: 58px; }
  html { background: var(--paper); }
  .page { width: 100%; }
  .pad { padding-left: 24px; padding-right: 24px; }
  .nav.transparent { position: fixed; top: 10px; left: 12px; right: auto; width: calc(100% - 24px); transform: none; height: auto; min-height: 92px; padding: 14px 18px; align-items: center; gap: 16px; flex-direction: column; background: rgba(7,21,29,.58); border-color: rgba(255,255,255,.16); border-radius: 6px; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
  .nav.transparent.scrolled { top: 10px; left: 12px; right: auto; width: calc(100% - 24px); height: auto; min-height: 92px; padding: 14px 18px; transform: none; }
  section[id] { scroll-margin-top: 170px; }
  .brand { min-width: 0; justify-content: center; }
  .brand img { width: 46px; height: 50px; }
  .brand-name b { font-size: 18px; }
  .brand-name span { font-size: 9px; letter-spacing: .08em; }
  .navlinks { width: 100%; flex-wrap: wrap; justify-content: center; text-align: center; gap: 14px 18px; font-size: 12px; }
  .navlinks .cta { display: none; }
  .hero-full { height: auto; min-height: 0; }
  .hero-main { width: 100%; filter: saturate(.88) contrast(1.04) brightness(.82); }
  .hero-support { display: none; }
  .hero-full::after {
    background:
      linear-gradient(180deg, rgba(7,21,29,.58) 0%, rgba(7,21,29,.36) 52%, rgba(7,21,29,.24) 100%),
      linear-gradient(90deg, rgba(7,21,29,.70) 0%, rgba(7,21,29,.36) 58%, rgba(7,21,29,.10) 100%);
  }
  .hero-full .content { padding-top: 190px; padding-bottom: 72px; max-width: none; }
  .h1 { font-size: clamp(42px, 12vw, 58px); }
  .h2 { font-size: clamp(34px, 9vw, 44px); }
  .h3 { font-size: 24px; }
  .body-xl { font-size: 19px; }
  .button-row { margin-top: 26px; }
  .btn { width: 100%; }
  .services-band { padding-top: 56px; }
  .service-strip { margin-left: 0; margin-right: 0; grid-template-columns: 1fr; }
  .service-heading { padding: 24px 22px 18px; }
  .sector-headlines { grid-template-columns: 1fr; }
  .sector-headlines span { min-height: 0; padding: 14px 22px; border-right: 0; border-top: 0; border-bottom: 1px solid var(--line); }
  .sector-headlines span:nth-child(3) { border-right: 0; }
  .sector-headlines span:nth-child(n+4) { border-top: 0; }
  .sector-headlines span:last-child { border-bottom: 0; }
  .service-tile { min-height: 0; padding: 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-tile:nth-last-of-type(-n+2) { border-bottom: 1px solid var(--line); }
  .service-tile:last-of-type { border-bottom: 0; }
  .client-strip { margin-left: 24px; margin-right: 24px; gap: 14px 20px; }
  .project-client-strip { margin: 28px 0 28px; }
  .client-strip img { max-width: 132px; max-height: 32px; }
  .team-band, .projects-band { padding-top: 64px; }
  .team-band { margin-top: 64px; padding-bottom: 64px; }
  .sponsor-panel { grid-template-columns: 1fr; gap: 12px; }
  .section-title { margin-bottom: 28px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card .pic { height: 220px; }
  .cat-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .cat-row b { font-size: 24px; }
  .cat-row span { text-align: left; }
  .contact-band { margin-top: 42px; padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .gallery-band { padding-top: 60px; padding-bottom: 64px; }
  .gallery-group { margin-top: 42px; }
  .gallery-group-head { grid-template-columns: 1fr; gap: 12px; }
  .gallery-grid, .hac-gallery { grid-template-columns: 1fr; gap: 12px; margin-top: 20px; }
  .gallery-grid figure, .hac-gallery figure { height: 210px; }
  .video-card { grid-template-columns: 1fr; }
  .form-section { padding-top: 60px; padding-bottom: 64px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
  .site-footer { min-height: 0; padding-top: 34px; padding-bottom: 28px; gap: 28px; }
  .back-to-top { bottom: 18px; width: 44px; height: 44px; }
  .footer-main, .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-main .body { text-align: left; }
  .footer-brand { min-width: 0; }
  .truespeak-credit img { width: 124px; }
}

@media (max-width: 390px) {
  .pad { padding-left: 18px; padding-right: 18px; }
  .client-strip { margin-left: 18px; margin-right: 18px; }
  .navlinks { font-size: 11px; gap: 12px; }
  .hero-full .content { padding-top: 178px; padding-bottom: 56px; }
  .h1 { font-size: 37px; }
  .body-xl { font-size: 17px; line-height: 1.34; }
  .client-strip img { max-width: 118px; }
}

@media print {
  @page { margin: 0; }
  .page { margin: 0; width: 1440px; }
}
