@font-face {
  font-family: "Rajdhani Local";
  src: url("../fonts/rajdhani-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Blinker Local";
  src: url("../fonts/blinker-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #172026;
  --graphite: #282d35;
  --steel: #596673;
  --paper: #f7fbfa;
  --white: #ffffff;
  --mist: #e6f0ee;
  --line: #d9e5e1;
  --teal: #0b7d7a;
  --aqua: #66c8b6;
  --red: #d80c18;
  --amber: #f2b84b;
  --shadow: 0 24px 70px rgba(24, 32, 38, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Blinker Local", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
h3,
.brand span,
.button,
.eyebrow,
.service-mark,
.signal-item strong,
.process-step span,
.timeline-item span {
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.9rem, 10vw, 7.6rem);
  line-height: 0.86;
  text-transform: uppercase;
}

h2 {
  max-width: 850px;
  font-size: clamp(2.3rem, 5vw, 5.25rem);
  line-height: 0.94;
  text-transform: uppercase;
}

h3 {
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 251, 250, 0.9);
  border-bottom: 1px solid rgba(217, 229, 225, 0.82);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(23, 32, 38, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 152px;
  height: auto;
}

.brand span {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-left: 1px solid var(--line);
  color: var(--teal);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.5vw, 8px);
}

.site-nav > a,
.nav-dropdown > a {
  position: relative;
  padding: 10px clamp(8px, 1vw, 14px);
  color: var(--graphite);
  font-size: 0.95rem;
}

.site-nav > a::after,
.nav-dropdown > a::after {
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after,
.nav-dropdown > a.is-active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  right: -14px;
  left: -14px;
  height: 18px;
  content: "";
}

.nav-dropdown-services::after,
.nav-dropdown-industries::after {
  right: -18px;
  left: -18px;
  width: auto;
  height: 22px;
}

.nav-dropdown > .nav-link {
  display: block;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 95;
  display: grid;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 22px 48px rgba(23, 32, 38, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu,
.nav-dropdown.is-open .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-menu a {
  display: block;
  padding: 11px 14px;
  color: var(--graphite);
  font-size: 0.94rem;
  line-height: 1.15;
  text-transform: none;
  white-space: nowrap;
}

.nav-menu a::after {
  display: none;
}

.nav-menu a:hover {
  color: var(--red);
}

.nav-menu a.is-active {
  color: var(--red);
}

.nav-menu-industries {
  min-width: 250px;
}

.nav-mega {
  position: fixed;
  top: 78px;
  right: 0;
  left: 0;
  z-index: 90;
  height: min(500px, calc(100svh - 78px));
  max-height: calc(100svh - 78px);
  overflow: auto;
  visibility: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 54px rgba(23, 32, 38, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-header.is-scrolled .nav-mega {
  top: 66px;
  height: min(500px, calc(100svh - 66px));
  max-height: calc(100svh - 66px);
}

.site-header.is-scrolled .nav-dropdown::after {
  height: 18px;
}

.site-header.is-scrolled .nav-dropdown-services::after,
.site-header.is-scrolled .nav-dropdown-industries::after {
  height: 22px;
}

.nav-dropdown:hover .nav-mega,
.nav-dropdown:focus-within .nav-mega,
.nav-dropdown.is-open .nav-mega,
.nav-mega:hover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-mega-inner {
  display: grid;
  grid-template-columns: minmax(340px, 1.12fr) minmax(300px, 0.98fr) minmax(300px, 0.88fr);
  gap: clamp(16px, 2vw, 28px);
  width: min(1180px, calc(100% - 56px));
  min-height: 100%;
  margin: 0 auto;
  padding: 24px 0 26px;
}

.nav-mega-column {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 0;
  padding: 0 clamp(2px, 0.8vw, 10px);
}

.nav-mega-column + .nav-mega-column {
  border-left: 1px solid rgba(217, 229, 225, 0.72);
  padding-left: clamp(16px, 2vw, 28px);
}

.nav-mega-industries .nav-mega-inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 22px);
}

.nav-mega-industries .nav-mega-column {
  grid-column: auto;
  min-width: 0;
  padding: 0 clamp(2px, 0.7vw, 8px);
}

.nav-industry-panel {
  grid-template-columns: 1fr;
  gap: 8px;
}

.nav-mega-industries .nav-mega-item {
  grid-template-columns: 36px minmax(0, 1fr);
  min-height: 74px;
  padding: 10px 11px;
}

.nav-mega-industries .nav-mega-icon {
  width: 36px;
  height: 36px;
  font-size: 0.83rem;
}

.nav-mega-industries .nav-mega-row {
  gap: 8px;
}

.nav-mega-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 4px;
  padding-bottom: 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  appearance: none;
  background: transparent;
  color: var(--graphite);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

button.nav-mega-title {
  cursor: default;
}

.nav-mega-title-icon {
  display: none;
}

.nav-mega-panel {
  display: grid;
  gap: 8px;
}

.nav-mega-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 74px;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-left-color: rgba(217, 229, 225, 0.9);
  border-radius: 8px;
  background: transparent;
  color: var(--graphite);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-mega-item:hover,
.nav-mega-item:focus {
  border-color: rgba(216, 12, 24, 0.38);
  border-left-color: var(--red);
  background:
    linear-gradient(90deg, rgba(216, 12, 24, 0.065), rgba(11, 125, 122, 0.035)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 16px rgba(23, 32, 38, 0.06);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-mega-item:focus-visible,
.nav-mega-cta-link:focus-visible,
.button:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

.nav-mega-item.is-active,
.nav-mega-item[aria-current="page"] {
  border-color: rgba(11, 125, 122, 0.38);
  border-left-color: var(--red);
  background:
    linear-gradient(90deg, rgba(216, 12, 24, 0.09), rgba(11, 125, 122, 0.08)),
    var(--white);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(23, 32, 38, 0.08);
}

.nav-mega-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(11, 125, 122, 0.24);
  border-radius: 8px;
  background: rgba(11, 125, 122, 0.07);
  color: var(--teal);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1;
}

.nav-mega-item:hover .nav-mega-icon,
.nav-mega-item:focus .nav-mega-icon,
.nav-mega-item.is-active .nav-mega-icon,
.nav-mega-item[aria-current="page"] .nav-mega-icon {
  border-color: rgba(11, 125, 122, 0.34);
  background: rgba(11, 125, 122, 0.1);
  color: var(--teal);
}

.nav-mega-item.is-active .nav-mega-icon,
.nav-mega-item[aria-current="page"] .nav-mega-icon {
  border-color: rgba(216, 12, 24, 0.3);
  background: rgba(216, 12, 24, 0.1);
  color: var(--red);
}

.nav-mega-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.nav-mega-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.nav-mega-label {
  color: inherit;
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.nav-mega-badge {
  flex: 0 0 auto;
  padding: 4px 7px 3px;
  border: 1px solid rgba(11, 125, 122, 0.2);
  border-radius: 999px;
  background: rgba(11, 125, 122, 0.08);
  color: var(--teal);
  font-family: "Blinker Local", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  line-height: 1;
}

.nav-mega-desc {
  color: var(--steel);
  font-size: 0.82rem;
  line-height: 1.28;
}

.nav-mega-cta {
  display: grid;
  gap: 9px;
  margin-top: 4px;
  padding: 15px;
  border: 1px solid rgba(11, 125, 122, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 125, 122, 0.09), rgba(216, 12, 24, 0.04)),
    rgba(255, 255, 255, 0.72);
}

.nav-mega-cta span {
  color: var(--graphite);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.nav-mega-cta p {
  color: var(--steel);
  font-size: 0.86rem;
  line-height: 1.35;
}

.nav-mega-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 36px;
  padding: 10px 13px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-mega-cta-link:hover,
.nav-mega-cta-link:focus {
  border-color: #b90b15;
  background: #b90b15;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: 86svh;
  overflow: hidden;
  background: var(--graphite);
  color: var(--white);
}

.page-hero {
  min-height: 66svh;
}

.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero .hero-media {
  object-position: center;
}

.contact-hero .hero-media {
  object-position: 60% center;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(100deg, rgba(15, 25, 28, 0.9) 0%, rgba(15, 25, 28, 0.72) 38%, rgba(11, 125, 122, 0.2) 67%, rgba(216, 12, 24, 0.12) 100%),
    linear-gradient(0deg, rgba(15, 25, 28, 0.22), rgba(15, 25, 28, 0.22));
}

.hero-grid {
  z-index: -2;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.6) 52%, transparent 100%);
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0 clamp(34px, 6vh, 62px);
}

.page-hero .hero-content {
  padding-bottom: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--aqua);
  font-size: 0.92rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero-lead {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: #b90b15;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points span::before {
  width: 8px;
  height: 8px;
  background: var(--amber);
  content: "";
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.signal-item {
  min-height: 170px;
  padding: 32px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item strong {
  display: block;
  color: var(--teal);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.signal-item span {
  display: block;
  max-width: 230px;
  margin-top: 12px;
  color: var(--steel);
  font-size: 1rem;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 64px);
}

.section-light {
  background: var(--white);
}

.section-ending {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-deep {
  background:
    linear-gradient(135deg, rgba(11, 125, 122, 0.22), transparent 46%),
    var(--graphite);
  color: var(--white);
}

.section-head {
  width: min(var(--max), 100%);
  margin: 0 auto 42px;
}

.section-head p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 20px;
  color: var(--steel);
  font-size: 1.18rem;
}

.section-deep .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.section-light .process-step {
  border-color: var(--line);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(23, 32, 38, 0.06);
}

.section-light .process-step span {
  color: var(--red);
}

.section-light .process-step h3 {
  color: var(--graphite);
}

.section-light .process-step p {
  color: var(--steel);
}

.service-grid,
.value-grid,
.process-grid,
.insight-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.value-card,
.process-step {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(23, 32, 38, 0.06);
}

.service-card {
  display: grid;
  align-content: space-between;
  gap: 28px;
}

.service-card h3,
.value-card h3 {
  color: var(--graphite);
}

.service-card p,
.value-card p,
.process-step p,
.timeline-item p,
.rich-copy p,
.split-copy p,
.image-card p,
.contact-copy p,
.contact-methods p {
  color: var(--steel);
}

.service-mark {
  color: var(--red);
  font-size: 1.05rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.split-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--mist);
}

.split-media::after {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  content: "";
  pointer-events: none;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-copy {
  max-width: 620px;
}

.split-copy p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 1.16rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.check-list span {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--graphite);
}

.check-list span::before {
  width: 10px;
  height: 10px;
  margin-top: 9px;
  background: var(--teal);
  content: "";
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.process-step span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--aqua);
  text-transform: uppercase;
}

.process-step h3 {
  color: var(--white);
}

.process-step p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.insight-section {
  background:
    linear-gradient(90deg, rgba(102, 200, 182, 0.14), transparent 55%),
    var(--paper);
}

.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card.contain-image img {
  object-fit: contain;
  padding: clamp(14px, 2vw, 26px);
  background: var(--white);
}

.image-card div {
  padding: 24px;
}

.image-card p {
  margin-top: 12px;
}

.cta-band {
  display: grid;
  justify-items: start;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(64px, 8vw, 110px);
  padding: clamp(38px, 7vw, 76px);
  background:
    linear-gradient(135deg, rgba(216, 12, 24, 0.95), rgba(216, 12, 24, 0.78)),
    var(--red);
  color: var(--white);
}

.cta-band .eyebrow {
  margin-bottom: 0;
  color: #ffe0e2;
}

.cta-band h2 {
  max-width: 920px;
}

.cta-band .button-primary {
  background: var(--white);
  color: var(--red);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: clamp(26px, 6vw, 70px);
}

.two-column .section-head {
  margin: 0;
}

.rich-copy {
  display: grid;
  gap: 18px;
  font-size: 1.18rem;
}

.values-section {
  background:
    linear-gradient(180deg, var(--paper), #eef6f4);
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
  min-height: 230px;
}

.value-card p {
  margin-top: 18px;
}

.industry-intro {
  padding-bottom: clamp(56px, 7vw, 92px);
}

.industry-intro .page-intro-inner {
  padding-bottom: 0;
}

.industry-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: 22px;
}

.industry-directory-section {
  width: min(var(--max), 100%);
  margin: 0 auto clamp(40px, 6vw, 72px);
}

.industry-directory-section:last-child {
  margin-bottom: 0;
}

.industry-category-head {
  display: grid;
  max-width: 760px;
  margin-bottom: 20px;
  gap: 8px;
}

.industry-category-head .eyebrow {
  margin-bottom: 0;
}

.industry-category-head h3 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
}

.industry-category-head p:not(.eyebrow) {
  color: var(--steel);
}

.industry-directory-section .industry-directory-grid {
  width: 100%;
}

.industry-directory-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(6, 19, 29, 0.07);
}

.industry-directory-media {
  display: grid;
  min-height: 245px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.industry-directory-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.contain-media .industry-directory-media {
  padding: 18px;
}

.contain-media .industry-directory-media img {
  height: auto;
  max-height: 310px;
  object-fit: contain;
}

.industry-directory-card:hover .industry-directory-media img {
  transform: scale(1.025);
}

.industry-directory-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 14px;
}

.industry-directory-copy .eyebrow {
  margin-bottom: 0;
  color: var(--red);
}

.industry-directory-copy h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  line-height: 1.04;
}

.industry-directory-copy h3 a:hover {
  color: var(--teal);
}

.industry-directory-copy p:not(.eyebrow) {
  color: var(--steel);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--teal);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.text-link::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.text-link:hover {
  color: var(--red);
}

.industry-split {
  padding-top: 0;
}

.split-media.contain {
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 46px);
  background: var(--white);
}

.split-media.contain img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.industry-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: 18px;
}

.industry-stat {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(8, 167, 173, 0.06), transparent 60%),
    var(--paper);
}

.industry-stat strong {
  display: block;
  color: var(--teal);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 0.92;
  text-transform: uppercase;
}

.industry-stat span {
  display: block;
  margin-top: 14px;
  color: var(--steel);
  font-size: 1rem;
}

.industry-topic-grid .service-card {
  min-height: 235px;
}

.timeline {
  display: grid;
  width: min(940px, 100%);
  margin: 0 auto;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.timeline-item span {
  color: var(--amber);
  font-size: 2rem;
  line-height: 1;
}

.timeline-item h3 {
  color: var(--white);
}

.timeline-item p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  width: min(var(--max), 100%);
  margin: 0 auto;
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 20px;
  font-size: 1.16rem;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-methods article {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-methods span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-methods a {
  color: var(--red);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.95rem;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd8d3;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 125, 122, 0.16);
}

.form-status {
  min-height: 24px;
  color: var(--teal);
  font-size: 0.95rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.5fr) minmax(230px, 0.6fr);
  gap: 34px;
  padding: 52px clamp(20px, 5vw, 64px);
  background: var(--graphite);
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand img {
  width: 168px;
}

.footer-brand p {
  max-width: 520px;
  margin-top: 18px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a,
.footer-contact a {
  color: var(--white);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--aqua);
}

.insights-intro {
  padding-bottom: clamp(64px, 8vw, 96px);
}

.insight-feature-section {
  background: var(--paper);
}

.insight-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid #bdcfcc;
  background:
    linear-gradient(145deg, rgba(8, 167, 173, 0.07), transparent 54%),
    var(--white);
  box-shadow: var(--shadow);
}

.insight-feature h2 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4.7vw, 4.6rem);
  line-height: 0.94;
}

.insight-feature p {
  max-width: 660px;
  margin-top: 20px;
  color: var(--steel);
  font-size: 1.16rem;
}

.insight-feature .button {
  margin-top: 28px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(8, 167, 173, 0.24);
  background: rgba(8, 167, 173, 0.08);
  color: var(--teal);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.insight-feature-media,
.insight-card-media {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eef3ef;
}

.insight-feature-media {
  min-height: 380px;
}

.insight-feature-media img,
.insight-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.insight-feature-media img,
.insight-card-media img {
  aspect-ratio: 1 / 1;
}

.insight-card:hover .insight-card-media img,
.insight-feature:hover .insight-feature-media img {
  transform: scale(1.025);
}

.latest-insight-list,
.insight-card-grid {
  display: grid;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  gap: 22px;
}

.insight-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 19, 29, 0.07);
}

.insight-card-media {
  min-height: 240px;
}

.insight-card-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.insight-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.insight-card h3 a:hover {
  color: var(--teal);
}

.insight-card p {
  color: var(--steel);
}

.article-shell {
  padding-top: 110px;
  background:
    linear-gradient(90deg, rgba(6, 19, 29, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(6, 19, 29, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
}

.article-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) 0 clamp(24px, 4vw, 38px);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--teal);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.article-back::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.article-hero .article-meta {
  margin-bottom: 20px;
}

.article-hero h1 {
  max-width: 900px;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 0.98;
}

.article-hero p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--steel);
  font-size: clamp(1.16rem, 1.8vw, 1.4rem);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(300px, 0.34fr);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding-bottom: clamp(72px, 8vw, 120px);
}

.article-main {
  display: grid;
  gap: 34px;
}

.article-content,
.article-toc {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 19, 29, 0.06);
}

.article-content {
  padding: clamp(28px, 4vw, 56px);
}

.article-content p,
.article-content li {
  color: var(--steel);
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-content p + p,
.article-content ul + p,
.article-content figure + p {
  margin-top: 18px;
}

.article-content h2 {
  max-width: 780px;
  margin: 42px 0 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  text-transform: none;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content ul {
  margin: 0 0 24px;
  padding-left: 22px;
}

.article-content li + li {
  margin-top: 10px;
}

.article-figure {
  margin: 34px 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.article-figure img {
  width: 100%;
  height: auto;
  padding: clamp(12px, 2vw, 22px);
  background: var(--white);
}

.article-figure figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: 0.92rem;
}

.article-toc {
  position: sticky;
  top: 104px;
  max-height: calc(100svh - 128px);
  overflow: auto;
  padding: 28px;
}

.toc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.toc-title span {
  color: var(--graphite);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.toc-title::after {
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--graphite);
  border-left: 3px solid var(--graphite);
  content: "";
  transform: rotate(45deg) translateY(3px);
}

.article-toc ol {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.article-toc a {
  display: block;
  color: var(--graphite);
  font-size: 0.98rem;
  line-height: 1.35;
}

.article-toc a:hover {
  color: var(--red);
}

.article-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding-top: 28px;
  border-top: 2px solid rgba(6, 19, 29, 0.7);
}

.pager-link {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 74px;
  color: var(--graphite);
}

.pager-link::before {
  position: absolute;
  top: 4px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.pager-prev {
  padding-left: 52px;
}

.pager-next {
  justify-items: end;
  padding-right: 52px;
  text-align: right;
}

.pager-prev::before {
  left: 0;
  content: "<";
}

.pager-next::before {
  right: 0;
  content: ">";
}

.pager-link span {
  color: var(--red);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.pager-link strong {
  color: var(--steel);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.35;
}

.pager-link:hover strong {
  color: var(--graphite);
}

.insights-overview-section {
  padding-top: clamp(108px, 11vw, 142px);
  background:
    linear-gradient(90deg, rgba(6, 19, 29, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(6, 19, 29, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
}

.insights-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.insights-lead-story {
  display: grid;
  justify-items: start;
  gap: 16px;
  align-content: start;
}

.insights-lead-media {
  display: block;
  width: min(640px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 14px;
  box-shadow: 0 16px 38px rgba(6, 19, 29, 0.08);
}

.insights-lead-media img {
  width: 100%;
  height: auto;
  background: var(--white);
  transition: transform 220ms ease;
}

.insights-lead-media:hover img {
  transform: scale(1.025);
}

.insights-lead-story h1 {
  max-width: 700px;
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  line-height: 0.98;
}

.insights-lead-story h1 a:hover {
  color: var(--teal);
}

.insights-lead-story p:not(.eyebrow) {
  max-width: 700px;
  color: var(--steel);
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
}

.latest-posts-panel {
  display: grid;
  gap: 18px;
  padding-left: clamp(22px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.latest-posts-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1;
  text-transform: none;
}

.latest-post-item {
  display: grid;
  grid-template-columns: 106px minmax(0, 1fr);
  gap: 7px 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.latest-post-item img {
  grid-row: 1 / span 2;
  width: 106px;
  height: auto;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 5px;
}

.latest-post-item span {
  color: var(--red);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.latest-post-item strong {
  color: var(--graphite);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.latest-post-item:hover strong {
  color: var(--teal);
}

.insight-category-section {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.category-header,
.category-story-grid {
  width: min(var(--max), calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.category-header {
  display: flex;
  gap: 20px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 30px;
}

.category-header h2 {
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 0.95;
}

.category-header a {
  color: var(--red);
  font-family: "Rajdhani Local", "Arial Narrow", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.category-header a:hover {
  color: var(--teal);
}

.category-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
}

.category-story-grid.compact {
  grid-template-columns: minmax(0, 390px);
}

.category-story {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.category-story-media {
  display: grid;
  min-height: clamp(260px, 23vw, 360px);
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  padding: clamp(14px, 1.8vw, 24px);
  box-shadow: 0 14px 32px rgba(6, 19, 29, 0.06);
}

.category-story-media img {
  width: 100%;
  max-height: clamp(230px, 20vw, 320px);
  height: auto;
  background: var(--white);
  object-fit: contain;
  transition: transform 220ms ease;
}

.category-story:hover .category-story-media img {
  transform: scale(1.025);
}

.category-story h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.category-story h3 a:hover {
  color: var(--teal);
}

.category-story p {
  color: var(--steel);
  font-size: 0.96rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .nav-mega-inner {
    grid-template-columns: minmax(290px, 1fr) minmax(270px, 0.95fr) minmax(230px, 0.82fr);
    gap: 14px;
    width: min(100% - 32px, 1080px);
  }

  .nav-mega-column {
    padding: 0 4px;
  }

  .nav-mega-column + .nav-mega-column {
    padding-left: 16px;
  }

  .nav-mega-item {
    min-height: 70px;
    padding: 9px 10px;
  }
}

@media (max-width: 1060px) {
  .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .brand img {
    width: 136px;
  }

  .site-nav > a,
  .nav-dropdown > a {
    font-size: 0.88rem;
  }

  .service-grid,
  .value-grid,
  .industry-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .insight-grid,
  .service-grid.compact,
  .industry-directory-grid {
    grid-template-columns: 1fr;
  }

  .industry-directory-card {
    grid-template-columns: minmax(210px, 0.38fr) minmax(0, 0.62fr);
  }

  .split-section,
  .two-column,
  .contact-layout,
  .insight-feature,
  .insights-overview,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .split-section {
    width: min(var(--max), calc(100% - 32px));
  }

  .insight-card-grid {
    grid-template-columns: 1fr;
  }

  .insights-lead-story {
    min-height: auto;
  }

  .latest-posts-panel {
    padding-left: 0;
    border-left: 0;
  }

  .article-toc {
    order: -1;
    position: static;
    max-height: none;
  }
}

@media (max-width: 960px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand img {
    width: 132px;
  }

  .brand span {
    min-height: 24px;
    padding-left: 8px;
    font-size: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    max-height: calc(100svh - 68px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px 18px max(24px, env(safe-area-inset-bottom));
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 48px rgba(23, 32, 38, 0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-open {
    overflow: hidden;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav > a,
  .nav-dropdown > a {
    min-height: 48px;
    padding: 15px 4px;
    font-size: 1.04rem;
  }

  .site-nav > a::after,
  .nav-dropdown > a::after {
    right: 4px;
    left: 4px;
  }

  .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    padding: 0 0 10px 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-menu a {
    padding: 9px 4px;
    font-size: 0.98rem;
  }

  .nav-mega {
    position: static;
    height: auto;
    max-height: none;
    overflow: visible;
    visibility: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-mega-inner {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    padding: 0 0 12px;
  }

  .nav-mega-industries .nav-mega-inner {
    grid-template-columns: 1fr;
  }

  .nav-mega-industries .nav-mega-column {
    grid-column: auto;
  }

  .nav-mega-column {
    min-height: auto;
    padding: 0;
    border-top: 1px solid rgba(89, 102, 115, 0.2);
  }

  .nav-mega-column + .nav-mega-column {
    border-left: 0;
    padding-left: 0;
  }

  .nav-mega-title {
    min-height: 48px;
    margin: 0;
    padding: 14px 4px 12px;
    border-bottom: 0;
    color: var(--graphite);
    font-size: 0.98rem;
    cursor: pointer;
  }

  .nav-mega-title-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
    margin-left: 14px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    opacity: 0.72;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-mega-title[aria-expanded="true"] .nav-mega-title-icon {
    opacity: 1;
    transform: rotate(-135deg) translate(-2px, -1px);
  }

  .nav-mega-panel {
    gap: 8px;
    padding: 0 0 14px 14px;
  }

  .nav-industry-panel {
    grid-template-columns: 1fr;
  }

  .nav-mega-title[aria-expanded="false"] + .nav-mega-panel {
    display: none;
  }

  .nav-mega-item {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 66px;
    padding: 10px;
    border-color: rgba(89, 102, 115, 0.16);
    border-left-color: rgba(89, 102, 115, 0.28);
    background: rgba(255, 255, 255, 0.56);
    touch-action: manipulation;
  }

  .nav-mega-item:hover,
  .nav-mega-item:focus {
    transform: none;
  }

  .nav-mega-icon {
    width: 34px;
    height: 34px;
  }

  .nav-mega-label {
    font-size: 0.94rem;
  }

  .nav-mega-desc {
    font-size: 0.8rem;
  }

  .nav-mega-badge {
    padding: 4px 6px 3px;
    font-size: 0.64rem;
  }

  .nav-mega-cta {
    margin-top: 2px;
    padding: 13px;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: clamp(3.7rem, 18vw, 6rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand img {
    width: 132px;
  }

  .brand span {
    min-height: 24px;
    padding-left: 8px;
    font-size: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: calc(100svh - 68px);
    overflow-y: auto;
    padding: 12px 18px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 48px rgba(23, 32, 38, 0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav > a,
  .nav-dropdown > a {
    padding: 16px 4px;
    font-size: 1.08rem;
  }

  .site-nav > a::after,
  .nav-dropdown > a::after {
    right: 4px;
    left: 4px;
  }

  .nav-dropdown {
    display: grid;
    align-items: stretch;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-dropdown > .nav-link {
    padding: 16px 4px;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    padding: 0 0 10px 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-menu a {
    padding: 9px 4px;
    font-size: 0.98rem;
  }

  .nav-mega {
    position: static;
    height: auto;
    max-height: none;
    overflow: visible;
    visibility: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-mega-inner {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    padding: 0 0 12px;
  }

  .nav-mega-industries .nav-mega-inner {
    grid-template-columns: 1fr;
  }

  .nav-mega-industries .nav-mega-column {
    grid-column: auto;
  }

  .nav-mega-title {
    min-height: 48px;
    margin: 0;
    padding: 14px 4px 12px;
    border-bottom: 0;
    font-size: 0.96rem;
  }

  .nav-mega-panel {
    padding: 0 0 14px 14px;
  }

  .nav-industry-panel {
    grid-template-columns: 1fr;
  }

  .nav-mega-item {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 68px;
    padding: 10px;
    border-color: rgba(89, 102, 115, 0.16);
    border-left-color: rgba(89, 102, 115, 0.28);
    background: rgba(255, 255, 255, 0.56);
  }

  .nav-mega-item:hover,
  .nav-mega-item:focus {
    transform: none;
  }

  .nav-mega-icon {
    width: 34px;
    height: 34px;
  }

  .nav-mega-label {
    font-size: 0.94rem;
  }

  .nav-mega-desc {
    font-size: 0.8rem;
  }

  .nav-mega-badge {
    padding: 4px 6px 3px;
    font-size: 0.64rem;
  }

  .nav-mega-cta {
    margin-top: 2px;
    padding: 13px;
  }

  .nav-mega-column {
    min-height: auto;
    padding: 0;
  }

  .nav-mega-column + .nav-mega-column {
    border-left: 0;
    padding-left: 0;
  }

  .hero {
    min-height: 88svh;
  }

  .page-hero {
    min-height: 62svh;
  }

  .hero-home .hero-media {
    object-position: 68% center;
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding-top: 122px;
  }

  .hero-shade {
    background:
      linear-gradient(100deg, rgba(15, 25, 28, 0.94) 0%, rgba(15, 25, 28, 0.78) 60%, rgba(11, 125, 122, 0.36) 100%),
      linear-gradient(0deg, rgba(15, 25, 28, 0.22), rgba(15, 25, 28, 0.22));
  }

  .hero-actions,
  .hero-points {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .insight-feature,
  .insights-overview,
  .latest-insight-list,
  .insight-card-grid,
  .category-header,
  .category-story-grid,
  .article-layout,
  .article-hero,
  .industry-directory-grid,
  .industry-metric-grid {
    width: min(var(--max), calc(100% - 32px));
  }

  .industry-directory-card {
    grid-template-columns: 1fr;
  }

  .industry-directory-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .industry-metric-grid {
    grid-template-columns: 1fr;
  }

  .insights-overview-section {
    padding-top: 96px;
  }

  .insights-lead-story {
    gap: 18px;
  }

  .insights-lead-story h1 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .latest-post-item {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .latest-post-item img {
    width: 92px;
  }

  .category-header {
    display: grid;
    gap: 8px;
  }

  .category-story-grid,
  .category-story-grid.compact {
    grid-template-columns: 1fr;
  }

  .insight-feature {
    padding: 24px;
  }

  .insight-feature h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .insight-feature-media {
    min-height: 0;
  }

  .insight-card {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .insight-card-media {
    min-height: 0;
  }

  .article-shell {
    padding-top: 68px;
  }

  .article-hero {
    padding-top: 64px;
  }

  .article-hero h1 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .article-content,
  .article-toc {
    padding: 24px;
  }

  .article-pager {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pager-next {
    justify-items: start;
    padding-right: 0;
    padding-left: 52px;
    text-align: left;
  }

  .pager-next::before {
    right: auto;
    left: 0;
  }

  .article-content h2 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .article-content p,
  .article-content li {
    font-size: 1rem;
  }

  .signal-band {
    grid-template-columns: 1fr;
  }

  .signal-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 72px 18px;
  }

  .service-grid,
  .services-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .value-card,
  .process-step {
    min-height: auto;
    padding: 24px;
  }

  .split-media,
  .split-media img {
    min-height: 360px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 116px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .cta-band {
    width: calc(100% - 32px);
    padding: 30px 22px;
  }
}
