:root {
  --ink: #12233d;
  --navy: #112e57;
  --navy-deep: #0a213f;
  --navy-soft: #1b416f;
  --gold: #e4c84f;
  --gold-deep: #c7a92e;
  --paper: #ffffff;
  --mist: #f3f5f6;
  --sand: #f7f4ec;
  --line: #d9dfe3;
  --muted: #617083;
  --shadow: 0 24px 70px rgba(10, 33, 63, .13);
  --shell: min(1440px, calc(100vw - 80px));
  --display: "Manrope", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: white;
  background: var(--navy-deep);
  transform: translateY(-150%);
  transition: transform .2s;
}

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

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

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 19px;
  color: var(--navy);
  font-family: var(--display);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker::before {
  width: 34px;
  height: 3px;
  content: "";
  background: var(--gold);
}

.kicker--light { color: #fff; }

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

h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.25rem, 4.3vw, 4.65rem);
  font-weight: 500;
  line-height: 1.05;
}

.utility-bar {
  position: relative;
  z-index: 110;
  color: #dbe4ee;
  background: var(--navy-deep);
  font-size: .77rem;
  letter-spacing: .025em;
}

.utility-bar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
}

.utility-bar__inner > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.utility-bar__inner i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ed789;
  box-shadow: 0 0 0 4px rgba(94, 215, 137, .13);
}

.utility-bar__inner div { display: flex; gap: 30px; }
.utility-bar a { transition: color .2s; }
.utility-bar a:hover { color: var(--gold); }

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(17, 46, 87, .1);
  transition: box-shadow .25s, transform .25s;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 12px 38px rgba(10, 33, 63, .1);
  animation: headerIn .35s var(--ease) both;
}

.site-header.is-fixed + main { padding-top: 95px; }

@keyframes headerIn {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.site-header__inner {
  display: flex;
  min-height: 95px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: auto;
  height: 78px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: clamp(18px, 2vw, 39px);
  color: var(--ink);
  font-family: var(--display);
  font-size: .88rem;
  font-weight: 650;
}

.primary-nav a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 4px;
  content: "";
  background: var(--gold);
  transition: right .25s, left .25s;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { right: 0; left: 0; }

.primary-nav a:last-child {
  height: auto;
  min-height: 46px;
  padding: 0 20px;
  color: white;
  background: var(--navy);
}

.primary-nav a:last-child::after { display: none; }
.primary-nav a:last-child:hover { background: var(--navy-soft); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  background: var(--navy);
  cursor: pointer;
}

.nav-toggle i {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform .25s, opacity .25s;
}

.hero { padding: 34px 0 0; background: #fff; }

.hero-slider {
  position: relative;
  height: min(700px, calc(100vh - 195px));
  min-height: 590px;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility .85s, opacity .85s var(--ease);
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide > img,
.hero-slide > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transition: transform 8s linear;
}

.hero-slide:first-child > img,
.hero-slide:first-child > video { object-position: center; }
.hero-slide.is-active > img,
.hero-slide.is-active > video { transform: scale(1); }

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 19, 37, .13), transparent 60%);
  pointer-events: none;
}

.hero-slide__panel {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: min(580px, 48%);
  padding: clamp(44px, 5vw, 78px) clamp(36px, 4.3vw, 68px);
  color: #fff;
  background: rgba(10, 33, 63, .95);
  border-left: 7px solid var(--gold);
  transform: translateY(-50%) translateX(-30px);
  opacity: 0;
  transition: transform .8s .2s var(--ease), opacity .6s .2s;
}

.hero-slide.is-active .hero-slide__panel {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}

.hero-slide__panel > span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.hero-slide__panel h1,
.hero-slide__panel h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2.3rem, 3.65vw, 4.2rem);
  font-weight: 500;
  line-height: 1.04;
}

.hero-slide__panel p {
  max-width: 470px;
  margin-bottom: 28px;
  color: #d9e3ee;
  font-size: 1.02rem;
  line-height: 1.7;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 7px;
  color: #fff;
  border-bottom: 2px solid var(--gold);
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 700;
}

.text-cta b { font-size: 1.25rem; transition: transform .25s; }
.text-cta:hover b { transform: translateX(7px); }

.hero-slider__controls {
  position: absolute;
  z-index: 5;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 10px 30px rgba(5, 22, 42, .15);
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
  transition: color .2s, background .2s;
}

.slider-arrow:hover { color: white; background: var(--navy); }

.slider-dots { display: flex; align-items: center; gap: 9px; }

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #aab3bd;
  cursor: pointer;
  transition: width .25s, border-radius .25s, background .25s;
}

.slider-dots button.is-active {
  width: 28px;
  border-radius: 9px;
  background: var(--gold-deep);
}

.service-overview { padding: clamp(100px, 10vw, 164px) 0; }

.service-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, .62fr);
  align-items: end;
  gap: 8vw;
  margin-bottom: 82px;
}

.section-intro h2 { margin: 0; }

.section-summary {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.8;
}

.service-stack { display: grid; gap: 42px; }

.service-feature {
  display: grid;
  min-height: 510px;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr);
  color: var(--ink);
  background: var(--mist);
  overflow: hidden;
  transition: box-shadow .35s, transform .35s var(--ease);
}

.service-feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-feature--reverse { grid-template-columns: minmax(360px, .84fr) minmax(0, 1.16fr); }
.service-feature--reverse figure { order: 2; }
.service-feature--reverse .service-feature__content { order: 1; }

.service-feature figure { margin: 0; overflow: hidden; }
.service-feature figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.service-feature:hover figure img { transform: scale(1.035); }

.service-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 5.2vw, 82px);
}

.service-feature__content > span {
  margin-bottom: 30px;
  color: var(--navy);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.service-feature__content h3 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.1vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
}

.service-feature__content p {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.service-feature__content strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 19px;
  border-top: 1px solid #cbd2d8;
  font-family: var(--display);
  font-size: .9rem;
}

.service-feature__content i {
  color: var(--gold-deep);
  font-size: 1.25rem;
  font-style: normal;
  transition: transform .25s;
}

.service-feature:hover i { transform: translateX(8px); }

.services-index {
  position: relative;
  padding: clamp(100px, 10vw, 160px) 0;
  color: white;
  background:
    radial-gradient(circle at 88% 12%, rgba(228, 200, 79, .12), transparent 24%),
    var(--navy-deep);
  overflow: hidden;
}

.services-index::before {
  position: absolute;
  top: -210px;
  right: -160px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 85px rgba(255, 255, 255, .012), inset 0 0 0 170px rgba(255, 255, 255, .012);
}

.section-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .45fr);
  align-items: end;
  gap: 8vw;
  margin-bottom: 68px;
}

.section-heading h2 { margin: 0; }
.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.services-index .section-heading > p { color: #c2cfdd; }

.service-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.service-cards article {
  min-height: 310px;
  padding: clamp(35px, 3.2vw, 53px);
  border-right: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  transition: color .3s, background .3s;
}

.service-cards article:hover {
  color: var(--navy-deep);
  background: var(--gold);
}

.service-cards span {
  display: block;
  margin-bottom: 58px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.service-cards article:hover span { color: var(--navy); }

.service-cards h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
}

.service-cards p {
  margin: 0;
  color: #b7c6d7;
  font-size: .93rem;
  line-height: 1.65;
}

.service-cards article:hover p { color: #27415e; }

.about { padding: clamp(105px, 11vw, 175px) 0; }

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.about__copy h2 { font-size: clamp(2.5rem, 4.5vw, 4.9rem); }
.about__copy > p:not(.kicker) {
  max-width: 680px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 27px;
  color: #fff;
  border: 0;
  background: var(--navy);
  font-family: var(--display);
  font-size: .87rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .25s, background .25s, transform .25s;
}

.button:hover {
  color: var(--navy-deep);
  background: var(--gold);
  transform: translateY(-2px);
}

.button span { font-size: 1.2rem; }

.about__visual {
  position: relative;
  min-height: 680px;
}

.about__visual::before {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 45%;
  height: 58%;
  content: "";
  background: var(--gold);
}

.about__visual > img {
  position: absolute;
  inset: 0 0 auto auto;
  width: 84%;
  height: 86%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about__metric-card {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  display: flex;
  width: min(360px, 60%);
  min-height: 285px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  color: white;
  background: var(--navy);
}

.about__metric-card small {
  max-width: 180px;
  margin-bottom: 22px;
  color: #c5d3df;
  font-size: .79rem;
  line-height: 1.4;
  text-transform: uppercase;
}

.about__metric-card strong {
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .92;
}

.about__metric-card b {
  margin-top: 8px;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 600;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 110px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-row > div {
  display: flex;
  min-height: 175px;
  align-items: center;
  gap: 24px;
  padding: 25px clamp(20px, 2.6vw, 42px);
  border-right: 1px solid var(--line);
}

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

.stat-row strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -.06em;
  line-height: 1;
}

.stat-row > div > span {
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.45;
}

.equipment {
  padding: clamp(100px, 10vw, 155px) 0;
  background: var(--sand);
}

.equipment-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 390px;
  gap: 24px;
}

.equipment-card {
  position: relative;
  grid-column: span 5;
  margin: 0;
  overflow: hidden;
  background: var(--navy-deep);
}

.equipment-card--wide { grid-column: span 7; }

.equipment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), opacity .4s;
}

.equipment-card::after {
  position: absolute;
  inset: 50% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(4, 18, 35, .82));
}

.equipment-card:hover img { transform: scale(1.055); }

.equipment-card figcaption {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: white;
}

.equipment-card figcaption span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.equipment-card figcaption strong {
  font-family: var(--display);
  font-size: 1.35rem;
}

.immersive-feature { padding: clamp(100px, 10vw, 155px) 0; }

.immersive-feature__card {
  display: grid;
  min-height: 655px;
  grid-template-columns: minmax(380px, .82fr) minmax(0, 1.18fr);
  color: white;
  background:
    radial-gradient(circle at 100% 0, rgba(228, 200, 79, .15), transparent 32%),
    var(--navy-deep);
  overflow: hidden;
}

.immersive-feature__card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.immersive-feature__card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 7vw, 112px);
}

.immersive-feature__card h2 {
  max-width: 750px;
  color: white;
  font-size: clamp(2.5rem, 4.6vw, 5rem);
}

.immersive-feature__card p:not(.kicker) {
  max-width: 690px;
  margin-bottom: 36px;
  color: #c5d2df;
  font-size: 1.04rem;
  line-height: 1.8;
}

.button--light {
  align-self: flex-start;
  color: var(--navy-deep);
  background: var(--gold);
}

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

.locations { padding: clamp(105px, 11vw, 175px) 0; background: var(--mist); }

.locations__grid {
  display: grid;
  grid-template-columns: minmax(450px, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(60px, 9vw, 145px);
}

.locations__visual {
  position: relative;
  height: 700px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.locations__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.locations__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(6, 24, 46, .05), rgba(6, 24, 46, .22));
}

.location-mark {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 8px 25px rgba(4, 19, 37, .2);
  font-size: .72rem;
  font-weight: 700;
}

.location-mark i {
  width: 9px;
  height: 9px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--gold-deep);
  box-shadow: 0 0 0 5px rgba(228, 200, 79, .32);
}

.location-mark--one { top: 54%; left: 53%; }
.location-mark--two { top: 36%; left: 72%; }
.location-mark--three { top: 43%; left: 64%; }

.locations__copy > p:not(.kicker) {
  max-width: 620px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.location-list { border-top: 1px solid #cbd3da; }

.location-list > div {
  display: grid;
  grid-template-columns: 48px minmax(130px, .55fr) 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #cbd3da;
}

.location-list span {
  color: var(--gold-deep);
  font-size: .72rem;
  font-weight: 700;
}

.location-list strong { font-family: var(--display); font-size: 1rem; }
.location-list small { color: var(--muted); }

.enquiry-strip { color: white; background: var(--navy); }

.enquiry-strip__grid {
  display: grid;
  min-height: 210px;
  grid-template-columns: 1.25fr .42fr .42fr;
  align-items: stretch;
}

.enquiry-strip__grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 45px;
}

.enquiry-strip__grid > div span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.enquiry-strip h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.enquiry-strip a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-left: 1px solid rgba(255, 255, 255, .2);
  font-family: var(--display);
  font-size: .88rem;
  font-weight: 700;
  transition: color .25s, background .25s;
}

.enquiry-strip a b { font-size: 1.3rem; }
.enquiry-strip a:hover { color: var(--navy-deep); background: var(--gold); }

.contact { padding: clamp(105px, 11vw, 175px) 0; }

.contact__grid {
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(540px, 1.3fr);
  gap: clamp(70px, 10vw, 160px);
}

.contact__details h2 { font-size: clamp(2.7rem, 4vw, 4.5rem); }
.contact__details > p:not(.kicker) {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.contact__details address {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 44px;
  padding-top: 31px;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.contact__details address strong { font-family: var(--display); }
.contact__details address span { color: var(--muted); }
.contact__details address a { color: var(--navy); font-weight: 700; }

.contact-form { padding: clamp(36px, 4.5vw, 68px); background: var(--mist); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact-form label { display: block; margin-bottom: 24px; }
.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #46566a;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid #acb7c1;
  border-radius: 0;
  background: transparent;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.contact-form input,
.contact-form select { height: 48px; }
.contact-form textarea { min-height: 125px; resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 2px 0 var(--navy);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 24px;
}

.form-submit small { color: var(--muted); }
.form-status { min-height: 26px; margin: 20px 0 0; color: var(--navy); font-weight: 600; }

.site-footer {
  color: #dbe5ef;
  background: var(--navy-deep);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, .65fr);
  gap: 55px;
  padding-top: 85px;
  padding-bottom: 80px;
}

.footer-brand img {
  width: 164px;
  height: auto;
  padding: 12px;
  background: white;
}

.footer-brand p {
  margin-top: 23px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.15rem;
}

.site-footer__grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 12px; }
.site-footer h3 {
  margin: 0 0 12px;
  color: white;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer__grid span { color: #aebdcd; font-size: .88rem; line-height: 1.6; }
.site-footer a:hover { color: var(--gold); }

.site-footer__bottom {
  display: grid;
  min-height: 76px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #879aae;
  font-size: .76rem;
}

.site-footer__bottom > span:nth-child(2) {
  color: rgba(228, 200, 79, .55);
  font-family: var(--display);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .22em;
}

.site-footer__bottom button {
  justify-self: end;
  padding: 0;
  color: #d4dfeb;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-footer__bottom button:hover { color: var(--gold); }

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

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

.service-cards [data-reveal]:nth-child(2),
.equipment-gallery [data-reveal]:nth-child(2) { transition-delay: .08s; }
.service-cards [data-reveal]:nth-child(3),
.equipment-gallery [data-reveal]:nth-child(3) { transition-delay: .16s; }
.service-cards [data-reveal]:nth-child(4),
.equipment-gallery [data-reveal]:nth-child(4) { transition-delay: .24s; }
.service-cards [data-reveal]:nth-child(5) { transition-delay: .32s; }
.service-cards [data-reveal]:nth-child(6) { transition-delay: .4s; }

@media (max-width: 1200px) {
  :root { --shell: min(100% - 48px, 1440px); }
  .utility-bar__inner div { gap: 18px; }
  .primary-nav { gap: 18px; font-size: .79rem; }
  .primary-nav a:last-child { padding: 0 14px; }
  .brand img { width: auto; height: 72px; }
  .service-feature { grid-template-columns: 1.05fr .95fr; }
  .service-feature--reverse { grid-template-columns: .95fr 1.05fr; }
  .about__grid { gap: 70px; }
  .stat-row > div { flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; }
  .locations__grid { gap: 70px; }
  .contact__grid { gap: 70px; }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 82px; }
  .utility-bar { display: none; }
  .site-header__inner { min-height: 82px; }
  .site-header.is-fixed + main { padding-top: 82px; }
  .brand img { width: auto; height: 64px; max-width: calc(100vw - 110px); }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 82px 0 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 50px;
    color: white;
    background: var(--navy-deep);
    opacity: 0;
    overflow-y: auto;
    transform: translateY(-16px);
    transition: visibility .3s, opacity .3s, transform .3s;
  }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .primary-nav a,
  .primary-nav a:last-child {
    display: flex;
    height: auto;
    min-height: 67px;
    padding: 0 4px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    background: transparent;
    font-size: 1.08rem;
  }
  .primary-nav a::after { display: none; }
  .nav-open .nav-toggle i:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle i:nth-of-type(2) { opacity: 0; }
  .nav-open .nav-toggle i:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-top: 20px; }
  .hero-slider { height: 670px; min-height: 0; }
  .hero-slide__panel { top: auto; right: 0; bottom: 0; width: 72%; transform: translateY(30px); }
  .hero-slide.is-active .hero-slide__panel { transform: translateY(0); }
  .hero-slider__controls { top: 20px; right: 20px; bottom: auto; }
  .service-overview__grid,
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .service-overview__grid { margin-bottom: 55px; }
  .service-feature,
  .service-feature--reverse { grid-template-columns: 1fr 1fr; min-height: 470px; }
  .service-feature--reverse figure { order: 1; }
  .service-feature--reverse .service-feature__content { order: 2; }
  .service-feature__content { padding: 45px; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { min-height: 620px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-row > div:nth-child(2) { border-right: 0; }
  .stat-row > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat-row > div { flex-direction: row; align-items: center; }
  .equipment-gallery { grid-auto-rows: 330px; }
  .immersive-feature__card { grid-template-columns: .75fr 1.25fr; min-height: 590px; }
  .locations__grid { grid-template-columns: .85fr 1.15fr; gap: 45px; }
  .locations__visual { height: 600px; }
  .enquiry-strip__grid { grid-template-columns: 1fr 1fr; }
  .enquiry-strip__grid > div { grid-column: 1 / -1; min-height: 155px; padding: 30px 0; }
  .enquiry-strip a { min-height: 90px; border-top: 1px solid rgba(255, 255, 255, .2); }
  .enquiry-strip a:first-of-type { border-left: 0; }
  .contact__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 32px); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.25rem); }
  .site-header__inner { min-height: 76px; }
  .site-header.is-fixed + main { padding-top: 76px; }
  .primary-nav { inset: 76px 0 0; }
  .brand img { width: auto; height: 58px; }
  .nav-toggle { width: 44px; height: 44px; }
  .hero { padding-top: 12px; }
  .hero__stage { width: 100%; }
  .hero-slider { height: 720px; }
  .hero-slide > img,
  .hero-slide > video { height: 48%; }
  .hero-slide::after { display: none; }
  .hero-slide__panel,
  .hero-slide.is-active .hero-slide__panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    padding: 43px 26px 34px;
    border-left: 0;
    border-top: 6px solid var(--gold);
    transform: none;
  }
  .hero-slide__panel h1,
  .hero-slide__panel h2 { font-size: clamp(2.05rem, 9.5vw, 3rem); }
  .hero-slide__panel p { font-size: .94rem; line-height: 1.55; }
  .hero-slider__controls { top: calc(48% - 34px); right: 16px; padding: 5px; }
  .slider-arrow { width: 38px; height: 38px; }
  .service-overview { padding: 85px 0; }
  .service-feature,
  .service-feature--reverse { grid-template-columns: 1fr; min-height: 0; }
  .service-feature figure,
  .service-feature--reverse figure { order: 1; height: 310px; }
  .service-feature__content,
  .service-feature--reverse .service-feature__content { order: 2; padding: 38px 27px 42px; }
  .service-feature__content h3 { font-size: 2rem; }
  .service-feature__content > span { margin-bottom: 20px; }
  .service-stack { gap: 25px; }
  .services-index { padding: 88px 0; }
  .service-cards { grid-template-columns: 1fr; }
  .service-cards article { min-height: 245px; }
  .service-cards span { margin-bottom: 38px; }
  .about { padding: 90px 0; }
  .about__visual { min-height: 490px; }
  .about__visual::before { top: -20px; right: -16px; }
  .about__visual > img { width: 90%; height: 82%; }
  .about__metric-card { width: 70%; min-height: 220px; padding: 28px; }
  .stat-row { margin-top: 75px; grid-template-columns: 1fr 1fr; }
  .stat-row > div { min-height: 150px; flex-direction: column; align-items: flex-start; gap: 10px; padding: 24px 17px; }
  .stat-row strong { font-size: 2.4rem; }
  .equipment { padding: 88px 0; }
  .equipment-gallery { grid-template-columns: 1fr; grid-auto-rows: 300px; gap: 16px; }
  .equipment-card,
  .equipment-card--wide { grid-column: 1; }
  .immersive-feature { padding: 88px 0; }
  .immersive-feature__card { width: 100%; min-height: 0; grid-template-columns: 1fr; }
  .immersive-feature__card > img { height: 380px; }
  .immersive-feature__card > div { padding: 45px 27px 50px; }
  .locations { padding: 90px 0; }
  .locations__grid { grid-template-columns: 1fr; }
  .locations__visual { height: 460px; }
  .locations__copy { order: -1; }
  .location-list > div { grid-template-columns: 36px 1fr; }
  .location-list small { grid-column: 2; }
  .enquiry-strip__grid { grid-template-columns: 1fr; }
  .enquiry-strip a { border-left: 0; }
  .contact { padding: 90px 0; }
  .contact-form { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; padding-top: 65px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer__bottom { min-height: 120px; grid-template-columns: 1fr auto; padding: 20px 0; }
  .site-footer__bottom > span:nth-child(2) { grid-column: 1; }
  .site-footer__bottom button { grid-column: 2; grid-row: 1 / 3; }
}

@media (max-width: 430px) {
  .hero-slider { height: 755px; }
  .hero-slide > img,
  .hero-slide > video { height: 42%; }
  .hero-slide__panel,
  .hero-slide.is-active .hero-slide__panel { height: 61%; }
  .hero-slider__controls { top: calc(42% - 32px); }
  .about__visual { min-height: 430px; }
  .about__metric-card { min-height: 190px; }
  .stat-row { grid-template-columns: 1fr; }
  .stat-row > div { border-right: 0; border-bottom: 1px solid var(--line); flex-direction: row; align-items: center; }
  .stat-row > div:nth-child(3) { border-bottom: 1px solid var(--line); }
  .site-footer__grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
