:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-soft: #0b0c0f;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f6f7f2;
  --muted: #a8acb5;
  --line: rgba(255, 255, 255, 0.16);
  --gold: #e8c984;
  --cyan: #8ed7df;
  --rose: #df8ea7;
  --green: #8fcaa8;
  --max: 1180px;
  --header: 58px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(232, 201, 132, 0.2), transparent 34rem),
    linear-gradient(180deg, #020203 0%, var(--bg) 42%, #0d0d0c 100%);
  color: var(--text);
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  padding: 0 clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px);
  background: rgba(5, 5, 6, 0.56);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}

.site-header.is-elevated {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 6, 0.78);
}

.brand {
  font-size: 18px;
  font-weight: 760;
}

.nav {
  display: flex;
  gap: clamp(16px, 2.6vw, 32px);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.nav a {
  transition: color 160ms ease;
}

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

.section-full {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: 94vh;
  padding: calc(var(--header) + 62px) clamp(20px, 5vw, 72px) 58px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-copy {
  max-width: 670px;
  justify-self: end;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 106px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #080808;
  background: var(--text);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
  min-width: 0;
}

.visual-stage {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 24px;
  isolation: isolate;
}

.visual-stage::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(142, 215, 223, 0.34), transparent 38%),
    linear-gradient(315deg, rgba(232, 201, 132, 0.36), transparent 42%),
    linear-gradient(180deg, rgba(223, 142, 167, 0.18), transparent 60%);
  filter: blur(48px);
  transform: translateZ(0);
}

.art-gallery::after {
  content: "";
  position: absolute;
  inset: 2%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 22%, transparent 0 42%, rgba(0, 0, 0, 0.38) 72%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
  pointer-events: none;
  z-index: 8;
}

.art-card {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.6);
  transform-origin: center;
}

.art-card img,
.art-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04) brightness(0.86);
  transition: opacity 520ms ease, filter 180ms ease, transform 180ms ease;
}

.art-secondary img,
.art-tertiary img {
  filter: saturate(0.78) contrast(0.96) brightness(0.62) blur(3px);
  transform: scale(1.04);
}

.art-main img.is-fading {
  opacity: 0.18;
}

.art-main {
  top: 8%;
  left: 24%;
  width: 44%;
  height: 74%;
  z-index: 5;
  transform: rotate(-4deg);
}

.art-secondary {
  top: 18%;
  right: 7%;
  width: 37%;
  height: 56%;
  z-index: 4;
  transform: rotate(7deg);
}

.art-tertiary {
  left: 7%;
  bottom: 10%;
  width: 34%;
  height: 43%;
  z-index: 2;
  transform: rotate(8deg);
}

.art-rail {
  position: absolute;
  z-index: 6;
  right: 10%;
  bottom: 7%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  width: min(55%, 350px);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(5, 5, 6, 0.66);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
}

.art-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.art-thumb:hover img,
.art-thumb:focus-visible img,
.art-thumb.is-active img {
  filter: saturate(1.04) contrast(1.05) brightness(0.98);
  transform: scale(1.04);
}

.art-thumb.is-active {
  border-color: rgba(232, 201, 132, 0.92);
  box-shadow: 0 0 0 1px rgba(232, 201, 132, 0.32);
}

.art-thumb:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.art-thumb img {
  aspect-ratio: 1;
  opacity: 0.86;
}

.gallery-label {
  position: absolute;
  z-index: 9;
  left: 13%;
  top: 13%;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(5, 5, 6, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.gallery-label span {
  color: var(--muted);
  font-size: 10px;
}

.gallery-label strong {
  font-size: clamp(15px, 1.8vw, 22px);
  line-height: 1;
}

.intro-band,
.work-section,
.capabilities,
.contact-section {
  position: relative;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(78px, 12vw, 150px) 0;
}

.intro-band::before,
.work-section::before,
.capabilities::before,
.contact-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.intro-band::before {
  background:
    radial-gradient(circle at 18% 34%, rgba(7, 17, 13, 0.92), transparent 34rem),
    linear-gradient(180deg, transparent 0%, rgba(7, 17, 13, 0.76) 28%, rgba(7, 17, 13, 0.82) 70%, transparent 100%);
}

.work-section::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(23, 9, 11, 0.88), transparent 32rem),
    radial-gradient(circle at 18% 68%, rgba(23, 9, 11, 0.58), transparent 30rem),
    linear-gradient(180deg, transparent 0%, rgba(23, 9, 11, 0.76) 30%, rgba(23, 9, 11, 0.78) 72%, transparent 100%);
}

.capabilities::before {
  background:
    radial-gradient(circle at 22% 42%, rgba(7, 16, 24, 0.9), transparent 34rem),
    linear-gradient(180deg, transparent 0%, rgba(7, 16, 24, 0.76) 26%, rgba(7, 16, 24, 0.84) 74%, transparent 100%);
}

.contact-section::before {
  background:
    radial-gradient(circle at 74% 42%, rgba(18, 13, 8, 0.92), transparent 34rem),
    linear-gradient(180deg, transparent 0%, rgba(18, 13, 8, 0.78) 30%, rgba(18, 13, 8, 0.9) 100%);
}

.intro-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro-copy h2,
.capability-copy h2,
.contact-inner h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-text,
.contact-inner p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1;
}

.work-section .section-heading h2 {
  font-size: clamp(32px, 4.6vw, 62px);
}

.work-arrow {
  position: absolute;
  z-index: 7;
  top: 50%;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.14), transparent 52%),
    rgba(5, 5, 6, 0.42);
  color: transparent;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.work-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.48);
  border-right: 2px solid rgba(255, 255, 255, 0.48);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.3));
  transition: border-color 180ms ease, filter 180ms ease;
}

.work-arrow-prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.work-arrow-next::before {
  transform: translateX(-2px) rotate(45deg);
}

.work-arrow:hover,
.work-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(232, 201, 132, 0.55);
  background:
    radial-gradient(circle at 35% 20%, rgba(232, 201, 132, 0.18), transparent 54%),
    rgba(5, 5, 6, 0.56);
}

.work-arrow:hover::before,
.work-arrow:focus-visible::before {
  border-color: rgba(232, 201, 132, 0.72);
  filter: drop-shadow(0 8px 18px rgba(232, 201, 132, 0.14));
}

.work-arrow:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.work-arrow-prev {
  left: 12px;
}

.work-arrow-next {
  right: 12px;
}

.work-carousel {
  position: relative;
  overflow: hidden;
}

.work-carousel::before,
.work-carousel::after {
  content: "";
  position: absolute;
  z-index: 6;
  top: 0;
  bottom: 0;
  width: 78px;
  pointer-events: none;
}

.work-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(23, 9, 11, 0.72), transparent);
}

.work-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(23, 9, 11, 0.72), transparent);
}

.work-grid {
  display: flex;
  gap: 18px;
  overflow: visible;
  overflow-y: visible;
  scrollbar-width: none;
  padding: 8px 2px 20px;
  will-change: transform;
}

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

.work-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transform-origin: center bottom;
  transition: transform 220ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.work-card:hover {
  transform: translateY(-5px) scale(1.025);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.work-media {
  min-height: 300px;
  background-color: #141417;
}

.work-photo-cover {
  position: relative;
  overflow: hidden;
}

.work-photo-cover img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03) brightness(0.88);
  transition: opacity 520ms ease, transform 520ms ease;
}

.work-photo-cover img.is-fading {
  opacity: 0.18;
  transform: scale(1.025);
}

.media-aurora {
  background:
    linear-gradient(130deg, transparent 0 21%, rgba(232, 201, 132, 0.72) 21% 34%, transparent 34% 100%),
    linear-gradient(43deg, rgba(142, 215, 223, 0.68), transparent 42%),
    linear-gradient(220deg, rgba(223, 142, 167, 0.48), #121216 64%);
}

.media-surface {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.15) 0 12%, transparent 12% 100%),
    linear-gradient(60deg, #0d1110, #22302a 48%, #9bc7a9 49%, #0b0c0f 64%);
}

.media-frame {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px),
    linear-gradient(145deg, #161219, rgba(142, 215, 223, 0.46), #1a1510 76%);
}

.media-orchard {
  background:
    radial-gradient(circle at 24% 24%, rgba(232, 201, 132, 0.68), transparent 16%),
    radial-gradient(circle at 72% 28%, rgba(143, 202, 168, 0.56), transparent 24%),
    linear-gradient(135deg, #111716, #07110d 48%, #35100f);
}

.media-cinema {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(118deg, #071018 0 32%, rgba(142, 215, 223, 0.42) 33% 44%, #16090b 45% 100%);
}

.media-bloom {
  background:
    radial-gradient(circle at 50% 42%, rgba(223, 142, 167, 0.72), transparent 21%),
    radial-gradient(circle at 30% 70%, rgba(232, 201, 132, 0.52), transparent 18%),
    linear-gradient(145deg, #17090b, #142018 64%, #050506);
}

.work-content {
  padding: 22px;
}

.work-content p {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.work-content h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.work-content span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.capabilities {
  min-height: 280vh;
  padding: 0;
  isolation: isolate;
}

.capabilities::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.capability-stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  grid-template-rows: auto auto minmax(0, 1fr);
  align-content: start;
  align-items: start;
  min-height: calc(100vh - var(--header));
  padding: calc(var(--header) + clamp(26px, 5vw, 58px)) 0 clamp(40px, 6vw, 76px);
  column-gap: clamp(34px, 6vw, 86px);
  row-gap: clamp(28px, 4vw, 54px);
}

.capability-heading {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.capability-heading .section-kicker {
  margin-bottom: 10px;
}

.capability-heading h2 {
  font-size: clamp(32px, 4.6vw, 62px);
}

.capability-content {
  display: grid;
  gap: clamp(20px, 3.5vw, 30px);
  min-width: 0;
}

.capability-meta {
  margin-bottom: 0;
  color: #c5e887;
  font-size: 13px;
}

.motion-pill-stack {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 0;
}

.motion-pill {
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  min-height: clamp(38px, 4.2vw, 52px);
  border-radius: 8px;
  color: #07100f;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  transform-origin: left center;
  will-change: clip-path, transform, opacity;
}

.motion-pill > span {
  display: block;
  padding: 0 clamp(14px, 2vw, 20px);
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
  will-change: transform;
}

.motion-pill-aqua {
  position: relative;
  z-index: 2;
  background: #9fe7dc;
}

.motion-pill-coral {
  z-index: 1;
  max-width: 100%;
  margin-top: -6px;
  margin-left: clamp(18px, 3.8vw, 46px);
  background: #ffb199;
}

.capability-description {
  max-width: 520px;
  margin: 0;
  color: rgba(246, 247, 242, 0.86);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.6;
}

.capability-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.capability-detail-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.video-showcase {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  transform-origin: center;
  will-change: transform, opacity;
}

.video-showcase::before {
  content: "";
  position: absolute;
  inset: 12% -8% -10% 8%;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 22% 24%, rgba(159, 231, 220, 0.22), transparent 34%),
    radial-gradient(circle at 72% 68%, rgba(255, 177, 153, 0.16), transparent 38%);
  filter: blur(38px);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(159, 231, 220, 0.22), transparent 36%),
    linear-gradient(315deg, rgba(255, 177, 153, 0.2), transparent 42%),
    #070a09;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.58);
  transform-origin: center;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.video-showcase:hover .video-frame {
  border-color: rgba(159, 231, 220, 0.42);
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.64);
}

.video-frame video {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 320ms ease;
}

.video-showcase.has-video .video-frame video {
  opacity: 1;
}

.video-placeholder {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
  transition: opacity 220ms ease;
}


.video-showcase.has-video .video-placeholder {
  opacity: 0;
  pointer-events: none;
}

.video-placeholder p {
  margin: 0;
  color: #9fe7dc;
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.video-placeholder strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 2.7vw, 32px);
  line-height: 1;
}

.video-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.video-caption span:first-child {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.video-rail {
  --video-gap: clamp(12px, 1.5vw, 20px);
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  min-width: 0;
  margin-top: clamp(2px, 1.5vw, 14px);
  will-change: opacity, transform;
}

.video-rail-topline {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-rail-viewport {
  overflow: hidden;
  min-width: 0;
  padding-block: 8px 18px;
}

.video-rail-track {
  display: flex;
  gap: var(--video-gap);
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  will-change: transform;
}

.video-rail-card {
  position: relative;
  flex: 0 0 clamp(230px, 25.5vw, 320px);
  max-width: clamp(230px, 25.5vw, 320px);
  min-width: 0;
  z-index: 1;
  transition: z-index 0ms linear 360ms;
  will-change: opacity, transform;
}

.rail-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(159, 231, 220, 0.2), transparent 38%),
    linear-gradient(315deg, rgba(255, 177, 153, 0.18), transparent 44%),
    #070a09;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  transition:
    border-color 520ms ease,
    box-shadow 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center center;
  will-change: transform;
}

.video-rail-card:is(:hover, .is-hovered) {
  z-index: 3;
  transition-delay: 0ms;
}

.video-rail-card:is(:hover, .is-hovered) .rail-video-frame {
  border-color: rgba(159, 231, 220, 0.42);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.52);
  transform: translateY(-2px) scale(1.045);
}

.rail-video-frame video {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 320ms ease;
}

.video-rail-card.has-video .rail-video-frame video {
  opacity: 1;
}

.rail-video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: end;
  gap: 5px;
  padding: clamp(14px, 2vw, 22px);
  transition: opacity 220ms ease;
}

.video-rail-card.has-video .rail-video-placeholder {
  opacity: 0;
  pointer-events: none;
}

.rail-video-placeholder span {
  color: #9fe7dc;
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.rail-video-placeholder strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.2vw, 27px);
  line-height: 1;
}

.contact-section {
  padding-bottom: clamp(86px, 12vw, 150px);
}

.contact-inner {
  max-width: 900px;
}

.contact-inner h2 {
  margin-bottom: 24px;
}

.contact-inner p {
  max-width: 660px;
  margin-bottom: 32px;
}

.contact-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 13px;
}

.project-page {
  background:
    radial-gradient(circle at 72% 14%, rgba(23, 9, 11, 0.72), transparent 34rem),
    radial-gradient(circle at 16% 48%, rgba(7, 17, 13, 0.68), transparent 32rem),
    linear-gradient(180deg, #020203 0%, #080807 58%, #120d08 100%);
}

.project-hero,
.project-overview,
.project-showcase,
.project-gallery,
.project-next {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.project-hero {
  min-height: 74vh;
  display: grid;
  align-content: center;
  padding: calc(var(--header) + 72px) 0 72px;
}

.project-hero h1 {
  max-width: 900px;
  margin-bottom: 26px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.98;
}

.project-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.7;
}

.project-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  padding: calc(var(--header) + 54px) 0 28px;
}

.project-title h1 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
}

.project-overview .project-lede {
  margin-bottom: 6px;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.75;
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(64px, 10vw, 130px) 0;
}

.project-feature {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.48);
}

.project-feature img,
.project-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-notes h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.08;
}

.project-notes p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0 clamp(48px, 7vw, 92px);
}

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

.project-image {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.project-image:hover,
.project-image:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(232, 201, 132, 0.36);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.45);
}

.project-image:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.project-gallery img,
.project-image img {
  aspect-ratio: 4 / 5;
  filter: saturate(0.94) contrast(1.02) brightness(0.9);
}

.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: calc(var(--header) + 36px) clamp(18px, 5vw, 72px) 44px;
  background: rgba(2, 2, 3, 0.86);
  backdrop-filter: blur(18px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  display: block;
  max-width: min(82vw, 860px);
  max-height: 76vh;
  border-radius: 22px;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.62);
}

.lightbox-close {
  position: fixed;
  z-index: 90;
  top: calc(var(--header) + 18px);
  right: clamp(22px, 5vw, 72px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 5, 6, 0.72);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.lightbox-nav {
  position: fixed;
  z-index: 90;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(5, 5, 6, 0.58);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 38px;
  line-height: 0;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  color: rgba(232, 201, 132, 0.88);
  background: rgba(5, 5, 6, 0.76);
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: clamp(22px, 5vw, 76px);
}

.lightbox-next {
  right: clamp(22px, 5vw, 76px);
}

.project-next {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 34px 0 clamp(74px, 9vw, 120px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.project-next p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.project-empty-page {
  min-height: calc(100vh - 86px);
  display: grid;
  place-items: center;
}

.project-empty {
  width: min(100% - 40px, 760px);
  padding: calc(var(--header) + 90px) 0 90px;
  text-align: center;
}

.project-empty h1 {
  margin-bottom: 20px;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 1;
}

.project-empty p:not(.section-kicker) {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 900px) {
  .hero,
  .intro-band,
  .capability-stage,
  .project-showcase,
  .project-overview {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header) + 46px);
  }

  .hero-copy {
    justify-self: start;
  }

  .visual-stage {
    max-width: 560px;
  }

  .video-showcase {
    width: min(100%, 680px);
    order: 1;
  }

  .capability-content {
    order: 2;
  }

  .video-rail {
    order: 3;
  }

  .video-rail-card {
    flex-basis: min(72vw, 420px);
    max-width: min(72vw, 420px);
  }

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

  .work-card {
    flex-basis: min(76vw, 420px);
  }

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

  .work-media {
    min-height: 260px;
  }

  .work-photo-cover img {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 16px;
  }

  .nav {
    gap: 13px;
    font-size: 11px;
  }

  .brand {
    max-width: 78px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding-inline: 18px;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .work-arrow {
    width: 42px;
    height: 42px;
    font-size: 0;
  }

  .work-arrow-prev {
    left: 6px;
  }

  .work-arrow-next {
    right: 6px;
  }

  .work-carousel::before,
  .work-carousel::after {
    width: 46px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-subtitle,
  .intro-text,
  .contact-inner p {
    font-size: 17px;
  }

  .intro-band,
  .work-section,
  .capabilities,
  .contact-section,
  .project-hero,
  .project-overview,
  .project-showcase,
  .project-gallery,
  .project-next {
    width: min(100% - 32px, var(--max));
    padding-block: 74px;
  }

  .capabilities {
    min-height: 260vh;
    padding-block: 0;
  }

  .capability-stage {
    align-content: start;
    column-gap: 32px;
    row-gap: 42px;
    padding: calc(var(--header) + 22px) 0 34px;
  }

  .project-hero {
    min-height: auto;
    padding-top: calc(var(--header) + 58px);
  }

  .project-overview {
    padding-top: calc(var(--header) + 46px);
  }

  .project-gallery,
  .project-gallery-featured {
    grid-template-columns: 1fr;
  }

  .project-next {
    flex-direction: column;
    align-items: end;
  }

  .lightbox {
    padding: calc(var(--header) + 54px) 18px 34px;
  }

  .lightbox img {
    max-width: 88vw;
    max-height: 70vh;
    border-radius: 18px;
  }

  .lightbox-close {
    top: calc(var(--header) + 14px);
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .intro-copy h2,
  .capability-copy h2,
  .contact-inner h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .motion-pill {
    min-height: 46px;
  }

  .motion-pill > span {
    padding-inline: 14px;
    font-size: clamp(21px, 7vw, 34px);
  }

  .motion-pill-coral {
    margin-left: clamp(16px, 7vw, 38px);
  }

  .capability-description {
    font-size: 17px;
  }

  .video-caption {
    flex-direction: column;
    gap: 5px;
  }

  .video-rail-topline {
    font-size: 10px;
  }

  .video-rail-viewport {
    padding-bottom: 8px;
  }

  .signature-panel {
    width: 52%;
    padding: 16px;
  }

  .art-main {
    left: 22%;
    width: 48%;
    height: 72%;
  }

  .art-secondary {
    right: 2%;
    width: 40%;
  }

  .art-tertiary {
    left: 2%;
    width: 36%;
  }

  .art-rail {
    right: 4%;
    width: 66%;
    gap: 5px;
    padding: 6px;
  }

  .gallery-label {
    left: 6%;
    top: 7%;
    padding: 9px 11px;
  }

  .site-footer {
    flex-direction: column;
    padding-inline: 18px;
  }
}

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

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

  .motion-pill,
  .motion-pill > span,
  [data-motion-copy],
  .video-showcase,
  .video-frame,
  .video-rail,
  .video-rail-track,
  .video-rail-card {
    transform: none !important;
  }
}
