/* ============================================================
   이윤창 · Yun Chang Lee — Actor Profile
   Cinematic Dark theme
   ============================================================ */

:root {
  --bg:        #0a0a0b;
  --bg-soft:   #111113;
  --bg-card:   #16161a;
  --line:      rgba(255,255,255,.10);
  --ink:       #f4f1ea;
  --ink-dim:   #a7a39b;
  --ink-faint: #928e85;
  --gold:      #c8a25a;
  --gold-soft: #e0c486;
  --serif:     "Noto Serif KR", "Cormorant Garamond", serif;
  --serif-en:  "Cormorant Garamond", "Noto Serif KR", serif;
  --sans:      "Pretendard", system-ui, -apple-system, sans-serif;
  --maxw:      1180px;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
section[id], [id]#hero { scroll-margin-top: 92px; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #1a1407; }

/* keyboard focus visibility */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* screen-reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* skip to content */
.skip-link {
  position: absolute; left: 16px; top: -120px; z-index: 10000;
  background: var(--gold); color: #1a1407; font-weight: 600; font-size: .9rem;
  padding: 12px 20px; border-radius: 4px; transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Film grain ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .045; mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll i::after { animation: none; }
  .g-item:hover img { transform: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 64px);
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(10,10,11,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  font-family: var(--serif); font-size: 1.34rem; font-weight: 600;
  letter-spacing: .02em; line-height: 1; display: flex; flex-direction: column; gap: 3px;
}
.nav__logo span {
  font-family: var(--serif-en); font-size: .62rem; letter-spacing: .42em;
  color: var(--gold); text-transform: uppercase; font-weight: 500; padding-left: 2px;
}
.nav__links { display: flex; gap: clamp(20px, 3vw, 42px); }
.nav__links a {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-dim); position: relative; padding: 10px 0; transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 4px; width: 0; height: 1px;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav__links a:hover, .nav__links a:focus-visible { color: var(--ink); }
.nav__links a:hover::after, .nav__links a:focus-visible::after { width: 100%; }

.nav__toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 0; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); transition: transform .35s var(--ease), opacity .25s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 120px clamp(20px, 5vw, 64px) 90px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 80% 20%, rgba(200,162,90,.10), transparent 55%),
    radial-gradient(90% 80% at 20% 90%, rgba(255,255,255,.04), transparent 60%),
    var(--bg);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: center;
}
.hero__eyebrow {
  font-family: var(--serif-en); letter-spacing: .5em; font-size: .82rem;
  color: var(--gold); text-transform: uppercase; margin-bottom: 22px;
}
.hero__name {
  font-family: var(--serif); font-weight: 700; line-height: .98;
  font-size: clamp(4.4rem, 13vw, 9.5rem); letter-spacing: .01em;
}
.hero__en {
  font-family: var(--serif-en); font-size: clamp(1rem, 2.4vw, 1.5rem);
  letter-spacing: .46em; color: var(--ink-dim); text-transform: uppercase;
  margin: 14px 0 30px; padding-left: 4px;
}
.hero__tagline {
  font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--ink); line-height: 1.75;
  max-width: 30ch; margin-bottom: 38px; font-weight: 300;
}
.hero__stats { list-style: none; display: flex; flex-wrap: wrap; gap: clamp(18px, 3vw, 40px); }
.hero__stats li { display: flex; flex-direction: column; gap: 3px; position: relative; }
.hero__stats li:not(:last-child)::after {
  content: ""; position: absolute; right: clamp(-9px, -1.5vw, -20px); top: 6px; bottom: 6px; width: 1px; background: var(--line);
}
.hero__stats b { font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; color: var(--ink); }
.hero__stats span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }

.hero__portrait { display: flex; justify-content: center; }
.hero__frame {
  position: relative; width: min(360px, 80vw); border-radius: 2px; overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.9), 0 0 0 1px var(--line);
}
.hero__frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(10,10,11,.55) 100%);
}
.hero__frame img { width: 100%; height: auto; filter: saturate(.96) contrast(1.03); }

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll span { font-size: .62rem; letter-spacing: .35em; color: var(--ink-faint); text-transform: uppercase; }
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* ============================================================
   SECTION shell
   ============================================================ */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(80px, 12vh, 150px) clamp(20px, 5vw, 64px); }
.section__head { margin-bottom: clamp(44px, 7vw, 80px); }
.section__label {
  display: inline-block; font-family: var(--serif-en); letter-spacing: .42em;
  font-size: .78rem; color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
}
.section__title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 6vw, 3.7rem);
  line-height: 1.05; display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
}
.section__title em {
  font-family: var(--serif-en); font-style: italic; font-weight: 400;
  font-size: clamp(1rem, 2.2vw, 1.5rem); color: var(--ink-faint); letter-spacing: .04em;
}

/* ---------- ABOUT ---------- */
.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.about__photo { position: relative; border-radius: 2px; overflow: hidden; box-shadow: 0 30px 70px -34px rgba(0,0,0,.9), 0 0 0 1px var(--line); }
.about__photo img { width: 100%; height: auto; filter: saturate(.97); }
.about__lead {
  font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.7rem); line-height: 1.6;
  font-weight: 500; margin-bottom: 36px; color: var(--ink);
}
.spec { border-top: 1px solid var(--line); }
.spec > div { display: grid; grid-template-columns: 220px 1fr; gap: 16px; padding: 18px 4px; border-bottom: 1px solid var(--line); align-items: baseline; }
.spec dt { font-size: .82rem; letter-spacing: .08em; color: var(--ink-dim); text-transform: uppercase; }
.spec dt i { display: block; font-style: normal; font-size: .66rem; color: var(--ink-faint); letter-spacing: .14em; margin-top: 3px; }
.spec dd { font-size: 1.02rem; color: var(--ink); font-weight: 500; }

/* ---------- SHOWREEL ---------- */
.reel__grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(20px, 3vw, 38px); align-items: start; }
.reel__grid--rev { grid-template-columns: 1fr 1.55fr; }
/* film masonry: each column packs upward (no center gap) */
.film-masonry { display: flex; gap: clamp(20px, 3vw, 38px); align-items: flex-start; }
.film-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: clamp(20px, 3vw, 38px); }
.reel figure { background: var(--bg-card); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.reel video { width: 100%; height: auto; background: #000; display: block; }
.reel__main video { aspect-ratio: 16 / 9; object-fit: cover; }
.reel__side video { aspect-ratio: 59 / 72; object-fit: cover; }
.reel figcaption { padding: 18px 20px; display: flex; flex-direction: column; gap: 5px; }
.reel figcaption strong { font-size: 1rem; font-weight: 600; display: flex; align-items: baseline; gap: 10px; }
.reel figcaption strong span { font-family: var(--serif-en); font-style: italic; font-weight: 400; font-size: .8rem; color: var(--gold); }
.reel figcaption em { font-style: normal; font-size: .85rem; color: var(--ink-dim); }
.reel__link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 38px;
  font-size: .92rem; letter-spacing: .04em; color: var(--ink);
  border: 1px solid var(--line); padding: 14px 26px; border-radius: 100px; transition: all .35s var(--ease);
}
.reel__link i { font-style: normal; color: var(--gold); transition: transform .35s var(--ease); }
.reel__link:hover, .reel__link:focus-visible { border-color: var(--gold); background: rgba(200,162,90,.08); }
.reel__link:hover i, .reel__link:focus-visible i { transform: translate(3px,-3px); }

/* ---------- WORKS / feature ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; margin-bottom: clamp(56px, 9vw, 110px); }
.feature--reverse .feature__media { order: 2; }
.feature__media { position: relative; }
.feature__media img { width: 100%; height: auto; border-radius: 2px; box-shadow: 0 30px 70px -36px rgba(0,0,0,.9), 0 0 0 1px var(--line); filter: saturate(.97); }
.feature__media--stack { display: grid; grid-template-columns: 1.3fr 1fr; gap: 14px; align-items: end; }
.feature__media--stack img:nth-child(2) { margin-bottom: 28px; }
.feature__meta { font-family: var(--serif-en); letter-spacing: .26em; font-size: .76rem; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.feature__title { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; line-height: 1.05; margin-bottom: 12px; }
.feature__role { font-size: 1.05rem; color: var(--gold-soft); margin-bottom: 22px; font-weight: 500; }
.feature__desc { color: var(--ink-dim); font-size: 1.01rem; line-height: 1.85; max-width: 46ch; font-weight: 300; }

/* ---------- Filmography ---------- */
.filmo { border-top: 1px solid var(--line); padding-top: 14px; }
.filmo__head { font-family: var(--serif-en); font-style: italic; font-weight: 400; font-size: 1.2rem; color: var(--ink-faint); letter-spacing: .04em; margin: 10px 0 6px; }
.filmo__list { list-style: none; }
.filmo__list li {
  display: grid; grid-template-columns: 80px 96px 1fr auto; gap: 20px; align-items: baseline;
  padding: 22px 6px; border-bottom: 1px solid var(--line); transition: background .3s, padding .35s var(--ease);
}
.filmo__list li:hover { background: rgba(255,255,255,.02); padding-left: 16px; }
.filmo__year { font-family: var(--serif); font-size: 1.15rem; color: var(--gold); font-weight: 600; }
.filmo__type { font-size: .76rem; letter-spacing: .08em; color: var(--ink-faint); text-transform: uppercase; }
.filmo__name { font-size: 1.06rem; color: var(--ink); font-weight: 500; overflow-wrap: anywhere; }
.filmo__role { font-size: .9rem; color: var(--ink-dim); text-align: right; }

/* ---------- GALLERY ---------- */
.gallery__grid { columns: 4; column-gap: 16px; }
.g-item { break-inside: avoid; margin-bottom: 16px; border-radius: 2px; overflow: hidden; position: relative; box-shadow: 0 0 0 1px var(--line); }
.g-item img { width: 100%; height: auto; transition: transform 1.1s var(--ease), filter .6s; filter: saturate(.94) brightness(.94); }
.g-item:hover img { transform: scale(1.05); filter: saturate(1.02) brightness(1); }
.gallery__grid.collapsed .g-item:nth-child(n+9) { display: none; }
.gallery__more-wrap { display: flex; justify-content: center; margin-top: clamp(30px, 4vw, 48px); }
.gallery__more {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-size: .9rem; letter-spacing: .06em; color: var(--ink); font-family: var(--sans);
  background: none; border: 1px solid var(--line); padding: 14px 30px; border-radius: 100px;
  transition: all .35s var(--ease);
}
.gallery__more i { font-style: normal; color: var(--gold); transition: transform .35s var(--ease); }
.gallery__more:hover, .gallery__more:focus-visible { border-color: var(--gold); background: rgba(200,162,90,.08); }
.gallery__more[aria-expanded="true"] i { transform: rotate(180deg); }
.gallery__more .more-count { color: var(--ink-faint); }

/* ---------- CONTACT ---------- */
.contact { text-align: center; max-width: 960px; }
.contact__quote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.6vw, 2.5rem); line-height: 1.55;
  font-weight: 500; color: var(--ink); margin-bottom: clamp(50px, 8vw, 80px);
}
.contact__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact__item {
  display: flex; flex-direction: column; gap: 10px; padding: 30px 20px;
  border: 1px solid var(--line); border-radius: 3px; transition: all .4s var(--ease);
}
.contact__item:hover, .contact__item:focus-visible { border-color: var(--gold); background: rgba(200,162,90,.06); transform: translateY(-4px); }
.contact__k { font-family: var(--serif-en); font-style: italic; font-size: .92rem; color: var(--gold); letter-spacing: .04em; }
.contact__v { font-size: 1.04rem; color: var(--ink); font-weight: 500; word-break: break-all; }
.footer {
  margin-top: clamp(60px, 10vw, 110px); padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .8rem; color: var(--ink-faint); letter-spacing: .06em;
}
.footer span:first-child { font-family: var(--serif); color: var(--ink-dim); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .gallery__grid { columns: 3; }
}
@media (max-width: 820px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); flex-direction: column;
    justify-content: center; gap: 30px; padding: 80px 40px;
    background: rgba(12,12,14,.96); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid var(--line);
    transform: translateX(100%); visibility: hidden;
    transition: transform .45s var(--ease), visibility .45s var(--ease); z-index: 999;
  }
  .nav__links.open { transform: none; visibility: visible; }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: flex; z-index: 1001; }

  .hero { padding-top: 110px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 44px; }
  .hero__portrait { order: -1; }
  .hero__frame { width: min(260px, 64vw); }
  .hero__stats { justify-content: center; }
  .hero__tagline { margin-left: auto; margin-right: auto; }
  .hero__scroll { display: none; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__photo { max-width: 420px; margin: 0 auto; }
  .spec > div { grid-template-columns: 1fr; gap: 6px; }

  .reel__grid, .reel__grid--rev { grid-template-columns: 1fr; }
  .film-masonry { flex-direction: column; }
  .reel__side { max-width: 360px; }

  .feature { grid-template-columns: 1fr; gap: 30px; }
  .feature--reverse .feature__media { order: 0; }

  .filmo__list li {
    grid-template-columns: 56px 1fr;
    grid-template-areas: "year name" "type role";
    row-gap: 4px; column-gap: 14px;
  }
  .filmo__year { grid-area: year; }
  .filmo__name { grid-area: name; }
  .filmo__type { grid-area: type; align-self: center; }
  .filmo__role { grid-area: role; text-align: left; }

  .gallery__grid { columns: 2; }
  .contact__links { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .hero__stats { gap: 20px; }
  .hero__stats li:not(:last-child)::after { display: none; }
  .feature__media--stack { grid-template-columns: 1fr; }
  .feature__media--stack img:nth-child(2) { margin-bottom: 0; }
  .gallery__grid { columns: 1; }
  .footer { flex-direction: column; text-align: center; }
}

/* ============================================================
   MULTI-PAGE COMPONENTS
   ============================================================ */

/* --- Home intro band --- */
.intro { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px,9vh,110px) clamp(20px,5vw,64px); }
.intro__text {
  font-family: var(--serif); font-weight: 500; line-height: 1.6;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem); max-width: 22ch; color: var(--ink);
}
.intro__text em { font-style: normal; color: var(--gold); }
.intro__sub { margin-top: 28px; max-width: 52ch; color: var(--ink-dim); font-size: 1.05rem; font-weight: 300; line-height: 1.85; }

/* --- Works grid (home) --- */
.works-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 28px); }
.work-card {
  position: relative; display: block; border-radius: 3px; overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: 0 0 0 1px var(--line);
}
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; filter: saturate(.9) brightness(.78); }
.work-card:hover img, .work-card:focus-visible img { transform: scale(1.05); filter: saturate(1) brightness(.9); }
.work-card__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(20px, 3vw, 36px);
  background: linear-gradient(to top, rgba(8,8,9,.94) 6%, rgba(8,8,9,.4) 46%, transparent 78%);
}
.work-card__meta { font-family: var(--serif-en); letter-spacing: .24em; font-size: .72rem; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.work-card__title { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.15rem); font-weight: 700; line-height: 1.1; margin-bottom: 8px; }
.work-card__role { font-size: .94rem; color: var(--ink-dim); }
.work-card__cta { margin-top: 16px; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); display: flex; align-items: center; gap: 9px; }
.work-card__cta i { font-style: normal; color: var(--gold); transition: transform .35s var(--ease); }
.work-card:hover .work-card__cta i, .work-card:focus-visible .work-card__cta i { transform: translateX(5px); }
.work-card__badge {
  position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .8rem; background: rgba(10,10,11,.3); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

/* --- Inner page hero (work detail / about) --- */
.page-hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(110px, 15vh, 165px) clamp(20px, 5vw, 64px) 0; }
.back-link {
  display: inline-flex; align-items: center; gap: 9px; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-dim); margin-bottom: clamp(26px, 4vw, 46px); transition: color .3s;
}
.back-link i { font-style: normal; color: var(--gold); }
.back-link:hover, .back-link:focus-visible { color: var(--ink); }
.page-hero__meta { font-family: var(--serif-en); letter-spacing: .3em; font-size: .8rem; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.page-hero__title { font-family: var(--serif); font-weight: 700; font-size: clamp(2.6rem, 8vw, 5.4rem); line-height: 1.02; margin-bottom: 18px; }
.page-hero__role { font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--gold-soft); font-weight: 500; }

/* --- Work detail body --- */
.work-body {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 8vh, 90px) clamp(20px, 5vw, 64px);
  display: grid; grid-template-columns: 1.45fr .55fr; gap: clamp(34px, 5vw, 72px); align-items: start;
}
.work-desc p { color: var(--ink-dim); font-size: 1.05rem; line-height: 1.95; font-weight: 300; margin-bottom: 1.4em; }
.work-desc p.lead { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.75rem); color: var(--ink); line-height: 1.55; font-weight: 500; margin-bottom: 1.1em; }
.work-desc p:last-child { margin-bottom: 0; }
.work-facts { border-top: 1px solid var(--line); position: sticky; top: 100px; }
.work-facts > div { padding: 16px 2px; border-bottom: 1px solid var(--line); }
.work-facts dt { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 7px; }
.work-facts dd { font-size: 1rem; color: var(--ink); font-weight: 500; }
.work-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 18px; }
.work-tags span { font-size: .8rem; color: var(--gold-soft); border: 1px solid var(--line); padding: 6px 13px; border-radius: 100px; }

/* --- Video frame (still that plays on hover) --- */
.vframe {
  position: relative; border-radius: 3px; overflow: hidden; border: 1px solid var(--line);
  background: #000; cursor: pointer; box-shadow: 0 30px 70px -36px rgba(0,0,0,.9);
}
.vframe video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vframe__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: opacity .5s var(--ease); }
.vframe:hover .vframe__poster, .vframe:focus-within .vframe__poster, .vframe.is-playing .vframe__poster { opacity: 0; }
.vframe__hint {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  background: rgba(10,10,11,.42); border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: opacity .35s, background .3s; pointer-events: none;
}
.vframe:hover .vframe__hint { background: rgba(200,162,90,.85); border-color: var(--gold); color: #1a1407; }
.vframe__hint b { font-style: normal; padding-left: 3px; }
/* mouse devices: show the play/pause icon only while hovering the video */
@media (hover: hover) {
  .vframe__hint { opacity: 0; }
  .vframe:hover .vframe__hint,
  .vframe:focus-within .vframe__hint { opacity: 1; }
}
/* touch devices: icon auto-hides while playing (JS adds .icon-hidden after 2s) */
.vframe.icon-hidden .vframe__hint { opacity: 0; }
.vframe--wide { aspect-ratio: 16 / 9; }
.vframe--portrait { aspect-ratio: 59 / 72; }
.reel .vframe { border: 0; box-shadow: none; border-radius: 0; }

/* --- Work feature image --- */
.work-feature { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.work-feature figure { border-radius: 3px; overflow: hidden; box-shadow: 0 30px 70px -36px rgba(0,0,0,.9), 0 0 0 1px var(--line); }
.work-feature img { width: 100%; height: auto; max-height: 78vh; object-fit: cover; display: block; filter: saturate(.97); }

/* --- Work video block --- */
.work-video { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.work-video video { width: 100%; border-radius: 3px; border: 1px solid var(--line); background: #000; display: block; }
.work-video--portrait { max-width: 460px; }
.work-video figcaption { margin-top: 14px; font-size: .85rem; color: var(--ink-dim); }
.work-video figcaption em { font-style: normal; color: var(--gold); font-family: var(--serif-en); margin-right: 8px; }

/* --- Work gallery --- */
.work-gallery { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 7vh, 80px) clamp(20px, 5vw, 64px); }
.work-gallery__head { font-family: var(--serif-en); font-style: italic; color: var(--ink-faint); font-size: 1.15rem; margin-bottom: 24px; }
.work-gallery__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.work-gallery figure { border-radius: 2px; overflow: hidden; box-shadow: 0 0 0 1px var(--line); }
.work-gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; filter: saturate(.95) brightness(.94); transition: transform 1s var(--ease); }
.work-gallery figure:hover img { transform: scale(1.04); }
.work-gallery figure.wide { grid-column: span 2; }
.work-gallery figure.wide img { aspect-ratio: 16 / 9; }

/* --- Prev / next work nav --- */
.work-nav {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(36px, 6vh, 64px) clamp(20px, 5vw, 64px) clamp(70px, 10vh, 120px);
  border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px;
}
.work-nav a { display: flex; flex-direction: column; gap: 7px; color: var(--ink-dim); transition: color .3s; max-width: 47%; }
.work-nav a:hover, .work-nav a:focus-visible { color: var(--ink); }
.work-nav span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.work-nav b { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; }
.work-nav a.next { text-align: right; align-items: flex-end; }

@media (max-width: 820px) {
  .works-grid { grid-template-columns: 1fr; }
  .work-body { grid-template-columns: 1fr; gap: 36px; }
  .work-facts { position: static; }
  .work-gallery__grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}
@media (max-width: 460px) {
  .work-gallery figure.wide { grid-column: span 1; }
  .work-gallery figure.wide img { aspect-ratio: 3 / 4; }
}

/* ============================================================
   HORIZONTAL FILM EXPERIENCE (home)
   ============================================================ */
.film { position: relative; }
.film__sticky {
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
  background: radial-gradient(130% 100% at 50% 0%, rgba(200,162,90,.06), transparent 60%), var(--bg);
}
.film__track { display: flex; height: 100%; will-change: transform; }

/* film perforation gate (fixed top & bottom) */
.film__perf {
  position: absolute; left: 0; right: 0; height: 30px; z-index: 6; pointer-events: none;
  background: #0b0b0c url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='30'%3E%3Crect x='11' y='8' width='22' height='14' rx='3.5' fill='%23242424'/%3E%3C/svg%3E") repeat-x center;
}
.film__perf--top { top: 0; box-shadow: 0 6px 14px rgba(0,0,0,.6); }
.film__perf--bottom { bottom: 0; box-shadow: 0 -6px 14px rgba(0,0,0,.6); }

.frame {
  position: relative; flex: 0 0 100vw; width: 100vw; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(58px, 9vh, 96px) clamp(24px, 6vw, 110px);
  border-right: 1px solid rgba(255,255,255,.05);
}
.frame__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); }
.frame__tag {
  position: absolute; top: clamp(96px, 14vh, 116px); left: clamp(24px, 6vw, 110px); z-index: 4;
  font-family: var(--serif-en); letter-spacing: .3em; font-size: .72rem; color: var(--ink-faint);
}
.frame__tag b { color: var(--gold); font-weight: 600; }
.frame__bgyear {
  position: absolute; right: 2vw; bottom: -2vh; z-index: 0; pointer-events: none;
  font-family: var(--serif); font-weight: 700; font-size: 30vh; line-height: .8;
  color: rgba(255,255,255,.035); letter-spacing: -.02em;
}

.frame--cover { justify-content: flex-start; }
.cover__eyebrow { font-family: var(--serif-en); letter-spacing: .55em; font-size: .8rem; color: var(--gold); text-transform: uppercase; margin-bottom: 26px; }
.cover__name { font-family: var(--serif); font-weight: 700; line-height: .94; font-size: clamp(4.5rem, 15vw, 12rem); }
.cover__en { font-family: var(--serif-en); letter-spacing: .42em; font-size: clamp(1rem, 2.6vw, 1.7rem); color: var(--ink-dim); text-transform: uppercase; margin: 18px 0 0; }
.cover__line { margin-top: 40px; max-width: 40ch; font-weight: 300; color: var(--ink-dim); font-size: clamp(1rem,1.4vw,1.15rem); line-height: 1.8; }
.cover__hint { position: absolute; bottom: clamp(48px,8vh,78px); left: clamp(24px,6vw,110px); display: flex; align-items: center; gap: 14px; color: var(--ink-faint); z-index: 4; }
.cover__hint span { font-size: .72rem; letter-spacing: .35em; text-transform: uppercase; }
.cover__hint i { width: 60px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); position: relative; overflow: hidden; display: inline-block; }
.cover__hint i::after { content: ""; position: absolute; top: 0; left: -40%; width: 40%; height: 100%; background: var(--gold); animation: panhint 2s var(--ease) infinite; }
@keyframes panhint { 0% { left: -40%; } 70%,100% { left: 100%; } }

.frame--about .frame__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(34px,5vw,72px); align-items: center; }
.frame__photo { border-radius: 2px; overflow: hidden; box-shadow: 0 30px 70px -34px rgba(0,0,0,.9), 0 0 0 1px var(--line); }
.frame__photo img { width: 100%; height: auto; display: block; filter: saturate(.97); }
.frame__lead { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem,2.4vw,1.9rem); line-height: 1.55; margin-bottom: 30px; }
.frame .spec { border-top: 1px solid var(--line); }

.frame__kicker { font-family: var(--serif-en); letter-spacing: .3em; font-size: .8rem; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; }
.frame__title { font-family: var(--serif); font-weight: 700; font-size: clamp(2.4rem,6vw,4.6rem); line-height: 1.02; margin-bottom: 14px; }
.frame__role { font-size: clamp(1rem,2vw,1.3rem); color: var(--gold-soft); font-weight: 500; margin-bottom: 22px; }
.frame__desc { color: var(--ink-dim); font-weight: 300; line-height: 1.85; max-width: 46ch; font-size: clamp(.95rem,1.3vw,1.05rem); }
.frame__more { display: inline-flex; align-items: center; gap: 9px; margin-top: 30px; font-size: .85rem; letter-spacing: .04em; border: 1px solid var(--line); padding: 13px 26px; border-radius: 100px; transition: all .35s var(--ease); }
.frame__more i { font-style: normal; color: var(--gold); transition: transform .35s var(--ease); }
.frame__more:hover, .frame__more:focus-visible { border-color: var(--gold); background: rgba(200,162,90,.08); }
.frame__more:hover i, .frame__more:focus-visible i { transform: translateX(4px); }

.frame--work .frame__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px,5vw,76px); align-items: center; }
.frame--work.frame--rev .frame__media { order: 2; }
.frame__media { position: relative; border-radius: 3px; overflow: hidden; box-shadow: 0 30px 80px -36px rgba(0,0,0,.95), 0 0 0 1px var(--line); }
.frame__media img { width: 100%; height: auto; max-height: 68vh; object-fit: cover; display: block; }
.frame__media .vframe { box-shadow: none; }

.frame--gallery { flex: 0 0 auto; width: auto; padding-left: clamp(40px,8vw,120px); padding-right: clamp(40px,8vw,120px); }
.film-strip { display: flex; align-items: center; gap: 18px; height: 100%; }
.film-strip .fs-label { flex: 0 0 auto; writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--serif-en); letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); font-size: .9rem; margin-right: 10px; }
.film-strip figure { flex: 0 0 auto; height: 60vh; border-radius: 2px; overflow: hidden; box-shadow: 0 0 0 1px var(--line); }
.film-strip img { height: 100%; width: auto; display: block; filter: saturate(.95) brightness(.95); transition: filter .5s, transform 1s var(--ease); }
.film-strip figure:hover img { filter: saturate(1.03) brightness(1.03); transform: scale(1.03); }

.frame--contact { text-align: center; }
.frame--contact .frame__inner { max-width: 900px; margin: 0 auto; }
.frame__quote { font-family: var(--serif); font-weight: 500; font-size: clamp(1.4rem,3.2vw,2.4rem); line-height: 1.5; margin-bottom: clamp(36px,5vw,56px); }
.frame--contact .contact__links { max-width: 760px; margin: 0 auto; }
.frame__end { margin-top: 40px; font-family: var(--serif-en); letter-spacing: .35em; text-transform: uppercase; color: var(--ink-faint); font-size: .8rem; }

.film__progress { position: absolute; left: 50%; transform: translateX(-50%); bottom: 38px; z-index: 6; display: flex; align-items: center; gap: 12px; }
.film__progress .pp-line { width: clamp(140px, 22vw, 260px); height: 2px; background: rgba(255,255,255,.14); position: relative; border-radius: 2px; }
.film__progress .pp-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--gold); border-radius: 2px; }
.film__progress .pp-yr { font-family: var(--serif-en); font-size: .72rem; letter-spacing: .2em; color: var(--ink-faint); }

.film-nav__jump { display: flex; gap: clamp(14px,2vw,30px); }
.film-nav__jump button { background: none; border: 0; cursor: pointer; font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-dim); padding: 8px 0; transition: color .3s; }
.film-nav__jump button:hover, .film-nav__jump button:focus-visible { color: var(--gold); }

/* MOBILE: horizontal film -> vertical stack (no clipping, natural vertical scroll) */
@media (max-width: 820px) {
  .film { height: auto !important; }
  .film__sticky { position: static; height: auto; overflow: visible; background: var(--bg); }
  .film__track { flex-direction: column; transform: none !important; height: auto; }
  .frame {
    flex: none; width: 100%; height: auto; display: block;
    padding: clamp(78px,12vh,98px) 24px clamp(50px,8vh,72px);
    border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .frame--cover { min-height: 88vh; display: flex; flex-direction: column; justify-content: center; }
  .frame__tag { position: static; display: block; margin-bottom: 20px; }
  .frame__bgyear { font-size: 24vh; bottom: 2vh; opacity: .8; }
  .cover__name { font-size: clamp(3.4rem,17vw,6.5rem); }
  .cover__hint { position: static; margin-top: 34px; }
  .film-nav__jump { display: none; }

  .frame--about .frame__inner,
  .frame--work .frame__inner { display: grid; grid-template-columns: 1fr; gap: clamp(20px,5vw,30px); align-items: start; }
  .frame--about .frame__photo { max-width: 240px; }
  .frame--work.frame--rev .frame__media { order: 0; }
  .frame__media img { max-height: none; }

  .frame--gallery { width: 100%; }
  .film-strip { flex-wrap: wrap; height: auto; gap: 12px; justify-content: center; }
  .film-strip .fs-label { writing-mode: horizontal-tb; transform: none; width: 100%; margin: 0 0 4px; }
  .film-strip figure { height: auto; width: calc(50% - 8px); }
  .film-strip img { width: 100%; height: auto; }

  .film__perf, .film__progress { display: none; }
}

/* horizontal film runs for everyone (incl. reduced-motion);
   only the looping decorative animations are calmed via the global reduce block above */
