:root {
  color-scheme: dark;
  --bg: #0b0b0a;
  --panel: #151513;
  --panel-2: #20201d;
  --viewer-grey: #2c2d2d;
  --viewer-grey-soft: #343535;
  --viewer-line: #484949;
  --text: #f2eee8;
  --muted: #a8a097;
  --line: #34312d;
  --accent: #d9b56f;
  --accent-2: #7bb1a8;
  --danger: #e0765e;
  --curve-r: 26;
  --curve-g: 52;
  --curve-b: 50;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(var(--curve-r), var(--curve-g), var(--curve-b), 0.28), rgba(var(--curve-r), var(--curve-g), var(--curve-b), 0.12) 48%, var(--bg) 100%),
    radial-gradient(circle at 76% 26%, rgba(var(--curve-r), var(--curve-g), var(--curve-b), 0.28), transparent 27rem),
    radial-gradient(circle at 10% 10%, rgba(123, 177, 168, 0.13), transparent 24rem),
    #0b0b0a;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  min-height: 5.35rem;
  padding: 0 max(2rem, calc((100vw - 1680px) / 2 + 2rem));
  background: rgba(11, 11, 10, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.header-menu,
.nav,
.header-socials {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.85rem;
  margin-right: auto;
  text-decoration: none;
  font-weight: 720;
}

.brand-logo {
  display: block;
  width: clamp(10.5rem, 13vw, 15rem);
  height: auto;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.34rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-name {
  font-size: 1.78rem;
}

.brand-divider,
.brand-role {
  font-size: 1.02rem;
  font-weight: 620;
}

.header-menu {
  gap: 1.35rem;
}

.menu-toggle {
  position: relative;
  display: none;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(242, 238, 232, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 1.05rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
  transform: translate(-50%, -0.26rem);
}

.menu-toggle span + span {
  transform: translate(-50%, 0.26rem);
}

.site-header.is-menu-open .menu-toggle span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.header-socials {
  gap: 0.45rem;
  margin-left: -0.2rem;
  margin-right: 1.35rem;
}

.header-socials .social-link {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
}

.nav {
  gap: clamp(0.7rem, 1.3vw, 1.35rem);
  color: var(--muted);
  font-size: clamp(0.82rem, 0.82vw, 1rem);
}

.nav a,
.nav summary {
  text-decoration: none;
}

.nav a:hover,
.nav a.is-active,
.nav summary:hover,
.nav summary.is-active {
  color: var(--text);
}

.nav-services {
  position: relative;
  padding: 0.6rem 0;
  margin: -0.6rem 0;
}

.nav-services summary {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  list-style: none;
  cursor: pointer;
}

.nav-services summary::-webkit-details-marker {
  display: none;
}

.nav-services summary::after {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  margin-top: -0.12rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-services[open] summary::after,
.nav-services:hover summary::after,
.nav-services:focus-within summary::after {
  transform: rotate(225deg) translate(-0.05rem, -0.05rem);
}

.services-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 25;
  display: grid;
  min-width: 14rem;
  padding: 0.5rem;
  border: 1px solid rgba(242, 238, 232, 0.12);
  border-radius: 8px;
  background: rgba(18, 18, 17, 0.96);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.25rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.services-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.8rem;
}

.nav-services[open] .services-menu,
.nav-services:hover .services-menu,
.nav-services:focus-within .services-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.services-menu a {
  padding: 0.62rem 0.7rem;
  border-radius: 5px;
  white-space: nowrap;
}

.services-menu a:hover,
.services-menu a.is-active {
  background: rgba(242, 238, 232, 0.07);
}

main {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 1.8rem;
}

.intro {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 5.25rem 2rem 3.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.52fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 6rem);
  min-height: clamp(22rem, 46vh, 34rem);
}

.intro-copy-block {
  min-width: 0;
}

.kicker,
.section-bar p,
.project-meta,
.project-credits dt,
.detail-list dt,
.stats dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro h1 {
  width: min(13ch, 100%);
  margin: 0;
  font-size: clamp(3.2rem, 7.3vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.intro-copy {
  width: min(46rem, 100%);
  margin: 1.5rem 0 0;
  color: #d3cbc0;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.curve-field {
  position: relative;
  min-width: 0;
  width: min(100%, 38rem);
  aspect-ratio: 1.32 / 1;
  justify-self: end;
  opacity: 0.82;
}

.curve-field::before {
  content: "";
  position: absolute;
  inset: 13% 7% 7% 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  pointer-events: none;
}

#rgbCurve {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  touch-action: none;
}

.section-bar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.1rem;
  border-top: 0;
  padding-top: 0;
}

.work {
  margin: 0 calc(50% - 50vw);
  padding: 2rem max(2rem, calc((100vw - 1680px) / 2 + 2rem)) 3.8rem;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.section-bar h2,
.about h2 {
  margin: 0;
  font-size: 1rem;
}

.section-bar p {
  margin: 0;
  text-align: right;
}

.shortcut-hint {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
}

.shortcut-hint-mobile {
  display: none;
}

.shortcut-hint span {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  white-space: nowrap;
}

.shortcut-hint kbd {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  padding: 0.14rem 0.34rem 0.16rem;
  border: 1px solid rgba(242, 238, 232, 0.24);
  border-radius: 4px;
  background: rgba(242, 238, 232, 0.07);
  color: rgba(242, 238, 232, 0.82);
  font: inherit;
  line-height: 1;
  text-align: center;
  text-transform: none;
}

.shortcut-hint .kbd-vertical {
  transform: rotate(90deg);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  max-width: min(100%, 64rem);
}

.category-filter {
  padding: 0.38rem 0.56rem;
  color: rgba(242, 238, 232, 0.66);
  border: 1px solid rgba(242, 238, 232, 0.16);
  border-radius: 999px;
  background: rgba(242, 238, 232, 0.035);
  font: inherit;
  font-size: 0.72rem;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.category-filter:hover,
.category-filter:focus-visible,
.category-filter[aria-pressed="true"] {
  color: var(--text);
  border-color: rgba(242, 238, 232, 0.36);
  background: rgba(242, 238, 232, 0.1);
}

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

.project-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: rgba(20, 21, 20, 0.86);
  cursor: pointer;
}

.project-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transform-origin: center;
}

.main-frame img,
#lightboxImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-frame,
.lightbox-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
  background: #111;
}

#lightboxImage[hidden],
.lightbox-video[hidden] {
  display: none !important;
}

.lightbox.is-image .lightbox-video {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  overflow: hidden;
}

.lightbox-video {
  --lightbox-video-ratio: 1.7778;
  position: relative;
  width: min(92vw, 1500px);
  height: auto;
  max-height: min(68vh, calc(100vh - 14rem));
  aspect-ratio: var(--lightbox-video-ratio);
}

.main-frame .video-frame {
  aspect-ratio: var(--media-ratio, 16 / 9);
}

.thumb img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.project-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
  opacity: 0;
  transition: opacity 220ms ease;
}

.project-card[aria-expanded="true"] {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.project-title {
  position: absolute;
  z-index: 1;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.62rem;
  display: block;
  color: #f6f1e8;
  opacity: 0;
  text-align: left;
  transform: translateY(0.85rem);
  transition: opacity 240ms ease, transform 240ms ease;
}

.project-title strong {
  font-size: clamp(0.66rem, 0.78vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-transform: none;
}

.project-card:hover::after,
.project-card:focus-visible::after,
.project-card[aria-expanded="true"]::after,
.project-card:hover .project-title,
.project-card:focus-visible .project-title,
.project-card[aria-expanded="true"] .project-title {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .project-card::after,
  .project-title {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-meta {
  letter-spacing: 0.05em;
  text-transform: none;
}

.project-detail {
  --frame-width: min(100%, 42rem);
  --frame-height: 23rem;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.4rem;
  min-height: 0;
  margin: 0.25rem 0 1rem;
  padding: 0.95rem;
  background: var(--viewer-grey);
  border: 1px solid var(--viewer-line);
  border-radius: 6px;
}

.frame-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.main-frame {
  position: relative;
  width: var(--frame-width);
  max-width: 100%;
  height: var(--frame-height);
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: zoom-in;
  touch-action: pan-y;
}

.main-frame img,
.main-frame {
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
}

.main-frame::after {
  content: "View fullscreen";
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.45rem 0.6rem;
  background: rgba(0, 0, 0, 0.58);
  color: var(--text);
  border-radius: 4px;
  font-size: 0.78rem;
  opacity: 0.42;
}

.main-frame.is-video {
  cursor: default;
}

.main-frame.is-video::after {
  display: none;
}

.thumbs {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-top: 0.65rem;
  width: var(--frame-width);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  box-sizing: border-box;
}

.thumbs::-webkit-scrollbar {
  display: none;
}

.thumbs.is-dragging {
  cursor: grabbing;
}

.thumb {
  flex: 0 0 auto;
  height: clamp(4.4rem, 8vh, 5.8rem);
  width: auto;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  user-select: none;
  opacity: 0.58;
  transform: scale(0.96);
  transform-origin: center bottom;
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.thumb img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.thumb[aria-pressed="true"] {
  opacity: 1;
  transform: scale(1.05);
}

.video-thumb {
  position: relative;
  display: grid;
  place-content: center;
  gap: 0.3rem;
  width: clamp(7.8rem, 14vw, 10.4rem);
  padding: 0.55rem;
  border: 1px solid rgba(242, 238, 232, 0.16);
  border-radius: 4px;
  background: rgba(12, 12, 11, 0.62);
  color: rgba(242, 238, 232, 0.76);
  font-size: 0.72rem;
  font-weight: 680;
  line-height: 1.15;
  text-align: center;
}

.video-thumb.has-thumbnail,
.video-thumb.has-preview {
  display: block;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.video-thumb.has-thumbnail img,
.video-thumb.has-preview video {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  border-radius: 3px;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.video-thumb-mark {
  display: inline-grid;
  place-items: center;
  justify-self: center;
  min-width: 2.35rem;
  min-height: 1.55rem;
  padding: 0.2rem 0.42rem;
  border: 1px solid rgba(242, 238, 232, 0.22);
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.video-thumb.has-thumbnail .video-thumb-mark {
  position: absolute;
  right: 0.38rem;
  bottom: 0.38rem;
  min-width: 0;
  min-height: 0;
  padding: 0.24rem 0.42rem;
  background: rgba(0, 0, 0, 0.66);
  color: var(--text);
  border-color: rgba(242, 238, 232, 0.2);
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  min-width: 0;
  padding: 0.35rem 0.35rem 0.2rem;
}

.detail-copy h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3.1vw, 3.35rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.project-credit-groups {
  display: grid;
  gap: 1.15rem;
  margin: 1.05rem 0 0;
}

.project-credits {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.project-credit-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 0.55rem;
  align-items: baseline;
}

.project-credits dt,
.project-credits dd {
  margin: 0;
}

.project-credits dd {
  color: #d5cdc4;
  font-size: 1rem;
  line-height: 1.45;
}

.project-credit-list-block {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  padding-top: 0.55rem;
}

.project-credit-list-block h4 {
  margin: 0;
  color: #f4f1ea;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.credit-inline-list {
  width: min(100%, 42rem);
  margin: 0;
  padding: 0;
  color: #d5cdc4;
  font-size: 0.96rem;
  line-height: 1.45;
  text-align: center;
}

.credit-inline-list span:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin: 0 0.55rem;
  color: #8b847c;
}

.project-video-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.55rem;
  margin-top: auto;
  margin-bottom: 0.08rem;
}

.project-video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  color: #cbc7c1;
  border: 1px solid var(--viewer-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.78;
  cursor: pointer;
  transition: color 225ms ease, opacity 225ms ease, border-color 225ms ease, background-color 225ms ease;
}

.project-video-link:hover,
.project-video-link:focus-visible {
  opacity: 1;
  border-color: rgba(238, 230, 218, 0.42);
  background: rgba(255, 255, 255, 0.055);
}

.project-video-link:focus-visible {
  outline: 2px solid rgba(238, 230, 218, 0.92);
  outline-offset: 3px;
}

.project-video-link-youtube:hover,
.project-video-link-youtube:focus-visible {
  color: #ff0000;
}

.project-video-link-vimeo:hover,
.project-video-link-vimeo:focus-visible {
  color: #17d5ff;
}

.project-video-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  line-height: 1;
  transform-origin: center;
  transition: transform 225ms ease;
}

.project-video-link:hover .project-video-icon,
.project-video-link:focus-visible .project-video-icon {
  transform: translateY(-1px) scale(1.12);
}

.project-video-svg {
  display: block;
  flex: none;
  overflow: visible;
}

.project-video-svg-youtube {
  width: 1.2rem;
  height: auto;
}

.project-video-svg-vimeo {
  width: 1.08rem;
  height: 1.08rem;
}

.project-video-text {
  font-size: 0.58rem;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .project-video-link,
  .project-video-icon {
    transition: none;
  }

  .project-video-link:hover .project-video-icon,
  .project-video-link:focus-visible .project-video-icon {
    transform: none;
  }
}

.lightbox.is-standalone-video .lightbox-thumbs {
  display: none;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: auto 0 0;
}

.project-video-links + .detail-list {
  margin-top: 0;
}

.detail-list div,
.stats div {
  min-width: 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--viewer-line);
}

.detail-list dt,
.stats dt {
  margin-bottom: 0.35rem;
}

.detail-list dd,
.stats dd {
  margin: 0;
  color: #eee6da;
}

.about {
  width: min(100%, 1680px);
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1fr);
  gap: 4rem;
  margin-top: 5.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-right: 2rem;
  padding-left: 2rem;
}

.about p {
  margin: 0.75rem 0 0;
  color: #d5cdc4;
  line-height: 1.7;
}

.home-hero {
  position: relative;
  width: 100%;
  min-height: min(47rem, calc(100svh - 5.35rem));
  overflow: hidden;
  background: #050505;
}

.home-hero-slides,
.home-hero-slide {
  position: absolute;
  inset: 0;
}

.home-hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 650ms ease;
}

.home-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.1)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.46));
}

.home-hero-copy {
  position: absolute;
  left: max(7rem, calc((100vw - 1680px) / 2 + 7rem));
  bottom: clamp(8.6rem, 22vh, 14rem);
  width: min(55rem, calc(100vw - 15rem));
  color: var(--text);
  opacity: 0;
  transform: translateY(1.15rem);
}

.home-hero-slide.is-active .home-hero-copy {
  animation: heroTextIn 700ms ease 120ms forwards;
}

.home-hero-copy h1,
.home-hero-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.35vw, 3.7rem);
  font-weight: 820;
  line-height: 0.95;
  text-transform: uppercase;
}

.home-hero-copy p {
  width: min(50rem, 100%);
  margin: 0.9rem 0 0;
  color: rgba(242, 238, 232, 0.82);
  font-size: clamp(0.86rem, 0.92vw, 1rem);
  line-height: 1.55;
}

.hero-link,
.section-link,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.72rem 1.1rem;
  border: 1px solid rgba(242, 238, 232, 0.12);
  border-radius: 4px;
  background: rgba(242, 238, 232, 0.055);
  color: var(--danger);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.hero-link:hover,
.hero-link:focus-visible,
.section-link:hover,
.section-link:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  border-color: rgba(224, 118, 94, 0.42);
  background: rgba(224, 118, 94, 0.12);
  color: #ff3a2c;
  transform: translateY(-1px);
}

.hero-link {
  min-width: 8.7rem;
  margin-top: 1.45rem;
}

.home-hero-arrow {
  position: absolute;
  top: 52%;
  z-index: 3;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(242, 238, 232, 0.72);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.58);
  transform: translateY(-50%);
}

.home-hero-arrow:hover {
  color: rgba(242, 238, 232, 0.96);
}

.home-hero-prev {
  left: clamp(1rem, 3vw, 2.5rem);
}

.home-hero-next {
  right: clamp(1rem, 3vw, 2.5rem);
}

.home-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 2.8rem;
  z-index: 3;
  display: flex;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.home-hero-dots button {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.home-hero-dots button.is-active {
  background: #fff;
}

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

@keyframes heroTextInCentered {
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

.cw-hero,
.cw-page,
.cw-section {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.cw-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  min-height: clamp(30rem, 64vh, 48rem);
  padding-top: clamp(3rem, 7vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.cw-hero h1,
.cw-page h1 {
  margin: 0.45rem 0 0;
  font-size: clamp(3rem, 6.6vw, 7.2rem);
  line-height: 0.92;
}

.cw-hero p,
.cw-page-head p {
  max-width: 48rem;
  color: #d8d0c7;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.65;
}

.cw-hero figure,
.split-section figure {
  margin: 0;
}

.cw-hero img,
.split-section img,
.service-card img,
.news-card img,
.media-strip img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.cw-hero img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.text-button-muted {
  color: var(--muted);
}

.cw-page {
  padding-top: clamp(1.75rem, 3vw, 3rem);
  padding-bottom: 2rem;
}

.cw-page-head {
  max-width: 66rem;
}

.grading-page-head {
  max-width: 72rem;
}

.grading-page-head > p:last-child {
  max-width: 58rem;
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  line-height: 1.55;
}

.grading-gallery {
  margin: clamp(2.5rem, 5vw, 5rem) 0 clamp(4rem, 8vw, 7.5rem);
}

.grading-frame-strip {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 0.75rem;
}

.grading-frame-strip figure {
  min-width: 0;
  margin: 0;
}

.grading-frame-strip img {
  display: block;
  width: 100%;
  height: clamp(16rem, 27vw, 31rem);
  border-radius: 6px;
  object-fit: cover;
  object-position: center center;
  transition: opacity 140ms ease;
}

.grading-frame-strip.is-shuffling img {
  opacity: 0;
}

.grading-frame-strip figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0;
}

.grading-gallery-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.15rem;
}

.grading-shuffle {
  cursor: pointer;
}

.grading-principles,
.grading-delivery {
  display: grid;
  grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2.5rem, 8vw, 9rem);
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-top: 1px solid rgba(242, 238, 232, 0.14);
}

.cw-page .grading-principles-head h2,
.cw-page .grading-delivery h2 {
  max-width: 10ch;
  margin-top: 0.75rem;
  font-size: clamp(2.15rem, 4.8vw, 5rem);
  line-height: 0.98;
}

.grading-principles-list {
  border-top: 1px solid rgba(242, 238, 232, 0.14);
}

.grading-principle {
  display: grid;
  grid-template-columns: minmax(11rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(242, 238, 232, 0.14);
}

.grading-principle h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.grading-principle p,
.grading-delivery-copy p {
  margin: 0;
  color: #d8d0c7;
  line-height: 1.68;
}

.grading-delivery {
  border-bottom: 1px solid rgba(242, 238, 232, 0.14);
}

.grading-delivery-copy {
  max-width: 52rem;
}

.grading-delivery-copy p + p {
  margin-top: 1.2rem;
}

.grading-delivery-copy .section-link {
  margin-top: 2rem;
}

.dailies-page-head {
  max-width: 76rem;
}

.dailies-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(22rem, 0.82fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.dailies-page-head > p:last-child {
  max-width: 64rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.dailies-page-head > p:nth-last-child(2) {
  max-width: 64rem;
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  line-height: 1.55;
}

.dailies-page-head .dailies-headline {
  max-width: 60rem;
  margin: 1.25rem 0 0.85rem;
  color: var(--text);
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  font-weight: 680;
  line-height: 1.08;
}

.dailies-hero-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}

.dailies-hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.dailies-pipeline,
.dailies-capabilities,
.dailies-partnership {
  display: grid;
  grid-template-columns: minmax(14rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-top: 1px solid rgba(242, 238, 232, 0.14);
}

.cw-page .dailies-section-heading h2,
.cw-page .dailies-context-copy h2,
.cw-page .dailies-partnership h2 {
  max-width: 12ch;
  margin-top: 0.75rem;
  font-size: clamp(2.15rem, 4.5vw, 4.75rem);
  line-height: 0.98;
}

.pipeline-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pipeline-steps::before {
  position: absolute;
  top: 1.35rem;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(242, 238, 232, 0.2);
  content: "";
}

.pipeline-steps li {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  padding: 2.85rem 0.8rem 0 0;
}

.pipeline-steps li::before {
  position: absolute;
  top: 1.08rem;
  left: 0;
  width: 0.56rem;
  height: 0.56rem;
  border: 2px solid #171715;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 1px var(--danger);
  content: "";
}

.pipeline-steps strong {
  color: var(--text);
  font-size: 0.94rem;
}

.pipeline-steps small {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.dailies-capability-list {
  border-top: 1px solid rgba(242, 238, 232, 0.14);
}

.dailies-capability-list article {
  display: grid;
  grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(242, 238, 232, 0.14);
}

.dailies-capability-list header {
  display: grid;
  align-content: start;
}

.dailies-capability-list h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.dailies-capability-list ul {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding: 0;
  color: #d8d0c7;
  list-style: none;
}

.dailies-capability-list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.52;
}

.dailies-capability-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.35rem;
  height: 1px;
  background: var(--danger);
  content: "";
}

.dailies-inline-link {
  grid-column: 2;
  justify-self: start;
  margin-top: 0.75rem;
  color: var(--danger);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.dailies-inline-link:hover,
.dailies-inline-link:focus-visible {
  color: #ff3a2c;
}

.dailies-context {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid rgba(242, 238, 232, 0.14);
}

.dailies-context figure {
  margin: 0;
}

.dailies-context img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  object-fit: cover;
  object-position: center center;
}

.dailies-context-copy p:not(.kicker),
.dailies-partnership > div:last-child p {
  margin: 1.2rem 0 0;
  color: #d8d0c7;
  line-height: 1.68;
}

.dailies-partnership {
  border-bottom: 1px solid rgba(242, 238, 232, 0.14);
}

.dailies-partnership > div:last-child {
  max-width: 52rem;
}

.dailies-partnership .section-link {
  margin-top: 2rem;
}

.onset-opening {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.onset-opening-copy {
  min-width: 0;
}

.onset-page-head {
  max-width: 56rem;
}

.onset-definition {
  max-width: 48rem;
  margin-top: clamp(2rem, 4vw, 4rem);
  padding-top: 1.35rem;
  border-top: 1px solid rgba(242, 238, 232, 0.16);
}

.onset-hero-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}

.onset-hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.cw-page .onset-definition h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.onset-definition p,
.onset-gallery-intro,
.onset-standards-copy p {
  color: #d8d0c7;
  line-height: 1.68;
}

.onset-definition p {
  margin: 1rem 0 0;
}

.onset-gallery {
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 8vw, 8rem);
  border-top: 1px solid rgba(242, 238, 232, 0.14);
}

.onset-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.cw-page .onset-gallery-head h2,
.cw-page .onset-section-heading h2,
.cw-page .onset-standards h2 {
  max-width: 13ch;
  margin-top: 0.75rem;
  font-size: clamp(2.15rem, 4.5vw, 4.75rem);
  line-height: 0.98;
}

.onset-gallery-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 0.55rem;
}

.onset-gallery-lead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin: 1.5rem 0 0.75rem;
}

.onset-gallery-intro {
  max-width: 65rem;
  margin: 0;
}

.onset-gallery-track {
  --onset-gallery-height: clamp(24rem, 32vw, 34rem);
  display: flex;
  gap: 0.75rem;
  width: 100%;
  padding-bottom: 0.8rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(242, 238, 232, 0.22) transparent;
  scrollbar-width: thin;
  cursor: grab;
}

.onset-gallery-track::-webkit-scrollbar {
  height: 0.42rem;
}

.onset-gallery-track::-webkit-scrollbar-track {
  background: transparent;
}

.onset-gallery-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(242, 238, 232, 0.22);
}

.onset-gallery-track figure {
  flex: 0 0 auto;
  margin: 0;
  scroll-snap-align: start;
}

.onset-gallery-track figure.is-landscape {
  width: calc(var(--onset-gallery-height) * 1.6);
}

.onset-gallery-track figure.is-portrait {
  width: calc(var(--onset-gallery-height) * 0.8);
}

.onset-gallery-track img {
  display: block;
  width: 100%;
  height: var(--onset-gallery-height);
  border-radius: 6px;
  object-fit: contain;
  object-position: center center;
}

.onset-gallery-track figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.onset-gallery-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.onset-phases,
.onset-standards {
  display: grid;
  grid-template-columns: minmax(14rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-top: 1px solid rgba(242, 238, 232, 0.14);
}

.onset-phase-list {
  border-top: 1px solid rgba(242, 238, 232, 0.14);
}

.onset-phase-list article {
  display: grid;
  grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(242, 238, 232, 0.14);
}

.onset-phase-list h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.onset-phase-list ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  color: #d8d0c7;
  list-style: none;
}

.onset-phase-list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.52;
}

.onset-phase-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.35rem;
  height: 1px;
  background: var(--danger);
  content: "";
}

.onset-standards {
  border-bottom: 1px solid rgba(242, 238, 232, 0.14);
}

.onset-standards-copy {
  max-width: 52rem;
}

.onset-standards-copy p {
  margin: 0;
}

.onset-standards-copy p + p {
  margin-top: 1.2rem;
}

.onset-standards-copy p a {
  color: var(--text);
  text-underline-offset: 0.2em;
}

.onset-standards-copy .section-link {
  margin-top: 2rem;
}

.lto-opening {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: end;
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.lto-page-head {
  max-width: 62rem;
}

.lto-definition {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(242, 238, 232, 0.16);
}

.cw-page .lto-definition h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.lto-definition p,
.lto-section-heading > p:not(.kicker),
.lto-security-copy p {
  color: #d8d0c7;
  line-height: 1.68;
}

.lto-definition p {
  margin: 1rem 0 0;
}

.lto-workflow,
.lto-formats,
.lto-capabilities,
.lto-security {
  display: grid;
  grid-template-columns: minmax(14rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-top: 1px solid rgba(242, 238, 232, 0.14);
}

.cw-page .lto-section-heading h2,
.cw-page .lto-security h2 {
  max-width: 13ch;
  margin-top: 0.75rem;
  font-size: clamp(2.15rem, 4.5vw, 4.75rem);
  line-height: 0.98;
}

.lto-section-heading > p:not(.kicker) {
  max-width: 31rem;
  margin: 1.25rem 0 0;
  font-size: 0.86rem;
}

.lto-workflow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lto-workflow-steps::before {
  position: absolute;
  top: 1.35rem;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(242, 238, 232, 0.2);
  content: "";
}

.lto-workflow-steps li {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  padding: 2.85rem 0.8rem 0 0;
}

.lto-workflow-steps li::before {
  position: absolute;
  top: 1.08rem;
  left: 0;
  width: 0.56rem;
  height: 0.56rem;
  border: 2px solid #171715;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 1px var(--danger);
  content: "";
}

.lto-workflow-steps strong {
  color: var(--text);
  font-size: 0.94rem;
}

.lto-workflow-steps small {
  margin-top: 0.28rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.lto-format-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(242, 238, 232, 0.14);
  border-bottom: 1px solid rgba(242, 238, 232, 0.14);
}

.lto-format-list article {
  min-width: 0;
  padding: 1.6rem clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid rgba(242, 238, 232, 0.14);
}

.lto-format-list article:first-child {
  padding-left: 0;
}

.lto-format-list article:last-child {
  border-right: 0;
}

.lto-format-list h3 {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lto-format-list p {
  display: grid;
  gap: 0.25rem;
  margin: 1.2rem 0 0;
}

.lto-format-list strong {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 620;
  line-height: 1;
}

.lto-format-list span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.lto-capability-list {
  border-top: 1px solid rgba(242, 238, 232, 0.14);
}

.lto-capability-list article {
  display: grid;
  grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(242, 238, 232, 0.14);
}

.lto-capability-list h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.lto-capability-list ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  color: #d8d0c7;
  list-style: none;
}

.lto-capability-list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.52;
}

.lto-capability-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.35rem;
  height: 1px;
  background: var(--danger);
  content: "";
}

.lto-security {
  border-bottom: 1px solid rgba(242, 238, 232, 0.14);
}

.lto-security-copy {
  max-width: 52rem;
}

.lto-security-copy p {
  margin: 0;
}

.lto-security-copy p + p {
  margin-top: 1.2rem;
}

.lto-security-copy .section-link {
  margin-top: 2rem;
}

.cw-section {
  padding-top: 2rem;
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
}

.recent-work-section {
  padding-top: 1rem;
  padding-bottom: clamp(1.8rem, 3.5vw, 3.5rem);
}

.cw-section-head {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.cw-section-head h2,
.cw-page h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 3.1rem);
  line-height: 1;
}

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

.service-card,
.news-card,
.text-grid article,
.contact-panel {
  border: 1px solid rgba(242, 238, 232, 0.1);
  border-radius: 8px;
  background: rgba(20, 20, 18, 0.5);
}

.service-card {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-height: 100%;
  padding: 0.55rem 0.55rem 1rem;
  color: inherit;
  text-decoration: none;
}

.service-card img,
.news-card img {
  aspect-ratio: 16 / 9;
  border-radius: 5px;
}

.service-card span,
.news-card h3,
.text-grid h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 740;
}

.service-card span,
.service-card p {
  padding: 0 0.45rem;
}

.service-card p,
.news-card p,
.text-grid p,
.feature-list li,
.contact-panel p {
  margin: 0;
  color: #d8d0c7;
  line-height: 1.58;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: clamp(1.5rem, 4vw, 3rem) 0;
}

.media-strip img {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.media-strip-large img {
  aspect-ratio: 4 / 3;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  gap: clamp(1.25rem, 4vw, 4rem);
  align-items: start;
  margin: clamp(1.5rem, 4vw, 3rem) 0;
}

.split-section img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
}

.feature-list {
  padding-top: 0.2rem;
}

.feature-list ul {
  display: grid;
  gap: 0.7rem;
  margin: 1.15rem 0 0;
  padding-left: 1.1rem;
}

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

.text-grid article,
.news-card {
  padding: 1rem;
}

.news-card {
  display: grid;
  gap: 0.8rem;
}

.news-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(19rem, 36rem);
  gap: 1rem;
  width: 100%;
  margin-top: 1.2rem;
  padding-bottom: 0.85rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-color: rgba(242, 238, 232, 0.22) transparent;
  scrollbar-width: thin;
  cursor: grab;
}

.news-strip::-webkit-scrollbar {
  height: 0.42rem;
}

.news-strip::-webkit-scrollbar-track {
  background: transparent;
}

.news-strip::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(242, 238, 232, 0.22);
}

.news-strip article {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 10rem;
  padding: 1rem;
  border: 1px solid rgba(242, 238, 232, 0.1);
  border-radius: 8px;
  background: rgba(20, 20, 18, 0.5);
  scroll-snap-align: start;
}

.news-strip h3,
.news-strip p {
  margin: 0;
}

.news-strip h3 {
  color: var(--text);
  font-size: 1.08rem;
}

.news-strip p {
  color: #d8d0c7;
  line-height: 1.58;
}

.news-strip .news-meta {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.news-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: auto;
  padding-top: 0.3rem;
}

.news-links a {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  text-underline-offset: 0.25rem;
}

.news-links a:hover,
.news-links a:focus-visible {
  color: var(--accent);
}

.news-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.studio-page {
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.studio-filters {
  display: flex;
  gap: 0.55rem;
  margin: clamp(2rem, 5vw, 4rem) 0 1rem;
}

.studio-filter {
  min-height: 2.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(242, 238, 232, 0.14);
  border-radius: 4px;
  background: rgba(242, 238, 232, 0.045);
  color: rgba(242, 238, 232, 0.62);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.studio-filter:hover,
.studio-filter:focus-visible,
.studio-filter[aria-pressed="true"] {
  border-color: rgba(224, 118, 94, 0.44);
  background: rgba(224, 118, 94, 0.12);
  color: var(--text);
}

.studio-panel[hidden] {
  display: none;
}

.studio-overview {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  margin-top: 0;
}

.studio-details h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.65rem, 3.1vw, 3.35rem);
  line-height: 1;
}

.studio-description {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: #d8d0c7;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.58;
}

.studio-spec-list {
  display: grid;
  gap: 0.48rem;
  margin: 1.45rem 0 0;
  padding: 0;
  color: rgba(242, 238, 232, 0.88);
  list-style: none;
}

.studio-spec-list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.42;
}

.studio-spec-list li::before {
  position: absolute;
  left: 0;
  color: var(--danger);
  content: "·";
}

.studio-spec-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.45rem;
}

.studio-spec-groups h3 {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio-spec-groups .studio-spec-list {
  margin-top: 0.75rem;
}

.studio-capacity {
  margin: 1.5rem 0 0;
  color: var(--accent);
  font-weight: 680;
}

.studio-gallery {
  margin-top: 0.65rem;
}

.studio-thumbnail {
  height: clamp(3.8rem, 7vh, 5.1rem);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  margin-top: 1.2rem;
}

.section-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.35rem;
}

.poster-card {
  position: relative;
  aspect-ratio: 2 / 3;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 2px;
  background: #050505;
}

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

.poster-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.2));
}

.poster-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  z-index: 1;
  padding: 0.65rem;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}

.poster-card h3,
.poster-card p {
  margin: 0;
}

.poster-card h3 {
  color: #ff342a;
  font-size: 1rem;
  line-height: 1.08;
}

.poster-card p {
  margin-top: 0.48rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  line-height: 1.22;
}

.poster-card strong {
  color: #fff;
}

.contact-panel {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 38rem);
  margin-top: 2rem;
  padding: 1.15rem;
}

.contact-panel a,
.footer-stats a,
.legal-grid a {
  color: inherit;
  text-decoration: none;
}

.contact-panel a:hover,
.footer-stats a:hover,
.legal-grid a:hover {
  color: var(--text);
}

.contact-page {
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(24rem, 1.12fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  margin-top: clamp(2.5rem, 6vw, 5rem);
}

.contact-primary {
  display: grid;
  gap: 1.5rem;
  align-content: start;
  padding-top: 0.35rem;
}

.contact-primary h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.65rem, 3vw, 3.1rem);
  line-height: 1;
}

.contact-primary > div > p:last-child {
  max-width: 38rem;
  margin: 1rem 0 0;
  color: #d8d0c7;
  line-height: 1.58;
}

.contact-actions {
  margin-top: 0;
}

.contact-details {
  display: grid;
  margin: 0.5rem 0 0;
}

.contact-details div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.34fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(242, 238, 232, 0.11);
}

.contact-details dt,
.contact-details dd {
  margin: 0;
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 740;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details dd {
  color: #d8d0c7;
  line-height: 1.5;
}

.contact-details a {
  color: inherit;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--text);
}

.contact-details address {
  font-style: normal;
}

.contact-details .contact-map-link {
  margin-top: 0.85rem;
  color: var(--danger);
}

.contact-details .contact-map-link:hover,
.contact-details .contact-map-link:focus-visible {
  color: #ff3a2c;
}

.contact-location {
  min-width: 0;
}

.contact-location > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
  object-position: 70% center;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  max-width: 70rem;
  margin-top: 2rem;
}

.legal-grid div {
  min-width: 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(242, 238, 232, 0.12);
}

.legal-grid dt,
.legal-grid dd {
  margin: 0;
}

.legal-grid dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-grid dd {
  margin-top: 0.32rem;
  color: #d8d0c7;
  line-height: 1.5;
}

.site-footer {
  width: min(100%, 1280px);
  margin: 2.8rem auto 0;
  padding: 1.25rem 2rem 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 20rem);
  align-items: center;
  gap: 1.35rem clamp(2rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.text-link {
  color: inherit;
  text-decoration: none;
}

.text-link:hover {
  color: var(--text);
}

.footer-curve {
  width: min(100%, 20rem);
  margin-top: -0.65rem;
  justify-self: end;
  opacity: 0.72;
}

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

.footer-stats {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.footer-stats dt,
.footer-stats dd {
  margin: 0;
}

.footer-stats dt {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-stats dd {
  margin-top: 0.42rem;
  color: #d8d0c7;
  line-height: 1.45;
}

.footer-contact {
  display: grid;
  gap: 0.28rem;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--text);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.65rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  margin-top: 0.15rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(242, 238, 232, 0.46);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-link {
  display: inline-grid;
  place-items: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(242, 238, 232, 0.18);
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-link img {
  display: block;
  width: 1.08rem;
  height: 1.08rem;
  object-fit: contain;
  filter: grayscale(1) brightness(1.9) opacity(0.72);
  transition: filter 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--text);
  transform: scale(1.08);
}

.whatsapp-link {
  border-color: rgba(242, 238, 232, 0.18);
}

.whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.72);
}

.whatsapp-link:hover img,
.instagram-link:hover img {
  filter: none;
}

.instagram-link {
  border-color: rgba(242, 238, 232, 0.18);
  background: transparent;
}

.instagram-link:hover {
  border-color: rgba(224, 64, 95, 0.72);
  background: rgba(224, 64, 95, 0.14);
}

.header-socials .colorwise-link,
.footer-socials .colorwise-link {
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0.1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.header-socials .colorwise-link:hover,
.header-socials .colorwise-link:focus-visible,
.footer-socials .colorwise-link:hover,
.footer-socials .colorwise-link:focus-visible {
  background: transparent;
  border: 0;
}

.colorwise-link img {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0;
  filter: none;
  transition: transform 160ms ease;
}

.footer-socials .colorwise-link img {
  width: 2rem;
  height: 2rem;
}

.colorwise-link:hover,
.colorwise-link:focus-visible {
  transform: scale(1.08);
}

.page-section {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 7rem 2rem 3rem;
}

.page-section h1 {
  width: min(11ch, 100%);
  margin: 0.6rem 0 0;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.9;
}

.page-copy {
  width: min(48rem, 100%);
  margin-top: 0;
  color: #d5cdc4;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 48rem) minmax(14rem, 22rem);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: 2.2rem;
}

.about-studio-image {
  width: 100%;
  margin: 0.35rem 0 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(242, 238, 232, 0.045);
}

.about-studio-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-copy p {
  margin: 0 0 1rem;
}

.page-copy h2 {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.05;
}

.page-stats {
  margin-top: 3rem;
}

.credentials {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.credentials h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1;
}

.certification-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.5rem 0 0;
  padding: 0;
  color: #d5cdc4;
  line-height: 1.55;
  list-style: none;
}

.certification-list span {
  display: inline-block;
  min-width: 4.2rem;
  color: var(--text);
  font-weight: 760;
}

.logo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.logo-item {
  display: grid;
  place-items: center;
  min-height: 7.2rem;
  margin: 0;
  padding: 1.4rem;
  border: 1px solid rgba(242, 238, 232, 0.22);
  background: rgba(242, 238, 232, 0.2);
}

.logo-item-clear {
  border-color: transparent;
  background: transparent;
}

.logo-item-light {
  background: rgba(242, 238, 232, 0.28);
}

.logo-item-soft {
  background: rgba(242, 238, 232, 0.08);
}

.logo-item img {
  display: block;
  max-width: min(100%, 18rem);
  max-height: 4.8rem;
  object-fit: contain;
}

.logo-item-pva {
  min-height: 8.4rem;
  padding: 1.1rem;
}

.logo-item-pva img {
  max-width: min(100%, 19rem);
  max-height: 6.2rem;
}

.logo-item a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.calibration-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 22rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #d5cdc4;
  line-height: 1.7;
}

.calibration-detail h2 {
  margin: 0 0 1.2rem;
  color: var(--text);
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.05;
}

.calibration-detail h2 + p {
  margin-top: 0;
}

.calibration-detail p {
  margin: 0 0 1.5rem;
}

.calibration-list {
  display: grid;
  gap: 1rem;
  margin: 0 0 2.2rem;
  padding-left: 1.25rem;
}

.calibration-list li {
  padding-left: 0.25rem;
}

.calibration-list span {
  display: block;
  color: var(--text);
  font-weight: 760;
}

.calibration-logo {
  display: grid;
  place-items: center;
  min-height: 12rem;
  margin: 0;
  padding: 1.35rem;
  border: 1px solid rgba(242, 238, 232, 0.14);
  background: rgba(242, 238, 232, 0.08);
}

.calibration-logo img {
  display: block;
  width: min(100%, 18rem);
  height: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 4.5rem;
  background: rgba(44, 45, 45, 0.96);
  overscroll-behavior: contain;
  touch-action: none;
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  width: min(92vw, 1500px);
  margin: 0;
  user-select: none;
}

#lightboxImage {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(68vh, calc(100vh - 14rem));
  border-radius: 4px;
  object-fit: contain;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-thumbs {
  --lightbox-thumb-height: clamp(3.25rem, 7vh, 4.7rem);
  --lightbox-thumb-width: calc(var(--lightbox-thumb-height) * 16 / 9);
  display: flex;
  justify-content: flex-start;
  gap: 0.55rem;
  width: min(92vw, 920px);
  max-width: 100%;
  margin-top: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  box-sizing: border-box;
}

.lightbox-thumbs::-webkit-scrollbar {
  display: none;
}

.lightbox-thumb {
  flex: 0 0 var(--lightbox-thumb-width);
  width: var(--lightbox-thumb-width);
  height: var(--lightbox-thumb-height);
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  opacity: 0.54;
  transform: scale(0.96);
  transform-origin: center bottom;
  transition: opacity 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.lightbox-thumb[aria-pressed="true"] {
  opacity: 1;
  transform: scale(1.06);
}

.lightbox-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 3px;
  pointer-events: none;
}

.lightbox-thumb.video-thumb {
  width: var(--lightbox-thumb-width);
  height: var(--lightbox-thumb-height);
  padding: 0.42rem;
  font-size: 0.62rem;
}

.lightbox-thumb.video-thumb.has-thumbnail,
.lightbox-thumb.video-thumb.has-preview {
  width: var(--lightbox-thumb-width);
  height: var(--lightbox-thumb-height);
  padding: 0;
}

.lightbox-thumb.video-thumb.has-thumbnail img,
.lightbox-thumb.video-thumb.has-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox figcaption {
  color: var(--muted);
  text-align: center;
}

.lightbox-hint {
  width: min(92vw, 920px);
  margin-top: 0.3rem;
  color: rgba(242, 238, 232, 0.48);
  font-size: 0.68rem;
  opacity: 0.62;
  pointer-events: none;
}

.lightbox-hint .shortcut-hint {
  justify-content: center;
  gap: 0.35rem 0.8rem;
}

.lightbox-hint .shortcut-hint kbd {
  min-width: 1.1rem;
  padding: 0.1rem 0.28rem 0.12rem;
  border-color: rgba(242, 238, 232, 0.16);
  background: rgba(242, 238, 232, 0.04);
  color: rgba(242, 238, 232, 0.58);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(20, 20, 18, 0.78);
  color: var(--text);
  cursor: pointer;
}

.icon-button:hover {
  background: rgba(242, 238, 232, 0.14);
}

.site-notice {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: min(42rem, calc(100vw - 2rem));
  padding: 0.85rem;
  border: 1px solid rgba(242, 238, 232, 0.14);
  border-radius: 8px;
  background: rgba(14, 14, 13, 0.94);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.34);
  color: rgba(242, 238, 232, 0.78);
  backdrop-filter: blur(16px);
}

.site-notice[hidden] {
  display: none;
}

.site-notice p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.notice-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.notice-button {
  min-height: 2.25rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(242, 238, 232, 0.16);
  border-radius: 6px;
  background: rgba(242, 238, 232, 0.06);
  color: rgba(242, 238, 232, 0.76);
  cursor: pointer;
}

.notice-accept {
  background: rgba(242, 238, 232, 0.9);
  color: #11110f;
}

.notice-button:hover {
  border-color: rgba(242, 238, 232, 0.36);
}

.close-lightbox {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 1.25rem;
}

.lightbox-next {
  right: 1.25rem;
}

@media (max-width: 1050px) {
  .site-header {
    padding-right: 1.15rem;
  }

  .menu-toggle {
    display: grid;
  }

  .header-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 1rem;
    display: grid;
    min-width: min(20rem, calc(100vw - 2rem));
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(18, 18, 17, 0.96);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.35rem);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .nav {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 0.25rem;
    font-size: 1.05rem;
  }

  .nav > * {
    min-width: 0;
  }

  .nav a,
  .nav summary {
    padding: 0.65rem 0;
  }

  .nav-services {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    padding: 0;
    margin: 0;
    justify-self: stretch;
  }

  .nav-services summary {
    justify-content: space-between;
    width: 100%;
  }

  .services-menu,
  .nav-services[open] .services-menu,
  .nav-services:hover .services-menu,
  .nav-services:focus-within .services-menu {
    position: static;
    inset: auto;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0 0 0.35rem 0.85rem;
    border: 0;
    border-left: 1px solid rgba(242, 238, 232, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .services-menu::before {
    display: none;
  }

  .services-menu a {
    padding: 0.5rem 0;
    white-space: normal;
  }

  .services-menu a:hover,
  .services-menu a.is-active {
    background: transparent;
  }

  .category-filters {
    width: 100%;
    max-width: none;
    margin-bottom: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-filters::-webkit-scrollbar {
    display: none;
  }

  .header-socials {
    justify-content: flex-start;
    margin: 0.75rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .grading-principles,
  .grading-delivery {
    grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1.45fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .grading-principle {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .dailies-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .dailies-hero-visual {
    width: min(100%, 44rem);
  }

  .dailies-pipeline,
  .dailies-capabilities,
  .dailies-partnership {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .dailies-section-heading,
  .dailies-partnership > div:first-child {
    max-width: 38rem;
  }

  .dailies-context {
    grid-template-columns: 1fr;
  }

  .dailies-context figure {
    max-width: 56rem;
  }

  .onset-opening,
  .onset-phases,
  .onset-standards {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .onset-definition,
  .onset-section-heading,
  .onset-standards > div:first-child {
    max-width: 42rem;
  }

  .onset-hero-visual {
    width: min(100%, 44rem);
  }

  .onset-phase-list article {
    grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1.45fr);
  }

  .lto-opening,
  .lto-workflow,
  .lto-formats,
  .lto-capabilities,
  .lto-security {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lto-definition,
  .lto-section-heading,
  .lto-security > div:first-child {
    max-width: 42rem;
  }

  .lto-capability-list article {
    grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1.45fr);
  }

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

  .home-hero {
    min-height: min(44rem, calc(100svh - 5.35rem));
  }

  .home-hero-copy {
    left: 3.6rem;
    top: 50%;
    bottom: auto;
    width: min(40rem, calc(100vw - 7rem));
    transform: translateY(calc(-50% + 1.15rem));
  }

  .home-hero-slide.is-active .home-hero-copy {
    animation-name: heroTextInCentered;
  }

  .home-hero-arrow {
    top: 50%;
  }

  .home-hero-copy h1,
  .home-hero-copy h2 {
    font-size: clamp(2rem, 5.4vw, 3.2rem);
  }

  .home-hero-copy p {
    font-size: 1rem;
  }

  .cw-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

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

  .text-grid,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-location {
    width: min(100%, 52rem);
  }

  .studio-details {
    max-width: 52rem;
  }

  .media-strip {
    grid-template-columns: 1fr;
  }

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

  .curve-field {
    width: min(100%, 28rem);
    justify-self: start;
    margin-top: -1.25rem;
  }

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

  .project-card {
    touch-action: pan-y;
  }

  .project-detail {
    gap: 1rem;
    align-items: start;
    padding: 0.55rem;
  }

  .frame-column {
    align-self: start;
  }

  .main-frame {
    width: 100%;
    --frame-height: auto;
    aspect-ratio: var(--media-ratio, 16 / 9);
    touch-action: none;
  }

  .main-frame img,
  .main-frame .video-frame {
    width: 100%;
    height: 100%;
  }

  .main-frame img {
    touch-action: none;
  }

  .main-frame::after {
    right: 0.55rem;
    bottom: 0.55rem;
    font-size: 0.72rem;
  }

  .thumbs {
    margin-top: 0.5rem;
  }

  .detail-copy {
    gap: 1rem;
    padding: 0.15rem 0.25rem 0.2rem;
  }

  .detail-copy h3 {
    font-size: clamp(1.55rem, 4.2vw, 2.3rem);
    line-height: 1;
  }

  .project-credits {
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .project-credit-row {
    grid-template-columns: 1fr;
    gap: 0.12rem;
  }

  .project-credits dt,
  .detail-list dt {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .project-credits dd,
  .detail-list dd {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .credit-list {
    columns: 1;
  }

  .footer-curve {
    display: none;
  }

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

  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 18rem);
  }

  .footer-stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
    justify-items: stretch;
    width: min(100%, 62rem);
    margin: 0 auto;
    text-align: center;
  }

  .footer-bottom {
    order: 4;
  }

  .footer-stats > div {
    display: grid;
    gap: 0.38rem;
    justify-items: center;
    text-align: center;
  }

  .footer-stats dt,
  .footer-stats dd {
    width: 100%;
    max-width: 32ch;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .footer-stats dd {
    margin-top: 0.36rem;
  }

  .footer-stats > div:nth-child(1) {
    order: 1;
  }

  .footer-stats > div:nth-child(2) {
    order: 2;
  }

  .footer-stats > div:nth-child(3) {
    order: 3;
  }

  .footer-stats > div:nth-child(4) {
    order: 4;
  }

  .footer-contact {
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .footer-contact > a {
    display: block;
    width: 100%;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .footer-socials {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: auto;
  }

  .shortcut-hint-desktop {
    display: none;
  }

  .shortcut-hint-mobile {
    display: flex;
    justify-content: flex-start;
    gap: 0.4rem 0.85rem;
  }

  .lightbox-hint .shortcut-hint-mobile {
    justify-content: center;
    gap: 0.35rem 0.65rem;
  }

  .shortcut-hint-mobile kbd {
    min-width: 1.75rem;
    text-align: center;
  }

  .lightbox-hint .shortcut-hint-mobile kbd {
    min-width: 1.3rem;
  }

  .site-notice {
    left: 1rem;
    right: 1rem;
    grid-template-columns: 1fr;
  }

  .notice-actions {
    justify-content: stretch;
  }

  .notice-button {
    flex: 1 1 8rem;
  }
}

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

@media (max-width: 680px) {
  .site-header {
    min-height: 4.65rem;
    padding: 0 1rem;
  }

  .brand {
    font-size: 1.22rem;
  }

  .brand-logo {
    width: clamp(8.9rem, 42vw, 12rem);
  }

  .brand-name {
    font-size: 1.42rem;
  }

  .brand-divider,
  .brand-role {
    font-size: 0.86rem;
  }

  .nav {
    gap: 0.2rem;
    font-size: 1.05rem;
  }

  .header-socials {
    gap: 0.35rem;
  }

  .header-socials .social-link {
    width: 1.38rem;
    height: 1.38rem;
    min-width: 1.38rem;
  }

  .header-socials .colorwise-link {
    width: auto;
    min-width: 0;
    height: auto;
  }

  .header-socials .colorwise-link img {
    width: 1.65rem;
    height: 1.65rem;
  }

  main {
    padding: 0 0 1.2rem;
  }

  .intro {
    min-height: 31rem;
    padding: 4.5rem 1rem 2.75rem;
  }

  .home-hero {
    min-height: calc(100svh - 4.65rem);
  }

  .home-hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.14)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.54));
  }

  .home-hero-copy {
    left: 1.5rem;
    top: 50%;
    bottom: auto;
    width: calc(100vw - 3rem);
  }

  .home-hero-copy h1,
  .home-hero-copy h2 {
    font-size: clamp(1.65rem, 8.4vw, 2.45rem);
  }

  .home-hero-copy p {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .hero-link {
    min-width: 8.8rem;
    margin-top: 1.35rem;
    font-size: 0.72rem;
  }

  .news-strip {
    grid-auto-columns: minmax(16rem, 82vw);
  }

  .studio-filters {
    position: sticky;
    top: 5.4rem;
    z-index: 4;
    padding: 0.65rem 0;
    background: rgba(11, 11, 10, 0.9);
    backdrop-filter: blur(12px);
  }

  .studio-filter {
    flex: 1;
  }

  .studio-spec-groups {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    margin-top: 2rem;
  }

  .contact-location > img {
    height: clamp(8.5rem, 40vw, 11rem);
    aspect-ratio: auto;
    object-position: 70% center;
  }

  .contact-details div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .home-hero-arrow {
    top: 50%;
    bottom: auto;
    width: 2rem;
    height: 2rem;
    font-size: 1.55rem;
  }

  .home-hero-dots {
    bottom: 2.95rem;
  }

  .poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .poster-card {
    min-height: 0;
  }

  .work {
    padding: 1.35rem 1rem 3rem;
  }

  .about,
  .site-footer,
  .page-section,
  .cw-hero,
  .cw-page,
  .cw-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .cw-hero {
    padding-top: 3rem;
    padding-bottom: 2.75rem;
  }

  .cw-hero h1,
  .cw-page h1 {
    font-size: clamp(2.6rem, 13vw, 4.6rem);
  }

  .cw-page {
    padding-top: 1.75rem;
  }

  .grading-page-head > p:last-child {
    font-size: 1rem;
  }

  .dailies-page-head > p:nth-last-child(2) {
    font-size: 1rem;
  }

  .dailies-hero-visual {
    width: 100%;
  }

  .dailies-hero-visual img {
    aspect-ratio: 16 / 10;
    border-radius: 6px;
  }

  .dailies-intro {
    gap: 2rem;
    margin-bottom: 3.5rem;
  }

  .dailies-pipeline,
  .dailies-capabilities,
  .dailies-partnership {
    gap: 2.25rem;
    padding: 3.25rem 0;
  }

  .cw-page .dailies-section-heading h2,
  .cw-page .dailies-context-copy h2,
  .cw-page .dailies-partnership h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .pipeline-steps {
    grid-template-columns: 1fr;
  }

  .pipeline-steps::before {
    top: 0;
    bottom: 0;
    left: 0.28rem;
    width: 1px;
    height: auto;
  }

  .pipeline-steps li {
    grid-template-columns: minmax(6rem, 0.5fr) minmax(0, 1fr);
    align-items: center;
    padding: 0 0 1.4rem 1.5rem;
  }

  .pipeline-steps li::before {
    top: 0.4rem;
    left: 0;
  }

  .pipeline-steps strong,
  .pipeline-steps small {
    margin-top: 0;
  }

  .dailies-capability-list article {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.45rem 0;
  }

  .dailies-inline-link {
    grid-column: 1;
  }

  .dailies-context {
    gap: 2.25rem;
    padding: 3.5rem 0;
  }

  .onset-opening {
    gap: 2.25rem;
    padding-bottom: 3.5rem;
  }

  .onset-definition {
    margin-top: 2rem;
  }

  .onset-hero-visual {
    width: 100%;
  }

  .onset-hero-visual img {
    aspect-ratio: 16 / 10;
  }

  .onset-gallery {
    padding: 3.25rem 0 3.75rem;
  }

  .onset-gallery-head {
    align-items: center;
  }

  .cw-page .onset-gallery-head h2,
  .cw-page .onset-section-heading h2,
  .cw-page .onset-standards h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .onset-gallery-controls .icon-button {
    width: 2.35rem;
    height: 2.35rem;
  }

  .onset-gallery-intro {
    margin: 0;
    font-size: 0.94rem;
  }

  .onset-gallery-lead {
    align-items: end;
    gap: 1rem;
    margin: 1.25rem 0 0.75rem;
  }

  .onset-gallery-track {
    --onset-gallery-height: min(58vh, 28rem);
    margin-right: -1rem;
    margin-left: -1rem;
    padding-right: 1rem;
    padding-left: 1rem;
    scroll-padding-left: 1rem;
  }

  .onset-gallery-track figure.is-landscape {
    width: min(86vw, calc(var(--onset-gallery-height) * 1.6));
  }

  .onset-gallery-track figure.is-portrait {
    width: min(70vw, calc(var(--onset-gallery-height) * 0.8));
  }

  .onset-gallery-track img {
    height: auto;
  }

  .onset-phases,
  .onset-standards {
    gap: 2.25rem;
    padding: 3.25rem 0;
  }

  .onset-phase-list article {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.45rem 0;
  }

  .lto-opening {
    gap: 2.25rem;
    padding-bottom: 3.5rem;
  }

  .lto-workflow,
  .lto-formats,
  .lto-capabilities,
  .lto-security {
    gap: 2.25rem;
    padding: 3.25rem 0;
  }

  .cw-page .lto-section-heading h2,
  .cw-page .lto-security h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .lto-workflow-steps {
    grid-template-columns: 1fr;
  }

  .lto-workflow-steps::before {
    top: 0;
    bottom: 0;
    left: 0.28rem;
    width: 1px;
    height: auto;
  }

  .lto-workflow-steps li {
    grid-template-columns: minmax(6rem, 0.5fr) minmax(0, 1fr);
    align-items: center;
    padding: 0 0 1.4rem 1.5rem;
  }

  .lto-workflow-steps li::before {
    top: 0.4rem;
    left: 0;
  }

  .lto-workflow-steps strong,
  .lto-workflow-steps small {
    margin-top: 0;
  }

  .lto-format-list article {
    padding: 1.35rem 0.75rem;
  }

  .lto-format-list article:first-child {
    padding-left: 0;
  }

  .lto-format-list strong {
    font-size: clamp(1.65rem, 8vw, 2.5rem);
  }

  .lto-capability-list article {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.45rem 0;
  }

  .grading-frame-strip {
    grid-template-columns: repeat(3, 82vw);
    gap: 0.65rem;
    margin-right: -1rem;
    margin-left: -1rem;
    padding: 0 1rem 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .grading-frame-strip::-webkit-scrollbar {
    display: none;
  }

  .grading-frame-strip figure {
    scroll-snap-align: start;
  }

  .grading-frame-strip img {
    height: 14rem;
  }

  .grading-gallery-controls {
    justify-content: flex-start;
  }

  .grading-principles,
  .grading-delivery {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 3.25rem 0;
  }

  .cw-page .grading-principles-head h2,
  .cw-page .grading-delivery h2 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

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

  .intro h1 {
    font-size: clamp(3.2rem, 17vw, 5.6rem);
  }

  .curve-field {
    width: min(100%, 19rem);
    margin-top: -0.75rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    margin-top: 1.4rem;
    gap: 0.9rem;
    justify-content: center;
  }

  .footer-stats {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 24rem);
    margin: 0 auto;
    justify-items: center;
    text-align: center;
  }

  .credentials {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-studio-image {
    width: min(100%, 34rem);
    aspect-ratio: 16 / 9;
    margin-top: 0.5rem;
  }

  .logo-item {
    justify-items: center;
    min-height: 6rem;
  }

  .calibration-detail {
    grid-template-columns: 1fr;
    margin-top: 2.4rem;
  }

  .calibration-logo {
    justify-items: center;
    min-height: 9rem;
  }

  .section-bar {
    display: block;
  }

  .section-bar p {
    margin-top: 0.45rem;
    text-align: left;
  }

  .shortcut-hint {
    justify-content: flex-start;
  }

  .project-grid,
  .thumbs,
  .stats,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .project-card[aria-expanded="true"] {
    display: none;
  }

  .project-detail {
    padding: 0.45rem;
    min-height: 0;
  }

  .detail-copy h3 {
    font-size: 1.65rem;
  }

  .lightbox {
    padding: 3.4rem 0.75rem;
  }

  .lightbox figure {
    width: 100%;
  }

  #lightboxImage {
    max-width: 100%;
    max-height: 63vh;
  }

  .lightbox-hint {
    width: 100%;
    margin-top: 0.15rem;
    font-size: 0.62rem;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 1rem;
    transform: none;
  }
}

@media (max-width: 940px) and (max-height: 520px) and (orientation: landscape) {
  .main-frame::after {
    content: "Fullscreen";
    right: max(0.45rem, env(safe-area-inset-right));
    bottom: max(0.45rem, env(safe-area-inset-bottom));
    padding: 0.34rem 0.48rem;
    font-size: 0.66rem;
    opacity: 0.58;
    z-index: 2;
  }
}

@media (max-width: 460px) {
  .footer-stats {
    width: min(100%, 24rem);
    gap: 1.55rem 1.05rem;
  }
}
