:root {
  --navy: #062348;
  --navy-deep: #001936;
  --ink: #071b35;
  --gold: #d68b21;
  --gold-bright: #eba22d;
  --gold-soft: #f7c15b;
  --line: #dce2e9;
  --surface: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(5, 25, 52, 0.14);
  --shadow-strong: 0 24px 60px rgba(5, 25, 52, 0.2);
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: "Trajan Pro", "Cinzel", "Times New Roman", Georgia, serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--surface);
}

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

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 35, 72, 0.08);
}

.topbar {
  color: var(--white);
  background: linear-gradient(90deg, #001733, #062348);
  font-size: 12px;
  font-weight: 700;
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.topbar p {
  margin: 0;
}

.topbar b {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.76);
}

.topbar__links {
  display: flex;
  gap: 28px;
}

.topbar__links a {
  white-space: nowrap;
}

.nav {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
}

.brand {
  width: clamp(300px, 31vw, 430px);
  display: block;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.nav__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex: 1 1 auto;
}

.nav__menu a {
  position: relative;
  padding: 18px 0 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav__menu a:hover,
.nav__menu a.active {
  color: var(--gold);
}

.nav__menu a:hover::after,
.nav__menu a.active::after {
  transform: scaleX(1);
}

.nav__mobile-quote {
  display: none;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.nav__toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 45%),
    linear-gradient(180deg, var(--gold-bright), #bd7519);
  box-shadow: 0 14px 26px rgba(168, 100, 14, 0.28);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 25, 54, 0.2);
}

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

.hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("assets/home-hero-capitol.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 25, 54, 0.98) 0%, rgba(0, 25, 54, 0.88) 38%, rgba(0, 25, 54, 0.24) 74%, rgba(0, 25, 54, 0.06) 100%),
    linear-gradient(0deg, rgba(0, 25, 54, 0.08), rgba(0, 25, 54, 0.08));
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 0 54px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 span,
.section__heading p,
.eyebrow,
.cta-strip h2,
.footer h3 {
  color: var(--gold-bright);
}

.accent-line {
  width: 66px;
  height: 3px;
  margin: 22px 0;
  background: var(--gold-bright);
}

.hero p {
  max-width: 500px;
  margin: 0;
  font-size: 17px;
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}

.proof-strip,
.capability-band,
.footer {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 42%, rgba(45, 111, 172, 0.22), transparent 28%),
    linear-gradient(90deg, var(--navy-deep), var(--navy));
}

.proof-strip__grid,
.capability-band__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.proof-strip article,
.capability-band article {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.proof-strip article:first-child,
.capability-band article:first-child {
  border-left: 0;
}

.proof-strip span,
.capability-band span {
  color: var(--gold-bright);
  font-size: 34px;
  line-height: 1;
}

.proof-strip strong {
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  padding: 22px 0 34px;
  background: #fff;
}

.section__heading {
  margin-bottom: 16px;
  text-align: center;
}

.section__heading p,
.eyebrow {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.section__heading h2,
.about-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.12;
  font-weight: 700;
  text-transform: uppercase;
}

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

.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(6, 35, 72, 0.11);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(5, 25, 52, 0.1);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.service-card__media {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
}

.service-card__media--contracting { background-image: url("assets/home-service-contracting.png"); }
.service-card__media--facility { background-image: url("assets/home-service-facility.png"); }
.service-card__media--safety { background-image: url("assets/home-service-safety.png"); }
.service-card__media--events { background-image: url("assets/home-service-events.png"); }
.service-card__media--response { background-image: url("assets/home-service-response.png"); }

.service-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-top: -31px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-bright);
  font-size: 27px;
  box-shadow: 0 10px 22px rgba(5, 25, 52, 0.22);
}

.service-card h3 {
  min-height: 48px;
  margin: 15px 14px 9px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.07;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 18px;
  color: #17273b;
  font-size: 12px;
  line-height: 1.62;
}

.service-card a {
  margin-top: auto;
  padding: 20px 16px 22px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.capability-band article {
  min-height: 110px;
  flex-direction: column;
  gap: 4px;
}

.capability-band p,
.capability-band strong {
  margin: 0;
  text-align: center;
}

.capability-band p {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.capability-band strong {
  min-height: 18px;
  font-size: 14px;
}

.about-section {
  padding: 24px 0 42px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  align-items: center;
  gap: 44px;
}

.about-copy p:not(.eyebrow) {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
}

.about-copy .accent-line {
  margin: 16px 0;
}

.about-copy .button {
  margin-top: 8px;
}

.about-visual {
  position: relative;
  min-height: 280px;
}

.about-image {
  min-height: 280px;
  border-radius: 4px;
  background-image: url("assets/home-about-team.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

blockquote {
  position: absolute;
  right: -14px;
  bottom: -10px;
  width: min(350px, 78%);
  margin: 0;
  padding: 24px 26px 24px 58px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 15px;
  line-height: 1.6;
}

blockquote span {
  position: absolute;
  left: 27px;
  top: 20px;
  color: var(--gold-bright);
  font-size: 42px;
  line-height: 1;
}

.cta-strip {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/home-cta-city.png");
  background-size: cover;
  background-position: center;
  opacity: 0.34;
}

.cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 25, 54, 0.94), rgba(0, 25, 54, 0.7)),
    rgba(0, 25, 54, 0.48);
}

.cta-strip__inner {
  position: relative;
  z-index: 1;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.cta-strip h2,
.cta-strip p {
  margin: 0;
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
}

.cta-strip p {
  margin-top: 3px;
  font-size: 18px;
  font-weight: 800;
}

.footer {
  position: relative;
  padding-top: 54px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 1.1fr 1.1fr;
  gap: 38px;
  padding-bottom: 44px;
}

.brand--footer {
  width: 150px;
  margin-bottom: 16px;
}

.footer h3 {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  color: var(--gold-bright);
  font-size: 13px;
  text-transform: uppercase;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.75;
}

.footer p {
  margin: 0 0 8px;
}

.footer a {
  display: block;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.socials a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
}

.footer__bottom {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom div {
  display: flex;
  gap: 24px;
}

.page-hero {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.page-hero::before {
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 25, 54, 0.98), rgba(0, 25, 54, 0.78) 43%, rgba(0, 25, 54, 0.18)),
    linear-gradient(0deg, rgba(0, 25, 54, 0.08), rgba(0, 25, 54, 0.08));
}

.page-hero--about { --page-hero-image: url("assets/about-hero.png"); }
.page-hero--services { --page-hero-image: url("assets/services-hero.png"); }
.page-hero--capabilities { --page-hero-image: url("assets/home-hero-capitol.png"); }
.page-hero--performance { --page-hero-image: url("assets/about-team-field.png"); }
.page-hero--contact { --page-hero-image: url("assets/contact-hero.png"); }

.page-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: 46px 0;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p {
  margin: 0;
}

.page-hero h1 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.04;
  text-transform: uppercase;
}

.page-hero h1 span {
  color: var(--gold-bright);
}

.page-hero p:not(.eyebrow) {
  max-width: 610px;
  font-size: 17px;
  line-height: 1.65;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.service-promise {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 40%, rgba(45, 111, 172, 0.24), transparent 30%),
    linear-gradient(90deg, var(--navy-deep), var(--navy));
}

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

.service-promise article {
  min-height: 112px;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-content: center;
  padding: 18px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.service-promise article:first-child {
  border-left: 0;
}

.service-promise span {
  grid-row: span 2;
  color: var(--gold-bright);
  font-size: 34px;
  line-height: 1;
}

.service-promise strong {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
}

.service-promise p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.45;
}

.content-band {
  padding: 54px 0;
  background: #fff;
}

.content-band--soft {
  background: linear-gradient(180deg, #fff, #f4f7fb);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 48px;
}

.split-grid--reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.copy-block h2,
.contact-panel h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  text-transform: uppercase;
}

.copy-block p {
  margin: 16px 0 0;
  color: #152940;
  font-size: 16px;
  line-height: 1.7;
}

.feature-image {
  min-height: 330px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.feature-image--team { background-image: url("assets/about-team-field.png"); }
.feature-image--capitol { background-image: url("assets/home-hero-capitol.png"); }
.feature-image--contact { background-image: url("assets/contact-hero.png"); }

.values-grid,
.capabilities-grid,
.performance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.value-card,
.capability-card,
.performance-card {
  min-height: 220px;
  padding: 28px 24px;
  border: 1px solid rgba(6, 35, 72, 0.12);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(5, 25, 52, 0.08);
}

.value-card span,
.capability-card span,
.performance-card span,
.contact-method span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-bright);
  font-size: 28px;
}

.value-card h3,
.capability-card h3,
.performance-card h3,
.contact-method h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
}

.value-card p,
.capability-card p,
.performance-card p,
.contact-method p {
  margin: 0;
  color: #17273b;
  font-size: 14px;
  line-height: 1.65;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.service-detail-card {
  overflow: hidden;
  border: 1px solid rgba(6, 35, 72, 0.12);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(5, 25, 52, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 139, 33, 0.32);
  box-shadow: var(--shadow-strong);
}

.service-detail-card img {
  width: 100%;
  height: 162px;
  display: block;
  object-fit: cover;
}

.service-detail-card div {
  padding: 24px 20px 24px;
}

.service-detail-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.12;
  text-transform: uppercase;
}

.service-detail-card p,
.service-detail-card li {
  color: #17273b;
  font-size: 14px;
  line-height: 1.62;
}

.service-detail-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.dark-band {
  padding: 44px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 20%, rgba(45, 111, 172, 0.28), transparent 28%),
    linear-gradient(90deg, var(--navy-deep), var(--navy));
}

.dark-band h2 {
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  text-align: center;
  text-transform: uppercase;
}

.dark-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
}

.dark-list article {
  padding: 22px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.dark-list article:first-child {
  border-left: 0;
}

.dark-list h3 {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
}

.dark-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
}

.contact-method {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  margin-top: 24px;
}

.contact-method span {
  margin: 0;
}

.contact-method a {
  color: var(--navy);
  font-weight: 800;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #cfd8e3;
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.map-band {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  min-height: 260px;
  color: var(--white);
  background: var(--navy-deep);
}

.map-panel {
  padding: 42px;
  background:
    radial-gradient(circle at 20% 12%, rgba(45, 111, 172, 0.22), transparent 34%),
    linear-gradient(180deg, var(--navy), var(--navy-deep));
}

.map-panel h3 {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.map-panel p {
  margin: 0;
  line-height: 1.7;
}

.map-image {
  min-height: 260px;
  background-image: url("assets/contact-map.png");
  background-size: cover;
  background-position: center;
}

.page-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 46px;
  margin-bottom: 36px;
}

.page-intro__panel {
  padding: 30px;
  border-left: 4px solid var(--gold-bright);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(6, 35, 72, 0.05), rgba(214, 139, 33, 0.07)),
    #fff;
  box-shadow: 0 14px 32px rgba(5, 25, 52, 0.08);
}

.page-intro__panel h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  text-transform: uppercase;
}

.page-intro__panel p,
.page-intro__text p {
  margin: 16px 0 0;
  color: #17273b;
  font-size: 16px;
  line-height: 1.7;
}

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

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

.process-card {
  min-height: 190px;
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.process-card strong {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(235, 162, 45, 0.72);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--font-display);
}

.process-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.62;
}

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

.credential-card {
  padding: 24px 18px;
  border: 1px solid rgba(6, 35, 72, 0.12);
  border-radius: 7px;
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 32px rgba(5, 25, 52, 0.08);
}

.credential-card span {
  color: var(--gold-bright);
  font-size: 30px;
}

.credential-card h3 {
  margin: 12px 0 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
}

.credential-card p {
  min-height: 20px;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.4;
}

.performance-callout {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  align-items: end;
  padding: 34px;
  border-radius: 7px;
  background-image:
    linear-gradient(180deg, rgba(0, 25, 54, 0.08), rgba(0, 25, 54, 0.88)),
    url("assets/about-team-field.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  box-shadow: var(--shadow);
}

.performance-callout h2 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
}

.performance-callout p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-panel {
  padding: 32px;
  border: 1px solid rgba(6, 35, 72, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-panel > .eyebrow {
  margin: 0 0 8px;
}

.contact-panel h2 {
  margin-bottom: 22px;
}

@media (max-width: 1080px) {
  .brand {
    width: 280px;
  }

  .nav {
    gap: 18px;
  }

  .nav__menu {
    gap: 18px;
  }

  .nav__cta {
    display: none;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 30px, 720px);
  }

  .topbar__inner,
  .topbar__links,
  .cta-strip__inner,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar__inner {
    padding: 8px 0;
    gap: 6px;
  }

  .topbar__links {
    gap: 4px;
  }

  .nav {
    position: relative;
    min-height: 82px;
    width: min(100% - 30px, 720px);
  }

  .nav__toggle {
    display: block;
    margin-left: auto;
  }

  .nav__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 2px);
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 14px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav__menu.open {
    display: flex;
  }

  .nav__menu a {
    padding: 14px 0;
  }

  .nav__mobile-quote {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--gold-bright), #bd7519);
    color: var(--white) !important;
  }

  .nav__mobile-quote::after {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: 530px;
  }

  .hero__media {
    background-position: 62% center;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(0, 25, 54, 0.98), rgba(0, 25, 54, 0.7));
  }

  .proof-strip__grid,
  .capability-band__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip article:nth-child(odd),
  .capability-band article:nth-child(odd) {
    border-left: 0;
  }

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

  .about-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  blockquote {
    right: 12px;
  }

  .cta-strip__inner {
    padding: 22px 0;
  }

  .footer__bottom {
    padding: 14px 0;
  }
}

@media (max-width: 640px) {
  .service-grid,
  .proof-strip__grid,
  .capability-band__grid {
    grid-template-columns: 1fr;
  }

  .proof-strip article,
  .capability-band article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .proof-strip article:first-child,
  .capability-band article:first-child {
    border-top: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 460px);
  }

  .topbar {
    font-size: 11px;
  }

  .topbar b {
    margin: 0 5px;
  }

  .brand {
    width: min(72vw, 320px);
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero__actions,
  .button,
  .cta-strip__inner .button {
    width: 100%;
  }

  .section {
    padding-top: 34px;
  }

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

  .service-card__media {
    height: 190px;
  }

  .about-image {
    min-height: 250px;
  }

  blockquote {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 22px);
    margin: -42px auto 0;
  }

  .footer__bottom div {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 700px) {
  body {
    background: #fff;
  }

  .container {
    width: min(100% - 28px, 520px);
  }

  .topbar {
    font-size: 10px;
    letter-spacing: 0.01em;
  }

  .topbar__inner {
    min-height: 0;
    padding: 7px 0;
    align-items: center;
    text-align: center;
  }

  .topbar p {
    width: 100%;
  }

  .topbar__links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    font-size: 11px;
    font-weight: 800;
  }

  .nav {
    min-height: 74px;
    padding: 8px 0;
    gap: 12px;
  }

  .brand {
    width: min(68vw, 260px);
  }

  .nav__toggle {
    width: 42px;
    height: 38px;
    border-color: rgba(6, 35, 72, 0.18);
    box-shadow: 0 8px 18px rgba(5, 25, 52, 0.08);
  }

  .nav__menu {
    top: 100%;
    padding: 10px 18px 16px;
    border-radius: 0 0 8px 8px;
  }

  .nav__menu a {
    font-size: 13px;
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero {
    background: var(--navy-deep);
  }

  .hero__media {
    background-position: 66% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(0, 25, 54, 0.18) 0%, rgba(0, 25, 54, 0.8) 42%, rgba(0, 25, 54, 0.98) 100%),
      linear-gradient(90deg, rgba(0, 25, 54, 0.82), rgba(0, 25, 54, 0.24));
  }

  .hero__inner {
    position: relative;
    z-index: 1;
    justify-content: flex-end;
    padding: 164px 0 34px;
  }

  .hero__inner::before {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 18px;
    height: calc(100% - 138px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(0, 25, 54, 0.72);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(2px);
  }

  .hero__inner > * {
    position: relative;
    z-index: 1;
    margin-left: 18px;
    margin-right: 18px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.05;
  }

  .accent-line {
    margin: 17px 18px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.58;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: calc(100% - 36px);
    margin-top: 22px;
  }

  .button {
    min-height: 48px;
    width: 100%;
    padding: 0 18px;
  }

  .proof-strip {
    overflow: hidden;
  }

  .proof-strip__grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px 0;
    scroll-snap-type: x proximity;
  }

  .proof-strip article {
    min-width: 220px;
    min-height: 76px;
    justify-content: flex-start;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    scroll-snap-align: start;
  }

  .proof-strip article:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .proof-strip span {
    font-size: 29px;
  }

  .proof-strip strong {
    font-size: 12px;
  }

  .section {
    padding: 34px 0 28px;
  }

  .section__heading {
    margin-bottom: 20px;
  }

  .section__heading h2,
  .about-copy h2 {
    font-size: clamp(25px, 8vw, 32px);
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: 0;
    border-radius: 8px;
    box-shadow: 0 14px 32px rgba(5, 25, 52, 0.13);
  }

  .service-card:hover {
    transform: none;
  }

  .service-card__media {
    height: 176px;
  }

  .service-card h3 {
    min-height: 0;
    font-size: 18px;
  }

  .service-card p {
    max-width: 310px;
    margin-inline: auto;
    padding: 0 12px;
    font-size: 13px;
  }

  .capability-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px 0;
  }

  .capability-band article {
    min-height: 104px;
    padding: 16px 10px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .capability-band article:nth-child(1),
  .capability-band article:nth-child(2) {
    border-top: 0;
  }

  .capability-band article:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }

  .capability-band span {
    font-size: 28px;
  }

  .about-section {
    padding: 34px 0 40px;
  }

  .about-grid {
    gap: 28px;
  }

  .about-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .about-image {
    min-height: 260px;
    border-radius: 8px;
    background-position: 54% center;
  }

  blockquote {
    width: calc(100% - 24px);
    padding: 20px 20px 20px 50px;
    border-radius: 8px;
    font-size: 14px;
  }

  blockquote span {
    left: 22px;
  }

  .cta-strip__inner {
    min-height: 0;
    padding: 32px 0;
    align-items: stretch;
  }

  .cta-strip h2 {
    font-size: 25px;
  }

  .cta-strip p {
    font-size: 16px;
  }

  .footer {
    padding-top: 38px;
  }

  .footer__grid {
    gap: 24px;
    padding-bottom: 32px;
  }

  .brand--footer {
    width: 140px;
  }

  .footer__bottom {
    align-items: flex-start;
  }
}

@media (max-width: 1080px) {
  .values-grid,
  .capabilities-grid,
  .performance-grid,
  .service-detail-grid,
  .service-detail-grid--featured,
  .process-grid,
  .credential-grid,
  .service-promise__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dark-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .page-hero,
  .page-hero__inner {
    min-height: 360px;
  }

  .page-hero::after {
    background:
      linear-gradient(180deg, rgba(0, 25, 54, 0.36), rgba(0, 25, 54, 0.96)),
      linear-gradient(90deg, rgba(0, 25, 54, 0.82), rgba(0, 25, 54, 0.25));
  }

  .split-grid,
  .split-grid--reverse,
  .contact-grid,
  .map-band,
  .page-intro {
    grid-template-columns: 1fr;
  }

  .map-panel {
    padding: 30px 24px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .service-promise article:nth-child(odd) {
    border-left: 0;
  }

  .dark-list {
    grid-template-columns: 1fr;
  }

  .dark-list article,
  .dark-list article:first-child {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .dark-list article:first-child {
    border-top: 0;
  }
}

@media (max-width: 640px) {
  .content-band {
    padding: 40px 0;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 15px;
  }

  .values-grid,
  .capabilities-grid,
  .performance-grid,
  .contact-form,
  .process-grid,
  .credential-grid,
  .service-promise__grid {
    grid-template-columns: 1fr;
  }

  .page-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-promise article,
  .service-promise article:nth-child(odd) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .service-promise article:first-child {
    border-top: 0;
  }

  .feature-image {
    min-height: 260px;
  }

  .contact-method {
    grid-template-columns: 52px 1fr;
  }

  .contact-method span {
    width: 52px;
    height: 52px;
  }

  .page-intro__panel,
  .contact-panel,
  .performance-callout {
    padding: 24px;
  }
}
