:root {
  --ink: #0a0a0a;
  --ink-soft: #171717;
  --paper: #ffffff;
  --mist: #f3f3f1;
  --muted: #626262;
  --line: #d8d8d4;
  --signal: #df171f;
  --signal-dark: #b90f16;
  --gold: #f2b600;
  --display: "Arial Narrow", "Helvetica Neue Condensed", "Franklin Gothic Condensed", Impact, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
  --shell: 1280px;
  --gutter: 40px;
  --header-height: 92px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --glass-light: rgba(255, 255, 255, .66);
  --glass-dark: rgba(255, 255, 255, .065);
  --glass-line-light: rgba(255, 255, 255, .82);
  --glass-line-dark: rgba(255, 255, 255, .15);
  --glass-shadow: 0 24px 60px rgba(20, 24, 27, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity .25s ease;
}

body.is-ready,
body:has(.load-error) {
  opacity: 1;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .96;
  text-transform: uppercase;
}

h1 {
  font-size: 6.4rem;
}

h2 {
  margin-bottom: 28px;
  font-size: 4.5rem;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.08;
}

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.section-label {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--signal);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.section-label::before {
  width: 32px;
  height: 3px;
  background: currentColor;
  content: "";
}

.section-intro {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: .79rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.button svg,
.service-row svg,
.mobile-nav svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .25s var(--ease);
}

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

.button:hover svg,
.service-row:hover > a svg {
  transform: translateX(4px);
}

.button--primary {
  background: var(--signal);
  color: var(--paper);
}

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

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

.button--outline-light:hover,
.button--light {
  background: var(--paper);
  color: var(--ink);
}

.button--outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}

.button--outline-dark:hover {
  background: var(--ink);
  color: var(--paper);
}

.button--text {
  min-height: 36px;
  padding: 0 0 6px;
  border-bottom: 2px solid var(--signal);
  border-radius: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  color: var(--paper);
  transition: height .3s ease, background-color .3s ease, box-shadow .3s ease;
}

body:not([data-page="home"]) .site-header,
.site-header.is-scrolled,
.menu-open .site-header {
  height: 76px;
  background: rgba(10, 10, 10, .97);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .12);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(250px, 1fr) auto minmax(220px, 1fr);
  gap: 28px;
  align-items: center;
}

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

.brand img {
  width: 82px;
  height: auto;
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  max-width: 225px;
  line-height: 1.05;
}

.brand strong {
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--gold);
  font-size: .64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav ul,
.mobile-nav ul,
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  padding-block: 12px;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 13px 18px;
  background: var(--signal);
  border-radius: 2px;
  font-size: .72rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color .2s ease;
}

.header-cta:hover {
  background: var(--signal-dark);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  height: 88svh;
  min-height: 670px;
  max-height: 850px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  transform: scale(1.035);
  transform-origin: center;
  will-change: transform;
}

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

.hero-media > img {
  object-position: var(--hero-position, center);
}

.hero-media > video {
  position: absolute;
  inset: 0;
  object-position: var(--hero-position, center);
  opacity: 0;
  transition: opacity 1s ease;
}

.page-hero-media > img {
  object-position: var(--page-position, center);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, .98) 0%, rgba(10, 10, 10, .88) 27%, rgba(10, 10, 10, .48) 48%, rgba(10, 10, 10, 0) 72%);
  content: "";
}

.hero-content {
  position: relative;
  display: flex;
  height: 100%;
  padding-top: var(--header-height);
  align-items: center;
}

.hero-copy {
  width: min(590px, 53%);
  padding-top: 42px;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 26px;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 470px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.3rem;
  line-height: 1.45;
}

.hero-actions {
  display: grid;
  max-width: 540px;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 12px;
}

.hero-actions .button {
  min-width: 0;
}

.hero-stats {
  display: grid;
  max-width: 520px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .26);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.hero-stat {
  position: relative;
  display: grid;
  min-width: 0;
  padding-top: 16px;
}

.hero-stat::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 42px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.hero-stat strong {
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
}

.hero-stat span {
  margin-top: 5px;
  color: rgba(255, 255, 255, .68);
  font-size: .69rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-progress {
  position: absolute;
  top: 34%;
  left: 28px;
  z-index: 2;
  height: 52px;
}

.hero-progress i {
  display: none;
}

.hero-progress i:first-child {
  display: block;
  width: 5px;
  height: 52px;
  background: var(--signal);
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 72px;
  align-items: center;
}

.media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  background: #dcdcdc;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.025);
}

.premium-icon {
  display: block;
  width: 28px;
  height: 28px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-row .premium-icon *,
.training-point .premium-icon *,
.value-row .premium-icon *,
.sectors-band .premium-icon * {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transition: stroke-dashoffset .95s var(--ease);
}

.service-row.is-visible .premium-icon *,
.training-point.is-visible .premium-icon *,
.value-row.is-visible .premium-icon *,
.sectors-band.is-visible .premium-icon * {
  stroke-dashoffset: 0;
}

.parallax-frame img {
  height: calc(100% + 48px);
  margin-top: -24px;
  transform: translate3d(0, var(--media-shift, 0), 0) scale(1.04);
  transition: transform .35s linear;
  will-change: transform;
}

.parallax-frame:hover img {
  transform: translate3d(0, var(--media-shift, 0), 0) scale(1.065);
}

.media-frame--landscape {
  aspect-ratio: 16 / 10;
}

.editorial-copy h2 {
  max-width: 600px;
}

.editorial-copy > p:not(.section-label) {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.services-preview {
  background: var(--mist);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 78px;
  align-items: start;
}

.services-main > h2 {
  max-width: 710px;
}

.service-list {
  margin-block: 54px 44px;
  border-top: 1px solid var(--line);
}

.service-list--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 36px;
}

.service-row {
  position: relative;
  display: grid;
  min-height: 92px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 52px 1fr 30px;
  gap: 12px;
  align-items: center;
  overflow: hidden;
  transition: background-color .25s ease, padding-inline .25s ease;
}

.service-row::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.service-row:hover {
  background: var(--paper);
}

.service-row:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-icon {
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--ink);
  place-items: center;
  transition: color .25s ease, transform .3s var(--ease);
}

.service-icon .premium-icon {
  width: 30px;
  height: 30px;
}

.service-row:hover .service-icon {
  color: var(--signal);
  transform: translateY(-3px);
}

.service-row h3 {
  margin: 0;
  font-size: 1.1rem;
}

.service-row p {
  max-width: 620px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}

.service-row > a {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--signal);
  place-items: center;
}

.service-list--detailed .service-row {
  background: var(--paper);
}

.services-anchor {
  position: sticky;
  top: 112px;
  height: 720px;
}

.services-anchor img {
  object-position: 43% center;
}

.sectors-band {
  position: relative;
  padding-block: 96px 54px;
  overflow: hidden;
  background-color: #e7eaec;
  background-image:
    linear-gradient(124deg, rgba(255, 255, 255, .98) 0 27%, rgba(255, 255, 255, .4) 27% 66%, transparent 66%),
    repeating-linear-gradient(124deg, transparent 0 96px, rgba(26, 35, 40, .035) 97px 98px);
  color: var(--ink);
}

.sectors-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, transparent 0 57%, rgba(223, 23, 31, .045) 57% 69%, rgba(242, 182, 0, .045) 69% 77%, transparent 77%),
    linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 52%);
  pointer-events: none;
  content: "";
}

.sectors-heading {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 54px;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.sectors-heading::after {
  width: min(260px, 48vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--signal), var(--gold), transparent);
  content: "";
}

.sectors-heading h2 {
  max-width: 950px;
  margin-bottom: 0;
  font-size: 3.7rem;
}

.sectors-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: #4c5355;
  font-size: 1.03rem;
}

.sector-viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 12px 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.sector-track {
  display: flex;
  width: max-content;
  animation: sector-drift 44s linear infinite;
  gap: 14px;
  will-change: transform;
}

.sector-track:hover {
  animation-play-state: paused;
}

.sector-set {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
}

.sector-set span {
  display: grid;
  width: 220px;
  min-height: 180px;
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 6px;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 18px 42px rgba(24, 31, 35, .11), inset 0 1px 0 rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(18px) saturate(122%);
  backdrop-filter: blur(18px) saturate(122%);
  align-content: center;
  justify-items: center;
  gap: 18px;
  text-align: center;
  transition: border-color .3s ease, box-shadow .3s ease, transform .35s var(--ease);
}

.sector-set i {
  display: grid;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(223, 23, 31, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .62);
  box-shadow: inset 0 1px 0 #fff, 0 10px 24px rgba(24, 31, 35, .08);
  color: var(--signal);
  font-style: normal;
  place-items: center;
  transition: background-color .3s ease, border-color .3s ease, color .3s ease, transform .35s var(--ease);
}

.sector-set span:nth-child(2n) i {
  border-color: rgba(183, 131, 0, .2);
  color: #b78300;
}

.sector-set .premium-icon {
  width: 32px;
  height: 32px;
  stroke-width: 1.45;
}

.sector-set b {
  max-width: 170px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.sector-set span:hover {
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 26px 56px rgba(24, 31, 35, .16), inset 0 1px 0 #fff;
  transform: translateY(-6px);
}

.sector-set span:hover i {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--paper);
  transform: scale(1.06);
}

.sector-set span:nth-child(2n):hover i {
  border-color: #b78300;
  background: #b78300;
  color: var(--paper);
}

@keyframes sector-drift {
  to { transform: translateX(-50%); }
}

.training-layout {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
  gap: 74px;
  align-items: start;
}

.training-copy {
  padding-top: 28px;
}

.training-points {
  margin-block: 45px 36px;
  border-top: 1px solid var(--line);
}

.training-point {
  display: grid;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
}

.training-icon {
  display: grid;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--gold);
  place-items: center;
  transition: background-color .25s ease, color .25s ease, transform .3s var(--ease);
}

.training-icon .premium-icon {
  width: 25px;
  height: 25px;
}

.training-point:hover .training-icon {
  background: var(--signal);
  color: var(--paper);
  transform: translateY(-3px);
}

.training-point h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.training-point p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.training-media {
  position: relative;
  min-height: 770px;
}

.training-primary {
  position: absolute;
  inset: 0 0 110px 0;
}

.training-primary img {
  object-position: center 38%;
}

.training-secondary {
  position: absolute;
  right: -18px;
  bottom: 0;
  width: 57%;
  aspect-ratio: 16 / 10;
  border: 12px solid var(--paper);
}

.training-media--single {
  min-height: 680px;
}

.training-media--single .training-primary {
  inset: 0;
}

.gallery-preview {
  position: relative;
  padding-block: 96px 0;
  overflow: hidden;
  background-color: #e9ecee;
  background-image:
    linear-gradient(118deg, rgba(255, 255, 255, .92) 0 34%, rgba(255, 255, 255, .28) 34% 66%, transparent 66%),
    repeating-linear-gradient(118deg, transparent 0 78px, rgba(32, 42, 48, .035) 79px 80px);
}

.gallery-heading {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 58px;
  padding: 34px 38px;
  border: 1px solid var(--glass-line-light);
  border-radius: 6px;
  background: var(--glass-light);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  backdrop-filter: blur(20px) saturate(125%);
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: end;
}

.gallery-heading h2 {
  margin: 0;
}

.gallery-heading > div:last-child {
  padding-bottom: 7px;
}

.gallery-heading > div:last-child p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-reel-viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 14px 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.gallery-reel-track,
.gallery-reel-set {
  display: flex;
  gap: 14px;
}

.gallery-reel-track {
  width: max-content;
  animation: gallery-drift 52s linear infinite;
  will-change: transform;
}

.gallery-reel-track:hover,
.gallery-reel-track:focus-within {
  animation-play-state: paused;
}

.gallery-reel-item {
  position: relative;
  width: 350px;
  height: 240px;
  min-width: 350px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 6px;
  background: #bbb;
  box-shadow: 0 18px 38px rgba(22, 28, 32, .16);
  color: var(--paper);
}

.gallery-reel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.86) contrast(1.02);
  transition: filter .35s ease, transform .55s var(--ease);
}

.gallery-reel-item > span {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  padding: 62px 18px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .78));
  align-items: end;
  justify-content: space-between;
}

.gallery-reel-item b {
  font-size: .7rem;
  text-transform: uppercase;
}

.gallery-reel-item svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.gallery-reel-item:hover img,
.gallery-reel-item:focus-visible img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.035);
}

@keyframes gallery-drift {
  to { transform: translateX(-50%); }
}

.gallery-mosaic {
  display: grid;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  background: #ccc;
  color: var(--paper);
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s ease;
}

.gallery-item > span {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  padding: 48px 16px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .78));
  align-items: end;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-item b {
  font-size: .7rem;
  text-transform: uppercase;
}

.gallery-item svg,
.social-links svg,
.contact-direct svg,
.lightbox svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.gallery-item:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.035);
}

.gallery-item:hover > span,
.gallery-item:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-mosaic .gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 2; }
.gallery-mosaic .gallery-item:nth-child(2) { grid-column: span 3; }
.gallery-mosaic .gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-mosaic .gallery-item:nth-child(4) { grid-column: span 6; }
.gallery-mosaic .gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-mosaic .gallery-item:nth-child(6) { grid-column: span 4; }
.gallery-mosaic .gallery-item:nth-child(7) { grid-column: span 4; }

.metrics-band {
  position: relative;
  padding-block: 82px 94px;
  overflow: hidden;
  background-color: #e7eaec;
  background-image:
    linear-gradient(122deg, rgba(255, 255, 255, .96) 0 30%, rgba(255, 255, 255, .36) 30% 68%, transparent 68%),
    repeating-linear-gradient(122deg, transparent 0 92px, rgba(27, 36, 42, .04) 93px 94px);
}

.metrics-band::after {
  position: absolute;
  inset: 0 0 auto;
  height: 42%;
  background: linear-gradient(102deg, transparent 0 62%, rgba(223, 23, 31, .055) 62% 74%, rgba(242, 182, 0, .05) 74% 82%, transparent 82%);
  pointer-events: none;
  content: "";
}

.metrics-heading,
.metrics-grid {
  position: relative;
  z-index: 1;
}

.metrics-heading {
  display: flex;
  margin-bottom: 54px;
  align-items: end;
  justify-content: space-between;
}

.metrics-heading .section-label {
  margin-bottom: 8px;
}

.metrics-heading h2 {
  max-width: 610px;
  margin: 0;
  font-size: 3.7rem;
  text-align: right;
}

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

.metric-item {
  position: relative;
  display: grid;
  min-height: 250px;
  padding: 34px 30px 28px;
  overflow: hidden;
  border: 1px solid var(--glass-line-light);
  border-radius: 6px;
  background: var(--glass-light);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  align-content: space-between;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s var(--ease);
}

.metric-item::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--signal), var(--gold));
  content: "";
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.metric-item:hover {
  border-color: rgba(255, 255, 255, .98);
  box-shadow: 0 30px 70px rgba(20, 24, 27, .16), inset 0 1px 0 #fff;
  transform: translateY(-5px);
}

.metric-item:hover::before {
  transform: scaleX(1);
}

.metric-icon {
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--ink);
  place-items: center;
}

.metric-icon .premium-icon {
  width: 48px;
  height: 48px;
  stroke: var(--signal);
  stroke-width: 1.35;
}

.metric-item strong {
  min-height: 1em;
  color: var(--signal);
  font-family: var(--display);
  font-size: 4.6rem;
  font-weight: 900;
  line-height: .86;
  font-variant-numeric: tabular-nums;
  transition: filter .15s ease;
}

.metric-item strong.is-counting {
  filter: blur(.35px);
}

.metric-item > span:last-child {
  color: #3f3f3f;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.presence-band {
  position: relative;
  padding-block: 112px;
  overflow: hidden;
  background-color: #202627;
  background-image:
    linear-gradient(132deg, rgba(255, 255, 255, .075) 0 24%, transparent 24% 70%, rgba(242, 182, 0, .055) 70%),
    repeating-linear-gradient(132deg, transparent 0 84px, rgba(255, 255, 255, .026) 85px 86px);
  color: var(--paper);
}

.presence-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0 58%, rgba(255, 255, 255, .035) 58% 70%, transparent 70%),
    linear-gradient(90deg, rgba(223, 23, 31, .055), transparent 28%);
  pointer-events: none;
  content: "";
}

.presence-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(460px, 1.28fr);
  gap: 70px;
  align-items: center;
}

.presence-copy {
  padding: 42px;
  border: 1px solid var(--glass-line-dark);
  border-radius: 6px;
  background: var(--glass-dark);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  backdrop-filter: blur(20px) saturate(120%);
}

.presence-copy .section-label {
  color: var(--gold);
}

.presence-copy h2 {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: 5.2rem;
}

.presence-copy > p {
  max-width: 540px;
  color: rgba(255, 255, 255, .68);
  font-size: 1.08rem;
}

.presence-list {
  display: grid;
  padding: 28px 0 0;
  margin: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
}

.presence-state {
  display: flex;
  min-height: 46px;
  gap: 12px;
  align-items: center;
  outline: none;
}

.presence-state i {
  width: 9px;
  height: 9px;
  background: var(--presence-color, var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--presence-color, var(--gold)) 14%, transparent);
  transition: transform .25s var(--ease);
}

.presence-state:hover i,
.presence-state:focus i {
  transform: scale(1.45);
}

.presence-state span {
  display: grid;
  line-height: 1.15;
}

.presence-state strong {
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
}

.presence-state small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .5);
  font-size: .68rem;
}

.presence-map-wrap {
  position: relative;
  width: min(100%, 690px);
  padding: 22px;
  margin-inline: auto;
  border: 1px solid var(--glass-line-dark);
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .09);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  backdrop-filter: blur(18px) saturate(115%);
  aspect-ratio: 1;
}

.presence-map {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 34px 40px rgba(0, 0, 0, .42));
}

.map-status {
  fill: rgba(255, 255, 255, .55);
  font: 700 16px var(--body);
  text-transform: uppercase;
}

.india-state {
  fill: #4a5152;
  stroke: #93999a;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
  transition: fill .32s var(--ease), opacity .32s ease, filter .32s ease;
}

.india-state.is-active {
  fill: var(--presence-color, var(--gold));
  stroke: rgba(255, 255, 255, .82);
}

.india-state.is-focused {
  filter: brightness(1.26);
}

.presence-marker {
  color: var(--presence-color, var(--gold));
  pointer-events: none;
}

.marker-core,
.marker-pulse {
  fill: currentColor;
}

.marker-pulse {
  opacity: .18;
  animation: marker-pulse 2.4s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.presence-marker.is-focused .marker-core {
  stroke: #fff;
  stroke-width: 3;
}

@keyframes marker-pulse {
  0% { opacity: .34; transform: scale(.35); }
  75%, 100% { opacity: 0; transform: scale(1.45); }
}

.trust-band {
  padding-block: 104px 0;
  overflow: hidden;
  background-color: #f1f3f4;
  background-image:
    linear-gradient(128deg, rgba(255, 255, 255, .94) 0 38%, transparent 38%),
    repeating-linear-gradient(128deg, transparent 0 96px, rgba(24, 33, 38, .025) 97px 98px);
  color: var(--ink);
}

.trust-band .section-label {
  color: var(--signal);
}

.trust-layout {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 80px;
  align-items: center;
}

.trust-layout h2 {
  max-width: 780px;
  margin: 0;
}

.trust-layout > p {
  margin: 0;
  color: #555;
}

.client-logo-rail {
  padding-block: 16px 22px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.client-logo-track,
.client-logo-set {
  display: flex;
  gap: 14px;
}

.client-logo-track {
  width: max-content;
  animation: client-drift 38s linear infinite;
}

.client-logo {
  display: grid;
  width: 224px;
  min-width: 224px;
  min-height: 160px;
  padding: 28px 26px 22px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 6px;
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 16px 38px rgba(23, 30, 34, .1), inset 0 1px 0 rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
  place-items: center;
  gap: 12px;
}

.client-logo img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .35s ease, opacity .35s ease, transform .35s var(--ease);
}

.client-logo span {
  color: #686868;
  font-size: .66rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.client-logo:hover img,
.client-logo:focus-visible img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-3px);
}

@keyframes client-drift {
  to { transform: translateX(-50%); }
}

.contact-band {
  position: relative;
  padding-block: 96px;
  overflow: hidden;
  background-color: #191d1e;
  background-image:
    linear-gradient(128deg, rgba(255, 255, 255, .065) 0 25%, transparent 25% 68%, rgba(223, 23, 31, .09) 68%),
    repeating-linear-gradient(128deg, transparent 0 88px, rgba(255, 255, 255, .025) 89px 90px);
  color: var(--paper);
}

.contact-band::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 54%, rgba(242, 182, 0, .035) 54% 69%, transparent 69%);
  pointer-events: none;
  content: "";
}

.contact-band::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: 36%;
  background: linear-gradient(135deg, transparent, rgba(223, 23, 31, .16));
  pointer-events: none;
  content: "";
}

.contact-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 44px;
  border: 1px solid var(--glass-line-dark);
  border-radius: 6px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  backdrop-filter: blur(20px) saturate(120%);
  grid-template-columns: 1fr minmax(420px, .8fr);
  gap: 80px;
  align-items: center;
}

.contact-band .section-label {
  color: var(--gold);
}

.contact-band h2 {
  max-width: 720px;
  margin-bottom: 18px;
}

.contact-band p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
}

.contact-band-location {
  display: grid;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, .2);
  gap: 22px;
}

.contact-pin {
  display: grid;
  width: 48px;
  height: 48px;
  background: var(--signal);
  color: var(--paper);
  place-items: center;
}

.contact-pin .premium-icon {
  width: 24px;
  height: 24px;
}

.contact-band address {
  max-width: 540px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.contact-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  position: relative;
  height: 68svh;
  min-height: 600px;
  max-height: 760px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.page-hero-media {
  background: var(--ink);
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, .92), rgba(10, 10, 10, .6) 42%, rgba(10, 10, 10, .05) 76%);
  content: "";
}

.page-hero-content {
  position: relative;
  display: flex;
  height: 100%;
  padding-top: var(--header-height);
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 5.5rem;
}

.page-hero p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.18rem;
}

.story-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px 86px;
}

.story-copy {
  padding-top: 45px;
}

.story-copy p {
  color: var(--muted);
  font-size: 1.14rem;
}

.story-image {
  height: 570px;
  grid-column: 1 / -1;
}

.story-image img {
  object-position: center 38%;
}

.mission-band {
  padding-block: 100px;
  background: var(--ink);
  color: var(--paper);
}

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

.mission-grid article {
  padding-right: 70px;
}

.mission-grid article + article {
  padding-right: 0;
  padding-left: 70px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.mission-grid h2 {
  margin: 0;
  font-family: var(--body);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.45;
  text-transform: none;
}

.values-section h2 {
  max-width: 780px;
}

.value-list {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.value-row {
  display: grid;
  min-height: 130px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 80px 280px 1fr;
  gap: 36px;
  align-items: center;
}

.value-row > span {
  color: var(--signal);
}

.value-icon {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  place-items: center;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .3s var(--ease);
}

.value-icon .premium-icon {
  width: 25px;
  height: 25px;
}

.value-row:hover .value-icon {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold);
  transform: translateY(-3px);
}

.value-row h3,
.value-row p {
  margin: 0;
}

.value-row p {
  max-width: 590px;
  color: var(--muted);
}

.footprint-section {
  background: var(--mist);
}

.footprint-layout,
.branches-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.footprint-layout > div:first-child,
.branches-layout > div:first-child {
  position: sticky;
  top: 120px;
  align-self: start;
}

.footprint-layout > div:first-child p,
.branches-layout > div:first-child p {
  color: var(--muted);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.branch-grid article {
  min-height: 170px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.branch-grid article:nth-child(2n) {
  border-right: 0;
}

.branch-grid h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.branch-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.services-page-layout {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  gap: 100px;
}

.services-page-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.services-page-heading h2 {
  font-size: 3.3rem;
}

.services-page-heading > p:not(.section-label) {
  color: var(--muted);
}

.service-list--detailed {
  margin-top: 0;
}

.service-list--detailed .service-row {
  min-height: 150px;
  grid-template-columns: 58px 1fr 44px;
}

.service-list--detailed .service-row h3 {
  font-size: 1.55rem;
}

.gallery-page-section {
  background: var(--paper);
}

.gallery-tools {
  display: grid;
  margin-bottom: 58px;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.gallery-tools h2 {
  margin-bottom: 0;
}

.gallery-filters {
  display: flex;
  max-width: 610px;
  border: 1px solid var(--line);
  flex-wrap: wrap;
}

.gallery-filters button {
  min-height: 42px;
  padding: 0 15px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--paper);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-filters button:last-child {
  border-right: 0;
}

.gallery-filters button.is-active,
.gallery-filters button:hover {
  background: var(--ink);
  color: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-auto-rows: 310px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid .gallery-item:nth-child(8n + 1),
.gallery-grid .gallery-item:nth-child(8n + 6) {
  grid-row: span 2;
}

.gallery-item[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  padding: 48px;
  background: rgba(0, 0, 0, .94);
  color: var(--paper);
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  display: grid;
  max-width: min(1100px, 90vw);
  max-height: 85vh;
  margin: 0;
  gap: 10px;
  justify-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  color: rgba(255, 255, 255, .7);
  font-size: .82rem;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  place-items: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 90px;
}

.contact-form-wrap h2 {
  max-width: 670px;
}

.enquiry-form {
  margin-top: 50px;
}

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

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

.enquiry-form label > span {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  font-size: .92rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.enquiry-form textarea {
  min-height: 140px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--ink);
  box-shadow: inset 3px 0 0 var(--signal);
  outline: 0;
}

.form-span {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.enquiry-form button:disabled {
  cursor: wait;
  opacity: .58;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  font-size: .86rem;
}

.form-status.is-success {
  color: #16763c;
}

.form-status.is-error {
  color: var(--signal);
}

.contact-aside {
  display: grid;
  gap: 38px;
}

.contact-direct {
  border-top: 1px solid var(--line);
}

.contact-direct article {
  display: grid;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.contact-direct article > span {
  color: var(--signal);
}

.contact-direct h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.contact-direct a,
.contact-direct p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.contact-aside .media-frame {
  height: 420px;
}

.map-section {
  height: 480px;
  padding: 16px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, .92), rgba(231, 235, 237, .72)),
    repeating-linear-gradient(125deg, transparent 0 88px, rgba(24, 33, 38, .035) 89px 90px);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 6px;
  box-shadow: var(--glass-shadow);
  filter: grayscale(.86) contrast(.96);
}

.branches-section {
  background: var(--mist);
}

.branch-list {
  border-top: 1px solid var(--line);
}

.branch-row {
  display: grid;
  min-height: 105px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
}

.branch-row h3,
.branch-row p {
  margin: 0;
}

.branch-row h3 {
  font-size: 1.05rem;
}

.branch-row p {
  color: var(--muted);
  font-size: .92rem;
}

.site-footer {
  position: relative;
  padding-top: 78px;
  background-color: #171a1b;
  background-image:
    linear-gradient(118deg, rgba(255, 255, 255, .04) 0 22%, transparent 22% 72%, rgba(242, 182, 0, .035) 72%),
    repeating-linear-gradient(118deg, transparent 0 104px, rgba(255, 255, 255, .018) 105px 106px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 1.25fr .65fr .8fr 1.3fr;
  gap: 58px;
}

.footer-brand > p {
  max-width: 340px;
  margin-block: 28px;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
}

.site-footer h2 {
  margin-bottom: 24px;
  color: var(--gold);
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
}

.site-footer li a:hover {
  color: var(--paper);
}

.footer-branches li {
  display: grid;
  margin-bottom: 15px;
  grid-template-columns: 78px 1fr;
  gap: 8px;
}

.footer-branches strong {
  color: rgba(255, 255, 255, .9);
  font-size: .72rem;
  text-transform: uppercase;
}

.footer-branches span {
  font-size: .75rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  place-items: center;
  transition: background-color .2s ease, border-color .2s ease;
}

.social-links a:hover {
  background: var(--signal);
  border-color: var(--signal);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, .48);
  font-size: .74rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

.word-mask {
  display: inline-block;
  padding-block: .05em .08em;
  margin-bottom: -.08em;
  overflow: hidden;
  vertical-align: bottom;
}

.text-word {
  display: inline-block;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(115%) rotate(1.5deg);
  transform-origin: left bottom;
  transition: opacity .65s var(--ease), filter .65s var(--ease), transform .75s var(--ease);
  transition-delay: calc(var(--word-index) * 55ms + 70ms);
}

.text-reveal.is-visible .text-word {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) rotate(0);
}

.hero-media > img {
  opacity: .72;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 1.8s var(--ease);
}

body.is-ready .hero-media > img {
  opacity: 1;
  transform: scale(1);
}

.hero-media.is-playing > .hero-fallback {
  opacity: 0;
}

.hero-media.is-playing > video {
  opacity: 1;
}

@media (min-width: 901px) and (max-height: 780px) {
  .hero {
    height: 100svh;
    min-height: 0;
    max-height: none;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: 4.55rem;
  }

  .hero-copy {
    width: min(620px, 55%);
    padding-top: 8px;
  }

  .hero-copy > p {
    margin-bottom: 15px;
    font-size: 1.02rem;
  }

  .hero-actions .button {
    min-height: 46px;
    padding-inline: 17px;
    gap: 14px;
  }

  .hero-stats {
    margin-top: 17px;
  }

  .hero-stat strong {
    font-size: 1.7rem;
  }

  .hero-stat span {
    font-size: .62rem;
  }
}

@media (min-width: 901px) and (max-height: 660px) {
  .hero h1 {
    font-size: 3.75rem;
  }

  .hero-copy > p {
    margin-bottom: 12px;
    font-size: .95rem;
  }

  .hero-stats {
    margin-top: 13px;
  }

  .hero-stat {
    padding-top: 10px;
  }
}

.load-error {
  display: grid;
  min-height: 100vh;
  padding: 100px 30px;
  place-content: center;
  text-align: center;
}

.load-error h1 {
  margin-bottom: 20px;
  font-size: 3.6rem;
}

.load-error a {
  color: var(--signal);
  font-weight: 800;
}

@media (max-width: 1180px) {
  :root {
    --gutter: 30px;
  }

  h1 { font-size: 5rem; }
  h2 { font-size: 3.8rem; }

  .header-inner {
    grid-template-columns: minmax(190px, 1fr) auto 155px;
    gap: 20px;
  }

  .brand span {
    display: none;
  }

  .main-nav ul {
    gap: 23px;
  }

  .header-cta {
    padding-inline: 14px;
  }

  .hero-progress {
    display: none;
  }

  .hero-copy {
    width: 59%;
  }

  .services-layout,
  .training-layout {
    gap: 50px;
  }

  .services-anchor {
    height: 660px;
  }

  .services-page-layout {
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 60px;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .contact-layout {
    gap: 55px;
  }

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

  .footer-branches {
    grid-column: 1 / -1;
  }

  .footer-branches ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 24px;
    --header-height: 76px;
  }

  .section {
    padding-block: 90px;
  }

  h1 { font-size: 4.35rem; }
  h2 { font-size: 3.25rem; }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand span {
    display: grid;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    background: transparent;
    color: var(--paper);
    place-items: center;
  }

  .menu-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  .mobile-nav {
    position: fixed;
    inset: 76px 0 0;
    display: grid;
    padding: 36px var(--gutter) 46px;
    overflow-y: auto;
    background: var(--ink);
    align-content: start;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .mobile-nav li a {
    display: block;
    padding-block: 18px;
    font-family: var(--display);
    font-size: 2.15rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-nav > a {
    display: flex;
    margin-top: 28px;
    padding: 17px 18px;
    background: var(--signal);
    align-items: center;
    justify-content: space-between;
    font-size: .77rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .hero {
    height: 88svh;
    min-height: 700px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(10, 10, 10, .95), rgba(10, 10, 10, .56) 62%, rgba(10, 10, 10, .15));
  }

  .hero-copy {
    width: 72%;
  }

  .hero-stats {
    margin-top: 28px;
  }

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

  .presence-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .presence-copy {
    max-width: 680px;
  }

  .presence-map-wrap {
    width: min(100%, 620px);
  }

  .editorial-split,
  .services-layout,
  .training-layout,
  .gallery-heading,
  .trust-layout,
  .contact-band-inner,
  .story-layout,
  .footprint-layout,
  .branches-layout,
  .services-page-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .editorial-split {
    gap: 48px;
  }

  .services-layout,
  .training-layout {
    gap: 62px;
  }

  .services-anchor,
  .services-page-heading,
  .footprint-layout > div:first-child,
  .branches-layout > div:first-child {
    position: static;
  }

  .services-anchor {
    height: 560px;
    order: -1;
  }

  .training-media {
    min-height: 640px;
  }

  .gallery-heading {
    padding: 30px;
    gap: 14px;
  }

  .gallery-heading > div:last-child {
    max-width: 540px;
  }

  .gallery-preview {
    padding-top: 82px;
  }

  .gallery-mosaic {
    grid-auto-rows: 210px;
  }

  .trust-layout { gap: 24px; }

  .contact-band-inner {
    padding: 34px;
    gap: 34px;
  }

  .contact-band-location {
    padding-top: 32px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 0;
  }

  .page-hero {
    height: 64svh;
    min-height: 560px;
  }

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

  .story-layout {
    gap: 34px;
  }

  .story-copy {
    padding-top: 0;
  }

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

  .mission-grid article,
  .mission-grid article + article {
    padding: 0;
    border: 0;
  }

  .value-row {
    grid-template-columns: 54px 220px 1fr;
    gap: 20px;
  }

  .gallery-tools {
    grid-template-columns: 1fr;
  }

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

  .contact-aside {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-branches {
    grid-column: auto;
  }

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

@media (max-width: 620px) {
  :root {
    --gutter: 18px;
  }

  body {
    font-size: 15px;
  }

  .section {
    padding-block: 74px;
  }

  h1 { font-size: 3.45rem; }
  h2 { font-size: 2.85rem; }

  .brand img {
    width: 74px;
  }

  .brand span {
    max-width: 150px;
  }

  .brand strong {
    font-size: .65rem;
  }

  .brand small {
    font-size: .56rem;
  }

  .hero {
    height: 91svh;
    min-height: 690px;
    max-height: 820px;
  }

  .hero-media {
    background-position: 60% center;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(10, 10, 10, .98) 0%, rgba(10, 10, 10, .82) 47%, rgba(10, 10, 10, .18) 88%);
  }

  .hero-content {
    align-items: end;
  }

  .hero-copy {
    width: 100%;
    padding: 0 0 34px;
  }

  .hero h1 {
    max-width: 390px;
    margin-bottom: 16px;
  }

  .hero-copy > p {
    max-width: 360px;
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    margin-top: 22px;
  }

  .hero-stat {
    min-width: 0;
    padding-top: 12px;
  }

  .hero-stat strong {
    font-size: 1.55rem;
  }

  .hero-stat span {
    font-size: .57rem;
  }

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

  .services-anchor {
    height: 430px;
  }

  .sectors-band {
    padding-block: 72px 40px;
  }

  .sectors-heading {
    display: grid;
    margin-bottom: 38px;
    gap: 18px;
  }

  .sectors-heading h2 {
    font-size: 2.65rem;
  }

  .sector-track {
    animation-duration: 34s;
  }

  .sector-set span {
    width: 174px;
    min-height: 158px;
    padding: 20px 16px;
    gap: 14px;
  }

  .sector-set i {
    width: 54px;
    height: 54px;
  }

  .sector-set .premium-icon {
    width: 28px;
    height: 28px;
  }

  .training-media {
    min-height: 500px;
  }

  .training-primary {
    bottom: 78px;
  }

  .training-secondary {
    right: -8px;
    width: 64%;
    border-width: 8px;
  }

  .gallery-mosaic {
    grid-auto-rows: 210px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-mosaic .gallery-item:nth-child(n) {
    grid-row: auto;
    grid-column: span 1;
  }

  .gallery-mosaic .gallery-item:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .gallery-mosaic .gallery-item:nth-child(4) {
    grid-column: 1 / -1;
  }

  .gallery-item > span {
    opacity: 1;
    transform: none;
  }

  .gallery-preview {
    padding-top: 70px;
  }

  .gallery-heading {
    margin-bottom: 38px;
    padding: 26px 22px;
  }

  .gallery-reel-item {
    width: 270px;
    height: 190px;
    min-width: 270px;
  }

  .gallery-reel-track {
    animation-duration: 42s;
  }

  .metrics-band {
    padding-block: 68px 72px;
  }

  .metrics-grid {
    gap: 10px;
  }

  .metrics-heading {
    display: grid;
    margin-bottom: 36px;
    gap: 12px;
  }

  .metrics-heading h2 {
    font-size: 2.75rem;
    text-align: left;
  }

  .metric-item {
    min-height: 200px;
    padding: 24px 16px 20px;
  }

  .metric-icon,
  .metric-icon .premium-icon {
    width: 40px;
    height: 40px;
  }

  .metric-item strong {
    font-size: 3rem;
  }

  .presence-band {
    padding-block: 78px;
  }

  .presence-copy h2 {
    font-size: 3.5rem;
  }

  .presence-copy {
    padding: 28px 24px;
  }

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

  .presence-map-wrap {
    width: 100%;
    padding: 12px;
    margin-left: 0;
  }

  .trust-band {
    padding-block: 76px 0;
  }

  .trust-layout {
    margin-bottom: 42px;
  }

  .client-logo {
    width: 174px;
    min-width: 174px;
    min-height: 138px;
    padding: 22px 18px 18px;
  }

  .client-logo img {
    height: 58px;
  }

  .contact-band {
    padding-block: 72px;
  }

  .contact-band-inner {
    padding: 28px 22px;
  }

  .contact-band address {
    font-size: 1.35rem;
  }

  .contact-band-actions {
    display: grid;
  }

  .contact-band-actions .button {
    width: 100%;
  }

  .page-hero {
    height: 74svh;
    min-height: 560px;
  }

  .page-hero-media {
    background-position: 62% center;
  }

  .page-hero-media::after {
    background: linear-gradient(0deg, rgba(10, 10, 10, .94), rgba(10, 10, 10, .48) 64%, rgba(10, 10, 10, .08));
  }

  .page-hero-content {
    padding-bottom: 56px;
    justify-content: end;
  }

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

  .page-hero p {
    font-size: 1rem;
  }

  .story-image {
    height: 420px;
  }

  .mission-band {
    padding-block: 78px;
  }

  .mission-grid h2 {
    font-size: 1.25rem;
  }

  .value-row {
    grid-template-columns: 54px 1fr;
    gap: 12px;
  }

  .value-row p {
    grid-column: 2;
  }

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

  .branch-grid article,
  .branch-grid article:nth-child(2n) {
    padding-inline: 0;
    border-right: 0;
  }

  .services-page-heading h2 {
    font-size: 2.75rem;
  }

  .service-list--detailed .service-row {
    min-height: 176px;
    grid-template-columns: 52px 1fr 28px;
    gap: 8px;
  }

  .service-list--detailed .service-row h3 {
    font-size: 1.28rem;
  }

  .gallery-filters {
    max-width: 100%;
  }

  .gallery-filters button {
    flex: 1 1 auto;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-item:nth-child(n) {
    grid-row: auto;
  }

  .lightbox {
    padding: 22px;
  }

  .contact-layout {
    gap: 68px;
  }

  .form-grid,
  .contact-aside {
    grid-template-columns: 1fr;
  }

  .form-span {
    grid-column: auto;
  }

  .contact-aside .media-frame {
    height: 390px;
  }

  .map-section {
    height: 380px;
    padding: 10px;
  }

  .branch-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

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

  .footer-bottom {
    padding-block: 20px;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
}

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

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

  .client-logo-track {
    width: auto;
    overflow-x: auto;
  }

  .gallery-reel-track,
  .sector-track {
    width: auto;
    overflow-x: auto;
  }

  .client-logo-set[aria-hidden="true"],
  .gallery-reel-set[aria-hidden="true"],
  .sector-set[aria-hidden="true"] {
    display: none;
  }

  .marker-pulse {
    opacity: .15;
  }
}
