:root {
  --navy-950: #071725;
  --navy-900: #0b2239;
  --navy-800: #102f4d;
  --navy-700: #174464;
  --blue-600: #1d628d;
  --gold-500: #c8a05a;
  --gold-400: #d9b878;
  --gold-200: #ead7b0;
  --ink: #152231;
  --muted: #637083;
  --line: #dfe5ea;
  --soft: #f4f6f7;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(7, 23, 37, 0.08);
  --shadow-md: 0 22px 60px rgba(7, 23, 37, 0.14);
  --shadow-lg: 0 34px 90px rgba(7, 23, 37, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shell: 1240px;
  --header-height: 84px;
  --transition: 280ms cubic-bezier(.2,.65,.3,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body.ascend-site {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

h3 {
  font-size: 1.25rem;
}

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

::selection {
  background: var(--gold-400);
  color: var(--navy-950);
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

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

.site-main {
  overflow: hidden;
}

.section {
  position: relative;
  padding: 108px 0;
}

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

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

.section--navy {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.76);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.screen-reader-text,
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus {
  position: fixed !important;
  top: 12px;
  left: 12px;
  width: auto !important;
  height: auto !important;
  padding: 12px 18px !important;
  margin: 0 !important;
  clip: auto !important;
  z-index: 100000;
  background: var(--white);
  color: var(--navy-900);
  border-radius: 4px;
}

/* Loader */
.no-js .site-loader {
  display: none;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: var(--navy-950);
  transition: opacity 550ms ease, visibility 550ms ease;
}

.site-loader::before,
.site-loader::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(200, 160, 90, 0.14);
  transform: rotate(45deg);
}

.site-loader::before {
  width: 360px;
  height: 360px;
}

.site-loader::after {
  width: 240px;
  height: 240px;
}

body.is-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 30px;
}

.site-loader__line {
  width: 150px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.site-loader__line i {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--gold-500);
  animation: loaderLine 1.2s ease-in-out infinite;
}

@keyframes loaderLine {
  from { transform: translateX(-110%); }
  to { transform: translateX(330%); }
}

/* Brand */
.brand-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.brand-mark span {
  position: absolute;
  bottom: 4px;
  display: block;
  width: 9px;
  background: var(--gold-500);
  transform: skew(-13deg);
  border-radius: 2px 2px 0 0;
}

.brand-mark span:nth-child(1) {
  left: 4px;
  height: 19px;
}

.brand-mark span:nth-child(2) {
  left: 16px;
  height: 31px;
}

.brand-mark span:nth-child(3) {
  left: 28px;
  height: 39px;
}

.brand-mark--loader {
  width: 68px;
  height: 68px;
}

.brand-mark--loader span {
  width: 14px;
  bottom: 2px;
  box-shadow: 0 0 30px rgba(200,160,90,.25);
}

.brand-mark--loader span:nth-child(1) { left: 8px; height: 31px; }
.brand-mark--loader span:nth-child(2) { left: 27px; height: 49px; }
.brand-mark--loader span:nth-child(3) { left: 46px; height: 62px; }

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

.site-brand__text {
  display: grid;
  line-height: 1;
}

.site-brand__text strong {
  color: var(--navy-900);
  font-size: 1.15rem;
  letter-spacing: .23em;
}

.site-brand__text small {
  margin-top: 7px;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .17em;
}

.site-brand__custom img,
.site-brand__custom {
  display: block;
  max-height: 58px;
  width: auto;
}

/* Top bar and header */
.site-topbar {
  position: relative;
  z-index: 1002;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
  font-size: .78rem;
}

.site-topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-topbar p {
  margin: 0;
}

.site-topbar__license,
.site-topbar__contact,
.site-topbar__contact a {
  display: flex;
  align-items: center;
}

.site-topbar__contact {
  gap: 22px;
}

.site-topbar__contact a {
  gap: 7px;
  transition: color var(--transition);
}

.site-topbar__contact a:hover {
  color: var(--gold-400);
}

.site-topbar .ascend-icon {
  width: 14px;
  height: 14px;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(200,160,90,.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 34, 57, .08);
  backdrop-filter: blur(16px);
  transition: box-shadow var(--transition), height var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  height: 72px;
  box-shadow: 0 10px 32px rgba(7, 23, 37, .09);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 22px;
}

.primary-menu,
.footer-menu,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.primary-menu > li {
  position: relative;
}

.primary-menu > li > a {
  position: relative;
  display: block;
  padding: 25px 0;
  color: var(--navy-900);
  font-size: .9rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color var(--transition);
}

.primary-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  background: var(--gold-500);
  transition: right var(--transition);
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current_page_item > a {
  color: var(--gold-500);
}

.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after,
.primary-menu > li.current_page_item > a::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons and links */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 750;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

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

.button .ascend-icon,
.text-link .ascend-icon,
.service-card > a .ascend-icon,
.industry-tile__arrow .ascend-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.button:hover .ascend-icon,
.text-link:hover .ascend-icon,
.service-card > a:hover .ascend-icon {
  transform: translateX(4px);
}

.button--small {
  min-height: 46px;
  padding: 0 19px;
  font-size: .82rem;
}

.button--gold {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 14px 30px rgba(200,160,90,.22);
}

.button--gold:hover {
  background: var(--gold-400);
  box-shadow: 0 17px 38px rgba(200,160,90,.3);
}

.button--navy {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(7,23,37,.18);
}

.button--navy:hover {
  background: var(--navy-800);
}

.button--ghost {
  border-color: rgba(255,255,255,.38);
  color: var(--white);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}

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

.button--outline-light {
  border-color: rgba(255,255,255,.22);
  color: var(--white);
}

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

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-900);
  font-size: .9rem;
  font-weight: 750;
  border-bottom: 1px solid rgba(11,34,57,.22);
  padding-bottom: 4px;
  transition: color var(--transition), border-color var(--transition);
}

.text-link:hover {
  color: var(--gold-500);
  border-color: var(--gold-500);
}

/* Shared heading */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-500);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--gold-400);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 55px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--center p {
  margin-inline: auto;
}

.section--navy .section-heading p {
  color: rgba(255,255,255,.64);
}

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

.section-heading-row .section-heading {
  margin-bottom: 0;
}

/* Hero */
.home-hero {
  --section-bg: none;
  position: relative;
  min-height: min(790px, calc(100vh - 38px));
  display: flex;
  align-items: center;
  isolation: isolate;
  background-image: var(--section-bg), linear-gradient(120deg, #0b2239, #163d5d);
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,23,37,.96) 0%, rgba(7,23,37,.9) 34%, rgba(7,23,37,.52) 65%, rgba(7,23,37,.32) 100%),
    linear-gradient(0deg, rgba(7,23,37,.4), transparent 45%);
}

.home-hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.home-hero__inner {
  padding: 105px 0 120px;
}

.home-hero__content {
  max-width: 790px;
}

.home-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--white);
  font-weight: 720;
}

.home-hero h1 span {
  color: var(--gold-400);
}

.home-hero__content > p {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.77);
  font-size: clamp(1.05rem, 1.5vw, 1.23rem);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 62px;
}

.hero-trust > div {
  min-width: 135px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.hero-trust > div:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.hero-trust span {
  display: block;
  color: var(--gold-400);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.hero-trust p {
  margin: 3px 0 0;
  color: var(--white);
  font-size: .9rem;
  font-weight: 650;
}

.hero-scroll {
  position: absolute;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.64);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll span {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--gold-500), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,100% { transform: scaleY(.55); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

.js .hero-reveal {
  opacity: 0;
  transform: translateY(24px);
}

body.is-loaded .hero-reveal {
  animation: heroReveal .75s cubic-bezier(.2,.65,.3,1) forwards;
}

body.is-loaded .hero-reveal:nth-child(2) { animation-delay: 80ms; }
body.is-loaded .hero-reveal:nth-child(3) { animation-delay: 150ms; }
body.is-loaded .hero-reveal:nth-child(4) { animation-delay: 230ms; }
body.is-loaded .hero-reveal:nth-child(5) { animation-delay: 310ms; }

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

.intro-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-strip__grid {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.intro-strip__label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}

.gold-line {
  width: 34px;
  height: 2px;
  background: var(--gold-500);
}

.intro-strip__items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
  color: var(--muted);
  font-size: .77rem;
  font-weight: 650;
  letter-spacing: .03em;
}

.intro-strip__items i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 425px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(200,160,90,.14), transparent 25%),
    linear-gradient(130deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,160,90,.55), transparent);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.page-hero__content {
  max-width: 850px;
}

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

.page-hero p {
  max-width: 720px;
  color: rgba(255,255,255,.7);
  font-size: 1.12rem;
}

.page-hero__shape {
  position: absolute;
  border: 1px solid rgba(200,160,90,.15);
  transform: rotate(45deg);
}

.page-hero__shape--one {
  right: 5%;
  top: -190px;
  width: 480px;
  height: 480px;
}

.page-hero__shape--two {
  right: 20%;
  bottom: -280px;
  width: 420px;
  height: 420px;
}

.page-hero--404 {
  min-height: 620px;
}

/* Layout and images */
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .96fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.split-layout--reverse .split-layout__content {
  order: 1;
}

.split-layout--reverse .framed-image {
  order: 2;
}

.split-layout__content h2 {
  margin-bottom: 24px;
}

.split-layout__content p {
  color: var(--muted);
}

.split-layout__content .lead {
  color: var(--navy-800);
  font-size: 1.13rem;
  font-weight: 520;
}

.image-composition {
  position: relative;
  min-height: 565px;
  padding: 0 34px 38px 0;
}

.image-composition::before {
  content: "";
  position: absolute;
  left: -38px;
  top: -38px;
  width: 120px;
  height: 120px;
  opacity: .6;
  background-image: radial-gradient(var(--gold-500) 1.1px, transparent 1.1px);
  background-size: 10px 10px;
}

.image-composition__main {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: var(--shadow-md);
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-composition__accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 48%;
  background: var(--gold-500);
}

.image-composition__badge {
  position: absolute;
  z-index: 3;
  right: -26px;
  bottom: 72px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 235px;
  padding: 20px 22px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.image-composition__badge .ascend-icon {
  width: 38px;
  height: 38px;
  color: var(--gold-400);
}

.image-composition__badge strong,
.image-composition__badge span {
  display: block;
}

.image-composition__badge strong {
  font-size: .95rem;
}

.image-composition__badge span {
  color: rgba(255,255,255,.62);
  font-size: .76rem;
}

.ascend-image-placeholder {
  width: 100%;
  min-height: 300px;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(200,160,90,.2), transparent 35%),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: rgba(255,255,255,.45);
}

.ascend-image-placeholder::before,
.ascend-image-placeholder::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.1);
  transform: rotate(45deg);
}

.ascend-image-placeholder::before { width: 280px; height: 280px; }
.ascend-image-placeholder::after { width: 160px; height: 160px; }
.ascend-image-placeholder span { position: relative; z-index: 2; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }

.framed-image {
  position: relative;
  height: 620px;
  padding: 20px 20px 0 0;
}

.framed-image::before {
  content: "";
  position: absolute;
  inset: 0 0 55px 55px;
  border: 1px solid var(--gold-500);
}

.framed-image > img,
.framed-image > .ascend-image-placeholder {
  position: relative;
  z-index: 1;
  width: calc(100% - 20px);
  height: calc(100% - 35px);
  box-shadow: var(--shadow-md);
}

.framed-image__caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 300px;
  padding: 20px 24px;
  background: var(--navy-900);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
}

.framed-image__caption .ascend-icon {
  width: 27px;
  color: var(--gold-400);
}

.framed-image--dark::before {
  border-color: rgba(200,160,90,.5);
}

/* Feature lists */
.feature-list {
  display: grid;
  gap: 15px 25px;
  margin: 30px 0 35px;
}

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

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

.feature-list > div,
.service-bullets li,
.assurance-list > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy-800);
  font-size: .93rem;
  font-weight: 630;
}

.feature-list .ascend-icon,
.service-bullets .ascend-icon,
.assurance-list .ascend-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--gold-500);
}

.feature-list--light > div {
  color: rgba(255,255,255,.82);
}

/* Service cards */
.services-overview {
  overflow: hidden;
}

.services-overview::before {
  content: "";
  position: absolute;
  right: -190px;
  top: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(200,160,90,.09);
  transform: rotate(45deg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
}

.service-card {
  position: relative;
  min-height: 345px;
  padding: 36px;
  overflow: hidden;
  background: var(--navy-900);
  transition: background var(--transition), transform var(--transition);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -100% 0 0;
  height: 3px;
  background: var(--gold-500);
  transition: right 500ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--navy-800);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  right: 0;
}

.service-card__number {
  position: absolute;
  right: 28px;
  top: 20px;
  color: rgba(255,255,255,.09);
  font-size: 3.7rem;
  font-weight: 800;
  line-height: 1;
}

.service-card__icon,
.service-detail__icon,
.value-card__icon,
.reason-card__icon {
  display: grid;
  place-items: center;
  width: 57px;
  height: 57px;
  margin-bottom: 27px;
  border: 1px solid rgba(200,160,90,.32);
  color: var(--gold-400);
  background: rgba(200,160,90,.06);
}

.service-card__icon .ascend-icon,
.service-detail__icon .ascend-icon,
.value-card__icon .ascend-icon,
.reason-card__icon .ascend-icon {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  max-width: 280px;
  margin-bottom: 15px;
}

.service-card p {
  color: rgba(255,255,255,.59);
  font-size: .9rem;
  line-height: 1.65;
}

.service-card > a {
  position: absolute;
  left: 36px;
  bottom: 31px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  font-size: .8rem;
  font-weight: 750;
}

/* Reasons home */
.why-home {
  background:
    linear-gradient(90deg, transparent 50%, rgba(244,246,247,.72) 50%);
}

.reason-list {
  display: grid;
  gap: 23px;
  margin: 35px 0 42px;
}

.reason-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.reason-list > div > span {
  padding-top: 2px;
  color: var(--gold-500);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.reason-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: 1rem;
}

.reason-list p {
  margin: 0;
  font-size: .9rem;
}

/* Process */
.process-section {
  overflow: hidden;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-200), var(--gold-500), var(--gold-200), transparent);
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step__icon {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  border: 1px solid var(--gold-200);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 0 0 12px var(--soft);
}

.process-step__icon .ascend-icon {
  width: 31px;
  height: 31px;
}

.process-step__icon span {
  position: absolute;
  right: -2px;
  top: -2px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: .63rem;
  font-weight: 850;
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.6;
}

/* Industries tiles */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.industry-tile {
  --section-bg: none;
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 27px;
  overflow: hidden;
  background-image: var(--section-bg), linear-gradient(145deg, var(--navy-800), var(--navy-950));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.industry-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,23,37,.95), rgba(7,23,37,.15) 70%);
  transition: background var(--transition);
}

.industry-tile:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.industry-tile:hover::before {
  background: linear-gradient(0deg, rgba(7,23,37,.96), rgba(7,23,37,.25));
}

.industry-tile__icon,
.industry-tile strong,
.industry-tile__arrow {
  position: relative;
  z-index: 2;
}

.industry-tile__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 17px;
  border: 1px solid rgba(255,255,255,.23);
  background: rgba(7,23,37,.38);
  color: var(--gold-400);
  backdrop-filter: blur(8px);
}

.industry-tile__icon .ascend-icon {
  width: 25px;
  height: 25px;
}

.industry-tile strong {
  padding-right: 40px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.industry-tile__arrow {
  position: absolute;
  right: 24px;
  bottom: 25px;
  color: var(--gold-400);
}

.industry-tile:hover .industry-tile__arrow .ascend-icon {
  transform: translateX(5px);
}

/* About */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.statement-card {
  position: relative;
  min-height: 410px;
  padding: 54px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.statement-card--dark {
  background: var(--navy-900);
  color: rgba(255,255,255,.68);
}

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

.statement-card__number {
  position: absolute;
  right: 34px;
  top: 20px;
  color: rgba(11,34,57,.05);
  font-size: 7rem;
  font-weight: 850;
  line-height: 1;
}

.statement-card--dark .statement-card__number {
  color: rgba(255,255,255,.05);
}

.statement-card__icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 42px;
  background: var(--gold-500);
  color: var(--navy-950);
}

.statement-card__icon .ascend-icon {
  width: 30px;
  height: 30px;
}

.statement-card h2 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.statement-card p {
  color: var(--muted);
}

.statement-card--dark p {
  color: rgba(255,255,255,.62);
}

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

.value-card {
  min-height: 295px;
  padding: 31px 26px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-200);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  margin-bottom: 13px;
}

.value-card p {
  color: var(--muted);
  font-size: .88rem;
}

.approach-section .split-layout__content p {
  color: rgba(255,255,255,.65);
}

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

.trust-item {
  min-height: 190px;
  padding: 28px;
  border-top: 2px solid var(--gold-500);
  background: var(--soft);
}

.trust-item span {
  display: block;
  margin-bottom: 33px;
  color: var(--gold-500);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .13em;
}

.trust-item h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
}

/* Service details */
.narrow-intro {
  max-width: 900px;
  text-align: center;
}

.narrow-intro .eyebrow {
  justify-content: center;
}

.narrow-intro h2 {
  margin-bottom: 22px;
}

.narrow-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services-intro {
  padding-bottom: 70px;
}

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

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 470px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-detail--reverse .service-detail__image {
  order: 2;
}

.service-detail__image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--navy-900);
}

.service-detail__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,23,37,.38), transparent 55%);
}

.service-detail__number {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 24px;
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.service-detail__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 70px);
}

.service-detail__content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.service-detail__content > p {
  color: var(--muted);
}

.service-bullets {
  display: grid;
  gap: 11px;
  margin: 21px 0 29px;
  padding: 0;
  list-style: none;
}

/* Why choose */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.reason-card {
  position: relative;
  min-height: 315px;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid transparent;
  box-shadow: 0 10px 35px rgba(7,23,37,.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.reason-card:nth-child(7) {
  grid-column: 2 / 3;
}

.reason-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-200);
  box-shadow: var(--shadow-md);
}

.reason-card__number {
  position: absolute;
  right: 22px;
  top: 15px;
  color: rgba(11,34,57,.05);
  font-size: 4.6rem;
  font-weight: 850;
  line-height: 1;
}

.reason-card h3 {
  margin-bottom: 12px;
}

.reason-card p {
  color: var(--muted);
  font-size: .9rem;
}

.assurance-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
}

.assurance-copy p {
  color: rgba(255,255,255,.64);
}

.assurance-list {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
}

.assurance-list > div {
  min-height: 76px;
  align-items: center;
  padding: 20px 23px;
  background: var(--navy-900);
  color: rgba(255,255,255,.82);
}

/* Industries */
.industries-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.industry-card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.industry-card__image {
  --section-bg: none;
  position: relative;
  min-height: 300px;
  padding: 27px;
  overflow: hidden;
  background-image: var(--section-bg), linear-gradient(145deg, var(--navy-800), var(--navy-950));
  background-size: cover;
  background-position: center;
}

.industry-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,23,37,.72), transparent 60%);
}

.industry-card__icon,
.industry-card__image > span {
  position: absolute;
  z-index: 2;
}

.industry-card__icon {
  left: 27px;
  bottom: 25px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--gold-500);
  color: var(--navy-950);
}

.industry-card__icon .ascend-icon {
  width: 29px;
  height: 29px;
}

.industry-card__image > span {
  right: 27px;
  top: 23px;
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.industry-card__content {
  padding: 34px;
}

.industry-card__content h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.industry-card__content p {
  color: var(--muted);
}

.capability-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  color: var(--navy-900);
  font-size: .83rem;
  font-weight: 750;
}

.capability-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 45px;
  align-items: start;
}

.contact-panel {
  position: relative;
  background: var(--navy-900);
  color: rgba(255,255,255,.68);
  box-shadow: var(--shadow-md);
}

.contact-panel__image {
  height: 320px;
  overflow: hidden;
}

.contact-panel__image img,
.contact-panel__image .ascend-image-placeholder {
  width: 100%;
  height: 100%;
}

.contact-panel__content {
  padding: 42px;
}

.contact-panel__content h2 {
  margin-bottom: 32px;
  color: var(--white);
  font-size: 2rem;
}

.contact-detail {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.11);
}

.contact-detail > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200,160,90,.35);
  color: var(--gold-400);
}

.contact-detail .ascend-icon {
  width: 21px;
  height: 21px;
}

.contact-detail small {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-400);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
}

.contact-form-wrap {
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap > h2 {
  margin-bottom: 14px;
}

.contact-form-wrap > p {
  margin-bottom: 34px;
  color: var(--muted);
}

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

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

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

.contact-form label > span {
  color: var(--navy-900);
  font-size: .78rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--soft);
  color: var(--ink);
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form input,
.contact-form select {
  height: 54px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 155px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200,160,90,.12);
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  text-align: center;
}

.form-notice {
  margin-bottom: 25px;
  padding: 15px 17px;
  border-left: 3px solid;
  font-size: .9rem;
}

.form-notice--success {
  border-color: #2f8b59;
  background: #edf8f1;
  color: #226842;
}

.form-notice--error {
  border-color: #b34a4a;
  background: #fff0f0;
  color: #8c3434;
}

/* Footer CTA */
.footer-cta {
  --section-bg: none;
  position: relative;
  overflow: hidden;
  background-image: var(--section-bg), linear-gradient(120deg, var(--navy-800), var(--navy-950));
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.footer-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,23,37,.95), rgba(7,23,37,.74) 58%, rgba(7,23,37,.58));
}

.footer-cta__inner {
  position: relative;
  z-index: 2;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

.footer-cta__inner > div {
  max-width: 720px;
}

.footer-cta h2 {
  margin-bottom: 17px;
  color: var(--white);
}

.footer-cta p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255,255,255,.68);
}

.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.6);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr .95fr 1.1fr;
  gap: 55px;
  padding-top: 80px;
  padding-bottom: 70px;
}

.site-brand--footer .site-brand__text strong,
.site-brand--footer .site-brand__text small {
  color: var(--white);
}

.footer-brand > p {
  max-width: 300px;
  margin: 25px 0;
  font-size: .9rem;
}

.footer-license {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.68);
  font-size: .72rem;
}

.footer-column h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-menu,
.footer-links {
  display: grid;
  gap: 10px;
}

.footer-menu a,
.footer-links a {
  color: rgba(255,255,255,.58);
  font-size: .86rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-menu a:hover,
.footer-links a:hover {
  padding-left: 4px;
  color: var(--gold-400);
}

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

.footer-contact > a,
.footer-contact > p {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0 0 15px;
  color: rgba(255,255,255,.62);
  font-size: .85rem;
}

.footer-contact .ascend-icon {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 4px;
  color: var(--gold-400);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}

.site-footer__bottom .site-shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.site-footer__bottom p {
  margin: 0;
  font-size: .72rem;
}

/* Scroll top */
.scroll-top {
  --progress: 0deg;
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 12px 28px rgba(7,23,37,.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--navy-800);
}

.scroll-top__progress {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: conic-gradient(var(--gold-500) var(--progress), rgba(255,255,255,.15) 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 0);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

/* Generic content */
.content-entry {
  max-width: 900px;
}

.content-entry > * + * {
  margin-top: 1.2em;
}

.post-card {
  padding: 30px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
}

/* Reveal animation */
.js .reveal-up,
.js .reveal-left,
.js .reveal-right {
  opacity: 0;
  transition: opacity 700ms ease var(--delay, 0ms), transform 700ms cubic-bezier(.2,.65,.3,1) var(--delay, 0ms);
}

.js .reveal-up { transform: translateY(28px); }
.js .reveal-left { transform: translateX(-34px); }
.js .reveal-right { transform: translateX(34px); }

.js .is-revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 1180px) {
  :root { --shell: 1060px; }
  .site-navigation { gap: 14px; }
  .primary-menu { gap: 18px; }
  .primary-menu > li > a { font-size: .84rem; }
  .nav-cta { display: none; }
  .values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .value-card:last-child { grid-column: 2 / 3; }
  .site-footer__grid { grid-template-columns: 1.15fr .75fr .95fr 1fr; gap: 34px; }
}

@media (max-width: 980px) {
  body.admin-bar .site-header { top: 46px; }
  .site-topbar { display: none; }
  .site-header { height: 76px; }
  .site-header.is-scrolled { height: 68px; }
  .menu-toggle { display: block; }
  .site-navigation {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    width: min(88vw, 420px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 28px;
    padding: 35px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -20px 0 50px rgba(7,23,37,.14);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 400ms cubic-bezier(.2,.65,.3,1), visibility 400ms;
  }
  .site-header.is-scrolled .site-navigation { top: 68px; }
  .site-navigation.is-open { transform: translateX(0); visibility: visible; }
  .site-navigation::before {
    content: "";
    position: fixed;
    inset: 76px min(88vw, 420px) 0 0;
    background: rgba(7,23,37,.54);
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms;
  }
  .site-navigation.is-open::before { opacity: 1; pointer-events: auto; }
  .primary-menu { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-menu > li { border-bottom: 1px solid var(--line); }
  .primary-menu > li > a { padding: 16px 0; font-size: 1rem; }
  .primary-menu > li > a::after { bottom: -1px; }
  .nav-cta { display: inline-flex; align-self: stretch; }
  .home-hero { min-height: 720px; }
  .home-hero__overlay { background: linear-gradient(90deg, rgba(7,23,37,.96), rgba(7,23,37,.72)); }
  .intro-strip__grid { min-height: 70px; }
  .intro-strip__items { display: none; }
  .split-layout { grid-template-columns: 1fr; gap: 65px; }
  .split-layout--reverse .split-layout__content,
  .split-layout--reverse .framed-image { order: initial; }
  .image-composition { width: min(100%, 690px); margin-inline: auto; }
  .framed-image { width: min(100%, 690px); margin-inline: auto; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-home { background: var(--white); }
  .process-line { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 50px; }
  .process-line::before { display: none; }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-card:last-child { grid-column: auto; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-detail,
  .service-detail--reverse { grid-template-columns: 1fr; }
  .service-detail--reverse .service-detail__image { order: initial; }
  .service-detail__image { min-height: 390px; }
  .reasons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reason-card:nth-child(7) { grid-column: auto; }
  .assurance-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel { display: grid; grid-template-columns: .85fr 1.15fr; }
  .contact-panel__image { height: 100%; min-height: 540px; }
  .footer-cta__inner { min-height: 380px; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 720px) {
  :root { --header-height: 72px; }
  .site-shell { width: min(calc(100% - 30px), var(--shell)); }
  .section { padding: 80px 0; }
  .site-brand { min-width: 0; }
  .site-brand__text strong { font-size: .98rem; }
  .site-brand__text small { font-size: .5rem; }
  .brand-mark { width: 37px; height: 37px; }
  .brand-mark span { width: 8px; }
  .brand-mark span:nth-child(1) { left: 3px; height: 17px; }
  .brand-mark span:nth-child(2) { left: 14px; height: 27px; }
  .brand-mark span:nth-child(3) { left: 25px; height: 35px; }
  .home-hero { min-height: 730px; background-position: 63% center; }
  .home-hero__inner { padding: 90px 0 115px; }
  .home-hero h1 { font-size: clamp(2.55rem, 12vw, 3.8rem); }
  .home-hero__content > p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 42px; }
  .hero-trust > div { min-width: 0; margin: 0; padding: 0; border: 0; }
  .hero-scroll { display: none; }
  .page-hero { min-height: 380px; }
  .page-hero__inner { padding: 80px 0; }
  .page-hero p { font-size: 1rem; }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .section-heading { margin-bottom: 40px; }
  .image-composition { min-height: 470px; padding: 0 18px 24px 0; }
  .image-composition__main { min-height: 445px; }
  .image-composition__badge { right: 0; bottom: 42px; min-width: 220px; padding: 16px; }
  .feature-list--two { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 325px; }
  .framed-image { height: 510px; }
  .framed-image__caption { right: 0; min-width: 250px; max-width: calc(100% - 30px); }
  .process-line { grid-template-columns: 1fr; gap: 35px; }
  .process-step { display: grid; grid-template-columns: 76px 1fr; column-gap: 22px; text-align: left; }
  .process-step__icon { grid-row: 1 / 3; width: 72px; height: 72px; margin: 0; box-shadow: none; }
  .process-step h3 { align-self: end; margin: 0; }
  .process-step p { margin: 5px 0 0; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-tile { min-height: 230px; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .statement-card { min-height: auto; padding: 38px 30px; }
  .statement-card__icon { margin-bottom: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 250px; }
  .trust-grid { grid-template-columns: 1fr; }
  .service-detail__image { min-height: 300px; }
  .service-detail__content { padding: 34px 27px 40px; }
  .reasons-grid { grid-template-columns: 1fr; }
  .industries-detail-grid { grid-template-columns: 1fr; }
  .industry-card__image { min-height: 250px; }
  .capability-bar { justify-content: flex-start; padding: 25px; }
  .contact-panel { display: block; }
  .contact-panel__image { min-height: 280px; height: 280px; }
  .contact-panel__content { padding: 30px 25px; }
  .contact-form-wrap { padding: 30px 23px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-cta__inner { min-height: 420px; align-items: flex-start; justify-content: center; flex-direction: column; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 38px; padding-top: 65px; }
  .site-footer__bottom .site-shell { min-height: 95px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 8px; padding-top: 24px; padding-bottom: 24px; }
  .scroll-top { right: 16px; bottom: 16px; width: 48px; height: 48px; }
}

@media (max-width: 430px) {
  .site-brand__text small { display: none; }
  .site-brand__text strong { letter-spacing: .16em; }
  .site-navigation { width: 92vw; padding: 28px; }
  .site-navigation::before { right: 92vw; }
  .home-hero__grid-lines { background-size: 60px 60px; }
  .image-composition::before { display: none; }
  .image-composition__badge { left: 18px; right: auto; min-width: auto; }
  .framed-image { height: 440px; padding-right: 12px; }
  .framed-image::before { inset: 0 0 42px 38px; }
  .framed-image__caption { font-size: .76rem; }
  .contact-detail { grid-template-columns: 40px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal-up,
  .js .reveal-left,
  .js .reveal-right,
  .js .hero-reveal {
    opacity: 1;
    transform: none;
  }
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(7,23,37,.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease, visibility 400ms ease;
}

@media (max-width: 980px) {
  .menu-backdrop {
    top: 76px;
    z-index: 998;
  }
  .site-header.is-scrolled .menu-backdrop { top: 68px; }
  .menu-backdrop.is-visible { opacity: 1; visibility: visible; }
  .site-navigation { z-index: 999; }
  .site-navigation::before { display: none; }
}

.button,
.site-topbar__contact a {
  white-space: nowrap;
}

/* Mobile navigation correction — full-width, compact and isolated from desktop styles. */
@media (max-width: 980px) {
  .site-header,
  .site-header__inner {
    overflow: visible;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    flex: 0 0 46px;
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    margin: 0;
    padding: 0 12px;
    border-radius: 50%;
    line-height: 1;
  }

  .menu-toggle span {
    width: 100%;
    margin: 5px 0;
  }

  .site-navigation {
    top: 76px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    max-width: none;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
    padding: 22px 24px 34px;
    gap: 22px;
    border-top: 1px solid rgba(11, 34, 57, .08);
    background: #fff;
    box-shadow: 0 22px 45px rgba(7, 23, 37, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 260ms ease, transform 260ms ease, visibility 260ms ease;
    overscroll-behavior: contain;
  }

  .site-header.is-scrolled .site-navigation {
    top: 68px;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
  }

  .site-navigation.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-navigation .primary-menu,
  .site-navigation .menu {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0;
    list-style: none;
    background: transparent;
  }

  .site-navigation .primary-menu > li,
  .site-navigation .menu > li {
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: 0;
    border-bottom: 1px solid rgba(11, 34, 57, .10);
    background: transparent !important;
  }

  .site-navigation .primary-menu > li > a,
  .site-navigation .menu > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 56px;
    margin: 0 !important;
    padding: 15px 2px !important;
    border: 0;
    background: transparent !important;
    color: var(--navy-900);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    box-shadow: none;
  }

  .site-navigation .primary-menu > li > a::after,
  .site-navigation .menu > li > a::after {
    bottom: 0;
  }

  .site-navigation .primary-menu > li.current-menu-item > a,
  .site-navigation .primary-menu > li.current_page_item > a,
  .site-navigation .menu > li.current-menu-item > a,
  .site-navigation .menu > li.current_page_item > a {
    color: var(--gold-500);
  }

  .site-navigation .nav-cta {
    width: 100%;
    margin: 2px 0 0;
  }

  .menu-backdrop {
    display: none;
  }
}

@media (max-width: 430px) {
  .site-navigation {
    width: 100%;
    padding: 18px 20px 28px;
  }
}
