:root {
  color-scheme: dark;
  --bg: oklch(8% 0.008 250);
  --bg-deep: oklch(5.5% 0.007 250);
  --surface: oklch(14.5% 0.014 250);
  --surface-strong: oklch(18.5% 0.016 250);
  --line: oklch(42% 0.022 250 / 0.82);
  --line-soft: oklch(38% 0.018 250 / 0.56);
  --text: oklch(95% 0.006 250);
  --muted: oklch(70% 0.018 250);
  --subtle: oklch(53% 0.018 250);
  --accent: oklch(67% 0.17 18);
  --accent-2: oklch(76% 0.13 205);
  --accent-3: oklch(78% 0.15 88);
  --shadow: 0 24px 80px oklch(3% 0.006 250 / 0.54);
  --max: 1480px;
  --gutter: 24px;
  --radius: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fluid: cubic-bezier(0.22, 1, 0.36, 1);
}

@font-face {
  font-family: "Shelly Circular";
  src: url("assets/fonts/shellypalmer-circular-std-book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Shelly Circular";
  src: url("assets/fonts/shellypalmer-circular-std-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Shelly Circular";
  src: url("assets/fonts/shellypalmer-circular-std-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Shelly Circular";
  src: url("assets/fonts/shellypalmer-circular-std-black.ttf") format("truetype");
  font-weight: 850;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, oklch(45% 0.12 205 / 0.16), transparent 32rem),
    radial-gradient(circle at 88% 12%, oklch(58% 0.15 18 / 0.12), transparent 28rem),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 42rem, oklch(7% 0.008 250));
  color: var(--text);
  font-family: "Shelly Circular", ui-rounded, "Arial Rounded MT Bold", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
  animation: pageIn 520ms var(--ease) both;
  transition: opacity 220ms var(--ease);
}

body.page-leaving {
  opacity: 0;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, oklch(5% 0.006 250 / 0.42), oklch(6% 0.006 250 / 0.9)),
    url("assets/portfolio/36-fluxframe-texture.png") center top / min(1100px, 90vw) auto repeat;
  opacity: 0.32;
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(oklch(100% 0 0 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, oklch(100% 0 0 / 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 74%);
  pointer-events: none;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

button {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 30;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  transform: translateY(-140%);
  transition: transform 240ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: oklch(8% 0.008 250 / 0.72);
  backdrop-filter: blur(22px) saturate(1.15);
}

.nav-shell {
  width: min(calc(100% - 32px), var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.nav-shell > a:not(.nav-wordmark) {
  position: relative;
  display: inline-grid;
  min-height: 38px;
  align-items: center;
  padding: 0 6px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.nav-shell > a:not(.nav-wordmark)::after {
  position: absolute;
  right: 6px;
  bottom: 2px;
  left: 6px;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.nav-shell > a:not(.nav-wordmark):hover,
.nav-shell > a[aria-current="page"] {
  color: var(--text);
}

.nav-shell > a:not(.nav-wordmark):hover::after,
.nav-shell > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  font-size: 1rem;
  margin-right: auto;
}

.nav-wordmark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px oklch(67% 0.17 18 / 0.34));
}

.nav-linkedin {
  margin-left: 4px;
  width: 38px;
  min-width: 38px;
  height: 38px;
  padding: 0 !important;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  background: oklch(16% 0.016 250 / 0.88);
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.08);
}

.nav-linkedin::after {
  display: none;
}

.nav-linkedin svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  transition: transform 240ms var(--ease);
}

.nav-linkedin:hover,
.nav-linkedin:focus-visible {
  border-color: oklch(67% 0.17 18 / 0.72);
  background: oklch(20% 0.018 250 / 0.96);
  outline: 0;
}

.nav-linkedin:hover svg,
.nav-linkedin:focus-visible svg {
  transform: translateY(-1px);
}

.nav-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.nav-line span {
  display: block;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
}

.studio-hero {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 82px) 0 34px;
}

.studio-hero-panel,
.page-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, oklch(13.5% 0.014 250 / 0.96), oklch(7% 0.008 250 / 0.98)),
    url("assets/portfolio/36-fluxframe-texture.png") center / 760px auto repeat;
  box-shadow:
    0 28px 86px oklch(2.8% 0.006 250 / 0.48),
    inset 0 1px 0 oklch(100% 0 0 / 0.075);
}

.studio-hero-panel::before,
.page-hero::before,
.about-block::before,
.home-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 16%, oklch(67% 0.17 18 / 0.18), transparent 22rem),
    linear-gradient(90deg, oklch(76% 0.13 205 / 0.12), transparent 48%);
  opacity: 0.8;
  pointer-events: none;
}

.studio-hero-panel {
  min-height: clamp(500px, 64svh, 660px);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 66px);
}

.studio-hero-copy,
.hero-visual,
.about-copy,
.about-proof,
.home-cta > * {
  position: relative;
  z-index: 1;
}

.studio-hero-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 22px;
}

.hero-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 850;
}

.hero-brand img {
  width: 42px;
  height: 42px;
}

.studio-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 4.25vw, 4.55rem);
}

.studio-hero p {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.studio-hero .hero-actions {
  justify-content: flex-start;
}

.hero-visual {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(158px, 0.62fr);
  gap: 14px;
  align-items: stretch;
}

.hero-showcase-side {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(118px, 1fr) minmax(118px, 1fr) auto;
  gap: 14px;
  transform: translateY(26px);
}

.hero-showcase {
  position: relative;
  min-width: 0;
  min-height: 148px;
  display: block;
  overflow: hidden;
  border: 1px solid oklch(49% 0.024 250 / 0.82);
  border-radius: 10px;
  background:
    linear-gradient(180deg, oklch(18% 0.017 250 / 0.94), oklch(8% 0.009 250 / 0.98));
  box-shadow:
    0 26px 74px oklch(3% 0.006 250 / 0.48),
    inset 0 1px 0 oklch(100% 0 0 / 0.08);
  transition: transform 420ms var(--ease), border-color 420ms var(--ease), background 420ms var(--ease);
}

.hero-showcase::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 35%, oklch(4% 0.006 250 / 0.84)),
    linear-gradient(135deg, oklch(76% 0.13 205 / 0.08), transparent 42%);
  pointer-events: none;
}

.hero-showcase img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: top center;
  opacity: 0.72;
  filter: saturate(0.92) brightness(0.82);
  transform: scale(1.01);
  transition: opacity 420ms var(--ease), transform 620ms var(--ease), filter 420ms var(--ease);
}

.hero-showcase-tall {
  min-height: clamp(360px, 46svh, 520px);
  transform: translateY(-10px);
  animation: heroFloat 8s var(--ease) infinite;
}

.hero-showcase-tall img {
  object-position: top center;
}

.hero-showcase:not(.hero-showcase-link) > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: grid;
  gap: 2px;
}

.hero-showcase strong {
  color: var(--text);
  font-size: clamp(1rem, 1.6vw, 1.36rem);
  line-height: 1;
  font-weight: 850;
}

.hero-showcase em,
.hero-showcase-link span {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.3;
}

.hero-showcase-link {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 16px;
  background:
    linear-gradient(135deg, oklch(18% 0.018 250 / 0.96), oklch(8% 0.009 250 / 0.98)),
    url("assets/portfolio/36-fluxframe-texture.png") center / 420px auto repeat;
}

.hero-showcase-link::after {
  background: linear-gradient(135deg, oklch(67% 0.17 18 / 0.16), transparent 54%);
}

.hero-showcase-link strong {
  position: relative;
  z-index: 1;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.hero-showcase-link span {
  position: relative;
  z-index: 1;
}

.hero-showcase:hover,
.hero-showcase:focus-visible {
  border-color: oklch(74% 0.06 250 / 0.82);
  background: var(--surface-strong);
  outline: 0;
  transform: translateY(-6px);
}

.hero-showcase-tall:hover,
.hero-showcase-tall:focus-visible {
  transform: translateY(-16px);
}

.hero-showcase:hover img,
.hero-showcase:focus-visible img {
  opacity: 0.96;
  filter: saturate(1.02) brightness(0.96);
  transform: scale(1.045);
}

.vertical-reel {
  position: relative;
  min-width: 0;
  height: clamp(420px, 52svh, 560px);
  overflow: hidden;
  border: 1px solid oklch(49% 0.024 250 / 0.82);
  border-radius: 10px;
  background:
    linear-gradient(180deg, oklch(18% 0.017 250 / 0.88), oklch(6.4% 0.008 250 / 0.98)),
    url("assets/portfolio/36-fluxframe-texture.png") center / 440px auto repeat;
  box-shadow:
    0 26px 74px oklch(3% 0.006 250 / 0.46),
    inset 0 1px 0 oklch(100% 0 0 / 0.075);
  isolation: isolate;
}

.vertical-reel::before,
.vertical-reel::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 3;
  height: 28%;
  content: "";
  pointer-events: none;
}

.vertical-reel::before {
  top: 0;
  background: linear-gradient(180deg, oklch(5.5% 0.007 250), transparent);
}

.vertical-reel::after {
  bottom: 0;
  background: linear-gradient(0deg, oklch(5.5% 0.007 250), transparent);
}

.vertical-reel-track {
  display: grid;
  gap: 12px;
  padding: 12px;
  animation: reelLoop 28s linear infinite;
  will-change: transform;
}

.vertical-reel:hover .vertical-reel-track,
.vertical-reel:focus-within .vertical-reel-track {
  animation-play-state: paused;
}

.reel-card {
  position: relative;
  min-height: 172px;
  display: block;
  overflow: hidden;
  border: 1px solid oklch(45% 0.02 250 / 0.62);
  border-radius: 8px;
  background: oklch(10% 0.01 250);
  transform: translateZ(0);
}

.reel-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 36%, oklch(3.5% 0.006 250 / 0.88)),
    radial-gradient(circle at 80% 12%, oklch(67% 0.17 18 / 0.12), transparent 16rem);
  pointer-events: none;
}

.reel-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  opacity: 0.78;
  filter: saturate(0.92) brightness(0.86);
  animation: imageScan 16s var(--ease-fluid) infinite alternate;
}

.reel-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  gap: 2px;
}

.reel-card strong {
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1;
  font-weight: 850;
}

.reel-card em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.projects-reel {
  height: min(460px, 52svh);
}

.projects-reel .vertical-reel-track {
  animation-duration: 42s;
}

.projects-reel-duo {
  height: min(500px, 58svh);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
}

.projects-reel-duo .reel-lane {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
}

.projects-reel-duo .vertical-reel-track {
  gap: 12px;
  padding: 0;
  animation-duration: 54s;
}

.projects-reel-duo .reel-lane-reverse .vertical-reel-track {
  animation-name: reelLoopReverse;
  animation-duration: 60s;
}

.projects-reel-duo .reel-card {
  min-height: 152px;
}

.projects-reel-duo .reel-card strong {
  font-size: 1rem;
}

.page-hero-art.vertical-reel {
  padding: 0;
}

.page-hero-art.vertical-reel img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

@keyframes heroFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 10px;
  }
}

@keyframes reelLoop {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, calc(-50% - 6px), 0);
  }
}

@keyframes reelLoopReverse {
  from {
    transform: translate3d(0, calc(-50% - 6px), 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes imageScan {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.06) translateY(-4%);
  }
}

@keyframes orbitSweep {
  to {
    transform: rotate(360deg);
  }
}

.hero-work-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-project {
  min-width: 0;
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: oklch(5.5% 0.007 250 / 0.72);
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), background 280ms var(--ease);
}

.mini-project:hover,
.mini-project:focus-visible {
  border-color: oklch(67% 0.17 18 / 0.64);
  background: oklch(11% 0.012 250 / 0.82);
  outline: 0;
  transform: translateY(-4px);
}

.mini-project-wide {
  grid-column: 1 / -1;
}

.mini-project img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: var(--bg-deep);
  object-fit: contain;
}

.mini-project span {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 780;
}

.hero {
  width: min(calc(100% - 32px), var(--max));
  min-height: clamp(360px, 38svh, 520px);
  margin: 0 auto;
  padding: 34px 0 22px;
  display: grid;
  align-content: center;
  gap: 28px;
}

.hero-inner {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 28px 16px 18px;
  text-align: center;
}

.hero-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
}

.hero-mark img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

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

h1,
h2,
h3,
p,
a,
span,
strong,
em {
  overflow-wrap: break-word;
}

h1 {
  max-width: 12ch;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.92;
  font-weight: 850;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 0 46px oklch(95% 0.006 250 / 0.12);
}

h2 {
  color: var(--text);
  font-size: 4rem;
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0;
}

h3 {
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.1;
  font-weight: 760;
}

.hero-copy,
.page-hero-copy p,
.archive-copy p {
  width: min(100%, 64ch);
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.02rem;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.button,
.text-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 750;
  font-size: 0.93rem;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.button {
  padding: 0 18px;
  border: 1px solid var(--line);
}

.button::after,
.text-link::after,
.case-action::after {
  width: 16px;
  height: 16px;
  content: "";
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h12m-5-5 5 5-5 5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.secondary {
  color: var(--text);
  background: oklch(100% 0 0 / 0.035);
}

.button:hover,
.text-link:hover,
.case-row:hover .case-action {
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.stat {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 12px 18px;
  border-right: 1px solid var(--line-soft);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
}

.stat span {
  color: var(--subtle);
  font-size: 0.86rem;
}

.media-rail {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: oklch(10% 0.01 250 / 0.76);
  box-shadow: var(--shadow);
  scrollbar-width: none;
}

.home-about {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 26px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.home-about > div,
.home-group-head > div,
.home-project-copy,
.page-hero-copy,
.detail-story,
.detail-facts,
.detail-block,
.section-heading {
  min-width: 0;
  max-width: 100%;
}

.home-about .section-index {
  margin-bottom: 14px;
}

.home-about h2 {
  max-width: 820px;
  font-size: clamp(1.55rem, 3.1vw, 3.4rem);
  line-height: 1.04;
}

.home-about p {
  max-width: 670px;
  margin-top: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.about-block {
  position: relative;
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto clamp(46px, 7vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, oklch(13.5% 0.014 250 / 0.94), oklch(7.2% 0.008 250 / 0.98)),
    url("assets/portfolio/36-fluxframe-texture.png") center / 720px auto repeat;
  box-shadow:
    0 24px 74px oklch(3% 0.006 250 / 0.4),
    inset 0 1px 0 oklch(100% 0 0 / 0.07);
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.about-copy h2 {
  max-width: 760px;
  font-size: clamp(1.75rem, 3vw, 3.05rem);
}

.about-copy p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 0.98rem;
}

.about-proof {
  align-self: center;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid oklch(46% 0.024 250 / 0.66);
  border-radius: 8px;
  background:
    linear-gradient(180deg, oklch(17% 0.016 250 / 0.86), oklch(9% 0.01 250 / 0.94));
  box-shadow: inset 0 1px 0 oklch(100% 0 0 / 0.08);
}

.about-proof strong {
  color: var(--text);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 0.9;
  font-weight: 850;
}

.about-proof span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.about-proof .button {
  width: 100%;
  margin-top: 4px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.kpi-grid article {
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: oklch(5.5% 0.007 250 / 0.62);
}

.kpi-grid strong {
  color: var(--text);
  font-size: clamp(1.7rem, 3.2vw, 3.3rem);
  line-height: 0.9;
  font-weight: 850;
}

.kpi-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.home-work {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 5vw, 52px);
  padding: 0 0 72px;
}

.home-group {
  position: relative;
  display: grid;
  gap: 22px;
  overflow: hidden;
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, oklch(13.5% 0.014 250 / 0.92), oklch(7.4% 0.008 250 / 0.96)),
    url("assets/portfolio/36-fluxframe-texture.png") center / 860px auto repeat;
  box-shadow:
    0 22px 74px oklch(3% 0.006 250 / 0.36),
    inset 0 1px 0 oklch(100% 0 0 / 0.07);
}

.home-group::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, oklch(76% 0.13 205 / 0.1), transparent 58%),
    linear-gradient(180deg, oklch(100% 0 0 / 0.04), transparent 18%);
  pointer-events: none;
}

.home-group-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
}

.home-group-head h2 {
  max-width: 900px;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
}

.home-group-head p:not(.section-index) {
  max-width: 680px;
  margin-top: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.home-project-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(245px, 100%), 340px));
  gap: 14px;
}

.home-project-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 360px;
  overflow: hidden;
  border: 1px solid oklch(45% 0.022 250 / 0.66);
  border-radius: var(--radius);
  background: oklch(14% 0.014 250 / 0.9);
  box-shadow:
    0 24px 90px oklch(3% 0.006 250 / 0.44),
    inset 0 1px 0 oklch(100% 0 0 / 0.07);
  isolation: isolate;
  transition: transform 420ms var(--ease), border-color 420ms var(--ease), background 420ms var(--ease);
}

.home-project-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgb(255 255 255 / 0.12), transparent 38%);
  opacity: 0;
  transition: opacity 360ms var(--ease);
  pointer-events: none;
}

.home-project-card:hover,
.home-project-card:focus-visible {
  z-index: 2;
  border-color: oklch(62% 0.06 250 / 0.75);
  background: var(--surface);
  transform: translateY(-6px);
  outline: 0;
}

.home-project-card:hover::after,
.home-project-card:focus-visible::after {
  opacity: 1;
}

.home-project-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--tile-image) center / contain no-repeat, var(--bg-deep);
}

.home-project-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.84;
  transition: opacity 420ms var(--ease);
}

.home-group-web-designs .home-project-grid,
.home-group-web-design-work .home-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-group-web-designs .home-project-card,
.home-group-web-design-work .home-project-card {
  max-width: none;
  min-height: clamp(560px, 58vw, 760px);
  grid-template-rows: minmax(0, 1fr) auto;
}

.home-group-web-designs .home-project-media,
.home-group-web-design-work .home-project-media {
  position: relative;
  min-height: 0;
  aspect-ratio: auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, oklch(8% 0.009 250), oklch(4.8% 0.006 250)),
    var(--tile-image) top center / cover no-repeat;
}

.home-group-web-designs .home-project-media::after,
.home-group-web-design-work .home-project-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  content: "";
  background: linear-gradient(0deg, oklch(5% 0.006 250 / 0.82), transparent);
  pointer-events: none;
}

.home-group-web-designs .home-project-media img,
.home-group-web-design-work .home-project-media img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.home-group-web-designs .home-project-copy,
.home-group-web-design-work .home-project-copy {
  min-height: 174px;
}

.home-project-card:hover img,
.home-project-card:focus-visible img {
  opacity: 1;
}

.home-project-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-top: 1px solid var(--line-soft);
}

.home-project-copy span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}

.home-project-copy strong {
  color: var(--text);
  font-size: clamp(1.45rem, 2.7vw, 2.4rem);
  line-height: 0.96;
  font-weight: 850;
}

.home-project-copy em {
  max-width: 54ch;
  color: var(--muted);
  font-style: normal;
  overflow-wrap: anywhere;
}

.home-tiles {
  width: min(calc(100% - 32px), 1580px);
  margin: 0 auto;
  padding: 0 0 72px;
}

.home-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 0;
}

.home-tile {
  position: relative;
  display: block;
  aspect-ratio: 795 / 621;
  overflow: hidden;
  background: var(--tile-image) center / contain no-repeat, var(--bg-deep);
  box-shadow: 0 24px 90px oklch(3% 0.006 250 / 0.34);
  isolation: isolate;
  transition: transform 420ms var(--ease), border-color 420ms var(--ease);
}

.home-tile::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgb(255 255 255 / 0.14), transparent 38%);
  opacity: 0;
  transition: opacity 360ms var(--ease);
  pointer-events: none;
}

.home-tile img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity 420ms var(--ease), transform 520ms var(--ease);
}

.home-tile:hover,
.home-tile:focus-visible {
  z-index: 2;
  transform: translateY(-6px);
  outline: 0;
}

.home-tile:hover::after,
.home-tile:focus-visible::after {
  opacity: 1;
}

.home-tile:hover img,
.home-tile:focus-visible img {
  opacity: 0.98;
  transform: scale(1.012);
}

.media-rail::-webkit-scrollbar {
  display: none;
}

.media-rail::before,
.media-rail::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 12%;
  content: "";
  pointer-events: none;
}

.media-rail::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.media-rail::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.rail-track {
  display: flex;
  width: max-content;
  gap: 8px;
  padding: 8px;
}

.rail-item {
  width: 260px;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: var(--surface);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease);
}

.rail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transform: scale(1.02);
}

.rail-item:hover {
  border-color: oklch(75% 0.08 205 / 0.72);
  transform: translateY(-3px);
}

.section {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  padding: 96px 0;
}

.section-tight {
  padding-top: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}

.section-index {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.86rem;
}

.text-link {
  align-self: center;
  min-height: 34px;
  color: var(--muted);
  white-space: nowrap;
}

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

.gallery-grid {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  columns: 3 250px;
  column-gap: 12px;
}

.featured-grid .project-card:nth-child(1),
.featured-grid .project-card:nth-child(4) {
  grid-column: span 4;
}

.featured-grid .project-card {
  grid-column: span 3;
}

.gallery-grid .project-card,
.gallery-grid .project-card.tall,
.gallery-grid .project-card.banner {
  width: 100%;
  margin: 0 0 12px;
  break-inside: avoid;
  grid-column: auto;
}

.project-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid oklch(43% 0.02 250 / 0.62);
  border-radius: var(--radius);
  background: oklch(13.5% 0.014 250 / 0.88);
  box-shadow:
    0 20px 54px oklch(3% 0.006 250 / 0.34),
    inset 0 1px 0 oklch(100% 0 0 / 0.06);
  cursor: pointer;
  isolation: isolate;
  text-align: left;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms var(--ease-fluid), border-color 420ms var(--ease-fluid), background 420ms var(--ease-fluid);
  will-change: transform;
}

.project-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 35%), oklch(100% 0 0 / 0.12), transparent 34%);
  opacity: 0;
  transition: opacity 260ms var(--ease);
  pointer-events: none;
}

.project-card:hover,
.project-card:focus-visible {
  border-color: oklch(62% 0.06 250 / 0.75);
  background: var(--surface-strong);
  transform: translateY(-5px);
  outline: 0;
}

.project-card:hover::before,
.project-card:focus-visible::before {
  opacity: 1;
}

.project-media {
  position: relative;
  overflow: hidden;
  background: var(--card-image) center / contain no-repeat, oklch(6% 0.006 250);
}

.project-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, oklch(3% 0.006 250 / 0.78));
  pointer-events: none;
}

.project-card.square .project-media {
  aspect-ratio: auto;
}

.project-card.banner .project-media {
  aspect-ratio: auto;
}

.project-card.tall .project-media {
  aspect-ratio: auto;
}

.project-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 720ms var(--ease-fluid), opacity 360ms var(--ease-fluid), filter 360ms var(--ease-fluid);
}

.project-card.tall .project-media img {
  object-fit: contain;
  object-position: top center;
}

.project-card:hover .project-media img {
  opacity: 0.96;
  filter: saturate(1.04) brightness(1.02);
  transform: scale(1.025) translateY(-1.5%);
}

.animated-flag {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid oklch(100% 0 0 / 0.26);
  border-radius: 6px;
  background: oklch(5% 0.006 250 / 0.6);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
}

.project-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.project-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--subtle);
  font-size: 0.78rem;
}

.project-meta p {
  display: none;
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.9rem;
}

.category-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px currentColor;
}

.project-card[data-category="web"] .category-dot {
  background: var(--accent-2);
}

.project-card[data-category="brand"] .category-dot {
  background: var(--accent-3);
}

.project-card[data-category="crypto"] .category-dot {
  background: oklch(76% 0.15 42);
}

.project-card[data-category="motion"] .category-dot {
  background: oklch(72% 0.15 310);
}

.project-card[data-category="thread"] .category-dot {
  background: oklch(74% 0.13 155);
}

.case-list,
.web-grid {
  display: grid;
  gap: 12px;
}

.case-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr) 52px;
  gap: 20px;
  align-items: center;
  min-height: 212px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: oklch(10% 0.01 250 / 0.78);
  cursor: pointer;
  text-align: left;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}

.case-row:hover,
.case-row:focus-visible {
  border-color: oklch(62% 0.06 250 / 0.76);
  background: var(--surface);
  transform: translateX(6px);
  outline: 0;
}

.case-thumb {
  height: 188px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-deep);
}

.case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.case-copy {
  display: grid;
  gap: 10px;
}

.case-copy p {
  max-width: 58ch;
  color: var(--muted);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-tags span,
.filter-button,
.future-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  color: var(--muted);
  background: oklch(100% 0 0 / 0.035);
  font-size: 0.78rem;
  font-weight: 720;
}

.case-action {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: oklch(100% 0 0 / 0.04);
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.case-action::after {
  margin: 0;
}

.archive-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding-top: 100px;
}

.archive-copy {
  display: grid;
  gap: 20px;
}

.archive-copy .button {
  width: max-content;
}

.archive-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.archive-strip .project-card:nth-child(1) {
  grid-column: span 2;
}

.page-hero {
  width: min(calc(100% - 32px), 1180px);
  min-height: 420px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  margin-top: clamp(34px, 6vw, 76px);
  margin-bottom: 78px;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 18px;
}

.page-hero-copy:only-child {
  grid-column: 1 / -1;
  max-width: 760px;
}

.page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.web-hero h1 {
  max-width: 11ch;
}

.archive-hero h1 {
  max-width: 12ch;
}

.page-hero-art {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid oklch(49% 0.024 250 / 0.82);
  border-radius: 8px;
  background: oklch(13% 0.014 250 / 0.9);
  box-shadow:
    0 20px 70px oklch(3% 0.006 250 / 0.42),
    inset 0 1px 0 oklch(100% 0 0 / 0.07);
}

.page-hero-art img {
  width: 100%;
  height: auto;
  max-height: 390px;
  object-fit: contain;
}

.hero-design-tile {
  display: grid;
  gap: 12px;
  padding: 12px;
  border-color: oklch(49% 0.024 250 / 0.82);
  background:
    linear-gradient(180deg, oklch(17% 0.017 250 / 0.92), oklch(7% 0.008 250 / 0.98)),
    url("assets/portfolio/36-fluxframe-texture.png") center / 460px auto repeat;
  box-shadow:
    0 28px 74px oklch(3% 0.006 250 / 0.44),
    inset 0 1px 0 oklch(100% 0 0 / 0.08);
}

.feature-tile {
  position: relative;
  height: clamp(340px, 48svh, 500px);
  min-height: 0;
  display: block;
  overflow: hidden;
  border: 1px solid oklch(46% 0.022 250 / 0.68);
  border-radius: 7px;
  background: oklch(7% 0.008 250);
}

.feature-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 35%, oklch(3.5% 0.006 250 / 0.9)),
    radial-gradient(circle at 86% 12%, oklch(67% 0.17 18 / 0.16), transparent 18rem);
  pointer-events: none;
}

.feature-tile img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  opacity: 0.86;
  filter: saturate(0.96) brightness(0.9);
  animation: imageScan 18s var(--ease-fluid) infinite alternate;
}

.feature-tile span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.feature-tile strong {
  color: var(--text);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 0.95;
  font-weight: 850;
}

.feature-tile em {
  max-width: 26ch;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.25;
}

.feature-mini-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-mini-row span {
  height: 112px;
  overflow: hidden;
  border: 1px solid oklch(42% 0.02 250 / 0.62);
  border-radius: 7px;
  background: oklch(7% 0.008 250);
}

.feature-mini-row img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  opacity: 0.78;
}

.startup-hero-reel {
  height: min(470px, 54svh);
  justify-self: stretch;
}

.detail-meta {
  width: min(calc(100% - 32px), 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 36px 0 96px;
  border-top: 1px solid var(--line-soft);
}

.detail-story {
  display: grid;
  gap: 18px;
}

.detail-story h2 {
  max-width: 900px;
  font-size: clamp(2.2rem, 5vw, 5rem);
}

.detail-story p {
  max-width: 72ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  overflow-wrap: anywhere;
}

.detail-facts {
  display: grid;
  gap: 0;
  align-self: start;
  border-top: 1px solid var(--line-soft);
}

.detail-fact {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}

.detail-fact span {
  color: var(--subtle);
  font-size: 0.82rem;
  font-weight: 700;
}

.detail-fact strong {
  color: var(--text);
  font-size: 1.08rem;
}

.detail-section {
  width: min(calc(100% - 32px), 1120px);
  margin: 0 auto;
  padding: 0 0 96px;
}

.detail-block {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line-soft);
}

.detail-block:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.detail-block h2 {
  font-size: clamp(1.8rem, 3.8vw, 3.5rem);
}

.detail-block p {
  max-width: 70ch;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  cursor: pointer;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  border-color: oklch(90% 0.006 250 / 0.6);
  color: var(--text);
  background: oklch(100% 0 0 / 0.09);
  transform: translateY(-1px);
}

.future-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.future-slot {
  min-height: 220px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 18px;
  border: 1px dashed oklch(48% 0.03 250 / 0.72);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, oklch(100% 0 0 / 0.06), transparent 42%),
    oklch(10% 0.01 250 / 0.64);
}

.future-slot p {
  color: var(--muted);
}

.home-cta,
.startup-section {
  position: relative;
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto 92px;
}

.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, oklch(13.5% 0.014 250 / 0.94), oklch(7% 0.008 250 / 0.98)),
    url("assets/portfolio/36-fluxframe-texture.png") center / 760px auto repeat;
  box-shadow:
    0 24px 74px oklch(3% 0.006 250 / 0.36),
    inset 0 1px 0 oklch(100% 0 0 / 0.07);
}

.home-cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.home-cta p {
  max-width: 62ch;
  margin-top: 10px;
  color: var(--muted);
}

.cta-visual {
  position: relative;
  z-index: 1;
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid oklch(48% 0.024 250 / 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle, oklch(18% 0.016 250 / 0.92), oklch(7% 0.008 250 / 0.96) 62%),
    url("assets/portfolio/36-fluxframe-texture.png") center / 300px auto repeat;
  box-shadow:
    0 20px 64px oklch(3% 0.006 250 / 0.44),
    inset 0 0 0 10px oklch(100% 0 0 / 0.025);
  overflow: hidden;
}

.cta-visual strong {
  position: relative;
  z-index: 2;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 850;
}

.cta-ring,
.cta-scan {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  pointer-events: none;
}

.cta-ring-one {
  border: 1px solid oklch(67% 0.17 18 / 0.72);
  border-top-color: transparent;
  animation: orbitSweep 9s linear infinite;
}

.cta-ring-two {
  inset: 34px;
  border: 1px solid oklch(76% 0.13 205 / 0.58);
  border-left-color: transparent;
  animation: orbitSweep 7s linear infinite reverse;
}

.cta-scan {
  inset: 0;
  background: conic-gradient(from 210deg, transparent 0 68%, oklch(95% 0.006 250 / 0.18), transparent 78% 100%);
  animation: orbitSweep 12s linear infinite;
  opacity: 0.72;
}

.startup-section {
  display: grid;
  gap: 22px;
}

.startup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 340px));
  gap: 14px;
}

.startup-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.startup-carousel::-webkit-scrollbar {
  display: none;
}

.startup-card {
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 340px;
  overflow: hidden;
  border: 1px solid oklch(45% 0.022 250 / 0.68);
  border-radius: 8px;
  background: oklch(14% 0.014 250 / 0.9);
  box-shadow:
    0 20px 64px oklch(3% 0.006 250 / 0.38),
    inset 0 1px 0 oklch(100% 0 0 / 0.07);
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), background 280ms var(--ease);
}

.startup-carousel .startup-card {
  flex: 0 0 min(340px, 84vw);
  scroll-snap-align: start;
}

.startup-card:hover,
.startup-card:focus-visible {
  border-color: oklch(67% 0.17 18 / 0.62);
  background: var(--surface);
  outline: 0;
  transform: translateY(-5px);
}

.startup-media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, oklch(10% 0.01 250), oklch(5% 0.006 250));
}

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

.startup-copy {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-top: 1px solid var(--line-soft);
}

.startup-copy strong {
  color: var(--text);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1;
  font-weight: 850;
}

.startup-copy em {
  color: var(--muted);
  font-style: normal;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  min-height: 110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.site-footer a {
  color: var(--text);
  font-weight: 760;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: center;
  padding: 24px;
  background: oklch(3.5% 0.006 250 / 0.86);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms var(--ease), visibility 260ms var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-panel {
  width: min(100%, 1180px);
  max-height: calc(100svh - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(12px) scale(0.985);
  transition: transform 360ms var(--ease);
}

.lightbox.is-open .lightbox-panel {
  transform: translateY(0) scale(1);
}

.lightbox-media {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.lightbox-zoom-stage {
  width: 100%;
  height: 100%;
  min-height: min(68svh, 760px);
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: zoom-in;
  touch-action: none;
}

.lightbox-zoom-stage.is-zoomed {
  cursor: grab;
}

.lightbox-zoom-stage.is-dragging {
  cursor: grabbing;
}

.lightbox-media img,
.lightbox-zoom-stage img {
  width: 100%;
  max-height: calc(100svh - 220px);
  object-fit: contain;
}

.lightbox-zoom-stage img {
  width: auto;
  max-width: 100%;
  transform: translate3d(var(--pan-x, 0), var(--pan-y, 0), 0) scale(var(--zoom, 1));
  transform-origin: center;
  transition: transform 180ms var(--ease-fluid);
  user-select: none;
  will-change: transform;
}

.lightbox-zoom-stage.is-dragging img {
  transition: none;
}

.lightbox-toolbar {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid oklch(45% 0.022 250 / 0.62);
  border-radius: 999px;
  background: oklch(7% 0.008 250 / 0.76);
  box-shadow: 0 18px 54px oklch(3% 0.006 250 / 0.34);
  backdrop-filter: blur(14px);
}

.zoom-button,
.zoom-reset {
  position: relative;
  height: 36px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: oklch(100% 0 0 / 0.06);
  color: var(--text);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.zoom-button {
  width: 36px;
}

.zoom-reset {
  min-width: 58px;
  padding: 0 12px;
}

.zoom-button::before,
.zoom-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.zoom-in::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.zoom-button:hover,
.zoom-button:focus-visible,
.zoom-reset:hover,
.zoom-reset:focus-visible {
  border-color: oklch(67% 0.17 18 / 0.72);
  background: oklch(100% 0 0 / 0.12);
  outline: 0;
  transform: translateY(-1px);
}

.lightbox-panel figcaption {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-top: 1px solid var(--line-soft);
}

.lightbox-panel figcaption span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.lightbox-panel figcaption strong {
  font-size: 1.35rem;
}

.lightbox-panel figcaption p {
  color: var(--muted);
}

.lightbox-close,
.lightbox-nav {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: oklch(100% 0 0 / 0.055);
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--text);
  transform-origin: center;
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox-nav::after {
  position: absolute;
  inset: 14px;
  content: "";
  background: var(--text);
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h12m-5-5 5 5-5 5' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.lightbox-nav.prev::after {
  transform: rotate(180deg);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: oklch(100% 0 0 / 0.12);
  transform: scale(1.04);
}

.reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(22px) scale(0.995);
  transition: opacity 640ms var(--ease-fluid), transform 640ms var(--ease-fluid), filter 640ms var(--ease-fluid);
  will-change: opacity, transform, filter;
}

.hero .reveal,
.studio-hero-panel.reveal,
.page-hero .reveal,
.home-about.reveal,
.section-heading.reveal,
.detail-meta.reveal,
.detail-section.reveal,
.archive-copy.reveal {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

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

@media (max-width: 1180px) {
  h1 {
    font-size: 6rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  .featured-grid .project-card,
  .featured-grid .project-card:nth-child(1),
  .featured-grid .project-card:nth-child(4),
  .gallery-grid .project-card,
  .gallery-grid .project-card.banner,
  .gallery-grid .project-card.tall {
    grid-column: span 4;
  }

  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    width: min(calc(100% - 20px), var(--max));
    min-height: 66px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .nav-shell::-webkit-scrollbar {
    display: none;
  }

  .nav-wordmark {
    flex: 0 0 auto;
    margin-right: 0;
  }

  .nav-shell > a:not(.nav-wordmark) {
    flex: 0 0 auto;
    font-size: 0.82rem;
    padding: 0;
  }

  .nav-linkedin {
    flex: 0 0 38px;
  }

  .hero,
  .section,
  .page-hero,
  .site-footer,
  .home-about,
  .home-tiles,
  .home-work,
  .studio-hero,
  .about-block,
  .home-cta,
  .startup-section,
  .detail-meta,
  .detail-section {
    width: min(calc(100% - 20px), var(--max));
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-inner {
    padding-top: 22px;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-copy,
  .page-hero-copy p,
  .archive-copy p {
    font-size: 1rem;
  }

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

  .stat {
    border-bottom: 1px solid var(--line-soft);
  }

  .stat:nth-child(2n) {
    border-right: 0;
  }

  .stat:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .rail-item {
    width: 210px;
  }

  .home-about {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .studio-hero-panel,
  .about-block,
  .home-cta {
    grid-template-columns: 1fr;
  }

  .studio-hero-panel {
    min-height: auto;
  }

  .studio-hero-copy {
    justify-items: center;
    text-align: center;
  }

  .studio-hero .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 580px);
    margin: 0 auto;
  }

  .home-about .button {
    width: max-content;
  }

  .home-group-head,
  .detail-meta,
  .detail-block {
    grid-template-columns: 1fr;
  }

  .home-group-web-designs .home-project-grid,
  .home-group-web-design-work .home-project-grid {
    grid-template-columns: 1fr;
  }

  .home-tile-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .featured-grid,
  .gallery-grid,
  .archive-strip,
  .future-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    columns: 2 220px;
  }

  .featured-grid .project-card,
  .featured-grid .project-card:nth-child(1),
  .featured-grid .project-card:nth-child(4),
  .gallery-grid .project-card,
  .gallery-grid .project-card.banner,
  .gallery-grid .project-card.tall,
  .archive-strip .project-card:nth-child(1) {
    grid-column: span 1;
  }

  .archive-band {
    grid-template-columns: 1fr;
  }

  .case-row {
    grid-template-columns: 1fr;
  }

  .case-action {
    display: none;
  }

  .page-hero {
    padding: 28px;
  }

  .page-hero-art img {
    height: auto;
    max-height: none;
  }

  .projects-reel-duo {
    height: 430px;
    gap: 8px;
    padding: 8px;
  }

  .projects-reel-duo .reel-card {
    min-height: 132px;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .lightbox-nav {
    display: none;
  }

  .lightbox-panel {
    max-height: calc(100svh - 24px);
  }

  .lightbox-zoom-stage {
    min-height: min(64svh, 620px);
  }

  .lightbox-toolbar {
    top: 10px;
    left: 10px;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    display: flex;
    justify-content: flex-start;
    gap: clamp(8px, 2.6vw, 12px);
  }

  .nav-wordmark {
    width: 34px;
    flex: 0 0 34px;
  }

  .nav-wordmark span {
    display: none;
  }

  .nav-shell > a:not(.nav-wordmark) {
    min-width: 0;
    justify-content: flex-start;
    font-size: clamp(0.62rem, 2.45vw, 0.74rem);
  }

  .nav-linkedin {
    width: 36px;
    min-width: 36px !important;
    height: 36px;
    justify-content: center !important;
  }

  .home-about,
  .studio-hero,
  .about-block,
  .home-work,
  .home-cta,
  .startup-section,
  .detail-meta,
  .detail-section,
  .section {
    width: min(calc(100% - 24px), var(--max));
  }

  .home-about,
  .about-block,
  .home-cta,
  .detail-meta {
    gap: 22px;
  }

  .home-group-head,
  .detail-block,
  .section-heading {
    gap: 14px;
  }

  .home-about h2,
  .studio-hero h1,
  .about-copy h2,
  .home-group-head h2,
  .detail-story h2,
  .detail-block h2,
  .section-heading h2 {
    max-width: 100%;
    line-height: 1.02;
  }

  .home-about p,
  .studio-hero p,
  .about-copy p,
  .home-group-head p,
  .detail-story p,
  .detail-block p,
  .page-hero-copy p {
    max-width: 100%;
  }

  .hero-mark {
    width: 42px;
    height: 42px;
  }

  .hero-mark img {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .studio-hero {
    padding-top: 34px;
  }

  .studio-hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.05rem, 10vw, 2.45rem);
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.45rem, 12vw, 3rem);
  }

  .page-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .page-hero-copy p {
    width: 100%;
    max-width: 100%;
    text-wrap: wrap;
  }

  .studio-hero p {
    max-width: 30ch;
    font-size: 0.94rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .archive-copy .button,
  .home-about .button,
  .home-cta .button {
    width: 100%;
  }

  .studio-hero-panel,
  .about-block,
  .home-cta,
  .page-hero {
    padding: 22px;
  }

  .page-hero {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .page-hero .hero-actions,
  .page-hero .button {
    max-width: 100%;
  }

  .hero-visual {
    width: min(100%, 330px);
    grid-template-columns: 1fr;
  }

  .hero-showcase-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    transform: none;
  }

  .hero-showcase-tall {
    min-height: 320px;
    transform: none;
  }

  .hero-showcase-link {
    grid-column: 1 / -1;
    min-height: 120px;
  }

  .hero-work-stack,
  .about-proof,
  .kpi-grid,
  .startup-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .featured-grid,
  .gallery-grid,
  .archive-strip,
  .future-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }

  .stat {
    grid-column: auto !important;
    border-right: 0;
  }

  .rail-track {
    padding: 6px;
  }

  .rail-item {
    width: 178px;
  }

  .project-meta {
    padding: 14px;
  }

  .page-hero-art img {
    height: auto;
  }

  .projects-reel-duo {
    height: 380px;
  }

  .projects-reel-duo .reel-card {
    min-height: 118px;
  }

  .projects-reel-duo .reel-card span {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .projects-reel-duo .reel-card strong {
    font-size: 0.84rem;
  }

  .projects-reel-duo .reel-card em {
    font-size: 0.7rem;
  }

  .lightbox-zoom-stage {
    min-height: 58svh;
  }

  .lightbox-toolbar {
    right: 10px;
    top: auto;
    bottom: 10px;
    left: 10px;
    justify-content: center;
  }

  .zoom-button,
  .zoom-reset {
    height: 34px;
  }

  .zoom-button {
    width: 34px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

body.cinematic-site {
  --cinema-bg: oklch(5.6% 0.012 250);
  --cinema-panel: oklch(12% 0.016 250 / 0.7);
  --cinema-panel-strong: oklch(17% 0.018 250 / 0.84);
  --cinema-border: oklch(100% 0 0 / 0.09);
  --cinema-border-strong: oklch(100% 0 0 / 0.18);
  --cinema-text: oklch(96% 0.007 250);
  --cinema-muted: oklch(78% 0.014 250 / 0.68);
  --cinema-faint: oklch(78% 0.014 250 / 0.42);
  --cinema-accent: oklch(67% 0.2 18);
  --cinema-radius-lg: 28px;
  --cinema-radius-md: 18px;
  --cinema-shadow: 0 32px 100px oklch(2% 0.006 250 / 0.55);
  background:
    radial-gradient(circle at 16% 8%, oklch(60% 0.13 205 / 0.13), transparent 32rem),
    radial-gradient(circle at 86% 14%, oklch(67% 0.2 18 / 0.13), transparent 30rem),
    radial-gradient(circle at 50% 100%, oklch(100% 0 0 / 0.045), transparent 36rem),
    var(--cinema-bg);
}

body.cinematic-site::before {
  opacity: 0.26;
  background:
    linear-gradient(180deg, oklch(4.8% 0.012 250 / 0.5), oklch(5.8% 0.012 250 / 0.9)),
    url("assets/portfolio/36-fluxframe-texture.png") center top / min(1180px, 92vw) auto repeat;
}

body.cinematic-site::after {
  opacity: 0.68;
  background-image:
    linear-gradient(oklch(100% 0 0 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, oklch(100% 0 0 / 0.028) 1px, transparent 1px);
  background-size: calc(100vw / 6) 100%, calc(100vw / 6) 100%;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

.cinematic-site .site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  width: min(calc(100% - 28px), 1180px);
  margin: 0 auto;
  border: 1px solid var(--cinema-border);
  border-radius: 999px;
  background: oklch(8% 0.014 250 / 0.72);
  box-shadow: 0 18px 60px oklch(2% 0.006 250 / 0.36);
  backdrop-filter: blur(22px) saturate(1.15);
}

.cinematic-site .nav-shell {
  width: 100%;
  min-height: 60px;
  padding: 0 10px 0 18px;
  gap: 22px;
}

.cinematic-site .nav-wordmark {
  font-size: 0.95rem;
}

.cinematic-site .nav-shell > a:not(.nav-wordmark) {
  min-height: 40px;
  padding: 0 6px;
  color: var(--cinema-muted);
  font-size: 0.86rem;
}

.cinematic-site .nav-shell > a[aria-current="page"] {
  color: var(--cinema-text);
}

.cinematic-site .nav-shell > a:not(.nav-wordmark)::after {
  right: 8px;
  bottom: 4px;
  left: 8px;
  background: var(--cinema-accent);
}

.cinematic-site .nav-line {
  display: none;
}

.nav-toggle {
  display: none;
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--cinema-border);
  border-radius: 22px;
  background: oklch(8% 0.014 250 / 0.94);
  box-shadow: var(--cinema-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease), visibility 260ms var(--ease);
  backdrop-filter: blur(22px) saturate(1.1);
}

.mobile-nav-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-radius: 14px;
  color: var(--cinema-text);
  font-weight: 760;
}

.mobile-nav-panel a::after {
  content: ">";
  color: var(--cinema-accent);
}

.nav-open .mobile-nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.cinematic-hero,
.scroll-story,
.selected-work,
.web-editorial,
.archive-transition,
.featured-archive,
.archive-list-section,
.archive-filter-section,
.archive-thumb-strip {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
}

.cinematic-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 4.5vw, 68px);
  align-items: start;
  padding: clamp(108px, 12vh, 138px) 0 clamp(70px, 10vh, 112px);
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  align-content: center;
}

.cinematic-site .hero-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--cinema-text);
  font-weight: 850;
}

.cinematic-site .hero-brand img {
  width: 38px;
  height: 38px;
}

.eyebrow {
  color: var(--cinema-accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cinematic-title {
  max-width: 12ch;
  color: var(--cinema-text);
  font-size: clamp(3.8rem, 6.6vw, 6.35rem);
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: 0;
  text-shadow: 0 30px 100px oklch(100% 0 0 / 0.1);
}

.cinematic-title span {
  display: block;
}

.hero-lede {
  max-width: 62ch;
  color: var(--cinema-muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.cinematic-site .hero-actions {
  justify-content: flex-start;
  margin-top: 8px;
}

.cinematic-site .button {
  min-height: 48px;
  border-radius: 999px;
  border-color: var(--cinema-border-strong);
}

.cinematic-site .primary {
  background: var(--cinema-text);
  color: var(--cinema-bg);
  border-color: var(--cinema-text);
}

.cinematic-site .secondary {
  background: oklch(100% 0 0 / 0.045);
  color: var(--cinema-text);
}

.magnetic:hover,
.magnetic:focus-visible {
  transform: translateY(-3px);
}

.hero-stage {
  position: relative;
  min-height: clamp(500px, 62svh, 680px);
  perspective: 1200px;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  inset: 12% 0 6%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 35%, oklch(70% 0.16 205 / 0.18), transparent 38%),
    radial-gradient(circle at 70% 46%, oklch(67% 0.2 18 / 0.22), transparent 42%);
  filter: blur(26px);
}

.floating-shot {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid var(--cinema-border-strong);
  border-radius: var(--cinema-radius-md);
  background: var(--cinema-panel);
  box-shadow: var(--cinema-shadow);
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform 420ms var(--ease), border-color 320ms var(--ease), box-shadow 320ms var(--ease);
  animation: cinematicFloat 9s var(--ease) infinite;
}

.floating-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 44%, oklch(4% 0.008 250 / 0.82)),
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), oklch(100% 0 0 / 0.13), transparent 38%);
  pointer-events: none;
}

.floating-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.88;
  filter: saturate(0.95) brightness(0.9);
  transition: transform 700ms var(--ease), filter 700ms var(--ease), opacity 700ms var(--ease);
}

.floating-shot span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  gap: 2px;
}

.floating-shot strong {
  color: var(--cinema-text);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  line-height: 1;
  font-weight: 850;
}

.floating-shot em {
  color: var(--cinema-muted);
  font-size: 0.82rem;
  font-style: normal;
}

.floating-shot:hover,
.floating-shot:focus-visible {
  border-color: oklch(100% 0 0 / 0.28);
  outline: 0;
  box-shadow: 0 38px 110px oklch(2% 0.006 250 / 0.72);
}

.floating-shot:hover img,
.floating-shot:focus-visible img {
  opacity: 1;
  filter: saturate(1.04) brightness(1.02);
  transform: scale(1.045);
}

.shot-primary {
  top: 8%;
  left: 18%;
  width: min(48%, 360px);
  height: 76%;
  animation-delay: -1.6s;
}

.shot-secondary {
  top: 2%;
  right: 0;
  width: 48%;
  height: 28%;
  animation-delay: -3s;
}

.shot-tertiary {
  right: 4%;
  bottom: 24%;
  width: 42%;
  height: 32%;
  animation-delay: -5s;
}

.shot-quaternary {
  bottom: 4%;
  left: 0;
  width: 44%;
  height: 36%;
  animation-delay: -7s;
}

@keyframes cinematicFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

.scroll-story {
  min-height: 170svh;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 110px);
  padding: clamp(84px, 12vw, 150px) 0;
  border-top: 1px solid var(--cinema-border);
}

.story-pin {
  position: sticky;
  top: 128px;
  height: max-content;
  display: grid;
  gap: 18px;
}

.story-pin h2,
.selected-work h2,
.web-sticky h2,
.archive-transition h2,
.featured-archive h2,
.archive-list-section h2,
.footer-cta h2 {
  max-width: 11ch;
  color: var(--cinema-text);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  font-weight: 850;
  letter-spacing: 0;
}

.story-steps {
  display: grid;
  gap: clamp(28px, 7vw, 96px);
  padding-top: 16svh;
}

.story-step {
  min-height: 48svh;
  display: grid;
  align-content: center;
  gap: 14px;
  border-bottom: 1px solid var(--cinema-border);
}

.story-step span {
  color: var(--cinema-accent);
  font-size: 0.8rem;
  font-weight: 850;
}

.story-step strong {
  max-width: 13ch;
  color: var(--cinema-text);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.96;
  font-weight: 850;
}

.story-step p {
  max-width: 52ch;
  color: var(--cinema-muted);
  line-height: 1.65;
}

.selected-work,
.featured-archive,
.archive-list-section {
  padding: clamp(72px, 11vw, 140px) 0;
  border-top: 1px solid var(--cinema-border);
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(24px, 5vw, 56px);
}

.section-kicker .text-link {
  color: var(--cinema-muted);
}

.case-study-grid,
.archive-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 16px;
  align-items: stretch;
  margin-top: clamp(28px, 5vw, 60px);
}

.editorial-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--cinema-border);
  border-radius: var(--cinema-radius-lg);
  background: var(--cinema-panel);
  box-shadow: 0 24px 80px oklch(2% 0.006 250 / 0.32);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 360ms var(--ease), border-color 360ms var(--ease), box-shadow 360ms var(--ease), background 360ms var(--ease);
}

.editorial-card-large {
  grid-row: span 2;
  min-height: 720px;
}

.editorial-card::before,
.web-shot::before,
.archive-row::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 45%), oklch(100% 0 0 / 0.12), transparent 38%);
  opacity: 0;
  transition: opacity 300ms var(--ease);
  pointer-events: none;
}

.editorial-card:hover,
.editorial-card:focus-visible,
.web-shot:hover,
.web-shot:focus-visible {
  border-color: var(--cinema-border-strong);
  background: var(--cinema-panel-strong);
  box-shadow: 0 32px 90px oklch(2% 0.006 250 / 0.5);
  outline: 0;
  transform: translateY(-8px);
}

.editorial-card:hover::before,
.editorial-card:focus-visible::before,
.web-shot:hover::before,
.web-shot:focus-visible::before,
.archive-row:hover::before,
.archive-row:focus-visible::before {
  opacity: 1;
}

.editorial-media {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
  background: oklch(5% 0.01 250);
}

.editorial-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, oklch(4% 0.008 250 / 0.72));
  pointer-events: none;
}

.editorial-media img,
.web-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.84;
  filter: saturate(0.95) brightness(0.9);
  transition: transform 700ms var(--ease), filter 700ms var(--ease), opacity 700ms var(--ease);
}

.editorial-card:hover img,
.editorial-card:focus-visible img,
.web-shot:hover img,
.web-shot:focus-visible img {
  opacity: 1;
  filter: saturate(1.04) brightness(1.04);
  transform: scale(1.045);
}

.editorial-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 30px);
}

.card-tag {
  width: max-content;
  max-width: 100%;
  color: var(--cinema-accent);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.editorial-copy strong {
  color: var(--cinema-text);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  line-height: 0.94;
  font-weight: 850;
}

.editorial-copy em,
.editorial-copy small {
  max-width: 58ch;
  color: var(--cinema-muted);
  font-style: normal;
  line-height: 1.5;
}

.editorial-copy small {
  color: var(--cinema-faint);
  font-size: 0.82rem;
  font-weight: 760;
}

.editorial-copy b {
  color: var(--cinema-text);
  font-size: 0.9rem;
  transition: transform 260ms var(--ease), color 260ms var(--ease);
}

.editorial-card:hover b,
.editorial-card:focus-visible b {
  color: var(--cinema-accent);
  transform: translateX(6px);
}

.web-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 100px);
  padding: clamp(72px, 11vw, 140px) 0;
  border-top: 1px solid var(--cinema-border);
}

.web-sticky {
  position: sticky;
  top: 128px;
  height: max-content;
  display: grid;
  gap: 18px;
}

.web-sticky p:not(.eyebrow) {
  max-width: 48ch;
  color: var(--cinema-muted);
  line-height: 1.65;
}

.web-sticky h2 {
  max-width: 9ch;
}

.web-shot-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.web-shot {
  position: relative;
  min-height: 560px;
  grid-column: span 3;
  display: block;
  overflow: hidden;
  border: 1px solid var(--cinema-border);
  border-radius: var(--cinema-radius-lg);
  background: var(--cinema-panel);
  box-shadow: var(--cinema-shadow);
  transition: transform 360ms var(--ease), border-color 360ms var(--ease), box-shadow 360ms var(--ease);
}

button.web-shot {
  width: 100%;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.web-shot-tall {
  min-height: 760px;
  grid-column: span 4;
}

.web-shot-wide {
  min-height: 460px;
  grid-column: 2 / -1;
}

.web-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, oklch(4% 0.008 250 / 0.86));
  pointer-events: none;
}

.web-shot span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  display: grid;
  gap: 5px;
}

.web-shot strong {
  color: var(--cinema-text);
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 0.95;
  font-weight: 850;
}

.web-shot em {
  color: var(--cinema-muted);
  font-style: normal;
}

.cinematic-site .gallery-section {
  padding-top: clamp(72px, 11vw, 140px);
}

.cinematic-site .gallery-grid {
  max-width: 1180px;
  margin-top: clamp(28px, 5vw, 58px);
  columns: 3 300px;
  column-gap: 16px;
}

.cinematic-site .gallery-grid .project-card,
.cinematic-site .gallery-grid .project-card.tall,
.cinematic-site .gallery-grid .project-card.banner {
  margin-bottom: 16px;
  border-color: var(--cinema-border);
  border-radius: 18px;
  background: var(--cinema-panel);
  box-shadow: 0 24px 80px oklch(2% 0.006 250 / 0.34);
}

.cinematic-site .gallery-grid .project-card:hover,
.cinematic-site .gallery-grid .project-card:focus-visible {
  border-color: var(--cinema-border-strong);
  background: var(--cinema-panel-strong);
}

.cinematic-site .future-section {
  border-top: 1px solid var(--cinema-border);
}

.archive-transition {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px auto;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 8vw, 90px) 0;
  border-top: 1px solid var(--cinema-border);
  border-bottom: 1px solid var(--cinema-border);
}

.archive-transition h2 {
  max-width: 13ch;
}

.archive-orbit {
  position: relative;
  width: 172px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--cinema-border-strong);
  border-radius: 50%;
}

.archive-orbit span {
  position: absolute;
  inset: 18px;
  border: 1px solid oklch(67% 0.2 18 / 0.74);
  border-right-color: transparent;
  border-radius: 50%;
  animation: orbitSweep 12s linear infinite;
}

.archive-orbit strong {
  color: var(--cinema-text);
  font-size: 0.86rem;
  font-weight: 850;
}

.studio-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--cinema-border);
  background: oklch(7% 0.012 250);
}

.footer-cta {
  width: min(calc(100% - 32px), 1180px);
  min-height: 480px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 18px;
}

.footer-cta h2 {
  max-width: 12ch;
}

.footer-cta p {
  color: var(--cinema-muted);
  font-size: 1.18rem;
}

.footer-cta .button {
  width: max-content;
}

.footer-links {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px 0 48px;
  color: var(--cinema-muted);
}

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

.talk-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--cinema-border);
  border-bottom: 1px solid var(--cinema-border);
  background: var(--cinema-accent);
  color: oklch(6% 0.012 250);
  white-space: nowrap;
}

.talk-marquee span {
  min-width: max-content;
  padding: 26px 0;
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.9;
  font-weight: 850;
  animation: marqueeLoop 18s linear infinite;
}

@keyframes marqueeLoop {
  to {
    transform: translateX(-50%);
  }
}

.archive-page .cinematic-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  min-height: auto;
}

.archive-preview-reel {
  height: min(560px, 64svh);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  overflow: hidden;
  border: 1px solid var(--cinema-border-strong);
  border-radius: var(--cinema-radius-lg);
  background: var(--cinema-panel);
  box-shadow: var(--cinema-shadow);
  padding: 14px;
}

.preview-column {
  display: grid;
  gap: 14px;
  animation: reelLoop 58s linear infinite;
}

.preview-column-reverse {
  animation: reelLoopReverse 64s linear infinite;
}

.preview-column img {
  width: 100%;
  min-height: 180px;
  border: 1px solid var(--cinema-border);
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.82);
}

.archive-filter-section {
  position: sticky;
  top: 92px;
  z-index: 18;
  padding: 12px 0;
}

.archive-filter-bar {
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--cinema-border);
  border-radius: 999px;
  background: oklch(8% 0.014 250 / 0.78);
  box-shadow: 0 18px 60px oklch(2% 0.006 250 / 0.3);
  backdrop-filter: blur(20px);
}

.archive-filter-bar .filter-button {
  border-radius: 999px;
}

.archive-thumb-strip {
  overflow: hidden;
  padding: 32px 0 88px;
  border-top: 1px solid var(--cinema-border);
}

.archive-strip-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marqueeLoop 34s linear infinite;
}

.strip-thumb {
  position: relative;
  width: 220px;
  aspect-ratio: 4 / 3;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--cinema-border);
  border-radius: 18px;
  background: var(--cinema-panel);
  cursor: pointer;
}

.strip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.82);
}

.strip-thumb span {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  color: var(--cinema-text);
  font-size: 0.82rem;
  font-weight: 800;
}

.archive-list {
  display: grid;
  border-top: 1px solid var(--cinema-border);
  margin-top: 38px;
}

.archive-row {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 72px 90px minmax(0, 1fr) minmax(180px, 0.36fr) 80px;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--cinema-border);
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 260ms var(--ease), color 260ms var(--ease);
}

.archive-row:hover,
.archive-row:focus-visible {
  color: var(--cinema-text);
  outline: 0;
  transform: translateX(6px);
}

.archive-year,
.archive-kind,
.archive-view {
  color: var(--cinema-faint);
  font-size: 0.82rem;
  font-weight: 760;
}

.archive-thumb {
  width: 90px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cinema-panel);
}

.archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.82);
}

.archive-main {
  display: grid;
  gap: 4px;
}

.archive-main strong {
  color: var(--cinema-text);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1;
  font-weight: 850;
}

.archive-main em {
  max-width: 68ch;
  color: var(--cinema-muted);
  font-style: normal;
  line-height: 1.45;
}

.archive-count {
  color: var(--cinema-muted);
  font-weight: 760;
}

.cinematic-site [data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px);
  transition: opacity 820ms var(--ease), transform 820ms var(--ease), filter 820ms var(--ease);
}

.cinematic-site [data-reveal].is-visible,
.cinematic-site .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.cinematic-site .cinematic-title [data-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.cinematic-site .hero-lede[data-reveal] {
  transition-delay: 160ms;
}

.cinematic-site .hero-actions[data-reveal],
.cinematic-site .hero-stage[data-reveal] {
  transition-delay: 220ms;
}

body.cinematic-site .cinematic-hero [data-reveal] {
  will-change: opacity, transform, filter;
}

@media (max-width: 1080px) {
  .cinematic-hero,
  .archive-page .cinematic-hero,
  .scroll-story,
  .web-editorial {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 560px;
  }

  .story-pin,
  .web-sticky {
    position: relative;
    top: auto;
  }

  .scroll-story {
    min-height: auto;
  }

  .story-steps {
    padding-top: 0;
  }

  .story-step {
    min-height: auto;
    padding: 42px 0;
  }

  .case-study-grid,
  .archive-feature-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card-large {
    min-height: 620px;
  }

  .archive-transition {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.cinematic-site::after {
    background-size: 50vw 100%, 50vw 100%;
  }

  .cinematic-site .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 24px;
  }

  .cinematic-site .nav-shell {
    min-height: 58px;
    overflow: visible;
    padding: 0 8px 0 12px;
  }

  .cinematic-site .nav-shell > a:not(.nav-wordmark):not(.nav-linkedin),
  .cinematic-site .nav-shell > .nav-linkedin {
    display: none !important;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    display: grid;
    place-items: center;
    gap: 0;
    border: 1px solid var(--cinema-border);
    border-radius: 50%;
    background: oklch(100% 0 0 / 0.045);
    color: var(--cinema-text);
    cursor: pointer;
  }

  .nav-toggle span {
    width: 16px;
    height: 2px;
    display: block;
    grid-area: 1 / 1;
    border-radius: 999px;
    background: currentColor;
    transition: transform 240ms var(--ease);
  }

  .nav-toggle span:first-child {
    transform: translateY(-4px);
  }

  .nav-toggle span:last-child {
    transform: translateY(4px);
  }

  .nav-open .nav-toggle span:first-child {
    transform: rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .cinematic-hero,
  .scroll-story,
  .selected-work,
  .web-editorial,
  .archive-transition,
  .featured-archive,
  .archive-list-section,
  .archive-filter-section,
  .archive-thumb-strip {
    width: 100%;
    margin: 0;
    padding-right: 18px;
    padding-left: 18px;
  }

  .cinematic-hero,
  .archive-page .cinematic-hero {
    min-height: auto;
    padding-top: 96px;
    gap: 34px;
  }

  .cinematic-title {
    max-width: 100%;
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .hero-copy-block {
    gap: 16px;
  }

  .cinematic-site .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cinematic-site .hero-actions .button,
  .footer-cta .button {
    width: 100%;
  }

  .hero-stage {
    width: calc(100% + 36px);
    min-height: auto;
    margin-left: -18px;
    display: grid;
    gap: 12px;
  }

  .hero-glow,
  .shot-secondary,
  .shot-tertiary,
  .shot-quaternary {
    display: none;
  }

  .floating-shot,
  .shot-primary {
    position: relative;
    inset: auto;
    width: 100%;
    height: 560px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    animation: none;
  }

  .story-pin h2,
  .selected-work h2,
  .web-sticky h2,
  .archive-transition h2,
  .featured-archive h2,
  .archive-list-section h2,
  .footer-cta h2 {
    max-width: 100%;
    font-size: clamp(2.5rem, 13vw, 4.1rem);
  }

  .story-step {
    min-height: auto;
    padding: 42px 0;
  }

  .story-step strong {
    max-width: 100%;
  }

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

  .case-study-grid,
  .archive-feature-grid,
  .web-shot-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .editorial-card,
  .editorial-card-large,
  .web-shot,
  .web-shot-tall,
  .web-shot-wide,
  .cinematic-site .gallery-grid .project-card,
  .cinematic-site .gallery-grid .project-card.tall,
  .cinematic-site .gallery-grid .project-card.banner,
  .cinematic-site .future-slot {
    min-height: auto;
    grid-column: auto;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .cinematic-site .gallery-grid {
    columns: 1;
    column-gap: 0;
    margin-top: 28px;
  }

  .cinematic-site .gallery-grid .project-card,
  .cinematic-site .gallery-grid .project-card.tall,
  .cinematic-site .gallery-grid .project-card.banner {
    margin-bottom: 22px;
  }

  .editorial-media,
  .web-shot {
    min-height: 420px;
  }

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

  .web-shot span {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .archive-transition {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .archive-orbit {
    width: 132px;
  }

  .footer-cta,
  .footer-links {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-cta {
    min-height: 420px;
  }

  .talk-marquee span {
    padding: 18px 0;
  }

  .archive-preview-reel {
    width: calc(100% + 36px);
    height: auto;
    margin-left: -18px;
    display: block;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .preview-column {
    display: block;
    animation: none;
  }

  .preview-column-reverse {
    display: none;
  }

  .preview-column img {
    width: 100%;
    height: auto;
    min-height: 0;
    display: block;
    margin: 0;
    border: 0;
    border-radius: 0;
    object-fit: contain;
  }

  .preview-column img + img {
    margin-top: 16px;
  }

  .preview-column img:nth-child(n + 3) {
    display: none;
  }

  .archive-filter-section {
    top: 78px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .archive-filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    border-radius: 999px;
    scrollbar-width: none;
  }

  .archive-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .archive-row {
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 18px 0;
  }

  .archive-thumb {
    width: 64px;
  }

  .archive-year,
  .archive-kind {
    display: none;
  }

  .archive-view {
    font-size: 0;
  }

  .archive-view::after {
    content: ">";
    font-size: 1rem;
    color: var(--cinema-accent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-shot,
  .preview-column,
  .archive-strip-track,
  .talk-marquee span,
  .archive-orbit span {
    animation: none !important;
  }

  .cinematic-site [data-reveal] {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
