:root {
  --bg: #050505;
  --text: #f5f5f2;
  --muted: #8f8f89;
  --presentation-mat-size: 30px;
  --section-inline-inset-config: 24px;
  --section-inline-inset: 24px;
  --section-max-width: 100%;
  --gutter: 24px;
  --panel-gap: 4px;
  --topbar-height: 72px;
  --gallery-height: clamp(340px, 60vh, 650px);
  --panel-width: min(32vw, 640px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: auto;
  overscroll-behavior-x: none;
  user-select: none;
}

body.is-mobile-device {
  user-select: auto;
  -webkit-user-select: auto;
}

body.is-mobile-device .site-loader-logo {
  animation-duration: 5.2s;
}

body.is-loading {
  overflow: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

body.is-nav-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

.page-shell {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.site-legal-footer {
  margin: 0;
  padding: 0 24px 18px;
  color: rgba(245, 245, 242, 0.42);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.site-legal-footer-contact {
  position: relative;
  z-index: 3;
  padding-top: 0.4rem;
  padding-bottom: 1.4rem;
}

body.is-poster-mode {
  background: #ffffff;
  --poster-shell-width: min(75vw, 2000px, calc(100vw - 56px));
  --poster-overhang-width: max(0px, calc((100vw - var(--poster-shell-width)) / 2));
}

body.is-poster-mode .page-shell {
  width: var(--poster-shell-width);
  max-width: none;
  min-height: 0;
  margin: 28px auto 0;
  background: #050505;
  overflow-x: visible;
  box-shadow: 0 28px 80px rgba(18, 14, 8, 0.18);
  border: 1px solid rgba(18, 14, 8, 0.08);
}

body.is-poster-mode .site-legal-footer {
  width: var(--poster-shell-width);
  max-width: none;
  margin: 0 auto 34px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 12px;
  padding-bottom: 18px;
  background: #050505;
  border: 1px solid rgba(18, 14, 8, 0.08);
  border-top: 0;
  box-shadow: 0 28px 80px rgba(18, 14, 8, 0.18);
}

body.is-poster-mode .topbar {
  padding-left: max(var(--section-inline-inset-config), 24px);
  padding-right: max(var(--section-inline-inset-config), 24px);
}

[data-scroll-section] {
  position: relative;
}

[data-scroll-reveal] {
  --scroll-reveal-distance: 46px;
  --scroll-reveal-rotate: 0deg;
  --parallax-offset: 0px;
  --scroll-reveal-x: 0px;
  opacity: 0;
  transform: translate3d(var(--scroll-reveal-x), calc(var(--scroll-reveal-distance) + var(--parallax-offset)), 0) scale(0.985) rotate(var(--scroll-reveal-rotate));
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--scroll-delay, 0s);
  will-change: opacity, transform;
}

[data-scroll-reveal="left"] {
  --scroll-reveal-x: -52px;
  transform: translate3d(var(--scroll-reveal-x), var(--parallax-offset), 0) scale(0.985);
}

[data-scroll-reveal="right"] {
  --scroll-reveal-x: 88px;
  transform: translate3d(var(--scroll-reveal-x), var(--parallax-offset), 0) scale(0.985);
}

[data-scroll-reveal].is-in-view {
  opacity: 1;
  transform: translate3d(0, var(--parallax-offset), 0) scale(1) rotate(0deg);
}

[data-parallax] {
  --parallax-offset: 0px;
  transform: translate3d(0, var(--parallax-offset), 0);
  transition: transform 90ms linear;
  will-change: transform;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.9rem;
  padding: 2rem;
  background: #000;
  color: #fff;
  transition:
    opacity 500ms ease,
    visibility 500ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.brand-loader {
  font-size: 3rem;
  transform-origin: 50% 50%;
  animation: loader-orbit 3.4s cubic-bezier(0.37, 0, 0.2, 1) infinite;
}

.site-loader-label,
.site-loader-status {
  margin: 0;
}

.site-loader-label {
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-loader-status {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.site-loader-bar {
  width: min(300px, 70vw);
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.site-loader-progress {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff 0%, #8f8f89 100%);
  transition: width 180ms ease;
}

html.has-site-cursor,
body.has-site-cursor {
  cursor: none;
}

body.has-site-cursor,
body.has-site-cursor * {
  cursor: none !important;
}

body.has-site-cursor :where(
  input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]),
  textarea,
  select,
  [contenteditable="true"],
  [contenteditable=""]
) {
  cursor: text !important;
}

.site-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.site-cursor.is-visible {
  opacity: 1;
}

.site-cursor.is-hidden-for-text {
  opacity: 0;
}

.site-cursor-box {
  display: block;
  width: 11px;
  height: 11px;
  background: #ffffff;
  border: 1px solid #000000;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: 50% 50%;
  transition:
    width 180ms ease,
    height 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-cursor.is-active .site-cursor-box {
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-color: #000000;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  animation: site-cursor-spin 2.1s linear infinite;
}

@keyframes site-cursor-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.gallery-section,
.info-grid,
.footer-nav,
.section-shell {
  width: 100%;
  max-width: var(--section-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-inline-inset);
  padding-right: var(--section-inline-inset);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: var(--section-inline-inset-config);
  padding-right: var(--section-inline-inset-config);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  gap: 1rem;
}

@media (min-width: 901px) {
  .topbar {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
    transition:
      opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 120ms;
  }

  body.has-hero-entered .topbar {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  body.contact-page .topbar {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: none;
  }
}

.brand {
  display: inline-grid;
  gap: 0;
  text-decoration: none;
  line-height: 0.86;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.topbar-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.topbar-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.topbar-menu-icon,
.topbar-menu-icon::before,
.topbar-menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.topbar-menu-icon {
  position: relative;
}

.topbar-menu-icon::before,
.topbar-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.topbar-menu-icon::before {
  top: -6px;
}

.topbar-menu-icon::after {
  top: 6px;
}

body.is-nav-open .topbar-menu-icon {
  background: transparent;
}

body.is-nav-open .topbar-menu-icon::before {
  transform: translateY(6px) rotate(45deg);
}

body.is-nav-open .topbar-menu-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.88rem;
}

body.has-collapsed-nav .topnav {
  display: none;
}

body.has-collapsed-nav .topbar-menu-toggle {
  display: inline-flex;
}

body.has-collapsed-nav .topnav {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: var(--section-inline-inset-config);
  right: var(--section-inline-inset-config);
  z-index: 21;
  display: none;
  gap: 0;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(8, 8, 8, 0.96);
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

body.has-collapsed-nav.is-nav-open .topnav {
  display: grid;
}

.topnav a {
  text-decoration: none;
}

body.has-collapsed-nav .topnav a,
body.has-collapsed-nav .topnav .topnav-login {
  width: 100%;
  margin-left: 0;
  padding: 0.92rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  text-align: left;
}

body.has-collapsed-nav .topnav > :first-child {
  border-top: 0;
}

.topnav-login {
  padding: 0;
  border: 0;
  background: transparent;
  margin-left: 1.2rem;
  cursor: pointer;
}

.topnav-logout {
  margin-left: 0;
}

.topnav-mode-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topnav-mode-badge[hidden] {
  display: none;
}

.section {
  width: 100%;
}

.cover-page-section[hidden] {
  display: none;
}

.cover-page-section {
  min-height: calc(100vh - var(--topbar-height));
  display: grid;
  align-items: center;
  padding: 5rem 0;
}

.cover-page-shell {
  display: grid;
  align-items: center;
  min-height: min(72vh, 820px);
}

.cover-page-copy {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
}

.cover-page-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.cover-page-copy p:last-child {
  margin: 0;
  max-width: 28rem;
  color: #b9b9b2;
  font-size: 1rem;
  line-height: 1.7;
}

body.is-cover-page-mode .topnav a[href="#review"],
body.is-cover-page-mode .topnav a[href="#contact"] {
  opacity: 0.42;
  pointer-events: none;
}

.login-modal-shell[hidden] {
  display: none;
}

.login-modal-shell {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.login-modal-shell.is-open {
  pointer-events: auto;
}

.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 320ms ease;
}

.login-modal-shell.is-open .login-modal-backdrop {
  opacity: 1;
}

.login-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(860px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(280px, 0.85fr);
  gap: 2rem;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.98) 0%, rgba(8, 8, 8, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transform: translate(-50%, -46%);
  opacity: 0;
  transition:
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.login-modal-shell.is-open .login-modal {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.login-modal-close {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  min-width: 48px;
  min-height: 28px;
  padding: 0 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  cursor: pointer;
}

.login-modal-copy,
.login-modal-card,
.login-modal-form,
.login-modal-session {
  display: grid;
}

.login-modal-form.is-hidden,
.login-modal-session.is-hidden {
  display: none;
}

.login-modal-field.is-hidden {
  display: none;
}

.login-modal-copy {
  align-content: end;
  gap: 0.85rem;
  padding: 1.5rem 0.5rem 0 0;
  min-height: 360px;
}

.login-modal-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-modal-copy h2,
.login-modal-session h3 {
  margin: 0;
  letter-spacing: -0.06em;
}

.login-modal-copy h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.92;
}

.login-modal-text,
.login-modal-status {
  margin: 0;
  color: #c6c6bf;
  font-size: 0.95rem;
  line-height: 1.6;
}

.login-modal-card {
  gap: 0.85rem;
  align-content: start;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.login-modal-form,
.login-modal-session {
  gap: 0.85rem;
}

.login-modal-qr-block {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.login-modal-qr-frame {
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.login-modal-qr-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.login-modal-qr-frame span {
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.login-modal-qr-copy {
  display: grid;
  gap: 0.3rem;
}

.login-modal-qr-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-modal-qr-copy strong,
.login-modal-qr-copy p {
  margin: 0;
}

.login-modal-qr-copy strong {
  font-size: 0.95rem;
}

.login-modal-qr-copy p {
  color: #c6c6bf;
  font-size: 0.85rem;
  line-height: 1.5;
  word-break: break-word;
}

.login-modal-field {
  display: grid;
  gap: 0.55rem;
}

.login-modal-field span {
  color: var(--muted);
  font-size: 0.84rem;
}

.login-modal-field input {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.86);
  color: var(--text);
  outline: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.login-modal-field input:focus {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(8, 8, 8, 0.98);
}

.otp-code-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.45rem;
}

.otp-digit {
  padding: 0;
  text-align: center;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.login-modal-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #c6c6bf;
  font-size: 0.88rem;
  line-height: 1.45;
  cursor: pointer;
}

.login-modal-remember input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #f5f5f2;
}

.login-modal-remember span {
  color: inherit;
}

.login-modal-inline-link {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d7d7cf;
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 0.18em;
}

.login-modal-inline-link:hover {
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

.login-modal-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.login-modal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  background: #f5f5f2;
  color: #050505;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.92rem;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.login-modal-actions .login-modal-button {
  flex: 1 1 0;
}

.login-modal-button-ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text);
}

.login-modal-button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text);
}

.login-modal-button:hover,
.login-modal-close:hover {
  transform: translateY(-1px);
}

.login-modal-button-ghost:hover,
.login-modal-button-secondary:hover,
.login-modal-close:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.login-modal-status {
  min-height: 1.7em;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-hero {
  min-height: calc(100vh - var(--topbar-height));
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
}

.gallery-section {
  height: var(--gallery-height);
  padding-top: 0;
  padding-bottom: 12px;
  overflow-x: clip;
}

.gallery-poster-bleed {
  display: none;
}

.gallery-viewport {
  position: relative;
  height: var(--gallery-height);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-x;
}

.gallery-viewport.is-dragging {
  cursor: grabbing;
}

.gallery-drag-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: inherit;
  background: transparent;
  pointer-events: none;
}

.gallery-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  height: 100%;
  gap: var(--panel-gap);
  padding: 0 var(--gutter);
  will-change: transform;
}

.gallery-poster-bleed-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  height: 100%;
  gap: var(--panel-gap);
  padding: 0 var(--gutter);
  will-change: transform;
}

.gallery-panel {
  --panel-enter-delay: 0s;
  position: relative;
  flex: 0 0 auto;
  height: var(--gallery-height);
  overflow: hidden;
  background: #181818;
  opacity: 0;
  transform: translate3d(-90px, 32px, 0) scale(0.96) rotate(-1deg);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--panel-enter-delay);
  will-change: transform, opacity;
}

body.has-hero-entered .gallery-panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

@media (min-width: 901px) {
  body.is-poster-mode .section-hero {
    isolation: isolate;
  }

  body.is-poster-mode .gallery-section {
    position: relative;
    overflow: visible;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    left: auto;
    padding-left: 0;
    padding-right: 0;
  }

  body.is-poster-mode .gallery-section::before,
  body.is-poster-mode .gallery-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 3;
    top: -100px;
    bottom: -88px;
    width: var(--poster-overhang-width);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  body.is-poster-mode .gallery-section::before {
    left: 0;
  }

  body.is-poster-mode .gallery-section::after {
    right: 0;
  }

  body.is-poster-mode .gallery-viewport {
    width: 100%;
    z-index: 2;
  }

  body.is-poster-mode .gallery-poster-bleed {
    position: absolute;
    inset: 0 0 12px;
    display: none !important;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
  }

  body.is-poster-mode .info-grid,
  body.is-poster-mode .footer-nav {
    position: relative;
    z-index: 3;
    overflow-x: clip;
  }
}

.panel-image,
.panel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.panel-image-base {
  filter: grayscale(1);
}

.gallery-panel[data-panel-media-type="video"] .panel-image-base {
  filter: grayscale(calc(1 - var(--panel-color-strength, 0.001)));
  transition: filter 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

.panel-image-color {
  opacity: var(--panel-color-strength, 0.001);
  will-change: opacity;
  transition: opacity 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-panel-bleed {
  opacity: 1;
  transform: none;
  transition: none;
  background: transparent;
  overflow: hidden;
}

.gallery-panel-bleed::after,
.gallery-panel-bleed .panel-overlay,
.gallery-panel-bleed .panel-image-color {
  display: none;
}

.panel-image-bleed {
  inset: 0;
  width: 100%;
  height: 100%;
  filter: none;
  opacity: 1;
  transform: translateZ(0);
}

.gallery-panel.is-hovered .panel-image-color,
.gallery-panel:hover .panel-image-color {
  opacity: 1;
}

.gallery-panel.is-hovered[data-panel-media-type="video"] .panel-image-base,
.gallery-panel:hover[data-panel-media-type="video"] .panel-image-base {
  filter: grayscale(0);
}

.gallery-panel.is-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 24, 0.52);
}

.panel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
  pointer-events: none;
}

.panel-overlay-icon {
  padding: 0;
}

.panel-overlay h2,
.panel-overlay p {
  margin: 0;
}

.panel-overlay h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.panel-overlay p {
  margin-top: 0.35rem;
  font-size: 1.05rem;
  opacity: 0.92;
}

.panel-expand {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: rgba(245, 245, 242, 0.92);
  color: #111;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.panel-expand-static {
  position: static;
  transform: none;
}

.panel-icon-shell {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 245, 242, 0.92);
  color: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.panel-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.panel-icon::before,
.panel-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.panel-icon-arrow::before,
.panel-icon-arrow::after {
  width: 14px;
  height: 2px;
  background: currentColor;
  left: 3px;
}

.panel-icon-arrow::before {
  top: 7px;
  transform: rotate(45deg);
}

.panel-icon-arrow::after {
  top: 15px;
  transform: rotate(-45deg);
}

.panel-icon-plus::before,
.panel-icon-plus::after {
  background: currentColor;
  left: 2px;
  top: 9px;
}

.panel-icon-plus::before {
  width: 16px;
  height: 2px;
}

.panel-icon-plus::after {
  width: 2px;
  height: 16px;
  left: 9px;
  top: 2px;
}

.panel-icon-play {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid currentColor;
}

.panel-icon-play::before,
.panel-icon-play::after {
  content: none;
}

.panel-icon-eye::before {
  width: 20px;
  height: 12px;
  left: 0;
  top: 4px;
  border: 2px solid currentColor;
  border-radius: 50% / 60%;
}

.panel-icon-eye::after {
  width: 6px;
  height: 6px;
  left: 7px;
  top: 9px;
  background: currentColor;
  border-radius: 50%;
}

.panel-icon-chevron::before,
.panel-icon-chevron::after {
  width: 12px;
  height: 2px;
  background: currentColor;
  left: 4px;
}

.panel-icon-chevron::before {
  top: 8px;
  transform: rotate(45deg);
}

.panel-icon-chevron::after {
  top: 14px;
  transform: rotate(-45deg);
}

.panel-expand::before,
.panel-expand::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
  left: 21px;
}

.panel-expand::before {
  top: 23px;
  transform: rotate(45deg);
}

.panel-expand::after {
  top: 33px;
  transform: rotate(-45deg);
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 29rem);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  padding-top: 1rem;
  padding-bottom: 3.5rem;
}

.info-block {
  min-width: 0;
}

.info-block-logo {
  align-self: stretch;
  display: flex;
  align-items: start;
  overflow: hidden;
  padding-left: clamp(0.4rem, 1.2vw, 1.2rem);
  padding-top: clamp(0.4rem, 1.2vw, 1.2rem);
}

.hero-logo-lockup {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  min-height: clamp(180px, 20vw, 280px);
}

.hero-logo-image {
  display: block;
  width: 135%;
  max-width: 100%;
  max-height: clamp(230px, 24vw, 338px);
  height: auto;
  object-fit: contain;
  object-position: left bottom;
}

.muted,
.info-subtitle,
.footer-label,
.info-block-meta {
  color: var(--muted);
}

.info-block-main > .muted,
.info-link,
.info-block-meta p,
.footer-edge strong,
.footer-edge span {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.info-link {
  display: inline-block;
  margin: 0.1rem 0 1.3rem;
  text-decoration: none;
  color: var(--text);
}

.info-block-main {
  display: grid;
  justify-items: end;
  align-content: end;
  padding-right: 0;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.info-block-main.is-transitioning {
  opacity: 0;
  transform: translateY(10px);
}

.hero-copy-cluster,
.hero-meta-cluster {
  width: min(100%, 29rem);
  justify-self: end;
  text-align: left;
}

@media (min-width: 901px) {
  .hero-copy-cluster {
    padding-top: 30px;
  }
}

.info-block-main h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.info-subtitle {
  margin: 0.15rem 0 1.25rem;
  font-size: 0.95rem;
}

.info-collaboration {
  display: grid;
  gap: 0.45rem;
  margin: -0.2rem 0 1.3rem;
}

.info-collaboration-label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-collaboration-mark {
  min-height: 30px;
  display: flex;
  align-items: center;
}

.info-collaboration-mark img {
  display: block;
  width: min(var(--project-collaboration-logo-width, 180px), 100%);
  max-width: 100%;
  max-height: 88px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.info-collaboration-mark span {
  color: #d7d7d1;
  font-size: 0.98rem;
  line-height: 1.4;
}

.info-description {
  max-width: 35rem;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.info-block-meta {
  display: grid;
  gap: 0.2rem;
  margin-top: 2rem;
}

.footer-nav {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 2.2rem;
}

.footer-edge {
  display: grid;
  gap: 0.1rem;
}

.footer-edge-right {
  justify-items: end;
  text-align: right;
}

.footer-label {
  font-size: 0.84rem;
}

.section-shell {
}

.narrative-section,
.services-section {
  padding: 7rem 0;
  overflow-x: clip;
}

.services-shell {
  display: grid;
  grid-template-columns: minmax(0, 31rem) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
  min-width: 0;
}

.feature-band {
  padding: 2rem 0 7rem;
  overflow-x: clip;
}

.full-bleed-image-row {
  --section-three-gap: 0px;
  position: relative;
  width: 100%;
  max-width: var(--section-max-width);
  margin: 0 auto;
  padding-left: var(--section-inline-inset);
  padding-right: var(--section-inline-inset);
  overflow-x: clip;
  overflow-y: visible;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
  -webkit-user-select: none;
}

.full-bleed-image-row.is-dragging {
  cursor: grabbing;
}

.full-bleed-image-track {
    display: flex;
    gap: var(--section-three-gap);
    width: max-content;
    align-items: end;
    will-change: transform;
  }

.full-bleed-image-sequence {
    display: flex;
    gap: var(--section-three-gap);
    flex: 0 0 auto;
  }

.full-bleed-image-panel {
  --section-three-opacity: 0;
  --section-three-offset: 320px;
  --section-three-color-strength: 0.001;
  flex: 0 0 clamp(258px, 25vw, 448px);
  margin: 0;
  overflow: hidden;
  opacity: var(--section-three-opacity);
  transform: translate3d(0, var(--section-three-offset), 0);
  transition:
    opacity 320ms linear,
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.full-bleed-image-panel[data-section-three-panel] {
  transform-origin: 50% 100%;
}

.full-bleed-image-media {
  position: relative;
  width: 100%;
  height: clamp(218px, 27vw, 432px);
  overflow: hidden;
}

.section-three-image,
.section-three-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-three-image-base {
  filter: grayscale(1);
}

.full-bleed-image-panel[data-panel-media-type="video"] .section-three-image-base {
  filter: grayscale(calc(1 - var(--section-three-color-strength, 0.001)));
  transition: filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-three-image-color {
  opacity: var(--section-three-color-strength);
  will-change: opacity;
}

.two-column-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.platform-section-shell {
  display: flex;
  justify-content: flex-end;
  align-items: start;
  gap: 50px;
}

.platform-body {
  margin: 0;
  max-width: 24rem;
  color: #b9b9b2;
  font-size: 1rem;
  line-height: 1.7;
}

.platform-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
  flex: 0 0 24rem;
  min-width: 0;
}

.platform-copy h2 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.presentation-mat {
  padding: var(--presentation-mat-size);
  background: #fff;
}

.platform-image-frame {
  margin: 0;
  display: inline-block;
  flex: 0 0 auto;
  width: fit-content;
  max-width: min(940px, calc(100vw - 34rem - 150px));
  margin-right: 100px;
  overflow: hidden;
}

.platform-image-frame[data-scroll-reveal="right"] {
  --scroll-reveal-x: min(32vw, 420px);
}

.platform-image-frame img {
  display: block;
  width: auto;
  max-width: min(100%, calc(100vw - 34rem - 150px - (var(--presentation-mat-size) * 2)));
  max-height: min(76vh, 1100px);
  height: auto;
  object-fit: contain;
  object-position: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-intro {
  align-self: stretch;
  min-width: 0;
}

.services-intro-frame {
  position: relative;
  display: grid;
  align-content: start;
  width: 100%;
  max-width: 31rem;
  min-height: 100%;
  height: 100%;
  padding: 20px;
  overflow: hidden;
}

.services-intro-image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.03);
}

.services-intro-image-wrap::after {
  content: none;
}

.services-intro-slices {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 0;
}

.services-intro-slice {
  --slice-translate: 0px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  will-change: transform;
}

.services-intro-slice-image {
  position: absolute;
  inset: -1px 0;
  background-image: var(--services-image-url);
  background-repeat: no-repeat;
  background-size: 100% 400%;
  transform: translate3d(var(--slice-translate), 0, 0);
  will-change: transform;
}

.services-intro-slice-a .services-intro-slice-image {
  background-position: center 0%;
}

.services-intro-slice-b .services-intro-slice-image {
  background-position: center 33.333%;
}

.services-intro-slice-c .services-intro-slice-image {
  background-position: center 66.666%;
}

.services-intro-slice-d .services-intro-slice-image {
  background-position: center 100%;
}

.services-intro-copy {
  --services-copy-translate: 36px;
  --services-copy-opacity: 0;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
  width: min(100%, 18rem);
  margin-left: auto;
  justify-items: end;
  text-align: right;
  padding: 0.7rem 0.8rem;
  background: rgba(7, 9, 14, 0.34);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 10px;
  opacity: var(--services-copy-opacity);
  transform: translate3d(var(--services-copy-translate), 0, 0);
  will-change: transform, opacity;
}

.services-intro-copy .section-kicker,
.services-intro-copy .section-copy h2,
.services-intro-copy .section-copy p {
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.services-intro-copy .section-copy {
  display: grid;
  gap: 0.8rem;
  width: 100%;
  justify-items: end;
}

.services-intro-copy .section-copy h2 {
  width: 100%;
  max-width: none;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 0.94;
}

.services-intro-copy .section-copy p {
  width: 100%;
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.55;
}

.services-list {
  display: grid;
  gap: 0;
  width: 100%;
  margin-right: 0;
  min-width: 0;
}

.service-line {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) minmax(12rem, 21rem);
  gap: 1.15rem;
  align-items: end;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  min-width: 0;
  transition:
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 220ms ease,
    opacity 220ms ease;
}

.service-line:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.service-line::after {
  content: "";
  position: absolute;
  left: 72px;
  bottom: -1px;
  width: 9rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 176, 143, 0.7), transparent);
  opacity: 0.6;
}

.service-line:hover {
  transform: translateX(10px);
}

.service-line-right {
  grid-template-columns: minmax(12rem, 21rem) minmax(0, 1fr) 3rem;
}

.service-line-right > .service-index {
  order: 3;
  text-align: right;
}

.service-line-right > h3 {
  order: 2;
  text-align: right;
  justify-self: stretch;
}

.service-line-right > p {
  order: 1;
  text-align: left;
}

.service-line[data-scroll-reveal="left"] {
  --scroll-reveal-x: -86px;
  --scroll-reveal-distance: 10px;
}

.service-line[data-scroll-reveal="right"] {
  --scroll-reveal-x: 86px;
  --scroll-reveal-distance: 10px;
}

.service-line[data-scroll-reveal].is-in-view {
  transform: translate3d(0, 0, 0);
}

.service-index {
  align-self: start;
  color: rgba(199, 176, 143, 0.86);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-line h3 {
  margin: 0;
  width: 100%;
  max-width: none;
  font-size: clamp(1.2rem, 2.1vw, 2.45rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  min-width: 0;
}

.service-line p {
  margin: 0;
  max-width: 22ch;
  color: #bbb9b1;
  font-size: 0.68rem;
  line-height: 1.5;
  min-width: 0;
}

.clients-section {
  padding: 2rem 0 7rem;
  overflow: hidden;
}

.clients-shell {
  display: grid;
  gap: 1.6rem;
  min-width: 0;
}

.clients-head {
    display: grid;
    grid-template-columns:
      clamp(1.5rem, 4vw, 4rem)
      minmax(24rem, 32rem)
      minmax(0, 1.5fr);
    gap: clamp(1.4rem, 3vw, 3.4rem);
    align-items: start;
    padding-top: 1.25rem;
    margin-bottom: clamp(2.2rem, 5vw, 4.4rem);
}

.clients-copy {
    grid-column: 2;
    width: 100%;
    max-width: 32rem;
    justify-self: start;
  }

.clients-copy h2 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2rem, 4.3vw, 4rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
  }

.clients-copy p {
    margin: 0.85rem 0 0;
    max-width: 28rem;
    color: #b9b9b2;
    font-size: 0.96rem;
    line-height: 1.7;
  }

.clients-marquee-stack {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.2rem 0;
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2rem, 5vw, 5rem);
  z-index: 1;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0) 100%);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #050505 0%, rgba(5, 5, 5, 0) 100%);
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.7vw, 1.25rem);
  width: max-content;
  animation: clients-marquee var(--clients-marquee-duration, 40s) linear infinite;
  will-change: transform;
}

.clients-marquee-secondary .clients-marquee-track {
  animation-direction: reverse;
}

.client-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: clamp(11rem, 15vw, 14rem);
    min-height: clamp(3.75rem, 5vw, 4.6rem);
    padding: 0.85rem 1.2rem;
    border: 0;
    background: transparent;
  }

.client-mark img {
  display: block;
  max-width: min(10.5rem, 100%);
  max-height: 2rem;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(var(--client-logo-scale, 1));
  transform-origin: center;
}

.client-mark-text {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(1.4rem, 2.15vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  transform: scale(var(--client-logo-scale, 1));
  transform-origin: center;
}

@keyframes clients-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.section-kicker,
.feature-card span {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-copy h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.section-copy p,
.section-detail p,
.feature-card p {
  margin: 1rem 0 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #b9b9b2;
}

.detail-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.detail-list li {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-card {
  min-height: 260px;
  padding: 1.2rem 1rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-card h3 {
  margin: 1rem 0 0;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

@media (max-width: 1100px) {
  :root {
    --panel-width: min(68vw, 640px);
    --gallery-height: clamp(320px, 54vh, 560px);
  }

  .topnav,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .topbar {
    align-items: center;
  }

  .section-hero {
    min-height: auto;
  }

  .two-column-shell,
  .services-shell,
  .feature-grid,
  .platform-intro,
  .platform-section-shell {
    grid-template-columns: 1fr;
  }

  .services-intro {
    position: static;
  }

  .services-intro-frame {
    position: static;
    width: 100%;
    min-height: 34rem;
    padding: 20px;
  }

  .services-intro-image-wrap {
    width: 100%;
  }

  .services-intro-slice {
  }

  .services-intro-slice-image {
    background-size: auto 400%;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .clients-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .clients-copy h2 {
    max-width: 15ch;
  }

  .service-line,
  .service-line-right {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .service-line::after {
    left: 0;
    width: 6rem;
  }

  .service-line-right > .service-index,
  .service-line-right > h3,
  .service-line-right > p {
    order: initial;
    text-align: left;
    justify-self: start;
  }

  .service-line h3 {
    font-size: clamp(1.2rem, 6vw, 1.7rem);
  }

  .full-bleed-image-panel {
    flex: 0 0 min(82vw, 29rem);
  }

  .platform-section-shell {
    display: grid;
    gap: 2rem;
  }

  .gallery-section {
    margin-bottom: 0.5rem;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-edge-right {
    justify-items: start;
    text-align: left;
  }

  .info-block-main {
    padding-right: 0;
  }

  .hero-copy-cluster,
  .hero-meta-cluster {
    width: 100%;
    justify-self: start;
  }

  .platform-copy,
  .platform-image-frame {
    flex: initial;
    max-width: 100%;
    margin-right: 0;
  }

  .platform-image-frame {
    width: 100%;
  }

  .platform-image-frame img {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }

  .login-modal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .login-modal-copy {
    padding-right: 0;
    min-height: auto;
    padding-top: 2rem;
  }

  .login-modal-qr-block {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 14px;
    --section-inline-inset-config: 14px;
    --section-inline-inset: 14px;
    --panel-width: calc(100vw - 28px);
    --gallery-height: clamp(270px, 52vh, 460px);
  }

  .topbar {
    min-height: 64px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .full-bleed-image-panel {
    --section-three-opacity: 1;
    --section-three-offset: 0px;
    --section-three-color-strength: 1;
    opacity: var(--section-three-opacity);
    transform: translate3d(0, var(--section-three-offset), 0);
    will-change: auto;
  }

  .topbar-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .narrative-section,
  .services-section,
  .clients-section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .feature-band {
    padding-top: 0;
    padding-bottom: 70px;
  }

  .client-mark {
    min-width: 9.5rem;
    min-height: 3.45rem;
    padding: 0.8rem 1rem;
  }

  .client-mark img {
    max-width: min(8.2rem, 100%);
    max-height: 1.5rem;
  }

  .client-mark-text {
    font-size: clamp(1.1rem, 4.7vw, 1.5rem);
  }

  .info-grid {
    gap: 1rem;
    padding-bottom: 28px;
  }

  .info-block-logo {
    padding-left: 0;
    padding-top: 0;
  }

  .cover-page-copy h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .info-block-main h1 {
    max-width: 8.8ch;
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .info-description {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .hero-logo-lockup {
    min-height: 126px;
  }

  .hero-logo-image {
    width: min(112%, 702px);
    max-height: 198px;
  }

  .footer-nav {
    gap: 0.95rem;
    padding-bottom: 1.15rem;
  }

  .services-shell,
  .clients-shell {
    gap: 1.75rem;
  }

  .site-legal-footer {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .site-legal-footer-contact {
    padding-top: 0.2rem;
    padding-bottom: 1rem;
  }

  .services-intro-frame {
    min-height: 25rem;
    padding: 1rem;
  }

  .services-intro-copy {
    padding-top: 1rem;
  }

  .services-list {
    gap: 0.85rem;
  }

  .full-bleed-image-row {
    --section-three-gap: 10px;
  }

  .full-bleed-image-panel {
    flex: 0 0 min(88vw, 32rem);
  }

  .full-bleed-image-media {
    height: clamp(320px, 50svh, 540px);
  }

  .platform-section-shell {
    gap: 1.2rem;
  }

  .service-line {
    padding: 1rem;
    background: rgba(7, 9, 14, 0.46);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    border-top-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  }

  .service-line:last-child {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .service-line::after {
    display: none;
  }

  .clients-copy h2 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    line-height: 0.96;
  }

  .clients-copy p {
    max-width: 28rem;
  }

  body.has-collapsed-nav .topnav {
    left: 1rem;
    right: 1rem;
    padding: 0.65rem 0.9rem;
  }

  .login-modal {
    width: min(100vw - 18px, 960px);
    padding: 1rem;
  }

  .login-modal-card {
    padding: 1rem;
  }

  .login-modal-copy h2 {
    max-width: 12ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-panel {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-scroll-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  [data-parallax] {
    transform: none !important;
    transition: none;
  }

  .brand-loader {
    animation-duration: 7s;
  }

  .panel-image-color,
  .info-block-main {
    transition-duration: 0.01ms;
  }
}

@keyframes loader-orbit {
  0% {
    transform: rotate(0deg) scale(0.96);
    opacity: 0.72;
  }

  20% {
    transform: rotate(80deg) scale(1);
    opacity: 1;
  }

  50% {
    transform: rotate(180deg) scale(1.04);
    opacity: 1;
  }

  80% {
    transform: rotate(280deg) scale(1);
    opacity: 0.92;
  }

  100% {
    transform: rotate(360deg) scale(0.96);
    opacity: 0.72;
  }
}

.homepage-classic-shell[hidden],
.editorial-homepage[hidden] {
  display: none !important;
}

body.is-dynamic-editorial-mode {
  background: #040404;
}

body.is-dynamic-editorial-mode .page-shell {
  width: 100%;
  max-width: 100%;
  background: #040404;
  overflow-x: clip;
}

body.is-dynamic-editorial-mode .topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 1.4rem 2rem 0.95rem;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.88) 0%, rgba(3, 3, 3, 0.58) 55%, rgba(3, 3, 3, 0) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.is-dynamic-editorial-mode .site-legal-footer {
  width: 100%;
  max-width: 100%;
  padding: 0 2rem 2rem;
}

.editorial-homepage {
  position: relative;
  color: #f4f1ea;
  background:
    radial-gradient(circle at top right, rgba(215, 173, 112, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(122, 89, 46, 0.14), transparent 34%),
    #040404;
}

.editorial-shell {
  width: min(1800px, calc(100vw - 72px));
  margin: 0 auto;
}

.editorial-section {
  position: relative;
  width: 100%;
}

.editorial-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.68);
}

.editorial-kicker-muted {
  color: rgba(244, 241, 234, 0.46);
}

.editorial-hero {
  min-height: 285vh;
}

.editorial-hero-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  height: 100vh;
  overflow: clip;
}

.editorial-hero-media-stage {
  position: absolute;
  inset: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #111 0%, #050505 100%);
}

.editorial-hero-media-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.34) 0%, rgba(4, 4, 4, 0.18) 30%, rgba(4, 4, 4, 0.86) 100%);
  pointer-events: none;
}

.editorial-hero-plane {
  position: absolute;
  margin: 0;
  will-change: transform, opacity, filter;
}

.editorial-hero-plane-1 {
  left: 4vw;
  top: 17vh;
  width: 42vw;
  height: 60vh;
}

.editorial-hero-plane-2 {
  right: 4vw;
  top: 11vh;
  width: 28vw;
  height: 72vh;
}

.editorial-hero-plane-3 {
  left: 33vw;
  bottom: 10vh;
  width: 23vw;
  height: 28vh;
}

.editorial-hero-plane-4 {
  right: 20vw;
  bottom: 8vh;
  width: 20vw;
  height: 26vh;
}

.editorial-hero-plane-frame,
.editorial-hero-plane-image,
.editorial-hero-plane-image img {
  width: 100%;
  height: 100%;
}

.editorial-hero-plane-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.editorial-hero-plane-image img {
  object-fit: cover;
}

.editorial-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.52fr);
  align-items: end;
  gap: 5vw;
  min-height: 100vh;
  padding: 7.5rem 0 3.8rem;
}

.editorial-hero-copy {
  max-width: 15ch;
  align-self: end;
  will-change: transform, opacity;
}

.editorial-hero-copy h1 {
  margin: 0;
  font-size: clamp(4.5rem, 11vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.editorial-hero-subtitle {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.03em;
  color: rgba(244, 241, 234, 0.64);
}

.editorial-hero-description {
  margin: 1.6rem 0 0;
  max-width: 26rem;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.5;
  color: rgba(244, 241, 234, 0.78);
}

.editorial-hero-sidebar {
  align-self: end;
  justify-self: end;
  width: min(27rem, 100%);
  padding: 1.3rem 1.3rem 1.4rem;
  background: rgba(11, 11, 11, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.25);
}

.editorial-hero-sidebar-body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(244, 241, 234, 0.74);
}

.editorial-hero-meta {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
  will-change: transform;
}

.editorial-hero-meta-line {
  display: grid;
  gap: 0.28rem;
}

.editorial-meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.42);
}

.editorial-hero-meta-line strong {
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(244, 241, 234, 0.94);
}

.editorial-hero-rail {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.editorial-hero-rail-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: baseline;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 241, 234, 0.42);
  transition: color 220ms ease;
}

.editorial-hero-rail-item.is-active {
  color: rgba(244, 241, 234, 0.96);
}

.editorial-hero-rail-index {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-hero-rail-item strong {
  font-size: 1rem;
  font-weight: 500;
}

.editorial-feature {
  min-height: 200vh;
  margin-top: -6vh;
}

.editorial-feature-pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 5rem 0 4rem;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.12) 0%, rgba(4, 4, 4, 0.92) 24%, rgba(4, 4, 4, 1) 100%);
}

.editorial-feature-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(520px, 1.2fr) minmax(220px, 0.46fr);
  gap: clamp(1.4rem, 3vw, 3.2rem);
  align-items: center;
}

.editorial-feature-copy h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5.2vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.editorial-feature-description {
  margin: 1.2rem 0 0;
  max-width: 24rem;
  color: rgba(244, 241, 234, 0.78);
  line-height: 1.6;
}

.editorial-feature-facts {
  display: grid;
  gap: 1.05rem;
  margin: 1.8rem 0 0;
}

.editorial-feature-facts dt {
  margin: 0 0 0.28rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.42);
}

.editorial-feature-facts dd {
  margin: 0;
  color: rgba(244, 241, 234, 0.92);
}

.editorial-feature-frame {
  position: relative;
  aspect-ratio: 0.88;
  overflow: hidden;
  border-radius: 34px;
  transform-origin: 50% 60%;
  will-change: transform;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.editorial-feature-asset,
.editorial-feature-asset img {
  width: 100%;
  height: 100%;
}

.editorial-feature-asset img {
  object-fit: cover;
}

.editorial-feature-side {
  display: grid;
  gap: 1rem;
  will-change: transform, opacity;
}

.editorial-mini-card {
  padding: 1rem 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-mini-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.42);
}

.editorial-mini-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.editorial-mini-card p:last-child {
  margin: 0.65rem 0 0;
  color: rgba(244, 241, 234, 0.66);
  line-height: 1.55;
}

.editorial-mosaic {
  padding: 8rem 0 8.5rem;
}

.editorial-mosaic-shell {
  display: grid;
  gap: 2rem;
}

.editorial-mosaic-header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: end;
}

.editorial-mosaic-header h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.editorial-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.editorial-mosaic-card {
  display: grid;
  gap: 1rem;
  padding: 0.7rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  will-change: transform, opacity;
}

.editorial-mosaic-card-tall {
  grid-column: span 4;
}

.editorial-mosaic-card-wide {
  grid-column: span 5;
}

.editorial-mosaic-card-feature {
  grid-column: span 7;
}

.editorial-mosaic-card-compact {
  grid-column: span 3;
}

.editorial-mosaic-media {
  overflow: hidden;
  border-radius: 22px;
  min-height: 26rem;
}

.editorial-mosaic-card-feature .editorial-mosaic-media {
  min-height: 34rem;
}

.editorial-mosaic-card-compact .editorial-mosaic-media {
  min-height: 20rem;
}

.editorial-mosaic-image,
.editorial-mosaic-image img {
  width: 100%;
  height: 100%;
}

.editorial-mosaic-image img {
  object-fit: cover;
}

.editorial-mosaic-copy {
  display: grid;
  gap: 0.65rem;
  padding: 0 0.35rem 0.2rem;
}

.editorial-mosaic-copy h3 {
  margin: 0;
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  line-height: 1;
}

.editorial-mosaic-copy p:last-child {
  margin: 0;
  color: rgba(244, 241, 234, 0.68);
  line-height: 1.55;
}

.editorial-closing {
  padding: 0 0 7rem;
}

.editorial-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-closing-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 5.6vw, 5.9rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.editorial-closing-copy p {
  max-width: 30rem;
  margin: 1.1rem 0 0;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.55;
}

.editorial-closing-actions {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}

.editorial-closing-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.95);
  color: #0a0a0a;
  font-weight: 600;
  text-decoration: none;
}

.editorial-closing-link-secondary {
  background: transparent;
  color: rgba(244, 241, 234, 0.92);
}

.editorial-clients-marquee {
  min-height: 20rem;
}

body.is-dynamic-editorial-mode .clients-marquee {
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

@media (max-width: 1400px) {
  .editorial-hero-plane-1 {
    width: 46vw;
  }

  .editorial-hero-plane-2 {
    width: 31vw;
  }

  .editorial-feature-grid,
  .editorial-mosaic-header,
  .editorial-closing-grid {
    grid-template-columns: 1fr;
  }

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

  .editorial-mosaic-card-tall,
  .editorial-mosaic-card-wide,
  .editorial-mosaic-card-feature,
  .editorial-mosaic-card-compact {
    grid-column: span 6;
  }
}

@media (max-width: 1180px) {
  .editorial-shell {
    width: min(100vw - 48px, 1400px);
  }

  .editorial-hero-grid {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .editorial-hero-copy {
    max-width: 12ch;
  }

  .editorial-hero-sidebar {
    justify-self: start;
  }

  .editorial-mosaic-card-tall,
  .editorial-mosaic-card-wide,
  .editorial-mosaic-card-feature,
  .editorial-mosaic-card-compact {
    grid-column: span 12;
  }
}
