:root {
  --ink: #13202f;
  --muted: #607083;
  --line: #dbe3ea;
  --soft: #f4f7f9;
  --panel: #ffffff;
  --brand: #08777b;
  --brand-dark: #07585c;
  --brand-light: #dff2ef;
  --accent: #d69c2f;
  --shadow: 0 18px 50px rgba(16, 32, 48, 0.12);
  --shadow-lift: 0 24px 70px rgba(16, 32, 48, 0.18);
  --radius: 8px;
  --max: 1180px;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 247, 249, 0.92) 0, #fff 420px),
    #fff;
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

.skip-link {
  background: var(--ink);
  border-radius: 0 0 var(--radius) 0;
  color: #fff;
  font-weight: 800;
  left: 0;
  padding: 12px 16px;
  position: fixed;
  top: 0;
  transform: translateY(-120%);
  transition: transform 160ms ease;
  z-index: 100;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(214, 156, 47, 0.72);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(0px);
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  height: 82px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  transition: backdrop-filter 220ms ease, box-shadow 220ms ease, height 220ms ease, background 220ms ease, border-color 220ms ease;
  z-index: 40;
}

.site-header.header-solid {
  background: #10202e;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.site-header.header-solid .site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

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

.site-header.header-solid .menu-toggle span {
  background: #fff;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: #10202e;
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 28px rgba(16, 32, 48, 0.08);
  height: 70px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.brand img {
  height: 140px;
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
  width: auto;
}



.brand:hover img {
  transform: translateY(-2px) scale(1.02);
}

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

.site-nav a {
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 13px;
  position: relative;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(0, 0, 0, 0.06);
  color: var(--ink);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  background: var(--accent);
  color: #fff;
  margin-left: 4px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: #b98220;
  color: #fff;
}

.header-over-dark .site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.header-over-dark .site-nav a:hover,
.header-over-dark .site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-header.is-scrolled .site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 6px 0;
  transition: transform 160ms ease, opacity 160ms ease, background 180ms ease;
  width: 100%;
}

.header-over-dark .menu-toggle span,
.site-header.is-scrolled .menu-toggle span,
.menu-toggle.is-active span {
  background: #fff;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero::before {
  animation: scanLines 18s linear infinite;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  opacity: 0.22;
  position: absolute;
  z-index: 1;
}

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

.hero-media::after {
  background: linear-gradient(90deg, rgba(7, 27, 40, 0.92) 0%, rgba(7, 27, 40, 0.66) 43%, rgba(7, 27, 40, 0.2) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  filter: saturate(1.02) contrast(1.02);
  height: 100%;
  inset: 0;
  opacity: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.06);
  transform-origin: center;
  transition: opacity 900ms ease, transform 900ms ease-out;
  width: 100%;
}

.hero-media img.is-active {
  opacity: 1;
}

.hero-content {
  animation: heroRise 780ms ease-out both;
  max-width: var(--max);
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(120px, 14vw, 164px) clamp(20px, 5vw, 64px) 160px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 56px);
  max-width: 620px;
}

.hero-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-top: 22px;
  max-width: 610px;
}

.hero-copy {
  display: grid;
  min-height: clamp(220px, 26vw, 300px);
  position: relative;
}

.hero-copy-slide {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.hero-copy-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-content .eyebrow,
.page-hero .eyebrow {
  animation: fadeSlideUp 680ms ease-out both;
}

.hero-content h1,
.page-hero h1 {
  animation: fadeSlideUp 760ms 80ms ease-out both;
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.hero-actions {
  animation: fadeSlideUp 760ms 170ms ease-out both;
}

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

.hero-dots {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-top: 34px;
}

.hero-dots button {
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 9px;
  overflow: hidden;
  padding: 0;
  transition: background 180ms ease, width 220ms ease;
  width: 26px;
}

.hero-dots button.is-active {
  background: var(--accent);
  width: 52px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
  overflow: hidden;
}

.button::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  inset: 0 auto 0 -120%;
  position: absolute;
  transform: skewX(-18deg);
  transition: left 420ms ease;
  width: 80%;
}

.button:hover {
  box-shadow: 0 14px 30px rgba(8, 119, 123, 0.22);
  transform: translateY(-2px);
}

.button:hover::after {
  left: 130%;
}

.button-primary {
  background: var(--brand);
  color: #fff;
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-plain {
  background: #fff;
  border-color: var(--line);
  color: var(--brand-dark);
}

.button-plain:hover {
  background: var(--brand-light);
  border-color: rgba(8, 119, 123, 0.24);
}

.stat-strip {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  bottom: 0;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  left: 50%;
  max-width: var(--max);
  position: absolute;
  transform: translateX(-50%);
  width: min(calc(100% - 40px), var(--max));
  z-index: 2;
}

.stat-strip div {
  border-right: 1px solid var(--line);
  padding: 24px;
}

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

.stat-strip strong {
  color: var(--brand);
  display: block;
  font-size: 28px;
  line-height: 1;
}

.stat-strip span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

.home-proof {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-proof a {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 28px clamp(20px, 4vw, 46px);
  position: relative;
  transition: background 180ms ease, transform 180ms ease;
}

.home-proof a + a {
  border-left: 1px solid var(--line);
}

.home-proof a::before {
  background: var(--accent);
  content: "";
  height: 3px;
  left: clamp(20px, 4vw, 46px);
  position: absolute;
  top: 0;
  transition: width 200ms ease;
  width: 34px;
}

.home-proof a:hover {
  background: #f8fbfb;
  transform: translateY(-2px);
}

.home-proof a:hover::before {
  width: 70px;
}

.home-proof span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-proof strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.05;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(56px, 8vw, 96px) 20px;
  position: relative;
}

.home-intro {
  padding-bottom: clamp(24px, 4vw, 44px);
}

.why-engtec {
  padding-bottom: clamp(32px, 5vw, 56px);
  padding-top: clamp(24px, 4vw, 46px);
}

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

.why-card {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.08), transparent 48%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 250px;
  overflow: hidden;
  padding: 26px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.why-card::before {
  background: var(--accent);
  content: "";
  height: 4px;
  left: 26px;
  position: absolute;
  right: 26px;
  top: 0;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 240ms ease;
}

.why-card::after {
  background: radial-gradient(circle, rgba(214, 156, 47, 0.16), transparent 62%);
  content: "";
  height: 140px;
  pointer-events: none;
  position: absolute;
  right: -54px;
  top: -54px;
  transition: transform 240ms ease, opacity 240ms ease;
  width: 140px;
}

.why-card:hover {
  border-color: rgba(8, 119, 123, 0.26);
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover::after {
  opacity: 0.85;
  transform: scale(1.12);
}

.why-card span {
  background: var(--brand-light);
  border: 1px solid rgba(8, 119, 123, 0.16);
  border-radius: 999px;
  color: var(--brand-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.why-card h3 {
  font-size: 22px;
}

.why-card p {
  margin-top: 14px;
}

.intro-copy {
  display: grid;
  gap: 24px;
}

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

.intro-card-grid article {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.08), transparent 48%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  isolation: isolate;
  min-height: 220px;
  overflow: hidden;
  padding: 26px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.intro-card-grid article::before {
  background: var(--accent);
  content: "";
  height: 4px;
  left: 26px;
  position: absolute;
  right: 26px;
  top: 0;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 240ms ease;
}

.intro-card-grid article::after {
  background: radial-gradient(circle, rgba(214, 156, 47, 0.16), transparent 62%);
  content: "";
  height: 140px;
  pointer-events: none;
  position: absolute;
  right: -54px;
  top: -54px;
  transition: transform 240ms ease, opacity 240ms ease;
  width: 140px;
  z-index: -1;
}

.intro-card-grid article:hover {
  border-color: rgba(8, 119, 123, 0.26);
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
}

.intro-card-grid article:hover::before {
  transform: scaleX(1);
}

.intro-card-grid article:hover::after {
  opacity: 0.85;
  transform: scale(1.12);
}

.intro-card-grid span {
  background: var(--brand-light);
  border: 1px solid rgba(8, 119, 123, 0.16);
  border-radius: 999px;
  color: var(--brand-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.intro-card-grid h3 {
  font-size: 22px;
}

.intro-card-grid p {
  margin-top: 14px;
}

.split {
  align-items: start;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split h2,
.section-heading h2,
.feature-band h2,
.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 56px);
}

.split > p,
.copy-stack p,
.feature-band p,
.page-hero p {
  font-size: 18px;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

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

.home-services-section {
  padding-bottom: clamp(34px, 5vw, 58px);
  padding-top: clamp(26px, 4vw, 48px);
}

.section-heading.generous {
  align-items: start;
  margin-bottom: 38px;
}

.section-heading.generous h2 {
  max-width: 760px;
}

.home-services-grid {
  gap: 22px;
}

.service-card,
.project-card,
.person-card,
.news-card,
.cert-card,
.office-card,
.rich-panel,
.contact-panel,
.contact-form {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.06), transparent 48%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  isolation: isolate;
  overflow: hidden;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card::before,
.project-card::before,
.person-card::before,
.news-card::before,
.office-card::before,
.rich-panel::before,
.contact-panel::before,
.contact-form::before,
.service-tile::before,
.cert-group::before,
.affiliation-card::before,
.about-story-panel::before,
.seo-copy-panel::before {
  background: var(--accent);
  content: "";
  height: 4px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 240ms ease;
  z-index: 2;
}

.project-card::after,
.person-card::after,
.news-card::after,
.office-card::after,
.rich-panel::after,
.contact-panel::after,
.contact-form::after,
.service-tile::after,
.cert-group::after,
.affiliation-card::after,
.about-story-panel::after,
.seo-copy-panel::after {
  background: radial-gradient(circle, rgba(214, 156, 47, 0.14), transparent 62%);
  content: "";
  height: 140px;
  pointer-events: none;
  position: absolute;
  right: -54px;
  top: -54px;
  transition: opacity 220ms ease, transform 220ms ease;
  width: 140px;
  z-index: 0;
}

.service-card:hover::before,
.project-card:hover::before,
.person-card:hover::before,
.news-card:hover::before,
.office-card:hover::before,
.rich-panel:hover::before,
.contact-panel:hover::before,
.contact-form:hover::before,
.service-tile:hover::before,
.cert-group:hover::before,
.affiliation-card:hover::before,
.about-story-panel:hover::before,
.seo-copy-panel:hover::before {
  transform: scaleX(1);
}

.project-card:hover::after,
.person-card:hover::after,
.news-card:hover::after,
.office-card:hover::after,
.rich-panel:hover::after,
.contact-panel:hover::after,
.contact-form:hover::after,
.service-tile:hover::after,
.cert-group:hover::after,
.affiliation-card:hover::after,
.about-story-panel:hover::after,
.seo-copy-panel:hover::after {
  opacity: 0.85;
  transform: scale(1.12);
}

.project-card > *,
.person-card > *,
.news-card > *,
.office-card > *,
.rich-panel > *,
.contact-panel > *,
.contact-form > *,
.service-tile > *,
.cert-group > *,
.affiliation-card > *,
.about-story-panel > *,
.seo-copy-panel > * {
  position: relative;
  z-index: 1;
}

.service-card:hover,
.project-card:hover,
.person-card:hover,
.news-card:hover,
.cert-card:hover,
.office-card:hover,
.rich-panel:hover,
.contact-panel:hover,
.contact-form:hover,
.cert-group:hover,
.about-story-panel:hover,
.seo-copy-panel:hover {
  border-color: rgba(8, 119, 123, 0.28);
  box-shadow: var(--shadow-lift);
  transform: translateY(-6px);
}

.service-card {
  min-height: 390px;
  overflow: hidden;
  position: relative;
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
  width: 100%;
}

.service-card:hover img,
.project-card:hover img,
.person-card:hover img,
.news-card:hover img,
.service-row:hover img,
.feature-band:hover img,
.page-hero.with-image:hover img,
.detail-hero:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.045);
}

.service-card div {
  padding: 22px;
}

.service-card::after {
  background: linear-gradient(180deg, transparent, rgba(8, 119, 123, 0.08));
  bottom: 0;
  content: "";
  height: 46%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.card-number {
  color: var(--accent);
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 21px;
}

.service-card p,
.project-card p,
.person-card p,
.news-card p {
  margin-top: 12px;
}

.service-card a,
.project-card a,
.news-card a,
.section-heading a,
.service-row a {
  color: var(--brand);
  display: inline-block;
  font-weight: 800;
  margin-top: 18px;
  transition: color 180ms ease, transform 180ms ease;
}

.service-card a:hover,
.project-card a:hover,
.news-card a:hover,
.section-heading a:hover,
.service-row a:hover {
  color: var(--brand-dark);
  transform: translateX(4px);
}

.feature-band {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: 1fr 1fr;
}

.capability-showcase {
  align-items: stretch;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.82fr 1.18fr;
  padding-bottom: clamp(24px, 4vw, 46px);
  padding-top: clamp(28px, 5vw, 56px);
}

.capability-copy {
  background:
    linear-gradient(135deg, rgba(8, 119, 123, 0.28), rgba(16, 32, 46, 0.96)),
    #10202e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  min-height: 100%;
  padding: clamp(30px, 5vw, 52px);
}

.capability-copy h2 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 40px);
}

.capability-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  margin-top: 18px;
}

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

.capability-list article {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.07), transparent 46%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.capability-list article::before {
  background: var(--accent);
  content: "";
  height: 4px;
  left: 28px;
  position: absolute;
  right: 28px;
  top: 0;
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 240ms ease;
}

.capability-list article::after {
  background: radial-gradient(circle, rgba(8, 119, 123, 0.12), transparent 62%);
  content: "";
  height: 150px;
  pointer-events: none;
  position: absolute;
  right: -52px;
  top: -54px;
  transition: opacity 220ms ease, transform 220ms ease;
  width: 150px;
  z-index: -1;
}

.capability-list article:hover {
  border-color: rgba(8, 119, 123, 0.28);
  box-shadow: var(--shadow-lift);
  transform: translateY(-7px);
}

.capability-list article:hover::before {
  transform: scaleX(1);
}

.capability-list article:hover::after {
  opacity: 0.9;
  transform: scale(1.12);
}

.capability-list span {
  align-items: center;
  background: var(--brand-light);
  border: 1px solid rgba(8, 119, 123, 0.14);
  border-radius: 50%;
  color: var(--brand-dark);
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  height: 48px;
  justify-content: center;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
  width: 48px;
}

.capability-list article:hover span {
  background: var(--brand);
  color: #fff;
  transform: rotate(-6deg) scale(1.06);
}

.capability-list h3 {
  font-size: 25px;
  margin-top: 0;
}

.capability-list p {
  margin-top: 12px;
}

.home-about-band {
  padding-top: clamp(44px, 7vw, 88px);
}

.home-about-band img {
  aspect-ratio: 1.28 / 1;
}

.feature-band img,
.page-hero.with-image img,
.detail-hero img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: filter 420ms ease, transform 420ms ease;
  width: 100%;
}

.feature-band .button {
  margin-top: 24px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.home-work-band {
  background:
    linear-gradient(135deg, rgba(8, 119, 123, 0.18), transparent 48%),
    #10202e;
  color: #fff;
  margin-top: clamp(20px, 4vw, 44px);
}

.home-work-inner {
  max-width: var(--max);
}

.home-work-band h2,
.home-work-band h3 {
  color: #fff;
}

.home-work-band .section-heading a {
  color: #fff;
}

.home-work-band .project-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-work-band .project-card p {
  color: rgba(255, 255, 255, 0.68);
}

.home-cta {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(8, 119, 123, 0.28), rgba(16, 32, 46, 0.96)),
    #10202e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  margin: clamp(28px, 4vw, 52px) auto clamp(40px, 5vw, 68px);
  max-width: var(--max);
  padding: clamp(30px, 5vw, 52px);
}

.home-cta h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  max-width: 840px;
}

.home-cta p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.home-cta .button-primary {
  background: var(--accent);
}

.home-cta .button-primary:hover {
  background: #b98220;
}

.home-cta .button-plain {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.home-cta .button-plain:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.44);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(223, 242, 239, 0.72), rgba(244, 247, 249, 0.92) 48%, rgba(255, 255, 255, 0.96)),
    var(--soft);
  margin: 0;
  overflow: hidden;
  padding: clamp(120px, 14vw, 172px) max(20px, calc((100vw - var(--max)) / 2 + 20px)) clamp(72px, 10vw, 120px);
  position: relative;
}

.page-hero::after {
  animation: floatGrid 16s ease-in-out infinite alternate;
  background-image:
    linear-gradient(rgba(8, 119, 123, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 119, 123, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: -30% -10%;
  pointer-events: none;
  position: absolute;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 760px;
}

.compact-hero {
  padding-bottom: clamp(42px, 6vw, 72px);
  padding-top: clamp(46px, 7vw, 82px);
}

.page-hero.with-image,
.detail-hero {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 0.78fr;
}

.page-hero.with-image img {
  aspect-ratio: 1.25 / 1;
}

.about-proof-row,
.work-proof-row {
  background: #10202e;
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-proof-row div,
.work-proof-row div {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.2), transparent 52%),
    rgba(255, 255, 255, 0.04);
  min-height: 154px;
  padding: clamp(22px, 4vw, 34px);
  position: relative;
  transition: background 220ms ease, transform 220ms ease;
}

.about-proof-row div::before,
.work-proof-row div::before {
  background: var(--accent);
  content: "";
  height: 3px;
  left: clamp(22px, 4vw, 34px);
  position: absolute;
  top: 0;
  transition: width 220ms ease;
  width: 38px;
}

.about-proof-row div:hover,
.work-proof-row div:hover {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.28), transparent 52%),
    rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.about-proof-row div:hover::before,
.work-proof-row div:hover::before {
  width: 76px;
}

.about-proof-row span,
.work-proof-row span {
  color: var(--accent);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.about-proof-row strong,
.work-proof-row strong {
  color: #fff;
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(21px, 2.4vw, 29px);
  line-height: 1.05;
}

.about-proof-row p {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 10px;
}

.about-story-grid {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: 0.9fr 1.1fr;
}

.about-story-panel {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.06), transparent 48%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 32, 48, 0.07);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  position: sticky;
  top: 96px;
}

.about-story-panel h2,
.work-intro h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.about-story-panel p:not(.eyebrow) {
  margin-top: 16px;
}

.about-story-panel .button {
  margin-top: 24px;
}

.about-value-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-value-grid article {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.07), transparent 48%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 190px;
  overflow: hidden;
  padding: 26px;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.about-value-grid article::before {
  background: var(--accent);
  content: "";
  height: 4px;
  left: 26px;
  position: absolute;
  right: 26px;
  top: 0;
  transform: scaleX(0.32);
  transform-origin: left;
  transition: transform 240ms ease;
}

.about-value-grid article:hover {
  border-color: rgba(8, 119, 123, 0.26);
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.about-value-grid article:hover::before {
  transform: scaleX(1);
}

.about-value-grid span,
.work-card span,
.leadership-card span {
  background: var(--brand-light);
  border: 1px solid rgba(8, 119, 123, 0.16);
  border-radius: 999px;
  color: var(--brand-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
  padding: 7px 10px;
  text-transform: uppercase;
}

.about-value-grid h3 {
  font-size: 22px;
}

.about-value-grid p {
  margin-top: 12px;
}

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

.detail-hero img {
  aspect-ratio: 1.35 / 1;
}

.service-list {
  display: grid;
  gap: 24px;
}

.services-hero {
  min-height: clamp(360px, 48vh, 520px);
}

.services-hero > div {
  max-width: 920px;
}

.services-proof-row {
  background: #10202e;
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-proof-row div {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.18), transparent 52%),
    rgba(255, 255, 255, 0.04);
  min-height: 172px;
  padding: clamp(22px, 4vw, 36px);
  position: relative;
  transition: background 220ms ease, transform 220ms ease;
}

.services-proof-row div::before {
  background: var(--accent);
  content: "";
  height: 3px;
  left: clamp(22px, 4vw, 36px);
  position: absolute;
  top: 0;
  transition: width 220ms ease;
  width: 38px;
}

.services-proof-row div:hover {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.26), transparent 52%),
    rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.services-proof-row div:hover::before {
  width: 76px;
}

.services-proof-row span {
  color: var(--accent);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.services-proof-row strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 31px);
  line-height: 1.05;
}

.services-proof-row p {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 10px;
}

.services-overview {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  padding-bottom: clamp(18px, 3vw, 34px);
}

.services-overview-copy {
  border-left: 4px solid var(--accent);
  padding-left: clamp(22px, 4vw, 34px);
}

.services-overview-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
  max-width: 780px;
}

.services-overview-copy p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 760px;
}

.services-overview-panel {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.1), rgba(214, 156, 47, 0.1)),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  padding: clamp(24px, 4vw, 34px);
}

.services-overview-panel strong {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
}

.services-overview-panel span {
  color: var(--ink);
  font-weight: 900;
}

.services-directory {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 0;
}

.service-tile {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.06), transparent 48%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-tile:hover {
  border-color: rgba(8, 119, 123, 0.3);
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.service-tile-media {
  display: block;
  overflow: hidden;
}

.service-tile-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: filter 420ms ease, transform 420ms ease;
  width: 100%;
}

.service-tile:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.service-tile-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 3vw, 32px);
}

.service-tile-meta {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.service-tile-meta span {
  background: var(--brand-light);
  border-radius: 999px;
  color: var(--brand-dark);
  display: inline-grid;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  height: 42px;
  place-items: center;
  width: 42px;
}

.service-tile-meta small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-tile h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.service-tile p {
  margin-top: 14px;
}

.service-capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-capability-tags span {
  background: var(--brand-light);
  border: 1px solid rgba(8, 119, 123, 0.14);
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  padding: 7px 10px;
}

.service-tile-link {
  align-self: flex-start;
  color: var(--brand);
  font-weight: 900;
  margin-top: auto;
  padding-top: 24px;
  transition: color 180ms ease, transform 180ms ease;
}

.service-tile-link:hover {
  color: var(--brand-dark);
  transform: translateX(4px);
}

.service-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 300px 1fr;
  padding-bottom: 24px;
  transition: border-color 220ms ease, transform 220ms ease;
}

.service-row:hover {
  border-color: rgba(8, 119, 123, 0.36);
  transform: translateX(6px);
}

.service-row img {
  aspect-ratio: 1.55 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  transition: filter 420ms ease, transform 420ms ease;
  width: 100%;
}

.service-row span {
  color: var(--accent);
  font-weight: 900;
}

.service-row h2 {
  font-size: clamp(26px, 4vw, 42px);
  margin-top: 8px;
}

.service-row p {
  margin-top: 12px;
  max-width: 720px;
}

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

.work-intro {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 0.82fr 1.18fr;
  padding-bottom: clamp(24px, 4vw, 46px);
}

.work-intro > p {
  border-left: 4px solid var(--accent);
  font-size: 18px;
  padding-left: clamp(20px, 4vw, 32px);
}

.work-grid {
  padding-top: 0;
}

.project-grid.compact {
  padding: 0;
}

.project-card {
  overflow: hidden;
}

.work-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.project-card img {
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  transition: filter 420ms ease, transform 420ms ease;
  width: 100%;
}

.work-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.work-card h2 {
  font-size: clamp(23px, 2.7vw, 31px);
  padding: 0;
}

.work-card p {
  margin-top: 12px;
  padding: 0;
}

.project-card h2,
.project-card h3,
.news-card h2,
.person-card h2,
.cert-card h2,
.office-card h2 {
  font-size: 23px;
  padding: 22px 22px 0;
}

.work-card h2 {
  font-size: clamp(23px, 2.7vw, 31px);
  padding: 0;
}

.project-card p,
.person-card p,
.office-card p,
.news-card p {
  padding: 0 22px 22px;
}

.work-card p {
  margin-top: 12px;
  padding: 0;
}

.people-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: clamp(36px, 5vw, 58px);
}

.leadership-grid {
  padding-top: clamp(32px, 5vw, 62px);
}

.person-card {
  overflow: hidden;
}

.leadership-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.person-card img {
  aspect-ratio: 1 / 0.88;
  object-fit: cover;
  object-position: top;
  transition: filter 420ms ease, transform 420ms ease;
  width: 100%;
}

.leadership-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.leadership-card h2 {
  font-size: 24px;
  padding: 0;
}

.leadership-card p {
  padding-left: 0;
  padding-right: 0;
}

.person-card h2 {
  padding: 18px 18px 0;
}

.leadership-card h2 {
  font-size: 24px;
  padding: 0;
}

.person-card p {
  padding-left: 18px;
  padding-right: 18px;
}

.leadership-card p {
  padding-left: 0;
  padding-right: 0;
}

.person-card .credential {
  color: var(--brand);
  font-weight: 800;
  margin-top: 8px;
  padding-bottom: 0;
}

.leadership-card .credential {
  color: var(--brand);
  padding: 0;
}

.person-card p:last-child {
  padding-bottom: 18px;
}

.leadership-card p:last-child {
  padding-bottom: 0;
}

.certification-stack {
  display: grid;
  gap: 20px;
  padding-top: clamp(34px, 5vw, 56px);
}

.certification-summary {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(220px, 0.8fr);
}

.certification-summary div,
.certification-summary a {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 26px clamp(20px, 4vw, 46px);
  place-content: center start;
}

.certification-summary div + div,
.certification-summary a {
  border-left: 1px solid var(--line);
}

.certification-summary strong {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.certification-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.certification-summary a {
  background: var(--brand-light);
  color: var(--brand-dark);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.certification-summary a:hover {
  background: var(--brand);
  color: #fff;
}

.cert-group {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.06), transparent 48%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 32, 48, 0.07);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(20px, 3vw, 28px);
  position: relative;
}

.cert-group-head {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 118px 1fr;
  margin-bottom: 18px;
}

.cert-group-head img {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-height: 76px;
  object-fit: contain;
  padding: 14px;
  width: 100%;
}

.cert-group-head h2 {
  font-size: clamp(24px, 3.4vw, 34px);
}

.cert-group-head p:not(.eyebrow) {
  margin-top: 8px;
  max-width: 860px;
}

.cert-mark {
  align-items: center;
  background: var(--brand-light);
  border: 1px solid rgba(8, 119, 123, 0.18);
  border-radius: var(--radius);
  color: var(--brand-dark);
  display: flex;
  font-size: 19px;
  font-weight: 900;
  height: 76px;
  justify-content: center;
}

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

.cert-card {
  background: linear-gradient(180deg, #fff 0%, #f7fbfb 100%);
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.cert-card::after {
  background: var(--brand-light);
  content: "";
  height: 100%;
  opacity: 0.7;
  pointer-events: none;
  position: absolute;
  right: -46px;
  top: 0;
  transform: skewX(-18deg);
  transition: right 240ms ease;
  width: 74px;
}

.cert-card:hover::after {
  right: -28px;
}

.cert-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cert-card h2,
.cert-card h3 {
  font-size: 19px;
  padding: 8px 0 0;
}

.cert-card p {
  margin-top: 8px;
}

.document-card {
  display: block;
  min-height: 168px;
  padding-bottom: 54px;
}

.document-card strong {
  bottom: 18px;
  color: var(--brand);
  font-size: 14px;
  position: absolute;
  transition: color 180ms ease, transform 180ms ease;
}

.document-card:hover strong {
  color: var(--brand-dark);
  transform: translateX(4px);
}

.document-card::before {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: #fff;
  content: "PDF";
  display: flex;
  font-size: 12px;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 36px;
  z-index: 1;
}

.qualification-grid,
.affiliation-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.qualification-grid div,
.affiliation-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #314154;
  font-weight: 800;
  min-height: 56px;
  padding: 14px;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.affiliation-card {
  align-items: center;
  isolation: isolate;
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 142px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.affiliation-card img {
  height: 66px;
  object-fit: contain;
  transition: filter 220ms ease, transform 220ms ease;
  width: min(100%, 220px);
}

.affiliation-card span {
  font-size: 14px;
  line-height: 1.25;
}

.affiliation-card:hover {
  border-color: rgba(8, 119, 123, 0.34);
  color: var(--brand-dark);
  transform: translateY(-3px);
}

.affiliation-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
}

.cert-contact-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(8, 119, 123, 0.18), rgba(16, 32, 46, 0.96)),
    #10202e;
  border-radius: var(--radius);
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  padding: clamp(28px, 5vw, 46px);
}

.cert-contact-card h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  max-width: 760px;
}

.cert-contact-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 14px;
  max-width: 760px;
}

.cert-contact-card .button-primary {
  background: var(--accent);
}

.cert-contact-card .button-primary:hover {
  background: #b98220;
}

.news-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.news-card img {
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 0;
  object-fit: cover;
  position: relative;
  transition: filter 420ms ease, transform 420ms ease;
  width: 100%;
  z-index: 0;
}

.news-card div {
  background: var(--panel);
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  position: relative;
  z-index: 1;
}

.news-card a {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
}

.detail-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 330px;
}

.rich-panel {
  padding: clamp(28px, 5vw, 46px);
}

.rich-panel.narrow {
  max-width: 860px;
}

.rich-panel h2 {
  font-size: 30px;
  margin-top: 32px;
}

.rich-panel h2:first-child {
  margin-top: 0;
}

.rich-panel p {
  font-size: 18px;
  margin-top: 14px;
}

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

.check-list li {
  color: #314154;
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  background: var(--brand);
  border-radius: 50%;
  color: #fff;
  content: "";
  height: 9px;
  left: 4px;
  position: absolute;
  top: 9px;
  transition: box-shadow 180ms ease, transform 180ms ease;
  width: 9px;
}

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

.detailed-list li {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 58px;
  padding: 14px 16px 14px 36px;
}

.detailed-list li::before {
  left: 16px;
  top: 22px;
}

.service-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
}

.service-gallery img {
  aspect-ratio: 1.35 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  transition: filter 220ms ease, transform 220ms ease;
  width: 100%;
}

.service-gallery img:hover {
  filter: saturate(1.08) contrast(1.04);
  transform: translateY(-4px) scale(1.02);
}

.service-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.service-detail-meta span {
  background: var(--brand-light);
  border: 1px solid rgba(8, 119, 123, 0.16);
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 11px;
  text-transform: uppercase;
}

.check-list li:hover::before {
  box-shadow: 0 0 0 7px rgba(8, 119, 123, 0.12);
  transform: scale(1.2);
}

.contact-panel {
  box-shadow: var(--shadow);
  padding: 28px;
  position: sticky;
  top: 96px;
}

.contact-panel h3 {
  font-size: 26px;
}

.contact-panel p {
  margin: 12px 0 22px;
}

.service-sidebar-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
}

.service-sidebar-list strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 4px;
}

.service-sidebar-list a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-sidebar-list a:hover,
.service-sidebar-list a[aria-current="page"] {
  background: var(--brand-light);
  border-color: rgba(8, 119, 123, 0.24);
  color: var(--brand-dark);
  transform: translateX(3px);
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 420px;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 34px);
}

.lead-form-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.lead-form-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  max-width: 720px;
}

.lead-form-head p:not(.eyebrow) {
  margin-top: 12px;
  max-width: 680px;
}

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

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

.contact-form span {
  color: #314154;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(8, 119, 123, 0.12);
  outline: 0;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-dark) 50%),
    linear-gradient(135deg, var(--brand-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  padding-right: 38px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form small {
  color: #b42318;
  font-weight: 700;
}

.lead-form-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-top: 22px;
}

.lead-form-footer p {
  max-width: 460px;
}

.lead-honeypot {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.seo-content-section {
  display: block;
  padding-top: clamp(30px, 5vw, 64px);
}

.seo-copy-panel {
  background:
    linear-gradient(145deg, rgba(8, 119, 123, 0.06), transparent 48%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(16, 32, 48, 0.07);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(24px, 4vw, 34px);
  position: relative;
}

.seo-copy-panel h2 {
  font-size: clamp(28px, 3.5vw, 42px);
}

.seo-copy-panel p:not(.eyebrow) {
  font-size: 17px;
  margin-top: 16px;
}

.notice {
  background: #e8f3f3;
  border-radius: var(--radius);
  color: var(--brand-dark);
  font-weight: 800;
  padding: 14px;
}

.office-stack {
  display: grid;
  gap: 18px;
}

.office-card {
  padding-bottom: 22px;
}

.office-card a {
  color: var(--brand);
  display: block;
  font-weight: 800;
  padding: 3px 22px;
}

.site-footer {
  background: #10202e;
  color: #fff;
  display: grid;
  gap: 36px;
  grid-template-columns: 1.2fr 0.6fr 0.6fr 1.2fr;
  padding: 58px max(20px, calc((100vw - var(--max)) / 2 + 20px)) 28px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  animation: scanLines 22s linear infinite reverse;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  inset: 0;
  opacity: 0.26;
  position: absolute;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer img {
  height: 140px;
  margin-bottom: 18px;
  width: auto;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h2 {
  font-size: 17px;
  margin-bottom: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  display: block;
  margin: 8px 0;
}

.site-footer a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-offices {
  display: grid;
  gap: 18px;
}

.footer-offices h2 {
  margin-bottom: 0;
}

.footer-offices address {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  font-style: normal;
  gap: 5px;
  padding-top: 14px;
}

.footer-offices strong {
  color: #fff;
}

.footer-offices span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-offices a {
  margin: 0;
}

.back-to-top {
  align-items: center;
  background: var(--brand);
  border: 0;
  border-radius: 999px;
  bottom: 26px;
  box-shadow: 0 18px 36px rgba(8, 119, 123, 0.28);
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 0;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 26px;
  transform: translateY(16px) scale(0.92);
  transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
  width: 52px;
  z-index: 60;
}

.back-to-top::before {
  content: "\2191";
  font-size: 24px;
  line-height: 1;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--brand-dark);
  transform: translateY(-3px) scale(1.04);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scanLines {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(72px, 72px, 0);
  }
}

@keyframes floatGrid {
  from {
    transform: translate3d(-18px, -12px, 0) rotate(0deg);
  }
  to {
    transform: translate3d(18px, 12px, 0) rotate(1deg);
  }
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-column: 1 / -1;
  padding-top: 24px;
}

@media (max-width: 1180px) {
  .service-grid,
  .project-grid,
  .people-grid,
  .cert-grid,
  .qualification-grid,
  .affiliation-grid,
  .capability-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .site-nav {
    background: rgba(16, 32, 46, 0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    display: none;
    gap: 0;
    left: 0;
    padding: 12px 20px 22px;
    position: absolute;
    right: 0;
    top: 100%;
  }

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

  .site-nav a {
    border-radius: var(--radius);
    padding: 13px;
  }

  .site-nav .nav-cta {
    margin: 8px 0 0;
  }
}

@media (max-width: 980px) {

  .stat-strip,
  .home-proof,
  .services-proof-row,
  .about-proof-row,
  .work-proof-row,
  .certification-summary,
  .service-grid,
  .project-grid,
  .people-grid,
  .cert-grid,
  .cert-group-head,
  .qualification-grid,
  .affiliation-grid,
  .split,
  .feature-band,
  .about-story-grid,
  .about-value-grid,
  .work-intro,
  .why-grid,
  .capability-showcase,
  .cert-contact-card,
  .page-hero.with-image,
  .detail-hero,
  .detail-layout,
  .contact-layout,
  .site-footer,
  .home-cta {
    grid-template-columns: 1fr;
  }

  .services-overview,
  .services-directory,
  .seo-content-section,
  .intro-card-grid,
  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    position: relative;
    transform: none;
    left: auto;
    width: 100%;
  }

  .hero-content {
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 70px;
  }

  .service-row,
  .news-card,
  .detailed-list,
  .service-gallery {
    grid-template-columns: 1fr;
  }

  .service-row:hover {
    transform: translateY(-4px);
  }

  .contact-panel {
    position: static;
  }

  .about-story-panel {
    position: static;
  }

  .capability-copy {
    position: static;
  }

  .home-cta {
    margin-left: 20px;
    margin-right: 20px;
  }

  .cert-contact-card {
    align-items: start;
  }

  .home-cta-actions {
    justify-content: flex-start;
  }

  .lead-form-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 72px;
    padding: 0 16px;
  }

  .brand img {
    height: 100px;
  }

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

  .hero-content p:not(.eyebrow) {
    font-size: 17px;
  }

  .stat-strip div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .home-proof a + a {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .certification-summary div + div,
  .certification-summary a {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .project-card h2,
  .project-card h3,
  .news-card h2,
  .person-card h2,
  .cert-card h2,
  .office-card h2 {
    font-size: 21px;
  }

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

  .capability-list article {
    min-height: auto;
  }

  .home-cta .button,
  .cert-contact-card .button,
  .lead-form-footer .button {
    width: 100%;
  }
}

@media (hover: none) {
  .service-card:hover,
  .service-tile:hover,
  .services-proof-row div:hover,
  .about-proof-row div:hover,
  .work-proof-row div:hover,
  .about-value-grid article:hover,
  .intro-card-grid article:hover,
  .why-card:hover,
  .project-card:hover,
  .person-card:hover,
  .news-card:hover,
  .cert-card:hover,
  .cert-group:hover,
  .office-card:hover,
  .rich-panel:hover,
  .contact-panel:hover,
  .contact-form:hover,
  .about-story-panel:hover,
  .seo-copy-panel:hover,
  .affiliation-card:hover,
  .service-row:hover {
    box-shadow: none;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
