:root {
  --background: #ffffff;
  --foreground: #0a0a0a;
  --muted: #737373;
  --border: #e5e5e5;
  --soft: #f5f5f5;
  --brand-cyan: #12b5e5;
  --brand-lime: #C5D501;
  --brand-ink: #071017;
  --ease: cubic-bezier(0.86, 0, 0.07, 1);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-18: 72px;
  --space-20: 80px;
  --space-24: 96px;
  --space-28: 112px;
  --space-32: 128px;
  --page-gutter: var(--space-4);
  --section-y: var(--space-16);
  --card-gap: var(--space-4);
  --card-pad: var(--space-4);
  --card-radius: var(--space-4);
}

* {
  box-sizing: border-box;
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

@media (pointer: fine) {
  body.custom-cursor-ready,
  body.custom-cursor-ready a,
  body.custom-cursor-ready button,
  body.custom-cursor-ready input,
  body.custom-cursor-ready select,
  body.custom-cursor-ready textarea,
  body.custom-cursor-ready [role="button"],
  body.custom-cursor-ready img,
  body.custom-cursor-ready figure,
  body.custom-cursor-ready .model-card,
  body.custom-cursor-ready .gallery-card,
  body.custom-cursor-ready .gallery-page-card {
    cursor: none;
  }

  .site-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #fff;
    pointer-events: none;
    mix-blend-mode: difference;
    opacity: 0;
    transform: translate3d(var(--cursor-x, -20px), var(--cursor-y, -20px), 0) translate(-50%, -50%);
    transition:
      width .18s ease,
      height .18s ease,
      opacity .18s ease,
      background-color .18s ease;
    will-change: transform;
  }

  body.custom-cursor-ready .site-cursor {
    opacity: 1;
  }

  body.custom-cursor-ready .site-cursor.is-hidden {
    opacity: 0;
  }

  body.custom-cursor-ready .site-cursor.is-image-hover {
    width: 4px;
    height: 4px;
  }

  body.custom-cursor-ready.image-viewer-open,
  body.custom-cursor-ready.image-viewer-open .process-lightbox,
  body.custom-cursor-ready.image-viewer-open .process-lightbox img,
  body.custom-cursor-ready.image-viewer-open .process-lightbox button {
    cursor: pointer;
  }

  body.custom-cursor-ready.image-viewer-open .site-cursor {
    opacity: 0;
  }

}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  gap: 16px;
  background: #fff;
  color: var(--brand-ink);
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility .5s ease;
}

.page-loader-mark {
  position: relative;
  width: 56px;
  height: 56px;
  border: 2px solid #00B2F5;
  border-radius: 16px;
  transform: rotate(45deg);
  animation: page-loader-box 1.05s var(--ease) infinite;
}

.page-loader-mark::before,
.page-loader-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid #C5D501;
  border-radius: 10px;
}

.page-loader-mark::after {
  inset: 20px;
  border-color: var(--brand-ink);
}

.page-loader-text {
  margin-top: 88px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

body.page-ready .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: #fff;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform .46s var(--ease);
}

body.page-exiting::after {
  transform: translateY(0);
}

body.page-ready main,
body.page-ready .site-footer {
  animation: page-content-enter .64s var(--ease);
}

.idle-scroll-cue {
  position: fixed;
  right: auto;
  bottom: 28px;
  left: 50%;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / .48);
  border-radius: 999px;
  background: rgb(255 255 255 / .76);
  color: rgb(7 16 23 / .86);
  opacity: 0;
  pointer-events: none;
  padding: 9px 12px 9px 14px;
  transform: translate3d(-50%, 14px, 0) scale(.96);
  transition: opacity .35s ease, transform .35s ease;
  box-shadow: 0 18px 60px rgb(7 16 23 / .14);
  backdrop-filter: blur(16px);
}

.idle-scroll-cue-text {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.idle-scroll-cue-track {
  position: relative;
  display: grid;
  width: 18px;
  height: 28px;
  place-items: start center;
  border: 1px solid rgb(7 16 23 / .28);
  border-radius: 999px;
  padding-top: 5px;
}

.idle-scroll-cue-track span {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #00B2F5;
  animation: idle-scroll-dot 1.35s cubic-bezier(.22, 1, .36, 1) infinite;
}

body.show-scroll-cue .idle-scroll-cue {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(90%, 48rem);
  overflow: visible;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgb(255 255 255 / .82);
  box-shadow:
    rgba(14, 63, 126, .04) 0 0 0 1px,
    rgba(42, 51, 69, .04) 0 1px 1px -0.5px,
    rgba(42, 51, 70, .04) 0 6px 6px -3px,
    rgba(14, 63, 126, .04) 0 24px 24px -12px;
  backdrop-filter: blur(14px);
  animation: nav-shell-expand 1.04s ease-out both;
  transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgb(255 255 255 / .82);
  box-shadow:
    rgba(14, 63, 126, .04) 0 0 0 1px,
    rgba(42, 51, 69, .04) 0 1px 1px -0.5px,
    rgba(42, 51, 70, .04) 0 6px 6px -3px,
    rgba(14, 63, 126, .04) 0 24px 24px -12px;
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 8px 8px 8px 20px;
  animation: nav-inner-expand 1.04s ease-out both;
}

.brand {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 40px;
}

.desktop-nav,
.contact-link,
.menu-button {
  animation: nav-items-reveal .56s ease-out .36s both;
}

.desktop-nav a,
.contact-link,
.mobile-nav a {
  color: var(--muted);
  font-size: .875rem;
  transition: color .2s ease, opacity .2s ease, background-color .2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--foreground);
}

.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"] {
  color: var(--foreground);
}

.nav-services-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: stretch;
}

.nav-services-trigger {
  display: inline-flex;
  align-items: center;
}

.nav-services-trigger::after {
  content: none;
}

.nav-services-toggle {
  position: relative;
  display: inline-grid;
  width: 20px;
  height: 100%;
  min-height: 32px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
}

.nav-services-toggle::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .24s ease;
}

.nav-services-toggle:hover,
.nav-services-toggle:focus-visible {
  color: var(--foreground);
}

.nav-services-toggle:focus-visible {
  outline: 2px solid #00B2F5;
  outline-offset: 2px;
  border-radius: 999px;
}

.nav-services-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: min(78vw, 430px);
  max-height: min(70vh, 460px);
  overflow: auto;
  border: 1px solid rgb(0 0 0 / .08);
  border-radius: 18px;
  background: rgb(255 255 255 / .96);
  box-shadow: 0 22px 70px rgb(0 0 0 / .14);
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .22s ease, transform .22s ease;
}

.nav-services-menu.is-open .nav-services-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-services-menu.is-open .nav-services-toggle::before {
  transform: translateY(1px) rotate(225deg);
}

.desktop-nav .nav-services-dropdown a {
  border-radius: 12px;
  color: var(--foreground);
  font-size: .78rem;
  line-height: 1.25;
  padding: 10px 12px;
}

.desktop-nav .nav-services-dropdown a:hover,
.desktop-nav .nav-services-dropdown a:focus-visible {
  background: #C5D501;
  color: var(--brand-ink);
}

.mobile-services-list {
  display: grid;
  gap: 10px;
  margin: -4px 0 6px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-left: 14px;
  transform: translateY(-6px);
  transition:
    max-height .32s ease,
    opacity .22s ease,
    transform .22s ease;
}

.mobile-services-list.is-open {
  max-height: 760px;
  opacity: 1;
  transform: translateY(0);
}

.mobile-services-list a {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.2;
}

.mobile-services-list a:hover,
.mobile-services-list a:focus-visible {
  color: var(--foreground);
}

.mobile-services-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-services-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .24s ease;
}

.mobile-services-trigger[aria-expanded="true"]::after {
  transform: translateY(2px) rotate(225deg);
}

.contact-link {
  display: none;
  border-radius: 999px;
  background: #C5D501;
  color: var(--brand-ink);
  padding: 8px 16px;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .36);
}

.contact-link:hover,
.contact-link:focus-visible {
  background: #00B2F5;
  opacity: .88;
}

.menu-button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 2px;
  background: #3f3f46;
  transition: transform .25s ease, opacity .25s ease;
}

.site-header.open .menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.open .menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 24px;
}

.site-header.open {
  border-radius: 24px;
}

.site-header.open .mobile-nav {
  display: grid;
  gap: 18px;
}

.mobile-nav a {
  color: var(--foreground);
  font-size: 1.125rem;
}

.mobile-nav > a:last-child {
  margin-top: 10px;
  border-radius: 999px;
  background: #C5D501;
  color: var(--brand-ink);
  padding: 12px 18px;
  text-align: center;
  font-size: .875rem;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .36);
}

.mobile-nav > a:last-child:hover,
.mobile-nav > a:last-child:focus-visible {
  background: #00B2F5;
}

.hero-section {
  position: relative;
  background: var(--background);
}

.hero-sticky,
.philosophy-sticky,
.tech-sticky,
.gallery-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.hero-frame {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.hero-side {
  display: flex;
  align-items: flex-start;
  height: 100%;
  width: 0;
  gap: 0;
  opacity: 0;
  will-change: transform, width, opacity;
}

.hero-tile {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.hero-left .hero-tile:first-child,
.hero-right .hero-tile:last-child {
  flex-grow: 1;
  height: 100%;
}

.hero-left .hero-tile:last-child,
.hero-right .hero-tile:first-child {
  flex-grow: 1;
  height: clamp(68vh, 78vh, 86vh);
}

.hero-main {
  position: relative;
  --mono-subtitle-offset: 3.2rem;
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  will-change: width;
}

.mono-word {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-200px);
  color: #fff8e7;
  mix-blend-mode: normal;
  font-size: 8rem;
  font-weight: 800;
  line-height: .8;
  white-space: nowrap;
  pointer-events: none;
}

.mono-title {
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0;
  color: #fff8e7;
}

.mono-title span {
  display: inline-block;
  opacity: 0;
  animation: slide-up .8s ease-out forwards;
}

.mono-title span:not(:last-child) {
  margin-right: 0;
}

.mono-brand-subtitle {
  position: relative;
  z-index: 0;
  isolation: isolate;
  margin: 12px 0 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #fff8e7;
  -webkit-text-fill-color: #fff8e7;
  text-shadow: 0 2px 8px rgb(0 0 0 / .72);
  white-space: nowrap;
}

.mono-brand-subtitle::before {
  content: "";
  position: absolute;
  inset: -12px -24px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgb(0 0 0 / .66) 0%, rgb(0 0 0 / .38) 48%, rgb(0 0 0 / 0) 78%);
  filter: blur(7px);
  pointer-events: none;
}

.mono-subtitle-wrap {
  position: absolute;
  top: calc(50% + var(--mono-subtitle-offset) + 14px - 200px);
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  pointer-events: none;
}

.mono-subtitle {
  position: relative;
  isolation: isolate;
  transform: translateY(80%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  mix-blend-mode: normal;
  opacity: 0;
  animation: subtitle-slide-up .8s ease-out forwards;
  animation-delay: .34s;
}

.mono-subtitle::before {
  content: "";
  position: absolute;
  inset: -12px -24px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgb(0 0 0 / .56), rgb(0 0 0 / .28) 48%, rgb(0 0 0 / 0) 76%),
    linear-gradient(90deg, rgb(20 80 170 / 0), rgb(20 80 170 / .34), rgb(20 80 170 / 0));
  filter: blur(8px);
}

.hero-main .banner-picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.hero-main .banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-caption {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
  padding: 0 24px 48px;
  color: #fff;
}

.hero-caption p {
  position: relative;
  display: block;
  max-width: 42rem;
  margin: 0 auto;
  width: fit-content;
  padding: 12px 22px 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.hero-caption p::before {
  content: "";
  position: absolute;
  inset: -18px -34px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 52%, rgb(0 0 0 / .62), rgb(0 0 0 / .34) 42%, rgb(0 0 0 / 0) 74%),
    linear-gradient(90deg, rgb(24 82 160 / 0), rgb(24 82 160 / .32), rgb(24 82 160 / 0));
  filter: blur(10px);
}

.hero-scroll-space {
  height: 90vh;
}

.philosophy-stage {
  position: relative;
  height: 200vh;
}

.philosophy-sticky {
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-headings {
  position: relative;
  width: min(100%, 80rem);
  min-height: 150px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.philosophy-headings h2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 16px;
  text-align: center;
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1.15;
  transform: rotateX(90deg) translateZ(0);
  opacity: 0;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.reveal-copy {
  padding: 48px 24px 96px;
  text-align: center;
}

.reveal-copy p {
  max-width: 72rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.75rem;
  line-height: 1.55;
}

.reveal-word {
  display: inline-block;
  margin-right: .25em;
  opacity: 0;
  filter: blur(40px);
  transition: opacity .3s ease, filter .3s ease;
}

.reveal-letter {
  margin-right: 0;
}

.reveal-line {
  display: block;
  opacity: 0;
  filter: blur(40px);
  transition: opacity .3s ease, filter .3s ease;
}

.sketch-section {
  position: relative;
  min-height: 240vh;
  padding: 0 0 30px;
  background: #05070a;
  overflow: visible;
  perspective: 1400px;
}

.solution-process-heading {
  position: sticky;
  top: 82px;
  z-index: 1;
  max-width: none;
  margin: 0;
  padding: 0 24px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-shadow: 0 12px 36px rgb(0 0 0 / .45);
  transform-origin: center bottom;
  will-change: opacity, filter, transform;
}

.reveal-title {
  opacity: 0;
  filter: blur(18px);
  transform: translateY(28px);
  transition: opacity .75s ease, filter .75s ease, transform .85s var(--ease);
}

.reveal-title.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.scroll-reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(36px);
  transition:
    opacity .82s ease var(--reveal-delay, 0s),
    filter .82s ease var(--reveal-delay, 0s),
    transform .92s var(--ease) var(--reveal-delay, 0s);
  will-change: opacity, filter, transform;
}

.scroll-reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.solution-process-banner {
  position: sticky;
  top: 7.5vh;
  z-index: 2;
  isolation: isolate;
  box-sizing: border-box;
  width: 85vw;
  height: 85vh;
  margin: 0 calc(50% - 42.5vw);
  padding: 10px;
  overflow: hidden;
  border-radius: 0;
  background: #05070a;
  cursor: zoom-in;
  opacity: 0;
  transform: perspective(1400px) rotateX(10deg) translate3d(0, 84px, -70px) scale(.94);
  transform-origin: center center;
  will-change: opacity, transform;
}

.solution-process-banner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 34vh;
  background: linear-gradient(to top, rgb(0 0 0 / .38), rgb(0 0 0 / 0));
  opacity: var(--process-shadow-opacity, .7);
}

.solution-process-banner picture,
.process-lightbox picture {
  display: block;
  width: 100%;
  height: 100%;
}

.solution-process-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 1;
  transform: scale(.98);
  filter: brightness(.68) saturate(.85);
  will-change: transform, filter;
}

.process-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 84px;
  background: rgb(5 7 10 / .96);
}

.process-lightbox[hidden] {
  display: none;
}

.process-lightbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-lightbox-close {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  min-width: 96px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #C5D501;
  color: #071017;
  cursor: pointer;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 22px;
  transform: translateX(-50%);
  box-shadow: 0 18px 50px rgb(0 0 0 / .26);
}

.reveal-image img {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-image.in-view img,
.reveal-card.in-view .reveal-image img {
  opacity: 1;
  transform: scale(1);
}

.technology-stage {
  position: relative;
  overflow: clip;
  --tech-intro-opacity: 0;
  background: #000;
}

.expertise-stage {
  background: #000;
}

.tech-sticky {
  background: #0a0a0a;
  opacity: var(--tech-intro-opacity);
  will-change: opacity;
}

.tech-frame {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 0;
}

.tech-side,
.tech-center {
  position: relative;
  height: 100%;
  overflow: hidden;
  will-change: transform, width, opacity;
}

.tech-side {
  width: 0;
  opacity: 0;
}

.tech-center {
  flex: 0 0 auto;
  width: 100%;
}

.tech-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s ease;
}

.tech-image.base {
  opacity: 1;
}

.tech-overlay {
  position: absolute;
  inset: 0;
  background: rgb(10 10 10 / .4);
}

.tech-title-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.tech-title-stack h2 {
  position: absolute;
  max-width: 48rem;
  margin: 0;
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.12;
}

.tech-heading-word {
  display: inline-block;
  margin-right: .3em;
  opacity: 0;
  filter: blur(40px);
}

.tech-scroll-space {
  height: 400vh;
}

.tech-copy {
  position: relative;
  min-height: 145vh;
  overflow: visible;
  padding: 0 24px;
  background: #000;
  opacity: 1;
}

.tech-copy::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(to bottom, #000, rgb(0 0 0 / 0));
}

.dark-copy p {
  position: sticky;
  top: 50vh;
  z-index: 1;
  max-width: 72rem;
  color: #fff;
  font-size: 28px;
  font-weight: 100;
  line-height: 1.55;
  text-align: left;
  letter-spacing: 0;
  white-space: normal;
  opacity: var(--tech-copy-opacity, 1);
  filter: blur(var(--tech-copy-blur, 0));
  transform: translate3d(0, calc(-50% + var(--tech-copy-y, 0px)), 0);
  will-change: opacity, filter, transform;
}

.gallery-section {
  position: relative;
  margin-top: -50vh;
  min-height: 460vh;
  background: #fff;
}

.work-heading-stage {
  position: sticky;
  top: 82px;
  z-index: 1;
  display: flex;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  padding: 0 24px 20px;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
  filter: blur(18px);
  transform: translate3d(0, 44px, 0);
  transition: opacity .8s ease, filter .8s ease, transform .9s var(--ease);
  will-change: opacity, filter, transform;
}

.gallery-section.work-heading-visible .work-heading-stage {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.gallery-section.work-heading-covered .work-heading-stage {
  opacity: 0;
  filter: blur(18px);
  transform: translate3d(0, -16px, 0);
}

.work-heading-stage h2 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.gallery-sticky {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}

.gallery-stack {
  position: relative;
  width: min(100%, 64rem);
  height: min(78vh, 720px);
}

.gallery-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 0;
  transform: translate3d(0, 100%, 0) scale(.8);
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.gallery-card > img {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 24px 90px rgb(0 0 0 / .22);
}

.models-section {
  background: #fff;
  border-top: 1px solid var(--border);
  padding-bottom: 96px;
  scroll-margin-top: 82px;
}

.models-heading {
  padding: 96px 24px 40px;
  text-align: center;
}

.models-heading h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
}

.models-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(100vw - 48px);
  gap: 0;
  isolation: isolate;
  background: #fff;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding: 0 24px 4px;
  scrollbar-width: none;
}

.models-grid::-webkit-scrollbar {
  display: none;
}

.model-card {
  position: relative;
  padding: 12px;
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
  scroll-snap-align: start;
}

.model-card.is-clickable {
  cursor: pointer;
}

.model-card.is-clickable:focus-visible {
  outline: 3px solid #00B2F5;
  outline-offset: 8px;
}

.model-image {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

.model-image img {
  transition: opacity .7s ease, transform .7s ease;
}

.model-card:hover .model-image img {
  transform: scale(1.05);
}

.model-meta {
  display: block;
  padding: 24px 2px 8px;
}

.model-meta > div {
  width: 100%;
}

.model-meta h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
}

.model-meta p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.5;
}

.editorial-section {
  background: var(--background);
}

.motion-media-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  margin-top: 16px;
}

.motion-media-wrap img {
  transform: scale(1.15) translate3d(0, -15px, 0);
  backface-visibility: hidden;
  will-change: transform;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 24px 0;
}

.capability-list span {
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1;
  padding: 10px 14px;
}

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

.stats-grid div {
  min-width: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 18px;
  text-align: center;
}

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

.stats-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
}

.stats-grid strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.05;
  white-space: nowrap;
}

.stats-grid sup {
  font-size: .55em;
  line-height: 0;
}

.testimonial-section {
  position: relative;
  width: 100%;
  display: flex;
  height: 100svh;
  min-height: 620px;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  background: #00B2F5;
  padding: 0;
}

.packing-3d-scene {
  --scene-rotate-x: -15deg;
  --scene-rotate-y: 24deg;
  --scene-shift-x: 0px;
  --scene-shift-y: 0px;
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: .75;
  pointer-events: none;
  perspective: 980px;
}

.packing-3d-stage {
  position: relative;
  width: min(52vw, 720px);
  aspect-ratio: 1.7 / 1;
  transform:
    translate3d(var(--scene-shift-x), var(--scene-shift-y), 0)
    rotateX(var(--scene-rotate-x))
    rotateY(var(--scene-rotate-y))
    rotateZ(-4deg);
  transform-style: preserve-3d;
  transition: transform .22s ease-out;
  will-change: transform;
}

.packing-pallet,
.packing-crate,
.packing-strap,
.packing-cable {
  position: absolute;
  display: block;
  border-color: rgb(197 213 1 / .92);
  transform-style: preserve-3d;
}

.packing-pallet {
  left: 12%;
  right: 8%;
  bottom: 10%;
  height: 19%;
  border: 3px solid rgb(197 213 1 / .82);
  border-radius: 12px;
  background:
    repeating-linear-gradient(90deg, rgb(197 213 1 / .34) 0 12px, transparent 12px 34px),
    linear-gradient(135deg, rgb(197 213 1 / .22), rgb(197 213 1 / .06));
  box-shadow:
    0 34px 70px rgb(6 68 75 / .32),
    inset 0 0 0 10px rgb(197 213 1 / .09);
  transform: rotateX(72deg) translateZ(-70px);
}

.packing-pallet::before,
.packing-pallet::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  height: 2px;
  background: rgb(197 213 1 / .7);
}

.packing-pallet::before {
  top: 34%;
}

.packing-pallet::after {
  bottom: 34%;
}

.packing-crate {
  border: 3px solid rgb(197 213 1 / .92);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgb(197 213 1 / .2), rgb(197 213 1 / .05)),
    repeating-linear-gradient(90deg, transparent 0 38px, rgb(197 213 1 / .18) 38px 40px);
  box-shadow:
    0 20px 50px rgb(4 45 52 / .24),
    inset 0 0 0 12px rgb(197 213 1 / .08);
  animation: packing-crate-breathe 5.6s ease-in-out infinite;
}

.packing-crate::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 2px solid rgb(197 213 1 / .58);
  border-radius: 8px;
  background:
    linear-gradient(45deg, transparent 48%, rgb(197 213 1 / .62) 49% 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgb(197 213 1 / .62) 49% 51%, transparent 52%);
}

.packing-crate::after {
  content: "";
  position: absolute;
  top: 8%;
  right: -17%;
  width: 17%;
  height: 84%;
  border: 2px solid rgb(197 213 1 / .5);
  border-left: 0;
  border-radius: 0 12px 12px 0;
  background: rgb(197 213 1 / .08);
  transform: skewY(-18deg);
  transform-origin: left center;
}

.packing-crate-main {
  left: 24%;
  top: 19%;
  width: 48%;
  height: 50%;
  transform: translateZ(72px);
}

.packing-crate-small {
  left: 57%;
  top: 37%;
  width: 18%;
  height: 24%;
  transform: translateZ(130px) rotateY(8deg);
  animation-delay: -.9s;
}

.packing-strap {
  top: 14%;
  bottom: 22%;
  width: 8px;
  border-radius: 999px;
  background: rgb(197 213 1 / .86);
  box-shadow: 0 0 22px rgb(197 213 1 / .38);
  transform: translateZ(160px) rotateZ(2deg);
  animation: packing-strap-pulse 2.8s ease-in-out infinite;
}

.packing-strap-one {
  left: 39%;
}

.packing-strap-two {
  left: 63%;
  animation-delay: -.7s;
}

.packing-cable {
  top: 17%;
  width: 4px;
  height: 60%;
  border-radius: 999px;
  background: rgb(197 213 1 / .72);
  box-shadow: 0 0 18px rgb(197 213 1 / .3);
  transform-origin: 50% 100%;
}

.packing-cable-left {
  left: 24%;
  transform: translateZ(145px) rotateZ(-31deg);
}

.packing-cable-right {
  right: 18%;
  transform: translateZ(145px) rotateZ(32deg);
}

.about-assembly-scene {
  opacity: .96;
}

.about-assembly-stage {
  --mark-scale: 1.24;
  width: min(68vw, 820px);
  max-width: calc(100vw - 32px);
  aspect-ratio: 1 / 1;
  animation: about-assembly-float 8s ease-in-out infinite;
}

.about-assembly-stage::before,
.about-assembly-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.about-assembly-stage::before {
  top: 52%;
  width: 78%;
  height: 34%;
  border: 1px solid rgb(197 213 1 / .3);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgb(255 255 255 / .12) 1px, transparent 1px),
    linear-gradient(0deg, rgb(255 255 255 / .1) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .5;
  transform: translate3d(-50%, -50%, -150px) rotateX(66deg) skewX(-11deg);
  animation: about-assembly-field 8s ease-in-out infinite;
}

.about-assembly-stage::after {
  bottom: 19%;
  width: 52%;
  height: 4%;
  border-radius: 999px;
  background: rgb(7 16 23 / .22);
  filter: blur(18px);
  transform: translateX(-50%) rotateX(72deg);
  animation: about-assembly-shadow 8s ease-in-out infinite;
}

.about-box-mark,
.about-assembly-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
}

.about-box-mark {
  z-index: 2;
  width: 360px;
  height: 320px;
  opacity: 1;
  filter: drop-shadow(0 24px 46px rgb(7 16 23 / .2));
  transform: translate(-50%, -50%) scale(var(--mark-scale));
}

.about-box-mark::before {
  content: "";
  position: absolute;
  inset: 56px 48px 48px 58px;
  border: 2px solid rgb(255 255 255 / .24);
  clip-path: polygon(0 28%, 38% 0, 100% 28%, 100% 73%, 50% 100%, 0 73%);
  opacity: 0;
  transform: translateZ(-6px) scale(.92);
  animation: about-box-outline 8s var(--ease) infinite;
}

.about-box-plate {
  position: absolute;
  border: 1px solid rgb(197 213 1 / .5);
  background:
    linear-gradient(135deg, rgb(197 213 1 / .18), rgb(255 255 255 / .08)),
    linear-gradient(90deg, rgb(0 178 245 / .12), transparent);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .12);
  transform-origin: center;
  animation: about-box-plate 8s var(--ease) infinite;
}

.plate-top {
  --from-x: -170px;
  --from-y: -120px;
  --from-r: -38deg;
  --final: rotate(-28deg) skewX(-28deg);
  --plate-opacity: .62;
  left: 108px;
  top: 62px;
  width: 164px;
  height: 54px;
}

.plate-left {
  --from-x: -188px;
  --from-y: 54px;
  --from-r: 22deg;
  --final: rotate(28deg) skewY(28deg);
  --plate-opacity: .52;
  left: 78px;
  top: 142px;
  width: 118px;
  height: 96px;
}

.plate-right {
  --from-x: 172px;
  --from-y: 60px;
  --from-r: -24deg;
  --final: rotate(-28deg) skewY(-28deg);
  --plate-opacity: .54;
  left: 205px;
  top: 144px;
  width: 118px;
  height: 98px;
}

.plate-center {
  --from-x: 18px;
  --from-y: -178px;
  --from-r: 44deg;
  --final: rotate(90deg) skewX(0deg);
  --plate-opacity: .42;
  left: 185px;
  top: 110px;
  width: 34px;
  height: 154px;
}

.about-box-segment {
  position: absolute;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(7 16 23 / .96), rgb(7 16 23 / .72));
  box-shadow:
    0 0 24px rgb(197 213 1 / .24),
    inset 0 0 0 1px rgb(255 255 255 / .08);
  transform-origin: left center;
  animation: about-box-segment 8s var(--ease) infinite;
}

.about-box-segment::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgb(197 213 1 / .9), rgb(0 178 245 / .75), transparent);
  opacity: 0;
  transform: translateX(-45%) scaleX(.28);
  animation: about-segment-spark 8s ease-in-out infinite;
}

.segment-1 {
  --r: -28deg;
  --from-x: -112px;
  --from-y: -88px;
  --from-r: -44deg;
  left: 72px;
  top: 88px;
  width: 150px;
  transform: rotate(-28deg);
}

.segment-2 {
  --r: 28deg;
  --from-x: 108px;
  --from-y: -92px;
  --from-r: 48deg;
  left: 205px;
  top: 18px;
  width: 126px;
  transform: rotate(28deg);
}

.segment-3 {
  --r: 90deg;
  --from-x: 136px;
  --from-y: 56px;
  --from-r: 120deg;
  left: 320px;
  top: 88px;
  width: 156px;
  transform: rotate(90deg);
}

.segment-4 {
  --r: 90deg;
  --from-x: -132px;
  --from-y: 64px;
  --from-r: 70deg;
  left: 72px;
  top: 88px;
  width: 156px;
  transform: rotate(90deg);
}

.segment-5 {
  --r: 28deg;
  --from-x: -92px;
  --from-y: 116px;
  --from-r: 42deg;
  left: 72px;
  top: 244px;
  width: 150px;
  transform: rotate(28deg);
}

.segment-6 {
  --r: -28deg;
  --from-x: 96px;
  --from-y: 126px;
  --from-r: -52deg;
  left: 205px;
  top: 314px;
  width: 126px;
  transform: rotate(-28deg);
}

.segment-7 {
  --r: 90deg;
  --from-x: 4px;
  --from-y: 144px;
  --from-r: 116deg;
  left: 205px;
  top: 158px;
  width: 156px;
  transform: rotate(90deg);
}

.segment-8 {
  --r: 28deg;
  --from-x: -144px;
  --from-y: -8px;
  --from-r: 46deg;
  left: 72px;
  top: 88px;
  width: 150px;
  transform: rotate(28deg);
}

.segment-9 {
  --r: -28deg;
  --from-x: 124px;
  --from-y: -12px;
  --from-r: -46deg;
  left: 205px;
  top: 158px;
  width: 126px;
  transform: rotate(-28deg);
}

.segment-10 {
  --r: 28deg;
  --from-x: -44px;
  --from-y: -136px;
  --from-r: 44deg;
  left: 132px;
  top: 58px;
  width: 152px;
  transform: rotate(28deg);
}

.segment-11 {
  --r: 90deg;
  --from-x: -68px;
  --from-y: 24px;
  --from-r: 112deg;
  left: 132px;
  top: 58px;
  width: 120px;
  transform: rotate(90deg);
}

.segment-12 {
  --r: 90deg;
  --from-x: 72px;
  --from-y: 12px;
  --from-r: 108deg;
  left: 268px;
  top: 84px;
  width: 128px;
  transform: rotate(90deg);
}

.segment-13 {
  --r: 28deg;
  --from-x: -124px;
  --from-y: 32px;
  --from-r: 50deg;
  left: 72px;
  top: 156px;
  width: 150px;
  transform: rotate(28deg);
}

.segment-14 {
  --r: 28deg;
  --from-x: -136px;
  --from-y: 94px;
  --from-r: 46deg;
  left: 72px;
  top: 204px;
  width: 150px;
  transform: rotate(28deg);
}

.about-assembly-logo {
  z-index: 3;
  box-sizing: border-box;
  width: min(60%, 380px);
  height: auto;
  object-fit: contain;
  border: 1px solid rgb(255 255 255 / .72);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgb(255 255 255 / .98), rgb(255 255 255 / .84));
  box-shadow:
    0 30px 80px rgb(7 16 23 / .26),
    inset 0 0 0 1px rgb(197 213 1 / .18);
  opacity: 0;
  padding: clamp(14px, 2.8vw, 28px);
  filter: drop-shadow(0 18px 36px rgb(7 16 23 / .18));
  transform: translate(-50%, -50%) scale(.58) rotateY(-22deg);
  animation: about-logo-reveal 8s var(--ease) infinite;
}

.testimonial-section > img,
.testimonial-shade {
  position: absolute;
  inset: 0;
}

.testimonial-shade {
  background: linear-gradient(to top, rgb(0 0 0 / .7), rgb(0 0 0 / .3), rgb(0 0 0 / 0));
}

.testimonial-content {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 20px;
  padding: 48px 24px 20px;
  transform: none;
}

.testimonial-content p {
  max-width: 64rem;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.45;
}

.testimonial-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #C5D501;
  color: var(--brand-ink);
  padding: 10px 18px;
  font-size: .875rem;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / .36);
  transition: opacity .2s ease, transform .2s ease;
}

.testimonial-link:hover,
.testimonial-link:focus-visible {
  opacity: .88;
  transform: translateY(-1px);
}

.testimonial-stats {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / .64);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.testimonial-stats strong {
  color: #0a0a0a;
  font-weight: 800;
}

.testimonial-section .testimonial-stats div {
  border-color: rgb(255 255 255 / .7);
  padding: clamp(24px, 4vh, 48px) 18px;
}

.testimonial-section .testimonial-stats p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
}

.about-page,
.gallery-page {
  background: #fff;
}

.about-hero {
  display: block;
  padding: 12px 0 96px;
}

.about-copy {
  max-width: 64rem;
  padding: 0 24px;
}

.about-kicker,
.gallery-page-hero p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-copy h1,
.gallery-page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
}

.about-copy h1 {
  max-width: 56rem;
  color: rgb(0 0 0 / .9);
}

.about-subheading,
.gallery-page-hero span {
  display: block;
  max-width: 42rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.about-subheading {
  max-width: 40rem;
  margin-top: 36px;
  color: rgb(0 0 0 / .76);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.55;
}

.about-body-text {
  display: grid;
  max-width: 58rem;
  margin-top: 40px;
  gap: 28px;
}

.about-body-text p {
  margin: 0;
  color: rgb(0 0 0 / .68);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 300;
  line-height: 1.62;
}

.about-body-text p:nth-child(2) {
  color: rgb(0 0 0 / .56);
}

.about-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  border-radius: 999px;
  background: #C5D501;
  color: var(--brand-ink);
  padding: 12px 20px;
  font-size: .9rem;
  font-weight: 700;
  transition: background-color .2s ease, transform .2s ease;
}

.about-action:hover,
.about-action:focus-visible {
  background: #00B2F5;
  transform: translateY(-1px);
}

.about-media {
  width: calc(100% - 24px);
  height: 75svh;
  margin: 0 12px 56px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.about-media img {
  filter: saturate(.95) contrast(1.02);
}

.about-values {
  display: grid;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding: 80px 24px;
  background: #fff;
}

.about-value {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  outline: 0;
  box-shadow: 0 16px 50px rgb(0 0 0 / .04);
  transition:
    border-color .32s ease,
    box-shadow .32s ease,
    transform .38s var(--ease);
}

.about-value::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(0 178 245 / .08) 1px, transparent 1px),
    linear-gradient(0deg, rgb(0 178 245 / .08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .35s ease, transform .55s var(--ease);
}

.about-value::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgb(0 178 245 / .42);
  border-radius: 8px;
  opacity: 0;
  transform: scale(.96);
  transition: opacity .35s ease, transform .55s var(--ease);
}

.about-value:hover,
.about-value:focus-visible {
  border-color: rgb(0 178 245 / .6);
  box-shadow: 0 24px 80px rgb(0 178 245 / .14);
  transform: translateY(-4px);
}

.about-value:hover::before,
.about-value:hover::after,
.about-value:focus-visible::before,
.about-value:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.about-value-copy {
  position: relative;
  z-index: 2;
  transition: transform .48s var(--ease);
}

.about-value-copy > span {
  display: block;
  margin-bottom: 16px;
  color: #00B2F5;
  font-size: .78rem;
  font-weight: 800;
}

.about-value h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.05;
  transition: color .3s ease, transform .48s var(--ease);
}

.about-value p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  transition: opacity .32s ease, filter .32s ease, transform .48s var(--ease);
}

.about-value:hover .about-value-copy,
.about-value:focus-visible .about-value-copy {
  transform: translateY(-4px);
}

.about-value:hover h2,
.about-value:focus-visible h2 {
  color: #071017;
  transform: translateY(-4px);
}

.about-value:hover p,
.about-value:focus-visible p {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(16px);
}

.about-sketch {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  height: 48%;
  min-height: 152px;
  color: #00B2F5;
  opacity: 0;
  transform: translateY(24px) scale(.96);
  transition: opacity .36s ease, transform .56s var(--ease);
  pointer-events: none;
}

.about-value:hover .about-sketch,
.about-value:focus-visible .about-sketch {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sketch-label {
  position: absolute;
  z-index: 4;
  color: #071017;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .42s var(--ease);
}

.sketch-label-top {
  top: 0;
  left: 50%;
  transform: translate(-50%, 12px);
}

.sketch-label-left {
  bottom: 0;
  left: 0;
}

.sketch-label-right {
  right: 0;
  bottom: 0;
}

.about-value:hover .sketch-label,
.about-value:focus-visible .sketch-label {
  opacity: 1;
  transform: translateY(0);
}

.about-value:hover .sketch-label-top,
.about-value:focus-visible .sketch-label-top {
  transform: translate(-50%, 0);
}

.about-value:hover .sketch-label-left,
.about-value:focus-visible .sketch-label-left {
  transition-delay: .06s;
}

.about-value:hover .sketch-label-right,
.about-value:focus-visible .sketch-label-right {
  transition-delay: .12s;
}

.sketch-base,
.sketch-load,
.sketch-line,
.sketch-dot {
  position: absolute;
  display: block;
}

.sketch-base {
  right: 10%;
  bottom: 32px;
  left: 10%;
  height: 38px;
  border: 2px solid #00B2F5;
  border-radius: 4px;
  transform: skewX(-12deg);
}

.sketch-base::before,
.sketch-base::after {
  content: "";
  position: absolute;
  bottom: -16px;
  width: 24px;
  height: 12px;
  border: 2px solid #00B2F5;
  border-top: 0;
}

.sketch-base::before {
  left: 16%;
}

.sketch-base::after {
  right: 16%;
}

.sketch-load {
  top: 36px;
  left: 50%;
  width: 48%;
  height: 54px;
  border: 2px dashed #071017;
  border-radius: 5px;
  background:
    linear-gradient(45deg, transparent 47%, rgb(0 178 245 / .24) 48%, rgb(0 178 245 / .24) 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgb(0 178 245 / .24) 48%, rgb(0 178 245 / .24) 52%, transparent 53%);
  transform: translateX(-50%) rotate(-2deg);
}

.about-sketch-route .sketch-load {
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgb(0 178 245 / .28) 18% 22%, transparent 22% 78%, rgb(0 178 245 / .28) 78% 82%, transparent 82%),
    transparent;
}

.about-sketch-brace .sketch-load {
  background:
    linear-gradient(35deg, transparent 47%, rgb(0 178 245 / .34) 48%, rgb(0 178 245 / .34) 52%, transparent 53%),
    linear-gradient(-35deg, transparent 47%, rgb(0 178 245 / .34) 48%, rgb(0 178 245 / .34) 52%, transparent 53%),
    transparent;
}

.sketch-line {
  height: 2px;
  background: #00B2F5;
  transform-origin: left center;
}

.sketch-line-one {
  top: 36px;
  left: 18%;
  width: 28%;
  transform: rotate(26deg);
}

.sketch-line-two {
  top: 36px;
  right: 18%;
  width: 28%;
  transform: rotate(154deg);
}

.sketch-dot {
  width: 10px;
  height: 10px;
  border: 2px solid #071017;
  border-radius: 50%;
  background: #fff;
}

.sketch-dot-one {
  top: 56px;
  left: 16%;
}

.sketch-dot-two {
  top: 56px;
  right: 16%;
}

.about-blue-band {
  display: grid;
  min-height: 54vh;
  place-items: center;
  background: #00B2F5;
  padding: 72px 24px;
}

.about-blue-band p {
  max-width: 68rem;
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.45;
}

.gallery-page-hero {
  padding: 128px 24px 48px;
  text-align: center;
}

.gallery-page-hero span {
  margin-right: auto;
  margin-left: auto;
}

.gallery-page-grid {
  display: grid;
  gap: 4px;
  padding: 0 4px 96px;
}

.gallery-page-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: #101010;
}

.gallery-page-card img {
  transform: scale(1.02);
  transition: transform .8s var(--ease), filter .35s ease;
}

.gallery-page-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.06);
}

.gallery-page-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 8px 24px rgb(0 0 0 / .55);
}

.gallery-page-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / .55), rgb(0 0 0 / 0) 46%);
  pointer-events: none;
}

.contact-page {
  background: #fff;
}

.contact-page .site-footer {
  background: #fff;
}

.contact-main {
  display: flex;
  min-height: 100svh;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
}

.contact-shell {
  display: grid;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

.contact-panel {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 112px 24px 48px;
}

.contact-mark {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
}

.contact-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-copy {
  max-width: 27rem;
  text-align: center;
}

.contact-copy p,
.contact-copy span {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.6;
}

.contact-copy p {
  color: var(--foreground);
  font-weight: 700;
  text-transform: uppercase;
}

.contact-copy h1 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 6vw, 3.35rem);
  font-weight: 500;
  line-height: 1.02;
}

.contact-form {
  width: min(100%, 31rem);
  margin-top: 28px;
}

.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

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

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

.contact-field {
  position: relative;
  display: grid;
  gap: 7px;
  min-width: 0;
}

.contact-wide {
  grid-column: 1 / -1;
}

.contact-form label > span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.contact-form .contact-field-label {
  display: inline-flex;
  width: fit-content;
  align-items: flex-start;
  gap: var(--space-1);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.required-marker {
  color: #d92d20;
  font-size: .85rem;
  font-weight: 800;
  line-height: 1;
}

.contact-phone-group {
  display: grid;
  grid-template-columns: minmax(92px, .72fr) minmax(0, 1.6fr);
  gap: var(--space-2);
  min-width: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  background: #fff;
  color: var(--foreground);
  font: inherit;
  font-size: .85rem;
  outline: 0;
  padding: 13px 16px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.contact-field .field-warning {
  position: absolute;
  right: var(--space-3);
  bottom: 14px;
  z-index: 3;
  display: none;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d92d20;
  color: #fff;
  cursor: help;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.contact-field .field-warning::after {
  content: "Required field";
  position: absolute;
  right: 0;
  bottom: calc(100% + var(--space-2));
  width: max-content;
  max-width: 160px;
  border-radius: 6px;
  background: #b42318;
  color: #fff;
  opacity: 0;
  padding: var(--space-2) var(--space-3);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
  pointer-events: none;
  transform: translateY(var(--space-1));
  transition: opacity .18s ease, transform .18s ease;
}

.contact-field .field-warning:hover::after,
.contact-field .field-warning:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.contact-field.is-invalid .field-warning {
  display: inline-flex;
}

.contact-field.is-invalid input,
.contact-field.is-invalid select {
  border-color: #d92d20;
  box-shadow:
    0 0 0 4px rgb(217 45 32 / .14),
    0 0 18px rgb(217 45 32 / .24);
}

.contact-field.is-invalid > input,
.contact-field.is-invalid > select,
.contact-field.is-invalid .contact-phone-group input {
  padding-right: 42px;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #0a0a0a 50%),
    linear-gradient(135deg, #0a0a0a 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 14px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-form textarea {
  min-height: 104px;
  resize: vertical;
  border-radius: 18px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #C5D501;
  box-shadow: 0 0 0 4px rgb(197 213 1 / .22);
  transform: translateY(-1px);
}

.contact-submit {
  width: 100%;
  margin-top: 14px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  cursor: pointer;
  padding: 14px 18px;
  font-size: .85rem;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #C5D501;
  color: #071017;
  transform: translateY(-1px);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: .58;
  transform: none;
}

.contact-status {
  min-height: 1.2rem;
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: .75rem;
}

.contact-status.is-success,
.contact-status.is-error {
  margin-top: var(--space-4);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: var(--space-3) var(--space-4);
  font-size: .82rem;
  line-height: 1.45;
}

.contact-status.is-success {
  border-color: rgb(197 213 1 / .72);
  background: rgb(197 213 1 / .18);
  color: var(--brand-ink);
}

.contact-status.is-error {
  border-color: rgb(180 38 38 / .24);
  background: rgb(180 38 38 / .08);
  color: #8f1f1f;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 28px;
}

.contact-direct a {
  color: var(--muted);
  font-size: .75rem;
  transition: color .2s ease;
}

.contact-direct a:hover {
  color: var(--foreground);
}

.contact-art {
  position: relative;
  --reveal-x: 50%;
  --reveal-y: 50%;
  --reveal-opacity: 0;
  --amoeba-main-w: 176px;
  --amoeba-main-h: 120px;
  --amoeba-a-x: 82px;
  --amoeba-a-y: -34px;
  --amoeba-a-w: 92px;
  --amoeba-a-h: 66px;
  --amoeba-b-x: -86px;
  --amoeba-b-y: -28px;
  --amoeba-b-w: 74px;
  --amoeba-b-h: 58px;
  --amoeba-c-x: 52px;
  --amoeba-c-y: 76px;
  --amoeba-c-w: 68px;
  --amoeba-c-h: 46px;
  --amoeba-d-x: -44px;
  --amoeba-d-y: 72px;
  --amoeba-d-w: 58px;
  --amoeba-d-h: 50px;
  --amoeba-e-x: 6px;
  --amoeba-e-y: -76px;
  --amoeba-e-w: 64px;
  --amoeba-e-h: 42px;
  display: none;
  min-height: 100svh;
  overflow: hidden;
  background: #101010;
  cursor: none;
}

.contact-art img {
  position: absolute;
  inset: 0;
  transform: scale(1.08);
}

.contact-art-base {
  z-index: 0;
  filter: grayscale(1) contrast(1.18);
}

.contact-art-color {
  z-index: 3;
  opacity: var(--reveal-opacity);
  filter: none;
  -webkit-mask-image:
    radial-gradient(ellipse var(--amoeba-main-w) var(--amoeba-main-h) at var(--reveal-x) var(--reveal-y), #000 0 46%, rgb(0 0 0 / .78) 66%, rgb(0 0 0 / 0) 100%),
    radial-gradient(ellipse var(--amoeba-a-w) var(--amoeba-a-h) at calc(var(--reveal-x) + var(--amoeba-a-x)) calc(var(--reveal-y) + var(--amoeba-a-y)), #000 0 44%, rgb(0 0 0 / .62) 68%, rgb(0 0 0 / 0) 100%),
    radial-gradient(ellipse var(--amoeba-b-w) var(--amoeba-b-h) at calc(var(--reveal-x) + var(--amoeba-b-x)) calc(var(--reveal-y) + var(--amoeba-b-y)), #000 0 42%, rgb(0 0 0 / .58) 69%, rgb(0 0 0 / 0) 100%),
    radial-gradient(ellipse var(--amoeba-c-w) var(--amoeba-c-h) at calc(var(--reveal-x) + var(--amoeba-c-x)) calc(var(--reveal-y) + var(--amoeba-c-y)), #000 0 42%, rgb(0 0 0 / .54) 70%, rgb(0 0 0 / 0) 100%),
    radial-gradient(ellipse var(--amoeba-d-w) var(--amoeba-d-h) at calc(var(--reveal-x) + var(--amoeba-d-x)) calc(var(--reveal-y) + var(--amoeba-d-y)), #000 0 41%, rgb(0 0 0 / .5) 72%, rgb(0 0 0 / 0) 100%),
    radial-gradient(ellipse var(--amoeba-e-w) var(--amoeba-e-h) at calc(var(--reveal-x) + var(--amoeba-e-x)) calc(var(--reveal-y) + var(--amoeba-e-y)), #000 0 40%, rgb(0 0 0 / .48) 72%, rgb(0 0 0 / 0) 100%);
  mask-image:
    radial-gradient(ellipse var(--amoeba-main-w) var(--amoeba-main-h) at var(--reveal-x) var(--reveal-y), #000 0 46%, rgb(0 0 0 / .78) 66%, rgb(0 0 0 / 0) 100%),
    radial-gradient(ellipse var(--amoeba-a-w) var(--amoeba-a-h) at calc(var(--reveal-x) + var(--amoeba-a-x)) calc(var(--reveal-y) + var(--amoeba-a-y)), #000 0 44%, rgb(0 0 0 / .62) 68%, rgb(0 0 0 / 0) 100%),
    radial-gradient(ellipse var(--amoeba-b-w) var(--amoeba-b-h) at calc(var(--reveal-x) + var(--amoeba-b-x)) calc(var(--reveal-y) + var(--amoeba-b-y)), #000 0 42%, rgb(0 0 0 / .58) 69%, rgb(0 0 0 / 0) 100%),
    radial-gradient(ellipse var(--amoeba-c-w) var(--amoeba-c-h) at calc(var(--reveal-x) + var(--amoeba-c-x)) calc(var(--reveal-y) + var(--amoeba-c-y)), #000 0 42%, rgb(0 0 0 / .54) 70%, rgb(0 0 0 / 0) 100%),
    radial-gradient(ellipse var(--amoeba-d-w) var(--amoeba-d-h) at calc(var(--reveal-x) + var(--amoeba-d-x)) calc(var(--reveal-y) + var(--amoeba-d-y)), #000 0 41%, rgb(0 0 0 / .5) 72%, rgb(0 0 0 / 0) 100%),
    radial-gradient(ellipse var(--amoeba-e-w) var(--amoeba-e-h) at calc(var(--reveal-x) + var(--amoeba-e-x)) calc(var(--reveal-y) + var(--amoeba-e-y)), #000 0 40%, rgb(0 0 0 / .48) 72%, rgb(0 0 0 / 0) 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-composite: source-over, source-over, source-over, source-over, source-over, source-over;
  mask-composite: add, add, add, add, add, add;
  transition: opacity .42s ease;
  will-change: opacity;
  pointer-events: none;
}

.contact-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgb(255 255 255 / .78) 1px, rgb(0 0 0 / 0) 1.35px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
  opacity: .68;
  pointer-events: none;
}

.contact-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgb(255 255 255 / .08), rgb(0 0 0 / .42)),
    radial-gradient(circle at 72% 16%, rgb(255 255 255 / .18), rgb(255 255 255 / 0) 34%);
  pointer-events: none;
}

.contact-art-copy {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 4;
  display: grid;
  gap: 4px;
  color: #fff;
  text-align: right;
  mix-blend-mode: difference;
}

.contact-art-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.contact-art-copy span {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.service-page {
  background: #fff;
}

.service-hero {
  display: grid;
  min-height: 100svh;
  background: #fff;
}

.service-hero-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 128px 24px 56px;
}

.service-eyebrow,
.service-section-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-hero-copy h1 {
  max-width: 52rem;
  margin: 0;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 500;
  line-height: .92;
}

.service-hero-copy > p:not(.service-eyebrow) {
  max-width: 42rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.service-contact-link,
.service-back-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: .875rem;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.service-contact-link {
  background: #C5D501;
  color: var(--brand-ink);
}

.service-contact-link:hover,
.service-contact-link:focus-visible {
  background: #00B2F5;
  transform: translateY(-1px);
}

.service-back-link {
  box-shadow: inset 0 0 0 1px var(--border);
  color: var(--foreground);
}

.service-back-link:hover,
.service-back-link:focus-visible {
  background: var(--foreground);
  color: #fff;
  transform: translateY(-1px);
}

.service-hero-image {
  position: relative;
  min-height: 58vh;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.service-hero-image img {
  filter: saturate(.92) contrast(1.02);
}

.service-detail-band {
  display: grid;
  min-height: 100svh;
  align-items: center;
  box-sizing: border-box;
  background: #0a0a0a;
  color: #fff;
  padding: 64px 24px;
}

.service-detail-grid {
  display: grid;
  gap: 44px;
  max-width: 78rem;
  margin: 0 auto;
}

.service-detail-main p {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.42;
}

.service-detail-main p + p {
  margin-top: 22px;
}

.service-detail-side {
  border-top: 1px solid rgb(255 255 255 / .16);
  padding-top: 28px;
}

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

.service-detail-side li {
  border-radius: 999px;
  background: rgb(255 255 255 / .08);
  color: rgb(255 255 255 / .84);
  padding: 12px 16px;
  font-size: .92rem;
  line-height: 1.35;
}

.service-navigation {
  display: grid;
  gap: 16px;
  background: #fff;
  padding: 40px 24px 80px;
}

.service-step,
.service-picker {
  display: grid;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}

.service-step {
  transition: border-color .2s ease, transform .2s ease;
}

.service-step:hover,
.service-step:focus-visible {
  border-color: #00B2F5;
  transform: translateY(-2px);
}

.service-step span,
.service-picker span {
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-step strong {
  font-size: 1.15rem;
  font-weight: 700;
}

.service-step-next {
  text-align: right;
}

.service-picker select {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #C5D501;
  color: var(--brand-ink);
  cursor: pointer;
  font: inherit;
  font-size: .95rem;
  font-weight: 700;
  outline: 0;
  padding: 12px 16px;
}

.service-picker select:focus {
  box-shadow: 0 0 0 4px rgb(0 178 245 / .22);
}

.site-footer {
  background: var(--background);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  border-top: 1px solid var(--border);
  padding: 64px 24px;
}

.footer-brand {
  grid-column: span 2;
}

.footer-main a:first-child,
.footer-brand a {
  font-size: 1.125rem;
  font-weight: 500;
}

.footer-brand p {
  max-width: 22rem;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.65;
}

.footer-main h4 {
  margin: 0 0 16px;
  font-size: .875rem;
  font-weight: 500;
}

.footer-main div:not(.footer-brand) {
  display: grid;
  gap: 12px;
}

.footer-main div:not(.footer-brand) a {
  color: var(--muted);
  font-size: .875rem;
  transition: color .2s ease;
}

.footer-address {
  margin: 0;
  color: var(--muted);
  font-size: .875rem;
  font-style: normal;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.footer-main div:not(.footer-brand) a:hover {
  color: var(--foreground);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding: 24px;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom button {
  margin: 0;
  color: var(--muted);
  font-size: .75rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-top-link {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  padding: 8px 12px;
  color: var(--foreground);
  cursor: pointer;
  font: inherit;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.footer-top-link:hover,
.footer-top-link:focus-visible {
  border-color: #00B2F5;
  background: #00B2F5;
  color: #fff;
  transform: translateY(-2px);
}

@keyframes page-loader-box {
  0% {
    transform: rotate(45deg) scale(.82);
  }
  50% {
    transform: rotate(135deg) scale(1);
  }
  100% {
    transform: rotate(405deg) scale(.82);
  }
}

@keyframes page-content-enter {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes nav-shell-expand {
  0% {
    width: 50px;
    background: rgb(255 255 255 / .96);
    box-shadow:
      rgba(14, 63, 126, .06) 0 0 0 1px,
      rgba(42, 51, 69, .08) 0 10px 28px -14px;
  }
  38% {
    width: 50px;
    background: rgb(255 255 255 / .96);
  }
  100% {
    width: var(--nav-expanded-width);
    background: rgb(255 255 255 / .82);
  }
}

@keyframes nav-inner-expand {
  0%,
  38% {
    padding: 8px;
  }
  100% {
    padding: 8px 8px 8px 20px;
  }
}

@keyframes nav-items-reveal {
  0%,
  20% {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@keyframes idle-scroll-dot {
  0% {
    opacity: 0;
    transform: translateY(0) scale(.82);
  }
  24% {
    opacity: 1;
  }
  72% {
    opacity: 1;
    transform: translateY(13px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(15px) scale(.78);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtitle-slide-up {
  from {
    opacity: 0;
    transform: translateY(80%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes packing-crate-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgb(197 213 1 / 0));
  }
  50% {
    filter: drop-shadow(0 0 18px rgb(197 213 1 / .36));
  }
}

@keyframes packing-strap-pulse {
  0%,
  100% {
    opacity: .72;
    transform: translateZ(160px) rotateZ(2deg) scaleY(.96);
  }
  50% {
    opacity: 1;
    transform: translateZ(160px) rotateZ(2deg) scaleY(1.04);
  }
}

@keyframes about-assembly-float {
  0%,
  100% {
    filter: drop-shadow(0 18px 52px rgb(7 16 23 / .14));
  }
  50% {
    filter: drop-shadow(0 30px 78px rgb(7 16 23 / .24));
  }
}

@keyframes about-assembly-field {
  0%,
  100% {
    opacity: .2;
    transform: translate3d(-50%, -50%, -150px) rotateX(66deg) skewX(-11deg) scale(.9);
  }
  38%,
  62% {
    opacity: .5;
    transform: translate3d(-50%, -50%, -150px) rotateX(66deg) skewX(-11deg) scale(1);
  }
}

@keyframes about-assembly-shadow {
  0%,
  100% {
    opacity: .22;
    transform: translateX(-50%) rotateX(72deg) scaleX(.78);
  }
  38%,
  66% {
    opacity: .5;
    transform: translateX(-50%) rotateX(72deg) scaleX(1.08);
  }
}

@keyframes about-box-outline {
  0%,
  22%,
  84%,
  100% {
    opacity: 0;
    transform: translateZ(-6px) scale(.92);
  }
  38%,
  58% {
    opacity: .55;
    transform: translateZ(-6px) scale(1);
  }
}

@keyframes about-box-plate {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(var(--from-x), var(--from-y), 0) rotate(var(--from-r)) scale(.44);
  }
  18% {
    opacity: var(--plate-opacity);
  }
  36%,
  58% {
    opacity: var(--plate-opacity);
    filter: blur(0);
    transform: translate3d(0, 0, 0) var(--final) scale(1);
  }
  70%,
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 0, 42px) var(--final) scale(.68);
  }
}

@keyframes about-box-segment {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(var(--from-x), var(--from-y), 0) rotate(var(--from-r)) scaleX(.08);
  }
  18% {
    opacity: .98;
  }
  36%,
  58% {
    opacity: .98;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(var(--r)) scaleX(1);
  }
  70%,
  100% {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, 0, 42px) rotate(var(--r)) scaleX(.72);
  }
}

@keyframes about-segment-spark {
  0%,
  36%,
  100% {
    opacity: 0;
    transform: translateX(-55%) scaleX(.2);
  }
  46% {
    opacity: .7;
    transform: translateX(35%) scaleX(.65);
  }
  62% {
    opacity: .26;
    transform: translateX(82%) scaleX(.18);
  }
  70% {
    opacity: 0;
  }
}

@keyframes about-logo-reveal {
  0%,
  50% {
    opacity: 0;
    filter: drop-shadow(0 18px 36px rgb(7 16 23 / .18)) blur(8px);
    transform: translate(-50%, -50%) scale(.54) rotateY(-22deg);
  }
  62%,
  90% {
    opacity: 1;
    filter: drop-shadow(0 18px 36px rgb(7 16 23 / .18)) blur(0);
    transform: translate(-50%, -50%) scale(1.06) rotateY(0deg);
  }
  100% {
    opacity: 0;
    filter: drop-shadow(0 18px 36px rgb(7 16 23 / .18)) blur(6px);
    transform: translate(-50%, -50%) scale(1.12) rotateY(10deg);
  }
}

@media (max-width: 47.99rem) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .header-inner {
    min-height: 44px;
    padding: 7px 7px 7px 14px;
  }

  .brand {
    width: 30px;
    height: 30px;
  }

  .hero-sticky {
    height: 100svh;
  }

  .mono-word {
    transform: translateY(-120px);
    font-size: clamp(4.8rem, 28vw, 8rem);
  }

  .mono-subtitle-wrap {
    top: calc(50% + var(--mono-subtitle-offset) + 14px - 120px);
  }

  .hero-caption {
    padding: 0 16px 34px;
  }

  .hero-caption p {
    max-width: calc(100vw - 32px);
    padding: 10px 18px 12px;
    font-size: 16px;
  }

  .philosophy-headings h2 {
    font-size: clamp(2.2rem, 11vw, 3.7rem);
  }

  .reveal-copy p {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
  }

  .solution-process-heading {
    top: 82px;
    font-size: 40px;
  }

  .solution-process-banner {
    top: 7svh;
    width: calc(100vw - 20px);
    height: 86svh;
    margin: 0 10px;
  }

  .dark-copy p {
    font-size: 28px;
  }

  .gallery-section {
    margin-top: -30vh;
    min-height: 420vh;
  }

  .gallery-sticky {
    padding: 12px;
  }

  .gallery-stack {
    width: calc(100vw - 24px);
    height: min(72svh, 560px);
  }

  .gallery-card > img {
    border-radius: 12px;
  }

  .models-heading {
    padding-top: 96px;
  }

  .models-heading h2 {
    font-size: 40px;
    line-height: 1.05;
  }

  .model-card {
    padding: 8px;
  }

  .model-image {
    border-radius: 12px;
  }

  .testimonial-section {
    height: 100svh;
    min-height: 640px;
    padding: 0;
  }

  .packing-3d-scene {
    align-items: center;
    opacity: .62;
    padding-bottom: 8svh;
  }

  .packing-3d-stage {
    width: min(86vw, 420px);
  }

  .about-assembly-stage {
    --mark-scale: .82;
    width: min(98vw, 430px);
  }

  .testimonial-content p {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.45;
  }

  .about-blue-band p {
    font-size: clamp(1.45rem, 7vw, 1.75rem);
    line-height: 1.42;
  }

  .testimonial-stats .stats-grid,
  .testimonial-stats {
    border-radius: 0;
  }

  .stats-grid div {
    padding: 24px 12px;
  }

  .stats-grid strong {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .about-media {
    height: 75svh;
  }

  .about-copy {
    padding: 0 20px;
  }

  .about-copy h1 {
    font-size: clamp(2.9rem, 12.5vw, 4.25rem);
    line-height: 1;
  }

  .about-subheading {
    margin-top: 28px;
    font-size: clamp(1.08rem, 5.2vw, 1.28rem);
    line-height: 1.5;
  }

  .about-body-text {
    margin-top: 32px;
    gap: 24px;
  }

  .about-body-text p {
    font-size: clamp(1.02rem, 4.8vw, 1.16rem);
    line-height: 1.65;
  }

  .gallery-page-hero {
    padding-top: 112px;
  }

  .gallery-page-card {
    min-height: 72svh;
  }
}

@media (min-width: 48rem) {
  .desktop-nav,
  .contact-link {
    display: flex;
  }

  .menu-button {
    display: none;
  }

  .hero-main {
    --mono-subtitle-offset: 6.8rem;
  }

  .mono-word {
    font-size: 17rem;
  }

  .mono-subtitle-wrap {
    top: calc(50% + var(--mono-subtitle-offset) + 18px - 200px);
  }

  .mono-subtitle {
    font-size: 1.1rem;
  }

  .hero-caption {
    padding-bottom: 64px;
  }

  .testimonial-content p {
    font-size: 24px;
    font-weight: 300;
  }

  .about-copy {
    padding: 0 48px;
  }

  .about-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 88px 48px;
  }

  .about-blue-band {
    padding-right: 48px;
    padding-left: 48px;
  }

  .gallery-page-hero {
    padding: 144px 48px 64px;
  }

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

  .philosophy-headings h2 {
    font-size: 4rem;
  }

  .reveal-copy {
    padding: 64px 48px 128px;
  }

  .reveal-copy p {
    font-size: 1.875rem;
  }

  .contact-main {
    padding: 0;
  }

  .contact-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .contact-panel {
    padding: 120px 48px 56px;
  }

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

  .contact-art {
    display: block;
  }

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

  .service-hero-copy {
    padding: 148px 48px 72px;
  }

  .service-hero-image {
    min-height: 100svh;
  }

  .service-detail-band {
    padding: 88px 48px;
  }

  .service-detail-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(20rem, .55fr);
    align-items: start;
  }

  .service-detail-side {
    border-top: 0;
    border-left: 1px solid rgb(255 255 255 / .16);
    padding-top: 0;
    padding-left: 32px;
  }

  .service-navigation {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, .8fr) minmax(0, 1fr);
    align-items: stretch;
    padding: 48px;
  }

  .sketch-section {
    padding: 0 0 30px;
  }

  .solution-process-heading {
    top: 82px;
    font-size: 40px;
  }

  .tech-title-stack h2 {
    font-size: 4.5rem;
  }

  .tech-copy {
    padding: 0 48px;
  }

  .dark-copy p {
    font-size: 28px;
  }

  .gallery-stack {
    height: 80vh;
  }

  .models-heading {
    padding: 96px 48px 40px;
  }

  .models-grid {
    grid-auto-flow: column;
    grid-auto-columns: calc(100% / 3);
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    padding: 0 32px;
  }

  .motion-media-wrap {
    aspect-ratio: 21 / 9;
  }

  .capability-list {
    padding: 20px 48px 0;
  }

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

  .stats-grid div {
    border-bottom: 0;
  }

  .stats-grid div:nth-child(2n) {
    border-right: 1px solid var(--border);
  }

  .stats-grid div:last-child {
    border-right: 0;
  }

  .stats-grid strong {
    font-size: 2.5rem;
  }

  .testimonial-content {
    top: auto;
    bottom: auto;
  }

  .testimonial-section {
    height: 100svh;
    min-height: 620px;
    aspect-ratio: auto;
    padding: 0;
  }

  .footer-main {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 80px 48px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: row;
    padding: 24px 48px;
  }
}

@media (min-width: 72rem) {
  .hero-main {
    --mono-subtitle-offset: 9.6rem;
  }

  .mono-word {
    font-size: 24rem;
  }

  .mono-subtitle-wrap {
    top: calc(50% + var(--mono-subtitle-offset) + 22px - 200px);
  }

  .mono-subtitle {
    font-size: 1.35rem;
  }

  .hero-caption {
    padding-bottom: 80px;
  }

  .testimonial-content p {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.45;
  }

  .stats-grid strong {
    font-size: 3rem;
  }

  .philosophy-headings h2 {
    font-size: 5rem;
  }

  .contact-panel {
    padding-right: 72px;
    padding-left: 72px;
  }

  .about-copy {
    padding: 0 80px;
  }

  .about-values,
  .gallery-page-hero {
    padding-right: 80px;
    padding-left: 80px;
  }

  .service-hero-copy {
    padding-right: 80px;
    padding-left: 80px;
  }

  .service-navigation {
    padding-right: 80px;
    padding-left: 80px;
  }

  .tech-title-stack h2 {
    font-size: 4.75rem;
  }

  .models-heading,
  .capability-list,
  .footer-main,
  .footer-bottom {
    padding-left: 80px;
    padding-right: 80px;
  }

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

@media (min-width: 48rem) {
  :root {
    --page-gutter: var(--space-12);
    --section-y: var(--space-20);
    --card-gap: var(--space-6);
    --card-pad: var(--space-5);
  }
}

@media (min-width: 72rem) {
  :root {
    --page-gutter: var(--space-20);
    --section-y: var(--space-28);
    --card-pad: var(--space-6);
  }
}

.site-header {
  --nav-expanded-width: min(calc(100vw - var(--page-gutter) - var(--page-gutter)), 48rem);
  top: var(--space-4);
  right: auto;
  left: 50%;
  width: var(--nav-expanded-width);
  transform: translate3d(-50%, 0, 0);
}

.header-inner {
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-5);
}

.brand {
  width: var(--space-8);
  height: var(--space-8);
}

.nav-services-trigger {
  gap: var(--space-2);
}

.nav-services-dropdown {
  width: min(calc(100vw - var(--space-8)), 432px);
  border-radius: var(--space-4);
  padding: var(--space-2);
}

.desktop-nav .nav-services-dropdown a {
  padding: var(--space-3);
}

.menu-button {
  gap: var(--space-1);
}

.menu-button span {
  width: var(--space-6);
}

:where(
  .hero-caption,
  .reveal-copy,
  .models-heading,
  .capability-list,
  .testimonial-content,
  .footer-main,
  .footer-bottom,
  .about-copy,
  .about-values,
  .about-blue-band,
  .gallery-page-hero,
  .service-hero-copy,
  .service-detail-band,
  .service-navigation,
  .contact-panel
) {
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.reveal-copy {
  padding-top: var(--space-16);
  padding-bottom: var(--space-24);
}

.dark-copy p {
  max-width: min(72rem, calc(100vw - var(--page-gutter) - var(--page-gutter)));
  font-weight: 100;
  line-height: 1.55;
}

.models-section {
  padding-bottom: var(--space-24);
}

.models-heading {
  padding-top: var(--section-y);
  padding-bottom: var(--space-10);
}

.models-grid {
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
}

.about-hero {
  padding-top: var(--space-3);
  padding-bottom: var(--space-24);
}

.about-subheading {
  margin-top: var(--space-8);
}

.about-body-text {
  margin-top: var(--space-10);
  gap: var(--space-6);
}

.about-blue-band {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.service-detail-band {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.service-navigation {
  gap: var(--card-gap);
  padding-top: var(--space-10);
  padding-bottom: var(--space-20);
}

.service-step,
.service-picker {
  gap: var(--space-2);
  border-radius: var(--card-radius);
  padding: var(--card-pad);
}

.service-navigation,
.service-step span,
.service-picker span,
.service-step strong,
.service-picker select {
  font-weight: 100;
}

.service-picker select {
  padding: var(--space-3) var(--space-4);
}

.service-detail-side {
  padding-top: var(--space-7);
}

@media (max-width: 47.99rem) {
  .site-header {
    --nav-expanded-width: calc(100vw - var(--space-6));
    top: var(--space-3);
    width: var(--nav-expanded-width);
  }

  .header-inner {
    min-height: 44px;
    padding: var(--space-2) var(--space-2) var(--space-2) var(--space-4);
  }

  .hero-caption {
    padding-bottom: var(--space-8);
  }

  .hero-caption p {
    max-width: calc(100vw - var(--space-8));
    padding: var(--space-3) var(--space-4);
  }

  .solution-process-banner {
    width: calc(100vw - var(--space-4));
    margin-right: var(--space-2);
    margin-left: var(--space-2);
  }

  .dark-copy p {
    max-width: 100%;
    font-size: clamp(1.25rem, 5.4vw, 1.75rem);
    line-height: 1.5;
  }

  .models-grid {
    grid-auto-columns: calc(100vw - var(--space-8));
    padding-right: var(--space-4);
    padding-left: var(--space-4);
  }

  .service-navigation {
    grid-template-columns: 1fr;
    padding-top: var(--space-8);
    padding-bottom: var(--space-16);
  }

  .service-step-next {
    text-align: left;
  }

  .about-copy {
    padding-right: var(--space-5);
    padding-left: var(--space-5);
  }
}

@media (min-width: 48rem) {
  .service-navigation {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, .8fr) minmax(0, 1fr);
    padding-top: var(--space-12);
    padding-bottom: var(--space-20);
  }

  .service-detail-side {
    padding-top: 0;
    padding-left: var(--space-8);
  }

  .models-grid {
    grid-auto-columns: calc(100% / 3);
    padding-right: var(--space-8);
    padding-left: var(--space-8);
  }
}

.testimonial-section .testimonial-stats div,
.testimonial-section .testimonial-stats div:nth-child(2n) {
  border-color: rgb(255 255 255 / .7);
}

html.media-protection-ready,
html.media-protection-ready body,
html.media-protection-ready img,
html.media-protection-ready picture,
html.media-protection-ready figure,
html.media-protection-ready video {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

html.media-protection-ready input,
html.media-protection-ready textarea,
html.media-protection-ready select,
html.media-protection-ready [contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}

html.media-protection-ready img,
html.media-protection-ready picture,
html.media-protection-ready figure,
html.media-protection-ready video {
  -webkit-user-drag: none;
  user-drag: none;
}

html.media-protection-ready img,
html.media-protection-ready video {
  pointer-events: none;
}

.hero-caption {
  position: static;
  width: 100%;
  padding: 0;
  color: #fff;
  text-align: center;
}

.hero-caption p {
  width: auto;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.mono-subtitle-wrap {
  top: auto;
  bottom: 40px;
  display: flex;
  width: min(calc(100vw - 32px), 42rem);
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  gap: 12px;
}

.sketch-section {
  min-height: auto;
  padding: 0;
  background: #fff;
  overflow: hidden;
  perspective: none;
}

.solution-process-heading {
  position: relative;
  top: auto;
  z-index: 3;
  padding: 16px var(--page-gutter);
  color: #0a0a0a;
  text-shadow: none;
  opacity: 1;
  filter: none;
  transform: none;
  will-change: auto;
}

.solution-process-banner {
  position: relative;
  top: auto;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: #fff;
  cursor: zoom-in;
  opacity: 1;
  transform: none;
  will-change: auto;
}

.solution-process-banner::after {
  display: none;
}

.solution-process-banner picture {
  height: auto;
}

.solution-process-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

.testimonial-section {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
}

.testimonial-stats {
  width: 100%;
  max-width: 100%;
  border-color: rgb(255 255 255 / .82);
  background: #00B2F5;
  opacity: 1;
  backdrop-filter: none;
}

.testimonial-stats.scroll-reveal {
  opacity: 1;
  filter: none;
  transform: none;
}

.testimonial-section .testimonial-stats div {
  display: flex;
  min-height: clamp(116px, 18svh, 180px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px 12px;
  overflow: hidden;
}

.testimonial-stats strong {
  max-width: 100%;
  color: #0a0a0a;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: .94;
  white-space: normal;
  overflow-wrap: normal;
}

.testimonial-section .testimonial-stats p {
  color: #fff;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.08;
}

.about-assembly-scene {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px 0;
  contain: layout paint;
  isolation: isolate;
}

.about-assembly-stage {
  width: min(58svh, 62vw, 720px);
  max-height: 100%;
}

.testimonial-content {
  align-self: end;
  padding-top: 24px;
  padding-bottom: 20px;
}

@media (max-width: 47.99rem) {
  .hero-caption {
    padding: 0;
  }

  .hero-caption p {
    max-width: calc(100vw - var(--space-8));
    padding: 0;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
  }

  .mono-subtitle-wrap {
    top: auto;
    bottom: 40px;
    width: calc(100vw - var(--space-8));
    gap: var(--space-3);
  }

  .solution-process-heading {
    top: auto;
    padding: 16px var(--space-4);
    font-size: 20px;
  }

  .solution-process-banner {
    top: auto;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .testimonial-section {
    grid-template-rows: auto minmax(0, 1fr) auto;
    height: 100svh;
    min-height: 100svh;
  }

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

  .testimonial-section .testimonial-stats div {
    min-height: 112px;
    padding: 16px 8px;
  }

  .testimonial-stats strong {
    font-size: clamp(1.4rem, 7.2vw, 2rem);
    line-height: .94;
  }

  .testimonial-section .testimonial-stats p {
    font-size: clamp(.7rem, 3.5vw, .9rem);
    line-height: 1.15;
  }

  .about-assembly-scene {
    padding: 12px 0;
  }

  .about-assembly-stage {
    --mark-scale: .72;
    width: min(74vw, 320px);
  }

  .about-assembly-logo {
    width: min(58%, 220px);
    border-radius: 20px;
    padding: 12px;
  }

  .testimonial-content {
    gap: 12px;
    padding: 12px var(--space-5) 20px;
  }

  .testimonial-content p {
    font-size: clamp(.875rem, 3.8vw, 1rem);
    line-height: 1.35;
  }

  .models-heading h2 {
    font-size: 20px;
  }
}

@media print {
  body {
    display: none !important;
  }
}

.capture-protection-shield {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  background: rgb(255 255 255 / .98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: #555;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility 0s linear .2s;
}

html.capture-protection-active .capture-protection-shield,
body.protected .protection-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

/* One-screen expertise statement with a pointer wake confined to this section. */
.expertise-stage {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.expertise-stage .tech-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 80px var(--page-gutter) 48px;
  background: transparent;
}

.expertise-stage .tech-copy::before {
  content: none;
}

.expertise-stage .dark-copy p {
  position: relative;
  top: auto;
  z-index: 2;
  width: min(100%, 72rem);
  max-width: 72rem;
  margin: 0 auto;
  color: #fff;
  font-size: 28px;
  font-weight: 100;
  line-height: 1.55;
  text-align: center;
  clip-path: none;
  opacity: 1;
  filter: none;
  transform: none;
}

.tech-copy-line-word {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, 16px, 0);
  transition: opacity .32s ease, filter .42s ease, transform .42s cubic-bezier(.22, .7, .26, 1);
  will-change: opacity, filter, transform;
}

.cursor-wake-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.cursor-wake-particle {
  position: absolute;
  top: var(--wake-y);
  left: var(--wake-x);
  display: block;
  width: var(--wake-size);
  pointer-events: none;
  will-change: transform, opacity;
}

.cursor-wake-particle.is-ripple {
  height: calc(var(--wake-size) * .42);
  border: 1px solid rgb(151 226 255 / .7);
  border-radius: 50%;
  box-shadow: 0 0 12px rgb(0 178 245 / .22), inset 0 0 8px rgb(255 255 255 / .14);
  animation: cursor-wake-ripple 1.15s cubic-bezier(.18, .7, .24, 1) forwards;
}

.cursor-wake-particle.is-bubble {
  aspect-ratio: 1;
  border: 1px solid rgb(216 245 255 / .78);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgb(255 255 255 / .58) 0 10%, rgb(0 178 245 / .18) 28%, rgb(0 178 245 / .04) 58%, rgb(255 255 255 / .18) 100%);
  box-shadow: 0 0 10px rgb(0 178 245 / .26);
  animation: cursor-wake-bubble 1.45s ease-out forwards;
}

.gallery-section {
  margin-top: 0;
}

@keyframes cursor-wake-ripple {
  0% {
    opacity: .8;
    transform: translate(-50%, -50%) scale(.25) rotate(-4deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.8) rotate(4deg);
  }
}

@keyframes cursor-wake-bubble {
  0% {
    opacity: .9;
    transform: translate(-50%, -50%) scale(.35);
  }
  70% {
    opacity: .62;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--wake-drift)), calc(-50% - 52px)) scale(1.2);
  }
}

@media (max-width: 47.99rem) {
  .expertise-stage .tech-copy {
    padding: 72px var(--space-5) 40px;
  }

  .expertise-stage .dark-copy p {
    font-size: clamp(1.2rem, 5.4vw, 1.65rem);
    line-height: 1.5;
  }
}

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

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

  .scroll-reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Full-screen story copy with responsive, line-by-line reveal. */
.philosophy-copy {
  position: relative;
  display: flex;
  width: 100%;
  height: 100vh;
  height: 100svh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 64px 24px;
  background: #fff;
  text-align: center;
}

.philosophy-copy p {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.55;
  text-align: center;
}

.philosophy-measure-word {
  display: inline-block;
}

.philosophy-reveal-line {
  display: block;
  opacity: 0;
  filter: blur(18px);
  transform: translate3d(0, 24px, 0);
  will-change: opacity, filter, transform;
}

@media (max-width: 47.99rem) {
  .philosophy-copy {
    padding: 48px 20px;
  }

  .philosophy-copy p {
    font-size: 16px;
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .philosophy-reveal-line {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Shared responsive foundation
   Keeps every page fluid without introducing framework styles that would
   override the site's custom motion and visual language. */
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

main,
header,
footer,
nav,
section,
article,
aside,
form,
fieldset,
picture,
figure {
  min-width: 0;
  max-width: 100%;
}

img,
video,
canvas,
svg,
iframe {
  max-width: 100%;
}

input,
select,
textarea,
button {
  min-width: 0;
  max-width: 100%;
}

:where(
  .header-inner,
  .hero-main,
  .contact-shell,
  .contact-panel,
  .contact-art,
  .service-hero,
  .service-hero-copy,
  .service-detail-grid,
  .service-detail-main,
  .service-detail-side,
  .service-navigation,
  .service-step,
  .service-picker,
  .footer-main,
  .footer-main > *,
  .footer-bottom,
  .about-copy,
  .about-values,
  .about-value,
  .gallery-page-grid,
  .gallery-page-card,
  .stats-grid,
  .stats-grid > *,
  .models-grid,
  .model-card
) {
  min-width: 0;
}

:where(
  .about-copy,
  .about-body-text,
  .contact-copy,
  .service-hero-copy,
  .service-detail-main,
  .service-detail-side,
  .service-step,
  .service-picker,
  .footer-main
) :where(h1, h2, h3, h4, p, strong, span, a, li) {
  overflow-wrap: break-word;
}

table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

/* Phone layout: single-column reading order and touch-safe controls. */
@media (max-width: 47.99rem) {
  :root {
    --page-gutter: var(--space-4);
    --section-y: var(--space-16);
    --card-gap: var(--space-3);
    --card-pad: var(--space-4);
  }

  .site-header {
    right: auto;
    left: 50%;
    width: calc(100% - var(--space-6));
    max-width: calc(100% - var(--space-6));
  }

  .mobile-nav {
    max-height: calc(100svh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-nav a,
  .mobile-services-trigger {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-main,
  .hero-frame,
  .hero-sticky {
    max-width: 100vw;
  }

  .solution-process-banner picture,
  .solution-process-banner img {
    width: 100%;
    height: auto;
  }

  .stats-grid.testimonial-stats {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-section {
    height: auto;
    min-height: 100svh;
    grid-template-rows: auto minmax(176px, 1fr) auto;
  }

  .about-assembly-stage {
    max-width: calc(100vw - var(--space-8));
    max-height: 100%;
  }

  .models-grid {
    max-width: 100%;
    scroll-padding-inline: var(--page-gutter);
  }

  .model-card {
    width: 100%;
  }

  .contact-panel {
    width: 100%;
    padding-top: var(--space-24);
    padding-bottom: var(--space-12);
  }

  .contact-copy,
  .contact-form {
    width: 100%;
  }

  .contact-copy h1 {
    font-size: 40px;
  }

  .contact-direct a,
  .footer-main a,
  .footer-bottom a {
    overflow-wrap: anywhere;
  }

  .service-hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .service-hero-copy {
    min-height: 70svh;
    padding-top: var(--space-28);
    padding-bottom: var(--space-14);
  }

  .service-hero-copy h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .service-hero-copy > p:not(.service-eyebrow) {
    font-size: 18px;
  }

  .service-hero-image {
    min-height: 56svh;
  }

  .service-detail-band {
    min-height: 100svh;
  }

  .service-detail-grid {
    width: 100%;
    gap: var(--space-8);
  }

  .service-detail-main p {
    font-size: 20px;
    line-height: 1.5;
  }

  .service-navigation {
    width: 100%;
  }

  .service-picker select {
    white-space: normal;
  }

  .about-hero,
  .about-copy,
  .about-values,
  .gallery-page-hero,
  .gallery-page-grid {
    width: 100%;
  }

  .about-value {
    min-height: 336px;
  }

  .gallery-page-card {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-8);
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

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

  .footer-bottom,
  .footer-bottom div {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Tablet layout: delay dense desktop grids until they have enough room. */
@media (min-width: 48rem) and (max-width: 63.99rem) {
  :root {
    --page-gutter: var(--space-8);
    --section-y: var(--space-20);
    --card-gap: var(--space-4);
  }

  .site-header {
    --nav-expanded-width: calc(100vw - var(--space-8));
  }

  .contact-shell,
  .service-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-art {
    display: none;
  }

  .service-hero {
    min-height: 0;
  }

  .service-hero-copy {
    min-height: 70svh;
    padding-top: var(--space-28);
  }

  .service-hero-copy h1 {
    font-size: 64px;
    overflow-wrap: anywhere;
  }

  .service-hero-image {
    min-height: 64svh;
  }

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

  .service-detail-side {
    border-top: 1px solid rgb(255 255 255 / .16);
    border-left: 0;
    padding-top: var(--space-7);
    padding-left: 0;
  }

  .about-values,
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

/* Wide desktop keeps the designed composition within a stable readable width. */
@media (min-width: 90rem) {
  :root {
    --page-gutter: var(--space-24);
  }

  .about-copy,
  .about-values,
  .gallery-page-hero,
  .service-detail-grid,
  .service-navigation,
  .footer-main,
  .footer-bottom {
    width: 100%;
    max-width: 96rem;
    margin-right: auto;
    margin-left: auto;
  }

  .gallery-page-grid {
    max-width: 120rem;
    margin-right: auto;
    margin-left: auto;
  }
}

/* Mobile header: separate circular controls while the menu is closed. */
@media (max-width: 47.99rem) {
  .site-header:not(.open),
  .site-header.scrolled:not(.open) {
    top: var(--space-4);
    width: calc(100% - var(--space-8));
    max-width: calc(100% - var(--space-8));
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    animation: none;
  }

  .site-header:not(.open) .header-inner {
    min-height: 48px;
    padding: 0;
    animation: none;
  }

  .site-header:not(.open) .brand {
    width: 48px;
    height: 48px;
    border: 1px solid rgb(14 63 126 / .08);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgb(14 63 126 / .12);
    padding: var(--space-2);
  }

  .site-header:not(.open) .menu-button {
    width: 48px;
    height: 48px;
    border: 1px solid rgb(14 63 126 / .08);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgb(14 63 126 / .12);
  }

  .site-header.open .header-inner {
    padding: var(--space-2) var(--space-2) var(--space-2) var(--space-4);
  }

  .site-header.open .mobile-nav {
    transform-origin: calc(100% - 24px) -24px;
    will-change: transform, opacity;
    animation: mobile-nav-scale-from-trigger .24s cubic-bezier(.22, 1, .36, 1) both;
  }

  .philosophy-copy p {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* Scroll-led philosophy and work presentation. */
.philosophy-stage {
  height: 250svh;
}

.philosophy-sticky {
  top: 0;
  height: 100svh;
  align-items: center;
  justify-content: center;
}

.philosophy-headings {
  min-height: 160px;
}

.philosophy-headings h2 {
  filter: blur(12px);
  transform: translate3d(0, 64px, 0) scale(.98);
  transform-origin: center;
}

.work-heading-stage {
  z-index: 1;
}

.gallery-section.work-heading-covered .work-heading-stage {
  opacity: 0;
  filter: blur(18px);
  transform: translate3d(0, -16px, 0);
}

.gallery-sticky {
  z-index: 2;
}

/* The supplied line illustration assembles from a field of grey particles. */
.about-sand-assembly {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  padding: 20px 0;
  isolation: isolate;
}

.about-sand-cloud,
.about-sand-illustration {
  grid-area: 1 / 1;
}

.about-sand-cloud {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-sand-grain {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--sand-size, 3px);
  height: var(--sand-size, 3px);
  border-radius: 46% 54% 38% 62%;
  background: #687178;
  box-shadow: 0 0 8px rgb(70 78 84 / .36);
  opacity: 0;
  transform: translate3d(var(--sand-start-x), var(--sand-start-y), 0) scale(.3) rotate(0deg);
  will-change: transform, opacity;
}

.about-sand-assembly.is-active .about-sand-grain {
  animation: about-sand-gather 8.4s cubic-bezier(.2, .72, .24, 1) var(--sand-delay) infinite;
}

.about-sand-illustration {
  display: block;
  width: min(54svh, 48vw, 620px);
  max-width: calc(100vw - 32px);
  max-height: calc(100% - 24px);
  object-fit: contain;
  opacity: 0;
  filter: grayscale(1) contrast(.92) blur(14px);
  mix-blend-mode: multiply;
  transform: scale(.88) rotate(-1.5deg);
  pointer-events: none;
  will-change: opacity, filter, transform;
}

.about-sand-assembly.is-active .about-sand-illustration {
  animation: about-sand-form 8.4s cubic-bezier(.2, .72, .24, 1) infinite;
}

@keyframes about-sand-gather {
  0%, 5% {
    opacity: 0;
    transform: translate3d(var(--sand-start-x), var(--sand-start-y), 0) scale(.25) rotate(0deg);
  }
  12% {
    opacity: .78;
  }
  43% {
    opacity: .9;
    transform: translate3d(var(--sand-target-x), var(--sand-target-y), 0) scale(1) rotate(var(--sand-spin));
  }
  55%, 78% {
    opacity: 0;
    transform: translate3d(var(--sand-target-x), var(--sand-target-y), 0) scale(.2) rotate(var(--sand-spin));
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--sand-start-x), var(--sand-start-y), 0) scale(.2) rotate(0deg);
  }
}

@keyframes about-sand-form {
  0%, 34% {
    opacity: 0;
    filter: grayscale(1) contrast(.92) blur(14px);
    transform: scale(.88) rotate(-1.5deg);
  }
  52%, 80% {
    opacity: .82;
    filter: grayscale(1) contrast(.92) blur(0);
    transform: scale(1) rotate(0deg);
  }
  94%, 100% {
    opacity: 0;
    filter: grayscale(1) contrast(.92) blur(10px);
    transform: scale(1.05) rotate(1deg);
  }
}

@keyframes mobile-nav-scale-from-trigger {
  from {
    opacity: 0;
    transform: translate3d(10px, -10px, 0) scale(.08);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 47.99rem) {
  .about-sand-assembly {
    padding: 12px 0;
  }

  .about-sand-illustration {
    width: min(76vw, 320px);
    max-height: calc(100% - 16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-sand-grain {
    display: none;
  }

  .about-sand-illustration,
  .about-sand-assembly.is-active .about-sand-illustration {
    opacity: .82;
    filter: grayscale(1) contrast(.92);
    transform: none;
    animation: none;
  }
}

/* Full-screen, scroll-scrubbed editorial text sequence. */
.philosophy-section,
.philosophy-stage,
.philosophy-sticky {
  width: 100%;
  background: #fff;
}

.philosophy-stage {
  position: relative;
  height: 200vh;
  height: 200svh;
}

.philosophy-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.philosophy-headings {
  position: relative;
  width: min(100%, 1120px);
  min-height: 1.4em;
  perspective: 800px;
  transform-style: preserve-3d;
}

.philosophy-headings h2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding-inline: 24px;
  text-align: center;
  color: #c8c8c8;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  opacity: 0;
  filter: blur(2.2px);
  transform: translate3d(0, -9px, 0) rotateX(20deg) scaleY(.89);
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: color, filter, opacity, transform;
  transition: none;
}

@media (max-width: 47.99rem) {
  .philosophy-headings h2 {
    padding-inline: 16px;
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .philosophy-headings h2 {
    color: #222;
    filter: none;
    transform: none;
  }
}

/* Final typography treatment for the blue statistics strip. */
.testimonial-stats strong {
  color: rgb(10 10 10 / 85%);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.testimonial-section .testimonial-stats p {
  font-size: 24px;
  line-height: 1.12;
}

/* Keep the transition from Our Works into Solutions visually seamless. */
.gallery-section + .models-section {
  border-top: 0;
}

.models-section,
.models-heading,
.models-grid {
  background: #fff;
}

/* Keep the blue-section statistics strip full-bleed and centered. */
.testimonial-section {
  grid-template-columns: minmax(0, 1fr);
}

.testimonial-section > .stats-grid.testimonial-stats {
  justify-self: stretch;
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 47.99rem) {
  .testimonial-section > .stats-grid.testimonial-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Gallery: equal 4:5 frames with a full-screen, keyboard-friendly viewer. */
.gallery-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 16px 96px;
}

.gallery-page-card {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background: #e9e9e9;
  cursor: pointer;
  isolation: isolate;
}

.gallery-page-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-page-card:focus-visible {
  outline: 3px solid #00B2F5;
  outline-offset: 3px;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000001;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  background: rgb(5 5 5 / .96);
  opacity: 0;
  padding: 24px;
  transition: opacity .32s ease;
}

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

.gallery-lightbox.is-open {
  opacity: 1;
}

.gallery-lightbox-figure {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  min-width: 0;
  max-width: 100%;
  max-height: calc(100svh - 112px);
  place-items: center;
  margin: 0;
}

.gallery-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100svh - 152px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 28px 80px rgb(0 0 0 / .36);
}

.gallery-lightbox-figure figcaption {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  padding-top: 12px;
  font-size: 14px;
}

.gallery-lightbox-figure small {
  color: rgb(255 255 255 / .64);
  font: inherit;
}

.gallery-lightbox-nav,
.gallery-lightbox-close {
  border: 1px solid rgb(255 255 255 / .24);
  background: #fff;
  color: #111;
  box-shadow: 0 12px 32px rgb(0 0 0 / .28);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.gallery-lightbox-nav {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  padding: 0;
  font-size: 26px;
}

.gallery-lightbox-prev {
  grid-column: 1;
  grid-row: 1;
}

.gallery-lightbox-next {
  grid-column: 3;
  grid-row: 1;
}

.gallery-lightbox-close {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: center;
  min-width: 112px;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible,
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: #C5D501;
  color: #050505;
  transform: translateY(-2px);
}

@media (max-width: 63.99rem) {
  .gallery-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 47.99rem) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 8px 64px;
  }

  .gallery-lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding: 12px 8px 20px;
  }

  .gallery-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .gallery-lightbox-figure figcaption {
    gap: 12px;
    font-size: 12px;
  }
}
