:root {
  --ink: #111317;
  --muted: #66686d;
  --line: #d8d8d8;
  --soft: #f3f3f3;
  --paper: #f7f7f7;
  --gold: #d7a83f;
  --gold-dark: #bd8e28;
  --dark: #070909;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.mobile-only {
  display: none;
}

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

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 500;
  line-height: .98;
}

h1 {
  color: #fff;
  font-size: clamp(48px, 5vw, 70px);
  max-width: 860px;
}

h2 {
  font-size: clamp(36px, 4.1vw, 58px);
  letter-spacing: 0;
}

h3 {
  font-size: 25px;
  line-height: 1.15;
}

.container {
  width: calc(100% - 48px);
  max-width: var(--max);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  transition: background .25s ease, border-color .25s ease;
}

.site-header.scrolled,
body:not([data-page="home"]):not(.light-nav) .site-header {
  background: rgba(7, 9, 9, .92);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: calc(100% - 48px);
  max-width: var(--max);
  height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 750;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
}

.nav-links a {
  color: rgba(255, 255, 255, .9);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 15px 20px;
  font-weight: 650;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #090b0b;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .55) 42%, rgba(0, 0, 0, .25)),
    linear-gradient(0deg, rgba(0, 0, 0, .85), rgba(0, 0, 0, 0) 42%),
    url("unisphere-hero-background.webp") center / cover no-repeat;
}

.home-hero .hero-bg {
  background-position: center top;
}

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

.page-hero .hero-bg {
  opacity: .78;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 178px 0 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

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

.eyebrow {
  color: var(--ink);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .08em;
  margin-bottom: 28px;
}

.eyebrow.gold {
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 28px;
}

.eyebrow.gold::after {
  content: "";
  width: 70px;
  height: 1px;
  background: currentColor;
}

main .section .eyebrow:not(.gold) {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ededed;
  white-space: nowrap;
  overflow: hidden;
}

main .section .eyebrow:not(.gold)::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

.hero-copy {
  color: rgba(255, 255, 255, .72);
  max-width: 545px;
  margin-top: 24px;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero .button-row {
  animation: hero-rise .75s cubic-bezier(.22, .61, .36, 1) both;
}

.hero h1 {
  animation-delay: .08s;
}

.hero-copy {
  animation-delay: .16s;
}

.hero .button-row {
  animation-delay: .24s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.button-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}

.button-gold {
  color: #050505;
  background: var(--gold);
}

.button-gold:hover {
  background: #e2b95a;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .22);
  background: transparent;
}

.button-dark {
  color: #fff;
  background: var(--ink);
  margin-top: 36px;
}

.logo-strip {
  overflow: hidden;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
  color: var(--ink);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.strip-track span {
  position: relative;
  padding: 40px 62px;
  font-size: 30px;
  line-height: 1;
  font-weight: 850;
  white-space: nowrap;
}

.strip-track span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8c8c8;
  transform: translateY(-50%);
}

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

.section {
  padding: 116px 0;
  background: var(--paper);
}

.mission-section {
  padding: 72px 0 76px;
  background: #fff;
}

.mission-copy {
  max-width: 1040px;
  margin: 0 auto;
  color: #bdbdbd;
  font-size: clamp(32px, 2.78vw, 44px);
  line-height: 1.18;
}

.mission-word {
  color: #bdbdbd;
  transition: color .28s ease;
}

.mission-word.is-active {
  color: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 58px;
}

.section-head h2 {
  max-width: 650px;
}

.section-intro {
  max-width: 420px;
}

.slider-section {
  padding-top: 72px;
  padding-bottom: 36px;
}

.slider-section .section-head h2 {
  max-width: 740px;
  font-size: clamp(50px, 5.45vw, 76px);
}

.slider-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ececec;
  margin-bottom: 30px;
}

.slider-section .eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

.slider-section .arrow-row {
  padding-bottom: 90px;
}

.arrow-row {
  display: flex;
  gap: 12px;
}

.round-arrow {
  width: 49px;
  height: 49px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 25px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.round-arrow:hover {
  transform: translateY(-2px);
  background: #000;
}

.round-arrow.is-disabled {
  opacity: .28;
  cursor: default;
  transform: none;
}

.card-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.card-rail::-webkit-scrollbar {
  display: none;
}

.image-card {
  position: relative;
  scroll-snap-align: start;
  container-type: inline-size;
  transition: transform .25s ease;
}

.image-card:hover {
  transform: translateY(-4px);
}

.image-card > a {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.image-card img {
  width: 100%;
  aspect-ratio: 1 / 1.28;
  object-fit: cover;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 128cqw;
  background: linear-gradient(0deg, rgba(0, 0, 0, .52), rgba(0, 0, 0, 0) 55%);
  pointer-events: none;
}

.image-card h3 {
  position: absolute;
  left: 24px;
  right: 22px;
  top: calc(128cqw - 88px);
  z-index: 1;
  color: #fff;
}

.image-card p {
  margin-top: 20px;
  font-size: 18px;
}

.card-jump {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  font-size: 24px;
}

.progress-dots {
  display: flex;
  gap: 9px;
  margin-top: 44px;
}

.progress-dots span {
  display: block;
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: #d2d2d2;
  transition: width .28s ease, background .28s ease;
}

.progress-dots span.active {
  width: 34px;
  background: var(--ink);
}

.split-grid {
  display: grid;
  grid-template-columns: .95fr .9fr;
  gap: 92px;
  align-items: start;
}

.split-section {
  padding-top: 58px;
  padding-bottom: 68px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 12px 18px;
  margin-bottom: 46px;
  border-radius: 999px;
  background: #ededed;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .11em;
  white-space: nowrap;
  overflow: hidden;
}

.pill span {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
}

.split-grid h2 {
  margin-bottom: 60px;
}

.split-grid h3 {
  margin-bottom: 28px;
  font-weight: 750;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 36px;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 38px;
  color: #555;
  font-size: 18px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #d5d5d5;
  font-size: 15px;
}

.about-rows {
  margin: 0 0 34px;
  border-top: 1px solid var(--line);
}

.about-rows div {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 25px;
  font-weight: 750;
  line-height: 1.1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
}

.split-section .text-link {
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  background: var(--ink);
  font-size: 16px;
  border: 1px solid var(--ink);
}

.quote-image {
  position: relative;
  margin: 0;
  margin-top: 120px;
}

.quote-image img {
  width: 100%;
  aspect-ratio: .92 / 1;
  min-height: 640px;
  max-height: 760px;
  object-fit: cover;
}

.quote-image figcaption {
  position: absolute;
  right: 10%;
  bottom: -42px;
  width: min(76%, 444px);
  padding: 28px 32px;
  background: #fff;
  color: #606060;
  font-size: 25px;
  line-height: 1.18;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
}

.services-section {
  padding: 112px 0 132px;
  background: #f5f5f5;
}

.services-section .section-head {
  display: block;
  max-width: 860px;
  margin: 0 auto 118px;
  text-align: center;
}

.services-section .section-head h2 {
  max-width: 860px;
  font-size: clamp(54px, 5.4vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}

.services-section .section-head h2,
.services-section .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.services-section .section-intro {
  max-width: 800px;
  margin-top: 34px;
  color: #66686d;
  font-size: 24px;
  line-height: 1.32;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border: 0;
}

.service-grid article {
  position: relative;
  min-height: 398px;
  display: flex;
  flex-direction: column;
  padding: 44px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e1e1;
  box-shadow: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-grid article::before {
  content: none;
}

.service-grid article:hover {
  transform: translateY(-5px);
  border-color: #d7d7d7;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .055);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f0f0f0;
  color: var(--ink);
  box-shadow: none;
  transition: background .25s ease, transform .25s ease;
}

.service-icon::after {
  content: none;
}

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

.service-grid article:hover .service-icon {
  background: #ececec;
  transform: translateY(-2px);
}

.service-grid h3 {
  margin: 100px 0 22px;
  font-size: 28px;
  font-weight: 750;
}

.service-grid p {
  font-size: 20px;
  line-height: 1.45;
}

.service-grid article::after {
  content: "VIEW SERVICE \2192";
  display: inline-block;
  margin-top: auto;
  padding-top: 30px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: .02em;
  transition: color .25s ease, transform .25s ease;
}

.service-grid article:hover::after {
  color: var(--ink);
  transform: translateX(4px);
}

.approach-section {
  padding: 128px 0;
  background: #fff;
}

.approach-grid {
  display: grid;
  grid-template-columns: .95fr .95fr;
  gap: 82px;
  align-items: center;
}

.approach-copy > p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 540px;
}

.steps {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.steps article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease;
}

.steps article:hover {
  border-bottom-color: rgba(215, 168, 63, .65);
}

.steps span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.steps p {
  grid-column: 1 / -1;
  max-width: 610px;
  font-size: 18px;
}

.steps article:not(.active) p {
  display: none;
}

.steps article.active {
  border-bottom-color: var(--ink);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonials-section {
  padding: 124px 0 132px;
}

.testimonials-section h2 {
  max-width: 760px;
}

blockquote {
  margin: 0;
  min-height: 285px;
  padding: 38px 34px;
  background: #fff;
  border: 1px solid #e6e6e6;
  position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

blockquote:hover {
  transform: translateY(-9px);
  border-color: rgba(215, 168, 63, .8);
  box-shadow: 0 30px 76px rgba(0, 0, 0, .08);
}

blockquote::before {
  content: "“";
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 30px;
  line-height: .8;
}

blockquote p {
  color: var(--ink);
  font-size: 21px;
}

cite {
  display: block;
  margin-top: 34px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

cite span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-weight: 500;
}

.faq-grid {
  display: grid;
  grid-template-columns: .9fr .9fr;
  gap: 90px;
  align-items: start;
}

.faq-section {
  padding: 124px 0 132px;
  background: #fff;
}

.faq-copy h2 {
  margin-bottom: 54px;
}

.faq-grid a {
  color: var(--ink);
  font-weight: 750;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 28px 24px 0;
  font-size: 20px;
  font-weight: 750;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 24px;
  color: var(--ink);
  font-weight: 800;
}

details[open] summary::after {
  content: "×";
  color: var(--gold-dark);
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 0 28px;
}

.cta-band {
  padding: 84px 0 48px;
  background: var(--dark);
  color: #fff;
}

.cta-band .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px 64px;
  align-items: center;
}

.cta-band .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.cta-band h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(52px, 4.8vw, 76px);
  line-height: 1.02;
}

.cta-band .button {
  align-self: end;
  min-width: 270px;
  min-height: 62px;
  padding: 0 30px;
  font-size: 15px;
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer {
  padding: 38px 0 24px;
  background: #070909;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.55fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(48px, 6vw, 86px);
  padding-bottom: 36px;
}

.footer-brand {
  margin-bottom: 0;
  font-size: 26px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, .64);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 10px;
}

.site-footer h3 {
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.site-footer .text-link.light {
  color: #fff;
  margin-top: 10px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  line-height: 1.4;
}

.plain-page {
  padding-top: 86px;
}

.content-hero {
  padding: 92px 0 72px;
  background: var(--paper);
}

.content-hero h1 {
  color: var(--ink);
  max-width: 980px;
}

.content-hero p {
  max-width: 650px;
  margin-top: 26px;
}

.image-band {
  width: calc(100% - 48px);
  max-width: var(--max);
  margin: 0 auto;
}

.image-band img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 28px;
}

.industry-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.industry-tile h3 {
  margin-top: 22px;
}

.industry-tile p {
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 72px;
}

.contact-panel {
  padding: 34px;
  background: #fff;
  border: 1px solid #e4e4e4;
}

.contact-panel + .contact-panel {
  margin-top: 18px;
}

.contact-panel h3 {
  margin-bottom: 14px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d4d4d4;
  background: #fff;
  color: var(--ink);
  padding: 16px;
  font: inherit;
  font-size: 16px;
  border-radius: 0;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  color: var(--muted);
}

@media (max-width: 760px) {
  .container,
  .nav-shell,
  .image-band {
    width: calc(100% - 32px);
    max-width: var(--max);
  }

  .nav-shell {
    height: 74px;
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
  }

  body.menu-open .nav-links {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(7, 9, 9, .98);
    border: 1px solid rgba(255, 255, 255, .15);
  }

  body.menu-open .nav-links a {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .hero,
  .hero-inner {
    min-height: 860px;
  }

  .hero-bg {
    background-position: 62% top;
  }

  .home-hero .hero-bg {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .64) 48%, rgba(0, 0, 0, .18)),
      linear-gradient(0deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .16) 48%, rgba(0, 0, 0, .08)),
      url("unisphere-hero-background.webp") 74% top / auto 100% no-repeat;
  }

  .home-hero .eyebrow.gold {
    display: inline-block;
  }

  .home-hero .eyebrow.gold::after {
    display: none;
  }

  .hero-inner {
    padding: 142px 0 54px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 45px;
  }

  .section {
    padding: 80px 0;
  }

  .mission-copy {
    font-size: 34px;
  }

  .mission-section {
    padding: 64px 0 68px;
  }

  .section-head,
  .split-grid,
  .approach-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }

  .arrow-row {
    justify-content: flex-start;
  }

  .slider-section {
    padding-top: 60px;
    padding-bottom: 32px;
  }

  .slider-section .section-head h2 {
    font-size: 46px;
  }

  .slider-section .arrow-row {
    padding-bottom: 34px;
  }

  .card-rail {
    grid-auto-columns: min(78vw, 320px);
  }

  .image-card h3 {
    top: calc(128cqw - 88px);
    bottom: auto;
  }

  .split-grid {
    gap: 52px;
  }

  .split-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .split-grid h2 {
    margin-bottom: 38px;
  }

  .quote-image figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    margin: -58px auto 0;
    font-size: 22px;
  }

  .quote-image {
    margin-top: 0;
  }

  .services-section {
    padding-top: 82px;
  }

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

  .service-grid article {
    min-height: 330px;
    padding: 28px;
  }

  .service-grid article::before {
    top: 28px;
    right: 28px;
  }

  .service-icon {
    width: 58px;
    height: 58px;
  }

  .service-icon svg {
    width: 27px;
    height: 27px;
  }

  .approach-photo figcaption {
    width: min(250px, 82%);
    height: 124px;
  }

  .approach-photo img {
    height: auto;
    aspect-ratio: .91 / 1;
  }

  .footer-grid {
    gap: 32px;
    padding-bottom: 30px;
  }

  .cta-band {
    padding: 62px 0 34px;
  }

  .cta-band h2 {
    font-size: 38px;
  }

  .cta-band .button {
    justify-self: start;
    min-width: 0;
    width: 100%;
    max-width: 290px;
    min-height: 54px;
  }

  .site-footer {
    padding: 34px 0 22px;
  }

  .footer-brand {
    font-size: 23px;
  }

  .footer-brand img {
    width: 36px;
    height: 36px;
  }

  .site-footer p,
  .site-footer a {
    font-size: 15px;
  }

  .copyright {
    display: grid;
    gap: 12px;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  p,
  .image-card p,
  .check-list li {
    font-size: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .hero h1 {
    max-width: 340px;
  }

  .home-hero .hero-bg {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .94), rgba(0, 0, 0, .68) 47%, rgba(0, 0, 0, .1)),
      linear-gradient(0deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .18) 52%, rgba(0, 0, 0, .08)),
      url("unisphere-hero-background.webp") 72% top / auto 100% no-repeat;
  }

  h2 {
    font-size: 32px;
  }

  .slider-section .section-head h2,
  .approach-copy h2,
  .testimonials-section h2,
  .faq-copy h2,
  .services-section .section-head h2 {
    font-size: 38px;
    line-height: 1.02;
  }

  .mission-copy {
    font-size: 25px;
    max-width: 350px;
  }

  .mobile-only {
    display: initial;
  }

  .brand span {
    font-size: 18px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .button {
    width: 100%;
  }

  .strip-track span {
    padding: 26px 36px;
    font-size: 20px;
  }

  .pill {
    margin-bottom: 34px;
  }

  .service-grid article {
    min-height: 300px;
  }

  .service-grid h3 {
    margin-top: 72px;
  }

  .about-rows div {
    font-size: 26px;
  }

  .steps h3 {
    font-size: 28px;
  }

  .steps p {
    font-size: 20px;
  }
}

/* Page-specific screenshot matching layer */
body.light-nav .site-header {
  color: var(--ink);
  background: rgba(247, 247, 247, .97);
  border-bottom: 1px solid #dedede;
}

body.light-nav .nav-shell {
  border-bottom: 0;
}

body.light-nav .brand img {
  filter: invert(1);
}

body.light-nav .site-footer .brand img {
  filter: none;
}

body.light-nav .nav-links a {
  color: var(--ink);
}

body.light-nav .nav-links a.active,
body.light-nav .nav-links a:hover {
  color: var(--gold-dark);
}

body.light-nav .nav-cta {
  color: var(--gold-dark);
  background: #fff;
  border-color: #d8d8d8;
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.button-outline {
  color: var(--ink);
  background: #fff;
  border-color: #d8d8d8;
}

.pill-mini {
  display: inline-flex;
  width: auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ededed;
  font-size: 12px;
}

.approach-photo {
  position: relative;
  margin: 0;
}

.approach-photo img {
  width: 100%;
  height: clamp(640px, 49vw, 735px);
  object-fit: cover;
  object-position: center;
}

.approach-photo figcaption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 220px;
  height: 116px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.faq-grid.with-photo,
.faq-section .faq-grid {
  grid-template-columns: .85fr .95fr;
}

.faq-photo {
  position: relative;
  margin: 0;
}

.faq-photo img {
  width: 100%;
  aspect-ratio: .86 / 1;
  object-fit: cover;
}

.faq-photo figcaption {
  position: absolute;
  left: 36px;
  bottom: 36px;
  width: min(310px, calc(100% - 72px));
  padding: 25px;
  background: #fff;
}

.faq-photo strong,
.faq-photo span {
  display: block;
}

.faq-photo strong {
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-photo span {
  color: var(--muted);
  line-height: 1.45;
}

.hero-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: end;
  margin-top: 62px;
}

.hero-line p {
  max-width: 470px;
}

.hero-line .button-row,
.about-hero-bottom .button-row {
  margin: 0;
}

.about-hero {
  padding-top: 86px;
  background: #050505;
  color: #fff;
}

.about-hero-copy {
  padding: 82px 0 30px;
}

.about-hero h1 {
  max-width: 960px;
  font-size: clamp(44px, 4.8vw, 70px);
}

.about-hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 54px;
  align-items: end;
  margin-top: 70px;
}

.about-hero-bottom p {
  max-width: 610px;
  color: rgba(255, 255, 255, .62);
}

.about-hero-media {
  height: 520px;
  overflow: hidden;
  position: relative;
}

.about-hero-media img {
  width: 100%;
  height: calc(100% + 220px);
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--parallax-y, -110px), 0);
  will-change: transform;
}

.about-overview {
  padding: 72px 0 64px;
}

.about-overview .pill {
  margin-bottom: 48px;
}

.about-overview .two-col {
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}

.about-overview .two-col h2 {
  max-width: 880px;
  font-size: clamp(58px, 5.8vw, 86px);
  line-height: 1.03;
}

.about-overview .copy-cols {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: start;
  max-width: none;
  padding: 0;
  background: transparent;
  border: 0;
}

.about-overview .copy-cols p {
  max-width: 650px;
  color: #66686d;
  font-size: 20px;
  line-height: 1.55;
}

.about-overview .copy-cols p + p {
  padding-top: 0;
  border-top: 0;
}

.two-col {
  display: grid;
  grid-template-columns: .74fr 1fr;
  gap: 90px;
  align-items: end;
}

.copy-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 54px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.stat-row div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 126px;
  padding: 30px 34px;
}

.stat-row div + div {
  border-left: 1px solid #e5e5e5;
}

.stat-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.stat-row strong {
  color: var(--ink);
  font-size: clamp(32px, 3vw, 44px);
  line-height: .95;
  text-align: right;
  white-space: nowrap;
}

.dark-panel-section {
  padding: 0 0 56px;
}

.dark-panel {
  width: calc(100% - 48px);
  max-width: 1480px;
  padding: clamp(68px, 6vw, 92px) clamp(46px, 6vw, 76px);
  background: #050505;
  color: #fff;
}

.pill.invert {
  background: #fff;
  color: #050505;
}

.dark-panel h2 {
  max-width: 760px;
  margin-bottom: 64px;
  font-size: clamp(52px, 5vw, 82px);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .16);
}

.principle-grid article {
  position: relative;
  min-height: 310px;
  padding: 40px 38px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .01);
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid article:hover,
.principle-grid article:focus-within {
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(215, 168, 63, .16), rgba(255, 255, 255, .045) 46%, rgba(255, 255, 255, .02)),
    #0b0b0b;
  border-color: rgba(215, 168, 63, .5);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
  transform: translateY(-8px);
}

.principle-grid span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 850;
}

.principle-grid h3 {
  max-width: 270px;
  margin: 58px 0 20px;
  color: #fff;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.06;
}

.principle-grid p {
  max-width: 300px;
  color: rgba(255, 255, 255, .66);
  font-size: 18px;
  line-height: 1.42;
  transition: color .28s ease;
}

.principle-grid article:hover p,
.principle-grid article:focus-within p {
  color: rgba(255, 255, 255, .82);
}

.difference-section {
  padding: clamp(92px, 8vw, 124px) 0 clamp(44px, 4vw, 64px);
}

.difference-section .split-grid {
  grid-template-columns: minmax(0, 480px) minmax(0, 620px);
  gap: clamp(78px, 8vw, 128px);
  align-items: center;
  justify-content: center;
}

.difference-section .pill {
  margin-bottom: 34px;
}

.difference-section h2 {
  max-width: 520px;
  margin-bottom: 34px;
  font-size: clamp(58px, 5.1vw, 78px);
  line-height: 1.03;
}

.difference-section p:not(.pill) {
  max-width: 560px;
  color: #696b70;
  font-size: 20px;
  line-height: 1.52;
}

.difference-section .rounded-media {
  justify-self: end;
  width: min(100%, 620px);
  min-height: 610px;
  aspect-ratio: .92 / 1;
  border-radius: 8px;
  object-position: center;
}

.rounded-media {
  width: 100%;
  aspect-ratio: 1 / .95;
  object-fit: cover;
}

.trusted-section {
  padding: clamp(52px, 5vw, 72px) 0 clamp(112px, 8vw, 140px);
}

.trusted-section .pill {
  margin-bottom: 42px;
}

.trusted-section h2 {
  max-width: 1120px;
  margin-bottom: 58px;
  font-size: clamp(58px, 5.4vw, 82px);
  line-height: 1.04;
}

.link-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.link-card-grid a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 128px;
  padding: 34px 30px;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.12;
  transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.link-card-grid a:hover,
.link-card-grid a:focus-visible {
  border-color: rgba(189, 142, 40, .52);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .08);
  transform: translateY(-4px);
}

.link-card-grid span {
  flex: 0 0 auto;
  color: var(--gold-dark);
  font-size: 24px;
}

.services-top.content-hero,
.industries-top.content-hero {
  padding-top: 78px;
}

body[data-page="services"] {
  --max: 1200px;
}

body[data-page="services"] .plain-page {
  padding-top: 86px;
}

body[data-page="services"] .services-top.content-hero {
  padding: 124px 0 65px;
}

body[data-page="services"] .content-hero h1 {
  max-width: 1240px;
}

body[data-page="services"] .services-top .button-row {
  align-items: center;
  gap: 14px;
}

body[data-page="services"] .services-top .button {
  min-height: 54px;
  padding: 0 24px;
  font-size: 16px;
}

body[data-page="services"] .services-top .button-dark {
  margin-top: 0;
}

body[data-page="services"] .services-top .button-outline {
  min-width: 156px;
}

.industries-top.content-hero {
  padding: 68px 0 42px;
}

.industries-top .container,
.industry-panels .container {
  max-width: 1000px;
}

.industries-top h1 {
  max-width: 760px;
  font-size: clamp(44px, 3.85vw, 56px);
  line-height: .98;
}

.industries-top .hero-line {
  margin-top: 62px;
}

.industries-top .hero-line p {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.35;
}

.industries-top .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

.industries-top .button-dark {
  margin-top: 0;
}

.service-feature {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: #050505;
  overflow: hidden;
}

body[data-page="services"] .service-feature {
  min-height: 700px;
}

.service-feature > img {
  position: absolute;
  inset: -110px 0;
  width: 100%;
  height: calc(100% + 220px);
  object-fit: cover;
  opacity: .72;
  transform: translate3d(0, var(--parallax-y, -80px), 0);
  will-change: transform;
}

.feature-card {
  position: relative;
  z-index: 1;
  width: min(535px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  padding: 54px;
  background: #fff;
}

body[data-page="services"] .feature-card {
  width: min(560px, calc(100% - 48px));
  padding: 57px 46px;
}

.feature-card h2 {
  margin: 34px 0 22px;
  font-size: clamp(38px, 3.7vw, 50px);
}

body[data-page="services"] .feature-card h2 {
  margin: 28px 0 20px;
  font-size: 42px;
  line-height: 1.02;
}

body[data-page="services"] .feature-card p:not(:first-child) {
  font-size: 16px;
  line-height: 1.45;
}

body[data-page="services"] .service-feature + .section {
  padding: 72px 0 86px;
}

body[data-page="services"] .faq-section {
  padding: 82px 0 220px;
}

body[data-page="services"] .cta-band {
  padding: 86px 0 62px;
}

body[data-page="services"] .site-footer {
  padding: 38px 0 22px;
}

body[data-page="services"] .copyright {
  margin-top: 26px;
}

.feature-card span,
.feature-card > p:first-child,
.service-catalog article > span {
  color: #8b8b8b;
  font-size: 12px;
}

.service-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

body[data-page="services"] .service-catalog {
  gap: 78px 32px;
  align-items: stretch;
}

body[data-page="services"] .service-catalog article {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-catalog img {
  width: 100%;
  aspect-ratio: 1 / .88;
  object-fit: cover;
  margin-bottom: 18px;
}

body[data-page="services"] .service-catalog img {
  aspect-ratio: .86 / 1;
}

body[data-page="services"] .service-catalog img[src*="security-vest"] {
  object-position: center top;
}

.service-catalog h3 {
  margin: 14px 0 13px;
}

body[data-page="services"] .service-catalog h3 {
  margin: 12px 0 11px;
  font-size: 22px;
  line-height: 1.15;
}

.service-catalog p {
  font-size: 16px;
}

body[data-page="services"] .service-catalog p {
  font-size: 15px;
  line-height: 1.43;
  margin-bottom: 0;
  flex: 1;
}

.service-catalog a {
  display: inline-block;
  margin-top: 18px;
  font-weight: 850;
  text-decoration: underline;
}

body[data-page="services"] .service-catalog a {
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
}

.light-strip {
  border-top: 0;
}

.light-strip.logo-strip {
  width: calc(100% - 48px);
  max-width: 1000px;
  margin: 0 auto;
  background: var(--paper);
  border-bottom: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.light-strip .strip-track {
  animation-duration: 42s;
}

.light-strip .strip-track span {
  padding: 26px 72px;
  color: rgba(17, 19, 23, .2);
  font-size: 16px;
  font-weight: 850;
}

.light-strip .strip-track span:nth-child(2n) {
  color: var(--ink);
}

.light-strip .strip-track span::before {
  left: 28px;
  width: 4px;
  height: 4px;
  background: rgba(17, 19, 23, .18);
}

.industry-panels {
  padding-top: 34px;
}

.industry-panels .container {
  display: grid;
  gap: 22px;
}

.industry-panels article {
  min-height: 510px;
  display: flex;
  align-items: stretch;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, .1);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .78) 36%, rgba(0, 0, 0, .2) 70%),
    var(--bg) var(--bg-position, center) / cover no-repeat;
}

.industry-panels #catering {
  --bg-position: 76% center;
  --bg-mobile-position: 82% center;
}

.industry-panels #charity {
  --bg-position: 74% center;
  --bg-mobile-position: 78% center;
}

.industry-panels #corporate {
  --bg-position: 72% center;
  --bg-mobile-position: 76% center;
}

.industry-panels #healthcare {
  --bg-position: 76% center;
  --bg-mobile-position: 80% center;
}

.industry-panels #hotels {
  --bg-position: 78% center;
  --bg-mobile-position: 84% center;
}

.industry-panels #high-end-restaurants {
  --bg-position: 76% center;
  --bg-mobile-position: 80% center;
}

.industry-panels #senior {
  --bg-position: 68% center;
  --bg-mobile-position: 74% center;
}

.industry-panels article div {
  width: min(420px, 55%);
  margin: 24px;
  padding: 88px 44px 44px;
  border: 1px solid rgba(255, 255, 255, .16);
}

.industry-panels h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.industry-panels p {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
}

.industry-panels a {
  display: inline-block;
  margin-top: 22px;
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
}

.contact-hero {
  padding: 96px 0 42px;
}

.contact-title {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: end;
}

.contact-title h1 {
  color: var(--ink);
  font-size: clamp(76px, 8vw, 118px);
  line-height: .94;
}

.contact-title p {
  max-width: 520px;
  color: #5e6268;
  font-size: 22px;
  line-height: 1.38;
}

.contact-card-section {
  padding-bottom: 92px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
  gap: clamp(56px, 7vw, 90px);
  align-items: start;
  padding: clamp(44px, 5vw, 66px);
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 22px 70px rgba(17, 19, 23, .06);
}

.contact-copy > p {
  max-width: 470px;
  line-height: 1.5;
}

.contact-card h2 {
  max-width: 420px;
  margin-bottom: 22px;
  font-size: clamp(42px, 4vw, 58px);
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 64px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 0 18px;
  min-height: 82px;
  padding: 18px;
  border: 1px solid #e6e6e6;
  background: #fafafa;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.contact-info-item:hover {
  border-color: rgba(189, 142, 40, .48);
  background: #fff;
  transform: translateY(-2px);
}

.contact-icon {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #050505;
  background: #f1f1f1;
  border: 1px solid #dedede;
  border-radius: 50%;
}

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

.contact-info strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.1;
}

.contact-info a,
.contact-info p {
  min-width: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 22px;
}

.field {
  font-size: 14px;
  font-weight: 800;
}

.contact-form {
  gap: 20px;
}

.contact-form .field {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-form input,
.contact-form textarea {
  margin-top: 9px;
  border-color: #d8d8d8;
  background: #fbfbfb;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--gold-dark);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(215, 168, 63, .16);
}

.contact-form textarea {
  min-height: 174px;
}

.submit-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: center;
}

.submit-row .button {
  width: 170px;
  min-height: 54px;
  margin: 0;
}

.submit-row p,
.submit-row a {
  font-size: 14px;
  color: var(--muted);
}

.submit-row a {
  text-decoration: underline;
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .36s ease, transform .36s ease;
}

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

body.reveal-ready .industry-panels article.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(.985);
  filter: saturate(.94) contrast(.98);
  transition:
    opacity .78s cubic-bezier(.22, .61, .36, 1),
    transform .9s cubic-bezier(.16, 1, .3, 1),
    filter .9s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

body.reveal-ready .industry-panels article.reveal div {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .58s ease,
    transform .72s cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 160ms);
}

body.reveal-ready .industry-panels article.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: saturate(1) contrast(1);
  will-change: auto;
}

body.reveal-ready .industry-panels article.reveal.is-visible div {
  opacity: 1;
  transform: translateY(0);
}

body.reveal-ready .service-grid article.reveal.is-visible:hover,
body.reveal-ready .testimonial-grid blockquote.reveal.is-visible:hover {
  transform: translateY(-9px);
}

body.reveal-ready .principle-grid article.reveal.is-visible:hover,
body.reveal-ready .principle-grid article.reveal.is-visible:focus-within {
  transform: translateY(-8px);
}

.image-card img,
.service-catalog img,
.industry-panels article,
.quote-image img,
.faq-photo img,
.approach-photo img {
  transition: transform .45s ease, filter .45s ease;
}

.image-card:hover img,
.service-catalog article:hover img,
.industry-panels article:hover,
.quote-image:hover img,
.faq-photo:hover img,
.approach-photo:hover img {
  filter: saturate(1.04) contrast(1.03);
}

@media (max-width: 1100px) {
  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .principle-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .14);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .about-hero-media img {
    height: 100%;
    transform: none;
    will-change: auto;
  }

  .service-feature > img {
    inset: 0;
    height: 100%;
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 760px) {
  body.light-nav .menu-toggle {
    border-color: #d6d6d6;
  }

  body.light-nav .menu-toggle span {
    background: var(--ink);
  }

  body.light-nav.menu-open .nav-links {
    background: #fff;
    border-color: #dedede;
  }

  body.light-nav.menu-open .nav-links a {
    border-bottom-color: #eeeeee;
  }

  .approach-grid,
  .faq-grid.with-photo,
  .faq-section .faq-grid,
  .principle-grid,
  .link-card-grid,
  .service-catalog,
  .two-col,
  .copy-cols,
  .form-grid,
  .contact-card,
  .contact-title,
  .about-hero-bottom,
  .hero-line,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .hero-line,
  .about-hero-bottom {
    align-items: start;
    gap: 28px;
    margin-top: 44px;
  }

  .difference-section {
    padding: 72px 0 42px;
  }

  .difference-section .split-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .difference-section h2 {
    margin-bottom: 24px;
    font-size: 44px;
  }

  .difference-section p:not(.pill) {
    font-size: 18px;
  }

  .difference-section .rounded-media {
    justify-self: stretch;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1.02;
  }

  .trusted-section {
    padding: 42px 0 86px;
  }

  .trusted-section .pill {
    margin-bottom: 28px;
  }

  .trusted-section h2 {
    margin-bottom: 34px;
    font-size: 42px;
  }

  .link-card-grid {
    gap: 12px;
  }

  .link-card-grid a {
    min-height: 94px;
    padding: 24px;
    font-size: 18px;
  }

  .about-overview {
    padding: 58px 0 56px;
  }

  .about-overview .pill {
    margin-bottom: 28px;
  }

  .about-overview .two-col {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-overview .two-col h2 {
    font-size: 42px;
  }

  .about-overview .copy-cols {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 0;
  }

  .stat-row {
    margin-top: 32px;
  }

  .stat-row div {
    min-height: 112px;
    padding: 26px 28px;
  }

  .dark-panel-section {
    padding-bottom: 36px;
  }

  .dark-panel {
    width: calc(100% - 32px);
    padding: 46px 24px;
  }

  .dark-panel h2 {
    margin-bottom: 38px;
    font-size: 42px;
  }

  .principle-grid article {
    min-height: 0;
    padding: 30px 24px;
    border-right: 0;
  }

  .principle-grid article:nth-child(n + 2) {
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .principle-grid h3 {
    margin-top: 34px;
    font-size: 28px;
  }

  .principle-grid p {
    font-size: 17px;
  }

  .about-hero-media {
    height: 410px;
  }

  .contact-card {
    padding: 30px;
  }

  .contact-info {
    margin-top: 38px;
  }

  .contact-info-item {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 78px;
    padding: 16px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .industry-panels article {
    min-height: 560px;
    background:
      linear-gradient(0deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .36)),
      var(--bg) var(--bg-mobile-position, var(--bg-position, center)) / cover no-repeat;
  }

  .industry-panels article div {
    width: auto;
    margin: 18px;
    padding: 250px 24px 26px;
  }
}

@media (max-width: 520px) {
  .contact-title h1 {
    font-size: 64px;
  }

  .stat-row,
  .submit-row {
    grid-template-columns: 1fr;
  }

  .stat-row div + div {
    border-left: 0;
    border-top: 1px solid #e5e5e5;
  }
}

@media (max-width: 760px) {
  body[data-page="services"] .services-top.content-hero {
    padding: 62px 0 50px;
  }

  body[data-page="services"] .service-feature {
    min-height: 640px;
    align-items: end;
    padding: 40px 0;
  }

  body[data-page="services"] .service-feature > img {
    object-position: 86% center;
  }

  body[data-page="services"] .feature-card {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 30px;
  }

  body[data-page="services"] .feature-card h2 {
    font-size: 30px;
  }

  body[data-page="services"] .service-feature + .section {
    padding: 56px 0 52px;
  }

  body[data-page="services"] .service-catalog {
    gap: 44px;
  }

  body[data-page="services"] .faq-section {
    padding: 58px 0 92px;
  }

  body[data-page="services"] .cta-band {
    padding: 70px 0 54px;
  }
}
