:root {
  --bg: #f3f6f8;
  --surface: #ffffff;
  --surface-alt: #edf3f6;
  --surface-strong: #dfe9ee;
  --text: #173042;
  --muted: #5e6d79;
  --line: rgba(23, 48, 66, 0.12);
  --line-strong: rgba(23, 48, 66, 0.18);
  --brand: #0f4c5c;
  --brand-strong: #0a3641;
  --accent: #d79c2f;
  --accent-strong: #ba8322;
  --shadow: 0 20px 55px rgba(18, 40, 54, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(15, 76, 92, 0.08), transparent 30%),
    linear-gradient(180deg, #f7fafb 0%, var(--bg) 50%, #eef4f7 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

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

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

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

main p,
main li {
  max-width: 68ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(247, 250, 251, 0.88);
  border-bottom: 1px solid rgba(23, 48, 66, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(8, 27, 35, 0.64), rgba(8, 27, 35, 0.12));
  border-bottom: 0;
  backdrop-filter: blur(14px);
}

.home-page .header-row {
  width: min(1320px, calc(100% - 2rem));
}

.home-page .brand strong,
.home-page .brand span,
.home-page .site-nav a,
.home-page .nav-toggle {
  color: #f4fbfd;
}

.home-page .site-nav a:hover,
.home-page .site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.home-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 108px;
  height: auto;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 1rem;
  font-weight: 700;
}

.brand span {
  color: var(--muted);
  font-size: 0.85rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(15, 76, 92, 0.08);
  color: var(--brand);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 700;
}

.hero {
  padding: 2rem 0 2.5rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 2rem;
  align-items: stretch;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(237, 243, 246, 0.92));
  box-shadow: var(--shadow);
}

.hero-shell-full {
  width: min(100vw, calc(100% - 2rem));
  margin: 0 auto;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  min-width: 0;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.site-footer h2,
.site-footer h3,
.service-card h3,
.stacked-service h3,
.pillar-card h3,
.info-card h3,
.story-card h2,
.quote-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 2.8vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.site-footer h2,
.site-footer h3,
.service-card h3,
.stacked-service h3,
.pillar-card h3,
.info-card h3,
.quote-card h3 {
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.hero-text {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 56ch;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button-primary,
.button-secondary,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.button-primary,
.button-secondary {
  padding: 0.95rem 1.35rem;
}

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 32px rgba(15, 76, 92, 0.18);
}

.button-primary:hover {
  transform: translateY(-1px);
  background: var(--brand-strong);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.button-secondary:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.text-link {
  color: var(--brand);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-stat {
  padding: 1rem 1rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  margin-bottom: 0.3rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand);
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media,
.media-card,
.promo-media {
  min-width: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 8px);
}

.hero-media {
  min-height: 100%;
}

.hero-media img,
.media-card img,
.promo-media img,
.service-card img,
.stacked-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 92, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(215, 156, 47, 0.24), transparent 32%),
    linear-gradient(145deg, rgba(15, 76, 92, 0.14), rgba(15, 76, 92, 0.04));
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(15, 76, 92, 0.08);
  border-radius: 14px;
}

.service-visual span {
  position: relative;
  z-index: 1;
  color: var(--brand);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section {
  padding: 2rem 0 4rem;
}

.hero-home {
  padding-top: 0;
}

.hero-home .hero-shell {
  position: relative;
  display: block;
  min-height: min(100svh, 48rem);
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #0c2630;
  box-shadow: none;
}

.hero-home .hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: 0;
}

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

.hero-home .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 27, 35, 0.88) 0%, rgba(8, 27, 35, 0.74) 28%, rgba(8, 27, 35, 0.34) 54%, rgba(8, 27, 35, 0.12) 76%, rgba(8, 27, 35, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 27, 35, 0.18) 0%, rgba(8, 27, 35, 0.44) 100%);
}

.hero-home .hero-copy {
  position: relative;
  z-index: 2;
  justify-content: flex-start;
  min-height: min(100svh, 48rem);
  max-width: min(64rem, 74vw);
  padding: clamp(2rem, 5vw, 4.5rem);
  padding-top: clamp(6rem, 8vw, 7.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-home .eyebrow,
.hero-home .hero-text,
.hero-home .hero-stat span {
  color: rgba(240, 247, 249, 0.9);
}

.hero-home .hero-text {
  max-width: 58rem;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.hero-home h1,
.hero-home .hero-stat strong {
  color: #ffffff;
}

.hero-home h1 {
  max-width: 16ch;
  margin-bottom: 0.9rem;
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
}

.hero-home .button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-home .hero-stats {
  max-width: min(68rem, 88vw);
  margin-top: 1.35rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: start;
}

.hero-home .hero-stat {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.section-band {
  background: linear-gradient(180deg, rgba(223, 233, 238, 0.55), rgba(223, 233, 238, 0.1));
}

.section-surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(237, 243, 246, 0.32));
}

.section-heading {
  margin-bottom: 1.75rem;
  max-width: 52rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

.section-heading p {
  color: var(--muted);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.section-grid-wide {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.section-copy,
.info-card,
.quote-card,
.story-card,
.pillar-card,
.service-card,
.stacked-service,
.site-form,
.promo-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.section-copy,
.info-card,
.quote-card,
.story-card,
.pillar-card {
  padding: 1.6rem;
}

.home-copy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.section-copy p:last-child,
.info-card p:last-child,
.story-card p:last-child,
.pillar-card p:last-child {
  margin-bottom: 0;
}

.section-copy p,
.info-card p,
.quote-card p,
.pillar-card p,
.story-card p,
.service-card p,
.stacked-service p,
.site-footer p,
.site-footer a,
.form-note,
.form-status {
  color: var(--muted);
}

.quote-card {
  display: flex;
  align-items: center;
  padding: 1.8rem;
  background: linear-gradient(160deg, rgba(15, 76, 92, 0.94), rgba(10, 54, 65, 0.98));
}

.quote-card p {
  color: #f5f9fb;
  font-size: 1.15rem;
  max-width: 34ch;
}

.info-card,
.story-card {
  overflow: hidden;
}

.accent-card {
  background: linear-gradient(145deg, #0f4c5c, #123645);
}

.accent-card .eyebrow,
.accent-card h3,
.accent-card p,
.accent-card a {
  color: #f2f7f8;
}

.compact-grid,
.service-grid,
.pillars-grid,
.photo-grid {
  display: grid;
  gap: 1rem;
}

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

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.vision-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.vision-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(244, 248, 250, 0.92), rgba(231, 239, 243, 0.92));
}

.vision-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vision-copy {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem 1.2rem 1.3rem;
}

.vision-copy h3 {
  margin: 0;
}

.vision-copy p {
  margin: 0;
  color: var(--muted);
}

.careers-join-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.careers-join-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
}

.careers-join-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(245, 249, 251, 0.95), rgba(233, 240, 243, 0.95));
}

.careers-join-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.careers-join-card h3,
.careers-join-card p {
  margin: 0;
}

.careers-join-card h3,
.careers-join-card p {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.careers-join-card p:last-child {
  padding-bottom: 1.25rem;
}

.careers-join-card h3 {
  padding-top: 0.1rem;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

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

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

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

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

.photo-grid-assist {
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  align-items: stretch;
}

.service-card {
  overflow: hidden;
}

.service-card img,
.service-card .service-visual {
  aspect-ratio: 16 / 10;
}

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

.compact-grid .service-card {
  display: grid;
  grid-template-columns: 172px 1fr;
  align-items: stretch;
}

.compact-grid .service-card img,
.compact-grid .service-card .service-visual {
  height: 100%;
  aspect-ratio: auto;
}

.service-card-body {
  padding: 1.2rem;
}

.service-card h3 {
  margin-bottom: 0.7rem;
}

.stacked-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-feature-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.service-feature-media {
  overflow: hidden;
  background: transparent;
}

.service-feature-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  background: transparent;
}

.service-feature-copy {
  display: grid;
  align-content: center;
  gap: 0.6rem;
  padding: 1rem 1.15rem 1.05rem;
}

.service-feature-copy h3 {
  margin: 0;
}

.service-feature-copy p {
  margin: 0;
  color: var(--muted);
}

.stacked-service {
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(15, 76, 92, 0.12);
  border-left: 4px solid var(--brand);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 243, 246, 0.88));
  box-shadow: 0 18px 42px rgba(18, 40, 54, 0.06);
}

.stacked-service-copy {
  max-width: 70rem;
}

.service-kicker {
  margin: 0 0 0.6rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-summary {
  font-weight: 700;
  color: var(--text) !important;
}

.overview-tile {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 220px;
  padding: 1.4rem;
  border: 1px solid rgba(15, 76, 92, 0.12);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 243, 246, 0.88));
  box-shadow: 0 18px 42px rgba(18, 40, 54, 0.06);
}

.overview-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(15, 76, 92, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(215, 156, 47, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(15, 76, 92, 0.14), rgba(15, 76, 92, 0.04));
}

.overview-icon span {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.overview-tile h3 {
  margin: 0;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--accent);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.4rem;
  align-items: start;
}

.story-aside {
  display: grid;
  gap: 1rem;
}

.story-card h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.story-page .hero-text,
.story-page .story-card p,
.story-page .story-aside .info-card p {
  line-height: 1.8;
}

.story-page .story-card h2,
.story-page .story-aside .info-card h3 {
  letter-spacing: -0.02em;
  text-transform: none;
}

.story-page .hero-media,
.story-page .tall-media,
.story-page .banner-media {
  background: linear-gradient(180deg, rgba(245, 249, 251, 0.95), rgba(233, 240, 243, 0.95));
}

.story-page .hero-media img,
.story-page .tall-media img,
.story-page .banner-media img {
  object-fit: contain;
  object-position: center center;
}

.media-card {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.home-who-media {
  aspect-ratio: 16 / 9;
}

.home-who-media img {
  object-position: center 24%;
}

.about-overview-media {
  aspect-ratio: 16 / 9;
}

.about-overview-media img {
  object-fit: cover;
  object-position: center 18%;
}

.about-people-media {
  aspect-ratio: 16 / 10;
}

.about-people-media img {
  object-position: center 22%;
}

.about-banner-media {
  aspect-ratio: 16 / 7;
}

.about-banner-media img {
  object-position: center 38%;
}

.wide-media {
  aspect-ratio: 16 / 9;
}

.tall-media {
  aspect-ratio: 4 / 5;
}

.compact-media {
  aspect-ratio: 1 / 1;
}

.banner-media {
  aspect-ratio: 16 / 5;
}

.promo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 1.25rem;
  padding: 1.2rem;
  align-items: stretch;
}

.promo-copy {
  padding: 1.2rem;
}

.promo-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.promo-copy p {
  color: var(--muted);
}

.site-form {
  display: grid;
  gap: 1rem;
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 1.5rem;
}

.site-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.site-form span {
  color: var(--text);
}

.site-form input,
.site-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 48, 66, 0.16);
  border-radius: 14px;
  padding: 0.92rem 1rem;
  background: #fbfdfe;
  color: var(--text);
  font: inherit;
}

.site-form textarea {
  resize: vertical;
  min-height: 180px;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.3rem;
}

.site-footer {
  margin-top: 1rem;
  padding: 1.5rem 0 2.4rem;
  background: linear-gradient(180deg, rgba(12, 35, 44, 0.04), rgba(12, 35, 44, 0.12));
}

.footer-panel {
  padding: 1.5rem 1.7rem;
  border: 1px solid rgba(15, 76, 92, 0.14);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(15, 76, 92, 0.96), rgba(12, 43, 54, 0.98));
  box-shadow: 0 24px 60px rgba(8, 28, 36, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(140px, 170px) minmax(0, 1fr) minmax(260px, 340px);
  gap: 2rem;
  align-items: start;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 0.85rem;
  color: #f5fbfd;
  letter-spacing: -0.02em;
}

.site-footer h2 {
  font-size: 1.45rem;
}

.site-footer h3 {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 251, 253, 0.82);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(232, 242, 245, 0.82);
  max-width: 34ch;
}

.footer-brand {
  display: grid;
  gap: 0.35rem;
}

.footer-nav {
  width: 100%;
}

.footer-link-column {
  display: grid;
  gap: 0.45rem;
}

.footer-meta {
  display: grid;
  gap: 0.45rem;
  justify-self: start;
  align-content: start;
}

.footer-brand {
  justify-self: end;
}

.footer-links a {
  font-weight: 600;
}

.footer-links a,
.site-footer a {
  transition: color 140ms ease, opacity 140ms ease;
}

.footer-links a:hover,
.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 242, 245, 0.12);
  display: flex;
  justify-content: center;
}

.footer-copy {
  max-width: none;
  color: rgba(232, 242, 245, 0.68);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 1080px) {
  .hero-shell,
  .section-grid,
  .section-grid-wide,
  .story-layout,
  .promo-panel,
  .stacked-service,
  .stacked-service-list,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-home .hero-copy,
  .hero-home .hero-shell {
    min-height: min(100svh, 44rem);
    max-height: none;
  }

  .hero-home .hero-copy {
    max-width: min(42rem, 100%);
    justify-content: flex-start;
    padding-top: 6.25rem;
  }

  .hero-home .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .hero-copy,
  .promo-copy {
    padding: 1rem;
  }

  .compact-grid .service-card {
    grid-template-columns: 160px 1fr;
  }

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

  .footer-meta {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand,
  .footer-meta {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .service-overview-grid,
  .vision-grid,
  .careers-join-grid,
  .service-grid,
  .pillars-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .service-feature-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(244, 248, 250, 0.94);
    box-shadow: 0 20px 44px rgba(18, 40, 54, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
  }

  .home-page .site-nav {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(10, 32, 41, 0.92);
    box-shadow: 0 20px 44px rgba(4, 17, 22, 0.32);
  }

  .home-page .site-nav a {
    color: #f4fbfd;
  }

  .home-page .site-nav a:hover,
  .home-page .site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, calc(100% - 1rem));
  }

  .home-page .header-row {
    width: min(100%, calc(100% - 1rem));
  }

  .hero {
    padding-top: 1.2rem;
  }

  .hero-home .hero-copy,
  .hero-home .hero-shell {
    min-height: min(100svh, 36rem);
    max-height: none;
  }

  .hero-home .hero-copy {
    max-width: 100%;
    justify-content: flex-start;
    padding-top: 5.75rem;
  }

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

  .hero-shell,
  .section-copy,
  .info-card,
  .quote-card,
  .story-card,
  .pillar-card,
  .site-form,
  .promo-panel {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-panel {
    padding: 1.1rem 1rem;
  }

  .hero-shell-full,
  .hero-home .hero-shell {
    width: 100%;
  }

  .hero-copy {
    padding: 0.4rem 0;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .section-heading h2,
  .promo-copy h2,
  .story-card h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

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

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

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .quote-card {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
  }

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

  .compact-grid .service-card img {
    aspect-ratio: 16 / 10;
    max-height: 220px;
  }

  main p,
  main li,
  .site-footer p,
  .site-footer a {
    max-width: none;
  }
}
