:root {
  --ink: #0d0d0d;
  --charcoal: #151515;
  --panel: #1e1e1e;
  --panel-soft: #262626;
  --ember: #f25c05;
  --ember-hot: #ff8a24;
  --redline: #d92314;
  --cream: #f7efe6;
  --muted: #aaa39a;
  --line: rgba(247, 239, 230, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
}

* {
  box-sizing: border-box;
}

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

@media (min-width: 981px) and (prefers-reduced-motion: no-preference) {
  html {
    scroll-snap-type: y proximity;
  }

  body#top #services[data-scroll-stage] {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  body#top #services[data-scroll-stage] .service-card {
    scroll-snap-align: none;
  }
}

@media (min-width: 1101px) and (prefers-reduced-motion: no-preference) {
  body#top #industries[data-scroll-stage] {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(242, 92, 5, 0.18), transparent),
    var(--ink);
  transform: translateX(100%);
  animation: page-wipe 860ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  min-height: 118px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition: background 220ms ease, box-shadow 220ms ease, min-height 220ms ease;
}

.is-scrolled .site-header {
  min-height: 76px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10), 0 1px 0 rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: #f8f8f8;
  color: #6b6662;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.top-bar a {
  color: #6b6662;
  transition: color 180ms ease;
}

.top-bar a:hover {
  color: var(--ember);
}

.top-bar__links,
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 72px);
}

.brand {
  display: flex;
  align-items: center;
  line-height: 1;
}

.brand__logo {
  height: clamp(72px, 9vw, 104px);
  width: auto;
  display: block;
  transition: height 220ms ease;
}

.is-scrolled .brand__logo {
  height: clamp(60px, 7vw, 80px);
}

.nav__links {
  color: #1a1a1a;
  font-weight: 700;
}

.nav__links a {
  position: relative;
  color: #2c2c2c;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 4px 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms cubic-bezier(0.19, 1, 0.22, 1);
}

.nav__links a:hover {
  color: var(--ember);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  background: transparent;
  color: #1a1a1a;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__toggle:hover {
  background: rgba(242, 92, 5, 0.08);
  border-color: rgba(242, 92, 5, 0.32);
}

.nav__toggle:active {
  transform: scale(0.96);
}

.nav__toggle:focus-visible,
.nav__links a:focus-visible {
  outline: 3px solid rgba(242, 92, 5, 0.34);
  outline-offset: 4px;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), opacity 160ms ease;
}

.nav.is-open .nav__toggle {
  background: #1a1512;
  border-color: rgba(242, 92, 5, 0.38);
  color: #fff;
}

.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile-contact {
  display: none;
}

.hero {
  --scroll-progress: 0;
  --hero-hotspot-x: 70%;
  --hero-inset-x: 0;
  --hero-inset-bottom: 0;
  --hero-radius: 0;
  --grid-shift: 0;
  --hero-scale: 1;
  --visual-shift: 0;
  --visual-rotate: 0deg;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  padding: clamp(180px, 20vh, 220px) clamp(18px, 5vw, 72px) 0;
  background:
    radial-gradient(circle at var(--hero-hotspot-x) 26%, rgba(242, 92, 5, 0.34), transparent 30%),
    linear-gradient(135deg, #0b0b0b 0%, #171717 48%, #2b1008 100%);
  clip-path: inset(0 var(--hero-inset-x) var(--hero-inset-bottom) round var(--hero-radius));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 239, 230, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 239, 230, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
  transform: translateY(var(--grid-shift));
}

.hero__track {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  transform: scale(var(--hero-scale));
  transform-origin: center top;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px) scale(0.985);
  transition: opacity 760ms ease, transform 760ms ease;
}

.hero__slide.is-active .eyebrow,
.hero__slide.is-active h1,
.hero__slide.is-active h2,
.hero__slide.is-active .hero__lede,
.hero__slide.is-active .hero__actions {
  animation: hero-copy-rise 760ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero__slide.is-active h1,
.hero__slide.is-active h2 {
  animation-delay: 80ms;
}

.hero__slide.is-active .hero__lede {
  animation-delay: 160ms;
}

.hero__slide.is-active .hero__actions {
  animation-delay: 240ms;
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  order: -1;
  padding-bottom: 60px; /* Prevent text from falling under controls */
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ember-hot);
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.2vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
.hero h2 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
}

.hero__lede {
  max-width: 620px;
  margin: clamp(18px, 3vw, 30px) 0 0;
  color: rgba(247, 239, 230, 0.82);
  font-size: clamp(1.03rem, 1.5vw, 1.3rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(26px, 4vw, 42px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1), background 220ms ease, border-color 220ms ease, box-shadow 300ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--ember), var(--redline));
  color: #fff;
  box-shadow: 0 12px 28px rgba(242, 92, 5, 0.28), 0 4px 8px rgba(242, 92, 5, 0.16);
}

.btn--primary:hover {
  box-shadow: 0 20px 40px rgba(242, 92, 5, 0.38), 0 6px 12px rgba(242, 92, 5, 0.22);
}

.btn--ghost {
  border-color: rgba(247, 239, 230, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(247, 239, 230, 0.46);
}

.hero__visual {
  position: relative;
  min-height: clamp(380px, 55vh, 620px);
  border: 1px solid rgba(247, 239, 230, 0.13);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
  transform: translateX(var(--visual-shift)) rotate(var(--visual-rotate));
}

.hero__slide.is-active .hero__visual {
  animation: visual-breathe 960ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero__visual::before {
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 138, 36, 0.5), transparent 12%),
    linear-gradient(120deg, transparent 0 50%, rgba(242, 92, 5, 0.16) 50% 52%, transparent 52%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 22px);
  mix-blend-mode: screen;
}

.hero__visual::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.56), transparent 58%);
}

.hero__visual--consulting {
  background:
    linear-gradient(135deg, rgba(9, 9, 9, 0.2), rgba(242, 92, 5, 0.18)),
    radial-gradient(circle at 70% 28%, #553016, transparent 22%),
    #171717;
}

.hero__visual--mining {
  background:
    linear-gradient(135deg, rgba(217, 35, 20, 0.16), rgba(255, 138, 36, 0.04)),
    repeating-linear-gradient(-18deg, transparent 0 22px, rgba(247, 239, 230, 0.06) 22px 24px),
    #161616;
}

.hero__visual--service {
  background:
    radial-gradient(circle at 48% 44%, rgba(242, 92, 5, 0.36), transparent 26%),
    linear-gradient(145deg, #101010, #272727);
}

.hero__blueprint,
.hero__conveyor,
.hero__gauge,
.hero__pipe,
.hero__spray,
.hero__ember {
  position: absolute;
  z-index: 1;
}

.hero__blueprint {
  width: 72%;
  height: 62%;
  left: 13%;
  top: 18%;
  border: 2px solid rgba(247, 239, 230, 0.26);
  background:
    linear-gradient(90deg, transparent 48%, rgba(247, 239, 230, 0.22) 49% 51%, transparent 52%),
    linear-gradient(transparent 48%, rgba(247, 239, 230, 0.22) 49% 51%, transparent 52%);
}

.hero__ember {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 36, 0.9), transparent 66%);
  animation: drift 5s ease-in-out infinite alternate;
}

.hero__ember--one {
  right: 14%;
  top: 16%;
}

.hero__ember--two {
  left: 8%;
  bottom: 18%;
  animation-delay: -2s;
}

.hero__conveyor {
  width: 82%;
  height: 28%;
  left: 9%;
  bottom: 22%;
  border: 1px solid rgba(247, 239, 230, 0.22);
  transform: skewY(-10deg);
  background: repeating-linear-gradient(90deg, #2f2f2f 0 28px, #171717 28px 56px);
}

.hero__spray {
  width: 2px;
  height: 64%;
  top: 9%;
  background: linear-gradient(to bottom, rgba(255, 138, 36, 0.92), transparent);
  transform-origin: top;
}

.hero__spray--one {
  left: 42%;
  transform: rotate(24deg);
}

.hero__spray--two {
  left: 58%;
  transform: rotate(-24deg);
}

.hero__gauge {
  width: min(54%, 330px);
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  border: 16px solid rgba(247, 239, 230, 0.2);
  border-top-color: var(--ember);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-28deg);
}

.hero__pipe {
  width: 72%;
  height: 28px;
  left: 14%;
  border: 1px solid rgba(247, 239, 230, 0.22);
  background: linear-gradient(90deg, #2e2e2e, #555, #202020);
}

.hero__pipe--one {
  top: 28%;
}

.hero__pipe--two {
  bottom: 24%;
}

.hero__controls {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: clamp(140px, 16vh, 180px); /* Lifted above the feature bar and text */
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__dot {
  width: 42px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(247, 239, 230, 0.28);
  cursor: pointer;
}

.hero__dot.is-active {
  background: var(--ember);
}

/* Motion system: the same restrained curve is used for responsive, tactile feedback. */
@media (prefers-reduced-motion: no-preference) {
  .motion-enabled .service-card,
  .motion-enabled .about-benefits article,
  .motion-enabled .industries-detail__card,
  .motion-enabled .related-grid > a,
  .motion-enabled .home-faq details,
  .motion-enabled .site-cta__inner,
  .motion-enabled .footer-v2__nav a,
  .motion-enabled .footer-v2__contact a {
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }

  .motion-enabled .about-benefits article,
  .motion-enabled .industries-detail__card,
  .motion-enabled .related-grid > a,
  .motion-enabled .home-faq details {
    transition:
      transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
      border-color 320ms cubic-bezier(0.16, 1, 0.3, 1),
      background-color 320ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .motion-enabled .about-benefits article:hover,
  .motion-enabled .about-benefits article:focus-within,
  .motion-enabled .industries-detail__card:hover,
  .motion-enabled .related-grid > a:hover,
  .motion-enabled .related-grid > a:focus-visible,
  .motion-enabled .home-faq details:hover {
    transform: translateY(-4px);
  }

  .motion-enabled .footer-v2__nav a,
  .motion-enabled .footer-v2__contact a {
    transition:
      color 220ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .motion-enabled .footer-v2__nav a:hover,
  .motion-enabled .footer-v2__nav a:focus-visible,
  .motion-enabled .footer-v2__contact a:hover,
  .motion-enabled .footer-v2__contact a:focus-visible {
    transform: translateX(4px);
  }
}

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

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

.hero__feature-bar {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(21, 21, 21, 0.88);
  backdrop-filter: blur(18px);
}

.hero__feature-bar div {
  min-height: 104px;
  padding: clamp(16px, 2.2vw, 24px);
  border-right: 1px solid var(--line);
}

.hero__feature-bar div:last-child {
  border-right: 0;
}

.hero__feature-bar strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1;
}

.hero__feature-bar span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 600;
}

.services-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--ember);
  color: #130a06;
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1.4vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-strip span {
  display: grid;
  min-height: 76px;
  place-items: center;
  border-right: 1px solid rgba(13, 13, 13, 0.2);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section h2 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 4.9rem);
  font-weight: 900;
}

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

.service-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  min-height: 270px;
  padding: clamp(20px, 2.7vw, 30px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(242, 92, 5, 0.08), transparent 42%),
    var(--panel);
  transition: transform 300ms cubic-bezier(0.19, 1, 0.22, 1), border-color 220ms ease, background 220ms ease, box-shadow 300ms cubic-bezier(0.19, 1, 0.22, 1);
}

.service-card::before,
.industry-row article::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.service-card::before,
.contact-form::before {
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 138, 36, 0.22), transparent 34%);
}

.service-card:hover::before,
.industry-row article:hover::before,
.contact-form:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 92, 5, 0.60);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.36), 0 8px 16px rgba(0, 0, 0, 0.18);
  background:
    linear-gradient(145deg, rgba(242, 92, 5, 0.18), transparent 48%),
    var(--panel-soft);
}

.service-card span {
  color: var(--ember-hot);
  font-family: var(--font-heading);
  font-weight: 900;
}

.service-card h3 {
  margin-top: 48px;
  color: #fff;
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.12;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(18px, 5vw, 72px);
  background: #fff;
  color: var(--ink);
}

.stats-band div {
  min-height: 150px;
  padding: 30px 20px;
  border-right: 1px solid rgba(13, 13, 13, 0.13);
}

.stats-band strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1;
}

.stats-band span {
  display: block;
  max-width: 210px;
  margin-top: 8px;
  font-weight: 700;
}

.industries {
  background: #101010;
}

.industry-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.industry-row article {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 900;
  cursor: pointer;
  transition: box-shadow 300ms cubic-bezier(0.19, 1, 0.22, 1), transform 300ms cubic-bezier(0.19, 1, 0.22, 1);
}

.industry-row article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.48), 0 8px 16px rgba(0, 0, 0, 0.24);
}

.industry-row article::before {
  z-index: 2;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(242, 92, 5, 0.32), transparent 32%);
}

.industry-row article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.94), transparent 60%);
  z-index: 1;
}

.industry__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 500ms ease;
}

.industry__label {
  position: relative;
  z-index: 2;
}

.industry-row article:hover .industry__img {
  transform: scale(1.06);
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 18% 24%, rgba(242, 92, 5, 0.32), transparent 28%),
    linear-gradient(135deg, #161616, #070707);
}

.contact-cta h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2rem, 5vw, 5.3rem);
}

.contact-cta p {
  color: var(--muted);
  font-size: 1.15rem;
}

.contact-form {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: box-shadow 300ms cubic-bezier(0.19, 1, 0.22, 1);
}

.contact-form:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(247, 239, 230, 0.74);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(247, 239, 230, 0.16);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 12px 13px;
}

.contact-form input:disabled,
.contact-form textarea:disabled,
.contact-form button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.contact-form__status {
  min-height: 1.35em;
  margin: 0;
  color: rgba(247, 239, 230, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form__frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.toast {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 1000;
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 16px;
  border: 1px solid rgba(247, 239, 230, 0.14);
  border-left: 4px solid var(--ember);
  border-radius: 6px;
  background: rgba(16, 14, 12, 0.94);
  color: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  font-weight: 700;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

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

.toast[data-type="error"] {
  border-left-color: #e9262a;
}

#footer-container {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(242, 92, 5, 0.22), transparent 28%),
    linear-gradient(135deg, #080706 0%, #15100d 54%, #080706 100%);
  border-top: 4px solid var(--ember);
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.58fr) minmax(190px, 0.72fr) minmax(210px, 0.78fr);
  align-items: stretch;
  gap: clamp(18px, 3vw, 30px);
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px) clamp(38px, 5vw, 62px);
  color: var(--muted);
}

.footer__col--brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  min-height: 250px;
  padding-right: clamp(10px, 5vw, 72px);
}

.footer__brand-mark {
  display: inline-flex;
  width: fit-content;
  transition: transform 220ms ease, filter 220ms ease;
}

.footer__brand-mark:hover {
  filter: drop-shadow(0 14px 30px rgba(242, 92, 5, 0.2));
  transform: translateY(-2px);
}

.footer__logo {
  height: clamp(96px, 11vw, 140px);
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__description {
  margin: 0;
  color: rgba(247, 239, 230, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
  max-width: 540px;
}

.footer__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(170, 163, 154, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer__credentials span {
  padding: 8px 10px;
  border: 1px solid rgba(247, 239, 230, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__panel {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(247, 239, 230, 0.1);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 239, 230, 0.5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: rgba(247, 239, 230, 0.72);
  font-size: 0.98rem;
  font-weight: 600;
  transition: color 200ms ease, transform 200ms ease;
}

.footer__links a:hover,
.footer__contact a:hover,
.footer__bottom a:hover {
  color: var(--ember-hot);
  transform: translateX(3px);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__address {
  margin: 0;
  color: rgba(170, 163, 154, 0.72);
  font-size: 0.88rem;
}

.footer__contact a {
  color: rgba(247, 239, 230, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 200ms ease, transform 200ms ease;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 22px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(247, 239, 230, 0.08);
  color: rgba(170, 163, 154, 0.44);
  font-size: 0.8rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: rgba(247, 239, 230, 0.68);
  font-weight: 700;
  transition: color 200ms ease, transform 200ms ease;
}

.page-hero {
  min-height: 64vh;
  padding: clamp(180px, 21vh, 230px) clamp(18px, 5vw, 72px) clamp(72px, 10vw, 128px);
  background:
    linear-gradient(120deg, rgba(217, 35, 20, 0.12), transparent 42%),
    linear-gradient(135deg, #fff 0%, #fbf7f2 62%, #f6eee7 100%);
  color: var(--text, #1b1715);
}

.page-hero__inner {
  max-width: 1120px;
}

.page-hero h1 {
  max-width: 980px;
  color: #1b1715;
}

.page-hero p {
  max-width: 760px;
  color: #5f5752;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #766c66;
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--ember);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.service-detail__panel,
.standards-panel,
.org-card,
.proof-card {
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(35, 24, 22, 0.1);
}

.service-detail__panel,
.standards-panel,
.org-card {
  padding: clamp(22px, 3vw, 34px);
}

.service-detail h2,
.service-detail h3,
.related-services h2,
.org-section h2 {
  color: #1b1715;
}

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

.service-list li {
  position: relative;
  padding-left: 24px;
  color: #4f4844;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(242, 92, 5, 0.12);
}

.standards-panel {
  display: grid;
  gap: 16px;
  background: #1b1715;
  color: #fff;
}

.standards-panel h3,
.standards-panel p {
  margin: 0;
}

.standards-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.standard-tags,
.related-grid,
.proof-grid {
  display: grid;
  gap: 12px;
}

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

.standard-tags span {
  border: 1px solid rgba(217, 35, 20, 0.18);
  border-radius: 8px;
  background: #fbf7f2;
  color: #1b1715;
  font-weight: 800;
}

.standard-tags span {
  padding: 10px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

.related-grid a {
  padding: 18px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  color: #1b1715;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(35, 24, 22, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.related-grid a:hover,
.related-grid a:focus-visible {
  border-color: rgba(217, 35, 20, 0.42);
  transform: translateY(-3px);
}

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

.proof-card {
  min-height: 170px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.proof-card img {
  width: 100%;
  max-width: 132px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.proof-card strong {
  color: #1b1715;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.05;
}

.proof-card span {
  color: #5f5752;
  font-size: 0.95rem;
}

.proof-card--text {
  background: #1b1715;
}

.proof-card--text strong,
.proof-card--text span {
  color: #fff;
}

.proof-card--standards {
  background: #fbf7f2;
}

.org-section {
  background: #fbf7f2;
}

.org-chart {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.org-chart__level {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.org-card {
  min-height: 132px;
}

.org-card strong {
  display: block;
  color: #1b1715;
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.org-card span {
  color: var(--ember);
  font-weight: 800;
}

.org-card p {
  margin: 10px 0 0;
  color: #5f5752;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(0.86);
  }
  to {
    transform: translate3d(18px, -22px, 0) scale(1.15);
  }
}

@keyframes page-wipe {
  0% {
    transform: translateX(0);
  }
  58% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes hero-copy-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visual-breathe {
  from {
    opacity: 0;
    transform: translateX(var(--visual-shift)) rotate(var(--visual-rotate)) scale(1.045);
  }
  to {
    opacity: 1;
    transform: translateX(var(--visual-shift)) rotate(var(--visual-rotate)) scale(1);
  }
}

@media (max-width: 1040px) {
  .hero__slide,
  .section__intro,
  .contact-cta,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 340px;
  }

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

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

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

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

@media (max-width: 760px) {
  .site-header {
    min-height: 112px;
  }

  .top-bar {
    display: none;
  }

  .nav {
    gap: 16px;
    padding: 16px 18px;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand__logo {
    height: clamp(72px, 22vw, 86px);
    max-width: min(230px, calc(100vw - 98px));
  }

  .nav__toggle {
    display: block;
    flex: 0 0 44px;
    position: fixed;
    top: 50px;
    right: 18px;
    z-index: 130;
    background: #fff;
    box-shadow: 0 8px 18px rgba(13, 13, 13, 0.08);
  }

  .is-scrolled .nav__toggle {
    top: 30px;
  }

  .nav__links {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 128px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: calc(100dvh - 146px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(247, 239, 230, 0.14);
    border-radius: 10px;
    background:
      linear-gradient(135deg, rgba(26, 20, 16, 0.97), rgba(9, 9, 9, 0.97)),
      rgba(13, 13, 13, 0.98);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition: opacity 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(18px);
  }

  .is-scrolled .nav__links {
    top: 104px;
    max-height: calc(100dvh - 122px);
  }

  .nav.is-open .nav__links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav__links a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 7px;
    color: rgba(247, 239, 230, 0.9);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  }

  .nav__links a::after {
    display: none;
  }

  .nav__links a:hover,
  .nav__links a:focus-visible {
    background: rgba(242, 92, 5, 0.14);
    color: #fff;
    transform: translateX(2px);
  }

  .nav__links a:active {
    transform: scale(0.985);
  }

  .nav__mobile-contact {
    display: grid;
    gap: 2px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(247, 239, 230, 0.1);
  }

  .nav__mobile-contact a {
    min-height: 42px;
    color: rgba(247, 239, 230, 0.68);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
  }

  .hero {
    padding-top: 128px;
    clip-path: none;
  }

  .hero__track {
    min-height: 0;
    display: grid;
  }

  .hero__slide {
    position: relative;
    inset: auto;
    display: none;
    gap: 22px;
    align-content: start;
  }

  .hero__slide.is-active {
    display: grid;
  }

  .hero__content {
    order: 0;
  }

  .hero__visual {
    min-height: 285px;
    order: -1;
  }

  .hero__controls {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .hero__feature-bar {
    position: relative;
    left: auto;
    right: auto;
    margin-top: 28px;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid var(--line);
  }

  .stats-band,
  .services-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__feature-bar div {
    min-height: 88px;
  }

  .service-grid,
  .industry-row {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .related-grid,
  .standard-tags,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .footer {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .footer__col--brand,
  .footer__panel {
    min-height: auto;
  }

  .footer__logo {
    height: clamp(82px, 25vw, 118px);
  }

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

/* About uses the same two-sided frame as the hero, header, CTA and footer. */
body#top.about-page .about-highlights {
  padding-inline: var(--hero-gutter);
}

body#top.about-page .about-benefits,
body#top.about-page .about-performance,
body#top.about-page .about-story,
body#top.about-page .about-details {
  box-sizing: border-box;
  width: calc(100% - (var(--hero-gutter) * 2));
  max-width: none;
  margin-inline: auto;
}

body#top.about-page .about-benefits,
body#top.about-page .about-performance {
  width: 100%;
}

/* Compact the navigation before it can spill at tablet widths. */
@media (min-width: 761px) and (max-width: 920px) {
  body#top .top-bar {
    display: none;
  }

  body#top .nav {
    min-height: 82px;
  }

  body#top .nav__links {
    gap: clamp(10px, 1.8vw, 16px);
  }

  body#top .nav__links a,
  body#top .nav__dropdown-toggle {
    font-size: 0.79rem;
  }

  body#top .nav__cta {
    min-height: 44px;
    margin-left: 0;
    padding-inline: 15px !important;
    font-size: 0.78rem !important;
  }
}

/* The contact composition becomes deliberately vertical before the form becomes cramped. */
@media (max-width: 980px) {
  .contact-page__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(38px, 6vw, 62px);
  }

  .contact-page__details,
  .contact-form-card {
    max-width: 680px;
  }
}

/* Industry detail page: source-backed content in the same dark, technical language. */
body#top.industries-page {
  color: #f7f7f5;
  background: #020b13;
}

body#top.industries-page .site-header {
  background: rgba(3, 10, 18, 0.9);
}

.industries-page__hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(232, 54, 47, 0.18), transparent 26%),
    linear-gradient(124deg, #020b13 0%, #061725 57%, #020b13 100%);
}

.industries-detail {
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(66px, 8vw, 118px) var(--hero-gutter);
  background:
    radial-gradient(circle at 10% 76%, rgba(37, 91, 115, 0.17), transparent 25%),
    #020b13;
}

.industries-detail__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  width: min(100%, 1400px);
  min-height: 430px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(232, 239, 239, 0.16);
  border-radius: 20px;
  background: #081722;
  box-shadow: 0 22px 44px rgba(0, 4, 10, 0.2);
  scroll-margin-top: 170px;
}

.industries-detail__card:nth-child(even) {
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
}

.industries-detail__card:nth-child(even) img { order: 2; }

.industries-detail__card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.industries-detail__card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(11, 29, 43, 0.99), rgba(4, 16, 26, 0.98));
}

.industries-detail__card .eyebrow {
  margin: 0 0 16px;
  color: #f04438;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.industries-detail__card h2 {
  max-width: 16ch;
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 3.15rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.industries-detail__card p:not(.eyebrow) {
  max-width: 58ch;
  margin: 22px 0 0;
  color: rgba(232, 238, 239, 0.76);
  font-size: 1rem;
  line-height: 1.62;
}

.industries-detail__card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  color: rgba(241, 245, 245, 0.88);
  font-size: 0.92rem;
  line-height: 1.48;
  list-style: none;
}

.industries-detail__card li {
  position: relative;
  padding-left: 18px;
}

.industries-detail__card li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 2px;
  content: "";
  background: #ef3c34;
}

.industries-detail__card > div > a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 28px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.industries-detail__card > div > a span {
  color: #ef3c34;
  font-size: 1.25rem;
  transition: transform 220ms ease;
}

.industries-detail__card > div > a:hover span,
.industries-detail__card > div > a:focus-visible span { transform: translateX(5px); }
.industries-detail__card > div > a:focus-visible { outline: 2px solid #ef3c34; outline-offset: 5px; }

body#top .nav__links a[aria-current="page"] {
  color: #fff;
}

body#top .nav__links a[aria-current="page"]::after {
  width: 100%;
  opacity: 1;
}

/* Organisation explorer: reference-led interaction, scoped so shared pages remain stable. */
body#top.organisation-page {
  color: #f6f7f5;
  background: #020b13;
}

body#top.organisation-page .site-header {
  background: rgba(3, 10, 18, 0.92);
}

.organisation-explorer {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: clamp(178px, 17vw, 230px) var(--hero-gutter) clamp(78px, 9vw, 132px);
  background:
    radial-gradient(circle at 66% 17%, rgba(229, 52, 45, 0.13), transparent 23%),
    radial-gradient(circle at 8% 88%, rgba(23, 77, 102, 0.19), transparent 28%),
    linear-gradient(132deg, #020b13 0%, #061724 56%, #020b13 100%);
}

.organisation-explorer::before {
  position: absolute;
  right: -11%;
  bottom: -22%;
  width: min(48vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(236, 58, 50, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.organisation-explorer__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(245px, 0.72fr) minmax(440px, 1.45fr) minmax(290px, 0.82fr);
  grid-template-rows: auto 1fr;
  gap: clamp(30px, 4vw, 68px) clamp(28px, 4vw, 70px);
  width: min(100%, 1480px);
  margin-inline: auto;
}

.organisation-explorer__intro { grid-row: 1 / span 2; align-self: center; }
.organisation-explorer__eyebrow { display:flex; align-items:center; gap:14px; margin:0 0 22px; color:#f04438; font-size:.75rem; font-weight:800; letter-spacing:.18em; text-transform:uppercase; }
.organisation-explorer__eyebrow::after { width:34px; height:2px; content:""; background:currentColor; }
.organisation-explorer__intro h1 { max-width: 10ch; margin: 0; color:#f7f7f5; font-family:var(--font-heading); font-size:clamp(2.45rem,4vw,4.3rem); font-weight:800; line-height:.99; letter-spacing:-.065em; }
.organisation-explorer__intro > p:last-of-type { max-width:37ch; margin:28px 0 0; color:rgba(226,233,235,.78); font-size:clamp(.98rem,1.1vw,1.08rem); line-height:1.62; }
.organisation-explorer__actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }

.organisation-explorer__filters { display:flex; align-self:start; justify-self:center; grid-column:2; width:fit-content; max-width:100%; padding:5px; overflow:auto hidden; border:1px solid rgba(227,236,238,.15); border-radius:999px; background:rgba(7,22,34,.74); box-shadow:inset 0 1px 0 rgba(255,255,255,.05); }
.organisation-explorer__filters button { flex:0 0 auto; min-height:46px; padding:0 21px; border:0; border-radius:999px; color:rgba(237,243,244,.74); font:700 .88rem/1 var(--font-body); background:transparent; cursor:pointer; transition:color 220ms ease,background-color 220ms ease,transform 220ms ease; }
.organisation-explorer__filters button.is-active { color:#fff; background:linear-gradient(135deg,#ff5438,#e52222); }
.organisation-explorer__filters button:hover:not(.is-active) { color:#fff; background:rgba(255,255,255,.08); }
.organisation-explorer__filters button:focus-visible { outline:2px solid #fff; outline-offset:3px; }

.organisation-explorer__directory { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); grid-column:2; gap:16px; align-content:start; }
.organisation-record { display:grid; grid-template-columns:74px minmax(0,1fr) 30px; gap:17px; min-height:166px; align-items:center; padding:22px; border:1px solid rgba(229,237,239,.21); border-radius:17px; color:#fff; text-align:left; background:linear-gradient(135deg,rgba(13,31,45,.94),rgba(6,19,30,.92)); cursor:pointer; box-shadow:inset 0 1px 0 rgba(255,255,255,.035); transition:border-color 260ms ease,background-color 260ms ease,transform 260ms cubic-bezier(.16,1,.3,1); }
.organisation-record:hover { border-color:rgba(245,246,242,.5); transform:translateY(-3px); }
.organisation-record.is-selected { border-color:#f04438; background:linear-gradient(135deg,rgba(68,19,25,.9),rgba(7,21,33,.97)); }
.organisation-record:focus-visible { outline:2px solid #fff; outline-offset:4px; }
.organisation-record__monogram,.organisation-detail__monogram { display:grid; place-items:center; border:1px solid rgba(241,244,244,.46); border-radius:50%; color:#f5f6f3; font-family:var(--font-heading); font-size:1.35rem; font-weight:800; letter-spacing:-.06em; background:rgba(255,255,255,.035); }
.organisation-record__monogram { width:66px; height:66px; }.organisation-record__monogram--team { color:#f04438; border-color:rgba(240,68,56,.74); }
.organisation-record__body { display:grid; gap:6px; }.organisation-record__body small,.organisation-detail__role { color:#f04438; font-size:.72rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }.organisation-record__body strong { font-family:var(--font-heading); font-size:1.14rem; line-height:1.1; letter-spacing:-.04em; }.organisation-record__body span { color:rgba(226,233,235,.7); font-size:.82rem; line-height:1.42; }.organisation-record__select { display:grid; width:26px; height:26px; place-items:center; border:1px solid rgba(245,247,247,.45); border-radius:50%; color:#fff; font-size:1.12rem; }.organisation-record.is-selected .organisation-record__select { border-color:#f04438; color:#f04438; }
.organisation-explorer__empty { grid-column:1 / -1; margin:0; padding:28px; border:1px dashed rgba(226,233,235,.24); border-radius:14px; color:rgba(226,233,235,.74); line-height:1.55; }

.organisation-detail { grid-column:3; grid-row:1 / span 2; min-height:520px; padding:30px; border:1px solid rgba(231,238,240,.17); border-radius:17px; background:linear-gradient(145deg,rgba(13,30,44,.96),rgba(5,17,28,.94)); box-shadow:inset 0 1px 0 rgba(255,255,255,.05); }
.organisation-detail__status { display:flex; align-items:center; gap:8px; margin:0; color:#fff; font-size:.82rem; font-weight:800; }.organisation-detail__status span { width:8px; height:8px; border-radius:50%; background:#f04438; }.organisation-detail__monogram { width:114px; height:114px; margin:32px auto 20px; border-color:#f04438; font-size:2.4rem; }.organisation-detail__role { margin:0; text-align:center; }.organisation-detail h2 { margin:9px 0 0; color:#fff; font-family:var(--font-heading); font-size:clamp(1.7rem,2.2vw,2.45rem); line-height:1; letter-spacing:-.06em; text-align:center; }.organisation-detail > p:not(.organisation-detail__status):not(.organisation-detail__role):not(.organisation-detail__live) { margin:12px 0 0; color:rgba(226,233,235,.76); line-height:1.55; text-align:center; }.organisation-detail__facts { margin-top:28px; padding-top:22px; border-top:1px solid rgba(229,237,239,.14); }.organisation-detail__facts h3 { margin:0 0 14px; color:#fff; font-size:.84rem; font-weight:800; }.organisation-detail__facts ul { display:grid; gap:12px; margin:0; padding:0; list-style:none; }.organisation-detail__facts li { position:relative; padding-left:18px; color:rgba(226,233,235,.75); font-size:.87rem; line-height:1.5; }.organisation-detail__facts li::before { position:absolute; top:.62em; left:0; width:7px; height:2px; content:""; background:#f04438; }.organisation-detail__live { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

@media (max-width:1120px) { .organisation-explorer__layout { grid-template-columns:minmax(220px,.66fr) minmax(0,1.34fr); }.organisation-detail { grid-column:1 / -1; grid-row:auto; display:grid; grid-template-columns:120px minmax(0,1fr); gap:0 28px; min-height:0; }.organisation-detail__status { grid-column:1 / -1; }.organisation-detail__monogram { grid-row:2 / span 3; margin:26px 0 0; }.organisation-detail__role,.organisation-detail h2,.organisation-detail > p:not(.organisation-detail__status):not(.organisation-detail__role):not(.organisation-detail__live) { text-align:left; }.organisation-detail__role { align-self:end; margin:26px 0 0; }.organisation-detail h2 { grid-column:2; }.organisation-detail > p:not(.organisation-detail__status):not(.organisation-detail__role):not(.organisation-detail__live) { grid-column:2; }.organisation-detail__facts { grid-column:1 / -1; } }
@media (max-width:760px) { .organisation-explorer { min-height:0; padding-top:126px; }.organisation-explorer__layout { grid-template-columns:1fr; gap:28px; }.organisation-explorer__intro { grid-row:auto; }.organisation-explorer__intro h1 { max-width:11ch; font-size:clamp(2.45rem,10.5vw,3.25rem); }.organisation-explorer__filters { justify-self:start; grid-column:auto; width:100%; }.organisation-explorer__filters button { padding-inline:17px; }.organisation-explorer__directory { grid-column:auto; grid-template-columns:1fr; }.organisation-record { min-height:145px; }.organisation-detail { grid-column:auto; grid-row:auto; display:block; padding:26px 22px; }.organisation-detail__status { display:flex; }.organisation-detail__monogram { margin:27px auto 18px; }.organisation-detail__role,.organisation-detail h2,.organisation-detail > p:not(.organisation-detail__status):not(.organisation-detail__role):not(.organisation-detail__live) { text-align:center; }.organisation-detail__role { margin:0; }.organisation-detail__facts { margin-top:25px; } }
@media (prefers-reduced-motion:reduce) { .organisation-record,.organisation-explorer__filters button { transition:none; } }

@media (max-width: 760px) {
  .industries-detail { padding-block: 58px; }
  .industries-detail__card,
  .industries-detail__card:nth-child(even) { grid-template-columns: 1fr; }
  .industries-detail__card:nth-child(even) img { order: 0; }
  .industries-detail__card img { height: min(70vw, 330px); min-height: 0; }
  .industries-detail__card > div { padding: 30px 24px 34px; }
}

@media (max-width: 500px) {
  h1,
  .hero h2 {
    font-size: clamp(2.25rem, 12.6vw, 3.05rem);
  }

  .hero__feature-bar,
  .stats-band,
  .services-strip {
    grid-template-columns: 1fr;
  }
}

/* === PRESENTATION DECK SECTIONS === */
main {
  counter-reset: deck-slide;
}

.deck-slide {
  counter-increment: deck-slide;
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  padding: clamp(104px, 8vw, 132px) clamp(18px, 5vw, 72px) clamp(72px, 7vw, 110px);
  scroll-margin-top: 76px;
  border-top: 1px solid rgba(247, 239, 230, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(242, 92, 5, 0.2), transparent 28%),
    linear-gradient(135deg, #0c0c0c 0%, #171717 56%, #250d06 100%);
  background-size: 92px 92px, 92px 92px, auto, auto;
}

.deck-slide::before {
  content: "0" counter(deck-slide);
  position: absolute;
  top: clamp(24px, 4vw, 48px);
  right: clamp(18px, 5vw, 72px);
  z-index: -1;
  color: rgba(247, 239, 230, 0.07);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 13rem);
  font-weight: 900;
  line-height: 0.8;
}

.deck-slide::after {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 5vw, 72px) clamp(24px, 4vw, 48px);
  z-index: -1;
  height: 3px;
  background: linear-gradient(90deg, var(--ember) 0 18%, rgba(247, 239, 230, 0.16) 18% 100%);
}

.services-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
  align-content: center;
  color: var(--cream);
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 138, 36, 0.34), transparent 32%),
    linear-gradient(135deg, #0b0b0b, #261006);
}

.services-strip span {
  min-height: min(48vh, 420px);
  align-items: end;
  justify-items: start;
  padding: clamp(18px, 2.7vw, 32px);
  border: 1px solid rgba(247, 239, 230, 0.14);
  background:
    linear-gradient(to top, rgba(242, 92, 5, 0.24), transparent 62%),
    rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: clamp(1.08rem, 2.4vw, 2.4rem);
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.services-strip span:nth-child(even) {
  transform: translateY(clamp(18px, 3vw, 38px));
}

.section {
  display: grid;
  align-content: center;
}

.section__intro {
  position: relative;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1.72fr);
  gap: clamp(22px, 5vw, 82px);
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section__intro::after {
  content: "";
  align-self: stretch;
  width: 1px;
  min-height: 100%;
  background: linear-gradient(to bottom, var(--ember), transparent);
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.section__intro > .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.section__intro > h2 {
  grid-column: 2;
  grid-row: 1;
}

.section h2,
.contact-cta h2 {
  max-width: 1060px;
  font-size: clamp(2.25rem, 4.25vw, 4.65rem);
  line-height: 0.94;
}

.service-grid {
  grid-template-columns: repeat(7, minmax(145px, 1fr));
  gap: clamp(8px, 1vw, 14px);
}

.service-card {
  min-height: clamp(260px, 32vh, 360px);
  padding: clamp(16px, 1.8vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 6px;
  background:
    linear-gradient(160deg, rgba(242, 92, 5, 0.16), transparent 42%),
    rgba(30, 30, 30, 0.82);
  backdrop-filter: blur(12px);
}

.service-card h3 {
  margin-top: 0;
  font-size: clamp(1rem, 1.35vw, 1.32rem);
}

.service-card p {
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.42;
}

.stats-band {
  align-content: center;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 138, 36, 0.25), transparent 30%),
    linear-gradient(135deg, #090909, #1b1b1b);
}

.stats-band div {
  min-height: clamp(260px, 42vh, 420px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(247, 239, 230, 0.14);
  background:
    linear-gradient(to top, rgba(242, 92, 5, 0.2), transparent 54%),
    rgba(255, 255, 255, 0.045);
}

.stats-band strong {
  color: #fff;
  font-size: clamp(3rem, 6.6vw, 8.5rem);
}

.stats-band span {
  color: rgba(247, 239, 230, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.industry-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
}

.industry-row article {
  min-height: clamp(360px, 54vh, 560px);
  border-radius: 6px;
  font-size: clamp(1.1rem, 2vw, 2rem);
}

.contact-cta {
  align-content: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  background:
    radial-gradient(circle at 18% 24%, rgba(242, 92, 5, 0.32), transparent 28%),
    linear-gradient(135deg, #141414, #070707);
}

.contact-cta > div:first-child {
  align-self: center;
}

.contact-cta p {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
}

.contact-form {
  padding: clamp(24px, 3.4vw, 46px);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(242, 92, 5, 0.12), transparent 46%),
    rgba(255, 255, 255, 0.055);
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .deck-slide {
    min-height: auto;
    padding-top: clamp(76px, 12vw, 110px);
    padding-bottom: clamp(76px, 12vw, 110px);
  }

  .services-strip,
  .stats-band,
  .service-grid,
  .industry-row {
    grid-template-columns: 1fr;
  }

  .services-strip span,
  .services-strip span:nth-child(even),
  .stats-band div,
  .industry-row article {
    min-height: clamp(160px, 34vh, 280px);
    transform: none;
  }

  .section__intro,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .section__intro::after {
    display: none;
  }
}

/* === LIGHT MODE REDESIGN === */
:root {
  --ink: #171717;
  --charcoal: #ffffff;
  --panel: #ffffff;
  --panel-soft: #f7f7f4;
  --ember: #e9262a;
  --ember-hot: #ff4a4e;
  --redline: #b9161a;
  --cream: #fffaf4;
  --muted: #6a625d;
  --line: rgba(23, 23, 23, 0.11);
  --shadow: 0 26px 70px rgba(37, 28, 20, 0.14);
}

body {
  background:
    linear-gradient(90deg, rgba(233, 38, 42, 0.035) 1px, transparent 1px),
    linear-gradient(#ffffff 0%, #fbf7f2 52%, #ffffff 100%);
  color: #1c1816;
}

body::before {
  background:
    linear-gradient(90deg, transparent, rgba(233, 38, 42, 0.18), transparent),
    #fffaf4;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open main,
body.nav-open #footer-container {
  filter: blur(8px) saturate(0.84);
  transform: scale(0.992);
  pointer-events: none;
}

main,
#footer-container {
  transition: filter 260ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top center;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 16px 42px rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(18px);
}

.is-scrolled .site-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.1);
}

.top-bar {
  background: #171717;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 0;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.82);
}

.nav__links {
  gap: clamp(10px, 1.4vw, 18px);
  color: #171717;
}

.nav__links a {
  color: #1f1b19;
  padding: 8px 0;
}

.nav__links a:hover {
  color: var(--ember);
}

.nav__links a::after {
  background: var(--ember);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px !important;
  border: 1px solid var(--ember);
  border-radius: 4px;
  background: var(--ember);
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(233, 38, 42, 0.22);
}

.nav__cta::after {
  display: none;
}

.nav__cta:hover {
  background: #c91d21;
  color: #fff !important;
  transform: translateY(-1px);
}

.nav__toggle {
  border-color: rgba(23, 23, 23, 0.16);
  background: #fff;
  color: #171717;
}

.nav__toggle:hover {
  background: rgba(233, 38, 42, 0.07);
  border-color: rgba(233, 38, 42, 0.34);
}

.nav__toggle:focus-visible,
.nav__links a:focus-visible {
  outline-color: rgba(233, 38, 42, 0.38);
}

.nav.is-open .nav__toggle {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
}

.hero {
  background:
    radial-gradient(circle at var(--hero-hotspot-x) 26%, rgba(233, 38, 42, 0.3), transparent 30%),
    linear-gradient(135deg, #170b0b 0%, #281413 48%, #611316 100%);
}

.hero__dot.is-active {
  background: var(--ember);
}

.hero__feature-bar {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -18px 42px rgba(23, 23, 23, 0.12);
}

.hero__feature-bar div {
  border-right-color: rgba(23, 23, 23, 0.09);
}

.hero__feature-bar strong {
  color: #171717;
}

.hero__feature-bar span {
  color: #625a55;
}

.services-strip {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(233, 38, 42, 0.94), rgba(185, 22, 26, 0.96));
}

.services-strip span {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.13), transparent 64%),
    rgba(255, 255, 255, 0.055);
  color: #fff;
}

.section,
.deck-slide {
  background:
    radial-gradient(circle at 86% 12%, rgba(233, 38, 42, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbf7f2 100%);
  border-top-color: rgba(23, 23, 23, 0.08);
}

.services-strip.deck-slide {
  background:
    linear-gradient(135deg, rgba(233, 38, 42, 0.98), rgba(179, 18, 22, 0.98)),
    var(--ember);
  border-top: 0;
}

.services-strip.deck-slide::before,
.services-strip.deck-slide::after {
  display: none;
}

.services-strip.deck-slide span {
  position: relative;
  isolation: isolate;
  color: #fff;
  text-shadow: 0 2px 10px rgba(70, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(120, 0, 0, 0.1);
}

.services-strip.deck-slide span::after {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 2.7vw, 32px) clamp(16px, 2.4vw, 28px);
  z-index: -1;
  height: 3px;
  background: rgba(255, 255, 255, 0.72);
}

.deck-slide::before {
  color: rgba(233, 38, 42, 0.07);
}

.deck-slide::after,
.section__intro::after {
  background: linear-gradient(to bottom, var(--ember), rgba(233, 38, 42, 0));
}

.section h2,
.contact-cta h2 {
  color: #1b1715;
}

.eyebrow,
.service-card span {
  color: var(--ember);
}

.service-card {
  border: 1px solid rgba(23, 23, 23, 0.1);
  background: #fff;
  box-shadow: 0 18px 46px rgba(35, 24, 22, 0.1);
}

.service-card::before,
.contact-form::before {
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(233, 38, 42, 0.12), transparent 36%);
}

.service-card:hover {
  border-color: rgba(233, 38, 42, 0.42);
  background: #fff;
  box-shadow: 0 24px 56px rgba(35, 24, 22, 0.16);
}

.service-card h3 {
  color: #1b1715;
}

.service-card p,
.contact-cta p {
  color: #5f5752;
}

.stats-band {
  color: #171717;
  background:
    linear-gradient(90deg, rgba(233, 38, 42, 0.08), transparent 38%),
    #ffffff;
}

.stats-band div {
  border-color: rgba(23, 23, 23, 0.1);
  background:
    linear-gradient(to top, rgba(233, 38, 42, 0.1), transparent 54%),
    #fff;
}

.stats-band strong {
  color: var(--ember);
}

.stats-band span {
  color: #5f5752;
}

.industries {
  background:
    radial-gradient(circle at 14% 10%, rgba(233, 38, 42, 0.08), transparent 30%),
    #fff;
}

.industry-row article {
  border-color: rgba(23, 23, 23, 0.1);
  box-shadow: 0 18px 42px rgba(35, 24, 22, 0.12);
}

.industry-row article::before {
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(233, 38, 42, 0.28), transparent 34%);
}

.industry-row article::after {
  background: linear-gradient(to top, rgba(23, 23, 23, 0.72), transparent 64%);
}

.contact-cta {
  background:
    linear-gradient(90deg, rgba(233, 38, 42, 0.11), transparent 42%),
    #ffffff;
}

.contact-form {
  border: 1px solid rgba(23, 23, 23, 0.1);
  background: #fff;
  box-shadow: 0 24px 64px rgba(35, 24, 22, 0.12);
}

.contact-form label {
  color: #322c28;
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(23, 23, 23, 0.13);
  background: #fbf7f2;
  color: #171717;
}

.contact-form__status {
  color: #5f5752;
}

#footer-container {
  background:
    radial-gradient(circle at 12% 12%, rgba(233, 38, 42, 0.08), transparent 30%),
    #ffffff;
  border-top: 4px solid var(--ember);
}

.footer {
  color: #5f5752;
}

.footer__logo {
  filter: none;
}

.footer__description,
.footer__links a,
.footer__contact a,
.footer__bottom a {
  color: #4f4844;
}

.footer__credentials,
.footer__address,
.footer__bottom {
  color: #776f69;
}

.footer__credentials span,
.footer__panel {
  border-color: rgba(23, 23, 23, 0.1);
  background: #fbf7f2;
}

.footer__title {
  color: var(--ember);
}

.footer__bottom {
  border-top-color: rgba(23, 23, 23, 0.1);
}

@media (max-width: 760px) {
  .nav__links {
    border-color: rgba(23, 23, 23, 0.1);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 244, 0.94)),
      #ffffff;
    box-shadow: 0 28px 70px rgba(37, 28, 20, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .nav__links a {
    color: #1b1715;
  }

  .nav__links a:hover,
  .nav__links a:focus-visible {
    background: rgba(233, 38, 42, 0.1);
    color: var(--ember);
  }

  .nav__cta {
    min-height: 50px;
    margin-top: 6px;
  }

  .nav__mobile-contact {
    border-top-color: rgba(23, 23, 23, 0.1);
  }

  .nav__mobile-contact a {
    color: #6a625d;
  }

  body.nav-open main,
  body.nav-open #footer-container {
    filter: blur(9px) brightness(0.96) saturate(0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    display: none;
  }

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

/* Service imagery and accessible navigation */
.service-card {
  grid-template-rows: auto 132px auto 1fr;
  overflow: hidden;
}

.service-card__image {
  display: block;
  width: calc(100% + 48px);
  margin: 0 -24px;
  background-image: url("/images/services/service-atlas.webp");
  background-repeat: no-repeat;
  background-size: 300% 300%;
  background-color: #222;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
  filter: saturate(0.92);
}

/* Coverflow-style service deck inspired by the supplied card reference. */
.service-grid--deck {
  position: relative;
  display: block;
  width: min(1180px, 100%);
  height: 520px;
  margin-inline: auto;
  perspective: 1400px;
  isolation: isolate;
}

.service-grid--deck .service-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(300px, 72vw);
  min-height: 430px;
  padding: 18px;
  display: grid;
  grid-template-rows: auto 162px auto auto 1fr;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: #f5f3ef;
  color: #1b2528;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transform: translate3d(-50%, 0, 0) scale(0.68);
  transform-origin: center top;
  opacity: 0;
  pointer-events: none;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1), opacity 520ms ease, filter 520ms ease;
  will-change: transform, opacity;
}

.service-grid--deck .service-card[data-deck-position="0"] {
  z-index: 5;
  transform: translate3d(-50%, 0, 80px) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.service-grid--deck .service-card[data-deck-position="-1"],
.service-grid--deck .service-card[data-deck-position="1"] {
  z-index: 4;
  opacity: 0.82;
  pointer-events: auto;
  filter: blur(1.5px) saturate(0.68) brightness(0.78);
}

.service-grid--deck .service-card[data-deck-position="-1"] {
  transform: translate3d(calc(-50% - 205px), 38px, 0) rotateY(10deg) scale(0.88);
}

.service-grid--deck .service-card[data-deck-position="1"] {
  transform: translate3d(calc(-50% + 205px), 38px, 0) rotateY(-10deg) scale(0.88);
}

.service-grid--deck .service-card[data-deck-position="-2"],
.service-grid--deck .service-card[data-deck-position="2"] {
  z-index: 3;
  opacity: 0.48;
  pointer-events: auto;
  filter: blur(3px) saturate(0.46) brightness(0.64);
}

.service-grid--deck .service-card[data-deck-position="-2"] {
  transform: translate3d(calc(-50% - 355px), 72px, -30px) rotateY(15deg) scale(0.76);
}

.service-grid--deck .service-card[data-deck-position="2"] {
  transform: translate3d(calc(-50% + 355px), 72px, -30px) rotateY(-15deg) scale(0.76);
}

.service-grid--deck .service-card[data-deck-position="-3"],
.service-grid--deck .service-card[data-deck-position="3"] {
  z-index: 2;
  opacity: 0.22;
  pointer-events: none;
  filter: blur(5px) saturate(0.34) brightness(0.5);
}

.service-grid--deck .service-card[data-deck-position="-3"] {
  transform: translate3d(calc(-50% - 475px), 96px, -60px) rotateY(18deg) scale(0.66);
}

.service-grid--deck .service-card[data-deck-position="3"] {
  transform: translate3d(calc(-50% + 475px), 96px, -60px) rotateY(-18deg) scale(0.66);
}

.service-grid--deck .service-card[data-deck-position="-4"],
.service-grid--deck .service-card[data-deck-position="4"] {
  transform: translate3d(-50%, 120px, -90px) scale(0.56);
}

.service-grid--deck .service-card[data-deck-position="0"] {
  filter: none;
}

.service-deck-controls {
  width: min(1180px, 100%);
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.service-deck-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(247, 239, 230, 0.22);
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.78);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, border-color 220ms ease;
}

.service-deck-control:hover,
.service-deck-control:focus-visible {
  border-color: rgba(242, 92, 5, 0.7);
  background: var(--ember);
}

.service-deck-control:active {
  transform: translateY(1px) scale(0.98);
}

.service-deck-control:focus-visible {
  outline: 3px solid rgba(242, 92, 5, 0.3);
  outline-offset: 4px;
}

.service-deck-controls__hint {
  color: rgba(247, 239, 230, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid--deck .service-card__image {
  width: calc(100% + 36px);
  height: 162px;
  margin: 0 -18px;
  border-radius: 16px 16px 10px 10px;
  object-fit: cover;
}

.service-grid--deck .service-card .service-icon {
  width: 42px;
  height: 42px;
  box-shadow: none;
}

.service-grid--deck .service-card h3 {
  color: #1b2528;
  font-size: 1.28rem;
}

.service-grid--deck .service-card p {
  color: #687174;
  font-size: 0.92rem;
  line-height: 1.42;
}

.service-grid--deck .service-card:active {
  transform: translate3d(-50%, 2px, 80px) scale(0.98);
}

@media (max-width: 900px) {
  .service-grid--deck .service-card[data-deck-position="-2"],
  .service-grid--deck .service-card[data-deck-position="2"],
  .service-grid--deck .service-card[data-deck-position="-3"],
  .service-grid--deck .service-card[data-deck-position="3"],
  .service-grid--deck .service-card[data-deck-position="-4"],
  .service-grid--deck .service-card[data-deck-position="4"] {
    opacity: 0;
  }
}

@media (max-width: 760px) {
  .service-grid--deck {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    perspective: none;
  }

  .service-grid--deck .service-card,
  .service-grid--deck .service-card[data-deck-position="0"],
  .service-grid--deck .service-card[data-deck-position="-1"],
  .service-grid--deck .service-card[data-deck-position="1"],
  .service-grid--deck .service-card[data-deck-position="-2"],
  .service-grid--deck .service-card[data-deck-position="2"],
  .service-grid--deck .service-card[data-deck-position="-3"],
  .service-grid--deck .service-card[data-deck-position="3"],
  .service-grid--deck .service-card[data-deck-position="-4"],
  .service-grid--deck .service-card[data-deck-position="4"] {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    opacity: 1;
    pointer-events: auto;
    filter: none;
    transform: none;
  }

  .service-grid--deck .service-card__image {
    height: 180px;
  }

  .service-deck-controls {
    justify-content: space-between;
    gap: 10px;
  }

  .service-deck-controls__hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-grid--deck .service-card {
    transition: none;
  }
}

.service-card:hover .service-card__image {
  transform: scale(1.04);
  filter: saturate(1.12);
}

.service-card__image--1 { background-position: 0 0; }
.service-card__image--2 { background-position: 50% 0; }
.service-card__image--3 { background-position: 100% 0; }
.service-card__image--4 { background-position: 0 50%; }
.service-card__image--5 { background-position: 50% 50%; }
.service-card__image--6 { background-position: 100% 50%; }
.service-card__image--7 { background-position: 0 100%; }
.service-card__image--8 { background-position: 50% 100%; }
.service-card__image--9 { background-position: 100% 100%; }

.service-card__image {
  height: 132px;
  object-fit: cover;
  object-position: center;
  background: none;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  min-height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #1b2528;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
}

.nav__dropdown-toggle:hover,
.nav__dropdown-toggle:focus-visible,
.nav__dropdown.is-open .nav__dropdown-toggle {
  color: var(--ember);
  background: rgba(233, 38, 42, 0.08);
}

.nav__dropdown-toggle:focus-visible,
.nav__dropdown-menu a:focus-visible {
  outline: 3px solid rgba(242, 92, 5, 0.34);
  outline-offset: 3px;
}

.nav__dropdown-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav__dropdown.is-open .nav__dropdown-chevron {
  transform: translateY(2px) rotate(225deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 3;
  display: grid;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(14, 17, 19, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(14, 17, 19, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #1b2528;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav__dropdown-menu a:hover,
.nav__dropdown-menu a:focus-visible {
  background: rgba(233, 38, 42, 0.08);
  color: var(--ember);
}

@media (max-width: 760px) {
  .service-card {
    grid-template-rows: auto 150px auto 1fr;
  }

  .service-card__image {
    height: 150px;
  }

  .nav__dropdown {
    width: 100%;
  }

  .nav__dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

  .nav__dropdown-menu {
    position: static;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 4px 0 4px 16px;
    border: 0;
    border-left: 2px solid rgba(233, 38, 42, 0.25);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav__dropdown-menu a {
    padding: 9px 12px;
    white-space: normal;
  }
}

/* Company profile additions */
.profile-detail {
  background: #f5f0e9;
  color: #191714;
}

.profile-detail .section__intro h2 {
  color: #191714;
}

.profile-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(25, 23, 20, 0.18);
}

.profile-detail__grid article {
  padding: 30px 34px 34px 0;
  border-bottom: 1px solid rgba(25, 23, 20, 0.18);
}

.profile-detail__grid article:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid rgba(25, 23, 20, 0.18);
}

.profile-detail__grid h3 {
  max-width: 17ch;
  margin: 12px 0 10px;
  color: #191714;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.08;
}

.profile-detail__grid p {
  max-width: 54ch;
  margin: 0;
  color: #665f57;
}

.detail-index {
  color: var(--ember);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-card--badge {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
}

.proof-card--badge > strong,
.proof-card--badge > span {
  grid-column: 2;
}

.accreditation-mark {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--ember);
  border-radius: 50%;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.accreditation-mark--bbbee {
  border-radius: 12px;
  background: var(--ember);
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
}

@media (max-width: 760px) {
  .profile-detail__grid {
    grid-template-columns: 1fr;
  }

  .profile-detail__grid article,
  .profile-detail__grid article:nth-child(even) {
    padding: 24px 0;
    border-left: 0;
  }
}

/* Screenshot-inspired landing system: compact navigation, white content rhythm, restrained ember accents. */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  min-height: 98px;
  padding: 10px clamp(14px, 3vw, 36px) 0;
  background: linear-gradient(180deg, rgba(12, 19, 21, 0.68), rgba(12, 19, 21, 0));
  border: 0;
  box-shadow: none;
}

.site-header .top-bar,
.site-header .nav {
  width: min(1400px, calc(100% - 48px));
}

.top-bar {
  width: min(1180px, 100%);
  min-height: 34px;
  margin: 0 auto;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(13, 26, 29, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  font-size: 0.77rem;
  letter-spacing: 0;
}

.top-bar__links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.nav {
  width: min(1180px, 100%);
  min-height: 66px;
  margin: 0 auto;
  padding: 0 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 22px 54px rgba(4, 11, 13, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
}

.brand__logo {
  width: 168px;
  max-width: 42vw;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav__links a {
  min-height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #1b2528;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0;
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--ember);
  background: rgba(233, 38, 42, 0.08);
}

.nav__cta {
  margin-left: 8px;
  color: #fff !important;
  background: linear-gradient(135deg, #f05a28, var(--ember));
  box-shadow: 0 12px 28px rgba(233, 38, 42, 0.26);
}

.nav__toggle {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  background: #fff;
}

.nav__toggle span {
  background: #1b2528;
}

body.is-scrolled .site-header {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(14, 17, 19, 0.08);
}

body.is-scrolled .top-bar {
  display: none;
}

body.is-scrolled .nav {
  border-radius: 8px;
}

.hero {
  min-height: 720px;
  padding: 150px clamp(18px, 4vw, 64px) 96px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 22, 25, 0.92), rgba(8, 22, 25, 0.62) 48%, rgba(8, 22, 25, 0.28)),
    radial-gradient(circle at 78% 24%, rgba(240, 90, 40, 0.28), transparent 32%),
    #081619;
  overflow: hidden;
}

.hero::before,
.hero::after {
  opacity: 0.18;
}

.hero__track {
  width: min(1180px, 100%);
  min-height: 540px;
  margin: 0 auto;
}

.hero__slide {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.hero__content {
  max-width: 630px;
  padding: 0;
}

.hero .eyebrow {
  color: #ffb199;
}

.hero h1,
.hero h2 {
  max-width: 18ch;
  color: #fff;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero__lede {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.hero__visual {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  transform: none;
}

.hero__image {
  opacity: 0.86;
  filter: saturate(1.05) contrast(1.02);
}

.hero__feature-bar {
  position: relative;
  width: min(1060px, calc(100% - 32px));
  margin: 36px auto 0;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  color: #172225;
  background: #fff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(16, 24, 28, 0.18);
  z-index: 4;
}

.hero__feature-bar div {
  min-height: 78px;
  padding: 14px;
  border-radius: 8px;
  background: #f8f3ef;
}

.hero__feature-bar strong {
  color: var(--ember);
  font-size: clamp(1.3rem, 2.3vw, 2rem);
}

.hero__feature-bar span {
  color: #4f5a5d;
}

.hero__controls {
  width: min(1180px, 100%);
  margin: 0 auto;
  justify-content: flex-start;
  padding-left: 0;
}

.partner-marquee {
  position: relative;
  padding: 30px 0 24px;
  background: #fff;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  overflow: hidden;
}

.partner-marquee__intro {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 14px;
  color: #657074;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.partner-marquee__intro h2 {
  margin: 0;
  font: inherit;
}

.partner-marquee__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.partner-marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px;
  animation: partner-scroll 42s linear infinite;
}

.partner-card {
  width: 176px;
  height: 76px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 28, 31, 0.07);
}

.partner-card img {
  display: block;
  max-width: 132px;
  max-height: 46px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.partner-card--dark {
  background: #111a1d;
  border-color: rgba(17, 26, 29, 0.2);
}

.partner-card--dark img {
  filter: none;
  opacity: 1;
}

.partner-card--text {
  color: #243034;
  font-family: Montserrat, var(--font-heading, sans-serif);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.05;
}

.about-page__principles {
  background: #f5f0e9;
  color: #191714;
}

.about-page__principles .section__intro h2 {
  color: #191714;
}

.about-page__principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(25, 23, 20, 0.18);
}

.about-page__principles-grid article {
  padding: 28px 28px 10px 0;
  border-bottom: 1px solid rgba(25, 23, 20, 0.18);
}

.about-page__principles-grid article + article {
  padding-left: 28px;
  border-left: 1px solid rgba(25, 23, 20, 0.18);
}

.about-page__principles-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #191714;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.about-page__principles-grid p {
  margin: 0;
  color: #665f57;
}

@media (max-width: 760px) {
  .about-page__intro,
  .about-page__principles-grid {
    grid-template-columns: 1fr;
  }

  .about-page__principles-grid article,
  .about-page__principles-grid article + article {
    padding: 24px 0;
    border-left: 0;
  }
}

@keyframes partner-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section,
.deck-slide,
.stats-band,
.contact-cta {
  min-height: auto;
  padding-top: clamp(74px, 8vw, 118px);
  padding-bottom: clamp(74px, 8vw, 118px);
}

.section__intro {
  max-width: 760px;
}

.section h2,
.contact-cta h2,
.page-hero h1 {
  max-width: 21ch;
  font-size: clamp(1.95rem, 2.8vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.service-grid {
  width: min(1180px, 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 286px;
  padding: 24px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 16px;
  border-radius: 8px;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #f05a28, var(--ember));
  box-shadow: 0 14px 30px rgba(233, 38, 42, 0.26);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.22rem, 1.6vw, 1.55rem);
  line-height: 1.12;
}

.service-card p {
  margin: 0;
  font-size: 0.98rem;
}

.proof-grid,
.industry-row {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.page-hero {
  min-height: 0;
  padding: 132px clamp(18px, 5vw, 72px) 70px;
  background:
    linear-gradient(90deg, rgba(8, 22, 25, 0.94), rgba(8, 22, 25, 0.66)),
    radial-gradient(circle at 78% 18%, rgba(240, 90, 40, 0.26), transparent 30%),
    #081619;
}

.page-hero h1,
.page-hero p {
  color: #fff;
}

.page-hero p {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.page-hero .btn,
.page-hero .btn--ghost {
  min-height: 50px;
}

.service-detail,
.org-section {
  background: #fff;
}

.service-detail__panel,
.org-node,
.org-chart__level {
  border-radius: 8px;
  border-color: rgba(23, 23, 23, 0.1);
  box-shadow: 0 18px 44px rgba(20, 28, 31, 0.09);
}

@media (max-width: 980px) {
  .top-bar {
    display: none;
  }

  .site-header {
    min-height: 82px;
    padding-top: 12px;
  }

  .nav {
    border-radius: 8px;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

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

  .hero__track {
    min-height: 0;
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
  }

  .hero h1,
  .hero h2 {
    max-width: 100%;
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero__visual {
    min-height: 300px;
  }

  .hero__feature-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0;
  }

  .partner-marquee {
    padding-top: 28px;
  }

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

@media (max-width: 760px) {
  .nav__links {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    padding: 16px;
    border-radius: 8px;
  }

  .nav__links a {
    justify-content: flex-start;
    width: 100%;
  }

  .brand__logo {
    width: 142px;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero h1,
  .hero h2,
  .section h2,
  .contact-cta h2,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.55rem);
    line-height: 1.08;
  }

  .hero__feature-bar,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero__controls {
    margin-top: 16px;
  }

  .partner-card {
    width: 154px;
    height: 68px;
  }

  .service-card {
    min-height: 238px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee__track {
    animation: none;
  }
}

/* Final cascade overrides for service cards and navigation dropdown */
.service-card {
  grid-template-rows: auto 132px auto 1fr;
  overflow: hidden;
}

.service-card__image {
  display: block;
  width: calc(100% + 48px);
  margin: 0 -24px;
  background-image: url("/images/services/service-atlas.webp");
  background-repeat: no-repeat;
  background-size: 300% 300%;
  background-color: #222;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), filter 420ms ease;
  filter: saturate(0.92);
}

.service-card:hover .service-card__image {
  transform: scale(1.04);
  filter: saturate(1.12);
}

.service-card__image--1 { background-position: 0 0; }
.service-card__image--2 { background-position: 50% 0; }
.service-card__image--3 { background-position: 100% 0; }
.service-card__image--4 { background-position: 0 50%; }
.service-card__image--5 { background-position: 50% 50%; }
.service-card__image--6 { background-position: 100% 50%; }
.service-card__image--7 { background-position: 0 100%; }
.service-card__image--8 { background-position: 50% 100%; }
.service-card__image--9 { background-position: 100% 100%; }

.nav__dropdown-menu a {
  display: block;
  min-height: 0;
  width: auto;
  padding: 10px 12px;
}

@media (max-width: 760px) {
  .service-card {
    grid-template-rows: auto 150px auto 1fr;
  }

  .nav__dropdown-menu a {
    display: block;
    width: 100%;
    min-height: 0;
  }
}

/* Individual service images replace the atlas presentation. */
.service-card__image {
  height: 132px;
  object-fit: cover;
  object-position: center;
  background: none;
  background-image: none;
}

@media (max-width: 760px) {
  .service-card__image {
    height: 150px;
  }
}

/* Static editorial services grid */
main {
  counter-reset: none;
}

.deck-slide::before,
.deck-slide::after {
  display: none;
}

.section--services {
  background: #fff;
}

.section--services .section__intro {
  display: block;
  max-width: 820px;
  margin: 0 auto clamp(32px, 5vw, 58px);
  text-align: center;
}

.section--services .section__intro::after {
  display: none;
}

.section--services .section__intro > .eyebrow,
.section--services .section__intro > h2 {
  display: block;
}

.section--services .section__intro > h2 {
  max-width: 18ch;
  margin: 10px auto 0;
}

.section--services .service-grid {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.section--services .service-card {
  min-height: 0;
  grid-template-rows: auto 220px auto 1fr;
  padding: 18px 18px 24px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(35, 24, 22, 0.08);
  transition: none;
}

.section--services .service-card::before {
  display: none;
}

.section--services .service-card:hover,
.section--services .service-card:focus-visible,
.section--services .service-card:active {
  transform: none;
  border-color: rgba(23, 23, 23, 0.1);
  background: #fff;
  box-shadow: 0 16px 38px rgba(35, 24, 22, 0.08);
}

.section--services .service-card__image,
.section--services .service-card:hover .service-card__image {
  width: calc(100% + 36px);
  height: 220px;
  margin: 0 -18px;
  border-radius: 16px 16px 12px 12px;
  object-fit: cover;
  filter: none;
  transform: none;
  transition: none;
}

.section--services .service-card .service-icon {
  width: 38px;
  height: 38px;
  margin-top: 4px;
  box-shadow: none;
}

@media (max-width: 960px) {
  .section--services .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section--services .service-grid {
    grid-template-columns: 1fr;
  }

  .section--services .service-card,
  .section--services .service-card__image,
  .section--services .service-card:hover .service-card__image {
    height: auto;
  }

  .section--services .service-card {
    grid-template-rows: auto auto auto 1fr;
  }

  .section--services .service-card__image,
  .section--services .service-card:hover .service-card__image {
    height: 190px;
  }
}

/* Reference-led card treatment: quiet type, generous padding, static imagery. */
.section--services .service-card {
  position: relative;
  min-height: 508px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  padding: 28px 24px 24px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #263437;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(28, 31, 30, 0.15);
}

.section--services .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 15, 16, 0.02) 20%,
    rgba(8, 15, 16, 0.12) 42%,
    rgba(8, 15, 16, 0.78) 72%,
    rgba(8, 15, 16, 0.96) 100%
  );
}

.section--services .service-card__image,
.section--services .service-card:hover .service-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) brightness(0.88);
  transform: none;
  transition: none;
}

.section--services .service-card h3,
.section--services .service-card p,
.section--services .service-card__tags,
.section--services .service-card__cta {
  position: relative;
  z-index: 2;
}

.section--services .service-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section--services .service-card p {
  max-width: 32ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.42;
}

.section--services .service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.section--services .service-card__tags > span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.section--services .service-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  margin-top: 22px;
  border-radius: 999px;
  background: #fff;
  color: #151515;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
}

.section--services .service-card__cta > span {
  color: var(--ember);
  font-size: 1rem;
  font-weight: 900;
}

.section--services .service-card:hover,
.section--services .service-card:focus-visible,
.section--services .service-card:active {
  border: 0;
  background: #263437;
  box-shadow: 0 18px 40px rgba(28, 31, 30, 0.15);
}

@media (max-width: 760px) {
  .section--services .service-card {
    min-height: 480px;
  }
}

/* Carry the service-card system into the following statistics section. */
.stats-band {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(72px, 8vw, 112px) clamp(18px, 5vw, 72px);
  color: #1b1715;
  background: #f5f2ee;
}

.stats-band div {
  min-height: 224px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(35, 24, 22, 0.08);
}

.stats-band strong {
  color: #1b1715;
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.8vw, 5.4rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
  animation: none;
}

.stats-band span {
  max-width: 18ch;
  margin-top: 14px;
  color: #5f5752;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.stats-band__intro {
  grid-column: 1 / -1;
  display: grid;
  max-width: 720px;
  gap: 10px;
  padding-bottom: clamp(6px, 1vw, 14px);
}

.stats-band__intro p {
  margin: 0;
  color: #df3029;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.stats-band__intro h2 {
  max-width: 16ch;
  margin: 0;
  color: #1b1715;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.3vw, 3.45rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.stats-band__intro > span {
  max-width: 59ch;
  margin: 2px 0 0;
  color: #5f5752;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 500;
  line-height: 1.55;
}

.stats-band__link {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 0 18px;
  border: 1px solid rgba(223, 48, 41, 0.58);
  border-radius: 8px;
  color: #c72e28;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background-color 240ms ease, color 240ms ease;
}

.stats-band__link::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-band__link:hover,
.stats-band__link:focus-visible {
  color: #fff;
  background: #df3029;
  transform: translateY(-2px);
}

.stats-band__link:hover::after,
.stats-band__link:focus-visible::after { transform: translateX(3px); }

.stats-band__link:focus-visible { outline: 2px solid #1b1715; outline-offset: 3px; }

@media (max-width: 960px) {
  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .stats-band {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    min-height: 190px;
  }

  .stats-band__intro {
    gap: 9px;
  }
}

/* Homepage system: grid-led layouts, shared surfaces, measured type. */
body {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  overflow-x: hidden;
  background: #f5f2ee;
  color: #1b1715;
}

main {
  min-width: 0;
  counter-reset: none;
}

#footer-container {
  min-width: 0;
}

main > section:not(.hero) {
  border-top: 0;
}

.hero {
  min-height: 0;
  padding: clamp(142px, 12vw, 176px) clamp(18px, 4vw, 64px) 34px;
  background: #f5f2ee;
  clip-path: none;
}

.hero__track {
  width: min(1400px, calc(100% - 48px));
  min-height: clamp(560px, 62vw, 680px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(110deg, rgba(7, 20, 23, 0.96), rgba(7, 20, 23, 0.62) 54%, rgba(7, 20, 23, 0.24)),
    #263437;
  box-shadow: 0 24px 58px rgba(28, 31, 30, 0.16);
}

.hero__slide {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(28px, 5vw, 64px);
  transform: none;
}

.hero__slide.is-active {
  transform: none;
}

.hero__slide.is-active .eyebrow,
.hero__slide.is-active h1,
.hero__slide.is-active h2,
.hero__slide.is-active .hero__lede,
.hero__slide.is-active .hero__actions,
.hero__slide.is-active .hero__visual {
  animation: none;
}

.hero__content {
  max-width: 620px;
  padding: 0;
}

.hero h1,
.hero h2 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero__lede {
  max-width: 52ch;
  margin-top: 22px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.52;
}

.hero__actions {
  gap: 10px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  padding-inline: 22px;
  border-radius: 999px;
  letter-spacing: 0;
  transition: none;
}

.btn:hover,
.btn:active {
  transform: none;
}

.hero__visual {
  min-height: clamp(360px, 48vw, 540px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.hero__feature-bar {
  width: min(1240px, calc(100% - 48px));
  margin: 24px auto 0;
  padding: 14px;
  gap: 10px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(35, 24, 22, 0.08);
}

.hero__feature-bar div {
  min-height: 78px;
  padding: 16px;
  border-radius: 18px;
  background: #f5f2ee;
}

.partner-marquee {
  padding: 28px 0 26px;
  background: #fff;
  border-bottom: 0;
}

.partner-marquee__intro {
  margin-bottom: 14px;
  color: #6b625c;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.partner-card {
  width: 176px;
  height: 78px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(35, 24, 22, 0.06);
}

.section,
.contact-cta {
  padding: clamp(78px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section__intro {
  display: block;
  max-width: 780px;
  margin: 0 0 clamp(32px, 5vw, 58px);
}

.section__intro::after {
  display: none;
}

.section__intro > .eyebrow,
.section__intro > h2 {
  display: block;
}

.section__intro > h2 {
  max-width: 20ch;
  margin-top: 10px;
}

.section--services .section__intro {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section--services .section__intro > h2 {
  margin-inline: auto;
}

.proof-section {
  background: #f5f2ee;
}

.proof-grid {
  width: min(1400px, calc(100% - 48px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.proof-card {
  min-height: 214px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(35, 24, 22, 0.08);
}

.proof-card--text {
  background: #263437;
}

.proof-card--badge {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  align-items: start;
}

.proof-card--badge > strong,
.proof-card--badge > span {
  grid-column: auto;
}

.proof-card--badge .accreditation-mark {
  grid-row: auto;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
}

.proof-card img {
  height: 64px;
  max-width: 150px;
  margin-bottom: 12px;
}

.industries {
  background: #fff;
}

.industry-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.industry-row article,
.industry-row article:hover,
.industry-row article:focus-visible {
  min-height: 340px;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(35, 24, 22, 0.12);
  transform: none;
  transition: none;
}

.industry-row article:hover .industry__img {
  transform: none;
}

.contact-cta {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 92px);
  background: #263437;
  color: #fff;
}

.contact-cta h2 {
  max-width: 16ch;
  color: #fff;
  letter-spacing: -0.045em;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form,
.contact-form:hover {
  padding: clamp(24px, 3.4vw, 38px);
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.contact-form::before {
  display: none;
}

@media (max-width: 1040px) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 126px;
  }

  .hero__track {
    min-height: 760px;
    border-radius: 24px;
  }

  .hero__slide {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 28px;
    padding: 28px;
  }

  .hero__visual {
    min-height: 250px;
    order: -1;
  }

  .hero__content {
    order: 0;
  }

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

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

  .proof-grid,
  .industry-row {
    grid-template-columns: 1fr;
  }

  .industry-row article {
    min-height: 280px;
  }
}

/* Explicit carousel controls so slide changes are visible and understandable. */
.hero__controls {
  position: relative;
  inset: auto;
  width: min(1400px, calc(100% - 48px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(35, 24, 22, 0.06);
}

.hero__arrow,
.hero__pause {
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 999px;
  background: #f5f2ee;
  color: #1b1715;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 800;
}

.hero__arrow {
  width: 38px;
  height: 38px;
  padding: 0;
  font-size: 1.1rem;
}

.hero__pause {
  min-height: 34px;
  padding: 0 13px;
  color: #6b625c;
  font-size: 0.72rem;
}

.hero__arrow:hover,
.hero__pause:hover,
.hero__arrow:focus-visible,
.hero__pause:focus-visible {
  border-color: var(--ember);
  color: var(--ember);
  outline: none;
}

.hero__progress {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(132px, auto) minmax(90px, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.hero__progress-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.hero__progress-kicker {
  color: var(--ember);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__progress-label {
  overflow: hidden;
  color: #1b1715;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero__progress-track {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.12);
}

.hero__progress-track span {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: var(--ember);
  transition: width 220ms ease;
}

.hero__counter {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #6b625c;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero__counter strong {
  color: #1b1715;
  font-size: 1.2rem;
}

.hero__dot-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__dot {
  width: 26px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.18);
  cursor: pointer;
}

.hero__dot.is-active {
  background: var(--ember);
}

@media (max-width: 760px) {
  .hero__controls {
    width: min(100%, calc(100% - 36px));
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .hero__progress {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: minmax(110px, 1fr) auto;
  }

  .hero__progress-track {
    display: none;
  }

  .hero__arrow[data-slide-step="-1"] {
    grid-column: 1;
    grid-row: 2;
  }

  .hero__dot-group {
    grid-column: 2;
    grid-row: 2;
    justify-content: center;
  }

  .hero__arrow[data-slide-step="1"] {
    grid-column: 3;
    grid-row: 2;
  }

  .hero__pause {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
  }
}

/* Full-viewport hero with manual, named slide navigation. */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  padding: clamp(118px, 10vh, 150px) 0 28px;
  --hero-image: url("/images/hero-technician-v2.webp");
  background-color: #263437;
  background-image:
    linear-gradient(90deg, rgba(7, 20, 23, 0.98) 0%, rgba(7, 20, 23, 0.9) 34%, rgba(7, 20, 23, 0.62) 62%, rgba(7, 20, 23, 0.18) 100%),
    var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.hero__track {
  width: 100%;
  min-height: clamp(520px, calc(100dvh - 250px), 720px);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero__slide {
  width: min(1400px, 100%);
  margin-inline: auto;
  padding-inline: max(38px, calc((100% - 1400px) / 2 + 18px));
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  isolation: isolate;
  background: transparent;
}

.hero__slide::before {
  display: none;
}

.hero__feature-bar {
  width: min(1240px, calc(100% - 48px));
  margin-top: 22px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.hero__feature-bar div {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.hero__feature-bar strong {
  color: #fff;
}

.hero__feature-bar span {
  color: rgba(255, 255, 255, 0.68);
}

.hero > .partner-marquee {
  width: 100%;
  margin-top: 22px;
  padding: 0 0 4px;
  background: transparent;
  border: 0;
}

.hero > .partner-marquee .partner-marquee__intro {
  color: rgba(255, 255, 255, 0.66);
}

.hero > .partner-marquee .partner-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.hero__controls {
  width: min(1400px, calc(100% - 48px));
  grid-template-columns: auto minmax(0, 1fr) auto auto minmax(240px, auto);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.hero__arrow,
.hero__dot {
  color: rgba(255, 255, 255, 0.82);
}

 .hero__arrow {
  width: auto;
  min-width: 38px;
  height: 38px;
  padding-inline: 14px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.hero__arrow:hover,
.hero__arrow:focus-visible {
  border-color: var(--ember-hot);
  color: #fff;
  background: var(--ember);
}

.hero__progress-label,
.hero__counter strong {
  color: #fff;
}

.hero__counter {
  color: rgba(255, 255, 255, 0.62);
}

.hero__dot-group {
  flex-wrap: wrap;
}

.hero__dot {
  width: auto;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.hero__dot:hover,
.hero__dot:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  outline: none;
}

.hero__dot.is-active {
  border-color: var(--ember);
  background: var(--ember);
  color: #fff;
}

@media (min-width: 1101px) {
  .hero__controls {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    grid-template-areas: "previous progress dots next";
  }

  .hero__arrow[data-slide-step="-1"] {
    grid-area: previous;
  }

  .hero__progress {
    grid-area: progress;
  }

  .hero__dot-group {
    grid-area: dots;
  }

  .hero__arrow[data-slide-step="1"] {
    grid-area: next;
  }
}

@media (max-width: 1100px) and (min-width: 761px) {
  .hero__controls {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .hero__progress {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero__arrow[data-slide-step="-1"] {
    grid-column: 1;
    grid-row: 2;
  }

  .hero__dot-group {
    grid-column: 2;
    grid-row: 2;
    justify-content: center;
  }

  .hero__arrow[data-slide-step="1"] {
    grid-column: 3;
    grid-row: 2;
  }

}

@media (max-width: 760px) {
  .hero {
    min-height: 100dvh;
    padding-top: 112px;
    background-image:
      linear-gradient(180deg, rgba(7, 20, 23, 0.46) 0%, rgba(7, 20, 23, 0.74) 48%, rgba(7, 20, 23, 0.97) 100%),
      var(--hero-image);
    background-position: 62% center;
  }

  .hero__track {
    min-height: calc(100dvh - 284px);
  }

  .hero__slide {
    background: transparent;
  }

  .hero__slide,
  .hero__content,
  .hero__visual {
    min-width: 0;
  }

  .hero__slide,
  .hero__content,
  .hero__lede {
    width: 100%;
    max-width: 100%;
  }

  .hero__slide {
    padding-inline: 28px;
  }

  .hero .eyebrow {
    max-width: 30ch;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero__feature-bar {
    width: min(100%, calc(100% - 36px));
  }

  .hero__controls {
    width: min(100%, calc(100% - 36px));
    grid-template-columns: auto 1fr auto;
    min-width: 0;
    overflow: hidden;
  }

  .hero__controls > *,
  .hero__dot-group {
    min-width: 0;
  }

  .hero__arrow {
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .hero__dot {
    padding-inline: 8px;
    font-size: 0.66rem;
  }

  .hero__progress {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero__arrow[data-slide-step="-1"] {
    grid-column: 1;
    grid-row: 2;
  }

  .hero__dot-group {
    grid-column: 2;
    grid-row: 2;
    justify-content: center;
  }

  .hero__arrow[data-slide-step="1"] {
    grid-column: 3;
    grid-row: 2;
  }

}

body#top:not(.is-scrolled) .site-header {
  background: linear-gradient(180deg, rgba(7, 20, 23, 0.8), rgba(7, 20, 23, 0));
}

body#top:not(.is-scrolled) .nav {
  background: rgba(7, 20, 23, 0.84);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

body#top:not(.is-scrolled) .brand {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

body#top:not(.is-scrolled) .nav__links a,
body#top:not(.is-scrolled) .nav__dropdown-toggle {
  color: rgba(255, 255, 255, 0.86);
}

body#top:not(.is-scrolled) .nav__links a:hover,
body#top:not(.is-scrolled) .nav__links a:focus-visible,
body#top:not(.is-scrolled) .nav__dropdown-toggle:hover,
body#top:not(.is-scrolled) .nav__dropdown-toggle:focus-visible,
body#top:not(.is-scrolled) .nav__dropdown.is-open .nav__dropdown-toggle {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

body#top:not(.is-scrolled) .nav__toggle {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

body#top:not(.is-scrolled) .nav__toggle span {
  background: #fff;
}

@media (min-width: 761px) {
  .site-header {
    padding-inline: 0;
  }

  .site-header .top-bar,
  .site-header .nav,
  .hero__controls {
    width: min(1400px, calc(100% - 48px));
  }

  .hero__slide {
    width: min(1400px, calc(100% - 48px));
    padding-inline: 0;
    justify-content: start;
    justify-items: start;
  }

  .hero__content {
    width: min(620px, 100%);
    max-width: 620px;
    margin-inline: 0;
    justify-self: start;
  }
}

/* Reference-led Firecon hero system. */
:root {
  --font-heading: "Manrope", sans-serif;
  --font-body: "Manrope", sans-serif;
  --hero-gutter: clamp(28px, 6vw, 102px);
}

body {
  font-family: var(--font-body);
}

body#top .site-header,
body#top:not(.is-scrolled) .site-header {
  position: absolute;
  min-height: 0;
  padding: 0;
  background: rgba(3, 10, 18, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

body#top .top-bar {
  width: 100%;
  min-height: 51px;
  padding: 0 var(--hero-gutter);
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 600;
}

body#top .top-bar > span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

body#top .top-bar > span::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

body#top .top-bar a {
  color: rgba(255, 255, 255, 0.82);
}

body#top .top-bar__links {
  gap: 0;
}

body#top .top-bar__links a + a {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

body#top .nav {
  width: 100%;
  min-height: 98px;
  padding: 0 var(--hero-gutter);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body#top .brand {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

body#top .brand__logo {
  width: clamp(158px, 13vw, 206px);
  max-width: none;
  max-height: 70px;
  filter: none;
}

body#top .nav__links {
  gap: clamp(18px, 2.7vw, 48px);
}

body#top .nav__links a,
body#top .nav__dropdown-toggle {
  min-height: auto;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.96);
  border-radius: 0;
  background: transparent;
  font-size: 0.94rem;
  font-weight: 600;
}

body#top .nav__links a::after {
  bottom: -8px;
  background: #f34032;
}

body#top .nav__links a:hover,
body#top .nav__links a:focus-visible,
body#top .nav__dropdown-toggle:hover,
body#top .nav__dropdown-toggle:focus-visible,
body#top .nav__dropdown.is-open .nav__dropdown-toggle {
  color: #fff;
  background: transparent;
}

body#top .nav__cta {
  min-height: 60px;
  margin-left: 6px;
  padding: 0 26px !important;
  border-radius: 7px !important;
  background: linear-gradient(135deg, #ff563b, #e72322) !important;
  box-shadow: none;
}

body#top .nav__cta::after {
  display: none;
}

body#top .hero {
  min-height: 100dvh;
  padding: 149px 0 0;
  grid-template-rows: minmax(0, 1fr) auto auto;
  background-color: #020b14;
  background-image:
    linear-gradient(90deg, rgba(2, 10, 19, 0.98) 0%, rgba(2, 10, 19, 0.91) 30%, rgba(2, 10, 19, 0.58) 58%, rgba(2, 10, 19, 0.15) 100%),
    linear-gradient(180deg, rgba(2, 10, 19, 0.04), rgba(2, 10, 19, 0.56)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

body#top .hero::before,
body#top .hero::after {
  display: none;
}

body#top .hero__track {
  width: 100%;
  min-height: clamp(560px, calc(100dvh - 300px), 740px);
  transform: none !important;
}

body#top .hero__slide {
  width: 100%;
  padding: 0 var(--hero-gutter) 140px;
  margin: 0;
  align-items: center;
  justify-items: start;
}

body#top .hero__content {
  width: min(660px, 100%);
  max-width: 660px;
  margin: 0;
  padding: 0;
  justify-self: start;
}

body#top .hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  color: #ff4a39;
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.18em;
}

body#top .hero .eyebrow::before {
  content: "";
  flex: 0 0 38px;
  height: 2px;
  background: currentColor;
}

body#top .hero h1,
body#top .hero h2 {
  max-width: 10.4ch;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 4.35vw, 4.6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

body#top .hero h1::after {
  content: ".";
  color: #f33d32;
}

body#top .hero__lede {
  max-width: 47ch;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 500;
  line-height: 1.52;
}

body#top .hero__actions {
  gap: 14px;
  margin-top: 26px;
}

body#top .hero .btn {
  min-height: 53px;
  padding: 0 25px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

body#top .hero .btn::after {
  content: "→";
  margin-left: 26px;
  font-size: 1.15rem;
  line-height: 1;
}

body#top .hero .btn--primary {
  background: linear-gradient(135deg, #ff5438, #e52222);
  box-shadow: none;
}

body#top .hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(4, 11, 19, 0.28);
}

body#top .hero__bottom-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 48px);
  width: 100%;
  margin: -78px 0 32px;
  padding: 0 var(--hero-gutter);
}

body#top .hero__controls {
  display: block;
  width: fit-content;
  max-width: calc(100% - (var(--hero-gutter) * 2));
  margin: 0;
  flex: 0 0 auto;
  padding: 0;
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(5, 13, 24, 0.82);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

body#top .hero__arrow,
body#top .hero__progress {
  display: none;
}

body#top .hero__dot-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
}

body#top .hero__dot {
  min-height: 54px;
  padding: 0 clamp(16px, 1.8vw, 28px);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

body#top .hero__dot + .hero__dot {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

body#top .hero__dot.is-active {
  position: relative;
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: #fff;
}

body#top .hero__dot.is-active::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 2px;
  background: #f13a31;
}

/* Hero accreditation strip: original organisation marks, sized to the focus-control alignment. */
body#top .hero__accreditations {
  width: min(674px, 100%);
  margin: 0;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 9px;
  background: rgba(4, 15, 25, 0.76);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  flex: 0 1 674px;
  min-width: 0;
  justify-self: end;
}

body#top .hero__accreditations > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.035em;
}

body#top .hero__accreditations-viewport {
  min-width: 0;
  overflow: hidden;
}

body#top .hero__accreditations-track {
  display: flex;
  width: max-content;
  animation: hero-accreditation-loop 32s linear infinite;
  will-change: transform;
}

body#top .hero__accreditation-set {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
  padding-right: 9px;
}

body#top .hero__accreditation-mark {
  width: 82px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.62);
}

body#top .hero__accreditation-mark img {
  width: 72%;
  height: 72%;
  display: block;
  object-fit: contain;
}

body#top .hero__accreditation-mark--bbbee {
  align-content: center;
  gap: 1px;
  padding: 4px;
  color: #17242b;
  font-family: var(--font-heading);
  line-height: 1;
  text-align: center;
}

body#top .hero__accreditation-mark--bbbee b {
  font-size: 0.67rem;
  letter-spacing: -0.03em;
}

body#top .hero__accreditation-mark--bbbee small {
  color: #d73c32;
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

body#top .hero__accreditations:hover .hero__accreditations-track,
body#top .hero__accreditations:focus-within .hero__accreditations-track {
  animation-play-state: paused;
}

@keyframes hero-accreditation-loop {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  body#top .hero__accreditations-track {
    animation: none;
  }
}

body#top .hero + .partner-marquee {
  margin: 0;
  padding: 18px 0;
  background: #f5f2ee;
  border-top: 1px solid rgba(20, 29, 31, 0.1);
  border-bottom: 1px solid rgba(20, 29, 31, 0.08);
}

body#top .hero + .partner-marquee .partner-marquee__intro {
  display: block;
  margin-bottom: 12px;
  color: #394244;
  text-align: center;
}

body#top .hero + .partner-marquee .partner-card {
  width: 150px;
  height: 64px;
  border-color: rgba(20, 29, 31, 0.12);
  border-radius: 5px;
  box-shadow: none;
}

body#top .section h2,
body#top .contact-cta h2,
body#top .page-hero h1 {
  font-size: clamp(1.9rem, 3.15vw, 3.45rem);
  line-height: 1.03;
}

@media (max-width: 760px) {
  :root {
    --hero-gutter: 24px;
  }

  body#top .site-header {
    position: absolute;
  }

  body#top .top-bar {
    display: none;
  }

  body#top .nav {
    min-height: 82px;
    padding: 0 var(--hero-gutter);
  }

  body#top .brand__logo {
    width: 144px;
    max-height: 50px;
  }

  body#top .nav__toggle {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }

  body#top .hero {
    min-height: 100dvh;
    padding-top: 82px;
    background-image:
      linear-gradient(180deg, rgba(2, 10, 19, 0.3), rgba(2, 10, 19, 0.85) 58%, rgba(2, 10, 19, 0.98)),
      var(--hero-image);
    background-position: 60% center;
  }

  body#top .hero__track {
    min-height: 610px;
  }

  body#top .hero__slide {
    padding: 56px var(--hero-gutter) 126px;
    align-items: end;
  }

  body#top .hero h1,
  body#top .hero h2 {
    max-width: 10.5ch;
    font-size: clamp(2.45rem, 10vw, 3.15rem);
  }

  body#top .hero .eyebrow {
    gap: 11px;
    font-size: 0.64rem;
  }

  body#top .hero .eyebrow::before {
    flex-basis: 24px;
  }

  body#top .hero__lede {
    font-size: 0.96rem;
  }

  body#top .hero__actions {
    gap: 10px;
  }

  body#top .hero .btn {
    min-height: 50px;
    padding: 0 17px;
    font-size: 0.78rem;
  }

  body#top .hero .btn::after {
    margin-left: 12px;
  }

  body#top .hero__controls {
    width: calc(100% - (var(--hero-gutter) * 2));
    max-width: none;
    margin: -54px var(--hero-gutter) 20px;
  }

  body#top .hero__bottom-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: -54px 0 24px;
    padding: 0 var(--hero-gutter);
  }

  body#top .hero__bottom-row .hero__controls {
    width: 100%;
    margin: 0 0 14px;
  }

  body#top .hero__accreditations {
    width: 100%;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  body#top .hero__accreditations > p {
    font-size: 0.68rem;
  }

  body#top .hero__dot-group {
    flex-wrap: wrap;
  }

  body#top .hero__dot {
    flex: 1 1 50%;
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.73rem;
  }

  body#top .hero__dot:nth-child(3) {
    flex-basis: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  body#top .hero + .partner-marquee {
    padding-block: 12px;
  }

  html,
  body#top {
    overflow-x: clip;
  }

  body#top .hero__track,
  body#top .hero__slide {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body#top .hero__content {
    width: calc(100vw - (var(--hero-gutter) * 2));
    max-width: calc(100vw - (var(--hero-gutter) * 2));
    min-width: 0;
  }

  body#top .hero__slide {
    grid-template-columns: minmax(0, 1fr);
  }

  body#top .hero h1,
  body#top .hero h2 {
    width: calc(100vw - (var(--hero-gutter) * 2));
    max-width: calc(100vw - (var(--hero-gutter) * 2));
    font-size: clamp(2.4rem, 9vw, 3.05rem);
    overflow-wrap: normal;
  }

  body#top .hero__lede {
    width: calc(100vw - (var(--hero-gutter) * 2));
    max-width: calc(100vw - (var(--hero-gutter) * 2));
    overflow-wrap: normal;
  }

  body#top .hero__actions {
    display: flex;
    flex-wrap: wrap;
    width: calc(100vw - (var(--hero-gutter) * 2));
    max-width: calc(100vw - (var(--hero-gutter) * 2));
  }

  body#top .hero .btn {
    flex: 0 0 calc((100vw - (var(--hero-gutter) * 2) - 10px) / 2);
    width: calc((100vw - (var(--hero-gutter) * 2) - 10px) / 2);
    min-width: 0;
    padding-inline: 12px;
  }

  body#top .hero__controls {
    width: calc(100vw - (var(--hero-gutter) * 2));
    max-width: calc(100vw - (var(--hero-gutter) * 2));
  }

  body#top .hero__dot:nth-child(-n + 2) {
    flex: 0 0 calc((100vw - (var(--hero-gutter) * 2)) / 2);
    width: calc((100vw - (var(--hero-gutter) * 2)) / 2);
    max-width: calc((100vw - (var(--hero-gutter) * 2)) / 2);
  }

  body#top .hero__dot:nth-child(3) {
    flex: 0 0 calc(100vw - (var(--hero-gutter) * 2));
    width: calc(100vw - (var(--hero-gutter) * 2));
    max-width: calc(100vw - (var(--hero-gutter) * 2));
  }
}

/* Services gallery: compact, image-led horizontal rail. */
html,
body#top {
  overflow-x: clip;
}

body#top .section--services {
  --service-stage-height: clamp(500px, 35vw, 580px);
  display: grid;
  grid-template-columns: minmax(210px, 0.76fr) minmax(0, 3.25fr);
  column-gap: clamp(30px, 4.5vw, 74px);
  row-gap: 32px;
  padding: clamp(64px, 7vw, 108px) var(--hero-gutter) 32px;
  min-height: 100svh;
  align-content: center;
  overflow: hidden;
  color: #f7f9fa;
  background:
    radial-gradient(circle at 74% 8%, rgba(201, 48, 38, 0.12), transparent 27%),
    linear-gradient(125deg, #020c16 0%, #061522 58%, #020b14 100%);
}

body#top .section--services,
body#top .section--services * {
  text-align: left;
}

body#top .section--services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 112px 100%;
  opacity: 0.26;
}

body#top .service-gallery__intro {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: var(--service-stage-height);
  margin: 0;
}

body#top .service-gallery__intro::after {
  display: none;
}

body#top .service-gallery__intro > .eyebrow,
body#top .service-gallery__intro > h2 {
  display: block;
}

body#top .service-gallery__intro .eyebrow {
  margin-bottom: 12px;
  color: #ff4438;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

body#top .service-gallery__intro h2 {
  max-width: 10ch;
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 2.65vw, 3rem);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

body#top .service-gallery__summary {
  max-width: 27ch;
  margin: 14px 0 24px;
  color: rgba(242, 246, 248, 0.7);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

body#top .service-gallery__viewport {
  z-index: 1;
  min-width: 0;
  padding: 6px 2px 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
}

body#top .service-gallery__viewport::-webkit-scrollbar {
  display: none;
}

body#top .section--services .service-grid {
  display: flex;
  width: max-content;
  grid-template-columns: none;
  gap: 7px;
}

body#top .section--services .service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 0 clamp(274px, 19vw, 336px);
  width: clamp(274px, 19vw, 336px);
  min-height: var(--service-stage-height);
  padding: clamp(24px, 2vw, 30px);
  overflow: hidden;
  grid-template-rows: none;
  scroll-snap-align: start;
  border: 1px solid rgba(189, 211, 221, 0.22);
  border-radius: 8px;
  background: rgba(4, 16, 27, 0.82);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
  transition: border-color 240ms ease, background 240ms ease, transform 240ms ease;
}

body#top .section--services .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background:
    linear-gradient(180deg, rgba(2, 11, 20, 0.38) 0%, rgba(2, 11, 20, 0.74) 50%, rgba(2, 11, 20, 0.99) 100%),
    linear-gradient(90deg, rgba(2, 11, 20, 0.42), transparent 72%);
  pointer-events: none;
}

body#top .section--services .service-card:hover,
body#top .section--services .service-card:focus-visible {
  border-color: rgba(255, 68, 56, 0.78);
  background: #071a29;
  outline: 0;
  transform: translateY(-3px);
}

body#top .section--services .service-card.is-active {
  border-color: rgba(255, 68, 56, 0.72);
}

body#top .section--services .service-card::before {
  content: "↗";
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid #ff4438;
  border-radius: 4px;
  color: #ff4438;
  background: #06121e;
  font-size: 0.83rem;
  font-weight: 800;
}

body#top .section--services .service-card__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), filter 240ms ease;
}

body#top .section--services .service-card:hover .service-card__image,
body#top .section--services .service-card:focus-visible .service-card__image {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.035);
}

body#top .section--services .service-card:hover::before,
body#top .section--services .service-card:focus-visible::before {
  box-shadow: 0 0 0 4px rgba(255, 68, 56, 0.15), 0 0 18px rgba(255, 68, 56, 0.28);
}

body#top .section--services .service-card:hover::after,
body#top .section--services .service-card:focus-visible::after {
  background: linear-gradient(180deg, rgba(2, 11, 20, 0.32) 0%, rgba(2, 11, 20, 0.66) 50%, rgba(2, 11, 20, 0.96) 100%);
}

body#top .section--services .service-card h3 {
  position: relative;
  z-index: 2;
  min-height: 2.1em;
  margin: auto 0 14px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.14rem, 1.35vw, 1.42rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
}

body#top .section--services .service-card p {
  position: relative;
  z-index: 2;
  min-height: 6.1em;
  margin: 0;
  color: rgba(249, 252, 253, 0.9);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.48;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.48);
}

body#top .section--services .service-card__tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 30px;
  margin-top: 18px;
}

body#top .section--services .service-card__tags span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 68, 56, 0.38);
  border-radius: 5px;
  color: #f3f5f6;
  background: rgba(255, 68, 56, 0.08);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}

body#top .section--services .service-card__cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
  min-height: 0;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(189, 211, 221, 0.18);
  border-radius: 0;
  color: #fff;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 800;
}

body#top .section--services .service-card__cta > span {
  display: inline-block;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

body#top .section--services .service-card:hover .service-card__cta > span,
body#top .section--services .service-card:focus-visible .service-card__cta > span {
  transform: translate(3px, -3px);
}

body#top .service-gallery__footer {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(240px, 420px) auto;
  grid-template-rows: auto;
  align-items: center;
  justify-content: end;
  column-gap: 14px;
  min-height: 38px;
  padding: 0;
  border: 0;
}

body#top .service-gallery__footer::before {
  display: none;
}

body#top .service-gallery__progress {
  grid-column: 1;
  grid-row: 1;
  height: 4px;
  overflow: hidden;
  background: rgba(173, 198, 209, 0.22);
}

body#top .service-gallery__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: #ff4438;
  will-change: transform;
}

body#top .service-gallery__position {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

body#top .service-gallery__position strong {
  color: #ff4438;
  font-size: 0.92rem;
}

body#top .service-gallery__position span {
  margin: 0;
  color: rgba(239, 245, 247, 0.58);
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  body#top .section--services {
    --service-stage-height: clamp(470px, 64vw, 540px);
    grid-template-columns: 1fr;
    row-gap: 26px;
  }

  body#top .service-gallery__intro h2,
  body#top .service-gallery__summary {
    max-width: 29ch;
  }

  body#top .service-gallery__footer {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  body#top .section--services {
    --service-stage-height: 460px;
    padding: 56px var(--hero-gutter) 26px;
  }

  body#top .section--services::before {
    background-size: 72px 100%;
  }

  body#top .section--services .service-card {
    flex-basis: min(82vw, 340px);
    width: min(82vw, 340px);
    padding: 20px;
  }

  body#top .section--services .service-card::before {
    top: 20px;
    left: 20px;
  }

  body#top .service-gallery__footer {
    row-gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 981px) {
  body#top .services-horizontal.is-scroll-driven {
    min-height: calc(100svh + var(--service-scroll-distance, 0px));
    align-content: start;
    overflow: visible;
  }

  body#top .services-horizontal.is-scroll-driven .service-gallery__intro,
  body#top .services-horizontal.is-scroll-driven .service-gallery__viewport {
    position: sticky;
    top: 0;
    align-self: start;
  }

  body#top .services-horizontal.is-scroll-driven .service-gallery__viewport {
    overflow: hidden;
    scroll-snap-type: none;
  }

  body#top .services-horizontal.is-scroll-driven .service-gallery__footer {
    position: sticky;
    top: calc(100svh - 82px);
    z-index: 4;
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: end;
    width: 100%;
    min-height: 50px;
    padding: 18px 0 0;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 20px;
    background: linear-gradient(90deg, rgba(2, 12, 22, 0.94), rgba(2, 12, 22, 0.46) 62%, rgba(2, 12, 22, 0.94));
  }

  body#top .services-horizontal.is-scroll-driven .service-gallery__progress {
    width: 100%;
    height: 3px;
  }

  body#top .services-horizontal.is-scroll-driven .service-gallery__position {
    min-width: max-content;
    padding-right: 2px;
  }

  body#top .services-horizontal.is-scroll-driven .services-track {
    will-change: transform;
  }
}

/* About page: light editorial content with a charcoal Firecon hero. */
body#top.about-page {
  color: #17242b;
  background: #f5f6f5;
}

body#top.about-page .site-header {
  position: absolute;
  z-index: 10;
  background: rgba(3, 15, 25, 0.88);
  border-bottom: 1px solid rgba(240, 244, 244, 0.13);
  backdrop-filter: blur(16px);
}

body#top.about-page .top-bar {
  color: rgba(247, 247, 243, 0.82);
  background: transparent;
  border-color: rgba(240, 244, 244, 0.13);
}

body#top.about-page .top-bar__links a + a {
  border-color: rgba(240, 244, 244, 0.18);
}

body#top.about-page .nav__links a,
body#top.about-page .nav__dropdown-toggle {
  color: #f7f7f3;
}

body#top.about-page .nav__cta {
  color: #fff !important;
}

body#top.about-page .nav__toggle {
  color: #f7f7f3;
  border-color: rgba(240, 244, 244, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 178px var(--hero-gutter) 28px;
  background:
    radial-gradient(circle at 8% 18%, rgba(227, 50, 43, 0.17), transparent 29%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px) 0 0 / 112px 112px,
    linear-gradient(45deg, transparent 0 49%, rgba(229, 45, 39, 0.06) 49% 50%, transparent 50%) 0 0 / 180px 180px,
    linear-gradient(118deg, #08131c 0%, #142127 52%, #0c161a 100%);
}

.about-hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -38%;
  width: min(68vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(226, 47, 40, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.about-hero__grid,
.about-benefits,
.about-performance,
.about-story,
.about-details {
  width: min(1400px, 100%);
  margin-inline: auto;
}

.about-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(38px, 5vw, 82px);
}

.about-hero__copy {
  padding: 26px 0;
}

.about-hero__eyebrow,
.about-page .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: #e32925;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-hero__eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.about-hero h1 {
  max-width: 9.6ch;
  margin: 0;
  color: #f8f7f3;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.25vw, 4.7rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.068em;
}

.about-hero h1 span {
  color: #e32925;
}

.about-hero__lede {
  max-width: 41ch;
  margin: 28px 0 0;
  color: rgba(244, 246, 244, 0.83);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 500;
  line-height: 1.56;
}

.about-hero__proof {
  max-width: 590px;
  min-height: 132px;
  margin-top: 32px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(240, 244, 244, 0.15);
  border-left-color: rgba(237, 56, 47, 0.8);
  border-radius: 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 48%),
    rgba(5, 17, 25, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 40px rgba(0, 7, 12, 0.3);
}

.about-hero__proof svg {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  fill: none;
  stroke: #f04438;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-hero__proof strong,
.about-hero__proof span {
  display: block;
}

.about-hero__proof strong {
  margin-bottom: 7px;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.about-hero__proof span {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.48;
}

.about-hero__actions {
  margin-top: 22px;
}

.about-hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 7px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, #ff5438, #e52222);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 240ms ease;
}

.about-hero__actions a:hover,
.about-hero__actions a:focus-visible {
  box-shadow: 0 12px 26px rgba(221, 48, 41, 0.26);
  transform: translateY(-2px);
}

.about-hero__actions a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.about-hero__image {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(238, 242, 242, 0.13);
  background: #142027;
  box-shadow: 0 24px 56px rgba(0, 7, 12, 0.42);
}

.about-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 64%, rgba(226, 47, 40, 0.46));
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}

.about-highlights {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(44px, 5vw, 72px) 0 clamp(64px, 8vw, 112px);
  background:
    radial-gradient(circle at 90% 54%, rgba(227, 50, 43, 0.13), transparent 27%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px) 0 0 / 128px 128px,
    linear-gradient(118deg, #08131c 0%, #142127 52%, #0b151a 100%);
}

.about-highlights::after {
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -60%;
  width: min(48vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(229, 55, 47, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.about-highlights__intro {
  width: min(100%, 660px);
  margin: 0 0 clamp(28px, 3.2vw, 44px);
  color: #f7f7f3;
}

.about-highlights__intro p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 15px;
  color: #f04438;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-highlights__intro p::after {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.about-highlights__intro h2 {
  max-width: 17ch;
  margin: 0;
  color: #f7f7f3;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 3.15rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.06em;
}

.about-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.25vw, 20px);
  margin-top: 0;
  padding: 0;
}

.about-benefits article {
  min-height: 236px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(0, 7, 12, 0.2);
}

.about-benefits__icon {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #e32925;
  background: rgba(226, 47, 40, 0.08);
}

.about-benefits__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-benefits h2 {
  margin: 0;
  color: #17242b;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.about-benefits h2::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  margin: 13px auto 12px;
  background: #e32925;
}

.about-benefits p {
  margin: 0;
  color: #536269;
  font-size: 0.94rem;
  line-height: 1.48;
}

.about-performance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 310px);
  margin-top: clamp(22px, 2.4vw, 34px);
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(118deg, #0c1921, #111e25);
}

.about-performance__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  padding: 26px 18px;
}

.about-performance__metrics div {
  min-height: 58px;
  padding: 0 clamp(14px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.about-performance__metrics div:last-child {
  border-right: 0;
}

.about-performance__metrics strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.about-performance__metrics span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  line-height: 1.25;
}

.about-performance__cta {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #ed3b31, #c9201c);
}

.about-performance__cta span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about-performance__cta small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
}

.about-performance__cta b {
  min-height: 40px;
  margin-top: 16px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  color: #d42722;
  background: #fff;
  font-size: 0.73rem;
}

.about-performance__cta i {
  font-size: 1rem;
  font-style: normal;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(46px, 5.5vw, 88px);
  padding: clamp(72px, 8vw, 116px) 0 clamp(78px, 9vw, 128px);
}

.about-story__heading {
  max-width: 29rem;
  padding-top: 5px;
}

.about-story__heading h2 {
  max-width: 13ch;
}

.about-story__heading h2,
.about-details h2 {
  margin: 0;
  color: #17242b;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.3vw, 3.35rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.about-story__copy {
  display: grid;
  width: min(100%, 59ch);
  justify-self: start;
  gap: 26px;
  padding-left: clamp(22px, 3vw, 46px);
  border-left: 1px solid rgba(23, 36, 43, 0.2);
}

.about-story__copy p,
.about-details article > p:last-child {
  margin: 0;
  color: #4d5c62;
  font-size: clamp(0.98rem, 1.06vw, 1.06rem);
  line-height: 1.68;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: clamp(70px, 10vw, 132px);
  border: 1px solid rgba(23, 36, 43, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(23, 36, 43, 0.1);
}

.about-details article {
  padding: clamp(28px, 3vw, 42px);
  background: #fff;
}

.about-details .eyebrow {
  margin-bottom: 16px;
  font-size: 0.66rem;
}

.about-details h2 {
  min-height: 2.1em;
  margin-bottom: 20px;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
}

@media (max-width: 1080px) {
  .about-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 34px;
  }

  .about-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-performance {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body#top.about-page .site-header {
    background: rgba(3, 15, 25, 0.96);
  }

  .about-hero {
    padding-top: 124px;
  }

  .about-hero__grid,
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-hero__copy {
    padding-top: 18px;
  }

  .about-hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.55rem);
  }

  .about-hero__proof {
    min-height: 0;
    padding: 22px;
  }

  .about-hero__image {
    min-height: min(104vw, 460px);
  }

  .about-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-benefits article {
    min-height: 0;
  }

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

  .about-performance__metrics div:nth-child(2) {
    border-right: 0;
  }

  .about-performance__cta {
    padding: 24px;
  }

  .about-story,
  .about-details {
    width: calc(100% - (var(--hero-gutter) * 2));
  }

  .about-story {
    gap: 32px;
    padding: 62px 0 74px;
  }

  .about-story__heading {
    max-width: 26rem;
    padding-top: 0;
  }

  .about-story__copy {
    gap: 20px;
    padding-left: 18px;
  }

  .about-details {
    grid-template-columns: 1fr;
  }

  .about-details h2 {
    min-height: 0;
  }
}

/* Footer — contained call-to-action and service directory */
#footer-container {
  overflow: clip;
  background: #020f1b;
}

.footer-v2 {
  position: relative;
  isolation: isolate;
  padding: clamp(48px, 6vw, 88px) var(--hero-gutter) 0;
  overflow: hidden;
  color: #f7f6f2;
  background:
    radial-gradient(circle at 7% 4%, rgba(210, 35, 30, 0.17), transparent 27%),
    linear-gradient(120deg, #020f1b 0%, #031321 54%, #04101a 100%);
}

.footer-v2::before,
.footer-v2::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.footer-v2::before {
  width: min(34vw, 520px);
  aspect-ratio: 1;
  right: max(-11vw, -180px);
  top: 33%;
  border: 1px solid rgba(224, 42, 36, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(224, 42, 36, 0.025),
    0 0 0 92px rgba(224, 42, 36, 0.018);
}

.footer-v2::after {
  width: min(30vw, 460px);
  height: 1px;
  right: -3%;
  top: 58%;
  background: rgba(224, 42, 36, 0.24);
  box-shadow: 0 -48px 0 rgba(224, 42, 36, 0.11), 0 48px 0 rgba(224, 42, 36, 0.11);
}

.footer-v2__inner {
  width: min(1400px, 100%);
  margin: 0 auto;
}

.footer-v2__cta {
  display: grid;
  grid-template-columns: auto minmax(300px, 1.28fr) minmax(245px, 0.78fr) auto;
  align-items: center;
  gap: clamp(20px, 2.8vw, 42px);
  min-height: 202px;
  padding: clamp(28px, 3.25vw, 48px);
  border: 1px solid rgba(222, 230, 234, 0.2);
  border-top-color: rgba(236, 49, 42, 0.85);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(3, 18, 31, 0.96) 0%, rgba(3, 18, 31, 0.92) 63%, rgba(9, 20, 29, 0.72) 100%),
    linear-gradient(135deg, #081d2d, #06111b);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 52px rgba(0, 6, 14, 0.22);
}

.footer-v2__cta-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #ef372e;
  border: 1px solid rgba(239, 55, 46, 0.35);
  border-radius: 50%;
  background: rgba(239, 55, 46, 0.055);
}

.footer-v2__cta-mark .footer-v2__icon {
  width: 31px;
  height: 31px;
}

.footer-v2__cta h2 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.055em;
  color: #f8f7f3;
}

.footer-v2__cta > p {
  max-width: 36ch;
  margin: 0;
  padding-left: clamp(20px, 2.4vw, 40px);
  border-left: 1px solid rgba(229, 235, 238, 0.26);
  color: rgba(239, 243, 244, 0.78);
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.65;
}

.footer-v2__cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-v2__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background-color 280ms ease, border-color 280ms ease;
}

.footer-v2__button--primary {
  background: #e7332b;
  box-shadow: 0 12px 25px rgba(196, 34, 28, 0.25);
}

.footer-v2__button--secondary {
  border-color: rgba(247, 246, 242, 0.58);
  background: rgba(4, 17, 29, 0.3);
}

.footer-v2__button:hover,
.footer-v2__button:focus-visible {
  transform: translateY(-2px);
}

.footer-v2__button--primary:hover,
.footer-v2__button--primary:focus-visible {
  background: #f03a31;
}

.footer-v2__button--secondary:hover,
.footer-v2__button--secondary:focus-visible {
  border-color: #ef372e;
  background: rgba(239, 55, 46, 0.12);
}

.footer-v2__button-icon,
.footer-v2__top-arrow {
  width: 17px;
  height: 17px;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-v2__button:hover .footer-v2__button-icon,
.footer-v2__top-link:hover .footer-v2__top-arrow {
  transform: translateX(3px);
}

.footer-v2__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(145px, 0.62fr) minmax(210px, 0.92fr) minmax(235px, 0.92fr);
  gap: clamp(28px, 5.2vw, 82px);
  padding: clamp(54px, 7vw, 94px) clamp(0px, 1.8vw, 28px) clamp(42px, 5.5vw, 74px);
}

.footer-v2__brand p {
  max-width: 33ch;
  margin: 23px 0 22px;
  color: rgba(238, 242, 243, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-v2__brand-mark {
  display: inline-flex;
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-v2__brand-mark:hover {
  transform: translateY(-2px);
}

.footer-v2__logo {
  display: block;
  width: min(205px, 100%);
  height: auto;
}

.footer-v2__credentials {
  display: grid;
  gap: 8px;
}

.footer-v2__credentials > div {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 13px;
  padding: 10px 13px;
  border: 1px solid rgba(219, 229, 234, 0.14);
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.footer-v2__credentials .footer-v2__icon {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  color: #ed382f;
}

.footer-v2__credentials span {
  display: grid;
  color: rgba(239, 242, 243, 0.69);
  font-size: 0.78rem;
  line-height: 1.24;
}

.footer-v2__credentials strong {
  color: #faf8f4;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.05;
}

.footer-v2__nav,
.footer-v2__contact {
  min-width: 0;
}

.footer-v2__nav h3,
.footer-v2__contact h3 {
  position: relative;
  margin: 10px 0 21px;
  padding-bottom: 15px;
  color: #f0433a;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-v2__nav h3::after,
.footer-v2__contact h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  content: "";
  background: #e7372e;
}

.footer-v2__nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  border-bottom: 1px solid rgba(224, 233, 236, 0.13);
  color: rgba(247, 247, 244, 0.91);
  font-size: 0.98rem;
  font-weight: 550;
  line-height: 1.25;
  text-decoration: none;
  transition: color 260ms ease, padding-left 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-v2__nav a::before {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-top: 1.5px solid #ef372e;
  border-right: 1.5px solid #ef372e;
  content: "";
  transform: rotate(45deg);
}

.footer-v2__nav a:hover,
.footer-v2__nav a:focus-visible {
  padding-left: 5px;
  color: #ef372e;
}

.footer-v2__contact {
  font-style: normal;
}

.footer-v2__contact > a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 70px;
  border-bottom: 1px solid rgba(224, 233, 236, 0.13);
  color: rgba(247, 247, 244, 0.91);
  font-size: 0.98rem;
  font-weight: 550;
  line-height: 1.5;
  text-decoration: none;
  transition: color 260ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-v2__contact > a:first-of-type {
  min-height: 82px;
}

.footer-v2__contact > a:hover,
.footer-v2__contact > a:focus-visible {
  color: #ef372e;
  transform: translateX(3px);
}

.footer-v2__contact .footer-v2__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: #ed382f;
}

.footer-v2__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
}

.footer-v2__socials a {
  color: rgba(246, 246, 243, 0.69);
  font-size: 0.77rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-v2__socials a:hover,
.footer-v2__socials a:focus-visible {
  color: #ef372e;
}

.footer-v2__bottom {
  display: grid;
  grid-template-columns: minmax(190px, 1.15fr) minmax(240px, 1.2fr) auto auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  min-height: 104px;
  border-top: 1px solid rgba(226, 234, 236, 0.15);
  color: rgba(238, 242, 243, 0.68);
}

.footer-v2__bottom p {
  margin: 0;
}

.footer-v2__statement {
  padding-left: 47px;
  background: linear-gradient(#0b1d2a, #0b1d2a) left 8px / 28px 28px no-repeat;
  color: #f6f5f1;
  font-family: var(--font-heading);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.55;
  text-transform: uppercase;
}

.footer-v2__statement span {
  display: block;
  color: #ed382f;
}

.footer-v2__since {
  max-width: 40ch;
  padding-left: 20px;
  border-left: 1px solid rgba(235, 240, 241, 0.19);
  font-size: 0.82rem;
  line-height: 1.4;
}

.footer-v2__copyright {
  font-size: 0.78rem;
  white-space: nowrap;
}

.footer-v2__top-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #f7f6f2;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.footer-v2__top-link:hover,
.footer-v2__top-link:focus-visible {
  color: #ef372e;
}

@media (max-width: 1180px) {
  .footer-v2__cta {
    grid-template-columns: auto minmax(250px, 1fr) minmax(240px, 0.9fr);
  }

  .footer-v2__cta-actions {
    grid-column: 2 / -1;
  }

  .footer-v2__grid {
    grid-template-columns: minmax(220px, 1.1fr) minmax(150px, 0.7fr) minmax(215px, 1fr);
  }

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

  .footer-v2__contact h3,
  .footer-v2__socials {
    grid-column: 1 / -1;
  }

  .footer-v2__contact > a,
  .footer-v2__contact > a:first-of-type {
    min-height: 78px;
  }

  .footer-v2__bottom {
    grid-template-columns: 1fr 1fr;
    padding: 28px 0;
  }
}

@media (max-width: 760px) {
  .footer-v2 {
    padding: 34px 20px 0;
  }

  .footer-v2__cta {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 26px;
  }

  .footer-v2__cta h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .footer-v2__cta > p,
  .footer-v2__cta-actions {
    grid-column: 1 / -1;
  }

  .footer-v2__cta > p {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid rgba(229, 235, 238, 0.22);
    border-left: 0;
  }

  .footer-v2__cta-actions {
    flex-wrap: wrap;
  }

  .footer-v2__button {
    flex: 1 1 210px;
  }

  .footer-v2__grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 26px;
    padding: 52px 0 42px;
  }

  .footer-v2__brand,
  .footer-v2__contact {
    grid-column: 1 / -1;
  }

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

  .footer-v2__contact > a:first-of-type {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-v2__cta {
    grid-template-columns: 1fr;
  }

  .footer-v2__cta-mark {
    width: 50px;
    height: 50px;
  }

  .footer-v2__cta > p,
  .footer-v2__cta-actions {
    grid-column: auto;
  }

  .footer-v2__grid,
  .footer-v2__contact,
  .footer-v2__bottom {
    grid-template-columns: 1fr;
  }

  .footer-v2__contact > a,
  .footer-v2__contact > a:first-of-type {
    min-height: 66px;
  }

  .footer-v2__contact > a:first-of-type,
  .footer-v2__brand,
  .footer-v2__contact {
    grid-column: auto;
  }

  .footer-v2__bottom {
    gap: 18px;
    min-height: 0;
    padding: 29px 0;
  }
}

/* Industries showcase — cinematic, keyboard-accessible accordion. */
.industries-showcase {
  position: relative;
  overflow: clip;
  padding: clamp(78px, 8vw, 126px) var(--hero-gutter);
  color: #f7f7f5;
  background:
    radial-gradient(circle at 61% 38%, rgba(235, 49, 42, 0.19), transparent 22%),
    radial-gradient(circle at 12% 92%, rgba(29, 84, 105, 0.18), transparent 28%),
    linear-gradient(132deg, #020b13 0%, #061522 58%, #020b13 100%);
}

.industries-showcase::before {
  position: absolute;
  inset: auto auto -26% -8%;
  width: min(58vw, 800px);
  height: 42%;
  content: "";
  opacity: 0.28;
  background-image: radial-gradient(rgba(232, 53, 46, 0.64) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  mask-image: linear-gradient(45deg, #000 0%, transparent 72%);
  pointer-events: none;
}

.industries-showcase__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(38px, 5vw, 84px);
  row-gap: clamp(30px, 3vw, 48px);
  width: min(1480px, 100%);
  min-height: 0;
  margin: 0 auto;
}

.industries-showcase__intro {
  max-width: 385px;
}

.industries-showcase__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: #f03b34;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.industries-showcase__eyebrow::after {
  width: 36px;
  height: 2px;
  content: "";
  background: currentColor;
}

.industries-showcase h2 {
  margin: 0;
  color: #f7f7f5;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 3.6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.industries-showcase__lede {
  max-width: 35ch;
  min-height: 7.6em;
  margin: 28px 0 30px;
  color: rgba(223, 229, 232, 0.76);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.62;
}

.industries-showcase__benefits {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(231, 238, 240, 0.16);
  border-bottom: 1px solid rgba(231, 238, 240, 0.16);
}

.industries-showcase__benefits li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 72px;
  padding: 10px 18px;
  border-right: 1px solid rgba(231, 238, 240, 0.16);
  color: rgba(244, 246, 246, 0.8);
  font-size: clamp(0.75rem, 0.92vw, 0.92rem);
  font-weight: 650;
  text-align: center;
}

.industries-showcase__benefits li:last-child { border-right: 0; }
.industries-showcase__benefits span { white-space: nowrap; }

.industries-showcase__benefits svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: #ef3c34;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industries-showcase__main { min-width: 0; }

.industry-accordion {
  display: flex;
  gap: clamp(9px, 0.85vw, 14px);
  height: clamp(520px, 60vh, 620px);
}

.industry-card {
  position: relative;
  min-width: 0;
  flex: 0 1 88px;
  overflow: hidden;
  border: 1px solid rgba(235, 241, 242, 0.29);
  border-radius: 18px;
  background: #07131d;
  transition: flex-basis 620ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease, box-shadow 300ms ease;
}

.industry-card.is-active { flex: 1 0 0; border-color: rgba(245, 63, 54, 0.92); box-shadow: 0 0 0 1px rgba(242, 62, 53, 0.22), 0 20px 44px rgba(213, 38, 32, 0.22); }
.industry-card:hover { border-color: rgba(246, 246, 242, 0.58); }
.industry-card.is-active:hover { border-color: #f5443c; }

.industry-card__image,
.industry-card__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.industry-card__image { object-fit: cover; transform: scale(1.07); transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1); }
.industry-card.is-active .industry-card__image { transform: scale(1); }
.industry-card:hover .industry-card__image { transform: scale(1.04); }
.industry-card__overlay { pointer-events: none; background: linear-gradient(180deg, rgba(3, 12, 20, 0.18), rgba(3, 12, 20, 0.72) 46%, rgba(2, 10, 17, 0.97) 100%); transition: background 350ms ease; }
.industry-card:not(.is-active) .industry-card__overlay { background: linear-gradient(180deg, rgba(2, 11, 18, 0.56), rgba(2, 11, 18, 0.89)); }

.industry-card__trigger {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 29px clamp(20px, 2.6vw, 38px);
  border: 0;
  color: #fff;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.industry-card__trigger:focus-visible { outline: 2px solid #f7473e; outline-offset: -5px; }
.industry-card__number { position: absolute; top: 25px; left: 19px; display: block; color: #f13c34; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; }
.industry-card__icon { position: absolute; top: 64px; left: 50%; display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; color: rgba(255,255,255,.84); font-size: 1rem; transform: translateX(-50%); }
.industry-card__vertical-title { position: absolute; top: 61%; left: 50%; color: rgba(255,255,255,.9); font-family: var(--font-heading); font-size: clamp(1rem, 1.5vw, 1.4rem); font-weight: 750; line-height: 1; letter-spacing: .01em; white-space: nowrap; writing-mode: vertical-rl; transform: translate(-50%, -50%) rotate(180deg); }

.industry-card__content { position: absolute; right: clamp(20px, 2.6vw, 38px); bottom: 34px; left: clamp(20px, 2.6vw, 38px); display: grid; opacity: 0; visibility: hidden; transform: translateY(20px); }
.industry-card.is-active .industry-card__content { opacity: 1; visibility: visible; transform: translateY(0); }
.industry-card__content strong { font-family: var(--font-heading); font-size: clamp(2.3rem, 4vw, 4.25rem); font-weight: 800; line-height: .98; letter-spacing: -.06em; }
.industry-card__content i { width: 48px; height: 2px; margin: 20px 0 22px; background: #ee3b33; }
.industry-card__content > span { max-width: 35ch; color: rgba(242,245,245,.81); font-size: clamp(.95rem,1.1vw,1.08rem); font-style: normal; line-height: 1.58; }
.industry-card__content em { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; color: #fff; font-size: .95rem; font-style: normal; font-weight: 750; }
.industry-card__content b { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid #f0443b; border-radius: 50%; color: #f0443b; font-size: 1.12rem; transition: transform 280ms cubic-bezier(.16,1,.3,1), background-color 280ms ease; }
.industry-card.is-active:hover .industry-card__content b { color:#fff; background:#e9362e; transform:translateX(4px); }
.industry-card.is-active .industry-card__vertical-title, .industry-card.is-active .industry-card__icon { opacity: 0; }

.industry-navigation { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 18px; margin-top: 28px; }
.industry-navigation__arrow { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(237,243,244,.3); border-radius: 50%; color:#f7f7f5; background:transparent; cursor:pointer; font-size:1.2rem; transition: border-color 220ms ease, color 220ms ease, transform 220ms ease; }
.industry-navigation__arrow:hover,.industry-navigation__arrow:focus-visible { border-color:#ef3c34; color:#ef3c34; transform:translateY(-2px); }
.industry-navigation__steps { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:8px; }
.industry-navigation__steps button { position:relative; min-height:42px; padding:14px 2px 0; border:0; border-top:2px solid rgba(227,234,235,.24); color:rgba(228,235,236,.54); font:600 .72rem/1.2 var(--font-body); text-align:left; background:transparent; cursor:pointer; transition:color 220ms ease,border-color 220ms ease; }
.industry-navigation__steps button::before { position:absolute; top:-2px; left:0; width:0; height:2px; content:""; background:#ef3c34; transition:width 350ms cubic-bezier(.16,1,.3,1); }
.industry-navigation__steps button b { color:inherit; font-size:.7rem; font-weight:800; }
.industry-navigation__steps button.is-active { color:#f6f6f2; border-color:rgba(239,60,52,.52); }
.industry-navigation__steps button.is-active::before { width:100%; }
.industry-navigation__steps button.is-active b { color:#ef3c34; }
.industry-navigation__steps button:focus-visible { outline:2px solid #ef3c34; outline-offset:3px; }
.industry-aria-status { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
.industry-cursor { position:fixed; z-index:20; display:grid; width:62px; height:62px; place-items:center; border:1px solid rgba(242,62,53,.8); border-radius:50%; color:#fff; font-size:.74rem; font-weight:800; pointer-events:none; opacity:0; transform:translate(-50%,-50%) scale(.65); transition:opacity 180ms ease,transform 220ms cubic-bezier(.16,1,.3,1); }
.industry-cursor.is-visible { opacity:1; transform:translate(-50%,-50%) scale(1); }

@media (max-width: 1100px) {
  .industries-showcase__inner { grid-template-columns:1fr; min-height:0; gap:42px; }
  .industries-showcase__intro { max-width:760px; }
  .industries-showcase__lede { min-height:0; max-width:62ch; }
  .industries-showcase__benefits { grid-template-columns:repeat(3,minmax(0,1fr)); column-gap:22px; }
  .industry-accordion { height:510px; flex-wrap:wrap; }
  .industry-card { height:126px; flex:1 1 calc(25% - 10px); }
  .industry-card.is-active { height:360px; flex:1 0 100%; }
  .industry-card__number { top:15px; left:14px; }
  .industry-card__icon { top:15px; right:14px; left:auto; transform:none; }
  .industry-card__vertical-title { top:auto; right:12px; bottom:14px; left:12px; font-size:.78rem; line-height:1.1; white-space:normal; writing-mode:horizontal-tb; transform:none; }
  .industry-card.is-active .industry-card__content { opacity:1; visibility:visible; }
  .industry-cursor { display:none; }
}

@media (min-width: 1101px) {
  .industries-showcase.is-scroll-driven {
    min-height: calc(100svh + var(--industry-scroll-distance, 0px));
    overflow: visible;
  }

  .industries-showcase.is-scroll-driven .industries-showcase__inner {
    position: sticky;
    top: 0;
  }
}

@media (max-width: 767px) {
  .industries-showcase { padding:68px 20px; }
  .industries-showcase h2 { font-size:clamp(2.35rem,11vw,3.55rem); }
  .industries-showcase__benefits { grid-template-columns:1fr; }
  .industries-showcase__benefits li { min-height:58px; padding:10px 0; border-right:0; border-bottom:1px solid rgba(231, 238, 240, 0.16); }
  .industries-showcase__benefits li:last-child { padding-right:0; border-bottom:0; }
  .industries-showcase__benefits span { white-space:normal; }
  .industry-accordion { height:auto; flex-wrap:nowrap; overflow-x:auto; margin-right:-20px; padding:2px 20px 12px 2px; scroll-snap-type:x mandatory; scrollbar-width:thin; }
  .industry-card,.industry-card.is-active { width:84vw !important; height:456px; flex:0 0 84vw; scroll-snap-align:start; }
  .industry-card__icon,.industry-card__vertical-title { display:none; }
  .industry-card__content,.industry-card.is-active .industry-card__content { right:25px; bottom:27px; left:25px; opacity:1; visibility:visible; transform:none; }
  .industry-card__content strong { font-size:2.5rem; }
  .industry-card__content i { margin:15px 0; }
  .industry-card__content em { margin-top:17px; }
  .industry-navigation { display:none; }
}

@media (prefers-reduced-motion: reduce) {
  .industry-card,.industry-card__image,.industry-card__overlay,.industry-card__content,.industry-navigation__steps button::before { transition:none; }
}

/* Dedicated contact page */
.contact-page { background:#020b13; color:#f7f7f5; }
.contact-page .site-header { position:relative; z-index:5; }
.contact-page__hero { position:relative; isolation:isolate; overflow:hidden; padding:clamp(184px,14vw,220px) clamp(20px,5vw,84px) clamp(70px,7vw,112px); background:radial-gradient(circle at 76% 31%,rgba(29,70,94,.28),transparent 29%),radial-gradient(circle at 18% 82%,rgba(225,46,39,.12),transparent 23%),linear-gradient(132deg,#020a12 0%,#061522 58%,#030d16 100%); }
.contact-page__hero::before,.contact-page__hero::after { position:absolute; z-index:-1; content:""; pointer-events:none; }
.contact-page__hero::before { right:43%; bottom:15%; width:420px; height:420px; border:1px solid rgba(166,190,202,.08); border-radius:50%; box-shadow:0 0 0 25px rgba(166,190,202,.035),0 0 0 54px rgba(166,190,202,.022),0 0 0 91px rgba(166,190,202,.016); }
.contact-page__hero::after { right:-8%; bottom:8%; width:42vw; height:45%; opacity:.36; background:repeating-linear-gradient(90deg,transparent 0 30px,rgba(239,60,52,.1) 31px 32px,transparent 33px 64px),linear-gradient(0deg,transparent 0 26%,rgba(192,210,214,.16) 26.3% 26.8%,transparent 27.1% 52%,rgba(192,210,214,.12) 52.3% 52.7%,transparent 53%); transform:perspective(520px) rotateX(66deg) rotateZ(-8deg); transform-origin:bottom right; }
.contact-page__grid,.contact-trust { width:min(1360px,100%); margin:0 auto; }
.contact-page__grid { display:grid; grid-template-columns:minmax(0,.88fr) minmax(470px,1fr); gap:clamp(48px,8vw,136px); align-items:start; }
.contact-page__details { padding:clamp(18px,2vw,34px) 0 0; }
.contact-eyebrow { display:flex; align-items:center; gap:15px; margin:0 0 23px; color:#f03b34; font-size:.77rem; font-weight:800; letter-spacing:.17em; text-transform:uppercase; }
.contact-eyebrow::after { width:44px; height:2px; content:""; background:currentColor; }
.contact-page h1 { max-width:11.8ch; margin:0; color:#f7f7f5; font-family:var(--font-heading); font-size:clamp(2.6rem,4.2vw,4.7rem); font-weight:800; line-height:1.03; letter-spacing:-.063em; }
.contact-title-line { display:block; overflow:hidden; }
.contact-title-line--accent { color:#ef3c34; }
.contact-intro { max-width:47ch; margin:28px 0 35px; color:rgba(226,233,235,.75); font-size:clamp(1rem,1.2vw,1.12rem); line-height:1.62; }
.contact-details-list { display:grid; max-width:510px; margin:0; font-style:normal; }
.contact-detail { display:grid; grid-template-columns:66px 1fr; gap:16px; align-items:center; min-height:82px; padding:11px 0; border-bottom:1px solid rgba(224,235,237,.13); color:#f7f7f5; text-decoration:none; transition:color 250ms ease,transform 250ms ease; }
.contact-detail:first-child { padding-top:0; }
.contact-detail:hover { color:#fff; transform:translateX(4px); }
.contact-detail__icon { display:grid; width:56px; height:56px; place-items:center; border:1px solid rgba(222,235,237,.14); border-radius:14px; color:#ef3c34; background:rgba(9,27,40,.66); transition:border-color 250ms ease,background-color 250ms ease; }
.contact-detail:hover .contact-detail__icon { border-color:rgba(239,60,52,.66); background:rgba(239,60,52,.08); }
.contact-detail svg,.contact-urgent svg,.contact-trust svg,.contact-page-form__privacy svg,.contact-page-form__arrow { width:25px; height:25px; fill:none; stroke:currentColor; stroke-width:1.75; stroke-linecap:round; stroke-linejoin:round; }
.contact-detail b,.contact-urgent strong { display:block; margin-bottom:5px; color:#f7f7f5; font-size:.78rem; font-style:normal; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.contact-detail b + span { display:block; color:rgba(226,233,235,.78); font-size:.93rem; line-height:1.46; }
.contact-urgent { display:grid; grid-template-columns:52px minmax(0,1fr) auto; gap:18px; align-items:center; max-width:550px; margin-top:34px; padding:20px; border:1px solid rgba(225,235,237,.11); border-radius:17px; background:linear-gradient(125deg,rgba(14,34,48,.86),rgba(8,23,35,.76)); }
.contact-urgent__icon { display:grid; width:46px; height:46px; place-items:center; color:#ef3c34; }
.contact-urgent p { margin:0; color:rgba(226,233,235,.7); font-size:.85rem; line-height:1.48; }
.contact-urgent a { display:grid; gap:5px; min-width:124px; padding-left:19px; border-left:1px solid rgba(224,235,237,.13); color:#ef3c34; text-decoration:none; }
.contact-urgent a span { color:rgba(236,241,242,.72); font-size:.67rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.contact-urgent a b { font-size:1.05rem; letter-spacing:-.035em; white-space:nowrap; }
.contact-form-card { padding:clamp(26px,3.4vw,50px); border:1px solid rgba(225,235,237,.15); border-radius:24px; background:linear-gradient(145deg,rgba(17,36,51,.91),rgba(8,22,34,.94)); box-shadow:inset 0 1px rgba(255,255,255,.05),0 24px 54px rgba(0,0,0,.22); }
.contact-form-card h2 { margin:0; color:#f7f7f5; font-family:var(--font-heading); font-size:clamp(1.72rem,2.4vw,2.35rem); letter-spacing:-.055em; }
.contact-form-card h2::after { display:block; width:47px; height:3px; margin-top:15px; content:""; background:#ef3c34; }
.contact-form-card > p { margin:17px 0 31px; color:rgba(226,233,235,.7); font-size:.93rem; }
.contact-page-form { display:grid; gap:18px; }
.contact-field { display:grid; gap:7px; }
.contact-field label { color:#f7f7f5; font-size:.84rem; font-weight:700; }
.contact-field label em { color:#ef3c34; font-style:normal; }
.contact-field input,.contact-field select,.contact-field textarea { width:100%; min-height:52px; padding:14px 16px; border:1px solid rgba(225,235,237,.13); border-radius:10px; outline:0; color:#f7f7f5; font:500 .93rem/1.4 var(--font-body); background:rgba(101,125,142,.1); transition:border-color 220ms ease,background-color 220ms ease,box-shadow 220ms ease; }
.contact-field textarea { min-height:126px; resize:vertical; }
.contact-field select { appearance:none; background-image:linear-gradient(45deg,transparent 50%,#f7f7f5 50%),linear-gradient(135deg,#f7f7f5 50%,transparent 50%); background-position:calc(100% - 20px) 50%,calc(100% - 15px) 50%; background-size:5px 5px,5px 5px; background-repeat:no-repeat; }
.contact-field option { color:#17232d; background:#f7f7f5; }
.contact-field input::placeholder,.contact-field textarea::placeholder { color:rgba(220,230,234,.55); }
.contact-field input:focus,.contact-field select:focus,.contact-field textarea:focus { border-color:#ef3c34; background:rgba(120,145,162,.14); box-shadow:0 0 0 3px rgba(239,60,52,.12); }
.contact-field:focus-within label { color:#fff; }
.contact-field.is-invalid input,.contact-field.is-invalid select,.contact-field.is-invalid textarea { border-color:#f85b54; box-shadow:0 0 0 3px rgba(248,91,84,.1); }
.contact-field__error { min-height:0; color:#ff8881; font-size:.76rem; line-height:1.35; }
.contact-field.is-invalid .contact-field__error { min-height:1.35em; }
.form-status { min-height:1.4em; margin:0; color:rgba(226,233,235,.73); font-size:.84rem; line-height:1.45; }
.form-status.is-error { color:#ff968f; }.form-status.is-success { color:#7ad8a0; }.form-status.is-info { color:#c7d6dc; }
.contact-page-form__submit { display:flex; align-items:center; justify-content:center; gap:14px; min-height:56px; margin-top:2px; border:0; border-radius:11px; color:#fff; font:800 .93rem/1 var(--font-body); background:linear-gradient(105deg,#e62b25,#f23b33); box-shadow:0 12px 28px rgba(228,43,37,.24); cursor:pointer; transition:transform 260ms cubic-bezier(.16,1,.3,1),box-shadow 260ms ease,background-color 260ms ease; }
.contact-page-form__submit:hover:not(:disabled) { box-shadow:0 16px 34px rgba(228,43,37,.34); transform:translateY(-2px); }.contact-page-form__submit:hover .contact-page-form__arrow { transform:translateX(5px); }
.contact-page-form__submit:active:not(:disabled) { transform:translateY(0) scale(.99); }.contact-page-form__submit:focus-visible,.contact-detail:focus-visible,.contact-urgent a:focus-visible { outline:2px solid #ef3c34; outline-offset:4px; }
.contact-page-form__submit:disabled { cursor:not-allowed; opacity:.7; }.contact-page-form__arrow { transition:transform 240ms ease; }.contact-page-form__submit.is-loading .contact-page-form__arrow { width:18px; height:18px; border:2px solid rgba(255,255,255,.46); border-top-color:#fff; border-radius:50%; animation:contact-spin .75s linear infinite; }.contact-page-form__submit.is-loading .contact-page-form__arrow path { display:none; }.contact-page-form__submit.is-success { background:#198753; box-shadow:0 12px 28px rgba(25,135,83,.22); }.contact-page-form__submit.is-success .contact-page-form__arrow { display:none; }
.contact-page-form__privacy { display:flex; align-items:center; gap:9px; margin:2px 0 0; color:rgba(226,233,235,.65); font-size:.78rem; }.contact-page-form__privacy svg { width:19px; height:19px; color:#ef3c34; }.contact-page-form__frame { position:absolute; width:1px; height:1px; border:0; opacity:0; pointer-events:none; }
.contact-trust { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); margin-top:34px; border:1px solid rgba(225,235,237,.12); border-radius:20px; background:rgba(10,27,40,.72); }
.contact-trust article { display:grid; grid-template-columns:50px 1fr; gap:16px; align-items:start; min-height:142px; padding:28px 25px; border-right:1px solid rgba(225,235,237,.12); }.contact-trust article:last-child { border-right:0; }.contact-trust article > span { display:grid; width:42px; height:42px; place-items:center; color:#ef3c34; }.contact-trust h2 { margin:0 0 7px; color:#f7f7f5; font-size:.95rem; line-height:1.3; letter-spacing:-.03em; }.contact-trust p { margin:0; color:rgba(226,233,235,.67); font-size:.8rem; line-height:1.5; }
@keyframes contact-spin { to { transform:rotate(360deg); } }
@media (max-width:1100px) { .contact-page__grid { grid-template-columns:minmax(0,.84fr) minmax(400px,1fr); gap:clamp(34px,5vw,64px); }.contact-page h1 { font-size:clamp(2.45rem,4.5vw,3.75rem); }.contact-urgent { grid-template-columns:46px 1fr; }.contact-urgent a { grid-column:2; padding:14px 0 0; border-top:1px solid rgba(224,235,237,.13); border-left:0; }.contact-trust { grid-template-columns:repeat(2,minmax(0,1fr)); }.contact-trust article:nth-child(2) { border-right:0; }.contact-trust article:nth-child(-n+2) { border-bottom:1px solid rgba(225,235,237,.12); } }
@media (max-width:980px) { .contact-page__hero { padding-top:clamp(126px,15vw,150px); } }
@media (max-width:820px) { .contact-page__grid { grid-template-columns:1fr; }.contact-page__details { max-width:650px; }.contact-form-card { max-width:680px; }.contact-trust { grid-template-columns:1fr 1fr; }.contact-page__hero::after { right:-17%; width:78vw; }.contact-page h1 { max-width:15ch; } }
@media (max-width:620px) { .contact-page__hero { padding:126px 18px 64px; }.contact-page h1 { font-size:clamp(2.35rem,10.4vw,3.25rem); }.contact-intro { margin:22px 0 29px; }.contact-detail { grid-template-columns:54px 1fr; gap:12px; }.contact-detail__icon { width:46px; height:46px; border-radius:12px; }.contact-detail__icon svg { width:22px; height:22px; }.contact-urgent { grid-template-columns:44px 1fr; gap:12px; padding:17px; }.contact-urgent__icon { width:42px; height:42px; }.contact-form-card { padding:25px 19px; border-radius:18px; }.contact-form-card > p { margin-bottom:25px; }.contact-field input,.contact-field select,.contact-field textarea { min-height:50px; }.contact-trust { grid-template-columns:1fr; margin-top:24px; border-radius:16px; }.contact-trust article,.contact-trust article:nth-child(2) { min-height:auto; padding:21px 18px; border-right:0; border-bottom:1px solid rgba(225,235,237,.12); }.contact-trust article:last-child { border-bottom:0; } }
@media (prefers-reduced-motion:reduce) { .contact-page-form__submit,.contact-detail,.contact-detail__icon,.contact-page-form__arrow,.contact-field input,.contact-field select,.contact-field textarea { transition:none; }.contact-page-form__submit.is-loading .contact-page-form__arrow { animation:none; } }

/* Reusable pre-footer call to action */
.site-cta { padding:clamp(46px,6vw,82px) var(--hero-gutter); color:#fff; background:linear-gradient(112deg,#d9221e 0%,#eb302a 54%,#b91d1a 100%); }
.site-cta__inner { display:grid; grid-template-columns:auto minmax(300px,1.28fr) minmax(245px,.78fr) auto; align-items:center; gap:clamp(20px,2.8vw,42px); width:min(1400px,100%); min-height:188px; margin:0 auto; padding:clamp(27px,3.1vw,46px); border:1px solid rgba(255,255,255,.24); border-radius:16px; background:linear-gradient(115deg,rgba(92,13,12,.14),rgba(255,255,255,.05)); box-shadow:inset 0 1px rgba(255,255,255,.2),0 18px 38px rgba(105,15,13,.18); }
.site-cta__mark { display:grid; width:58px; height:58px; place-items:center; border:1px solid rgba(255,255,255,.4); border-radius:50%; background:rgba(118,15,13,.15); }.site-cta__icon { width:31px; height:31px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.site-cta h2 { max-width:14ch; margin:0; color:#fff; font-family:var(--font-heading); font-size:clamp(2rem,3vw,3.35rem); font-weight:800; line-height:.99; letter-spacing:-.055em; }.site-cta > .site-cta__inner > p { max-width:36ch; margin:0; padding-left:clamp(20px,2.4vw,40px); border-left:1px solid rgba(255,255,255,.3); color:rgba(255,255,255,.86); font-size:clamp(.92rem,1.05vw,1.02rem); line-height:1.65; }
.site-cta__actions { display:flex; align-items:center; gap:12px; }.site-cta__button { display:inline-flex; min-height:50px; align-items:center; justify-content:center; gap:14px; padding:0 19px; border:1px solid transparent; border-radius:8px; color:#fff; font-size:.9rem; font-weight:750; line-height:1; text-decoration:none; white-space:nowrap; transition:transform 280ms cubic-bezier(.16,1,.3,1),background-color 280ms ease,border-color 280ms ease; }.site-cta__button--primary { color:#c71f1b; background:#fff; box-shadow:0 12px 25px rgba(105,15,13,.18); }.site-cta__button--secondary { border-color:rgba(255,255,255,.72); background:rgba(126,16,14,.15); }.site-cta__button:hover,.site-cta__button:focus-visible { transform:translateY(-2px); }.site-cta__button--primary:hover,.site-cta__button--primary:focus-visible { color:#a81916; background:#fff3f2; }.site-cta__button--secondary:hover,.site-cta__button--secondary:focus-visible { border-color:#fff; background:rgba(255,255,255,.14); }.site-cta__button:active { transform:translateY(0) scale(.99); }.site-cta__button:focus-visible { outline:2px solid #fff; outline-offset:3px; }.site-cta__button-icon { width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; transition:transform 220ms ease; }.site-cta__button:hover .site-cta__button-icon { transform:translateX(3px); }
@media (max-width:1180px) { .site-cta__inner { grid-template-columns:auto minmax(250px,1fr) minmax(240px,.9fr); }.site-cta__actions { grid-column:2 / -1; } }
@media (max-width:760px) { .site-cta { padding:34px 20px; }.site-cta__inner { grid-template-columns:auto 1fr; gap:20px; padding:26px; }.site-cta h2 { font-size:clamp(2rem,9vw,2.8rem); }.site-cta > .site-cta__inner > p,.site-cta__actions { grid-column:1 / -1; }.site-cta > .site-cta__inner > p { padding-top:18px; padding-left:0; border-top:1px solid rgba(255,255,255,.3); border-left:0; }.site-cta__actions { flex-wrap:wrap; }.site-cta__button { flex:1 1 210px; } }
@media (max-width:520px) { .site-cta__inner { grid-template-columns:1fr; }.site-cta__mark { width:50px; height:50px; }.site-cta > .site-cta__inner > p,.site-cta__actions { grid-column:auto; } }

/* Home-page alignment system: every major band shares the hero's two-sided frame. */
body#top {
  --home-content-frame: calc(100% - (var(--hero-gutter) * 2));
}

body#top .stats-band {
  width: 100%;
  margin: 0;
  padding-inline: var(--hero-gutter);
}

body#top .industries-showcase,
body#top .site-cta,
body#top .footer-v2 {
  padding-inline: 0;
}

body#top .industries-showcase__inner,
body#top .site-cta__inner,
body#top .footer-v2__inner {
  box-sizing: border-box;
  width: var(--home-content-frame);
  max-width: none;
  margin-inline: auto;
}

@media (min-width: 1101px) {
  /* The left editorial column and the right interactive column use the same full frame. */
  body#top .industries-showcase__inner {
    grid-template-columns: minmax(288px, 0.72fr) minmax(0, 1.78fr);
    column-gap: clamp(52px, 4.5vw, 82px);
  }

  body#top .industries-showcase__intro {
    align-self: center;
    max-width: 430px;
  }

  /* Keep the CTA actions locked to the frame's right edge, rather than floating after the copy. */
  body#top .site-cta__inner {
    grid-template-columns: auto minmax(320px, 1.08fr) minmax(270px, 0.88fr) max-content;
  }

  body#top .site-cta__actions {
    justify-content: flex-end;
  }

  /* Four deliberately weighted columns: brand anchors the left, contact anchors the right. */
  body#top .footer-v2__grid {
    grid-template-columns: minmax(290px, 1.22fr) minmax(150px, 0.7fr) minmax(215px, 0.94fr) minmax(245px, 0.98fr);
    gap: clamp(30px, 4.4vw, 72px);
    padding-inline: 0;
  }

  body#top .footer-v2__contact {
    justify-self: end;
    width: 100%;
  }
}

@media (max-width: 760px) {
  body#top .site-cta,
  body#top .footer-v2 { padding-inline: var(--hero-gutter); }

  body#top .industries-showcase {
    padding-inline: var(--hero-gutter);
  }

  body#top .industries-showcase__inner,
  body#top .site-cta__inner,
  body#top .footer-v2__inner {
    width: 100%;
  }
}

/* Services gallery: active card steps forward as the highlighted service changes. */
body#top .service-gallery__viewport { padding-block: 18px 20px; }

body#top .section--services .service-card {
  transition: border-color 280ms ease, background-color 280ms ease, box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1), transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

body#top .section--services .service-card.is-active {
  z-index: 3;
  border-color: #ff4438;
  background: #081e2f;
  box-shadow: 0 22px 42px rgba(1, 10, 18, 0.4), 0 0 0 1px rgba(255, 68, 56, 0.26);
  transform: translateY(-10px) scale(1.045);
  will-change: transform;
}

body#top .section--services .service-card.is-active::after {
  background:
    linear-gradient(180deg, rgba(2, 11, 20, 0.22) 0%, rgba(2, 11, 20, 0.58) 47%, rgba(2, 11, 20, 0.97) 100%),
    linear-gradient(90deg, rgba(2, 11, 20, 0.26), transparent 74%);
}

body#top .section--services .service-card.is-active .service-card__image {
  filter: saturate(1.04) contrast(1.07);
  transform: scale(1.08);
}

body#top .section--services .service-card.is-active::before {
  border-color: #ff5a50;
  color: #fff;
  background: #d92b25;
}

@media (max-width: 760px) {
  body#top .section--services .service-card.is-active {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 14px 28px rgba(1, 10, 18, 0.32), 0 0 0 1px rgba(255, 68, 56, 0.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  body#top .section--services .service-card,
  body#top .section--services .service-card__image { transition: none; }
}

/* A card can be explored in place, then followed to its factual industry detail. */
.industry-card__content {
  bottom: 92px;
}

.industry-card__destination {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 2.6vw, 38px);
  bottom: 34px;
  left: clamp(20px, 2.6vw, 38px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card.is-active .industry-card__destination {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.industry-card__destination b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #f0443b;
  border-radius: 50%;
  color: #f0443b;
  font-size: 1.12rem;
  transition: color 240ms ease, background-color 240ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card__destination:hover b,
.industry-card__destination:focus-visible b {
  color: #fff;
  background: #e9362e;
  transform: translateX(4px);
}

.industry-card__destination:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* Contact must stack before the fixed-width form can compress the accompanying copy. */
@media (max-width: 980px) {
  .contact-page__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(38px, 6vw, 62px);
  }

  .contact-page__details,
  .contact-form-card {
    max-width: 680px;
  }
}

/* Final cascade: the page, nav and footer actions use the home-hero button system. */
body#top .page-hero .btn,
body#top .contact-cta .btn,
body#top .organisation-explorer .btn,
body#top .nav__cta,
body#top .site-cta__button,
body#top .about-hero__actions a,
.contact-page-form__submit {
  min-height: 53px;
  padding: 0 25px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

body#top .page-hero .btn--primary,
body#top .contact-cta .btn--primary,
body#top .organisation-explorer .btn--primary,
body#top .nav__cta,
.contact-page-form__submit { border-color:transparent; color:#fff; background:linear-gradient(135deg,#ff5438,#e52222); box-shadow:none; }

body#top .page-hero .btn--ghost,
body#top .contact-cta .btn--ghost,
body#top .organisation-explorer .btn--ghost { border-color:rgba(255,255,255,.72); color:#fff; background:rgba(4,11,19,.28); }

body#top .page-hero .btn::after,
body#top .contact-cta .btn::after,
body#top .organisation-explorer .btn::after,
body#top .nav__cta::after { display:inline-block; margin-left:24px; content:"→"; font-size:1.15rem; line-height:1; transition:transform 220ms ease; }

body#top .page-hero .btn:hover,
body#top .contact-cta .btn:hover,
body#top .organisation-explorer .btn:hover,
body#top .nav__cta:hover,
body#top .site-cta__button:hover,
body#top .about-hero__actions a:hover,
.contact-page-form__submit:hover:not(:disabled) { box-shadow:0 12px 26px rgba(221,48,41,.2); transform:translateY(-2px); }

body#top .page-hero .btn:hover::after,
body#top .contact-cta .btn:hover::after,
body#top .organisation-explorer .btn:hover::after,
body#top .nav__cta:hover::after { transform:translateX(4px); }

body#top .page-hero .btn:active,
body#top .contact-cta .btn:active,
body#top .organisation-explorer .btn:active,
body#top .nav__cta:active,
body#top .site-cta__button:active,
body#top .about-hero__actions a:active,
.contact-page-form__submit:active:not(:disabled) { transform:translateY(0) scale(.98); }

body#top .page-hero .btn:focus-visible,
body#top .contact-cta .btn:focus-visible,
body#top .organisation-explorer .btn:focus-visible,
body#top .nav__cta:focus-visible,
body#top .site-cta__button:focus-visible,
body#top .about-hero__actions a:focus-visible,
.contact-page-form__submit:focus-visible { outline:2px solid #fff; outline-offset:4px; }

body#top .site-cta__button--primary { color:#c71f1b; background:#fff; }
body#top .site-cta__button--secondary { border-color:rgba(255,255,255,.72); color:#fff; background:rgba(126,16,14,.15); }

/* Home FAQs: high-intent answers before the shared consultation CTA. */
body#top .home-faq {
  position:relative;
  overflow:hidden;
  padding:clamp(82px,9vw,132px) var(--hero-gutter);
  color:#f7f8f6;
  background:
    radial-gradient(circle at 0% 86%,rgba(226,38,35,.16),transparent 26%),
    linear-gradient(128deg,#071723 0%,#06111d 56%,#04101a 100%);
}

body#top .home-faq::before {
  position:absolute;
  inset:0;
  content:"";
  pointer-events:none;
  opacity:.48;
  background:repeating-linear-gradient(126deg,transparent 0 90px,rgba(243,70,62,.07) 91px 92px,transparent 93px 182px);
}

body#top .home-faq__inner {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(260px,.58fr) minmax(0,1.12fr);
  gap:clamp(42px,7vw,112px);
  width:min(1400px,100%);
  margin:0 auto;
}

body#top .home-faq__intro { align-self:start; }
body#top .home-faq__eyebrow {
  display:flex;
  align-items:center;
  gap:14px;
  margin:0 0 20px;
  color:#ff453f;
  font-size:.73rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

body#top .home-faq__eyebrow::after { width:32px; height:2px; content:""; background:currentColor; }
body#top .home-faq h2 {
  max-width:10ch;
  margin:0;
  color:#fff;
  font-family:var(--font-heading);
  font-size:clamp(2.15rem,3.65vw,3.75rem);
  font-weight:800;
  line-height:1.02;
  letter-spacing:-.045em;
}

body#top .home-faq__intro > p:not(.home-faq__eyebrow) {
  max-width:35ch;
  margin:24px 0 0;
  color:rgba(226,233,235,.78);
  font-size:clamp(.98rem,1.16vw,1.08rem);
  line-height:1.65;
}

body#top .home-faq__signals {
  display:grid;
  gap:0;
  max-width:350px;
  margin:32px 0 0;
  padding:0 22px;
  list-style:none;
  border:1px solid rgba(227,236,238,.13);
  border-radius:15px;
  background:rgba(5,18,29,.55);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.045);
}

body#top .home-faq__signals li {
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  gap:14px;
  align-items:center;
  padding:19px 0;
  border-bottom:1px solid rgba(227,236,238,.1);
}

body#top .home-faq__signals li:last-child { border-bottom:0; }
body#top .home-faq__signals svg { width:31px; height:31px; fill:none; stroke:#ff453f; stroke-linecap:round; stroke-linejoin:round; stroke-width:1.65; }
body#top .home-faq__signals span { display:grid; gap:4px; }
body#top .home-faq__signals strong { color:#fff; font-size:.9rem; line-height:1.18; }
body#top .home-faq__signals small { color:rgba(226,233,235,.7); font-size:.76rem; line-height:1.45; }

body#top .home-faq__list {
  overflow:hidden;
  border:1px solid rgba(227,236,238,.16);
  border-radius:15px;
  background:linear-gradient(140deg,rgba(10,27,42,.93),rgba(5,17,28,.96));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.055);
}

body#top .home-faq__item { border-bottom:1px solid rgba(227,236,238,.13); }
body#top .home-faq__item:last-child { border-bottom:0; }
body#top .home-faq__item summary {
  display:grid;
  grid-template-columns:46px minmax(0,1fr) 34px;
  gap:14px;
  align-items:center;
  min-height:72px;
  padding:15px 22px;
  color:#fff;
  font-size:clamp(.93rem,1.08vw,1.05rem);
  font-weight:750;
  line-height:1.4;
  list-style:none;
  cursor:pointer;
  transition:background-color 280ms ease,color 280ms ease;
}

body#top .home-faq__item summary::-webkit-details-marker { display:none; }
body#top .home-faq__item summary:hover { background:rgba(255,255,255,.035); }
body#top .home-faq__number { color:#ff453f; font-size:.91rem; font-weight:850; letter-spacing:.04em; }
body#top .home-faq__item summary::after {
  display:grid;
  width:24px;
  height:24px;
  place-items:center;
  justify-self:end;
  border:1px solid rgba(235,241,242,.6);
  border-radius:50%;
  color:#fff;
  content:"+";
  font-size:1.26rem;
  font-weight:400;
  line-height:1;
  transition:transform 280ms cubic-bezier(.16,1,.3,1),border-color 280ms ease,background-color 280ms ease;
}

body#top .home-faq__item[open] summary { background:rgba(255,255,255,.025); }
body#top .home-faq__item[open] summary::after { border-color:#f04438; color:#fff; background:#e82f29; transform:rotate(45deg); }
body#top .home-faq__answer {
  display:grid;
  grid-template-columns:46px minmax(0,1fr);
  gap:14px;
  padding:0 56px 24px 22px;
}

body#top .home-faq__answer::before { width:2px; min-height:100%; justify-self:center; content:""; background:#f04438; }
body#top .home-faq__answer p { max-width:67ch; margin:0; color:rgba(226,233,235,.79); font-size:.92rem; line-height:1.65; }
body#top .home-faq__link { display:inline-flex; align-items:center; gap:13px; width:max-content; margin-top:18px; color:#fff; font-size:.88rem; font-weight:800; text-decoration:none; }
body#top .home-faq__link span { color:#ff453f; font-size:1.15rem; transition:transform 220ms ease; }
body#top .home-faq__link:hover span,.home-faq__link:focus-visible span { transform:translateX(4px); }
body#top .home-faq__item summary:focus-visible,.home-faq__link:focus-visible { outline:2px solid #fff; outline-offset:-4px; }

@media (max-width:900px) {
  body#top .home-faq__inner { grid-template-columns:1fr; gap:38px; }
  body#top .home-faq h2 { max-width:15ch; }
  body#top .home-faq__signals { max-width:none; grid-template-columns:repeat(3,minmax(0,1fr)); padding:0 16px; }
  body#top .home-faq__signals li { grid-template-columns:1fr; gap:10px; align-content:start; }
}

@media (max-width:620px) {
  body#top .home-faq { padding-block:64px; }
  body#top .home-faq h2 { font-size:clamp(2rem,9vw,2.8rem); }
  body#top .home-faq__signals { grid-template-columns:1fr; padding-inline:20px; }
  body#top .home-faq__signals li { grid-template-columns:34px minmax(0,1fr); gap:13px; }
  body#top .home-faq__signals svg { width:28px; height:28px; }
  body#top .home-faq__item summary { grid-template-columns:32px minmax(0,1fr) 30px; gap:10px; min-height:68px; padding:15px 14px; font-size:.9rem; }
  body#top .home-faq__item summary::after { width:22px; height:22px; font-size:1.15rem; }
  body#top .home-faq__answer { grid-template-columns:32px minmax(0,1fr); gap:10px; padding:0 18px 21px 14px; }
  body#top .home-faq__answer p { font-size:.88rem; }
}

@media (max-width:760px) {
  body#top .page-hero .hero__actions,
  body#top .contact-cta .hero__actions,
  body#top .organisation-explorer__actions { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); }
  body#top .page-hero .btn,
  body#top .contact-cta .btn,
  body#top .organisation-explorer__actions .btn { width:100%; justify-content:center; padding-inline:17px; }
  body#top .page-hero .btn::after,
  body#top .contact-cta .btn::after,
  body#top .organisation-explorer .btn::after,
  body#top .nav__cta::after { margin-left:12px; }
}

/* Services menu: a solid charcoal surface keeps every service label readable over page imagery. */
body#top .nav__dropdown-menu {
  border-color: rgba(255, 255, 255, 0.14);
  background: #071017;
  box-shadow: 0 18px 40px rgba(1, 7, 12, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body#top .nav__dropdown-menu a {
  color: rgba(255, 255, 255, 0.94);
}

body#top .nav__dropdown-menu a:hover,
body#top .nav__dropdown-menu a:focus-visible {
  color: #fff;
  background: rgba(233, 38, 42, 0.2);
}

@media (max-width: 760px) {
  body#top .nav__dropdown-menu {
    margin: 8px 0;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #071017;
  }

  body#top .nav__dropdown-menu a {
    color: rgba(255, 255, 255, 0.94);
  }
}

/* Directional navigation: stay available at the top, retreat on downward reading, return on upward intent. */
body#top .site-header {
  position: fixed;
  inset: 0 0 auto;
  transform: translate3d(0, 0, 0);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

body#top.nav-is-hidden .site-header {
  pointer-events: none;
  transform: translate3d(0, -115%, 0);
}

body#top.nav-open .site-header {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  body#top .site-header {
    transition: none;
  }
}

/* The navigation conversion action mirrors the completed home-hero primary button. */
body#top .nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  padding: 0 25px !important;
  border: 1px solid transparent;
  border-radius: 6px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #ff5438, #e52222) !important;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

body#top .nav__cta::after {
  position: static;
  inset: auto;
  width: auto;
  height: auto;
  display: inline-block;
  margin-left: 26px;
  content: "→";
  background: transparent;
  font-size: 1.15rem;
  line-height: 1;
  transform: translateX(0);
}

body#top .nav__cta:hover,
body#top .nav__cta:focus-visible {
  box-shadow: none;
  transform: translateY(-3px);
}

@media (max-width: 760px) {
  body#top .nav__cta {
    min-height: 50px;
    padding: 0 17px !important;
    font-size: 0.78rem;
  }

  body#top .nav__cta::after {
    margin-left: 12px;
  }
}

/* Main display heads use a little more breathing room without changing the established hierarchy. */
body#top .hero h1,
body#top .hero h2,
body#top .section h2,
body#top .contact-cta h2,
body#top .page-hero h1,
body#top .about-hero h1,
body#top .about-story__heading h2,
body#top .organisation-explorer__intro h1,
body#top .contact-page__details h1,
body#top .industries-showcase h2,
body#top .site-cta h2 {
  letter-spacing: -0.035em;
}

/* Industries hero: one wide Firecon visual carries every sector while the left-side copy stays legible. */
body#top.industries-page .industries-page__hero {
  isolation: isolate;
  min-height: clamp(560px, 72svh, 760px);
  display: flex;
  align-items: end;
  padding-block: clamp(176px, 20vh, 236px) clamp(78px, 10vw, 126px);
  background-color: #020b13;
  background-image:
    linear-gradient(90deg, rgba(2, 11, 19, 0.97) 0%, rgba(2, 11, 19, 0.89) 31%, rgba(2, 11, 19, 0.56) 58%, rgba(2, 11, 19, 0.24) 100%),
    linear-gradient(180deg, rgba(2, 11, 19, 0.52) 0%, rgba(2, 11, 19, 0.09) 42%, rgba(2, 11, 19, 0.76) 100%),
    url("/images/industries-hero-v1.webp");
  background-position: center;
  background-size: cover;
}

body#top.industries-page .industries-page__hero .page-hero__inner {
  max-width: min(650px, 100%);
}

body#top.industries-page .industries-page__hero h1 {
  max-width: 19ch;
  text-wrap: balance;
}

body#top.industries-page .industries-page__hero > * {
  position: relative;
  z-index: 1;
}

/* Keep the navbar conversion control structurally identical to a hero primary button. */
body#top .nav__cta {
  min-height: 50px;
  padding: 0 26px !important;
  border-radius: 8px !important;
  gap: 24px;
  box-shadow: 0 12px 28px rgba(242, 92, 5, 0.28), 0 4px 8px rgba(242, 92, 5, 0.16);
  letter-spacing: 0.04em;
}

body#top .nav__cta::after {
  display: none;
  content: none;
}

body#top .nav__cta-arrow {
  display: inline-block;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 220ms ease;
}

body#top .nav__cta:hover,
body#top .nav__cta:focus-visible {
  box-shadow: 0 20px 40px rgba(242, 92, 5, 0.38), 0 6px 12px rgba(242, 92, 5, 0.22);
}

body#top .nav__cta:hover .nav__cta-arrow,
body#top .nav__cta:focus-visible .nav__cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 760px) {
  body#top.industries-page .industries-page__hero {
    min-height: clamp(580px, 84svh, 680px);
    align-items: end;
    padding-block: 148px 68px;
    background-position: 61% center;
    background-image:
      linear-gradient(90deg, rgba(2, 11, 19, 0.97) 0%, rgba(2, 11, 19, 0.88) 61%, rgba(2, 11, 19, 0.53) 100%),
      linear-gradient(180deg, rgba(2, 11, 19, 0.34), rgba(2, 11, 19, 0.78)),
      url("/images/industries-hero-v1.webp");
  }

  body#top .nav__cta {
    gap: 12px;
    box-shadow: none;
  }
}

/* Reflected hero composition: the technician supports the reading flow from the right-side copy. */
body#top .hero {
  isolation: isolate;
  background-image: none;
}

body#top .hero::before {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-image) center / cover no-repeat;
  filter: brightness(1.13) contrast(1.03);
  mask-image: none;
  transform: scaleX(-1);
}

body#top .hero::after {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(270deg, rgba(2, 10, 19, 0.96) 0%, rgba(2, 10, 19, 0.82) 25%, rgba(2, 10, 19, 0.46) 41%, rgba(2, 10, 19, 0.1) 54%, transparent 64%, transparent 100%);
}

body#top .hero > * {
  position: relative;
  z-index: 2;
}

/* Desktop torch: the warm light tracks the pointer on the image layer only. */
body#top .hero > .hero__torch {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    circle clamp(180px, 18vw, 290px) at var(--torch-x, 50%) var(--torch-y, 50%),
    rgba(255, 237, 205, 0.34) 0%,
    rgba(255, 125, 76, 0.18) 24%,
    rgba(255, 69, 45, 0.07) 47%,
    transparent 74%
  );
  filter: blur(1px);
  transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

body#top .hero.is-torch-active > .hero__torch {
  opacity: 1;
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  body#top .hero > .hero__torch {
    display: none;
  }
}

@media (min-width: 761px) {
  body#top .hero__slide {
    justify-items: end;
  }

  body#top .hero__content {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  body#top .hero__content {
    justify-self: start;
  }
}

/* Service-page heroes: fixed-header clearance, contextual imagery and resilient copy contrast. */
body#top.service-page .page-hero {
  --service-header-clearance: clamp(182px, 16vw, 230px);
  --service-hero-image: none;
  --service-hero-position: center;
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(600px, 76dvh, 760px);
  padding: var(--service-header-clearance) var(--hero-gutter) clamp(84px, 9vw, 126px);
  overflow: hidden;
  background-color: #020b13;
  background-image:
    linear-gradient(90deg, rgba(2, 10, 19, 0.97) 0%, rgba(2, 10, 19, 0.91) 33%, rgba(2, 10, 19, 0.66) 54%, rgba(2, 10, 19, 0.24) 76%, rgba(2, 10, 19, 0.08) 100%),
    linear-gradient(180deg, rgba(2, 10, 19, 0.08), rgba(2, 10, 19, 0.62)),
    var(--service-hero-image);
  background-position: center, center, var(--service-hero-position);
  background-repeat: no-repeat;
  background-size: cover;
}

body#top.service-page .page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(660px, 100%);
}

body#top.service-page .page-hero h1 {
  max-width: 13ch;
  color: #fff;
}

body#top.service-page .page-hero > .page-hero__inner > p:not(.eyebrow) {
  max-width: 49ch;
  color: rgba(255, 255, 255, 0.82);
}

body#top.service-page[data-service-hero="design-consulting"] .page-hero { --service-hero-image: url("/images/services/design-consulting.webp"); --service-hero-position: 65% center; }
body#top.service-page[data-service-hero="hydrant-hosereel"] .page-hero { --service-hero-image: url("/images/services/hydrant-hosereel.webp"); --service-hero-position: 64% center; }
body#top.service-page[data-service-hero="fire-extinguishers"] .page-hero { --service-hero-image: url("/images/services/fire-extinguishers.webp"); --service-hero-position: 64% center; }
body#top.service-page[data-service-hero="detection-alarm-gas"] .page-hero { --service-hero-image: url("/images/services/detection-alarm-gas.webp"); --service-hero-position: 66% center; }
body#top.service-page[data-service-hero="automatic-sprinklers"] .page-hero { --service-hero-image: url("/images/services/automatic-sprinklers.webp"); --service-hero-position: 66% center; }
body#top.service-page[data-service-hero="deluge-spray"] .page-hero { --service-hero-image: url("/images/services/deluge-spray.webp"); --service-hero-position: 64% center; }
body#top.service-page[data-service-hero="foam-fire-fighting"] .page-hero { --service-hero-image: url("/images/services/foam-fire-fighting.webp"); --service-hero-position: 64% center; }
body#top.service-page[data-service-hero="automatic-fire-pumps"] .page-hero { --service-hero-image: url("/images/services/automatic-fire-pumps.webp"); --service-hero-position: 65% center; }
body#top.service-page[data-service-hero="pressure-reducing-stations"] .page-hero { --service-hero-image: url("/images/services/pressure-reducing-stations.webp"); --service-hero-position: 66% center; }

@media (max-width: 760px) {
  body#top.service-page .page-hero {
    --service-header-clearance: 132px;
    min-height: 580px;
    padding-bottom: 74px;
    background-image:
      linear-gradient(180deg, rgba(2, 10, 19, 0.58) 0%, rgba(2, 10, 19, 0.88) 54%, rgba(2, 10, 19, 0.98) 100%),
      var(--service-hero-image);
    background-position: center, var(--service-hero-position);
  }

  body#top.service-page .page-hero h1 {
    max-width: 11.5ch;
  }
}

/* Related service cards: destination imagery keeps the visual cue and route in sync. */
body#top.service-page .related-services {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(78px, 9vw, 126px);
  background:
    radial-gradient(circle at 86% 16%, rgba(192, 38, 31, 0.16), transparent 30%),
    linear-gradient(135deg, #07131c 0%, #030b12 58%, #071119 100%);
}

body#top.service-page .related-services::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.3;
  background-image: linear-gradient(135deg, transparent 0 49.7%, rgba(235, 48, 42, 0.24) 49.8% 50%, transparent 50.1% 100%);
  background-size: 86px 86px;
  pointer-events: none;
}

body#top.service-page .related-services .section__intro {
  margin-bottom: clamp(30px, 4vw, 48px);
}

body#top.service-page .related-services h2 {
  max-width: 18ch;
  color: #fff;
  font-size: clamp(1.9rem, 3.3vw, 3.45rem);
  line-height: 1.02;
}

body#top.service-page .related-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
  width: min(1400px, 100%);
  margin: 0 auto;
}

body#top.service-page .related-grid a {
  --related-image: none;
  --related-image-position: center;
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(285px, 27vw, 380px);
  align-items: flex-end;
  padding: clamp(24px, 2.4vw, 34px);
  padding-bottom: clamp(68px, 7vw, 82px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background-color: #07111a;
  background-image:
    linear-gradient(180deg, rgba(3, 12, 21, 0.08) 8%, rgba(3, 12, 21, 0.38) 45%, rgba(3, 12, 21, 0.96) 100%),
    var(--related-image);
  background-position: center, var(--related-image-position);
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% auto;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22), inset 0 1px rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-decoration: none;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), border-color 320ms ease, background-size 420ms cubic-bezier(0.16, 1, 0.3, 1), background-color 320ms ease;
  will-change: transform;
}

body#top.service-page .related-grid a::after {
  position: absolute;
  bottom: clamp(24px, 2.2vw, 30px);
  left: clamp(24px, 2.4vw, 34px);
  content: "Explore service  →";
  color: #ff453f;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), color 300ms ease;
}

body#top.service-page .related-grid a:hover,
body#top.service-page .related-grid a:focus-visible {
  border-color: rgba(239, 55, 48, 0.9);
  background-color: #10202b;
  background-size: 100% 100%, 106% auto;
  transform: translateY(-6px);
}

body#top.service-page .related-grid a:hover::after,
body#top.service-page .related-grid a:focus-visible::after {
  color: #fff;
  transform: translateX(5px);
}

body#top.service-page .related-grid a:active {
  transform: translateY(-2px) scale(0.99);
}

body#top.service-page .related-grid a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

body#top.service-page .related-grid a[href$="/automatic-fire-pumps.html"] { --related-image: url("/images/services/automatic-fire-pumps.webp"); --related-image-position: 64% center; }
body#top.service-page .related-grid a[href$="/automatic-sprinkler-systems.html"] { --related-image: url("/images/services/automatic-sprinklers.webp"); --related-image-position: 62% center; }
body#top.service-page .related-grid a[href$="/deluge-spray-systems.html"] { --related-image: url("/images/services/deluge-spray.webp"); --related-image-position: 62% center; }
body#top.service-page .related-grid a[href$="/design-consulting.html"] { --related-image: url("/images/services/design-consulting.webp"); --related-image-position: 65% center; }
body#top.service-page .related-grid a[href$="/detection-alarm-gas-systems.html"] { --related-image: url("/images/services/detection-alarm-gas.webp"); --related-image-position: 64% center; }
body#top.service-page .related-grid a[href$="/fire-extinguishers.html"] { --related-image: url("/images/services/fire-extinguishers.webp"); --related-image-position: 64% center; }
body#top.service-page .related-grid a[href$="/foam-fire-fighting-systems.html"] { --related-image: url("/images/services/foam-fire-fighting.webp"); --related-image-position: 64% center; }
body#top.service-page .related-grid a[href$="/hydrant-hosereel-systems.html"] { --related-image: url("/images/services/hydrant-hosereel.webp"); --related-image-position: 64% center; }
body#top.service-page .related-grid a[href$="/pressure-reducing-stations.html"] { --related-image: url("/images/services/pressure-reducing-stations.webp"); --related-image-position: 64% center; }

@media (max-width: 900px) {
  body#top.service-page .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body#top.service-page .related-grid a:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body#top.service-page .related-services {
    padding-block: 68px;
  }

  body#top.service-page .related-grid {
    grid-template-columns: 1fr;
  }

  body#top.service-page .related-grid a,
  body#top.service-page .related-grid a:first-child {
    grid-column: auto;
    min-height: 290px;
  }
}

/* Service FAQs: a compact, right-column reference panel for high-intent questions. */
body#top.service-page .faq-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(145deg, #101f2a 0%, #07131c 100%);
  box-shadow: 0 18px 42px rgba(4, 12, 18, 0.18), inset 0 1px rgba(255, 255, 255, 0.08);
  color: #fff;
}

body#top.service-page .faq-panel__kicker {
  margin: 0;
  color: #ff453f;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body#top.service-page .faq-panel h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.38rem, 1.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

body#top.service-page .faq-panel--applications h3 {
  color: #ff453f;
}

body#top.service-page .faq-panel__intro {
  margin: -2px 0 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.55;
}

body#top.service-page .faq-table {
  display: grid;
  margin: 4px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

body#top.service-page .faq-table__row {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

body#top.service-page .faq-table__row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body#top.service-page .faq-table dt {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.28;
}

body#top.service-page .faq-table dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.87rem;
  line-height: 1.55;
}

/* Navbar CTA resolution: this late, scoped rule takes precedence over legacy navbar variants. */
body#top .site-header .nav__links > a.nav__cta {
  box-sizing: border-box;
  display: inline-flex;
  flex: 0 0 216px;
  align-items: center;
  justify-content: space-between;
  min-height: 53px !important;
  margin: 0 0 0 8px !important;
  padding: 0 25px !important;
  border: 1px solid transparent !important;
  border-radius: 6px !important;
  color: #fff !important;
  background: linear-gradient(135deg, #ff5438 0%, #e52222 100%) !important;
  box-shadow: none !important;
  font-family: var(--font-body);
  font-size: 0.9rem !important;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

body#top .site-header .nav__links > a.nav__cta::after {
  display: none !important;
  content: none !important;
}

body#top .site-header .nav__links > a.nav__cta:hover,
body#top .site-header .nav__links > a.nav__cta:focus-visible {
  color: #fff !important;
  background: linear-gradient(135deg, #ff634a 0%, #e52222 100%) !important;
  box-shadow: 0 12px 26px rgba(221, 48, 41, 0.2) !important;
  transform: translateY(-2px);
}

body#top .site-header .nav__links > a.nav__cta:active {
  transform: translateY(0) scale(0.98);
}

body#top .site-header .nav__links > a.nav__cta .nav__cta-arrow {
  display: inline-block;
  margin-left: 22px;
  color: currentColor;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 220ms ease;
}

body#top .site-header .nav__links > a.nav__cta:hover .nav__cta-arrow,
body#top .site-header .nav__links > a.nav__cta:focus-visible .nav__cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 760px) {
  body#top .site-header .nav__links > a.nav__cta {
    flex-basis: auto;
    width: 100%;
    min-height: 53px !important;
    margin: 8px 0 0 !important;
    padding-inline: 18px !important;
  }
}

@media (max-width: 1040px) {
  body#top.service-page .faq-panel {
    max-width: none;
  }
}

/* Mobile navigation: a fully opaque charcoal-black panel preserves contrast over every page image. */
@media (max-width: 760px) {
  /* A transformed fixed header becomes the containing block for the sheet.
     Remove that transform while open so the panel uses the full viewport. */
  body#top.nav-open .site-header {
    overflow: visible !important;
    transform: none !important;
    filter: none !important;
    contain: none !important;
    perspective: none !important;
    will-change: auto !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  body#top.nav-open .site-header .nav {
    overflow: visible !important;
    transform: none !important;
    filter: none !important;
    contain: none !important;
    perspective: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  body#top .site-header .nav__links {
    background: #050708 !important;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: none;
  }

  body#top .site-header .nav__links > a,
  body#top .site-header .nav__dropdown-toggle {
    color: #fff !important;
  }

  body#top .site-header .nav__dropdown-menu {
    background: #020304 !important;
    border-color: rgba(255, 255, 255, 0.16);
  }

  body#top .site-header .nav__dropdown-menu a,
  body#top .site-header .nav__mobile-contact a {
    color: rgba(255, 255, 255, 0.9) !important;
  }
}

/* Mobile accreditation rail: prevent grid stretching and keep the label visually attached to its marks. */
@media (max-width: 760px) {
  body#top .hero__bottom-row {
    height: auto;
    min-height: 0;
  }

  body#top .hero__accreditations {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-self: auto;
    justify-content: flex-start;
    width: 100%;
    min-height: 0 !important;
    height: auto !important;
    max-height: 126px;
    margin: 0;
    padding: 16px 14px;
    gap: 10px;
  }

  body#top .hero__accreditations > p {
    line-height: 1.25;
  }

  body#top .hero__accreditations-viewport {
    flex: 0 0 40px;
    height: 40px;
  }

  body#top .hero__accreditations-track,
  body#top .hero__accreditation-set {
    align-items: center;
  }

  body#top .hero__accreditation-set {
    gap: 8px;
    padding-right: 8px;
  }

  body#top .hero__accreditation-mark {
    width: 74px;
    height: 40px;
  }

  /* Focus controls read as a compact, single-column list on narrow screens—no vertical dividers. */
  body#top .hero__bottom-row .hero__controls {
    margin-bottom: 12px;
  }

  body#top .hero__dot-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  body#top .hero__dot,
  body#top .hero__dot:nth-child(3) {
    grid-column: auto;
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    text-align: left;
  }

  body#top .hero__dot:first-child {
    border-top: 0;
  }
}

/* Mobile navigation sheet: top-aligned flow, consistent targets, and an in-flow Services submenu. */
@media (max-width: 760px) {
  body#top .site-header .nav__links {
    position: fixed;
    top: 82px !important;
    right: 0 !important;
    left: 0 !important;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start !important;
    width: auto !important;
    max-height: calc(100dvh - 82px) !important;
    padding: 18px 20px 24px !important;
    gap: 4px !important;
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    transform-origin: top center;
  }

  body#top .site-header .nav__links > a:not(.nav__cta),
  body#top .site-header .nav__dropdown-toggle {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 50px;
    padding: 0 12px !important;
    border: 0;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-align: left;
  }

  body#top .site-header .nav__dropdown {
    position: static;
    width: 100%;
  }

  body#top .site-header .nav__dropdown-toggle {
    justify-content: space-between;
  }

  body#top .site-header .nav__dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 6px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  body#top .site-header .nav__dropdown.is-open .nav__dropdown-menu {
    display: grid;
    gap: 2px;
  }

  body#top .site-header .nav__dropdown-menu a {
    min-height: 44px;
    padding: 0 12px !important;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 650;
    white-space: normal;
  }

  body#top .site-header .nav__mobile-contact {
    display: grid;
    gap: 2px;
    margin-top: 12px;
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  body#top .site-header .nav__mobile-contact a {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }
}

/* Mobile focus selector: centred labels and a centred active indicator create equal visual weight. */
@media (max-width: 760px) {
  body#top .hero__dot,
  body#top .hero__dot:nth-child(-n + 2),
  body#top .hero__dot:nth-child(3) {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    text-align: center;
  }

  body#top .hero__dot.is-active::after {
    right: auto;
    left: 50%;
    width: min(136px, 46%);
    transform: translateX(-50%);
  }
}

/* Accreditation rail: use border-box sizing so mobile padding cannot push the card beyond the viewport. */
@media (max-width: 760px) {
  body#top .hero__accreditations {
    box-sizing: border-box;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
  }

  body#top .hero__accreditations > p {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  body#top .hero__accreditations-viewport {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}

/* Mobile services: let the introduction take its natural height so the first card follows without a dead zone. */
@media (max-width: 760px) {
  body#top .section--services {
    min-height: 0;
    align-content: start;
    row-gap: 18px;
    padding-top: 52px;
    padding-bottom: 34px;
  }

  body#top .service-gallery__intro {
    min-height: 0;
  }

  body#top .service-gallery__summary {
    margin: 12px 0 0;
  }

  body#top .service-gallery__viewport {
    padding: 4px 2px 14px;
  }
}

/* Mobile accreditation card: five original marks in one centred rail, without duplicate marquee overflow. */
@media (max-width: 760px) {
  body#top .hero__bottom-row {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  body#top .hero__accreditations {
    box-sizing: border-box;
    align-items: center;
    width: calc(100vw - (var(--hero-gutter) * 2));
    max-width: calc(100vw - (var(--hero-gutter) * 2));
    max-height: none;
    margin-inline: auto;
    padding: 14px 12px;
  }

  body#top .hero__accreditations-viewport {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  body#top .hero__accreditations-track {
    display: block;
    width: 100%;
    animation: none;
  }

  body#top .hero__accreditation-set {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    gap: 6px;
    padding: 0;
  }

  body#top .hero__accreditation-set[aria-hidden="true"] {
    display: none;
  }

  body#top .hero__accreditation-mark {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    height: 40px;
  }
}

/* Mobile navigation sheet: structured like a focused contact surface rather than a loose list. */
.nav__mobile-sheet-header,
.nav__item-icon-wrap,
.nav__mobile-page-link,
.nav__urgent,
.nav__mobile-socials {
  display: none;
}

@media (max-width: 760px) {
  body#top .site-header .nav__links {
    top: 12px !important;
    right: 12px !important;
    bottom: 12px;
    left: 12px !important;
    width: auto !important;
    max-height: calc(100dvh - 24px) !important;
    padding: 18px 18px 22px !important;
    gap: 2px !important;
    overflow-x: hidden;
    border: 1px solid rgba(218, 229, 233, 0.28) !important;
    border-radius: 22px !important;
    color: #f6f7f4;
    background:
      radial-gradient(circle at 86% 8%, rgba(210, 45, 42, 0.14), transparent 24%),
      linear-gradient(145deg, #07121f 0%, #020912 64%, #07111c 100%) !important;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  }

  body#top .nav.is-open .nav__toggle {
    opacity: 0;
    pointer-events: none;
  }

  body#top .site-header .nav__mobile-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    margin: -2px 0 14px;
  }

  body#top .site-header .nav__mobile-brand {
    display: inline-flex;
    width: min(198px, calc(100% - 68px));
    min-height: 0;
    padding: 0 !important;
    background: transparent !important;
  }

  body#top .site-header .nav__mobile-brand img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
  }

  body#top .site-header .nav__sheet-close {
    display: grid;
    width: 52px;
    height: 52px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(234, 241, 243, 0.14);
    border-radius: 12px;
    color: #ff453f;
    background: rgba(5, 15, 25, 0.7);
    cursor: pointer;
    transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms ease, background-color 240ms ease;
  }

  body#top .site-header .nav__sheet-close:hover,
  body#top .site-header .nav__sheet-close:focus-visible {
    border-color: rgba(255, 69, 63, 0.65);
    background: rgba(255, 69, 63, 0.08);
  }

  body#top .site-header .nav__sheet-close:active { transform: scale(0.96); }
  body#top .site-header .nav__sheet-close:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
  body#top .site-header .nav__sheet-close-icon { width: 27px; height: 27px; }

  body#top .site-header .nav__links > a:not(.nav__cta),
  body#top .site-header .nav__dropdown-toggle {
    position: relative;
    justify-content: flex-start;
    gap: 16px;
    min-height: 54px;
    padding: 0 8px !important;
    border-radius: 0;
    color: rgba(247, 249, 247, 0.94) !important;
    font-size: 1.02rem;
    font-weight: 720;
  }

  body#top .site-header .nav__links > a:not(.nav__cta)::before,
  body#top .site-header .nav__dropdown-toggle::before {
    position: absolute;
    top: 11px;
    bottom: 11px;
    left: -18px;
    width: 3px;
    border-radius: 3px;
    background: #ff453f;
    content: "";
    opacity: 0;
    transform: scaleY(0.5);
    transition: opacity 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  body#top .site-header .nav__links > a:not(.nav__cta):hover,
  body#top .site-header .nav__links > a:not(.nav__cta):focus-visible,
  body#top .site-header .nav__links > a[aria-current="page"],
  body#top .site-header .nav__dropdown.is-open .nav__dropdown-toggle {
    color: #ff453f !important;
  }

  body#top .site-header .nav__links > a:not(.nav__cta):hover::before,
  body#top .site-header .nav__links > a:not(.nav__cta):focus-visible::before,
  body#top .site-header .nav__links > a[aria-current="page"]::before,
  body#top .site-header .nav__dropdown.is-open .nav__dropdown-toggle::before {
    opacity: 1;
    transform: scaleY(1);
  }

  body#top .site-header .nav__item-icon-wrap {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    color: currentColor;
  }

  body#top .site-header .nav__item-icon { width: 26px; height: 26px; }
  body#top .site-header .nav__dropdown-label { display: inline-flex; align-items: center; gap: 16px; }
  body#top .site-header .nav__dropdown-toggle { justify-content: space-between; }
  body#top .site-header .nav__dropdown-chevron { margin-right: 8px; }

  body#top .site-header .nav__dropdown-menu {
    margin: 2px 0 8px;
    padding: 4px 14px !important;
    border: 1px solid rgba(223, 234, 236, 0.14) !important;
    border-radius: 14px !important;
    background: rgba(8, 20, 33, 0.72) !important;
  }

  body#top .site-header .nav__dropdown-menu a {
    position: relative;
    min-height: 44px;
    padding: 0 0 0 20px !important;
    border-bottom: 1px solid rgba(223, 234, 236, 0.1);
    border-radius: 0;
    color: rgba(247, 249, 247, 0.92) !important;
    font-size: 0.9rem;
    font-weight: 600;
  }

  body#top .site-header .nav__dropdown-menu a:last-child { border-bottom: 0; }
  body#top .site-header .nav__dropdown-menu a::before { position: absolute; left: 2px; color: #ff453f; content: "•"; }
  body#top .site-header .nav__dropdown-menu a:hover,
  body#top .site-header .nav__dropdown-menu a:focus-visible { background: transparent; color: #ff453f !important; transform: translateX(3px); }

  body#top .site-header .nav__mobile-page-link { display: flex !important; }

  body#top .site-header .nav__cta {
    width: 100%;
    min-height: 54px !important;
    margin: 12px 0 2px !important;
    padding: 0 18px !important;
    justify-content: space-between;
    border-radius: 10px !important;
    font-size: 0.94rem;
  }

  body#top .site-header .nav__urgent {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 4px 14px;
    margin-top: 14px;
    padding: 18px;
    border: 1px solid rgba(223, 234, 236, 0.15);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(16, 35, 51, 0.86), rgba(5, 16, 27, 0.8));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  body#top .site-header .nav__urgent-icon {
    display: grid;
    width: 52px;
    height: 52px;
    grid-row: span 2;
    place-items: center;
    border: 1px solid rgba(255, 69, 63, 0.72);
    border-radius: 50%;
    color: #ff453f;
  }

  body#top .site-header .nav__urgent-icon-svg { width: 27px; height: 27px; }
  body#top .site-header .nav__urgent strong { display: block; color: #fff; font-size: 1rem; line-height: 1.22; }
  body#top .site-header .nav__urgent p { margin: 6px 0 0; color: rgba(230, 237, 239, 0.73); font-size: 0.82rem; line-height: 1.45; }

  body#top .site-header .nav__urgent > a {
    display: flex;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: space-between;
    min-height: 30px;
    padding: 7px 0 0 !important;
    color: #ff453f !important;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 800;
  }

  body#top .site-header .nav__urgent-arrow { width: 23px; height: 23px; color: #fff; }

  body#top .site-header .nav__mobile-socials {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(223, 234, 236, 0.13);
  }

  body#top .site-header .nav__mobile-socials > span { color: rgba(230, 237, 239, 0.7); font-size: 0.82rem; font-weight: 700; }
  body#top .site-header .nav__mobile-socials > div { display: flex; flex-wrap: wrap; gap: 8px; }
  body#top .site-header .nav__mobile-socials a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(223, 234, 236, 0.2);
    border-radius: 999px;
    color: rgba(247, 249, 247, 0.92) !important;
    font-size: 0.82rem;
    font-weight: 700;
  }

  body#top .site-header .nav__mobile-socials a:hover,
  body#top .site-header .nav__mobile-socials a:focus-visible {
    border-color: #ff453f;
    color: #ff453f !important;
    background: rgba(255, 69, 63, 0.08);
  }
}

/* Offering menu: group the complete Firecon journey without treating every system as one undifferentiated service. */
body#top .nav__offerings-menu {
  right: 0;
  left: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(154px, 1fr));
  width: min(744px, calc(100vw - 48px));
  min-width: 0;
  gap: 0;
  padding: 16px;
}

body#top .nav__offering-group {
  display: grid;
  align-content: start;
  gap: 2px;
  min-width: 0;
  padding: 0 14px;
}

body#top .nav__offering-group + .nav__offering-group {
  border-left: 1px solid rgba(223, 234, 236, 0.14);
}

body#top .nav__offering-group-title {
  margin: 0 0 7px;
  color: #ff453f;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body#top .nav__offering-group-copy {
  margin: 0 0 10px;
  color: rgba(230, 237, 239, 0.66);
  font-size: 0.7rem;
  line-height: 1.42;
}

body#top .nav__offerings-menu a {
  min-height: 38px;
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 0.78rem;
  line-height: 1.25;
  white-space: normal;
}

@media (max-width: 760px) {
  body#top .site-header .nav__dropdown.is-open .nav__offerings-menu {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 14px !important;
  }

  body#top .site-header .nav__offering-group {
    gap: 0;
    padding: 0;
  }

  body#top .site-header .nav__offering-group + .nav__offering-group {
    padding-top: 14px;
    border-top: 1px solid rgba(223, 234, 236, 0.14);
    border-left: 0;
  }

  body#top .site-header .nav__offering-group-title {
    margin: 0 0 5px;
    padding: 0 2px;
  }

  body#top .site-header .nav__offering-group-copy {
    margin: 0;
    padding: 0 2px 9px;
    font-size: 0.76rem;
  }

  body#top .site-header .nav__offerings-menu a,
  body#top .site-header .nav__offering-group a:last-child {
    min-height: 42px;
    padding: 0 0 0 20px !important;
    border-bottom: 1px solid rgba(223, 234, 236, 0.1);
  }

  body#top .site-header .nav__offering-group a:last-child {
    border-bottom: 0;
  }
}

/* Full offering mega-menu: direct, grouped paths through Firecon's verified services, products and maintenance scopes. */
@media (min-width: 761px) {
  body#top .site-header .nav__dropdown--offerings {
    position: static;
  }

  body#top .site-header .nav__offerings-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: clamp(18px, 3.2vw, 52px);
    left: clamp(18px, 3.2vw, 52px);
    z-index: 12;
    display: block;
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(219, 235, 238, 0.18);
    border-radius: 18px;
    background: linear-gradient(135deg, #07131b 0%, #071017 54%, #09151c 100%);
    box-shadow: 0 26px 56px rgba(2, 8, 13, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  body#top .site-header .nav__mega-main {
    display: grid;
    grid-template-columns: minmax(220px, 1.08fr) minmax(238px, 1.18fr) minmax(195px, 0.95fr) minmax(272px, 1.15fr);
    align-items: stretch;
    padding: 30px 30px 28px;
  }

  body#top .site-header .nav__offering-group,
  body#top .site-header .nav__mega-feature {
    min-width: 0;
  }

  body#top .site-header .nav__offering-group {
    display: grid;
    align-content: start;
    gap: 0;
    padding: 0 26px;
  }

  body#top .site-header .nav__offering-group--core {
    padding-left: 0;
  }

  body#top .site-header .nav__offering-group + .nav__offering-group,
  body#top .site-header .nav__mega-feature {
    border-left: 1px solid rgba(219, 235, 238, 0.14);
  }

  body#top .site-header .nav__mega-heading {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 33px;
    margin-bottom: 13px;
  }

  body#top .site-header .nav__mega-heading-icon {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    color: #ff453f;
  }

  body#top .site-header .nav__mega-heading-icon svg {
    width: 27px;
    height: 27px;
  }

  body#top .site-header .nav__offering-group-title {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  body#top .site-header .nav__mega-link {
    position: relative;
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) 13px;
    gap: 11px;
    min-height: 76px;
    padding: 12px 0 !important;
    border-radius: 0;
    border-bottom: 1px solid rgba(219, 235, 238, 0.12);
    background: transparent !important;
    color: #f8fbfb !important;
    text-decoration: none;
    transition: color 280ms cubic-bezier(0.16, 1, 0.3, 1), background 280ms cubic-bezier(0.16, 1, 0.3, 1), transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  body#top .site-header .nav__mega-link::after,
  body#top .site-header .nav__mega-product-link::after,
  body#top .site-header .nav__mega-feature-actions a::after,
  body#top .site-header .nav__mega-support a::after {
    display: none !important;
    content: none !important;
  }

  body#top .site-header .nav__mega-link--featured {
    margin: 0 0 2px;
    padding: 14px 13px !important;
    border: 1px solid rgba(220, 238, 241, 0.2);
    border-left: 3px solid #ee3b35;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 74, 61, 0.1), rgba(255, 255, 255, 0.035)) !important;
  }

  body#top .site-header .nav__mega-link--featured + .nav__mega-link {
    padding-top: 15px !important;
  }

  body#top .site-header .nav__mega-link-icon {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    color: #ff453f;
  }

  body#top .site-header .nav__mega-link-icon svg {
    width: 27px;
    height: 27px;
  }

  body#top .site-header .nav__mega-link-copy {
    display: grid;
    align-content: center;
    gap: 4px;
    min-width: 0;
  }

  body#top .site-header .nav__mega-link-copy strong {
    color: #f7f9f9;
    font-size: 0.87rem;
    font-weight: 760;
    line-height: 1.2;
  }

  body#top .site-header .nav__mega-link-copy small {
    color: rgba(224, 233, 235, 0.69);
    font-size: 0.71rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.38;
  }

  body#top .site-header .nav__mega-link-arrow {
    align-self: start;
    padding-top: 2px;
    color: rgba(247, 250, 250, 0.82);
    font-size: 1rem;
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), color 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  body#top .site-header .nav__mega-link:hover,
  body#top .site-header .nav__mega-link:focus-visible {
    color: #fff !important;
    transform: translateX(3px);
  }

  body#top .site-header .nav__mega-link:hover .nav__mega-link-arrow,
  body#top .site-header .nav__mega-link:focus-visible .nav__mega-link-arrow {
    color: #ff6259;
    transform: translate(2px, -2px);
  }

  body#top .site-header .nav__mega-product-link {
    display: grid !important;
    grid-template-columns: 12px minmax(0, 1fr) 13px;
    gap: 12px;
    align-items: start;
    min-height: 68px;
    padding: 13px 0 !important;
    border-bottom: 1px solid rgba(219, 235, 238, 0.12);
    border-radius: 0;
    background: transparent !important;
    color: #f7f9f9 !important;
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), color 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  body#top .site-header .nav__mega-product-link > span {
    width: 9px;
    height: 9px;
    margin-top: 4px;
    border: 2px solid #ff453f;
    border-radius: 50%;
  }

  body#top .site-header .nav__mega-product-link strong {
    color: inherit;
    font-size: 0.89rem;
    font-weight: 720;
    line-height: 1.35;
  }

  body#top .site-header .nav__mega-product-link b {
    color: rgba(247, 250, 250, 0.8);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), color 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  body#top .site-header .nav__mega-product-link:hover,
  body#top .site-header .nav__mega-product-link:focus-visible {
    color: #fff !important;
    transform: translateX(3px);
  }

  body#top .site-header .nav__mega-product-link:hover b,
  body#top .site-header .nav__mega-product-link:focus-visible b {
    color: #ff6259;
    transform: translate(2px, -2px);
  }

  body#top .site-header .nav__mega-standards {
    display: grid;
    align-self: end;
    gap: 12px;
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid rgba(219, 235, 238, 0.12);
  }

  body#top .site-header .nav__mega-standards-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
  }

  body#top .site-header .nav__mega-standards-logos > span {
    display: grid;
    width: 37px;
    height: 31px;
    place-items: center;
    overflow: hidden;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.96);
  }

  body#top .site-header .nav__mega-standards-logos img {
    display: block;
    width: 85%;
    height: 78%;
    object-fit: contain;
  }

  body#top .site-header .nav__mega-standards-logos .nav__mega-ul-mark {
    border: 1px solid rgba(245, 249, 249, 0.66);
    border-radius: 50%;
    background: transparent;
    color: #f6f9f9;
    font-size: 0.72rem;
    font-weight: 850;
  }

  body#top .site-header .nav__mega-standards p {
    max-width: 25ch;
    margin: 0;
    color: rgba(224, 233, 235, 0.69);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.42;
  }

  body#top .site-header .nav__mega-feature {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    margin-left: 1px;
    padding: 31px 28px 26px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(4, 12, 18, 0.96) 4%, rgba(4, 12, 18, 0.68) 100%), url("/images/hero-technician-v2.webp") 78% center / cover no-repeat;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  body#top .site-header .nav__mega-feature h3 {
    max-width: 13ch;
    margin: 0;
    color: #f8fafa;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.6vw, 1.75rem);
    font-weight: 760;
    letter-spacing: -0.035em;
    line-height: 1.08;
  }

  body#top .site-header .nav__mega-feature ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
  }

  body#top .site-header .nav__mega-feature li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(247, 250, 250, 0.9);
    font-size: 0.76rem;
    font-weight: 620;
    line-height: 1.3;
  }

  body#top .site-header .nav__mega-check {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    color: #ff453f;
  }

  body#top .site-header .nav__mega-feature-actions {
    display: grid;
    gap: 10px;
  }

  body#top .site-header .nav__mega-feature-actions a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 15px !important;
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 780;
    letter-spacing: 0;
    text-decoration: none;
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background 280ms cubic-bezier(0.16, 1, 0.3, 1), border-color 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  body#top .site-header .nav__mega-outline-action {
    border: 1px solid rgba(239, 246, 246, 0.56);
    background: rgba(4, 12, 18, 0.36) !important;
    color: #fff !important;
  }

  body#top .site-header .nav__mega-primary-action {
    background: linear-gradient(135deg, #ff5a45 0%, #e62727 100%) !important;
    color: #fff !important;
  }

  body#top .site-header .nav__mega-feature-actions a:hover,
  body#top .site-header .nav__mega-feature-actions a:focus-visible {
    transform: translateY(-2px);
  }

  body#top .site-header .nav__mega-outline-action:hover,
  body#top .site-header .nav__mega-outline-action:focus-visible {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12) !important;
  }

  body#top .site-header .nav__mega-primary-action:hover,
  body#top .site-header .nav__mega-primary-action:focus-visible {
    background: linear-gradient(135deg, #ff6a54 0%, #e82727 100%) !important;
  }

  body#top .site-header .nav__mega-support {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(219, 235, 238, 0.14);
  }

  body#top .site-header .nav__mega-support a {
    display: grid !important;
    grid-template-columns: 39px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 13px;
    min-height: 92px;
    padding: 18px 28px !important;
    border-radius: 0;
    background: transparent !important;
    color: #f8fafa !important;
    text-decoration: none;
    transition: background 280ms cubic-bezier(0.16, 1, 0.3, 1), color 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  body#top .site-header .nav__mega-support a + a {
    border-left: 1px solid rgba(219, 235, 238, 0.14);
  }

  body#top .site-header .nav__mega-support-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(219, 235, 238, 0.22);
    border-radius: 50%;
    color: #ff6259;
  }

  body#top .site-header .nav__mega-support-icon svg {
    width: 21px;
    height: 21px;
  }

  body#top .site-header .nav__mega-support a > span:nth-child(2) {
    display: grid;
    gap: 4px;
  }

  body#top .site-header .nav__mega-support strong {
    color: #f8fafa;
    font-size: 0.82rem;
    font-weight: 760;
    line-height: 1.22;
  }

  body#top .site-header .nav__mega-support small {
    color: rgba(224, 233, 235, 0.66);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.32;
  }

  body#top .site-header .nav__mega-support b {
    color: rgba(247, 250, 250, 0.86);
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), color 280ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  body#top .site-header .nav__mega-support a:hover,
  body#top .site-header .nav__mega-support a:focus-visible {
    background: rgba(255, 255, 255, 0.045) !important;
  }

  body#top .site-header .nav__mega-support a:hover b,
  body#top .site-header .nav__mega-support a:focus-visible b {
    color: #ff6259;
    transform: translateX(3px);
  }
}

@media (max-width: 760px) {
  body#top .site-header .nav__dropdown.is-open .nav__offerings-menu {
    display: grid;
    gap: 0;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 12px;
    background: #071017 !important;
  }

  body#top .site-header .nav__mega-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  body#top .site-header .nav__offering-group {
    display: grid;
    gap: 0;
    padding: 18px 16px 4px !important;
  }

  body#top .site-header .nav__offering-group + .nav__offering-group,
  body#top .site-header .nav__mega-feature {
    border-top: 1px solid rgba(219, 235, 238, 0.14);
    border-left: 0;
  }

  body#top .site-header .nav__mega-heading {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
  }

  body#top .site-header .nav__mega-heading-icon {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    color: #ff453f;
  }

  body#top .site-header .nav__mega-heading-icon svg {
    width: 23px;
    height: 23px;
  }

  body#top .site-header .nav__offering-group-title {
    margin: 0;
    padding: 0;
    color: #f8fafa;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  body#top .site-header .nav__mega-link {
    display: grid !important;
    grid-template-columns: 28px minmax(0, 1fr) 12px;
    gap: 10px;
    align-items: center;
    min-height: 49px;
    padding: 9px 0 !important;
    border-bottom: 1px solid rgba(219, 235, 238, 0.1);
    border-radius: 0;
    background: transparent !important;
    color: #fff !important;
  }

  body#top .site-header .nav__mega-link::before,
  body#top .site-header .nav__mega-link::after,
  body#top .site-header .nav__mega-product-link::before,
  body#top .site-header .nav__mega-product-link::after,
  body#top .site-header .nav__mega-support a::before,
  body#top .site-header .nav__mega-support a::after {
    display: none !important;
    content: none !important;
  }

  body#top .site-header .nav__mega-link--featured {
    margin: 0;
    padding: 11px 10px !important;
    border: 1px solid rgba(219, 235, 238, 0.18);
    border-left: 3px solid #ef3b36;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(255, 74, 61, 0.11), rgba(255, 255, 255, 0.035)) !important;
  }

  body#top .site-header .nav__mega-link-icon {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    color: #ff453f;
  }

  body#top .site-header .nav__mega-link-icon svg {
    width: 22px;
    height: 22px;
  }

  body#top .site-header .nav__mega-link-copy {
    min-width: 0;
  }

  body#top .site-header .nav__mega-link-copy strong {
    display: block;
    color: #f8fafa;
    font-size: 0.82rem;
    font-weight: 720;
    line-height: 1.25;
  }

  body#top .site-header .nav__mega-link-copy small {
    display: none;
  }

  body#top .site-header .nav__mega-link-arrow {
    color: rgba(247, 250, 250, 0.74);
    font-size: 0.92rem;
  }

  body#top .site-header .nav__mega-product-link {
    display: grid !important;
    grid-template-columns: 9px minmax(0, 1fr) 12px;
    gap: 10px;
    align-items: center;
    min-height: 48px;
    padding: 9px 0 !important;
    border-bottom: 1px solid rgba(219, 235, 238, 0.1);
    border-radius: 0;
    background: transparent !important;
    color: #f8fafa !important;
  }

  body#top .site-header .nav__mega-product-link > span {
    width: 7px;
    height: 7px;
    border: 1.5px solid #ff453f;
    border-radius: 50%;
  }

  body#top .site-header .nav__mega-product-link strong {
    color: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
  }

  body#top .site-header .nav__mega-product-link b {
    color: rgba(247, 250, 250, 0.74);
    font-size: 0.92rem;
    font-weight: 500;
  }

  body#top .site-header .nav__mega-standards {
    display: grid;
    gap: 9px;
    margin-top: 10px;
    padding: 13px 0 4px;
    border-top: 1px solid rgba(219, 235, 238, 0.1);
  }

  body#top .site-header .nav__mega-standards-logos {
    display: flex;
    gap: 7px;
  }

  body#top .site-header .nav__mega-standards-logos > span {
    display: grid;
    width: 33px;
    height: 28px;
    place-items: center;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.96);
  }

  body#top .site-header .nav__mega-standards-logos img {
    width: 84%;
    height: 76%;
    object-fit: contain;
  }

  body#top .site-header .nav__mega-standards-logos .nav__mega-ul-mark {
    border: 1px solid rgba(245, 249, 249, 0.66);
    border-radius: 50%;
    background: transparent;
    color: #f6f9f9;
    font-size: 0.65rem;
    font-weight: 850;
  }

  body#top .site-header .nav__mega-standards p {
    margin: 0;
    color: rgba(224, 233, 235, 0.7);
    font-size: 0.72rem;
    line-height: 1.4;
  }

  body#top .site-header .nav__mega-feature {
    display: grid;
    gap: 14px;
    padding: 20px 16px;
    background: linear-gradient(105deg, rgba(4, 12, 18, 0.98) 0%, rgba(4, 12, 18, 0.81) 100%), url("/images/hero-technician-v2.webp") 80% center / cover no-repeat;
  }

  body#top .site-header .nav__mega-feature h3 {
    max-width: 18ch;
    margin: 0;
    color: #f8fafa;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 760;
    letter-spacing: -0.03em;
    line-height: 1.1;
  }

  body#top .site-header .nav__mega-feature ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  body#top .site-header .nav__mega-feature li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(247, 250, 250, 0.9);
    font-size: 0.72rem;
    font-weight: 620;
    line-height: 1.32;
  }

  body#top .site-header .nav__mega-check {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    color: #ff453f;
  }

  body#top .site-header .nav__mega-feature-actions {
    display: grid;
    gap: 8px;
  }

  body#top .site-header .nav__mega-feature-actions a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 13px !important;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 760;
  }

  body#top .site-header .nav__mega-outline-action {
    border: 1px solid rgba(239, 246, 246, 0.52);
    background: rgba(4, 12, 18, 0.38) !important;
    color: #fff !important;
  }

  body#top .site-header .nav__mega-primary-action {
    background: linear-gradient(135deg, #ff5a45 0%, #e62727 100%) !important;
    color: #fff !important;
  }

  body#top .site-header .nav__mega-support {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    border-top: 1px solid rgba(219, 235, 238, 0.14);
  }

  body#top .site-header .nav__mega-support a {
    display: grid !important;
    grid-template-columns: 31px minmax(0, 1fr) 12px;
    align-items: center;
    gap: 11px;
    min-height: 64px;
    padding: 12px 16px !important;
    border-radius: 0;
    background: transparent !important;
    color: #f8fafa !important;
  }

  body#top .site-header .nav__mega-support a + a {
    border-top: 1px solid rgba(219, 235, 238, 0.1);
    border-left: 0;
  }

  body#top .site-header .nav__mega-support-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(219, 235, 238, 0.22);
    border-radius: 50%;
    color: #ff6259;
  }

  body#top .site-header .nav__mega-support-icon svg {
    width: 17px;
    height: 17px;
  }

  body#top .site-header .nav__mega-support a > span:nth-child(2) {
    display: grid;
    gap: 2px;
  }

  body#top .site-header .nav__mega-support strong {
    color: #f8fafa;
    font-size: 0.76rem;
    font-weight: 740;
    line-height: 1.2;
  }

  body#top .site-header .nav__mega-support small {
    color: rgba(224, 233, 235, 0.66);
    font-size: 0.66rem;
    line-height: 1.3;
  }

  body#top .site-header .nav__mega-support b {
    color: rgba(247, 250, 250, 0.86);
    font-size: 1rem;
    font-weight: 500;
  }
}

/* Keep the category controls compact on phones; this comes after the gallery base rules. */
@media (max-width: 760px) {
  body#top .section--services .service-gallery__intro {
    min-height: 0;
  }
}

/* Contact details share the page's content guide; icons sit at the row edge. */
body#top.contact-page .contact-details-list .contact-detail {
  grid-template-columns: minmax(0, 1fr) 56px;
}

body#top.contact-page .contact-details-list .contact-detail > span:last-child {
  grid-column: 1;
  grid-row: 1;
}

body#top.contact-page .contact-details-list .contact-detail__icon {
  grid-column: 2;
  grid-row: 1;
}

/* Homepage scroll stages: one measured travel distance and one sticky viewport per section. */
body#top [data-scroll-stage] {
  scroll-margin-top: var(--site-header-height);
}

/* Section entry snapping is coordinated in JavaScript so reload restoration is never re-snapped. */
html {
  scroll-snap-type: none !important;
  overflow-anchor: none;
}

body#top {
  overflow-anchor: none;
}

body#top .section--services {
  display: block;
  padding: 0 var(--hero-gutter);
  align-content: initial;
}

body#top .service-gallery__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(210px, 0.76fr) minmax(0, 3.25fr);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  column-gap: clamp(30px, 4.5vw, 74px);
  row-gap: 18px;
  width: 100%;
  min-height: 100svh;
  padding: clamp(58px, 6vh, 84px) 0 28px;
}

body#top .service-gallery__footer {
  grid-column: 1 / -1;
  width: 100%;
}

@media (min-width: 981px) {
  body#top .services-horizontal.is-scroll-driven {
    --service-stage-height: clamp(420px, calc(100svh - 210px), 580px);
    min-height: calc(100svh + var(--service-scroll-distance, 0px));
    padding: 0 var(--hero-gutter);
    overflow: visible;
  }

  body#top .services-horizontal.is-scroll-driven .service-gallery__stage {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 0;
  }

  body#top .services-horizontal.is-scroll-driven .service-gallery__intro,
  body#top .services-horizontal.is-scroll-driven .service-gallery__viewport,
  body#top .services-horizontal.is-scroll-driven .service-gallery__footer {
    position: relative;
    top: auto;
  }

  body#top .services-horizontal.is-scroll-driven .service-gallery__footer {
    z-index: 4;
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: center;
    width: 100%;
    min-height: 50px;
    padding: 8px 0 0;
    grid-template-columns: minmax(0, 1fr) auto;
    background: transparent;
  }
}

@media (max-width: 980px) {
  body#top .service-gallery__stage {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 64px 0 34px;
    row-gap: 24px;
  }

  body#top .service-gallery__intro {
    min-height: 0;
  }

  body#top .service-gallery__footer {
    grid-column: 1;
  }
}

@media (min-width: 1101px) {
  body#top .industries-showcase.is-scroll-driven {
    min-height: calc(100svh + var(--industry-scroll-distance, 0px));
    padding: 0 var(--hero-gutter);
    overflow: visible;
  }

  body#top .industries-showcase.is-scroll-driven .industries-showcase__inner {
    position: sticky;
    top: 0;
    min-height: 100svh;
    padding: clamp(42px, 5vh, 68px) 0;
    align-content: center;
  }

  body#top .industries-showcase.is-scroll-driven .industry-accordion {
    height: clamp(460px, 54vh, 560px);
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  body#top .industry-accordion {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
  }

  body#top .industry-card {
    width: auto;
    height: 126px;
  }

  body#top .industry-card.is-active {
    grid-column: 1 / -1;
    width: auto;
    height: 360px;
  }
}

@media (max-width: 620px) {
  body#top.contact-page .contact-details-list .contact-detail {
    grid-template-columns: minmax(0, 1fr) 46px;
  }
}
