﻿:root {
  --black: #080606;
  --panel: #110a09;
  --paper: #f0e7dc;
  --ink: #f7eee8;
  --muted: #d6c6bb;
  --gold: #d9a27e;
  --gold-light: #f0ccb5;
  --wine: #661b20;
  --line: rgba(217, 162, 126, .27);
}

* { box-sizing: border-box; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--ink);
  font-family: "Noto Sans SC", sans-serif;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, p, blockquote, dl, dd { margin-top: 0; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .13;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: linear-gradient(90deg, var(--wine), var(--gold-light));
  box-shadow: 0 0 14px rgba(240,204,181,.7);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 74px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 6, 6, .88);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: baseline; gap: 13px; }
.brand strong { color: var(--gold-light); font-family: "Playfair Display", serif; font-size: 22px; }
.brand span, .eyebrow, .section-number, .project-facts dt, .tags, .capability-list b {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
nav { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 13px; }
nav a { transition: color .2s ease; }
nav a:hover { color: var(--ink); }
.version-switch {
  padding: 7px 9px;
  border: 1px solid rgba(119,184,184,.35);
  color: #9bd0cf;
  font-size: 11px;
}
.version-switch:hover { border-color: #9bd0cf; color: #c8eeee; }
.nav-cta { padding: 9px 14px; border: 1px solid var(--line); color: var(--gold-light); }
.menu-button { display: none; border: 0; background: none; cursor: pointer; }

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  --hero-x: 0px;
  --hero-y: 0px;
  --hero-copy-x: 0px;
  --hero-copy-y: 0px;
  --hero-image-x: 0px;
  --hero-image-y: 0px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 6, 6, .98) 0%, rgba(8, 6, 6, .88) 32%, rgba(8, 6, 6, .34) 58%, rgba(8, 6, 6, .05) 100%),
    linear-gradient(0deg, rgba(8,6,6,.58), transparent 38%);
}
.hero-copy {
  position: relative;
  z-index: 5;
  width: min(62%, 900px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 120px) clamp(24px, 5vw, 76px);
  background: transparent;
  transform: translate3d(var(--hero-copy-x), var(--hero-copy-y), 0);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.eyebrow { margin-bottom: 14px; }
.hero h1 {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--gold-light);
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}
.hero h1 span, .intro-heading h2 span {
  color: var(--ink);
  font-style: italic;
}
.hero-intro {
  max-width: 570px;
  margin-bottom: 0;
  color: #e2d4cc;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.85;
}
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
  font-size: 13px;
  font-weight: 700;
  transition: background .25s, color .25s, transform .25s;
}
.button:hover { transform: translateY(-2px); background: rgba(255,255,255,.08); }
.button.primary { border-color: var(--gold); background: var(--gold); color: #160908; }
.button.primary:hover { background: var(--gold-light); }
.availability { display: flex; align-items: center; gap: 9px; margin-top: 24px; color: #d8cbc3; font-size: 12px; }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: #87bd83; box-shadow: 0 0 0 5px rgba(135, 189, 131, .1); }
.hero-media { position: absolute; inset: 0; z-index: 0; min-height: 650px; overflow: hidden; cursor: crosshair; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(circle at 76% 48%, transparent 0 18%, rgba(8,6,6,.13) 52%, rgba(8,6,6,.34) 100%);
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: none;
  translate: var(--hero-image-x) var(--hero-image-y);
}
.water-distortion {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.water-ripple {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  display: none;
}
.water-glints {
  position: absolute;
  inset: -20%;
  z-index: 1;
  display: none;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    repeating-radial-gradient(ellipse at 78% 58%, transparent 0 22px, rgba(240,204,181,.10) 24px, transparent 27px 47px),
    linear-gradient(112deg, transparent 40%, rgba(255,220,195,.11) 48%, transparent 54%);
  transform: rotate(-4deg);
  animation: glintDrift 9s ease-in-out infinite alternate;
}
.splash-layer { display: none; }
.splash-drop {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border: 1px solid rgba(255,220,200,.68);
  border-radius: 50%;
  background: rgba(255,220,200,.16);
  box-shadow: 0 0 8px rgba(255,190,170,.25);
  animation: splashDrop .8s cubic-bezier(.18,.72,.35,1) forwards;
}
.water-instruction {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247,238,232,.58);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  pointer-events: none;
}
.water-instruction i { width: 36px; height: 1px; background: var(--gold); animation: instructionPulse 2s ease-in-out infinite; }
.hero-label {
  position: absolute;
  z-index: 5;
  right: 26px;
  bottom: 24px;
  max-width: 320px;
  padding: 13px 15px;
  border: 1px solid rgba(240, 204, 181, .42);
  background: rgba(8, 6, 6, .68);
  backdrop-filter: blur(12px);
}
.hero-label span { display: block; margin-bottom: 4px; color: var(--gold); font-size: 10px; letter-spacing: .14em; }
.hero-label strong { font-family: "Playfair Display", serif; font-size: 14px; }
.hero-index {
  position: absolute;
  z-index: 4;
  left: 49%;
  bottom: -45px;
  color: rgba(240, 204, 181, .1);
  font: 600 220px/1 "Playfair Display", serif;
  pointer-events: none;
}
@keyframes glintDrift {
  from { transform: translate3d(-1%, 0, 0) rotate(-4deg) scale(1); opacity: .2; }
  to { transform: translate3d(2%, 1%, 0) rotate(-2deg) scale(1.04); opacity: .42; }
}
@keyframes splashDrop {
  0% { opacity: 0; transform: translate3d(0,0,0) scale(.25); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(var(--tx),var(--ty),0) scale(1); }
}
@keyframes instructionPulse {
  0%,100% { transform: scaleX(.5); transform-origin: left; opacity: .45; }
  50% { transform: scaleX(1); transform-origin: left; opacity: 1; }
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: #18100e;
}
.proof-strip article { min-height: 138px; padding: 25px clamp(18px, 3vw, 42px); border-right: 1px solid rgba(20, 12, 10, .24); }
.proof-strip article:last-child { border-right: 0; }
.proof-strip strong { display: block; margin-bottom: 8px; color: var(--wine); font: 600 clamp(36px, 4vw, 58px)/1 "Playfair Display", serif; }
.proof-strip span { font-size: 13px; font-weight: 600; }
.proof-strip article:nth-child(2) strong,
.proof-strip article:nth-child(3) strong,
.proof-strip article:nth-child(4) strong { font-size: clamp(25px, 3vw, 44px); }

.section { padding: clamp(70px, 9vw, 132px) clamp(20px, 5vw, 76px); border-bottom: 1px solid var(--line); }
.intro-section {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 250px;
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  background: radial-gradient(circle at 92% 30%, rgba(102, 27, 32, .35), transparent 27%);
}
.intro-heading h2, .section-head h2, .process-copy h2, .about-title h2, .contact-section h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-size: clamp(36px, 4.6vw, 66px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0;
}
.intro-note, .section-head > p { margin-bottom: 0; color: #d8c8bd; font-size: 14px; line-height: 1.8; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 46px; }
.section-head > p { max-width: 400px; }

.work-section { background: #0b0707; }
.project-featured {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  border: 1px solid var(--line);
  background: var(--panel);
}
.project-visual { position: relative; min-height: 660px; overflow: hidden; }
.project-visual img { width: 100%; height: 100%; object-fit: cover; }
.image-zoom img { transition: transform .9s cubic-bezier(.16,1,.3,1), filter .6s; }
.image-zoom:hover img { transform: scale(1.025); filter: contrast(1.03); }
.project-count { position: absolute; left: 20px; top: 15px; color: rgba(255,255,255,.72); font: 600 80px/1 "Playfair Display", serif; }
.project-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 72px); }
.project-copy h3, .project-card h3 { margin-bottom: 18px; color: var(--gold-light); font: 600 clamp(30px, 3vw, 48px)/1.12 "Playfair Display", "Noto Sans SC", serif; }
.project-lead, .project-card p { color: #d8c8bd; line-height: 1.8; }
.title-note,
.project-card p.title-note,
.molly-heading p.title-note,
.production-main p.title-note {
  margin: -8px 0 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.molly-heading p.dark-note { color: #0c6e70; }
.project-nature {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}
.project-facts { margin: 24px 0; border-top: 1px solid var(--line); }
.project-facts div { display: grid; grid-template-columns: 105px 1fr; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.project-facts dt { margin: 0; }
.project-facts dd { color: var(--ink); font-size: 13px; line-height: 1.6; }
.text-link { width: fit-content; padding: 10px 0; border: 0; border-bottom: 1px solid var(--gold); background: transparent; color: var(--gold-light); cursor: pointer; }
.text-link span { margin-left: 30px; }
.project-detail {
  display: none;
  grid-column: 1 / -1;
}
.project-detail.open { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.project-detail.open > div { padding: 28px; border-right: 1px solid var(--line); }
.project-detail.open > div:last-child { border-right: 0; }
.project-detail span { color: var(--gold); font-size: 10px; letter-spacing: .15em; }
.project-detail h4 { margin: 12px 0 8px; font-size: 17px; }
.project-detail p { margin-bottom: 0; color: #d4c4ba; font-size: 13px; line-height: 1.7; }
.final-film {
  grid-column: 1 / -1;
  padding: clamp(24px, 4vw, 52px);
  border-top: 1px solid var(--line);
  background: #080606;
}
.final-film-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 24px;
}
.final-film-head h4 {
  margin: 0;
  color: var(--gold-light);
  font: 600 clamp(30px, 4vw, 54px)/1 "Playfair Display", "Noto Sans SC", serif;
}
.final-film-head > p {
  max-width: 440px;
  margin-bottom: 0;
  color: #d8c8bd;
  font-size: 13px;
  line-height: 1.75;
}
.film-frame { position: relative; overflow: hidden; border: 1px solid var(--line); background: #000; }
.film-frame video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.film-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(240,204,181,.4);
  background: rgba(8,6,6,.7);
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .12em;
  pointer-events: none;
  backdrop-filter: blur(8px);
}
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.module-heading {
  display: grid;
  grid-template-columns: .72fr 1fr 1fr;
  gap: 25px;
  align-items: end;
  margin-top: 76px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.module-heading .eyebrow { margin: 0; }
.module-heading h3 { margin: 0; color: var(--gold-light); font: 600 clamp(24px, 2.8vw, 38px)/1.15 "Playfair Display", "Noto Sans SC", serif; }
.module-heading > p:last-child { margin: 0; color: #d8c8bd; font-size: 13px; line-height: 1.75; }
.project-card {
  position: relative;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  outline: none;
  transition: transform .3s ease, border-color .3s ease;
  transform-style: preserve-3d;
}
.project-card:hover, .project-card:focus-visible { transform: translateY(-4px); border-color: var(--gold); }
.project-card:focus-visible { box-shadow: 0 0 0 1px var(--gold); }
.card-image { aspect-ratio: 4 / 3; margin-bottom: 24px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.project-card h3 { font-size: clamp(24px, 2.3vw, 34px); }
.project-card h3 { max-width: 420px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; letter-spacing: .07em; }
.tags span { padding: 6px 8px; border: 1px solid var(--line); }
.card-open {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}
.card-open b { color: var(--gold); font-size: 17px; }

.molly-case {
  margin-top: 72px;
  padding: clamp(24px, 4vw, 58px);
  background: #e9dfcc;
  color: #171410;
}
.molly-case .eyebrow, .molly-story span { color: #0c6e70; }
.molly-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  margin-bottom: 38px;
}
.molly-heading h3 {
  max-width: 780px;
  margin-bottom: 0;
  font: 600 clamp(38px, 5vw, 72px)/1.08 "Playfair Display", "Noto Sans SC", serif;
}
.molly-summary p { margin: 15px 0 0; color: #5e574d; line-height: 1.8; }
.concept-label {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid rgba(23,20,16,.34);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}
.molly-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 15px; }
.molly-hero figure, .molly-gallery figure { margin: 0; overflow: hidden; background: #16130f; }
.molly-hero figure, .molly-hero-side > img, .molly-gallery figure {
  cursor: zoom-in;
}
.molly-hero-main img { width: 100%; height: 850px; object-fit: cover; }
.molly-hero-side { display: flex; flex-direction: column; background: #16130f; color: var(--ink); }
.molly-hero-side > img { width: 100%; min-height: 0; flex: 1; object-fit: cover; object-position: center 28%; }
.molly-hero figcaption, .molly-gallery figcaption {
  padding: 10px 12px;
  background: #16130f;
  color: #dcd1c1;
  font-size: 11px;
  letter-spacing: .06em;
}
.molly-hero-side .project-facts { margin: 0; padding: 18px 22px 22px; }
.molly-hero-side .project-facts div { grid-template-columns: 85px 1fr; }
.molly-story { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(23,20,16,.3); border-top: 0; }
.molly-story > div { padding: 25px; border-right: 1px solid rgba(23,20,16,.3); }
.molly-story > div:last-child { border-right: 0; }
.molly-story h4 { margin: 12px 0 8px; font-size: 18px; }
.molly-story p { margin-bottom: 0; color: #5e574d; font-size: 13px; line-height: 1.75; }
.molly-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 40px;
}
.molly-gallery figure img { width: 100%; height: 360px; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.molly-gallery figure:hover img { transform: scale(1.025); }
.molly-gallery figure, .molly-hero figure, .molly-hero-side > img { position: relative; }
.molly-gallery figure::after, .molly-hero figure::after {
  content: "点击查看大图 ↗";
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 6px 8px;
  background: rgba(8,6,6,.7);
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.molly-gallery figure:hover::after, .molly-hero figure:hover::after { opacity: 1; transform: none; }
.molly-gallery .gallery-tall { grid-row: span 2; }
.molly-gallery .gallery-tall img { height: 770px; }
.molly-gallery .gallery-wide { grid-column: span 2; }
.molly-gallery .gallery-poster { grid-column: span 2; }
.molly-gallery .gallery-poster img { object-position: center 32%; }

.cat-case {
  margin-top: 72px;
  padding: clamp(24px, 4vw, 58px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.1)),
    #efe4d2;
  color: #211812;
}
.cat-case .eyebrow,
.cat-story span,
.cat-note {
  color: #527d73;
}
.cat-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: end;
  margin-bottom: 34px;
}
.cat-heading h3 {
  max-width: 760px;
  margin: 0;
  color: #211812;
  font: 600 clamp(40px, 6vw, 84px)/1 "Playfair Display", "Noto Sans SC", serif;
}
.cat-heading > p {
  margin: 0;
  color: #6e5c4b;
  font-size: 14px;
  line-height: 1.85;
}
.cat-film-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 14px;
}
.cat-film,
.cat-role-card,
.cat-gallery figure {
  position: relative;
  overflow: hidden;
  background: #fff8ee;
  border: 1px solid rgba(33,24,18,.18);
}
.cat-film video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.cat-film span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(255,248,238,.48);
  background: rgba(33,24,18,.62);
  color: #fff2e3;
  font-size: 9px;
  letter-spacing: .12em;
  pointer-events: none;
}
.cat-role-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}
.cat-role-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}
.cat-role-card > div {
  padding: 22px;
  border-top: 1px solid rgba(33,24,18,.16);
}
.cat-role-card h4,
.cat-assets-copy h4 {
  margin: 0 0 12px;
  color: #211812;
  font: 600 clamp(24px, 2.3vw, 34px)/1.15 "Playfair Display", "Noto Sans SC", serif;
}
.cat-role-card p,
.cat-assets-copy p {
  margin-bottom: 0;
  color: #6e5c4b;
  line-height: 1.75;
}
.cat-story {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 14px;
  border: 1px solid rgba(33,24,18,.18);
  border-left: 0;
}
.cat-story > div {
  min-height: 190px;
  padding: 20px;
  border-left: 1px solid rgba(33,24,18,.18);
  background: rgba(255,248,238,.38);
}
.cat-story h4 {
  margin: 10px 0 8px;
  color: #211812;
  font-size: 18px;
}
.cat-story p {
  margin: 0;
  color: #6e5c4b;
  font-size: 13px;
  line-height: 1.7;
}
.cat-assets {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, .58fr);
  gap: 20px;
  margin-top: 34px;
}
.cat-assets-copy {
  align-self: start;
  position: sticky;
  top: 92px;
  padding: 24px 0;
}
.cat-assets .project-facts {
  border-color: rgba(33,24,18,.18);
}
.cat-assets .project-facts div {
  grid-template-columns: 82px 1fr;
  border-color: rgba(33,24,18,.18);
}
.cat-assets .project-facts dt {
  color: #527d73;
}
.cat-assets .project-facts dd {
  color: #211812;
}
.cat-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cat-gallery figure {
  margin: 0;
  cursor: zoom-in;
}
.cat-gallery figure.wide {
  grid-column: span 2;
}
.cat-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.cat-gallery figure:hover img {
  transform: scale(1.025);
}
.cat-gallery figcaption {
  padding: 10px 12px;
  background: #211812;
  color: #fff2e3;
  font-size: 11px;
  letter-spacing: .06em;
}

.experience-section {
  padding: clamp(70px, 9vw, 132px) clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 18%, rgba(29,111,115,.16), transparent 26%),
    linear-gradient(180deg, #090707, #0d0908);
}
.experience-intro {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(30px, 7vw, 110px);
  align-items: end;
  margin-bottom: 46px;
}
.experience-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -12px; }
.experience-intro h2, .results-copy h2 {
  max-width: 700px;
  margin: 0;
  color: var(--gold-light);
  font: 600 clamp(36px, 4.6vw, 66px)/1.12 "Playfair Display", "Noto Sans SC", serif;
}
.experience-intro > p:last-child, .results-copy > p:last-child { margin: 0; color: #d8c8bd; line-height: 1.8; }
.production-board { display: grid; grid-template-columns: 1.25fr .75fr; border: 1px solid var(--line); }
.production-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 72px);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(29,111,115,.1), transparent 43%),
    rgba(255,255,255,.02);
}
.production-topline { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 38px; color: #d5c7bd; font-size: 11px; }
.production-topline span { color: #77b8b8; font-weight: 700; letter-spacing: .1em; }
.production-main h3, .agent-experiment h3 {
  max-width: 660px;
  margin-bottom: 20px;
  color: var(--gold-light);
  font: 600 clamp(30px, 3.5vw, 52px)/1.13 "Playfair Display", "Noto Sans SC", serif;
}
.production-main > p:not(.eyebrow), .agent-experiment > p { color: #d8c8bd; line-height: 1.85; }
.production-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 32px; }
.production-metrics div { padding: 14px; border: 1px solid var(--line); }
.production-metrics strong { display: block; margin-bottom: 6px; color: #9bd0cf; font-size: 16px; }
.production-metrics span { color: #d2c3b9; font-size: 10px; line-height: 1.5; }
.production-side { display: grid; grid-template-rows: repeat(3, 1fr); }
.production-side article { padding: 25px; border-bottom: 1px solid var(--line); }
.production-side article:last-child { border-bottom: 0; }
.production-side span { color: #77b8b8; font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.production-side h3 { margin: 12px 0 8px; color: var(--gold-light); font-size: 18px; }
.production-side p { margin: 0; color: #d2c3b9; font-size: 12px; line-height: 1.7; }
.agent-experiment {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px 60px;
  margin-top: 18px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.agent-experiment h3 { margin: 0; font-size: clamp(28px, 3vw, 42px); }
.agent-experiment > p { margin: 0; }
.agent-flow { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 23px; border-top: 1px solid var(--line); }
.agent-flow span { padding: 7px 9px; border: 1px solid rgba(119,184,184,.32); color: #9bd0cf; font-size: 10px; }
.agent-flow i { color: var(--gold); font-style: normal; }

.capabilities-section { background: var(--paper); color: #17100e; }
.capabilities-section .eyebrow, .capabilities-section .capability-list span, .capabilities-section .capability-list b { color: var(--wine); }
.capabilities-section .section-head > p { color: #695c56; }
.capability-list { border-top: 1px solid rgba(20,12,10,.35); }
.capability-list article {
  display: grid;
  grid-template-columns: 70px 1fr 1.15fr .8fr;
  gap: 24px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid rgba(20,12,10,.3);
  transition: padding .3s, background .3s;
}
.capability-list article:hover { padding-left: 16px; background: rgba(102,27,32,.045); }
.capability-list span { font: 600 30px "Playfair Display", serif; }
.capability-list h3 { margin: 0; font-size: 22px; }
.capability-list p { margin: 0; color: #665954; font-size: 13px; line-height: 1.7; }
.capability-list b { text-align: right; font-size: 9px; }

.process-section { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.process-visual { position: relative; min-height: 780px; overflow: hidden; }
.process-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,6,6,.9)); }
.process-visual img { width: 100%; height: 100%; object-fit: cover; }
.process-visual blockquote {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 5vw, 70px);
  right: clamp(22px, 5vw, 70px);
  bottom: 44px;
  margin-bottom: 0;
  color: var(--gold-light);
  font: italic 600 clamp(28px, 3vw, 44px)/1.25 "Playfair Display", serif;
}
.process-copy { padding: clamp(55px, 8vw, 110px) clamp(24px, 6vw, 90px); background: radial-gradient(circle at 10% 80%, rgba(102,27,32,.32), transparent 34%); }
.process-copy ol { margin: 48px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-copy li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.process-copy li > span { color: var(--gold); font: 600 24px "Playfair Display", serif; }
.process-copy h3 { margin-bottom: 6px; }
.process-copy li p { margin-bottom: 0; color: #d8c8bd; font-size: 13px; line-height: 1.7; }

.results-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(70px, 9vw, 132px) clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: var(--wine);
}
.results-copy h2 { color: var(--ink); font-size: clamp(36px, 4.2vw, 60px); }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.3); border-left: 1px solid rgba(255,255,255,.3); }
.results-grid article { min-height: 190px; padding: 24px; border-right: 1px solid rgba(255,255,255,.3); border-bottom: 1px solid rgba(255,255,255,.3); }
.results-grid strong { display: block; margin-bottom: 6px; color: var(--gold-light); font: 600 clamp(38px, 4vw, 60px)/1 "Playfair Display", serif; }
.results-grid span { display: block; color: var(--ink); font-size: 13px; font-weight: 700; }
.results-grid p { margin: 25px 0 0; color: rgba(247,238,232,.62); font-size: 11px; }

.about-section { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(40px, 8vw, 130px); background: #0c0807; }
.about-title h2 { color: var(--gold-light); }
.about-copy p { color: #decec3; font-size: 16px; line-height: 1.9; }
.experience-list { margin-top: 34px; border-top: 1px solid var(--line); }
.experience-list article { display: grid; grid-template-columns: 92px 1fr; gap: 7px 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.experience-list span { grid-row: span 2; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.experience-list strong { color: var(--gold-light); font-size: 14px; }
.experience-list p { margin: 0; font-size: 12px; line-height: 1.7; }
.tool-line { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.tool-line span { padding: 7px 10px; border: 1px solid var(--line); color: var(--gold); font-size: 11px; }

.contact-section {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(78px, 10vw, 150px) clamp(20px, 5vw, 76px) 40px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background:
    linear-gradient(90deg, rgba(6,5,5,.98) 0%, rgba(6,5,5,.88) 46%, rgba(6,5,5,.36) 74%, rgba(6,5,5,.32) 100%),
    linear-gradient(0deg, rgba(6,5,5,.76), transparent 52%),
    url("assets/images/contact-studio.webp") center / cover no-repeat;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 40%, rgba(31,122,128,.16), transparent 27%),
    linear-gradient(115deg, transparent 44%, rgba(217,162,126,.1) 54%, transparent 64%);
  mix-blend-mode: screen;
  animation: contactLight 8s ease-in-out infinite alternate;
}
.contact-section > * { position: relative; z-index: 1; max-width: 1050px; }
.contact-section h2 { max-width: 850px; font-size: clamp(48px, 6vw, 88px); }
.contact-section h2 em { color: var(--gold-light); }
.contact-section .button { border-color: rgba(255,255,255,.35); }
.contact-meta { width: 100%; max-width: none; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 90px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.32); color: rgba(255,255,255,.86); font-size: 12px; }
@keyframes contactLight {
  from { opacity: .55; transform: translate3d(-1%,0,0); }
  to { opacity: 1; transform: translate3d(1%,0,0); }
}
footer { display: flex; justify-content: space-between; padding: 22px clamp(20px,5vw,76px); color: #d2c3b9; font-size: 12px; }

.narrative-version .hero h1 { max-width: 790px; font-size: clamp(48px, 5.7vw, 88px); }
.narrative-version .intro-heading h2,
.narrative-version .experience-intro h2,
.narrative-version .results-copy h2,
.narrative-version .about-title h2 { max-width: 920px; font-size: clamp(36px, 4.5vw, 68px); }
.narrative-version .contact-section h2 { max-width: 1040px; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-on-scroll.visible { opacity: 1; transform: none; }
.molly-case.reveal-on-scroll,
.project.reveal-on-scroll {
  opacity: 1;
  transform: none;
}
.molly-case,
.molly-case .molly-heading,
.molly-case .molly-hero,
.molly-case .molly-story,
.molly-case .molly-gallery {
  opacity: 1 !important;
  transform: none !important;
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  background: rgba(8, 6, 6, .96);
  backdrop-filter: blur(18px);
}
.case-modal.open { display: block; }
.case-close {
  position: fixed;
  z-index: 3;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(8,6,6,.8);
  color: var(--ink);
  font-size: 28px;
  cursor: pointer;
}
.case-close:hover { background: var(--gold); color: var(--black); }
.case-modal-scroll { height: 100%; overflow-y: auto; padding: clamp(70px, 9vw, 125px) clamp(20px, 7vw, 110px); }
.case-modal-head { max-width: 920px; margin-bottom: 46px; }
.case-modal-head h2 {
  margin-bottom: 20px;
  color: var(--gold-light);
  font: 600 clamp(42px, 6vw, 88px)/1.05 "Playfair Display", "Noto Sans SC", serif;
}
.case-modal-head > p:not(.eyebrow) { max-width: 720px; color: var(--muted); line-height: 1.85; }
.case-modal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.case-modal-tags span { padding: 7px 9px; border: 1px solid var(--line); color: var(--gold); font-size: 10px; letter-spacing: .1em; }
.case-modal-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 15px; max-width: 1500px; }
.case-modal-gallery figure { grid-column: span 4; margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.case-modal-gallery figure.wide { grid-column: span 8; }
.case-modal-gallery figure.full { grid-column: 1 / -1; }
.case-modal-gallery figure.tall { grid-column: span 3; }
.case-modal-gallery img { width: 100%; height: 100%; max-height: 760px; object-fit: cover; }
.case-modal-gallery figure.full img { height: auto; max-height: none; }
.case-modal-gallery figcaption { padding: 11px 13px; color: var(--muted); font-size: 11px; letter-spacing: .05em; }

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  place-items: center;
  padding: 70px clamp(55px, 7vw, 115px);
  background: rgba(5,4,4,.96);
  backdrop-filter: blur(22px);
}
.image-lightbox.open { display: grid; }
.image-lightbox figure {
  max-width: min(1420px, 88vw);
  max-height: calc(100vh - 110px);
  display: grid;
  place-items: center;
  margin: 0;
}
.image-lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 155px);
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.image-lightbox figcaption { padding-top: 13px; color: var(--muted); font-size: 12px; letter-spacing: .06em; }
.lightbox-close, .lightbox-nav {
  position: fixed;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(8,6,6,.78);
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--gold); color: var(--black); }
.lightbox-close { top: 18px; right: 22px; width: 48px; height: 48px; font-size: 28px; }
.lightbox-nav { top: 50%; width: 48px; height: 64px; transform: translateY(-50%); font-size: 22px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-count { position: fixed; left: 22px; top: 24px; color: var(--gold); font: 12px "Noto Sans SC", sans-serif; letter-spacing: .12em; }

body.theme-editorial {
  background: #f2eadf;
  color: #201711;
}
body.theme-editorial .site-header {
  border-bottom-color: rgba(32,23,17,.16);
  background: rgba(242,234,223,.9);
}
body.theme-editorial nav,
body.theme-editorial .hero-intro,
body.theme-editorial .intro-note,
body.theme-editorial .section-head > p {
  color: #66594d;
}
body.theme-editorial .brand strong,
body.theme-editorial .hero h1,
body.theme-editorial .intro-heading h2,
body.theme-editorial .section-head h2 {
  color: #201711;
}
body.theme-editorial .hero {
  min-height: 760px;
  border-bottom-color: rgba(32,23,17,.16);
  background: #f2eadf;
}
body.theme-editorial .hero::before {
  background:
    linear-gradient(90deg, rgba(242,234,223,.98) 0%, rgba(242,234,223,.88) 36%, rgba(242,234,223,.25) 62%, rgba(242,234,223,.03) 100%),
    linear-gradient(0deg, rgba(242,234,223,.58), transparent 38%);
}
body.theme-editorial .hero h1 span,
body.theme-editorial .intro-heading h2 span {
  color: #7a3e37;
}
body.theme-editorial .hero-label {
  background: rgba(242,234,223,.78);
  color: #201711;
  border-color: rgba(32,23,17,.2);
}
body.theme-editorial .section,
body.theme-editorial .work-section {
  background: #f2eadf;
  border-color: rgba(32,23,17,.16);
}
body.theme-editorial .intro-section {
  background:
    radial-gradient(circle at 88% 24%, rgba(82,125,115,.16), transparent 24%),
    #f2eadf;
}
body.theme-editorial .project-featured,
body.theme-editorial .final-film,
body.theme-editorial .project-card,
body.theme-editorial .module-heading {
  background: #fff7ed;
  border-color: rgba(32,23,17,.17);
}
body.theme-editorial .project-copy h3,
body.theme-editorial .project-card h3,
body.theme-editorial .final-film-head h4,
body.theme-editorial .module-heading h3 {
  color: #201711;
}
body.theme-editorial .project-lead,
body.theme-editorial .project-card p,
body.theme-editorial .final-film-head > p,
body.theme-editorial .module-heading > p:last-child {
  color: #66594d;
}
body.theme-editorial .project-facts dd {
  color: #201711;
}
body.theme-editorial .experience-section,
body.theme-editorial .process-section,
body.theme-editorial .results-section,
body.theme-editorial .about-section {
  background: #efe7dc;
  color: #201711;
}

body.theme-warm {
  --apple-bg: #f5f5f7;
  --apple-surface: #ffffff;
  --apple-surface-soft: #fbfbfd;
  --apple-text: #1d1d1f;
  --apple-muted: #424245;
  --apple-line: rgba(29,29,31,.22);
  --apple-blue: #0071e3;
  --apple-teal: #4f8f8b;
  background: var(--apple-bg);
  color: var(--apple-text);
}
body.theme-warm .site-header {
  border-bottom-color: rgba(29,29,31,.14);
  background: rgba(251,251,253,.86);
  color: var(--apple-text);
  backdrop-filter: saturate(180%) blur(22px);
}
body.theme-warm .brand strong,
body.theme-warm nav a:hover,
body.theme-warm .nav-cta {
  color: var(--apple-text);
}
body.theme-warm .brand span,
body.theme-warm nav {
  color: rgba(29,29,31,.82);
}
body.theme-warm .version-switch {
  border-color: rgba(0,113,227,.38);
  color: #0057b8;
  background: rgba(255,255,255,.82);
}
body.theme-warm .nav-cta {
  border-color: rgba(29,29,31,.28);
  background: rgba(255,255,255,.86);
}
body.theme-warm .hero::before {
  background:
    linear-gradient(90deg, rgba(4,4,6,.92) 0%, rgba(4,4,6,.78) 35%, rgba(4,4,6,.22) 63%, rgba(4,4,6,.04) 100%),
    radial-gradient(circle at 78% 58%, rgba(255,255,255,.11), transparent 30%),
    linear-gradient(0deg, rgba(4,4,6,.48), transparent 38%);
}
body.theme-warm .hero {
  border-bottom-color: var(--apple-line);
}
body.theme-warm .hero h1,
body.theme-warm .hero h1 span {
  color: #f5f5f7;
}
body.theme-warm .hero-intro,
body.theme-warm .availability,
body.theme-warm .hero-label strong {
  color: rgba(245,245,247,.9);
}
body.theme-warm .eyebrow,
body.theme-warm .section-number,
body.theme-warm .project-facts dt,
body.theme-warm .tags,
body.theme-warm .capability-list b,
body.theme-warm .title-note,
body.theme-warm .project-card p.title-note,
body.theme-warm .molly-heading p.title-note,
body.theme-warm .production-main p.title-note {
  color: var(--apple-blue);
}
body.theme-warm .button.primary {
  border-color: #f5f5f7;
  background: #f5f5f7;
  color: #1d1d1f;
}
body.theme-warm .button:not(.primary) {
  border-color: rgba(245,245,247,.46);
  background: rgba(255,255,255,.12);
  color: #f5f5f7;
}
body.theme-warm .hero-label {
  border-color: rgba(255,255,255,.36);
  background: rgba(0,0,0,.28);
}
body.theme-warm .hero-label span {
  color: rgba(245,245,247,.82);
}
body.theme-warm .proof-strip {
  border-color: var(--apple-line);
  background: var(--apple-surface);
  color: var(--apple-text);
}
body.theme-warm .proof-strip article {
  border-color: var(--apple-line);
}
body.theme-warm .proof-strip strong {
  color: var(--apple-text);
}
body.theme-warm .section,
body.theme-warm .intro-section,
body.theme-warm .work-section,
body.theme-warm .results-section,
body.theme-warm .about-section {
  border-color: var(--apple-line);
  background: var(--apple-bg);
  color: var(--apple-text);
}
body.theme-warm .intro-heading h2,
body.theme-warm .section-head h2,
body.theme-warm .process-copy h2,
body.theme-warm .about-title h2 {
  color: var(--apple-text);
}
body.theme-warm .intro-heading h2 span {
  color: var(--apple-blue);
}
body.theme-warm .intro-note,
body.theme-warm .section-head > p,
body.theme-warm .project-lead,
body.theme-warm .project-card p,
body.theme-warm .module-heading > p:last-child,
body.theme-warm .final-film-head > p {
  color: var(--apple-muted);
}
body.theme-warm .project-featured,
body.theme-warm .final-film,
body.theme-warm .module-heading {
  border-color: var(--apple-line);
  background: var(--apple-surface);
  box-shadow: 0 24px 70px rgba(29,29,31,.08);
}
body.theme-warm .project-copy h3,
body.theme-warm .project-card h3,
body.theme-warm .module-heading h3,
body.theme-warm .final-film-head h4 {
  color: var(--apple-text);
}
body.theme-warm .project-nature,
body.theme-warm .tags span,
body.theme-warm .project-card,
body.theme-warm .card-open,
body.theme-warm .project-facts,
body.theme-warm .project-facts div {
  border-color: var(--apple-line);
}
body.theme-warm .project-facts dd {
  color: var(--apple-text);
}
body.theme-warm .text-link,
body.theme-warm .card-open {
  color: var(--apple-blue);
}
body.theme-warm .project-grid {
  gap: 24px;
}
body.theme-warm .project-card {
  padding: 18px;
  background: var(--apple-surface);
  box-shadow: 0 18px 50px rgba(29,29,31,.06);
}
body.theme-warm .card-image {
  margin-bottom: 20px;
}
body.theme-warm .work-section,
body.theme-warm .experience-section {
  background:
    radial-gradient(circle at 16% 10%, rgba(0,113,227,.08), transparent 28%),
    var(--apple-bg);
}
body.theme-warm .cat-case {
  margin-left: clamp(-18px, -2vw, -8px);
  margin-right: clamp(-18px, -2vw, -8px);
  background:
    radial-gradient(circle at 78% 18%, rgba(0,113,227,.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #f5f5f7);
  box-shadow: 0 24px 80px rgba(29,29,31,.08);
}
body.theme-warm .cat-heading h3,
body.theme-warm .cat-role-card h4,
body.theme-warm .cat-assets-copy h4,
body.theme-warm .cat-story h4 {
  color: var(--apple-text);
}
body.theme-warm .cat-case .eyebrow,
body.theme-warm .cat-story span,
body.theme-warm .cat-note,
body.theme-warm .cat-assets .project-facts dt {
  color: var(--apple-teal);
}
body.theme-warm .cat-heading > p,
body.theme-warm .cat-role-card p,
body.theme-warm .cat-assets-copy p,
body.theme-warm .cat-story p {
  color: var(--apple-muted);
}
body.theme-warm .cat-film,
body.theme-warm .cat-role-card,
body.theme-warm .cat-gallery figure,
body.theme-warm .cat-story,
body.theme-warm .cat-story > div,
body.theme-warm .cat-assets .project-facts,
body.theme-warm .cat-assets .project-facts div {
  border-color: var(--apple-line);
}
body.theme-warm .cat-role-card,
body.theme-warm .cat-gallery figure,
body.theme-warm .cat-story > div {
  background: rgba(255,255,255,.72);
}
body.theme-warm .molly-summary p,
body.theme-warm .molly-story p {
  color: #34322f;
}
body.theme-warm .molly-hero figcaption,
body.theme-warm .molly-gallery figcaption {
  color: #f4eee6;
}
body.theme-warm .production-main > p:not(.eyebrow),
body.theme-warm .agent-experiment > p,
body.theme-warm .production-side p,
body.theme-warm .process-copy li p,
body.theme-warm .about-copy p,
body.theme-warm .experience-intro > p:last-child,
body.theme-warm .results-copy > p:last-child {
  color: #3f3f42;
}
body.theme-warm .production-topline,
body.theme-warm .production-metrics span,
body.theme-warm footer {
  color: #4d4d50;
}
body.theme-warm .contact-meta {
  color: rgba(255,255,255,.92);
}

body.theme-studio {
  --studio-bg: #f4f1ea;
  --studio-ink: #111111;
  --studio-muted: #63605a;
  --studio-soft: #fffdf7;
  --studio-line: rgba(17,17,17,.16);
  --studio-blue: #175cff;
  --studio-green: #7b8f74;
  --studio-orange: #e8753f;
  background: var(--studio-bg);
  color: var(--studio-ink);
}
body.theme-studio .grain { opacity: .06; }
body.theme-studio .site-header {
  height: 68px;
  border-bottom-color: var(--studio-line);
  background: rgba(244,241,234,.82);
  color: var(--studio-ink);
  backdrop-filter: blur(20px);
}
body.theme-studio .brand strong,
body.theme-studio nav a:hover,
body.theme-studio .nav-cta {
  color: var(--studio-ink);
}
body.theme-studio .brand span,
body.theme-studio nav {
  color: var(--studio-muted);
}
body.theme-studio .version-switch {
  border-color: var(--studio-line);
  color: var(--studio-blue);
  background: rgba(255,255,255,.42);
}
body.theme-studio .nav-cta {
  border-color: var(--studio-ink);
  background: var(--studio-ink);
  color: var(--studio-bg);
}
body.theme-studio .eyebrow,
body.theme-studio .section-number {
  color: var(--studio-blue);
  letter-spacing: .16em;
}
body.theme-studio .button {
  min-height: 52px;
  border-color: var(--studio-line);
  background: transparent;
  color: var(--studio-ink);
}
body.theme-studio .button.primary {
  border-color: var(--studio-ink);
  background: var(--studio-ink);
  color: var(--studio-bg);
}
body.theme-studio main {
  background:
    radial-gradient(circle at var(--studio-mouse-x, 70%) var(--studio-mouse-y, 20%), rgba(23,92,255,.07), transparent 24%),
    var(--studio-bg);
}
.theme-studio [id] {
  scroll-margin-top: 92px;
}
.theme-studio .reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.theme-studio .reveal-on-scroll.visible {
  opacity: 1;
  transform: none;
}
.studio-hero {
  min-height: calc(100svh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  grid-template-rows: 1fr auto;
  gap: clamp(22px, 3vw, 42px);
  padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 74px) 0;
  border-bottom: 1px solid var(--studio-line);
  overflow: hidden;
}
.studio-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1120px;
}
.studio-hero-copy h1 {
  max-width: 980px;
  margin-bottom: 24px;
  color: var(--studio-ink);
  font: 900 clamp(58px, 8.6vw, 132px)/.92 "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}
.studio-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--studio-muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.8;
}
.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.studio-hero-aside {
  align-self: center;
  display: grid;
  gap: 16px;
  padding: 22px 0 22px 28px;
  border-left: 1px solid var(--studio-line);
}
.studio-hero-aside span,
.studio-work-copy span,
.studio-work-card > span,
.studio-process li span,
.studio-system-grid span {
  color: var(--studio-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.studio-hero-aside strong {
  font-size: 22px;
  line-height: 1.35;
}
.studio-hero-aside p {
  margin: 0;
  color: var(--studio-muted);
  line-height: 1.7;
}
.studio-strip {
  grid-column: 1 / -1;
  margin: clamp(22px, 4vw, 54px) calc(clamp(20px, 5vw, 74px) * -1) 0;
  padding: 18px 0;
  border-top: 1px solid var(--studio-line);
  background: #111;
  overflow: hidden;
}
.studio-strip-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: studioMarquee 34s linear infinite;
}
.studio-strip img {
  width: min(36vw, 430px);
  height: 260px;
  object-fit: cover;
  filter: saturate(.95);
}
@keyframes studioMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}
.studio-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--studio-line);
  background: var(--studio-soft);
}
.studio-proof article {
  min-height: 132px;
  padding: 24px clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--studio-line);
}
.studio-proof article:last-child { border-right: 0; }
.studio-proof strong {
  display: block;
  margin-bottom: 10px;
  color: var(--studio-ink);
  font: 900 clamp(34px, 4vw, 58px)/1 "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}
.studio-proof span {
  color: var(--studio-muted);
  font-size: 13px;
  font-weight: 700;
}
.studio-section,
.studio-gallery-section,
.studio-process,
.studio-about,
.studio-contact {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 74px);
  border-bottom: 1px solid var(--studio-line);
}
.studio-position {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(26px, 5vw, 76px);
  align-items: end;
}
.studio-position h2,
.studio-section-head h2,
.studio-gallery-copy h2,
.studio-process h2,
.studio-about h2,
.studio-contact h2 {
  margin: 0;
  color: var(--studio-ink);
  font: 900 clamp(38px, 5.3vw, 86px)/1.02 "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}
.studio-position > p:last-child,
.studio-section-head p:last-child,
.studio-about p,
.studio-contact-row span {
  margin: 0;
  color: var(--studio-muted);
  line-height: 1.85;
}
.studio-section-head {
  max-width: 1060px;
  margin-bottom: 42px;
}
.studio-section-head h2 { margin-bottom: 18px; }
.studio-section-head p:last-child { max-width: 620px; }
.studio-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.studio-work-card {
  background: var(--studio-soft);
  border: 1px solid var(--studio-line);
  overflow: hidden;
}
.studio-work-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, .78fr);
}
.studio-work-feature.reverse {
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
}
.studio-work-feature.reverse .studio-work-media { order: 2; }
.studio-work-media {
  background: #000;
}
.studio-work-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.studio-work-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}
.studio-work-copy h3,
.studio-work-card.compact h3 {
  margin: 13px 0 14px;
  color: var(--studio-ink);
  font: 900 clamp(30px, 3.6vw, 58px)/1 "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}
.studio-work-copy p,
.studio-work-card.compact p {
  margin: 0;
  color: var(--studio-muted);
  line-height: 1.8;
}
.studio-work-copy dl {
  margin: 26px 0 0;
  border-top: 1px solid var(--studio-line);
}
.studio-work-copy dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--studio-line);
}
.studio-work-copy dt {
  margin: 0;
  color: var(--studio-blue);
  font-size: 12px;
  font-weight: 800;
}
.studio-work-copy dd {
  margin: 0;
  color: var(--studio-ink);
  font-size: 13px;
  line-height: 1.6;
}
.studio-work-card.compact {
  padding-bottom: 22px;
}
.studio-work-card.compact img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 22px;
}
.studio-work-card.compact > span,
.studio-work-card.compact h3,
.studio-work-card.compact p {
  display: block;
  padding: 0 22px;
}
.studio-work-card.compact h3 {
  font-size: clamp(22px, 2.2vw, 32px);
}
.studio-gallery-section {
  display: grid;
  grid-template-columns: minmax(260px, .34fr) minmax(0, .66fr);
  gap: clamp(28px, 5vw, 74px);
  background: #111;
  color: var(--studio-bg);
}
.studio-gallery-copy {
  position: sticky;
  top: 92px;
  align-self: start;
}
.studio-gallery-copy h2 { color: var(--studio-bg); }
.studio-gallery-copy .eyebrow { color: #8fb0ff; }
.studio-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.studio-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #1d1d1d;
  cursor: zoom-in;
}
.studio-gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.studio-gallery figure:hover img { transform: scale(1.025); }
.studio-gallery figcaption {
  padding: 10px 12px;
  color: rgba(244,241,234,.8);
  font-size: 12px;
}
.studio-system {
  background:
    radial-gradient(circle at 88% 12%, rgba(23,92,255,.1), transparent 22%),
    var(--studio-bg);
}
.studio-system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--studio-line);
  border-left: 1px solid var(--studio-line);
}
.studio-system-grid article {
  min-height: 250px;
  padding: 24px;
  border-right: 1px solid var(--studio-line);
  border-bottom: 1px solid var(--studio-line);
}
.studio-system-grid h3 {
  margin: 34px 0 12px;
  color: var(--studio-ink);
  font-size: clamp(22px, 2vw, 30px);
}
.studio-system-grid p {
  margin: 0;
  color: var(--studio-muted);
  line-height: 1.75;
}
.studio-process {
  background: var(--studio-soft);
}
.studio-process h2 {
  margin-bottom: 34px;
}
.studio-process ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.studio-process li {
  min-height: 218px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 42%);
  overflow: hidden;
  border: 1px solid var(--studio-line);
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}
.studio-process li:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(17,17,17,.08);
}
.process-step-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
}
.studio-process strong {
  margin-top: auto;
  color: var(--studio-ink);
  font-size: clamp(24px, 2.2vw, 34px);
}
.studio-process p {
  margin: 10px 0 0;
  color: var(--studio-muted);
  font-size: 14px;
  line-height: 1.7;
}
.studio-process figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--studio-line);
  background: #111;
  cursor: zoom-in;
}
.studio-process figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 218px;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.studio-process li:hover figure img {
  transform: scale(1.045);
}
.studio-process figcaption {
  position: absolute;
  inset: auto 10px 10px;
  padding: 7px 9px;
  background: rgba(17,17,17,.76);
  color: #fff;
  font-size: 10px;
  line-height: 1.35;
}
.studio-about {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(28px, 6vw, 100px);
  align-items: start;
}
.studio-about p + p { margin-top: 18px; }

/* Editorial text blocks */
.editorial-copy-block {
  position: relative;
}
.studio-position.editorial-copy-block,
.game-profile-head.editorial-copy-block,
.studio-about.editorial-copy-block {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(360px, .82fr);
  gap: clamp(34px, 7vw, 118px);
  align-items: center;
}
.studio-position.editorial-copy-block {
  grid-template-columns: 86px minmax(420px, 1fr) minmax(360px, .72fr);
  padding-top: clamp(82px, 10vw, 150px);
  padding-bottom: clamp(82px, 10vw, 150px);
}
.editorial-side-index {
  align-self: center;
  color: var(--studio-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.studio-position.editorial-copy-block .editorial-title {
  grid-column: 2;
}
.studio-position.editorial-copy-block .editorial-copy {
  grid-column: 3;
}
.editorial-title {
  min-width: 0;
}
.editorial-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.editorial-kicker::after {
  content: "";
  width: 54px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.editorial-title h2 {
  margin: 0;
  max-width: 820px;
  color: var(--studio-ink);
  font: 900 clamp(44px, 5vw, 82px)/.98 "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}
.editorial-title h2 span {
  display: block;
}
.editorial-copy {
  min-width: 0;
  padding-left: clamp(20px, 3vw, 42px);
  border-left: 1px solid rgba(17,17,17,.16);
}
.editorial-copy p {
  margin: 0;
  color: var(--studio-muted);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.95;
}
.editorial-copy p + p {
  margin-top: 18px;
}
.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.editorial-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(17,17,17,.18);
  background: rgba(255,255,255,.42);
  color: var(--studio-ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.game-profile-head.editorial-copy-block {
  grid-template-columns: minmax(360px, .9fr) minmax(380px, .9fr);
}
.game-profile-head.editorial-copy-block .memory-demo-button {
  grid-column: auto;
  justify-self: start;
  margin-top: 24px;
}
.studio-about.editorial-copy-block {
  align-items: start;
}
.studio-about.editorial-copy-block .editorial-title h2 {
  max-width: 720px;
}
.studio-contact {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(17,17,17,.92), rgba(17,17,17,.62)),
    url("assets/images/contact-studio.webp") center / cover no-repeat;
  color: var(--studio-bg);
}
.studio-contact h2 {
  max-width: 960px;
  color: var(--studio-bg);
}
.studio-contact .eyebrow { color: #8fb0ff; }
.studio-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 34px;
}
.studio-contact .button {
  border-color: rgba(244,241,234,.28);
  color: var(--studio-bg);
}
.studio-contact .button.primary {
  border-color: var(--studio-bg);
  background: var(--studio-bg);
  color: var(--studio-ink);
}
.studio-contact-row span {
  color: rgba(244,241,234,.72);
  font-size: 13px;
}
.studio-hero-v2 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - 68px);
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr;
  align-items: center;
  padding-bottom: clamp(48px, 6vw, 92px);
  background: #080605;
  color: #f6efe6;
}
.studio-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #050403;
  scroll-margin-top: 92px;
}
.studio-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: .78;
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.02);
  animation: studioHeroVideoDrift 18s ease-in-out infinite alternate;
}
.studio-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,4,3,.92) 0%, rgba(5,4,3,.78) 36%, rgba(5,4,3,.36) 68%, rgba(5,4,3,.18) 100%),
    linear-gradient(180deg, rgba(5,4,3,.42) 0%, rgba(5,4,3,.1) 42%, rgba(5,4,3,.78) 100%);
  pointer-events: none;
}
.studio-hero-v2 .studio-hero-copy {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.studio-profile-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 70px);
}
.studio-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #191a22;
  color: #b7ff4a;
  font-size: 28px;
}
.studio-profile-line strong {
  display: block;
  color: var(--studio-ink);
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.25;
}
.studio-profile-line p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
}
.studio-profile-line p span,
.studio-hero-v2 .studio-pill {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid var(--studio-line);
  border-radius: 9px;
  background: rgba(255,255,255,.42);
  color: var(--studio-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.studio-hero-v2 .studio-pill {
  margin-bottom: 22px;
  border: 0;
  background: #b7ff4a;
  color: #111;
  font-size: clamp(16px, 1.4vw, 22px);
}
.studio-hero-v2 h1 {
  max-width: 820px;
  font-size: clamp(54px, 6.2vw, 104px);
  line-height: 1.02;
  color: #fff7ec;
  transform: translate3d(var(--studio-title-x, 0), var(--studio-title-y, 0), 0);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.studio-hero-v2 .studio-hero-copy > p:not(.eyebrow):not(.studio-pill) {
  max-width: 620px;
  color: rgba(255,247,236,.76);
  font-size: clamp(17px, 1.5vw, 22px);
}
.studio-hero-eyebrow {
  margin: 0 0 18px;
  color: #efb484;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.studio-hero-v2 .studio-hero-copy {
  animation: studioHeroIntro .7s cubic-bezier(.16, 1, .3, 1) both;
}
.studio-hero-v2 h1 {
  max-width: 900px;
  font-size: clamp(68px, 8vw, 142px);
  line-height: .92;
}
.studio-hero-v2 h1 span {
  display: block;
  margin-top: 12px;
  color: rgba(255,247,236,.62);
  font-size: clamp(34px, 3.6vw, 62px);
  font-weight: 800;
  line-height: 1.08;
}
.studio-hero-role {
  max-width: 780px;
  margin: 26px 0 0;
  color: #fff3e6;
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 900;
  line-height: 1.28;
}
.studio-hero-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255,247,236,.78);
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.8;
}
.studio-skill-tags,
.studio-direction-tags {
  display: flex;
  flex-wrap: wrap;
  max-width: 780px;
  gap: 8px;
}
.studio-skill-tags { margin-top: 28px; }
.studio-direction-tags { margin-top: 10px; }
.studio-skill-tags span,
.studio-direction-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--studio-line);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  animation: studioTagIntro .5s cubic-bezier(.16, 1, .3, 1) both;
}
.studio-skill-tags span {
  background: rgba(255,247,236,.92);
  color: #111;
  border-color: rgba(255,247,236,.92);
}
.studio-direction-tags span {
  border-color: rgba(255,247,236,.22);
  background: rgba(12,9,7,.38);
  color: rgba(255,247,236,.82);
  backdrop-filter: blur(10px);
}
.studio-skill-tags span:nth-child(2) { animation-delay: .05s; }
.studio-skill-tags span:nth-child(3) { animation-delay: .1s; }
.studio-skill-tags span:nth-child(4) { animation-delay: .15s; }
.studio-skill-tags span:nth-child(5) { animation-delay: .2s; }
.studio-skill-tags span:nth-child(6) { animation-delay: .25s; }
.studio-direction-tags span:nth-child(1) { animation-delay: .3s; }
.studio-direction-tags span:nth-child(2) { animation-delay: .35s; }
.studio-direction-tags span:nth-child(3) { animation-delay: .4s; }
.studio-direction-tags span:nth-child(4) { animation-delay: .45s; }
.studio-job-note {
  margin: 22px 0 0;
  color: rgba(255,247,236,.86);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 850;
}
.studio-hero-actions {
  margin-top: 30px;
  gap: 12px;
}
.studio-hero-v2 .button {
  border-color: rgba(255,247,236,.42);
  background: rgba(20,15,12,.62);
  color: #fff7ec;
  backdrop-filter: blur(12px);
}
.studio-hero-v2 .button.primary {
  border-color: rgba(255,247,236,.95);
  background: rgba(255,247,236,.95);
  color: #111;
}
.studio-hero-v2 .button:hover {
  border-color: rgba(255,247,236,.72);
  background: rgba(255,247,236,.18);
  color: #fff7ec;
}
.studio-hero-v2 .button.primary:hover {
  background: #fff7ec;
  color: #111;
}
body.theme-studio .button.ghost {
  border-color: rgba(255,247,236,.32);
  background: rgba(12,9,7,.32);
  color: #fff7ec;
  backdrop-filter: blur(12px);
}
.studio-hero-v2 .studio-hero-actions .button,
.studio-hero-v2 .studio-hero-actions .button.primary,
.studio-hero-v2 .studio-hero-actions .button.ghost {
  border-color: rgba(255,247,236,.38);
  background: rgba(10,8,7,.72);
  color: #fff7ec;
  backdrop-filter: blur(12px);
}
.studio-hero-v2 .studio-hero-actions .button:hover,
.studio-hero-v2 .studio-hero-actions .button.primary:hover,
.studio-hero-v2 .studio-hero-actions .button.ghost:hover {
  border-color: rgba(255,247,236,.68);
  background: rgba(255,247,236,.14);
  color: #fff7ec;
}
.studio-hero-actions .button span {
  display: inline-block;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1);
}
.studio-hero-actions .button:hover span {
  transform: translate(4px, 4px);
}
@keyframes studioHeroIntro {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes studioTagIntro {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes studioHeroVideoDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -.8%, 0); }
}
.studio-project-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.studio-project-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(17,17,17,.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.48)),
    var(--studio-soft);
  color: var(--studio-ink);
  box-shadow: 0 18px 54px rgba(17,17,17,.055);
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease, border-color .28s ease, background .28s ease;
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
}
.studio-project-card:hover {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-6px);
  border-color: rgba(17,17,17,.26);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.62)),
    var(--studio-soft);
  box-shadow: 0 28px 82px rgba(17,17,17,.115);
}
.studio-project-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-bottom: 1px solid rgba(17,17,17,.1);
  transition: transform .8s cubic-bezier(.16,1,.3,1), filter .5s ease;
}
.studio-project-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
}
.studio-project-card span,
.studio-case-head > span {
  margin: 26px 28px 10px;
  color: var(--studio-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.studio-project-card h3 {
  margin: 0 28px 12px;
  color: var(--studio-ink);
  font: 900 clamp(30px, 3.2vw, 50px)/1.02 "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}
.studio-project-card p {
  margin: 0 28px 22px;
  color: var(--studio-muted);
  font-size: 16px;
  line-height: 1.72;
}
.studio-project-card .project-type {
  margin-bottom: 12px;
  color: var(--studio-ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 28px 22px;
}
.project-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 8px;
  border: 1px solid var(--studio-line);
  background: rgba(244,241,234,.5);
  color: #5c5850;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .02em;
}
.studio-project-card .project-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  margin: 0 28px 26px;
  padding: 12px 14px;
  border: 1px solid rgba(17,17,17,.14);
  border-radius: 6px;
  background: rgba(255,255,255,.54);
  color: var(--studio-ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.studio-project-card .project-cta i {
  font-style: normal;
  transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.studio-project-card .project-cta:hover,
.studio-project-card .project-cta:focus-visible {
  border-color: rgba(17,17,17,.26);
  background: rgba(17,17,17,.94);
  color: var(--studio-bg);
  outline: none;
}
.studio-project-card .project-cta:hover i,
.studio-project-card .project-cta:focus-visible i {
  transform: translate(5px, -2px);
}
.studio-case-detail {
  scroll-margin-top: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 52px);
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 74px);
  border-bottom: 1px solid var(--studio-line);
  background: #111;
  color: var(--studio-bg);
  min-height: auto;
}
.studio-case-light {
  background: var(--studio-soft);
  color: var(--studio-ink);
}
.studio-case-head {
  display: grid;
  grid-template-columns: minmax(360px, .86fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: end;
  max-width: 1480px;
  width: 100%;
  padding-bottom: clamp(24px, 4vw, 44px);
  border-bottom: 1px solid rgba(244,241,234,.16);
}
.studio-case-light .studio-case-head {
  border-bottom-color: var(--studio-line);
}
.studio-case-head > span {
  display: block;
  margin: 0 0 14px;
  color: #8fb0ff;
}
.studio-case-light .studio-case-head > span {
  color: var(--studio-blue);
}
.studio-project-card.studio-project-app {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  grid-template-rows: auto auto auto 1fr auto auto;
}
.studio-project-card.studio-project-app img {
  grid-row: 1 / 7;
  width: 100%;
  height: 100%;
  max-height: 470px;
  object-fit: cover;
  object-position: center 8%;
  border-right: 1px solid var(--studio-line);
  border-bottom: 0;
}
.studio-project-card.studio-project-app > span,
.studio-project-card.studio-project-app > h3,
.studio-project-card.studio-project-app > p,
.studio-project-card.studio-project-app > .project-tags,
.studio-project-card.studio-project-app > .project-cta {
  margin-left: 30px;
  margin-right: 30px;
}
.studio-project-card.studio-project-app > span { margin-top: 30px; }
.studio-case-head h2 {
  margin: 0 0 18px;
  max-width: 840px;
  color: inherit;
  font: 900 clamp(42px, 5vw, 78px)/1 "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}
.studio-case-head > p {
  margin: 36px 0 0;
  max-width: 680px;
  color: rgba(244,241,234,.68);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.85;
}
.studio-case-light .studio-case-head > p {
  color: var(--studio-muted);
}
.studio-case-head dl {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(18px, 3vw, 34px) 0 0;
  border-top: 1px solid rgba(244,241,234,.18);
}
.studio-case-light .studio-case-head dl {
  border-color: var(--studio-line);
}
.studio-case-head dl div {
  display: block;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(244,241,234,.18);
  border-right: 1px solid rgba(244,241,234,.18);
}
.studio-case-head dl div:first-child {
  padding-left: 0;
}
.studio-case-head dl div:last-child {
  padding-right: 0;
  border-right: 0;
}
.studio-case-light .studio-case-head dl div {
  border-color: var(--studio-line);
}
.studio-case-head dt {
  margin: 0;
  color: #8fb0ff;
  font-size: 13px;
  font-weight: 900;
}
.studio-case-light .studio-case-head dt {
  color: var(--studio-blue);
}
.studio-case-head dd {
  margin: 8px 0 0;
  color: rgba(244,241,234,.86);
  line-height: 1.65;
}
.studio-case-light .studio-case-head dd {
  color: var(--studio-ink);
}
.studio-case-media {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,.2);
  background: #000;
}
.studio-case-light .studio-case-media {
  border-color: var(--studio-line);
}
.studio-case-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.studio-case-gallery {
  grid-column: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: start;
}
.studio-case-gallery.large {
  grid-template-columns: repeat(2, 1fr);
}
.studio-case-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,.18);
  background: #1b1b1b;
  cursor: zoom-in;
}
.studio-case-light .studio-case-gallery figure {
  border-color: var(--studio-line);
  background: #fff;
}
.studio-case-gallery figure.wide {
  grid-column: span 2;
}
.studio-case-gallery figure::after {
  content: "点击查看大图 ↗";
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(17,17,17,.68);
  color: #fff;
  font-size: 10px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.studio-case-gallery figure:hover::after {
  opacity: 1;
  transform: none;
}
.studio-case-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.studio-case-gallery.large img {
  height: 360px;
}
.studio-case-gallery figure.wide img {
  height: 430px;
}
.studio-case-gallery figure:hover img {
  transform: scale(1.025);
}
.studio-case-gallery figcaption {
  padding: 10px 12px;
  color: rgba(244,241,234,.74);
  font-size: 12px;
}
.studio-case-light .studio-case-gallery figcaption {
  color: var(--studio-muted);
}
.studio-case-story {
  grid-column: auto;
  display: grid;
  gap: clamp(54px, 7vw, 96px);
  min-width: 0;
}
.studio-case-story .studio-case-gallery {
  grid-column: auto;
}
.case-story-intro,
.case-story-block {
  min-width: 0;
}
.case-story-intro {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(244,241,234,.18);
  background: rgba(255,255,255,.035);
}
.studio-case-light .case-story-intro {
  border-color: var(--studio-line);
  background: #f5f2ea;
}
.case-kicker {
  margin: 0 0 14px;
  color: #8fb0ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.studio-case-light .case-kicker {
  color: var(--studio-blue);
}
.case-story-intro h3,
.case-story-title h3 {
  margin: 0;
  color: inherit;
  font: 800 clamp(28px, 3vw, 48px)/1.18 "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}
.case-story-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 54px);
  margin-top: 28px;
}
.case-story-columns p,
.case-story-title > p,
.split-title > p,
.case-step-grid p {
  margin: 0;
  color: rgba(244,241,234,.7);
  font-size: 15px;
  line-height: 1.85;
}
.studio-case-light .case-story-columns p,
.studio-case-light .case-story-title > p,
.studio-case-light .split-title > p,
.studio-case-light .case-step-grid p {
  color: var(--studio-muted);
}
.case-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.case-keywords span {
  padding: 8px 11px;
  border: 1px solid rgba(244,241,234,.22);
  color: rgba(244,241,234,.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.studio-case-light .case-keywords span {
  border-color: var(--studio-line);
  color: var(--studio-ink);
}
.case-story-title {
  max-width: 780px;
  margin-bottom: 28px;
}
.case-story-title > p {
  margin-top: 18px;
  max-width: 680px;
}
.case-story-title.split-title {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, .85fr);
  gap: 38px;
  max-width: none;
  align-items: end;
}
.case-feature-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,.18);
  background: #080808;
  cursor: zoom-in;
}
.studio-case-light .case-feature-figure {
  border-color: var(--studio-line);
  background: #fff;
}
.case-feature-figure img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.case-feature-figure:hover img {
  transform: scale(1.015);
}
.case-feature-figure figcaption {
  padding: 12px 14px;
  color: rgba(244,241,234,.7);
  font-size: 12px;
}
.studio-case-light .case-feature-figure figcaption {
  color: var(--studio-muted);
}
.case-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 14px 0 28px;
  border-top: 1px solid rgba(244,241,234,.18);
  border-left: 1px solid rgba(244,241,234,.18);
}
.case-step-grid article {
  min-height: 190px;
  padding: 20px;
  border-right: 1px solid rgba(244,241,234,.18);
  border-bottom: 1px solid rgba(244,241,234,.18);
}
.studio-case-light .case-step-grid,
.studio-case-light .case-step-grid article {
  border-color: var(--studio-line);
}
.case-step-grid span {
  display: block;
  margin-bottom: 26px;
  color: #8fb0ff;
  font-size: 12px;
  font-weight: 900;
}
.studio-case-light .case-step-grid span {
  color: var(--studio-blue);
}
.case-step-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}
.case-shot-gallery,
.poster-story-gallery,
.packaging-story-gallery,
.ip-system-gallery,
.character-story-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.poster-story-gallery img,
.character-story-gallery img {
  height: 430px;
}
.packaging-story-gallery img,
.ip-system-gallery img {
  height: 340px;
}
.studio-case-gallery figcaption strong,
.studio-case-gallery figcaption span {
  display: block;
}
.studio-case-gallery figcaption strong {
  margin-bottom: 5px;
  color: inherit;
  font-size: 12px;
  letter-spacing: .04em;
}
.studio-case-gallery figcaption span {
  line-height: 1.55;
}
.case-quote {
  margin: 26px 0 0;
  padding: 24px 0 4px clamp(22px, 4vw, 52px);
  border-top: 1px solid rgba(244,241,234,.2);
  border-left: 4px solid #8fb0ff;
  color: rgba(244,241,234,.9);
  font: 600 clamp(19px, 2vw, 28px)/1.55 "Noto Sans SC", sans-serif;
}
.studio-case-light .case-quote {
  border-top-color: var(--studio-line);
  border-left-color: var(--studio-blue);
  color: var(--studio-ink);
}
.ip-case-story {
  gap: clamp(48px, 6vw, 82px);
}
.character-story-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cat-case-story {
  padding-top: 10px;
}
.cat-story-intro {
  background: #fff;
}
.cat-beat-grid article {
  background: rgba(255,255,255,.58);
}
.cat-character-gallery img {
  height: 360px;
  object-fit: cover;
  object-position: center;
}
.cat-character-gallery figure.wide img {
  height: 390px;
  object-fit: contain;
  background: #f7f2e8;
}
.cat-scene-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cat-scene-gallery img {
  height: 360px;
}
.cat-quote {
  border-left-color: var(--studio-blue);
  color: var(--studio-ink);
}
.fortune-case {
  background: #131311;
}
.fortune-case .studio-case-head > span,
.fortune-case .case-kicker {
  color: #d8a85c;
}
.fortune-demo-button {
  margin-top: 28px;
  border-color: rgba(244,241,234,.42);
  color: var(--studio-bg);
}
.fortune-demo-button:hover {
  border-color: #d8a85c;
  background: #d8a85c;
  color: #17130e;
}
.fortune-intro {
  background:
    linear-gradient(135deg, rgba(216,168,92,.1), transparent 46%),
    rgba(255,255,255,.035);
}
.fortune-home-figure {
  max-height: 760px;
  background: #e9dfca;
}
.fortune-home-figure img {
  height: 720px;
  object-fit: contain;
}
.fortune-ritual-section {
  align-items: start;
}
.fortune-ritual-cards {
  grid-column: 2;
  display: grid;
  gap: 18px;
}
.fortune-ritual-card {
  padding: 18px;
  border: 1px solid rgba(244,241,234,.18);
  background:
    linear-gradient(135deg, rgba(216,168,92,.12), transparent 34%),
    #1b1a17;
}
.fortune-ritual-card header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .9fr);
  gap: 16px 26px;
  align-items: end;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(244,241,234,.16);
}
.fortune-ritual-card header span {
  grid-column: 1 / -1;
  color: #d8a85c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.fortune-ritual-card h4 {
  margin: 0;
  color: var(--studio-bg);
  font: 850 clamp(30px, 3.8vw, 58px)/.98 "Noto Sans SC", sans-serif;
}
.fortune-ritual-card header p {
  margin: 0;
  color: rgba(244,241,234,.72);
  line-height: 1.75;
}
.fortune-card-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.fortune-card-flow figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,.15);
  background: #0f0f0d;
  cursor: zoom-in;
}
.fortune-card-flow img {
  width: 100%;
  height: clamp(340px, 34vw, 560px);
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .8s cubic-bezier(.16,1,.3,1);
}
.fortune-card-flow figure:hover img {
  transform: scale(1.025);
}
.fortune-card-flow figcaption {
  min-height: 76px;
  padding: 12px;
  color: rgba(244,241,234,.78);
  font-size: 12px;
  line-height: 1.55;
}
.fortune-card-flow figcaption span {
  display: block;
  margin-bottom: 5px;
  color: #d8a85c;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.fortune-card-note {
  margin: 16px 0 0;
  padding-left: 14px;
  border-left: 2px solid #d8a85c;
  color: rgba(244,241,234,.82);
  line-height: 1.8;
}
.fortune-flow-gallery,
.fortune-state-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fortune-ui-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fortune-ui-gallery img {
  height: 560px;
  object-fit: cover;
  object-position: center top;
}
.fortune-flow-gallery img,
.fortune-state-gallery img {
  height: 600px;
  object-fit: cover;
  object-position: center top;
}
.fortune-delivery {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 90px);
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid rgba(244,241,234,.18);
  background: #1b1a17;
}
.fortune-delivery h3 {
  margin: 0;
  color: var(--studio-bg);
  font: 800 clamp(30px, 3.2vw, 52px)/1.16 "Noto Sans SC", sans-serif;
}
.fortune-delivery-copy p {
  margin: 0 0 22px;
  color: rgba(244,241,234,.72);
  line-height: 1.85;
}
.fortune-delivery-copy ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(244,241,234,.18);
}
.fortune-delivery-copy li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(244,241,234,.18);
  color: rgba(244,241,234,.88);
}
.fortune-delivery-copy li::before {
  content: "↳";
  margin-right: 10px;
  color: #d8a85c;
}
.fortune-delivery .button.primary {
  border-color: #d8a85c;
  background: #d8a85c;
  color: #17130e;
}

@media (max-width: 1000px) {
  .hero { min-height: calc(100svh - 64px); }
  .hero-copy { width: 78%; }
  .hero-media { min-height: 100%; aspect-ratio: auto; }
  .hero-index { display: none; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip article:nth-child(2) { border-right: 0; }
  .proof-strip article:nth-child(-n+2) { border-bottom: 1px solid rgba(20,12,10,.24); }
  .intro-section, .about-section, .experience-intro, .results-section { grid-template-columns: 1fr; }
  .intro-note { max-width: 550px; }
  .project-featured, .process-section { grid-template-columns: 1fr; }
  .project-visual { min-height: auto; aspect-ratio: 4 / 3; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .module-heading { grid-template-columns: 1fr; align-items: start; }
  .project-grid .project-card:last-child { grid-column: 1 / -1; }
  .capability-list article { grid-template-columns: 60px 1fr; }
  .capability-list p, .capability-list b { grid-column: 2; text-align: left; }
  .process-visual { min-height: auto; aspect-ratio: 4 / 3; }
  .molly-heading, .molly-hero { grid-template-columns: 1fr; }
  .molly-hero-main img { height: auto; }
  .molly-hero-side > img { max-height: 700px; }
  .molly-gallery { grid-template-columns: repeat(2, 1fr); }
  .cat-heading,
  .cat-film-grid,
  .cat-assets {
    grid-template-columns: 1fr;
  }
  .cat-story {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat-assets-copy {
    position: static;
    padding: 0;
  }
  .production-board, .agent-experiment { grid-template-columns: 1fr; }
  .production-main { border-right: 0; border-bottom: 1px solid var(--line); }
  .agent-flow { grid-column: auto; flex-wrap: wrap; justify-content: flex-start; }
  .case-modal-gallery figure, .case-modal-gallery figure.tall { grid-column: span 6; }
  .case-modal-gallery figure.wide { grid-column: 1 / -1; }
  .studio-hero,
  .studio-position,
  .studio-gallery-section,
  .studio-about {
    grid-template-columns: 1fr;
  }
  .studio-hero-aside {
    align-self: start;
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid var(--studio-line);
  }
  .studio-work-feature,
  .studio-work-feature.reverse {
    grid-template-columns: 1fr;
  }
  .studio-work-feature.reverse .studio-work-media { order: 0; }
  .studio-work-grid,
  .studio-system-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .studio-proof {
    grid-template-columns: repeat(2, 1fr);
  }
  .studio-proof article:nth-child(2) {
    border-right: 0;
  }
  .studio-proof article {
    border-bottom: 1px solid var(--studio-line);
  }
  .studio-proof article:nth-child(n + 3) {
    border-bottom: 0;
  }
  .studio-process ol {
    grid-template-columns: 1fr;
  }
  .studio-gallery-copy {
    position: static;
  }
  .studio-hero-v2,
  .studio-case-detail {
    grid-template-columns: 1fr;
  }
  .studio-hero-v2 {
    min-height: auto;
  }
  .studio-hero-v2 h1 {
    max-width: 820px;
    font-size: clamp(58px, 10vw, 104px);
  }
  .studio-hero-role,
  .studio-hero-intro,
  .studio-skill-tags,
  .studio-direction-tags {
    max-width: 820px;
  }
  .studio-project-index,
  .studio-case-gallery,
  .studio-case-gallery.large {
    grid-template-columns: 1fr 1fr;
  }
  .studio-project-card.studio-project-app {
    grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  }
  .studio-case-head {
    grid-template-columns: 1fr;
    gap: 18px;
    position: static;
  }
  .studio-case-head > p {
    margin-top: 0;
  }
  .studio-case-head dl {
    grid-template-columns: 1fr;
  }
  .studio-case-head dl div,
  .studio-case-head dl div:first-child,
  .studio-case-head dl div:last-child {
    padding: 16px 0;
    border-right: 0;
  }
  .studio-case-media,
  .studio-case-gallery,
  .studio-case-story {
    grid-column: auto;
  }
  .case-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header { height: 64px; z-index: 300; }
  .brand span { display: none; }
  .menu-button { display: block; position: relative; z-index: 302; }
  nav {
    position: fixed;
    inset: 64px 0 0 0;
    z-index: 301;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    min-height: calc(100dvh - 64px);
    padding: 22px clamp(24px, 7vw, 36px) 40px;
    overflow-y: auto;
    background: #080606;
    box-shadow: 0 30px 80px rgba(0,0,0,.38);
  }
  nav.open { display: flex; }
  nav a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 22px;
    line-height: 1.15;
  }
  .version-switch,
  .nav-cta {
    margin-top: 10px;
    padding: 16px 4px;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background: transparent;
  }
  body.theme-studio nav {
    background: #f4f1ea;
    color: var(--studio-ink);
  }
  body.theme-studio nav a {
    border-bottom-color: var(--studio-line);
    color: var(--studio-ink);
  }
  body.theme-studio .version-switch {
    color: var(--studio-blue);
    background: transparent;
    border-color: var(--studio-line);
  }
  body.theme-studio .nav-cta {
    color: var(--studio-ink);
    background: transparent;
    border-color: var(--studio-line);
  }
  body.theme-warm nav {
    background: #fbfbfd;
    color: var(--apple-text);
  }
  body.theme-warm nav a {
    color: var(--apple-text);
    border-bottom-color: var(--apple-line);
  }
  body.theme-warm .version-switch,
  body.theme-warm .nav-cta {
    background: transparent;
  }
  .hero { min-height: 820px; align-items: flex-start; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(8,6,6,.94) 0%, rgba(8,6,6,.79) 52%, rgba(8,6,6,.12) 78%, rgba(8,6,6,.45) 100%);
  }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-copy { width: 100%; padding: 58px 20px 45px; }
  .hero-media img { object-position: 68% center; }
  .hero-label { right: 14px; left: 14px; bottom: 14px; }
  .hero-actions .button, .contact-actions .button { width: 100%; }
  .availability { align-items: flex-start; }
  .availability i { flex: 0 0 auto; margin-top: 5px; }
  .proof-strip article { min-height: 112px; padding: 20px; }
  .proof-strip strong, .proof-strip article:nth-child(2) strong, .proof-strip article:nth-child(3) strong, .proof-strip article:nth-child(4) strong { font-size: 27px; }
  .section { padding: 66px 20px; }
  .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 32px; }
  .intro-heading h2, .section-head h2, .process-copy h2, .about-title h2 { font-size: 38px; }
  .project-grid { grid-template-columns: 1fr; }
  .module-heading { margin-top: 55px; }
  .project-grid .project-card:last-child { grid-column: auto; }
  .project-detail.open { grid-template-columns: 1fr; }
  .project-detail.open > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .final-film-head { align-items: flex-start; flex-direction: column; }
  .project-facts div { grid-template-columns: 1fr; gap: 6px; }
  .capability-list article { grid-template-columns: 44px 1fr; gap: 12px; }
  .capability-list article:hover { padding-left: 0; }
  .process-copy { padding: 60px 20px; }
  .process-visual blockquote { bottom: 22px; }
  .contact-section { padding: 72px 20px 30px; }
  .contact-section {
    min-height: 740px;
    background:
      linear-gradient(180deg, rgba(6,5,5,.94) 0%, rgba(6,5,5,.76) 58%, rgba(6,5,5,.5) 100%),
      url("assets/images/contact-studio.webp") 70% center / cover no-repeat;
  }
  .contact-section h2 { font-size: 46px; }
  .contact-meta { align-items: flex-start; flex-direction: column; margin-top: 60px; }
  .experience-list article { grid-template-columns: 1fr; }
  .experience-list span { grid-row: auto; }
  .molly-case { margin: 55px -20px 0; padding: 45px 20px; }
  .molly-heading h3 { font-size: 38px; }
  .molly-story { grid-template-columns: 1fr; }
  .molly-story > div { border-right: 0; border-bottom: 1px solid rgba(23,20,16,.3); }
  .molly-gallery { grid-template-columns: 1fr; gap: 10px; }
  .molly-gallery .gallery-wide, .molly-gallery .gallery-poster { grid-column: auto; }
  .molly-gallery .gallery-tall { grid-row: auto; }
  .molly-gallery .gallery-tall img, .molly-gallery figure img { height: auto; }
  .cat-case { margin: 55px -20px 0; padding: 45px 20px; }
  .cat-heading h3 { font-size: 42px; }
  .cat-film-grid { gap: 12px; }
  .cat-role-card img { min-height: 0; height: auto; }
  .cat-story { grid-template-columns: 1fr; border-top: 0; }
  .cat-story > div { min-height: auto; border-top: 1px solid rgba(33,24,18,.18); }
  .cat-gallery { grid-template-columns: 1fr; }
  .cat-gallery figure.wide { grid-column: auto; }
  .cat-gallery img { height: auto; }
  .experience-section, .results-section { padding: 66px 20px; }
  .production-topline { align-items: flex-start; flex-direction: column; }
  .production-metrics { grid-template-columns: 1fr; }
  .agent-experiment { padding: 25px 20px; }
  .agent-flow i { display: none; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .results-grid article { min-height: 155px; padding: 18px; }
  .case-modal-scroll { padding: 80px 18px 35px; }
  .case-close { top: 12px; right: 12px; }
  .case-modal-head h2 { font-size: 42px; }
  .case-modal-gallery { grid-template-columns: 1fr; gap: 10px; }
  .case-modal-gallery figure, .case-modal-gallery figure.tall, .case-modal-gallery figure.wide, .case-modal-gallery figure.full { grid-column: auto; }
  .case-modal-gallery img { height: auto; max-height: none; }
  .image-lightbox { padding: 68px 12px 80px; }
  .image-lightbox figure { max-width: 100%; max-height: calc(100vh - 120px); }
  .image-lightbox img { max-height: calc(100vh - 165px); }
  .lightbox-close { top: 10px; right: 10px; }
  .lightbox-count { top: 24px; left: 14px; }
  .lightbox-nav { top: auto; bottom: 14px; width: 46%; height: 48px; transform: none; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .studio-hero {
    min-height: auto;
    padding: 58px 20px 0;
  }
  .studio-hero-copy h1 {
    font-size: clamp(44px, 15vw, 68px);
  }
  .studio-strip {
    margin-left: -20px;
    margin-right: -20px;
  }
  .studio-strip img {
    width: 78vw;
    height: 230px;
  }
  .studio-proof,
  .studio-work-grid,
  .studio-system-grid,
  .studio-gallery {
    grid-template-columns: 1fr;
  }
  .studio-process ol {
    grid-template-columns: 1fr;
  }
  .studio-process li {
    min-height: 180px;
    grid-template-columns: minmax(0, 1fr) minmax(125px, 40%);
  }
  .process-step-copy {
    padding: 18px;
  }
  .studio-process figure img {
    min-height: 180px;
  }
  .studio-proof article {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--studio-line);
  }
  .studio-section,
  .studio-gallery-section,
  .studio-process,
  .studio-about,
  .studio-contact {
    padding: 66px 20px;
  }
  .studio-position h2,
  .studio-section-head h2,
  .studio-gallery-copy h2,
  .studio-process h2,
  .studio-about h2,
  .studio-contact h2 {
    font-size: 40px;
  }
  .studio-work-media video {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .studio-work-copy,
  .studio-work-card.compact > span,
  .studio-work-card.compact h3,
  .studio-work-card.compact p {
    padding-left: 20px;
    padding-right: 20px;
  }
  .studio-work-copy dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .studio-gallery img {
    height: auto;
  }
  .studio-profile-line {
    align-items: flex-start;
    margin-bottom: 36px;
  }
  .studio-mark {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .studio-profile-line strong {
    font-size: 22px;
  }
  .studio-hero-v2 {
    padding-top: 58px;
    gap: 34px;
  }
  .studio-hero-eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: .12em;
  }
  .studio-hero-v2 h1 {
    font-size: clamp(54px, 16vw, 74px);
    line-height: .96;
  }
  .studio-hero-v2 h1 span {
    margin-top: 8px;
    font-size: clamp(28px, 8.2vw, 40px);
  }
  .studio-hero-role {
    margin-top: 20px;
    font-size: clamp(20px, 6vw, 28px);
  }
  .studio-hero-intro {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.78;
  }
  .studio-skill-tags {
    margin-top: 22px;
  }
  .studio-skill-tags span,
  .studio-direction-tags span {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 12px;
  }
  .studio-job-note {
    margin-top: 18px;
    font-size: 14px;
  }
  .studio-hero-actions {
    width: 100%;
    margin-top: 24px;
    flex-direction: column;
  }
  .studio-hero-actions .button {
    width: 100%;
    justify-content: space-between;
  }
  .studio-project-index,
  .studio-case-gallery,
  .studio-case-gallery.large {
    grid-template-columns: 1fr;
  }
  .studio-project-card.studio-project-app {
    grid-column: auto;
    display: block;
  }
  .studio-project-card.studio-project-app img {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
    object-position: center 12%;
    border-right: 0;
    border-bottom: 1px solid var(--studio-line);
  }
  .studio-project-card.studio-project-app > span,
  .studio-project-card.studio-project-app > h3,
  .studio-project-card.studio-project-app > p,
  .studio-project-card.studio-project-app > .project-tags,
  .studio-project-card.studio-project-app > .project-cta {
    margin-left: 28px;
    margin-right: 28px;
  }
  .studio-project-card h3 {
    font-size: clamp(30px, 11vw, 46px);
  }
  .studio-project-card p {
    font-size: 15px;
  }
  .project-tags {
    margin-top: 0;
  }
  .project-tags em {
    font-size: 10px;
  }
  .fortune-flow-gallery,
  .fortune-state-gallery,
  .fortune-ui-gallery,
  .fortune-delivery {
    grid-template-columns: 1fr;
  }
  .fortune-ritual-cards {
    grid-column: auto;
  }
  .fortune-ritual-card {
    padding: 14px;
  }
  .fortune-ritual-card header {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .fortune-ritual-card h4 {
    font-size: 34px;
  }
  .fortune-card-flow {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 76%);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .fortune-card-flow figure {
    scroll-snap-align: start;
  }
  .fortune-card-flow img {
    height: 390px;
  }
  .fortune-home-figure img,
  .fortune-flow-gallery img,
  .fortune-state-gallery img,
  .fortune-ui-gallery img,
  .cat-character-gallery img,
  .cat-character-gallery figure.wide img,
  .cat-scene-gallery img {
    height: auto;
  }
  .fortune-delivery {
    padding: 24px 20px;
  }
  .studio-project-card img {
    aspect-ratio: 4 / 3;
  }
  .studio-case-detail {
    padding: 66px 20px;
  }
  .studio-case-head h2 {
    font-size: 40px;
  }
  .studio-case-head dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .studio-case-gallery figure.wide {
    grid-column: auto;
  }
  .case-story-columns,
  .case-story-title.split-title,
  .case-step-grid,
  .case-shot-gallery,
  .poster-story-gallery,
  .packaging-story-gallery,
  .ip-system-gallery,
  .character-story-gallery {
    grid-template-columns: 1fr;
  }
  .case-story-intro {
    padding: 24px 20px;
  }
  .case-step-grid article {
    min-height: auto;
  }
  .poster-story-gallery img,
  .character-story-gallery img,
  .packaging-story-gallery img,
  .ip-system-gallery img {
    height: auto;
  }
  .studio-case-gallery img,
  .studio-case-gallery.large img {
    height: auto;
  }
  .studio-case-gallery figure.wide img {
    height: auto;
  }
}

@media (max-width: 820px) {
  .studio-project-index {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .studio-project-card,
  .studio-project-card.studio-project-app {
    display: flex;
    flex-direction: column;
  }
  .studio-project-card img,
  .studio-project-card.studio-project-app img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 10;
    border-right: 0;
    border-bottom: 1px solid rgba(17,17,17,.1);
  }
  .studio-project-card h3 {
    font-size: clamp(30px, 9.5vw, 46px);
  }
  .studio-project-card p {
    font-size: 15px;
  }
  .studio-project-card span,
  .studio-project-card h3,
  .studio-project-card p,
  .studio-project-card .project-tags,
  .studio-project-card .project-cta,
  .studio-project-card.studio-project-app > span,
  .studio-project-card.studio-project-app > h3,
  .studio-project-card.studio-project-app > p,
  .studio-project-card.studio-project-app > .project-tags,
  .studio-project-card.studio-project-app > .project-cta {
    margin-left: 22px;
    margin-right: 22px;
  }
  .studio-project-card span {
    margin-top: 22px;
  }
  .project-tags {
    gap: 6px;
    margin-bottom: 18px;
  }
  .studio-project-card .project-cta {
    min-height: 52px;
    margin-bottom: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal-on-scroll { opacity: 1; transform: none; }
  .studio-hero-v2 .studio-hero-copy,
  .studio-skill-tags span,
  .studio-direction-tags span,
  .studio-hero-bg video {
    animation: none !important;
  }
}

/* Memory Interrogation project extension */
.studio-project-card.studio-project-game {
  background: #fff;
  border-color: var(--studio-line);
}
.studio-project-card.studio-project-game:hover {
  border-color: rgba(17,17,17,.32);
  box-shadow: 0 24px 70px rgba(17,17,17,.09);
}
.studio-project-card.studio-project-game img {
  object-position: left top;
  background: #081617;
}
.studio-project-card.studio-project-game > span {
  color: var(--studio-blue);
}
.studio-project-card.studio-project-game h3 {
  color: var(--studio-ink);
}
.studio-project-card.studio-project-game p {
  color: var(--studio-muted);
}
.studio-project-card.studio-project-game .project-type {
  color: var(--studio-ink);
}
.studio-project-card.studio-project-game .project-tags em {
  color: #217c7a;
  background: rgba(33,124,122,.08);
  border-color: rgba(33,124,122,.24);
}
.studio-project-card.studio-project-game .project-cta {
  color: var(--studio-ink);
  background: #fff;
  border-color: var(--studio-line);
}
.memory-case {
  background:
    linear-gradient(180deg, rgba(18,92,93,.18), transparent 36%),
    #101010;
}
.memory-case .studio-case-head > span,
.memory-case .case-kicker,
.memory-loop-grid span {
  color: #72e8e1;
}
body.theme-studio .memory-demo-button {
  margin-top: 28px;
  border-color: rgba(114,232,225,.55);
  background: rgba(114,232,225,.08);
  color: #f4f1ea;
}
body.theme-studio .memory-demo-button:hover {
  border-color: #72e8e1;
  background: #72e8e1;
  color: #071617;
}
.memory-intro {
  background:
    linear-gradient(135deg, rgba(114,232,225,.12), transparent 48%),
    rgba(255,255,255,.035);
  border-color: rgba(114,232,225,.2);
}
.memory-main-figure {
  border-color: rgba(114,232,225,.26);
  background: #061112;
}
.memory-main-figure img {
  max-height: none;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.memory-calibration-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}
.memory-calibration-board article {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  background: #171717;
  border: 1px solid rgba(114,232,225,.22);
}
.memory-calibration-board img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid rgba(114,232,225,.18);
}
.memory-calibration-board span {
  display: block;
  margin: 20px 22px 28px;
  color: #72e8e1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}
.memory-calibration-board strong {
  display: block;
  margin: 0 22px 10px;
  color: #f4f1ea;
  font: 800 clamp(22px, 2.3vw, 34px)/1.2 "Noto Sans SC", sans-serif;
}
.memory-calibration-board p {
  margin: 0 22px 24px;
  color: rgba(244,241,234,.62);
}
.memory-screen-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.memory-evidence-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, .55fr) minmax(220px, .55fr);
  align-items: stretch;
  gap: 14px;
}
.memory-evidence-gallery figure.wide {
  grid-column: auto;
}
.memory-evidence-gallery img {
  height: 430px;
  object-fit: cover;
}
.memory-evidence-gallery figure.wide img {
  height: 430px;
}
.memory-screen-gallery figure.wide {
  grid-column: 1 / -1;
}
.memory-screen-gallery img {
  height: 360px;
  object-fit: cover;
  object-position: center top;
}
.memory-screen-gallery figure.wide img {
  height: 520px;
}
@media (max-width: 1000px) {
  .memory-calibration-board,
  .memory-screen-gallery,
  .memory-evidence-gallery {
    grid-template-columns: 1fr;
  }
  .memory-evidence-gallery figure.wide {
    grid-column: auto;
  }
}
@media (max-width: 680px) {
  .studio-project-card.studio-project-game img {
    object-position: left top;
  }
  .memory-screen-gallery img,
  .memory-screen-gallery figure.wide img,
  .memory-evidence-gallery img,
  .memory-evidence-gallery figure.wide img,
  .memory-calibration-board img {
    height: auto;
  }
}

/* Game content resume section */
.game-profile-section {
  overflow: hidden;
  scroll-margin-top: 96px;
  padding: clamp(66px, 7vw, 104px) clamp(20px, 5vw, 74px);
  background:
    linear-gradient(180deg, #f4f1ea 0%, #ece9e2 100%);
  border-top: 1px solid var(--studio-line);
  border-bottom: 1px solid var(--studio-line);
}
.game-profile-head {
  display: grid;
  grid-template-columns: minmax(440px, .9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  margin-bottom: clamp(26px, 4vw, 48px);
}
.game-profile-head h2 {
  margin: 0;
  max-width: 660px;
  color: var(--studio-ink);
  font: 900 clamp(38px, 4.5vw, 66px)/1.06 "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}
.game-profile-head > p:not(.eyebrow) {
  margin: 0;
  max-width: 680px;
  color: var(--studio-muted);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.8;
}
.game-profile-head .button {
  grid-column: 2;
  justify-self: start;
  white-space: nowrap;
}
body.theme-studio .game-profile-head .memory-demo-button {
  margin-top: 0;
  border-color: var(--studio-ink);
  background: var(--studio-ink);
  color: #fff;
}
body.theme-studio .game-profile-head .memory-demo-button:hover {
  border-color: var(--studio-ink);
  background: #fff;
  color: var(--studio-ink);
}
.game-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 18px;
}
.game-profile-panel,
.game-profile-visual {
  margin: 0;
  border: 1px solid var(--studio-line);
  background: #fff;
  box-shadow: 0 24px 70px rgba(17,17,17,.06);
}
.game-profile-panel {
  padding: clamp(24px, 3vw, 38px);
}
.game-profile-panel > span {
  display: block;
  margin-bottom: 16px;
  color: var(--studio-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}
.game-profile-panel h3 {
  margin: 0 0 22px;
  color: var(--studio-ink);
  font: 900 clamp(26px, 3vw, 44px)/1.12 "Noto Sans SC", sans-serif;
}
.game-genre-panel {
  grid-column: 1 / -1;
}
.game-genre-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--studio-line);
  border-left: 1px solid var(--studio-line);
}
.game-genre-grid article {
  min-height: 220px;
  padding: 22px;
  border-right: 1px solid var(--studio-line);
  border-bottom: 1px solid var(--studio-line);
}
.game-genre-grid strong,
.game-project-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--studio-ink);
  font-size: 18px;
}
.game-genre-grid p,
.game-project-list p {
  margin: 0 0 16px;
  color: var(--studio-muted);
  line-height: 1.75;
}
.game-genre-grid em {
  display: block;
  color: #217c7a;
  font-style: normal;
  font-size: 13px;
  line-height: 1.7;
}
.game-project-panel {
  min-height: 100%;
}
.game-project-list {
  display: grid;
  gap: 14px;
}
.game-project-list article {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid var(--studio-line);
  background: #faf9f6;
}
.game-project-list img {
  width: 132px;
  height: 118px;
  object-fit: cover;
  background: #111;
}
.game-skill-panel {
  background:
    linear-gradient(135deg, rgba(33,124,122,.08), transparent 42%),
    #fff;
}
.game-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.game-skill-tags em {
  padding: 9px 11px;
  border: 1px solid rgba(33,124,122,.24);
  background: rgba(33,124,122,.07);
  color: #217c7a;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}
.game-profile-visual {
  overflow: hidden;
  min-height: 420px;
}
.game-profile-visual img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.game-profile-visual figcaption {
  padding: 14px 16px;
  color: var(--studio-muted);
  font-size: 12px;
}
@media (max-width: 1000px) {
  .game-profile-head,
  .game-profile-layout {
    grid-template-columns: 1fr;
  }
  .game-profile-head .button {
    grid-column: auto;
    justify-self: start;
  }
  .game-genre-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .game-profile-section {
    padding: 66px 20px;
  }
  .game-project-list article {
    grid-template-columns: 1fr;
  }
  .game-project-list img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .game-profile-visual img {
    height: auto;
  }
}

/* Game experience image wall */
.game-experience-showcase {
  --active-index: 0;
  --active-offset: 0px;
  position: relative;
  overflow: hidden;
  contain: paint;
  border: 1px solid rgba(17,17,17,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.44) 0%, rgba(255,255,255,.18) 40%, rgba(17,17,17,.10) 100%),
    #ece9e2;
  box-shadow: 0 26px 80px rgba(17,17,17,.08);
}
.game-experience-stage {
  position: relative;
  min-height: clamp(360px, 34vw, 500px);
  margin: 0;
  overflow: hidden;
  contain: layout paint;
  background: linear-gradient(180deg, rgba(244,241,234,.2) 0%, rgba(17,17,17,.10) 100%);
}
.game-experience-track {
  position: absolute;
  left: 0;
  top: clamp(18px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  width: max-content;
  transform: translateX(calc(50vw - var(--active-offset)));
  transition: transform .72s cubic-bezier(.16,1,.3,1);
}
.game-experience-card {
  position: relative;
  flex: 0 0 clamp(190px, 18vw, 268px);
  height: clamp(260px, 27vw, 400px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.18);
  border-radius: 10px;
  background: #111;
  box-shadow: 0 22px 52px rgba(17,17,17,.16);
  cursor: pointer;
  opacity: .58;
  transform: scale(.82);
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.game-experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 35%, rgba(0,0,0,.64) 100%);
  pointer-events: none;
}
.game-experience-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .65s cubic-bezier(.16,1,.3,1), filter .25s ease;
}
.game-experience-card strong {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 15px;
  z-index: 1;
  color: #fff;
  font: 900 clamp(22px, 2.1vw, 34px)/1.05 "Noto Sans SC", sans-serif;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}
.game-experience-card.is-active {
  z-index: 5;
  opacity: 1;
  transform: scale(1.15);
  border-color: rgba(17,17,17,.52);
  box-shadow: 0 34px 90px rgba(17,17,17,.28);
}
.game-experience-card.is-active img {
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.04);
}
.game-experience-card:focus-visible {
  outline: 2px solid var(--studio-blue);
  outline-offset: 4px;
}
.game-experience-meta {
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 0 30px clamp(30px, 4vw, 46px);
  position: relative;
  z-index: 6;
  text-align: center;
}
.game-experience-meta span {
  color: var(--studio-blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}
.game-experience-meta h3 {
  margin: 10px 0 10px;
  color: var(--studio-ink);
  font: 900 clamp(36px, 4vw, 62px)/1 "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}
.game-experience-meta p {
  margin: 0 auto;
  color: var(--studio-muted);
  font-size: 16px;
  line-height: 1.8;
}
.game-experience-meta em {
  display: block;
  margin-top: 14px;
  color: #217c7a;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}
@media (max-width: 1000px) {
  .game-profile-head {
    gap: 24px;
  }
}
@media (max-width: 680px) {
  .game-profile-head h2 {
    font-size: clamp(34px, 10vw, 46px);
  }
  .game-profile-head > p:not(.eyebrow) {
    font-size: 16px;
  }
  .game-experience-stage {
    min-height: 338px;
  }
  .game-experience-track {
    gap: 12px;
  }
  .game-experience-card {
    flex-basis: 166px;
    height: 240px;
  }
  .game-experience-card.is-active {
    transform: scale(1.1);
  }
  .game-experience-meta {
    padding: 0 18px 28px;
  }
}

@media (max-width: 1100px) {
  .studio-position.editorial-copy-block,
  .game-profile-head.editorial-copy-block,
  .studio-about.editorial-copy-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .studio-position.editorial-copy-block .editorial-title,
  .studio-position.editorial-copy-block .editorial-copy {
    grid-column: auto;
  }
  .editorial-side-index {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .editorial-copy {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .studio-position.editorial-copy-block {
    padding-top: 68px;
    padding-bottom: 68px;
  }
  .editorial-kicker {
    margin-bottom: 13px;
  }
  .editorial-title h2 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.08;
  }
  .editorial-copy {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(17,17,17,.16);
  }
  .editorial-copy p {
    font-size: 16px;
    line-height: 1.82;
  }
  .editorial-meta {
    margin-top: 18px;
  }
  .editorial-meta span {
    padding: 6px 8px;
    font-size: 10px;
  }
}

/* Final case layout override: two-column case flow with a following intro rail */
.studio-case-detail {
  grid-template-columns: minmax(430px, .45fr) minmax(0, .55fr) !important;
  grid-template-rows: auto 1fr !important;
  align-items: start;
  column-gap: clamp(22px, 3.2vw, 42px);
  row-gap: clamp(24px, 3vw, 34px);
  padding-top: clamp(86px, 7.4vw, 118px);
  padding-bottom: clamp(86px, 7.4vw, 118px);
}
.studio-case-detail > .studio-case-head {
  grid-column: 1 !important;
  grid-row: 1 / 3 !important;
  align-self: start;
  width: 100%;
}
.studio-case-detail > .studio-case-media,
.studio-case-detail > .studio-case-gallery {
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100%;
}
.studio-case-detail > .studio-case-story {
  grid-column: 2 !important;
  grid-row: 2 !important;
  width: 100%;
}
.studio-case-head {
  position: sticky !important;
  top: 104px;
  display: block;
  padding-bottom: 0;
  border-bottom: 0;
  min-height: calc(100svh - 150px);
  opacity: 1 !important;
  transform: none !important;
}
.studio-case-head > span {
  margin-bottom: clamp(22px, 2vw, 34px);
  color: #8fb0ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}
.studio-case-head h2 {
  max-width: 780px;
  margin-bottom: clamp(24px, 2.8vw, 34px);
  font-size: clamp(62px, 6vw, 112px);
  line-height: .96;
  letter-spacing: 0;
}
.studio-case-head > p {
  margin-top: 0;
  max-width: 760px;
  color: rgba(244,241,234,.68);
  font-size: clamp(18px, 1.6vw, 27px);
  font-weight: 700;
  line-height: 1.75;
}
.studio-case-head dl {
  display: block;
  margin-top: clamp(34px, 4vw, 48px);
  border-top: 1px solid rgba(244,241,234,.17);
}
.studio-case-head dl div,
.studio-case-head dl div:first-child,
.studio-case-head dl div:last-child {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: clamp(16px, 2vw, 26px);
  padding: 22px 0;
  border-right: 0;
  border-bottom: 1px solid rgba(244,241,234,.17);
}
.studio-case-head dt {
  color: #8fb0ff;
  font-size: 15px;
  font-weight: 900;
}
.studio-case-head dd {
  color: rgba(244,241,234,.82);
  font-size: clamp(15px, 1.08vw, 19px);
  font-weight: 700;
  line-height: 1.7;
}
.studio-case-head dd {
  margin-top: 0;
}
.studio-case-light .studio-case-head > p {
  color: rgba(17,17,17,.64);
}
.studio-case-light .studio-case-head dl {
  border-top-color: rgba(17,17,17,.16);
}
.studio-case-light .studio-case-head dl div,
.studio-case-light .studio-case-head dl div:first-child,
.studio-case-light .studio-case-head dl div:last-child {
  border-bottom-color: rgba(17,17,17,.16);
}
.studio-case-light .studio-case-head dd {
  color: rgba(17,17,17,.76);
}
.studio-case-media {
  border: 1px solid rgba(244,241,234,.22);
  background: #050505;
}
.studio-case-light .studio-case-media {
  border-color: rgba(17,17,17,.18);
}
.studio-case-media video {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}
.studio-case-story {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: clamp(26px, 4vw, 54px);
}
.studio-case-story > *,
.case-story-block,
.case-story-intro {
  grid-column: 1 / -1 !important;
  width: 100%;
}
.case-story-title,
.case-story-title.split-title {
  display: grid !important;
  grid-template-columns: minmax(0, .72fr) minmax(320px, .78fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  max-width: none !important;
  margin-bottom: clamp(22px, 4vw, 38px);
}
.case-story-title:not(.split-title) {
  display: block !important;
  max-width: 900px !important;
}
.case-story-title > p,
.case-story-title.split-title > p,
.split-title > p {
  max-width: none;
  margin-top: 0;
}
.studio-case-story .studio-case-gallery,
.studio-case-story .case-feature-figure,
.studio-case-story .case-step-grid,
.studio-case-story .case-quote,
.studio-case-story .fortune-card-flow,
.studio-case-story .fortune-delivery,
.studio-case-story .memory-calibration-board,
.studio-case-story .memory-screen-gallery,
.studio-case-story .memory-evidence-gallery {
  grid-column: 1 / -1 !important;
}
.studio-case-gallery,
.studio-case-gallery.large {
  width: 100%;
}
@media (max-width: 1000px) {
  .studio-case-detail {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: none !important;
  }
  .studio-case-detail > .studio-case-head,
  .studio-case-detail > .studio-case-media,
  .studio-case-detail > .studio-case-gallery,
  .studio-case-detail > .studio-case-story {
    grid-column: 1 / -1 !important;
    grid-row: auto;
  }
  .studio-case-head {
    position: static !important;
    top: auto;
    min-height: auto;
  }
  .studio-case-head dl div,
  .studio-case-head dl div:first-child,
  .studio-case-head dl div:last-child {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .case-story-title,
  .case-story-title.split-title {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
