body.service-page {
  --ink: #040a17;
  --deep: #020611;
  --paper: #f4f5f2;
  --white: #fffffd;
  --blue: #397a9e;
  --blue-light: #78b9da;
  --line: rgba(255, 255, 255, 0.17);
  --display: "Abel", sans-serif;
  --body: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body.service-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--deep);
  font-family: var(--body);
  font-size: 0.82rem;
}

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

a {
  color: inherit;
}

.service-skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
}

.service-skip-link:focus {
  transform: none;
}

.service-shell {
  width: min(100% - clamp(2rem, 7vw, 8rem), 96rem);
  margin-inline: auto;
}

.service-nav {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  padding: 1rem 0;
  border-bottom: 1px solid transparent;
  transition: padding .3s ease, background-color .3s ease, border-color .3s ease;
}

.service-nav.is-scrolled, .service-nav:focus-within {
  padding: 0.65rem 0;
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(2, 6, 17, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.service-nav .navbar-brand img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: cover;
  border-radius: 50%;
}

.service-nav .nav-link {
  color: rgba(255, 255, 253, 0.75) !important;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-nav .nav-link:hover, .service-nav .nav-link:focus-visible, .service-nav .nav-link.active {
  color: var(--white) !important;
}

.service-nav .nav-link.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.2rem;
  background: var(--blue-light);
}

.service-nav .dropdown-menu {
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #081120;
}

.service-nav .dropdown-item {
  padding: 0.7rem 0.85rem;
  color: #b8c4cd;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.service-nav .dropdown-item:hover, .service-nav .dropdown-item:focus, .service-nav .dropdown-item.active {
  color: var(--white);
  background: rgba(57, 122, 158, 0.26);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}

.navbar-toggler {
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.navbar-toggler span {
  display: block;
  height: 1px;
  margin: 0.3rem 0;
  background: #fff;
}

.service-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  padding: 9rem 0 4rem;
  overflow: hidden;
}

.service-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient( 90deg, rgba(2, 6, 17, 0.96) 0%, rgba(2, 6, 17, 0.72) 48%, rgba(2, 6, 17, 0.2) 100% ), linear-gradient(0deg, rgba(2, 6, 17, 0.9), transparent 55%);
}

.service-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.55fr);
  gap: 4rem;
  align-items: end;
}

.service-index {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem;
  color: var(--blue-light);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-index::before {
  content: "";
  width: 3.5rem;
  height: 1px;
  background: currentColor;
}

.service-hero h1 {
  max-width: 64rem;
  margin: 0;
  font: 400 clamp(4.5rem, 11vw, 11rem) / 0.76 var(--display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.service-hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}

.service-hero-copy {
  max-width: 26rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.service-hero-copy p {
  margin: 0 0 1.5rem;
  color: #c4cbd0;
  line-height: 1.8;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.round-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.round-link i {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: normal 1rem/1 var(--body);
  transition: 0.3s ease;
}

.round-link:hover i, .round-link:focus-visible i {
  color: var(--ink);
  background: var(--white);
  transform: rotate(45deg);
}

.service-signature {
  position: absolute;
  right: 4vw;
  top: 8rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.signature-video {
  font: 500 0.64rem/1.5 monospace;
  letter-spacing: 0.12em;
}

.signature-video::before, .signature-video::after {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  margin: 0.5rem 0;
  background: currentColor;
}

.signature-audio {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  height: 4rem;
}

.signature-audio i {
  display: block;
  width: 0.22rem;
  height: var(--h);
  background: currentColor;
  animation: meter 1.4s ease-in-out infinite alternate;
}

.signature-audio i:nth-child(1) {
  --h: 30%;
}

.signature-audio i:nth-child(2) {
  --h: 70%;
}

.signature-audio i:nth-child(3) {
  --h: 45%;
}

.signature-audio i:nth-child(4) {
  --h: 95%;
}

.signature-audio i:nth-child(5) {
  --h: 55%;
}

.signature-audio i:nth-child(6) {
  --h: 80%;
}

.signature-audio i:nth-child(7) {
  --h: 38%;
}

.signature-audio i:nth-child(8) {
  --h: 66%;
}

.signature-web {
  width: 9rem;
  height: 5.5rem;
  border: 1px solid currentColor;
}

.signature-web::before {
  content: "● ● ●";
  display: block;
  padding: 0.4rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.45rem;
}

.signature-3d {
  width: 7rem;
  height: 7rem;
  border: 1px solid currentColor;
  transform: rotate(30deg) skew(-10deg);
}

.signature-3d::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid currentColor;
}

@keyframes meter {
  to {
    height: 15%;
  }
}

.service-section {
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-section-kicker {
  margin: 0;
  color: var(--blue-light);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-head h2 {
  max-width: 58rem;
  margin: 0;
  font: 400 clamp(3rem, 6.5vw, 7rem) / 0.9 var(--display);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.intro-section {
  color: var(--ink);
  background: var(--paper);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(4, 10, 23, 0.18);
  border: 1px solid rgba(4, 10, 23, 0.18);
}

.capability-card {
  min-height: 15rem;
  padding: 1.7rem;
  background: var(--paper);
  transition: 0.3s ease;
}

.capability-card:hover {
  background: #fff;
}

.capability-card span {
  display: block;
  margin-bottom: 3rem;
  color: var(--blue);
  font-size: 0.62rem;
}

.capability-card h3 {
  margin: 0 0 0.7rem;
  font: 400 1.8rem/1 var(--display);
  text-transform: uppercase;
}

.capability-card p {
  margin: 0;
  color: #4c5965;
  font-size: 0.72rem;
  line-height: 1.75;
}

.gallery-section {
  background: #07101d;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.service-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1421;
}

.service-shot img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.78);
  transition: 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-shot:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

.service-shot .service-shot-caption {
  min-height: 5.8rem;
  padding: 1rem;
}

.service-shot span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue-light);
  font-size: 0.56rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-shot strong {
  font: 400 1.2rem/1.15 var(--display);
  text-transform: uppercase;
}

.service-shot button {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.service-shot button:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: -3px;
}

.process-section {
  color: var(--ink);
  background: #dbe6ec;
}

.process-list {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-item {
  counter-increment: process;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink);
}

.process-item::before {
  content: "0" counter(process);
  color: var(--blue);
  font-size: 0.6rem;
}

.process-item h3 {
  margin: 2rem 0 0.6rem;
  font: 400 2rem/1 var(--display);
  text-transform: uppercase;
}

.process-item p {
  color: #4b5862;
  line-height: 1.8;
}

.services-switcher {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  background: var(--deep);
}

.switcher-label {
  margin: 0 0 1.5rem;
  color: #8794a0;
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.switcher-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.switcher-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 5.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  color: #b8c2ca;
  text-decoration: none;
}

.switcher-link:hover, .switcher-link:focus-visible, .switcher-link.active {
  color: var(--white);
  border-color: var(--blue-light);
  background: rgba(57, 122, 158, 0.13);
}

.switcher-link strong {
  font: 400 1.2rem/1 var(--display);
  text-transform: uppercase;
}

.switcher-link span {
  font-size: 0.7rem;
}

.service-footer {
  padding: 2rem 0;
  color: #8794a0;
  background: #01040a;
}

.service-footer .service-shell {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.service-footer a {
  text-decoration: none;
}

.service-footer a:hover {
  color: #fff;
}

.service-lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(1, 4, 10, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}

.service-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.service-lightbox-dialog {
  position: relative;
  width: min(70rem, 92vw);
}

.service-lightbox img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  background: #020611;
}

.service-lightbox-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.8rem);
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: #07101d;
}

.lightbox-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  color: #b7c1c9;
}

.lightbox-meta strong {
  font: 400 1.4rem/1 var(--display);
  text-transform: uppercase;
}

.lightbox-controls {
  display: flex;
  gap: 0.5rem;
}

.lightbox-controls button {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.theme-video .service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  background: repeating-linear-gradient(0deg, transparent 0 3px, #fff 4px);
}

.theme-audio .service-hero h1 span {
  -webkit-text-stroke-color: #78b9da;
}

.theme-web .intro-section {
  background-image: linear-gradient(rgba(57, 122, 158, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(57, 122, 158, 0.08) 1px, transparent 1px);
  background-size: 2rem 2rem;
}

.theme-web .service-shot {
  padding: 0.45rem 0.45rem 0;
  border-radius: 0.55rem;
}

.theme-web .service-shot::before {
  content: "● ● ●";
  display: block;
  height: 1.1rem;
  color: #7b8994;
  font-size: 0.42rem;
}

.theme-3d .gallery-section {
  background-image: linear-gradient(rgba(120, 185, 218, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 185, 218, 0.08) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
}

@media (max-width: 991.98px) {
  .service-nav .navbar-collapse {
    margin-top: 0.7rem;
    padding: 1rem;
    border: 1px solid var(--line);
    background: #07101d;
  }
}

@media (max-width: 991.98px) {
  .service-hero-layout, .section-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .service-hero h1 {
    font-size: clamp(4.2rem, 15vw, 8rem);
  }
}

@media (max-width: 991.98px) {
  .service-signature {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .service-gallery-grid, .switcher-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .process-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .process-item h3 {
    margin-top: 1rem;
  }
}

@media (max-width: 991.98px) {
  .service-hero::after {
    background: linear-gradient( 0deg, rgba(2, 6, 17, 0.97), rgba(2, 6, 17, 0.28) );
  }
}

@media (max-width: 575.98px) {
  .service-shell {
    width: min(100% - 2rem, 96rem);
  }
}

@media (max-width: 575.98px) {
  .service-hero {
    min-height: 46rem;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .service-hero h1 {
    font-size: clamp(3.9rem, 20vw, 6rem);
  }
}

@media (max-width: 575.98px) {
  .service-hero-layout {
    gap: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .capability-grid, .service-gallery-grid, .switcher-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .capability-card {
    min-height: 12rem;
  }
}

@media (max-width: 575.98px) {
  .section-head {
    gap: 1rem;
  }
}

@media (max-width: 575.98px) {
  .service-lightbox {
    padding: 1rem;
  }
}

@media (max-width: 575.98px) {
  .lightbox-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .service-footer .service-shell {
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .service-shot img {
    aspect-ratio: 16/10;
  }
}

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

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

/* Full-height layout: every primary service block occupies one dynamic screen. */

body.service-page {
  --service-screen: 100svh;
  --service-section-pad: clamp(4.9rem, 8svh, 7rem);
}

html {
  scroll-padding-top: 0;
}

.service-hero[id], .service-section[id], .services-switcher[id] {
  scroll-margin-top: 0;
}

.service-hero, .service-section, .services-switcher {
  width: 100%;
  height: var(--service-screen);
  min-height: var(--service-screen);
  max-height: var(--service-screen);
  overflow: clip;
}

.service-section, .services-switcher {
  display: grid;
  align-items: center;
  padding-block: var(--service-section-pad);
}

.service-section > .service-shell, .services-switcher > .service-shell {
  width: min(100% - 3rem, 96rem);
  max-height: 100%;
}

.service-hero {
  min-height: var(--service-screen);
  padding-block: clamp(6.5rem, 14svh, 9rem) clamp(2.25rem, 6svh, 4rem);
}

.service-hero h1 {
  font-size: clamp(4rem, min(11vw, 20svh), 10rem);
}

.service-hero-layout {
  gap: clamp(1.5rem, 5vw, 4rem);
}

.service-hero-copy p {
  margin-bottom: clamp(.75rem, 2svh, 1.5rem);
}

.section-head {
  gap: clamp(.8rem, 2vw, 2rem);
  margin-bottom: clamp(1rem, 4svh, 3rem);
}

.section-head h2 {
  font-size: clamp(2.6rem, min(6.5vw, 10svh), 6.5rem);
}

.capability-card {
  min-height: 0;
  height: clamp(10rem, 30svh, 15rem);
  padding: clamp(1rem, 2.5svh, 1.7rem);
}

.capability-card span {
  margin-bottom: clamp(1rem, 6svh, 3rem);
}

.capability-card h3 {
  font-size: clamp(1.35rem, 3svh, 1.8rem);
}

.capability-card p {
  line-height: 1.55;
}

.service-shot {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  max-height: clamp(14rem, 48svh, 27rem);
}

.service-shot img {
  height: clamp(8rem, 28svh, 19rem);
  aspect-ratio: auto;
}

.service-shot .service-shot-caption {
  min-height: 0;
  padding: clamp(.65rem, 1.8svh, 1rem);
}

.process-list {
  gap: clamp(.8rem, 2vw, 2rem);
}

.process-item {
  padding-top: clamp(.65rem, 2svh, 1.5rem);
}

.process-item h3 {
  margin-top: clamp(.8rem, 5svh, 2rem);
}

.process-item p {
  margin-bottom: 0;
  line-height: 1.55;
}

.switcher-label {
  margin-bottom: clamp(.75rem, 3svh, 1.5rem);
}

.switcher-link {
  min-height: clamp(4.5rem, 13svh, 7rem);
}

@media (max-width: 991.98px) {
  .service-section > .service-shell, .services-switcher > .service-shell {
    width: min(100% - 2rem, 96rem);
  }
}

@media (max-width: 991.98px) {
  .service-hero-layout {
    gap: clamp(1rem, 4svh, 2rem);
  }
}

@media (max-width: 991.98px) {
  .service-hero h1 {
    font-size: clamp(3.5rem, min(15vw, 18svh), 7rem);
  }
}

@media (max-width: 991.98px) {
  .section-head {
    grid-template-columns: 1fr;
    margin-bottom: clamp(.75rem, 2.5svh, 1.5rem);
  }
}

@media (max-width: 991.98px) {
  .service-gallery-grid {
    gap: .6rem;
  }
}

@media (max-width: 991.98px) {
  .service-shot {
    max-height: none;
  }
}

@media (max-width: 991.98px) {
  .service-shot img {
    height: clamp(7rem, 19svh, 11.5rem);
  }
}

@media (max-width: 991.98px) {
  .service-shot .service-shot-caption {
    padding: .65rem;
  }
}

@media (max-width: 991.98px) {
  .service-shot span {
    margin-bottom: .2rem;
    font-size: .48rem;
  }
}

@media (max-width: 991.98px) {
  .service-shot strong {
    font-size: clamp(.9rem, 2.7vw, 1.05rem);
  }
}

@media (max-width: 991.98px) {
  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  body.service-page {
    --service-section-pad: clamp(4.75rem, 8svh, 5.5rem);
  }
}

@media (max-width: 575.98px) {
  .service-hero {
    min-height: var(--service-screen);
    padding-block: clamp(5.5rem, 12svh, 7rem) clamp(1.25rem, 4svh, 2.5rem);
  }
}

@media (max-width: 575.98px) {
  .service-hero h1 {
    font-size: clamp(3.35rem, min(18vw, 16svh), 5.4rem);
  }
}

@media (max-width: 575.98px) {
  .service-index {
    margin-bottom: clamp(.6rem, 2svh, 1rem);
  }
}

@media (max-width: 575.98px) {
  .service-hero-copy {
    padding-top: .7rem;
  }
}

@media (max-width: 575.98px) {
  .service-hero-copy p {
    font-size: .75rem;
    line-height: 1.5;
  }
}

@media (max-width: 575.98px) {
  .round-link i {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .section-head {
    margin-bottom: clamp(.75rem, 2.5svh, 1.25rem);
  }
}

@media (max-width: 575.98px) {
  .section-head h2 {
    font-size: clamp(2.25rem, min(12vw, 7svh), 3.5rem);
  }
}

@media (max-width: 575.98px) {
  .capability-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .capability-card {
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 2.25rem minmax(6.5rem, .55fr) 1fr;
    align-items: center;
    gap: .65rem;
    padding: clamp(.65rem, 1.7svh, .9rem);
  }
}

@media (max-width: 575.98px) {
  .capability-card span, .capability-card h3, .capability-card p {
    margin: 0;
  }
}

@media (max-width: 575.98px) {
  .capability-card h3 {
    font-size: clamp(1.05rem, 4.6vw, 1.4rem);
  }
}

@media (max-width: 575.98px) {
  .capability-card p {
    font-size: clamp(.6rem, 2.5vw, .7rem);
    line-height: 1.35;
  }
}

@media (max-width: 575.98px) {
  .service-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
  }
}

@media (max-width: 575.98px) {
  .service-shot {
    max-height: none;
  }
}

@media (max-width: 575.98px) {
  .service-shot img {
    height: clamp(4.5rem, 15svh, 7.5rem);
  }
}

@media (max-width: 575.98px) {
  .service-shot .service-shot-caption {
    padding: .55rem;
  }
}

@media (max-width: 575.98px) {
  .service-shot span {
    margin-bottom: .2rem;
    font-size: .45rem;
  }
}

@media (max-width: 575.98px) {
  .service-shot strong {
    font-size: clamp(.8rem, 3.5vw, 1rem);
  }
}

@media (max-width: 575.98px) {
  .process-list {
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(4, 10, 23, .18);
  }
}

@media (max-width: 575.98px) {
  .process-item {
    display: grid;
    grid-template-columns: 2rem minmax(6rem, .46fr) 1fr;
    align-items: center;
    gap: .65rem;
    padding: clamp(.6rem, 1.6svh, .85rem);
    border-top: 0;
    background: #dbe6ec;
  }
}

@media (max-width: 575.98px) {
  .process-item h3, .process-item p {
    margin: 0;
  }
}

@media (max-width: 575.98px) {
  .process-item h3 {
    font-size: clamp(1.05rem, 4.6vw, 1.45rem);
  }
}

@media (max-width: 575.98px) {
  .process-item p {
    font-size: clamp(.6rem, 2.5vw, .72rem);
    line-height: 1.35;
  }
}

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

@media (max-width: 575.98px) {
  .switcher-link {
    min-height: clamp(4rem, 13svh, 5.5rem);
    padding: .75rem;
  }
}

@media (max-width: 575.98px) {
  .switcher-link strong {
    font-size: clamp(.9rem, 4vw, 1.15rem);
  }
}

@media (max-height: 560px), (orientation: landscape) and (max-height: 620px) {
  .service-signature {
    display: none;
  }
}

@media (max-height: 560px), (orientation: landscape) and (max-height: 620px) {
  .service-section > .service-shell, .services-switcher > .service-shell {
    padding-block: 1rem;
  }
}

/* Unified navigation: cinematic glass on desktop, white big menu on small screens. */

.nav-menu-eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font: 600 .62rem/1 var(--body);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-primary-item[data-nav-index="01"] {
  order: 1;
}

.nav-primary-item[data-nav-index="02"] {
  order: 2;
}

.nav-primary-item[data-nav-index="03"] {
  order: 3;
}

.nav-primary-item[data-nav-index="04"] {
  order: 4;
}

.nav-primary-item[data-nav-index="05"] {
  order: 5;
}

.nav-primary-item[data-nav-index="06"] {
  order: 6;
}

.nav-primary-item[data-nav-index="07"] {
  order: 7;
}

@media (min-width: 1200px) {
  .service-nav, .service-nav.is-scrolled, .service-nav:focus-within {
    padding: .7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    background: rgba(2, 6, 17, .48);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
  }
}

@media (min-width: 1200px) {
  .service-nav .dropdown-menu {
    background: rgba(4, 10, 23, .88);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
  }
}

@media (max-width: 1199.98px) {
  .service-nav, .service-nav.is-scrolled, .service-nav:focus-within {
    min-height: 76px;
    padding: .75rem 0;
    color: var(--ink);
    background: var(--white);
    border-bottom: 1px solid rgba(4, 10, 23, .12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 1199.98px) {
  .service-nav > .service-shell {
    width: min(100% - 2rem, 96rem);
  }
}

@media (max-width: 1199.98px) {
  .service-nav .navbar-brand, .service-nav .navbar-toggler {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 1199.98px) {
  .service-nav .navbar-toggler {
    border-color: rgba(4, 10, 23, .48);
  }
}

@media (max-width: 1199.98px) {
  .service-nav .navbar-toggler span {
    background: var(--ink);
    transition: transform .22s ease, opacity .16s ease;
  }
}

@media (max-width: 1199.98px) {
  .service-nav .navbar-toggler[aria-expanded="true"] span:first-child {
    transform: translateY(.3rem) rotate(45deg);
  }
}

@media (max-width: 1199.98px) {
  .service-nav .navbar-toggler[aria-expanded="true"] span:last-child {
    transform: translateY(-.3rem) rotate(-45deg);
  }
}

@media (max-width: 1199.98px) {
  .service-nav .navbar-collapse {
    position: fixed;
    z-index: 1;
    inset: 0;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: calc(76px + 1.35rem) clamp(1.25rem, 6vw, 3.5rem) max(1.5rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    background: var(--white);
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .service-nav .navbar-collapse.show, .service-nav .navbar-collapse.collapsing {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 1199.98px) {
  .nav-menu-eyebrow, .nav-primary {
    width: min(100%, 42rem);
    margin-inline: auto !important;
  }
}

@media (max-width: 1199.98px) {
  .nav-primary-item {
    position: relative;
    min-width: 0;
    padding-left: 2.75rem;
    border-bottom: 1px solid rgba(4, 10, 23, .14);
  }
}

@media (max-width: 1199.98px) {
  .nav-primary-item::before {
    content: attr(data-nav-index);
    position: absolute;
    top: 50%;
    left: .1rem;
    color: var(--blue);
    font: 600 .58rem/1 var(--body);
    letter-spacing: .08em;
    transform: translateY(-50%);
  }
}

@media (max-width: 1199.98px) {
  .nav-primary-item.dropdown::before {
    top: 2.1rem;
  }
}

@media (max-width: 1199.98px) {
  .nav-primary-item[data-nav-index="01"] {
    order: 1;
  }
}

@media (max-width: 1199.98px) {
  .nav-primary-item[data-nav-index="02"] {
    order: 2;
  }
}

@media (max-width: 1199.98px) {
  .nav-primary-item[data-nav-index="03"] {
    order: 3;
  }
}

@media (max-width: 1199.98px) {
  .nav-primary-item[data-nav-index="04"] {
    order: 4;
  }
}

@media (max-width: 1199.98px) {
  .nav-primary-item[data-nav-index="05"] {
    order: 5;
  }
}

@media (max-width: 1199.98px) {
  .nav-primary-item[data-nav-index="06"] {
    order: 6;
  }
}

@media (max-width: 1199.98px) {
  .nav-primary-item[data-nav-index="07"] {
    order: 7;
  }
}

@media (max-width: 1199.98px) {
  .service-nav .nav-link, .service-nav .nav-link.active {
    width: 100%;
    min-height: clamp(3.45rem, 7.5svh, 4.35rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 0 !important;
    color: var(--ink) !important;
    font: 400 clamp(1.85rem, 7.5vw, 3.15rem)/.9 var(--display);
    letter-spacing: -.02em;
    text-transform: uppercase;
  }
}

@media (max-width: 1199.98px) {
  .service-nav .nav-link.active {
    color: var(--blue) !important;
  }
}

@media (max-width: 1199.98px) {
  .service-nav .nav-link.active::after {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .service-nav .dropdown-toggle::after {
    width: .55rem;
    height: .55rem;
    margin: 0 .25rem 0 1rem;
    border: 0;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
  }
}

@media (max-width: 1199.98px) {
  .service-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(225deg);
  }
}

@media (max-width: 1199.98px) {
  .service-nav .dropdown-menu {
    position: static !important;
    width: 100%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0 0 .65rem;
    padding: 1px;
    transform: none !important;
    border: 1px solid rgba(4, 10, 23, .12);
    background: rgba(214, 225, 231, .65);
  }
}

@media (max-width: 1199.98px) {
  .service-nav .dropdown-menu.show {
    display: grid;
  }
}

@media (max-width: 1199.98px) {
  .service-nav .dropdown-item {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: .65rem .75rem;
    color: var(--ink);
    background: var(--white);
    font-size: .65rem;
    line-height: 1.25;
  }
}

@media (max-width: 1199.98px) {
  .service-nav .dropdown-item:hover, .service-nav .dropdown-item:focus, .service-nav .dropdown-item.active {
    color: var(--white);
    background: var(--blue);
  }
}

@media (max-width: 1199.98px) {
  .nav-talk {
    margin-top: .7rem;
    padding: 0;
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .service-nav .nav-talk .nav-cta {
    min-height: 3.5rem;
    justify-content: center;
    color: var(--white) !important;
    background: var(--ink);
    border: 0;
    border-radius: 0;
    font: 600 .72rem/1 var(--body);
    letter-spacing: .12em;
  }
}

@media (max-height: 680px) and (max-width: 1199.98px) {
  .service-nav .navbar-collapse {
    padding-top: calc(76px + .75rem);
  }
}

@media (max-height: 680px) and (max-width: 1199.98px) {
  .service-nav .nav-link, .service-nav .nav-link.active {
    min-height: 3rem;
    font-size: clamp(1.55rem, 6.4vw, 2.25rem);
  }
}

@media (max-height: 680px) and (max-width: 1199.98px) {
  .service-nav .dropdown-item {
    min-height: 40px;
  }
}

@media (max-height: 680px) and (max-width: 1199.98px) {
  .nav-talk {
    margin-top: .35rem;
  }
}

