:root {
  --black: #000000;
  --red: #bf0909;
  --white: #ffffff;
  --ink: #0b0b0b;
  --gray-900: #151515;
  --gray-700: #383838;
  --gray-500: #717171;
  --gray-300: #d9d9d9;
  --gray-100: #f2f2f2;
  --container: 1160px;
  --radius: 8px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
  font-family: Carlito, Calibri, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-700);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--black);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(191, 9, 9, 0.78), transparent);
  opacity: 0.7;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  color: var(--white);
  background: var(--black);
  font-family: Poppins, Arial, sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 75%;
  height: 75%;
  border-right: 7px solid var(--red);
  border-bottom: 7px solid var(--red);
  z-index: -1;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
  color: var(--black);
  font-family: Poppins, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.brand-copy small {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--gray-700);
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--red);
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta):focus-visible::after,
.nav-links a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px !important;
  color: var(--white) !important;
  background: var(--black);
  border: 1px solid var(--black);
}

.nav-cta.is-active,
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

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

.nav-toggle-line {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--red), transparent 62%);
  z-index: 1;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.1) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 170px 0 92px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-family: Poppins, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--black);
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(56px, 8vw, 118px);
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  max-width: 760px;
  font-size: clamp(32px, 4.3vw, 58px);
  font-weight: 700;
}

h3 {
  font-size: 21px;
  font-weight: 700;
}

.hero-lede {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(19px, 2vw, 25px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 18px 35px rgba(191, 9, 9, 0.24);
}

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

.section {
  padding: 104px 0;
}

.muted-section {
  background:
    linear-gradient(135deg, rgba(191, 9, 9, 0.04), transparent 34%),
    var(--gray-100);
}

.page-hero {
  position: relative;
  padding: 164px 0 92px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(191, 9, 9, 0.09), transparent 34%),
    linear-gradient(180deg, var(--white), var(--gray-100));
}

.page-hero::before {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  width: 170px;
  height: 6px;
  background: var(--red);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 60px;
  align-items: end;
}

.page-hero h1 {
  max-width: 860px;
  color: var(--black);
  font-size: clamp(42px, 6vw, 78px);
}

.page-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--gray-700);
  font-size: 20px;
}

.page-hero-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(191, 9, 9, 0.32), transparent 38%),
    linear-gradient(180deg, #111, #000);
}

.page-hero-dark h1,
.page-hero-dark p:not(.eyebrow) {
  color: var(--white);
}

.page-hero-dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.signal-bar {
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1px;
}

.signal-grid p,
.signal-grid span {
  margin: 0;
  padding: 26px 24px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
}

.signal-grid p {
  color: var(--red);
  background: rgba(191, 9, 9, 0.12);
}

.intro-strip {
  padding: 34px 0;
  color: var(--white);
  background: var(--black);
}

.intro-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}

.intro-grid p {
  margin: 0;
}

.intro-kicker {
  color: var(--white);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.split,
.proof-grid,
.leadership-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 64px;
  align-items: center;
}

.section-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: 18px;
}

.image-panel,
.leader-photo,
.feature-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img,
.leader-photo img,
.feature-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.feature-panel {
  position: relative;
  background: var(--black);
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 18px;
  width: 88px;
  height: 88px;
  border-top: 5px solid var(--red);
  border-left: 5px solid var(--red);
  z-index: 1;
}

.feature-panel-media img {
  min-height: 440px;
}

.feature-panel-caption {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  color: var(--white);
  background: var(--black);
}

.feature-panel-caption strong {
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
}

.feature-panel-caption span {
  color: rgba(255, 255, 255, 0.7);
}

.mission-section {
  background: var(--gray-100);
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 70px;
  align-items: end;
}

.mission-grid p:last-child {
  margin: 0;
  font-size: 20px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 44px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-grid-large {
  gap: 24px;
}

.service-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, var(--white), rgba(242, 242, 242, 0.45));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.process-grid,
.deliverable-grid,
.sector-detail-grid,
.capability-grid,
.contact-prep-grid {
  display: grid;
  gap: 22px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: process;
}

.deliverable-grid,
.capability-grid {
  grid-template-columns: repeat(4, 1fr);
}

.sector-detail-grid,
.contact-prep-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-step,
.deliverable-grid article,
.sector-detail-grid article,
.capability-grid article,
.contact-prep-grid article {
  position: relative;
  min-height: 240px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.process-step::after,
.deliverable-grid article::after,
.sector-detail-grid article::after,
.capability-grid article::after,
.contact-prep-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 180ms ease;
}

.process-step:hover::after,
.deliverable-grid article:hover::after,
.sector-detail-grid article:hover::after,
.capability-grid article:hover::after,
.contact-prep-grid article:hover::after {
  transform: scaleX(1);
}

.process-step span,
.deliverable-grid span,
.capability-grid span,
.contact-prep-grid span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--red);
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.process-step p,
.deliverable-grid p,
.sector-detail-grid p,
.capability-grid p,
.contact-prep-grid p {
  margin: 16px 0 0;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.metric-intro h2 {
  color: var(--white);
}

.metric-card {
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.metric-card strong {
  color: var(--white);
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.metric-card span {
  color: rgba(255, 255, 255, 0.72);
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.narrative-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: start;
}

.narrative-grid h2 {
  color: var(--white);
}

.narrative-list {
  display: grid;
  gap: 18px;
}

.narrative-list p {
  margin: 0;
  padding: 24px;
  border-left: 4px solid var(--red);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.narrative-list strong {
  color: var(--white);
  font-family: Poppins, Arial, sans-serif;
}

.reverse-split {
  grid-template-columns: 0.95fr 1fr;
}

.quote-panel {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(191, 9, 9, 0.42), transparent 42%),
    var(--black);
  box-shadow: var(--shadow);
}

.quote-panel::before {
  content: "GK";
  position: absolute;
  top: 10px;
  right: 22px;
  color: rgba(255, 255, 255, 0.08);
  font-family: Poppins, Arial, sans-serif;
  font-size: 128px;
  font-weight: 700;
  line-height: 1;
}

.quote-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
}

.quote-panel-light {
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(191, 9, 9, 0.12), transparent 45%),
    var(--white);
}

.quote-panel-light::before {
  color: rgba(0, 0, 0, 0.06);
}

.sector-detail-grid article {
  min-height: 260px;
  background:
    linear-gradient(180deg, var(--white), rgba(242, 242, 242, 0.55));
}

.audience-grid,
.faq-grid,
.expertise-band {
  display: grid;
  gap: 18px;
}

.audience-grid,
.faq-grid {
  grid-template-columns: repeat(3, 1fr);
}

.expertise-band {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.audience-grid article,
.faq-grid details {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  background: var(--white);
}

.audience-grid article {
  min-height: 240px;
  padding: 30px;
}

.audience-grid article h3 {
  padding-bottom: 18px;
  border-bottom: 3px solid var(--red);
}

.audience-grid article p {
  margin: 20px 0 0;
}

.seo-split,
.related-layout,
.image-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.seo-list {
  display: grid;
  gap: 14px;
}

.seo-list p {
  margin: 0;
  padding: 22px 24px;
  border-left: 4px solid var(--red);
  background: var(--white);
}

.related-layout {
  align-items: start;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.related-links a {
  min-height: 112px;
  display: flex;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  color: var(--black);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 700;
  background:
    linear-gradient(135deg, rgba(191, 9, 9, 0.09), transparent 50%),
    var(--white);
  transition: transform 180ms ease, border-color 180ms ease;
}

.related-links a:hover,
.related-links a:focus-visible {
  transform: translateY(-3px);
  border-color: var(--red);
}

.image-story {
  align-items: stretch;
}

.story-image,
.story-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.story-card {
  display: grid;
  align-content: center;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(191, 9, 9, 0.08), transparent 42%),
    var(--white);
}

.story-card-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(191, 9, 9, 0.3), transparent 42%),
    var(--black);
}

.story-card-dark h2 {
  color: var(--white);
}

.story-card p:not(.eyebrow) {
  margin: 22px 0 0;
  font-size: 18px;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.keyword-row span,
.expertise-band span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(191, 9, 9, 0.24);
  color: var(--red);
  font-family: Poppins, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(191, 9, 9, 0.06);
}

.expertise-band span {
  min-height: 86px;
  justify-content: center;
  text-align: center;
  color: var(--black);
  border-color: var(--gray-300);
  background: var(--white);
}

.faq-section .section-heading {
  margin-bottom: 34px;
}

.faq-grid details {
  min-height: 190px;
  overflow: hidden;
}

.faq-grid summary {
  cursor: pointer;
  padding: 24px 24px 18px;
  color: var(--black);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.28;
}

.faq-grid summary::marker {
  color: var(--red);
}

.faq-grid details p {
  margin: 0;
  padding: 0 24px 24px;
}

.service-card span {
  display: block;
  margin-bottom: 44px;
  color: var(--red);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 700;
}

.service-card p {
  margin: 18px 0 0;
}

.dark-section {
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(191, 9, 9, 0.22), transparent 36%),
    var(--black);
}

.dark-section h2 {
  color: var(--white);
}

.sectors-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: center;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sector-list span {
  position: relative;
  overflow: hidden;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid var(--red);
  color: var(--white);
  font-family: Poppins, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}

.sector-list span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(191, 9, 9, 0.18), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.sector-list span:hover::after {
  opacity: 1;
}

.sector-list-rich span {
  min-height: 96px;
  display: flex;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 18px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--red);
}

.leader-photo img {
  object-position: center top;
}

.contact-section {
  padding: 104px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(191, 9, 9, 0.24), transparent 35%),
    var(--black);
}

.contact-section h1,
.contact-section h2 {
  color: var(--white);
}

.contact-section h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.08;
}

.contact-section p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-details a {
  color: var(--white);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-700);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--gray-300);
  border-radius: 0;
  padding: 12px 13px;
  color: var(--black);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(191, 9, 9, 0.24);
  border-color: var(--red);
}

.contact-form .button {
  width: 100%;
  border-radius: 0;
}

.contact-page {
  min-height: calc(100vh - 120px);
  display: grid;
  align-items: center;
  padding-top: 166px;
}

.contact-details-large {
  gap: 16px;
}

.contact-details-large a {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.highlight-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.highlight-card,
.value-card {
  display: block;
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  color: var(--gray-700);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.highlight-card:hover,
.highlight-card:focus-visible,
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.highlight-card span,
.value-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--red);
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.highlight-card h3 {
  margin-bottom: 16px;
}

.highlight-card p,
.value-card p {
  margin: 0;
}

.cta-band {
  padding: 76px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(191, 9, 9, 0.34), transparent 48%),
    var(--black);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 50px);
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--gray-300);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand .brand-mark {
  width: 46px;
  font-size: 21px;
}

.footer-brand .brand-copy {
  font-size: 22px;
}

.footer-layout p {
  margin: 0;
  color: var(--gray-500);
}

.footer-layout p a {
  color: var(--black);
  font-weight: 700;
  border-bottom: 1px solid var(--red);
}

.footer-layout p a:hover,
.footer-layout p a:focus-visible {
  color: var(--red);
}

.footer-social {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: #0a66c2;
  border: 1px solid #0a66c2;
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-social:hover,
.footer-social:focus-visible {
  transform: translateY(-2px);
  background: #004182;
  border-color: #004182;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 26px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-300);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

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

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

  .split,
  .proof-grid,
  .leadership-layout,
  .contact-layout,
  .mission-grid,
  .sectors-layout,
  .intro-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-grid,
  .highlight-grid,
  .value-grid,
  .process-grid,
  .deliverable-grid,
  .sector-detail-grid,
  .capability-grid,
  .contact-prep-grid,
  .metric-grid,
  .audience-grid,
  .faq-grid,
  .expertise-band,
  .related-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-intro,
  .narrative-grid {
    grid-column: 1 / -1;
  }

  .narrative-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .seo-split,
  .related-layout,
  .image-story {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .cta-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy {
    font-size: 22px;
  }

  .brand-copy small {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .brand-mark {
    width: 48px;
    font-size: 22px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding: 132px 0 64px;
  }

  h1 {
    font-size: 52px;
  }

  .page-hero {
    padding: 132px 0 64px;
  }

  .page-hero h1,
  .contact-section h1 {
    font-size: 42px;
  }

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .service-grid,
  .sector-list,
  .highlight-grid,
  .value-grid,
  .signal-grid,
  .process-grid,
  .deliverable-grid,
  .sector-detail-grid,
  .capability-grid,
  .contact-prep-grid,
  .metric-grid,
  .audience-grid,
  .faq-grid,
  .expertise-band,
  .related-links {
    grid-template-columns: 1fr;
  }

  .signal-grid p,
  .signal-grid span {
    padding: 18px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-card span {
    margin-bottom: 28px;
  }

  .image-panel img,
  .leader-photo img,
  .feature-panel img {
    min-height: 320px;
  }

  .highlight-card,
  .value-card,
  .process-step,
  .deliverable-grid article,
  .sector-detail-grid article,
  .capability-grid article,
  .contact-prep-grid article,
  .audience-grid article {
    min-height: auto;
    padding: 24px;
  }

  .highlight-card span,
  .value-card span,
  .process-step span,
  .deliverable-grid span,
  .capability-grid span,
  .contact-prep-grid span {
    margin-bottom: 28px;
  }

  .metric-card,
  .quote-panel,
  .story-image img {
    min-height: 260px;
  }

  .story-card {
    padding: 28px;
  }

  .faq-grid details {
    min-height: auto;
  }

  .contact-page {
    padding-top: 132px;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}
