:root {
  color-scheme: light;
  --navy-950: #07121f;
  --navy-900: #0a1b2b;
  --navy-850: #0e2438;
  --navy-800: #14314a;
  --blue-700: #1a587f;
  --blue-600: #2475a4;
  --blue-100: #deedf5;
  --red-600: #b82733;
  --red-500: #d33b47;
  --red-100: #f8e1e3;
  --slate-900: #182631;
  --slate-700: #425462;
  --slate-500: #70808a;
  --slate-300: #c9d2d8;
  --slate-200: #e2e8eb;
  --slate-100: #f2f5f6;
  --paper: #f6f8f9;
  --white: #fdfefe;
  --gold: #caa66b;
  --shadow-sm: 0 12px 34px rgba(7, 18, 31, 0.07);
  --shadow-lg: 0 30px 80px rgba(7, 18, 31, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 12px;
  --container: 1240px;
  --sans: "Avenir Next", Avenir, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --serif: "Avenir Next", Avenir, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--slate-900);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
  line-height: 1.12;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--slate-700);
}

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

.section {
  padding: 104px 0;
}

.section-compact {
  padding: 76px 0;
}

.section-dark {
  background: var(--navy-900);
  color: var(--white);
}

.section-soft {
  background: #f0f4f6;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  transform: translateY(-150%);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--red-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 27px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #9ec4de;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: 18px;
  align-items: start;
  margin-bottom: 58px;
}

.section-intro h2 {
  margin: 0;
}

.section-intro > p {
  max-width: 680px;
  margin: 0;
  line-height: 1.75;
}

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

.section-intro-light > p {
  color: rgba(255, 255, 255, 0.61);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 22px;
  border: 1px solid var(--red-600);
  border-radius: var(--radius-sm);
  background: var(--red-600);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--red-500);
  background: var(--red-500);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.arrow-link:focus-visible {
  outline: 3px solid rgba(36, 117, 164, 0.42);
  outline-offset: 4px;
}

.button svg,
.arrow-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-900);
}

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

.button-navy:hover {
  border-color: var(--blue-700);
  background: var(--blue-700);
}

.button-small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.71rem;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-600);
  font-size: 0.76rem;
  font-weight: 820;
  text-decoration: none;
}

.arrow-link:hover svg {
  transform: translateX(4px);
}

.arrow-link svg {
  transition: transform 160ms ease;
}

/* Header */
.topbar {
  position: relative;
  z-index: 90;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.67);
}

.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar a {
  text-decoration: none;
}

.topbar a:hover {
  color: var(--white);
}

.topbar-emergency {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-weight: 750;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4fd48c;
  box-shadow: 0 0 0 4px rgba(79, 212, 140, 0.12);
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(9, 24, 39, 0.09);
  background: rgba(253, 254, 254, 0.94);
  box-shadow: 0 6px 26px rgba(6, 17, 29, 0.04);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--red-600);
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 26px 0;
  color: var(--slate-700);
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--red-600);
  content: "";
  transition: transform 170ms ease;
}

.site-nav > a:is(:hover, .active)::after {
  transform: scaleX(1);
}

.site-nav > a.active {
  color: var(--navy-900);
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(690px, calc(100dvh - 106px));
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

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

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

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 31, 0.98) 0%, rgba(7, 18, 31, 0.9) 45%, rgba(7, 18, 31, 0.42) 76%, rgba(7, 18, 31, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 17, 29, 0.42), transparent 50%);
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(690px, calc(100dvh - 106px));
  grid-template-columns: minmax(0, 690px) 1fr;
  align-items: center;
  padding-block: 72px;
}

.hero-copy {
  animation: hero-enter 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: #afd1e6;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 28px;
  height: 2px;
  background: var(--red-500);
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(3.45rem, 6vw, 5.9rem);
  line-height: 0.96;
}

.hero h1 em {
  color: #b9d8eb;
  font-weight: 600;
  line-height: 1.1;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 720px;
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  padding-top: 24px;
}

.hero-assurance div {
  display: grid;
  gap: 3px;
}

.hero-assurance strong {
  color: var(--white);
  font-size: 0.72rem;
}

.hero-assurance span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
}

.hero-side-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(410px, 34vw);
  min-height: 112px;
  align-items: center;
  gap: 18px;
  background: var(--red-600);
  padding: 24px 34px;
}

.hero-side-note svg {
  width: 34px;
  min-width: 34px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.3;
}

.hero-side-note div {
  display: grid;
  gap: 3px;
}

.hero-side-note strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
}

.hero-side-note span {
  color: rgba(255, 255, 255, 0.71);
  font-size: 0.66rem;
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

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

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 17, 29, 0.97), rgba(6, 17, 29, 0.68) 62%, rgba(6, 17, 29, 0.4));
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 400px;
  max-width: 850px;
  flex-direction: column;
  justify-content: center;
  padding-block: 68px;
}

.page-hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(3rem, 5.2vw, 5.2rem);
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: #b4d0e1;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.35);
}

/* Stats */
.stats-strip {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.stat {
  display: grid;
  min-height: 148px;
  align-content: center;
  gap: 6px;
  border-right: 1px solid var(--slate-200);
  padding: 28px 34px;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--navy-900);
  font-family: var(--sans);
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1;
}

.stat span {
  color: var(--slate-500);
  font-size: 0.69rem;
  font-weight: 700;
}

/* Cards and services */
.pillar-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.pillar-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.pillar-card:first-child {
  grid-row: span 2;
  min-height: 880px;
}

.pillar-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.43;
  transition:
    transform 450ms ease,
    opacity 300ms ease;
}

.pillar-card:hover img {
  transform: scale(1.04);
  opacity: 0.5;
}

.pillar-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 17, 29, 0.98) 4%, rgba(6, 17, 29, 0.5) 72%, rgba(6, 17, 29, 0.28));
  content: "";
}

.pillar-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.pillar-index {
  display: inline-grid;
  width: 35px;
  height: 35px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 850;
}

.pillar-content h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 650;
}

.pillar-content p {
  margin-bottom: 21px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.81rem;
  line-height: 1.7;
}

.pillar-content .arrow-link {
  color: #b9d8eb;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 9%;
  align-items: center;
}

.service-band-media {
  position: relative;
  min-height: 560px;
}

.service-band-media img {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.service-band-badge {
  position: absolute;
  right: -30px;
  bottom: 34px;
  display: grid;
  width: 190px;
  min-height: 150px;
  align-content: center;
  gap: 7px;
  border-radius: var(--radius-sm);
  background: var(--red-600);
  padding: 26px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.service-band-badge strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.service-band-badge span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
}

.service-band-copy > p:not(.eyebrow) {
  max-width: 590px;
  line-height: 1.8;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 26px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate-700);
  font-size: 0.78rem;
}

.check-list li::before {
  display: grid;
  width: 18px;
  height: 18px;
  min-width: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--red-100);
  color: var(--red-600);
  content: "✓";
  font-size: 0.63rem;
  font-weight: 900;
}

.feature-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px 0;
}

.feature-row > span {
  color: var(--red-500);
  font-size: 0.68rem;
  font-weight: 850;
}

.feature-row h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.feature-row p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

/* Sectors */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sector {
  min-height: 180px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.sector:hover {
  background: var(--navy-900);
}

.sector svg {
  width: 31px;
  margin-bottom: 33px;
  fill: none;
  stroke: var(--red-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.sector h3 {
  margin-bottom: 4px;
  font-size: 0.91rem;
}

.sector span {
  color: var(--slate-500);
  font-size: 0.68rem;
}

.sector:hover h3,
.sector:hover span {
  color: var(--white);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 430px));
  gap: 22px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.team-photo {
  height: 410px;
  overflow: hidden;
  background: var(--slate-100);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 350ms ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.025);
}

.team-card:nth-child(3) .team-photo img {
  object-position: center 22%;
}

.team-info {
  display: grid;
  gap: 4px;
  border-top: 3px solid var(--red-600);
  padding: 24px;
}

.team-info h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 650;
}

.team-info strong {
  color: var(--red-600);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-info span {
  color: var(--slate-500);
  font-size: 0.72rem;
}

/* Content layouts */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9%;
  align-items: start;
}

.split-center {
  align-items: center;
}

.prose p {
  line-height: 1.85;
}

.prose p:last-child {
  margin-bottom: 0;
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  min-height: 500px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 48%;
  border-radius: var(--radius-sm);
  background: var(--red-600);
  content: "";
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.mission-card {
  min-height: 330px;
  border-radius: var(--radius-md);
  padding: clamp(30px, 4vw, 48px);
}

.mission-card:first-child {
  background: var(--navy-900);
}

.mission-card:last-child {
  border: 1px solid var(--slate-200);
  background: var(--white);
}

.mission-card .eyebrow {
  margin-bottom: 48px;
}

.mission-card:first-child h3 {
  color: var(--white);
}

.mission-card h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.mission-card p {
  margin: 0;
  line-height: 1.8;
}

.mission-card:first-child p {
  color: rgba(255, 255, 255, 0.61);
}

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

.value-card {
  min-height: 260px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 34px;
}

.value-index {
  display: block;
  margin-bottom: 43px;
  color: var(--red-600);
  font-size: 0.67rem;
  font-weight: 850;
}

.value-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.value-card p {
  margin: 0;
  font-size: 0.77rem;
}

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

.process-step {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 29px;
}

.process-step::after {
  position: absolute;
  right: -30px;
  bottom: -48px;
  color: var(--slate-100);
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  content: attr(data-step);
}

.process-step > * {
  position: relative;
  z-index: 1;
}

.process-step > span {
  display: block;
  margin-bottom: 44px;
  color: var(--red-600);
  font-size: 0.67rem;
  font-weight: 850;
}

.process-step p {
  margin: 0;
  font-size: 0.76rem;
}

/* Detailed services */
.service-section {
  scroll-margin-top: 90px;
}

.service-heading {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
  margin-bottom: 48px;
}

.service-heading-index {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--slate-300);
  border-radius: 50%;
  color: var(--red-600);
  font-size: 0.7rem;
  font-weight: 850;
}

.service-heading h2 {
  margin: 0;
}

.service-heading > p {
  margin: 7px 0 0;
  line-height: 1.8;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-detail {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  min-height: 172px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 25px;
}

.service-detail-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--red-100);
  color: var(--red-600);
}

.service-detail-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.service-detail h3 {
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 500;
}

.service-detail p {
  margin: 0;
  font-size: 0.75rem;
}

.service-feature {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.service-feature img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.service-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 17, 29, 0.9), rgba(6, 17, 29, 0.05) 70%);
  content: "";
}

.service-feature-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.service-feature-caption h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.service-feature-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
}

/* Products */
.product-category {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 8%;
  align-items: start;
  border-top: 1px solid var(--slate-200);
  padding: 56px 0;
}

.product-category:last-child {
  border-bottom: 1px solid var(--slate-200);
}

.product-category h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.product-category > div:first-child > p {
  max-width: 400px;
}

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

.product-item {
  min-height: 185px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 26px;
}

.product-item span {
  display: block;
  margin-bottom: 28px;
  color: var(--red-600);
  font-size: 0.65rem;
  font-weight: 850;
}

.product-item h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.product-item p {
  margin: 0;
  font-size: 0.73rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 9%;
  align-items: start;
}

.contact-details {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid var(--slate-200);
}

.contact-detail {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--slate-200);
  padding: 18px 0;
}

.contact-detail span {
  color: var(--slate-500);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
}

.contact-form h2 {
  margin-bottom: 4px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-form > p {
  margin: 0 0 12px;
  font-size: 0.77rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: var(--slate-700);
  font-size: 0.74rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  outline: none;
  background: #fcfdfd;
  padding: 12px 13px;
  color: var(--slate-900);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(29, 102, 153, 0.12);
}

.contact-form .invalid {
  border-color: var(--red-600);
}

.form-note {
  margin: -4px 0 0;
  color: var(--slate-500);
  font-size: 0.64rem;
  text-align: center;
}

.form-status {
  display: none;
  border-radius: var(--radius-sm);
  background: #e3f4ec;
  padding: 12px 14px;
  color: #23644a;
  font-size: 0.74rem;
  font-weight: 750;
  text-align: center;
}

.form-status.visible {
  display: block;
}

.map-panel {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(rgba(9, 24, 39, 0.93), rgba(9, 24, 39, 0.93)),
    url("images/corporate-building.jpg") center / cover;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(500px) rotateX(56deg) scale(1.5);
}

.map-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 330px;
  place-content: center;
  color: var(--white);
  text-align: center;
}

.map-pin {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  background: var(--red-600);
}

.map-pin svg {
  width: 27px;
  transform: rotate(45deg);
  fill: none;
  stroke: var(--white);
  stroke-width: 1.5;
}

.map-content strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

.map-content span {
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.73rem;
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.cta-section::before {
  position: absolute;
  top: -240px;
  right: -130px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.025),
    0 0 0 180px rgba(255, 255, 255, 0.018);
  content: "";
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 52px;
  align-items: center;
}

.cta-inner h2 {
  max-width: 850px;
  margin-bottom: 18px;
  color: var(--white);
}

.cta-inner p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.cta-actions {
  display: grid;
  gap: 10px;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.59);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr 0.8fr 0.85fr;
  gap: 55px;
  padding: 68px 0 50px;
}

.footer-brand .brand {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.71rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 23px 0 29px;
  font-size: 0.62rem;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

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

/* Content reveals communicate reading order without affecting layout or keyboard access. */
.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .section {
    padding: 92px 0;
  }

  .site-nav {
    gap: 20px;
  }

  .hero-side-note {
    display: none;
  }

  .pillar-card {
    min-height: 390px;
  }

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

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

  .service-heading {
    grid-template-columns: 70px 1fr;
  }

  .service-heading > p {
    grid-column: 2;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .topbar-group:last-child span:not(.topbar-emergency) {
    display: none;
  }

  .nav-shell {
    min-height: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 4;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: var(--navy-900);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] {
    color: var(--white);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    background: var(--navy-950);
    padding: 90px 28px 44px;
    color: var(--white);
    pointer-events: none;
    transition:
      opacity 220ms ease,
      visibility 220ms ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav > a:not(.button) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 16px 0;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 500;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 25px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-inner {
    min-height: 680px;
    grid-template-columns: 1fr;
    padding-block: 78px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 13vw, 5.6rem);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .section-intro > p {
    max-width: 520px;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--slate-200);
  }

  .pillar-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card:first-child {
    grid-row: auto;
    min-height: 420px;
  }

  .pillar-card {
    min-height: 360px;
  }

  .service-band,
  .split,
  .contact-layout,
  .product-category {
    grid-template-columns: 1fr;
  }

  .service-band-media {
    margin-bottom: 20px;
  }

  .service-band-badge {
    right: 20px;
  }

  .split .image-frame {
    order: -1;
  }

  .team-photo {
    height: 520px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 76px 0;
  }

  .section-compact {
    padding: 58px 0;
  }

  h2 {
    font-size: 2.65rem;
  }

  .topbar-inner {
    min-height: 34px;
  }

  .topbar-group:first-child span {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy span {
    font-size: 0.47rem;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .hero,
  .hero-inner {
    min-height: 610px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.2rem);
  }

  .hero-assurance {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .page-hero,
  .page-hero-inner {
    min-height: 390px;
  }

  .page-hero h1 {
    font-size: 3.3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2) {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--slate-200);
    padding-inline: 0;
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .service-band-media,
  .service-band-media img {
    min-height: 420px;
    height: 420px;
  }

  .service-band-badge {
    right: 12px;
    bottom: 18px;
    width: 165px;
  }

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

  .sector-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .sector {
    min-height: 148px;
    border-right: 0;
    padding-inline: 0;
  }

  .team-photo {
    height: 430px;
  }

  .mission-card {
    min-height: auto;
  }

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

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

  .service-heading > p {
    grid-column: auto;
  }

  .service-heading-index {
    width: 46px;
    height: 46px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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