/* ==========================================================
   Vector 1 Films
   Black · ivory · 緋色 (hi-iro). Quiet luxury, cinematic ratios, soft corners.
   ========================================================== */
:root {
  --bg: #060606;
  --ink: #0c0c0c;
  --panel: #111110;
  --panel-2: #181716;
  --ivory: #ede7dd;
  --paper: #e9e2d4;
  --muted: #9a948b;
  --dim: #5e5953;
  --line: rgba(237, 231, 221, 0.13);
  --line-soft: rgba(237, 231, 221, 0.07);
  --hi: #e0351f;              /* 緋色 — sampled from the logo */
  --hi-soft: rgba(224, 53, 31, 0.16);
  --r-xl: clamp(20px, 2.4vw, 34px);
  --r-lg: clamp(16px, 1.8vw, 26px);
  --r-md: 16px;
  --r-sm: 10px;
  --max: 1320px;
  --gutter: clamp(18px, 4vw, 64px);
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --slow: cubic-bezier(0.16, 1, 0.3, 1);
  --sans: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", sans-serif;
  --serif: "Bodoni Moda", "Shippori Mincho B1", "Hiragino Mincho ProN", serif;
  --mincho: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --mark: "Jost", "Futura", var(--sans);
}
html[lang="ja"] { --sans: "Noto Sans JP", "Inter", "Hiragino Sans", sans-serif; --serif: var(--mincho); }

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ivory);
  font-family: var(--sans); font-size: 16px; line-height: 1.7; font-weight: 400;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
html[lang="ja"] body { line-height: 1.95; letter-spacing: 0.04em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
::selection { background: var(--hi); color: #fff; }
.wrap { width: 100%; max-width: calc(var(--max) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
body.lock { overflow: hidden; }
main { transition: opacity 0.4s ease, filter 0.4s ease; }
body.lang-swap main, body.lang-swap .nav-links { opacity: 0; filter: blur(8px); }

/* Film grain — very light */
.grain {
  position: fixed; inset: -50%; z-index: 900; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 1s steps(5) infinite;
}
@keyframes grain { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(-2%, 1%); } 50% { transform: translate(1%, -2%); } 75% { transform: translate(-1%, -1%); } }

/* ---------- Type ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 16px; margin: 0 0 28px;
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--hi); flex: 0 0 auto; }
.center .eyebrow { justify-content: center; }
.display, .title, .subtitle {
  font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.025em; color: var(--ivory); font-optical-sizing: auto;
}
.display { font-size: clamp(44px, 7vw, 118px); line-height: 1.03; }
.title { font-size: clamp(34px, 4.6vw, 74px); line-height: 1.08; }
.subtitle { font-size: clamp(26px, 2.9vw, 44px); line-height: 1.14; }
.display em, .title em, .subtitle em { font-style: italic; color: var(--hi); }
html[lang="ja"] .display, html[lang="ja"] .title, html[lang="ja"] .subtitle { font-weight: 600; letter-spacing: 0.06em; }
html[lang="ja"] .display { font-size: clamp(36px, 5.6vw, 90px); line-height: 1.36; }
html[lang="ja"] .title { font-size: clamp(28px, 4vw, 62px); line-height: 1.42; }
html[lang="ja"] .subtitle { font-size: clamp(22px, 2.6vw, 40px); line-height: 1.5; }
html[lang="ja"] .display em, html[lang="ja"] .title em, html[lang="ja"] .subtitle em { font-style: normal; }
.lead { font-size: clamp(16px, 1.3vw, 19px); color: var(--muted); max-width: 620px; margin: 30px 0 0; line-height: 1.85; }
.caption { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px; padding: 15px 28px; border-radius: 999px; border: 0; cursor: pointer;
  background: var(--ivory); color: #0a0a0a; font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease);
}
html[lang="ja"] .btn { letter-spacing: 0.12em; }
.btn:hover { background: var(--hi); color: #fff; transform: translateY(-2px); }
.btn .arr { transition: transform 0.5s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn.ghost { background: transparent; color: var(--ivory); box-shadow: inset 0 0 0 1px var(--line); }
.btn.ghost:hover { background: var(--ivory); color: #0a0a0a; }
.btn.sm { padding: 10px 18px; font-size: 11px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.link-line {
  display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  padding-bottom: 8px; background: linear-gradient(var(--ivory), var(--ivory)) 0 100% / 100% 1px no-repeat; transition: background-size 0.7s var(--ease), color 0.4s;
}
.link-line:hover { color: var(--hi); background-size: 0 1px; background-position: 100% 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300; height: var(--nav-h);
  transition: background 0.6s, border-color 0.6s, transform 0.7s var(--ease), opacity 1.2s;
  border-bottom: 1px solid transparent;
}
.nav.solid { background: var(--bg); }
.nav.hide { transform: translateY(-100%); }
body.opening .nav { opacity: 0; pointer-events: none; }
.nav .wrap { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.nav-links { list-style: none; display: flex; gap: clamp(18px, 2.4vw, 36px); margin: 0; padding: 0; transition: opacity 0.4s, filter 0.4s; }
.nav-links a { font-size: 11px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(237, 231, 221, 0.62); transition: color 0.4s; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 50%; bottom: -10px; width: 4px; height: 4px; margin-left: -2px; border-radius: 50%; background: var(--hi); opacity: 0; transform: translateY(4px); transition: opacity 0.4s, transform 0.5s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ivory); }
.nav-links a[aria-current="page"]::after, .nav-links a:hover::after { opacity: 1; transform: none; }
.brand { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.brand img { height: 18px; width: auto; }
.brand span { font-family: var(--mark); font-weight: 500; font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; white-space: nowrap; }
@media (max-width: 420px) { .brand span { letter-spacing: 0.2em; font-size: 10px; } }
.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.lang {
  position: relative; display: inline-grid; grid-template-columns: 1fr 1fr; border-radius: 999px; border: 1px solid var(--line); cursor: pointer;
  background: transparent; padding: 3px; font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
}
.lang span { position: relative; z-index: 1; padding: 5px 10px; transition: color 0.5s; color: var(--muted); }
.lang::before { content: ""; position: absolute; top: 3px; bottom: 3px; left: 3px; width: calc(50% - 3px); border-radius: 999px; background: var(--ivory); transition: transform 0.6s var(--ease); }
html[lang="ja"] .lang::before { transform: translateX(100%); }
html[lang="en"] .lang span:first-child, html[lang="ja"] .lang span:last-child { color: #0a0a0a; }
.menu-btn { display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: none; cursor: pointer; padding: 0 12px; }
.menu-btn i { display: block; height: 1px; background: var(--ivory); margin: 5px 0; transition: transform 0.6s var(--ease); }
body.menu-open .menu-btn i:first-child { transform: translateY(3px) rotate(45deg); }
body.menu-open .menu-btn i:last-child { transform: translateY(-3px) rotate(-45deg); }
.mnav {
  position: fixed; inset: 10px; z-index: 290; background: #0b0b0a; border-radius: var(--r-xl); display: flex; flex-direction: column; justify-content: center;
  padding: var(--nav-h) 28px 40px; clip-path: inset(0 0 100% 0 round var(--r-xl)); transition: clip-path 0.9s var(--ease-io); visibility: hidden;
}
body.menu-open .mnav { clip-path: inset(0 0 0 0 round var(--r-xl)); visibility: visible; }
.mnav a { display: flex; align-items: baseline; gap: 16px; font-family: "Bodoni Moda", serif; font-weight: 300; font-size: clamp(44px, 13vw, 76px); line-height: 1.15; opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.9s var(--ease); }
.mnav a small { font-family: var(--sans); font-size: 11px; color: var(--hi); letter-spacing: 0.2em; }
.mnav a[aria-current="page"] { font-style: italic; color: var(--hi); }
body.menu-open .mnav a { opacity: 1; transform: none; }
body.menu-open .mnav a:nth-child(2) { transition-delay: 0.06s; } body.menu-open .mnav a:nth-child(3) { transition-delay: 0.12s; }
body.menu-open .mnav a:nth-child(4) { transition-delay: 0.18s; } body.menu-open .mnav a:nth-child(5) { transition-delay: 0.24s; }
@media (max-width: 900px) {
  .nav .wrap { grid-template-columns: auto 1fr; }
  .nav-links, .nav-right .btn { display: none; }
  .brand { flex-direction: row; gap: 10px; }
  .menu-btn { display: block; }
}
@media (min-width: 901px) { .mnav { display: none; } }

/* ==========================================================
   Clapperboard page transition (Hollywood slate)
   ========================================================== */
.slate { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: #030303; opacity: 0; pointer-events: none; transition: opacity 0.26s ease; --chalk: rgba(242, 238, 230, 0.82); }
.slate.show { opacity: 1; pointer-events: auto; }
.slate.quiet, .slate.quiet .board { transition: none; }
.slate.fade { transition: opacity 0.5s ease; }
.board { width: min(640px, 90vw); transform: translateY(34px) scale(0.98); transition: transform 0.36s var(--ease); filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7)); }
.slate.show .board { transform: none; }
.clap { position: relative; height: 104px; }
.stick { position: absolute; left: 0; right: 0; height: 46px; border-radius: 7px; background: repeating-linear-gradient(-60deg, #f2eee6 0 40px, #111 40px 80px); box-shadow: inset 0 0 0 3px #111; }
.stick.top { top: 2px; transform-origin: 23px 100%; transform: rotate(-24deg); transition: transform 0.13s cubic-bezier(0.7, 0, 1, 0.5); }
.stick.bot { bottom: 4px; background: repeating-linear-gradient(60deg, #f2eee6 0 40px, #111 40px 80px); }
.slate.clapped .stick.top { transform: rotate(0deg); }
.hinge { position: absolute; left: 9px; top: 35px; z-index: 3; width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle, #8a8a8a 0 22%, #3a3a3a 26% 58%, #151515 62%); box-shadow: 0 0 0 3px #0a0a0a; }
.slab { background: #0f0f0f; border: 3px solid #1c1c1c; border-radius: 6px 6px 18px 18px; overflow: hidden; }
.slab .r { display: grid; border-bottom: 2px solid var(--chalk); }
.slab .r:last-child { border-bottom: 0; }
.slab .r > div { padding: 10px 16px 12px; min-width: 0; }
.slab .r > div + div { border-left: 2px solid var(--chalk); }
.slab .r.c1 { grid-template-columns: 1fr; }
.slab .r.c2 { grid-template-columns: 1fr 1fr; }
.slab .r.c4 { grid-template-columns: repeat(4, 1fr); }
.slab span { display: block; font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.26em; color: #bdb7ad; text-transform: uppercase; }
.slab b { display: block; margin-top: 2px; font-family: "Caveat", "Klee One", cursive; font-weight: 600; font-size: clamp(24px, 4vw, 34px); line-height: 1.1; color: #f7f3ec; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.slab .big b { font-size: clamp(34px, 6.4vw, 58px); color: #fff; }
.slab .foot { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; font-family: var(--sans); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: #bdb7ad; }
.slab .foot em { font-style: normal; color: var(--hi); }
.slate .flash { position: absolute; inset: 0; background: #fff; opacity: 0; pointer-events: none; }
.slate.clapped .flash { animation: snap 0.3s ease-out; }
@keyframes snap { 0% { opacity: 0.14; } 100% { opacity: 0; } }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(36px); transition: opacity 1.4s var(--slow), transform 1.4s var(--slow); }
.rv.in { opacity: 1; transform: none; }
.rv[data-d="1"] { transition-delay: 0.12s; } .rv[data-d="2"] { transition-delay: 0.24s; }
.rv[data-d="3"] { transition-delay: 0.36s; } .rv[data-d="4"] { transition-delay: 0.48s; }
.split .ln { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.split .ch { display: inline-block; transform: translateY(110%); opacity: 0; transition: transform 1.3s var(--slow), opacity 1.3s var(--slow); }
.split.in .ch { transform: none; opacity: 1; }
.frame-in { clip-path: inset(10% 7% 10% 7% round var(--r-lg)); transition: clip-path 1.8s var(--ease-io); }
.frame-in.in, .in > .frame-in { clip-path: inset(0 0 0 0 round var(--r-lg)); }
.frame-in > .media { transform: scale(1.16); transition: transform 2.4s var(--slow); }
.frame-in.in > .media, .in > .frame-in > .media { transform: none; }

/* ---------- Sections ---------- */
.sec { padding: clamp(110px, 14vw, 220px) 0; position: relative; }
.sec.tight { padding-top: 0; }
.head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(44px, 6vw, 90px); }
.page-head { padding: calc(var(--nav-h) + clamp(90px, 13vw, 190px)) 0 clamp(60px, 8vw, 120px); }

/* ==========================================================
   Media: key art, thumbnails, YouTube
   ========================================================== */
.media { position: absolute; inset: 0; overflow: hidden; background: #000; }
.media > i { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(var(--zoom, 1)); }
.yt { position: absolute; left: 50%; top: 50%; border: 0; pointer-events: none; opacity: 0; transition: opacity 1.8s ease;
  /* cover a 1.43:1 box with a 16:9 player */
  height: calc(100% * var(--vz, 1)); width: calc(124.4% * var(--vz, 1)); transform: translate(-50%, -50%); }
.yt.ready { opacity: 1; }
.shade::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.35), transparent 30%, transparent 50%, rgba(0,0,0,0.8)); }

/* Generated key art (films without stills yet) — quiet, painterly */
.art { position: absolute; inset: 0; overflow: hidden; }
.art > span { position: absolute; }
.art-imperfect { background: linear-gradient(118deg, transparent 49.8%, rgba(224, 53, 31, 0.7) 50%, transparent 50.2%), radial-gradient(70% 60% at 40% 45%, #2a1410, #070605 75%); }
.art-imperfect > span { inset: 0; display: grid; place-items: center; font-family: "Bodoni Moda", serif; font-style: italic; font-weight: 300; font-size: clamp(40px, 7vw, 110px); color: rgba(237, 231, 221, 0.12); clip-path: polygon(0 0, 100% 0, 100% 47%, 0 55%); }
.art-nineteen { background: radial-gradient(80% 60% at 50% 110%, rgba(224, 53, 31, 0.5), transparent 70%), #0b0908; }
.art-kami { background: radial-gradient(100% 60% at 50% 115%, #a8401f 0%, #3a130a 40%, transparent 70%), linear-gradient(180deg, #0b0c10, #150b08); }
.art-nami { background: radial-gradient(18% 12% at 50% 50%, #e8623a, #e0351f 55%, transparent 58%), repeating-linear-gradient(180deg, rgba(237, 231, 221, 0.05) 0 1px, transparent 1px 10px), linear-gradient(180deg, #0c0707 0%, #3a150c 50%, #0a0a0b 50.3%, #050505 100%); }
.art-nami > span { left: 0; right: 0; top: 50%; height: 50%; background: linear-gradient(180deg, rgba(224, 53, 31, 0.28), transparent 50%); animation: tide 7s ease-in-out infinite; }
@keyframes tide { 50% { transform: translateY(5%); opacity: 0.5; } }
.art-tokyo { background: radial-gradient(60% 40% at 50% 100%, rgba(224, 53, 31, 0.4), transparent 70%), linear-gradient(180deg, #07070a, #140908); }
.art-tokyo > span { left: 0; right: 0; bottom: 0; height: 52%; background: #030303;
  clip-path: polygon(0 60%, 8% 60%, 8% 40%, 14% 40%, 14% 52%, 22% 52%, 22% 30%, 27% 30%, 27% 48%, 35% 48%, 35% 20%, 38% 20%, 40% 0, 42% 20%, 45% 20%, 45% 45%, 55% 45%, 55% 25%, 62% 25%, 62% 50%, 70% 50%, 70% 35%, 78% 35%, 78% 55%, 86% 55%, 86% 28%, 92% 28%, 92% 50%, 100% 50%, 100% 100%, 0 100%); }
.art-bluewind { background: radial-gradient(60% 50% at 30% 70%, rgba(60, 90, 170, 0.45), transparent 70%), radial-gradient(30% 25% at 78% 30%, rgba(224, 53, 31, 0.35), transparent 70%), linear-gradient(180deg, #05070d, #0a0f1c 60%, #050505); }
.art-bluewind > span { inset: -20% -50%; background: repeating-linear-gradient(100deg, transparent 0 40px, rgba(170, 190, 240, 0.06) 40px 42px, transparent 42px 110px); animation: wind 16s linear infinite; }
@keyframes wind { to { transform: translateX(-20%); } }
.art-emblem { background: radial-gradient(50% 60% at 50% 55%, rgba(224, 53, 31, 0.26), transparent 70%), #080707; }
.art-emblem > span { inset: 30% 20%; background: url("../assets/emblem-alpha.png") center / contain no-repeat; opacity: 0.9; }
.art-smara { background: #050505; }

/* ==========================================================
   HOME — The Screen (opening + scroll expansion)
   ========================================================== */
/* Ferrari-style first frame: black, and only the logo */
.logo-intro { position: fixed; inset: 0; z-index: 400; display: grid; place-content: center; justify-items: center; gap: 26px; background: var(--bg); pointer-events: none; opacity: 0; visibility: hidden; }
body.opening .logo-intro { opacity: 1; visibility: visible; }
body.opening.lo-out .logo-intro { opacity: 0; transition: opacity 1.1s ease; }
.logo-intro img { width: min(320px, 52vw); opacity: 0; transform: scale(0.97); filter: blur(8px); transition: opacity 1.8s ease, transform 2.6s var(--slow), filter 1.8s ease; }
.logo-intro span { font-family: var(--mark); font-weight: 500; font-size: 11px; letter-spacing: 0.7em; margin-right: -0.7em; text-transform: uppercase; opacity: 0; transition: opacity 1.6s 0.6s; }
body.lo-in .logo-intro img { opacity: 1; transform: none; filter: none; }
body.lo-in .logo-intro span { opacity: 0.7; }

/* The screen: opens as 16:9 (a phone held sideways) and settles into CinemaScope 2.39:1 */
.stage { height: 240vh; position: relative; }
.stage-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; display: grid; place-items: center; overflow: hidden; }
.screen-wrap { position: relative; width: min(90vw, calc((100svh - 230px) * 1.7778)); margin-top: 26px; }
.screen-box { position: relative; transform: translateY(var(--ty, 0px)); }
.screen {
  --scope: 0%;
  position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; isolation: isolate;
  transform: scale(var(--s, 1)); will-change: transform; opacity: 0;
  clip-path: inset(var(--scope) 0 var(--scope) 0 round calc(var(--r-xl) * var(--k, 1) / var(--s, 1)));
  transition: clip-path 2s var(--ease-io), opacity 1.4s ease;
}
.op-169 .screen { opacity: 1; }
.op-scope .screen, .op-done .screen { opacity: 1; --scope: 12.83%; }
.op-done .screen { transition: none; }
.screen .yt { width: 120%; height: 120%; }
.screen .media > i { filter: brightness(0.5) saturate(0.9); }
.screen .media { transform: scale(1.1); transition: transform 8s var(--slow); }
.op-169 .screen .media, .op-scope .screen .media, .op-done .screen .media { transform: none; }
.screen-over { position: absolute; left: 0; right: 0; top: 12.83%; bottom: 12.83%; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; padding: 0 6% 4.5%; text-align: center; opacity: calc(1 - var(--e, 0) * 2.4); }
.screen-over img { width: min(34%, 380px); opacity: 0; transform: scale(1.04); filter: blur(10px); transition: opacity 2.4s ease, transform 3s var(--slow), filter 2.4s ease; }
.op-scope .screen-over img, .op-done .screen-over img { opacity: 1; transform: none; filter: none; }
.screen-tag { margin-top: clamp(12px, 1.6vw, 22px); font-family: var(--mincho); font-weight: 600; font-size: clamp(13px, 1.6vw, 22px); letter-spacing: 0.34em; color: var(--ivory); }
.screen-tag .c { display: inline-block; opacity: 0; filter: blur(8px); transition: opacity 1.6s, filter 1.6s; }
.op-scope .screen-tag .c, .op-done .screen-tag .c { opacity: 1; filter: none; }
.screen-chip, .sound {
  position: absolute; z-index: 3; top: calc(12.83% + clamp(10px, 1.4vw, 18px)); display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px;
  background: rgba(10, 10, 10, 0.45); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0; transition: opacity 1.2s 0.4s, background 0.4s, color 0.4s;
}
.screen-chip { left: clamp(12px, 1.6vw, 22px); }
.screen-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--hi); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: 0.2; } }
.sound { right: clamp(12px, 1.6vw, 22px); cursor: pointer; color: var(--ivory); }
.sound:hover { background: var(--ivory); color: #0a0a0a; }
.op-done .screen-chip, .op-done .sound { opacity: calc(1 - var(--e, 0) * 3); }
.screen-meta { position: relative; display: flex; justify-content: space-between; align-items: center; margin-top: -2%; opacity: 0; transition: opacity 1.2s, margin 2s var(--ease-io); }
.op-169 .screen-meta { margin-top: 16px; opacity: 1; }
.op-scope .screen-meta, .op-done .screen-meta { opacity: calc(1 - var(--e, 0) * 4); }
.ratio { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.2em; color: var(--ivory); font-variant-numeric: tabular-nums; }
.ratio small { font-size: 10px; letter-spacing: 0.28em; color: var(--dim); margin-left: 14px; text-transform: uppercase; }
.skip { position: fixed; right: var(--gutter); bottom: 28px; z-index: 410; background: none; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); padding: 8px 16px; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; cursor: pointer; transition: opacity 0.6s, color 0.3s; }
.skip:hover { color: var(--ivory); }
body:not(.opening) .skip { opacity: 0; pointer-events: none; }

/* ---------- Statement ---------- */
.statement { text-align: center; }
.statement .display { max-width: 1100px; margin-inline: auto; }
.statement .lead { margin-inline: auto; text-align: center; max-width: 680px; }
.rule-v { width: 1px; height: 90px; margin: 0 auto 60px; background: linear-gradient(transparent, var(--hi)); transform-origin: top; transform: scaleY(0); transition: transform 1.6s var(--ease-io); }
.rule-v.in { transform: none; }

/* ---------- Horizontal cinema gallery (pinned) ---------- */
.hgal { position: relative; }
.hgal-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.hgal-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: clamp(26px, 4vh, 50px); }
.hgal-track { display: flex; gap: clamp(18px, 2vw, 32px); padding-inline: var(--gutter); will-change: transform; transform: translate3d(var(--tx, 0), 0, 0); }
.reel { flex: 0 0 min(62vw, calc((100vh - 340px) * 2.39)); display: block; }
.reel .frame { position: relative; aspect-ratio: 2.39 / 1; border-radius: var(--r-lg); overflow: hidden; background: var(--panel); }
.reel .frame .media > i { transition: transform 1.6s var(--slow); }
.reel:hover .frame .media > i { transform: scale(calc(var(--zoom, 1) * 1.05)); }
.reel .cap { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-top: 18px; }
.reel .cap h3 { font-family: "Bodoni Moda", var(--mincho), serif; font-weight: 300; font-size: clamp(26px, 2.6vw, 40px); margin: 0; line-height: 1.1; }
.reel .cap h3.jp { font-family: var(--mincho); font-weight: 600; letter-spacing: 0.08em; font-size: clamp(22px, 2.2vw, 32px); }
.reel .cap span { font-size: 11px; letter-spacing: 0.24em; color: var(--muted); text-transform: uppercase; white-space: nowrap; }
.reel .no { position: absolute; left: 18px; top: 16px; z-index: 2; font-size: 10px; letter-spacing: 0.28em; color: rgba(237, 231, 221, 0.8); }
.reel .pill { position: absolute; right: 16px; top: 14px; z-index: 2; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: var(--hi); color: #fff; }
.hgal-foot { display: flex; align-items: center; gap: 24px; margin-top: clamp(26px, 4vh, 44px); }
.hgal-bar { flex: 1; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.hgal-bar i { position: absolute; inset: 0; background: var(--ivory); transform-origin: left; transform: scaleX(var(--hp, 0)); }
.hgal-count { font-family: "Bodoni Moda", serif; font-size: 20px; font-variant-numeric: tabular-nums; }
@media (max-width: 900px), (max-height: 560px) {
  .hgal { height: auto !important; }
  .hgal-sticky { position: static; height: auto; padding: 100px 0; }
  .hgal-track { transform: none; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); scrollbar-width: none; }
  .hgal-track::-webkit-scrollbar { display: none; }
  .reel { flex-basis: 84vw; scroll-snap-align: start; }
  .hgal-foot { display: none; }
}

/* ---------- SMARA feature ---------- */
.feature { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(30px, 5vw, 90px); align-items: center; }
.feature .frame { position: relative; aspect-ratio: 1.43 / 1; border-radius: var(--r-xl); overflow: hidden; }
.feature .frame .media > i { animation: kenburns 24s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(var(--zoom, 1)); } to { transform: scale(calc(var(--zoom, 1) * 1.12)) translate(-1.5%, 1%); } }
.smara-word { font-family: "Bodoni Moda", serif; font-weight: 400; font-size: clamp(48px, 6.4vw, 108px); line-height: 0.95; letter-spacing: 0.16em; margin: 0; }
.smara-word span { display: inline-block; opacity: 0; filter: blur(14px); transform: translateY(24px); transition: opacity 1.6s, filter 1.6s, transform 1.8s var(--slow); }
.smara-word.in span { opacity: 1; filter: none; transform: none; }
.smara-word.in span:nth-child(2) { transition-delay: 0.12s; } .smara-word.in span:nth-child(3) { transition-delay: 0.24s; }
.smara-word.in span:nth-child(4) { transition-delay: 0.36s; } .smara-word.in span:nth-child(5) { transition-delay: 0.48s; }
.soon { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }
.soon::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--hi); animation: blink 1.6s ease-in-out infinite; }
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; } }

/* ---------- Recognition ---------- */
.laurels { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.laurel { position: relative; border-radius: var(--r-xl); background: linear-gradient(180deg, var(--panel), #0a0a09); border: 1px solid var(--line-soft); padding: clamp(36px, 5vw, 70px) clamp(24px, 4vw, 56px); text-align: center; overflow: hidden; }
.laurel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 70% at 50% 0%, var(--hi-soft), transparent 70%); opacity: 0; transition: opacity 0.9s; }
.laurel:hover::before { opacity: 1; }
.laurel .wreath { position: relative; width: min(230px, 80%); margin: 0 auto; }
.laurel .wreath svg { width: 100%; height: auto; color: var(--ivory); opacity: 0.8; display: block; }
.laurel .wreath .yr { position: absolute; inset: 0; display: grid; place-items: center; font-family: "Bodoni Moda", serif; font-size: clamp(26px, 2.6vw, 34px); color: var(--hi); letter-spacing: 0.08em; }
.laurel h3 { position: relative; font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.25; margin: 26px 0 8px; }
html[lang="ja"] .laurel h3 { font-weight: 600; letter-spacing: 0.08em; }
.laurel p { position: relative; margin: 0; color: var(--muted); font-size: 13px; letter-spacing: 0.06em; }
.nums { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 16px; border-radius: var(--r-lg); border: 1px solid var(--line-soft); overflow: hidden; }
.num { padding: clamp(26px, 3vw, 40px) clamp(20px, 2.4vw, 34px); border-right: 1px solid var(--line-soft); }
.num:last-child { border-right: 0; }
.num b { display: flex; align-items: baseline; gap: 8px; font-family: "Bodoni Moda", serif; font-weight: 500; font-size: clamp(36px, 3.4vw, 56px); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: lining-nums tabular-nums; }
.num b em { font-style: normal; font-family: var(--sans); font-weight: 500; font-size: 0.4em; color: var(--hi); letter-spacing: 0; }
.num span { display: block; margin-top: 18px; color: var(--muted); font-size: 14px; line-height: 1.65; }
@media (max-width: 900px) {
  .nums { grid-template-columns: 1fr 1fr; }
  .num:nth-child(2) { border-right: 0; }
  .num:nth-child(-n + 2) { border-bottom: 1px solid var(--line-soft); }
}
@media (max-width: 900px) { .laurels { grid-template-columns: 1fr; } .nums { grid-template-columns: 1fr 1fr; } }

/* ---------- Founders ---------- */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.founder { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: clamp(420px, 44vw, 600px); padding: clamp(28px, 3.6vw, 50px); display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; background: linear-gradient(180deg, #121110, #080808); border: 1px solid var(--line-soft); }
.founder::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 50% at 80% 10%, var(--hi-soft), transparent 70%); transition: opacity 1s; opacity: 0.6; }
.founder:hover::before { opacity: 1; }
.founder .vname { position: absolute; top: clamp(28px, 3.6vw, 50px); right: clamp(24px, 3.6vw, 50px); z-index: -1; writing-mode: vertical-rl; white-space: nowrap; font-family: var(--mincho); font-weight: 600; font-size: clamp(48px, 5.6vw, 92px); line-height: 1; letter-spacing: 0.2em; color: rgba(237, 231, 221, 0.1); transition: color 1s; }
.founder:hover .vname { color: rgba(224, 53, 31, 0.5); }
.founder .no { font-size: 10px; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase; }
.founder h3 { font-family: "Bodoni Moda", var(--mincho), serif; font-weight: 300; font-size: clamp(38px, 4.4vw, 68px); line-height: 1; margin: 14px 0 8px; }
html[lang="ja"] .founder h3 { font-family: var(--mincho); font-weight: 600; letter-spacing: 0.1em; }
.founder .alt { font-size: 12px; letter-spacing: 0.24em; color: var(--muted); }
.founder .role { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; letter-spacing: 0.1em; color: var(--ivory); }
@media (max-width: 900px) { .founders { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.cta { text-align: center; padding: clamp(130px, 16vw, 240px) 0; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; left: 50%; bottom: -30%; width: 90vw; height: 70%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(closest-side, rgba(224, 53, 31, 0.2), transparent); pointer-events: none; }
.cta .btn-row { justify-content: center; }
.cta .wrap { position: relative; }

/* ==========================================================
   WORKS — tickets
   ========================================================== */
.filters { display: inline-flex; gap: 4px; padding: 4px; border-radius: 999px; border: 1px solid var(--line); }
.filters button { background: transparent; border: 0; border-radius: 999px; padding: 9px 18px; cursor: pointer; font-size: 11px; font-weight: 500; letter-spacing: 0.2em; color: var(--muted); transition: background 0.5s var(--ease), color 0.5s; }
.filters button.active { background: var(--ivory); color: #0a0a0a; }
.tickets { display: grid; gap: clamp(22px, 3vw, 40px); }
.ticket {
  --stub: clamp(200px, 22%, 280px); --notch: 18px;
  position: relative; display: grid; grid-template-columns: minmax(0, 1fr) var(--stub); filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
  transition: transform 0.9s var(--slow);
}
.ticket.hide { display: none; }
.ticket:hover { transform: translateY(-6px); }
.t-main, .t-stub { position: relative; border-radius: var(--r-xl); }
.t-main {
  background: #121110; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); overflow: hidden; border-top-right-radius: 0; border-bottom-right-radius: 0;
  -webkit-mask: radial-gradient(circle var(--notch) at 100% 0, #0000 98%, #000) top / 100% 51% no-repeat, radial-gradient(circle var(--notch) at 100% 100%, #0000 98%, #000) bottom / 100% 51% no-repeat;
          mask: radial-gradient(circle var(--notch) at 100% 0, #0000 98%, #000) top / 100% 51% no-repeat, radial-gradient(circle var(--notch) at 100% 100%, #0000 98%, #000) bottom / 100% 51% no-repeat;
}
.t-stub {
  background: var(--paper); color: #141312; padding: 26px 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 18px;
  border-top-left-radius: 0; border-bottom-left-radius: 0; transform-origin: 0 100%; transition: transform 0.9s var(--slow);
  -webkit-mask: radial-gradient(circle var(--notch) at 0 0, #0000 98%, #000) top / 100% 51% no-repeat, radial-gradient(circle var(--notch) at 0 100%, #0000 98%, #000) bottom / 100% 51% no-repeat;
          mask: radial-gradient(circle var(--notch) at 0 0, #0000 98%, #000) top / 100% 51% no-repeat, radial-gradient(circle var(--notch) at 0 100%, #0000 98%, #000) bottom / 100% 51% no-repeat;
}
.t-stub::before { content: ""; position: absolute; left: 0; top: var(--notch); bottom: var(--notch); border-left: 2px dotted rgba(20, 19, 18, 0.35); }
.ticket:hover .t-stub { transform: rotate(3deg) translate(8px, -2px); }
.t-art { position: relative; min-height: 100%; aspect-ratio: 1.43 / 1; overflow: hidden; }
.t-art .media > i { transition: transform 2s var(--slow); }
.ticket:hover .t-art .media > i { transform: scale(calc(var(--zoom, 1) * 1.06)); }
.t-info { padding: clamp(22px, 3vw, 40px); display: flex; flex-direction: column; justify-content: space-between; gap: 24px; min-width: 0; }
.t-top { display: flex; justify-content: space-between; gap: 12px; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }
.t-title { font-family: "Bodoni Moda", var(--mincho), serif; font-weight: 400; font-size: clamp(34px, 4vw, 64px); line-height: 0.95; margin: 0; overflow-wrap: anywhere; }
.t-title.jp { font-family: var(--mincho); font-weight: 600; letter-spacing: 0.08em; font-size: clamp(30px, 3.4vw, 54px); line-height: 1.2; }
.t-romaji { display: block; margin-top: 8px; font-size: 11px; letter-spacing: 0.3em; color: var(--muted); text-transform: uppercase; }
.t-grid { display: grid; grid-template-columns: repeat(4, auto); justify-content: space-between; gap: 14px; border-top: 1px solid var(--line); padding-top: 16px; }
.t-grid span { display: block; font-size: 9px; letter-spacing: 0.26em; color: var(--dim); text-transform: uppercase; }
.t-grid b { font-family: "Bodoni Moda", serif; font-weight: 400; font-size: 22px; }
.t-award { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--ivory); }
.t-award svg { flex: 0 0 40px; width: 40px; color: var(--hi); }
.t-stub .admit { font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 600; }
.t-stub .big { font-family: "Bodoni Moda", var(--mincho), serif; font-size: 40px; font-weight: 400; line-height: 1; overflow-wrap: anywhere; }
.t-stub .big.jp { font-family: var(--mincho); font-weight: 600; font-size: 22px; letter-spacing: 0.06em; }
.barcode { height: 44px; background: repeating-linear-gradient(90deg, #141312 0 2px, transparent 2px 4px, #141312 4px 5px, transparent 5px 8px, #141312 8px 11px, transparent 11px 12px); border-radius: 2px; }
.serial { font-size: 10px; letter-spacing: 0.2em; font-variant-numeric: tabular-nums; }
.tear { align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; padding: 11px 18px; border-radius: 999px; border: 0; background: #141312; color: var(--paper); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; transition: background 0.4s; text-decoration: none; }
.tear:hover { background: var(--hi); color: #fff; }
.ticket.premiere .t-main { background: linear-gradient(120deg, #1b0d0a, #121110 60%); }
.ticket.premiere .t-stub { background: var(--hi); color: #fff; }
.ticket.premiere .t-stub::before { border-color: rgba(255, 255, 255, 0.5); }
.ticket.premiere .barcode { background: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 4px, #fff 4px 5px, transparent 5px 8px, #fff 8px 11px, transparent 11px 12px); }
.ticket.premiere .tear { background: #fff; color: var(--hi); }
.ticket.premiere .tear:hover { background: #141312; color: #fff; }
.ticket.rv { transform: translateY(50px) rotate(-1deg); }
.ticket.rv.in { transform: none; }
.ticket.rv.in:hover { transform: translateY(-6px); }
@media (max-width: 900px) {
  .ticket { grid-template-columns: 1fr; --stub: auto; }
  .t-main { grid-template-columns: 1fr; border-radius: var(--r-xl) var(--r-xl) 0 0;
    -webkit-mask: radial-gradient(circle var(--notch) at 0 100%, #0000 98%, #000) left / 51% 100% no-repeat, radial-gradient(circle var(--notch) at 100% 100%, #0000 98%, #000) right / 51% 100% no-repeat;
            mask: radial-gradient(circle var(--notch) at 0 100%, #0000 98%, #000) left / 51% 100% no-repeat, radial-gradient(circle var(--notch) at 100% 100%, #0000 98%, #000) right / 51% 100% no-repeat; }
  .t-stub { border-radius: 0 0 var(--r-xl) var(--r-xl); transform-origin: 0 0;
    -webkit-mask: radial-gradient(circle var(--notch) at 0 0, #0000 98%, #000) left / 51% 100% no-repeat, radial-gradient(circle var(--notch) at 100% 0, #0000 98%, #000) right / 51% 100% no-repeat;
            mask: radial-gradient(circle var(--notch) at 0 0, #0000 98%, #000) left / 51% 100% no-repeat, radial-gradient(circle var(--notch) at 100% 0, #0000 98%, #000) right / 51% 100% no-repeat; }
  .t-stub::before { left: var(--notch); right: var(--notch); top: 0; bottom: auto; border-left: 0; border-top: 2px dotted rgba(20, 19, 18, 0.35); }
  .ticket:hover .t-stub { transform: rotate(-1.5deg) translateY(6px); }
  .t-grid { grid-template-columns: repeat(2, auto); }
}

/* ---------- Modal (YouTube player) ---------- */
.modal { position: fixed; inset: 0; z-index: 950; display: grid; place-items: center; padding: var(--gutter); background: rgba(3, 3, 3, 0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); opacity: 0; pointer-events: none; transition: opacity 0.6s; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal .player { width: min(1200px, 100%, calc((100vh - 160px) * 16 / 9)); aspect-ratio: 16 / 9; border-radius: var(--r-xl); overflow: hidden; background: #000; transform: scale(0.94) translateY(20px); transition: transform 0.8s var(--slow); }
.modal.open .player { transform: none; }
.modal iframe { width: 100%; height: 100%; border: 0; display: block; }
.modal .close { position: absolute; top: 22px; right: 22px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(20, 20, 20, 0.6); cursor: pointer; font-size: 20px; }
.modal .close:hover { background: var(--ivory); color: #000; }
.modal .mt { position: absolute; left: var(--gutter); top: 34px; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); }

/* ==========================================================
   TEAM — end credits
   ========================================================== */
.credits { max-width: 880px; margin: 0 auto; text-align: center; }
.credits .block { padding: 44px 0; border-top: 1px solid var(--line-soft); }
.credits .role { font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--hi); margin-bottom: 22px; }
.credits .names { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 40px; }
.credits .nm { font-family: var(--mincho); font-weight: 600; font-size: clamp(24px, 2.6vw, 36px); letter-spacing: 0.14em; line-height: 1.3; transition: color 0.5s; }
.credits .nm small { display: block; font-family: "Bodoni Moda", serif; font-weight: 400; font-style: italic; font-size: 16px; letter-spacing: 0.06em; color: var(--muted); }
.credits .nm:hover { color: var(--hi); }
@media (max-width: 600px) { .credits .names { grid-template-columns: 1fr; } }
.records { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.record { border-radius: var(--r-lg); border: 1px solid var(--line-soft); background: var(--panel); padding: 30px; transition: border-color 0.5s; }
.record:hover { border-color: var(--line); }
.record .y { font-family: "Bodoni Moda", serif; font-size: 30px; color: var(--hi); line-height: 1; }
.record h3 { margin: 16px 0 6px; font-size: 17px; font-weight: 500; line-height: 1.5; }
.record p { margin: 0; color: var(--muted); font-size: 14px; }
@media (max-width: 800px) { .records { grid-template-columns: 1fr; } }

/* ==========================================================
   NEWSROOM
   ========================================================== */
.news-feature { display: grid; grid-template-columns: 1.5fr 1fr; border-radius: var(--r-xl); overflow: hidden; background: var(--panel); border: 1px solid var(--line-soft); margin-bottom: 16px; }
.news-feature .frame { position: relative; aspect-ratio: 2.39 / 1; overflow: hidden; }
.news-feature .txt { padding: clamp(26px, 3.6vw, 50px); display: flex; flex-direction: column; justify-content: flex-end; }
.news-feature h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.3; margin: 18px 0 0; }
html[lang="ja"] .news-feature h2 { font-weight: 600; letter-spacing: 0.04em; }
.ntag { display: inline-flex; gap: 14px; align-items: center; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--hi); }
.ntag em { font-style: normal; color: var(--muted); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ncard { border-radius: var(--r-lg); overflow: hidden; background: var(--panel); border: 1px solid var(--line-soft); transition: transform 0.9s var(--slow), border-color 0.5s, opacity 1.4s var(--slow); }
.ncard:hover { border-color: var(--line); }
.ncard .frame { position: relative; aspect-ratio: 1.43 / 1; overflow: hidden; }
.ncard .frame .media > i { transition: transform 1.6s var(--slow); }
.ncard:hover .frame .media > i { transform: scale(calc(var(--zoom, 1) * 1.05)); }
.ncard .txt { padding: 24px 24px 30px; }
.ncard h3 { font-size: 16px; font-weight: 500; line-height: 1.6; margin: 12px 0 0; }
@media (max-width: 1000px) { .news-grid { grid-template-columns: 1fr 1fr; } .news-feature { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 16px; align-items: stretch; }
.cinfo { border-radius: var(--r-xl); border: 1px solid var(--line-soft); background: var(--panel); padding: clamp(26px, 3.6vw, 50px); display: flex; flex-direction: column; }
.cinfo .item { padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.cinfo .item:first-child { padding-top: 0; }
.cinfo .item:last-child { border-bottom: 0; }
.cinfo small { display: block; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.cinfo .big { font-family: "Bodoni Moda", serif; font-weight: 300; font-size: clamp(30px, 3vw, 46px); line-height: 1.1; transition: color 0.4s; }
.cinfo .mail { font-size: clamp(14px, 1.3vw, 18px); letter-spacing: 0.02em; word-break: break-all; transition: color 0.4s; }
.cinfo a:hover { color: var(--hi); }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a { display: inline-flex; gap: 10px; align-items: center; padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; transition: background 0.4s, color 0.4s; }
.socials a:hover { background: var(--ivory); color: #0a0a0a; }
.socials svg { width: 16px; height: 16px; }
.form { border-radius: var(--r-xl); border: 1px solid var(--line-soft); background: var(--panel); padding: clamp(26px, 3.6vw, 50px); }
.field { position: relative; margin-bottom: 14px; }
.field input, .field textarea, .field select {
  width: 100%; background: #0a0a09; border: 1px solid #262523; border-radius: 14px; color: var(--ivory); font: inherit; font-size: 16px;
  padding: 26px 16px 10px; outline: none; transition: border-color 0.4s, box-shadow 0.4s; -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 170px; resize: vertical; }
.field label { position: absolute; left: 17px; top: 18px; color: var(--dim); font-size: 15px; pointer-events: none; transition: all 0.3s var(--ease); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(237, 231, 221, 0.5); box-shadow: 0 0 0 4px rgba(237, 231, 221, 0.06); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label, .field select + label { top: 7px; font-size: 10px; letter-spacing: 0.14em; color: var(--muted); }
.field.sel::after { content: ""; position: absolute; right: 20px; top: 24px; width: 7px; height: 7px; border-right: 1px solid var(--muted); border-bottom: 1px solid var(--muted); transform: rotate(45deg); pointer-events: none; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { color: var(--dim); font-size: 12px; margin: 14px 0 0; text-align: center; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .row2 { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer { padding: 90px 0 30px; border-top: 1px solid var(--line-soft); }
.foot-tag { font-family: var(--mincho); font-weight: 600; font-size: clamp(20px, 3.2vw, 46px); letter-spacing: 0.3em; line-height: 1.5; margin: 0 0 70px; text-align: center; }
.foot-tag small { display: block; font-family: "Bodoni Moda", serif; font-style: italic; font-weight: 300; font-size: 0.5em; letter-spacing: 0.06em; color: var(--muted); margin-top: 6px; }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line-soft); }
.foot-grid img { height: 22px; width: auto; margin-bottom: 14px; }
.foot-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.foot-links { display: flex; gap: 14px 30px; flex-wrap: wrap; }
.foot-links a { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); transition: color 0.4s; }
.foot-links a:hover { color: var(--ivory); }
.foot-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 22px; font-size: 11px; color: var(--dim); letter-spacing: 0.1em; }
.foot-bottom a:hover { color: var(--ivory); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; transition-delay: 0s !important; }
  .rv, .split .ch, .smara-word span { opacity: 1 !important; transform: none !important; filter: none !important; }
  .frame-in { clip-path: none; }
  .grain { display: none; }
}

/* ---------- Slow, weighty text reveal ---------- */
.slow { opacity: 0; transform: translateY(18px); filter: blur(6px); transition: opacity 2.4s var(--slow), transform 2.8s var(--slow), filter 2.4s var(--slow); }
.in .slow, .slow.in { opacity: 1; transform: none; filter: none; }
.slow.s2 { transition-delay: 0.4s; } .slow.s3 { transition-delay: 0.8s; } .slow.s4 { transition-delay: 1.2s; }

/* ==========================================================
   TEAM — timeline as a strip of film
   ========================================================== */
.pin { position: relative; }
.pin-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.strip-wrap { padding-inline: var(--gutter); }
.strip {
  position: relative; display: flex; width: max-content; padding: 40px 10px; border-radius: 14px; background: #0d0c0b;
  transform: translate3d(var(--tx, 0px), 0, 0); will-change: transform;
}
.strip::before, .strip::after {
  content: ""; position: absolute; left: 12px; right: 12px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='14'><rect x='7' y='1' width='16' height='12' rx='3' fill='%23060606'/></svg>") repeat-x;
}
.strip::before { top: 13px; } .strip::after { bottom: 13px; }
.fr { position: relative; flex: 0 0 auto; width: min(52vw, calc((100vh - 360px) * 1.5)); aspect-ratio: 3 / 2; margin: 0 6px; border-radius: 6px; overflow: hidden; background: #000; }
.fr .media { opacity: 0.42; transition: opacity 2.4s ease; }
.fr .media > i { filter: grayscale(0.3) contrast(1.05); }
.fr.in .media { opacity: 0.5; }
.fr::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent 65%); }
.fr .edge { position: absolute; left: 14px; top: 10px; z-index: 2; font-family: var(--sans); font-size: 9px; letter-spacing: 0.3em; color: rgba(224, 53, 31, 0.85); }
.fr .body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(20px, 2.6vw, 36px); }
.fr .yr { font-family: "Bodoni Moda", serif; font-weight: 400; font-size: clamp(46px, 5vw, 86px); line-height: 1; letter-spacing: -0.02em; }
.fr .yr.hi { color: var(--hi); font-style: italic; }
.fr h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(19px, 1.7vw, 26px); line-height: 1.35; margin: 14px 0 6px; }
html[lang="ja"] .fr h3 { font-weight: 600; letter-spacing: 0.06em; }
.fr p { margin: 0; color: var(--muted); font-size: 14px; }
.fr .award { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--hi); }
.fr .award svg { width: 26px; }
.pin-foot { display: flex; align-items: center; gap: 24px; margin-top: clamp(26px, 4vh, 44px); }
.pin-bar { flex: 1; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.pin-bar i { position: absolute; inset: 0; background: var(--ivory); transform-origin: left; transform: scaleX(var(--hp, 0)); }
@media (max-width: 900px), (max-height: 560px) {
  .pin { height: auto !important; }
  .pin-sticky { position: static; height: auto; padding: 40px 0; }
  .strip-wrap { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .strip-wrap::-webkit-scrollbar { display: none; }
  .strip { transform: none; }
  .fr { width: 80vw; scroll-snap-align: center; }
  .pin-foot { display: none; }
}

/* ==========================================================
   EVENTS
   ========================================================== */
.marquee-board {
  position: relative; border-radius: var(--r-xl); padding: clamp(46px, 7vw, 100px) clamp(24px, 5vw, 70px); text-align: center; background: radial-gradient(80% 90% at 50% 0%, #1a100d, #0b0a09 70%);
  box-shadow: inset 0 0 0 1px var(--line-soft);
}
.marquee-board::before {
  content: ""; position: absolute; inset: 14px; border-radius: calc(var(--r-xl) - 8px); pointer-events: none;
  background:
    radial-gradient(circle, #ffd9b0 0 2px, rgba(255, 170, 110, 0.35) 3px, transparent 5px) 0 0 / 26px 26px repeat-x,
    radial-gradient(circle, #ffd9b0 0 2px, rgba(255, 170, 110, 0.35) 3px, transparent 5px) 0 100% / 26px 26px repeat-x;
  animation: bulbs 1.6s steps(2) infinite;
}
@keyframes bulbs { 50% { opacity: 0.55; } }
.marquee-board h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 3vw, 46px); line-height: 1.3; margin: 0; }
html[lang="ja"] .marquee-board h2 { font-weight: 600; letter-spacing: 0.08em; }
.marquee-board p { color: var(--muted); margin: 14px 0 0; }
.marquee-board .btn-row { justify-content: center; margin-top: 30px; }
.ev-list { border-top: 1px solid var(--line); }
.ev { display: grid; grid-template-columns: 180px 1fr auto; gap: clamp(18px, 3vw, 40px); align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line-soft); transition: padding 0.8s var(--slow); }
.ev:hover { padding-left: 14px; }
.ev .date { font-family: "Bodoni Moda", serif; font-weight: 400; font-size: clamp(38px, 3.6vw, 58px); line-height: 1; }
.ev h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2vw, 30px); line-height: 1.3; margin: 0; }
html[lang="ja"] .ev h3 { font-weight: 600; letter-spacing: 0.05em; }
.ev p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.ev .st { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); white-space: nowrap; }
.ev .st.up { border-color: var(--hi); color: #fff; background: var(--hi); }
@media (max-width: 700px) { .ev { grid-template-columns: 1fr; gap: 10px; } .ev .st { justify-self: start; } }

/* ==========================================================
   INSTAGRAM
   ========================================================== */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ig-post { border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.ig-post iframe { display: block; width: 100%; height: 560px; border: 0; }
.ig-card { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line-soft); background: var(--panel); }
.ig-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 4px; }
.ig-tiles div { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 10px; }
.ig-tiles div .media > i { transition: transform 1.6s var(--slow); }
.ig-card:hover .ig-tiles div .media > i { transform: scale(calc(var(--zoom, 1) * 1.06)); }
.ig-txt { padding: clamp(28px, 4vw, 60px); display: flex; flex-direction: column; justify-content: center; }
.ig-handle { font-family: "Bodoni Moda", serif; font-weight: 400; font-style: normal; font-size: clamp(30px, 3.2vw, 50px); line-height: 1.1; margin: 0; }
.ig-txt p { color: var(--muted); margin: 16px 0 0; }
@media (max-width: 900px) { .ig-grid { grid-template-columns: 1fr; } .ig-card { grid-template-columns: 1fr; } }

/* Let the teaser breathe once the screen fills the viewport */
.stage .shade::after { opacity: calc(1 - var(--e, 0) * 0.75); }

/* ==========================================================
   v5 — legibility, line-drawn opening, sandwich, depth of field,
   cursor, lift, vertical film timeline
   ========================================================== */

/* ---------- Legibility: Bodoni's sturdier cut at every size ---------- */
body * { font-optical-sizing: none; }
.display, .title, .subtitle { font-weight: 500; letter-spacing: -0.02em; }
.num b { font-weight: 600; }
.reel .cap h3, .t-title, .founder h3, .smara-word, .fr .yr, .ev .date, .cinfo .big, .ig-handle, .t-stub .big, .t-grid b, .hgal-count, .laurel .wreath .yr, .record .y, .vt .yr { font-weight: 500; }
html[lang="ja"] .display, html[lang="ja"] .title, html[lang="ja"] .subtitle, html[lang="ja"] .founder h3, html[lang="ja"] .laurel h3 { font-weight: 700; }
.screen-tag, .credits .nm, .foot-tag, .reel .cap h3.jp, .t-title.jp, .founder .vname { font-weight: 700; }
.lead { color: #b3ada4; }

/* ---------- Depth of field ---------- */
.focus { filter: blur(14px); transform: scale(1.04); opacity: 0.55; transition: filter 2.4s var(--slow), transform 2.8s var(--slow), opacity 2.2s var(--slow); }
.focus.in, .in .focus, .in > .focus { filter: none; transform: none; opacity: 1; }
.bokeh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bokeh i {
  position: absolute; border-radius: 50%; opacity: var(--o, 0.5);
  background: radial-gradient(circle, rgba(255, 196, 160, 0.55), rgba(224, 53, 31, 0.18) 55%, transparent 70%);
  filter: blur(var(--b, 8px)); animation: drift var(--d, 18s) ease-in-out infinite alternate;
}
@keyframes drift { to { transform: translate(var(--dx, 20px), var(--dy, -20px)) scale(1.18); } }
/* Hover one, the rest fall out of focus */
.hgal-track:hover .reel:not(:hover) .frame, .news-grid:hover .ncard:not(:hover), .founders:hover .founder:not(:hover), .laurels:hover .laurel:not(:hover) { filter: blur(3px) brightness(0.6); }
.tickets:hover .ticket:not(:hover) { filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5)) blur(2.5px) brightness(0.62); }
.ticket { transition: transform 0.9s var(--slow), filter 0.9s var(--slow); }

/* ---------- Lift: the selected thing rises toward you ---------- */
.reel .frame, .ncard, .founder, .laurel, .ig-card, .feature .frame, .vt .fr2, .ev, .marquee-board, .nums {
  transition: transform 0.9s var(--slow), box-shadow 0.9s var(--slow), filter 0.9s var(--slow), border-color 0.6s;
}
.reel:hover .frame, .ncard:hover, .founder:hover, .laurel:hover, .ig-card:hover, .feature .frame:hover, .vt .fr2:hover,
.reel:focus-visible .frame, .ncard:focus-within, .ig-card:focus-visible {
  transform: translateY(-10px) scale(1.012);
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(237, 231, 221, 0.14), 0 0 60px -20px rgba(224, 53, 31, 0.35);
}
.reel:active .frame, .ncard:active, .ig-card:active, .ticket:active { transform: translateY(-4px) scale(0.99); transition-duration: 0.25s; }
.ticket:hover { transform: translateY(-12px) scale(1.008); }

/* ---------- Custom cursor ---------- */
@media (hover: hover) and (pointer: fine) {
  html.has-cursor, html.has-cursor a, html.has-cursor button, html.has-cursor .ticket, html.has-cursor .reel { cursor: none; }
}
.cursor { position: fixed; left: 0; top: 0; z-index: 2000; pointer-events: none; opacity: 0; transition: opacity 0.4s; }
.cursor.on { opacity: 1; }
.cursor .dot, .cursor .ring { position: absolute; left: 0; top: 0; border-radius: 50%; will-change: transform; }
.cursor .dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--hi); transition: opacity 0.3s, transform 0.3s; }
.cursor .ring {
  width: 38px; height: 38px; margin: -19px 0 0 -19px; border: 1px solid rgba(237, 231, 221, 0.55);
  display: grid; place-items: center; font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: transparent;
  transition: width 0.5s var(--ease), height 0.5s var(--ease), margin 0.5s var(--ease), background 0.5s, border-color 0.5s, color 0.3s;
}
.cursor.hover .ring { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(237, 231, 221, 0.07); border-color: var(--ivory); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.cursor.label .ring { width: 86px; height: 86px; margin: -43px 0 0 -43px; background: var(--ivory); border-color: transparent; color: #0a0a0a; }
.cursor.label .dot, .cursor.hover .dot { opacity: 0; }
.cursor.down .ring { width: 30px; height: 30px; margin: -15px 0 0 -15px; }
.cursor.off { opacity: 0 !important; }

/* ---------- Clapperboard: legible marker, slower handwriting, blurred world behind ---------- */
.slate { background: rgba(3, 3, 3, 0.62); backdrop-filter: blur(0px) saturate(1); -webkit-backdrop-filter: blur(0px) saturate(1); transition: opacity 0.35s ease, backdrop-filter 0.7s ease, -webkit-backdrop-filter 0.7s ease; }
.slate.show { backdrop-filter: blur(18px) saturate(0.7); -webkit-backdrop-filter: blur(18px) saturate(0.7); }
.board { position: relative; z-index: 1; filter: blur(8px); transition: transform 0.5s var(--ease), filter 0.6s var(--slow); }
.slate.show .board { filter: blur(0) drop-shadow(0 40px 70px rgba(0, 0, 0, 0.8)); }
.slab span { font-size: 10px; color: #d9d3c9; letter-spacing: 0.24em; }
.slab b {
  font-family: "Permanent Marker", "Yusei Magic", cursive; font-weight: 400; letter-spacing: 0.02em; color: #fbf8f2;
  clip-path: inset(0 100% 0 0); transition: clip-path 0.55s cubic-bezier(0.45, 0, 0.2, 1); transition-delay: calc(var(--i, 0) * 0.1s + 0.15s);
}
.slate.write .slab b { clip-path: inset(0 0 0 0); }
.slate.quiet .slab b { transition: none; }
.slab .big b { font-size: clamp(34px, 6vw, 56px); }

/* ---------- Opening: lines draw a 16:9 frame, which closes into CinemaScope ---------- */
.stage { height: 210vh; }
.screen { --scope: 12.83%; filter: blur(18px) brightness(1.3); transition: opacity 1.6s ease, filter 2.6s var(--slow); }
.op-fill .screen { opacity: 1; filter: none; }
.op-done .screen { opacity: 1; filter: none; transition: none; }
.op-fill .screen .media { transform: none; }
.op-fill .screen-over img, .op-fill .screen-tag .c { opacity: 1; transform: none; filter: none; }
.draw { position: absolute; left: 0; right: 0; top: 0; aspect-ratio: 16 / 9; z-index: 4; pointer-events: none; }
.draw .fl { position: absolute; left: 0; right: 0; top: 0; bottom: 0; transition: top 1.7s var(--ease-io), bottom 1.7s var(--ease-io), opacity 1.4s ease; }
.draw i { position: absolute; background: var(--ivory); box-shadow: 0 0 14px rgba(237, 231, 221, 0.45); }
.draw .t, .draw .b { left: 0; right: 0; height: 1.5px; transform: scaleX(0); }
.draw .t { top: 0; } .draw .b { bottom: 0; }
.draw .l, .draw .r { top: 0; bottom: 0; width: 1.5px; transform: scaleY(0); transform-origin: top; }
.draw .l { left: 0; } .draw .r { right: 0; }
.draw .c { left: 50%; top: 50%; width: 1.5px; height: 1.5px; margin: -1px; border-radius: 50%; opacity: 0; box-shadow: 0 0 24px 6px rgba(237, 231, 221, 0.6); transition: opacity 0.6s; }
.op-dot .draw .c { opacity: 1; }
.op-draw .draw .c { opacity: 0; transition-delay: 0.3s; }
.op-draw .draw .t { transform: scaleX(1); transition: transform 1s var(--ease-io); }
.op-draw .draw .l, .op-draw .draw .r { transform: scaleY(1); transition: transform 0.9s 0.8s var(--ease-io); }
.op-draw .draw .b { transform: scaleX(1); transition: transform 1s 1.5s var(--ease-io); }
.op-scopeline .draw .fl { top: 12.83%; bottom: 12.83%; }
.op-fill .draw .fl { opacity: 0; }
.op-done .draw { display: none; }
.op-draw .screen-meta, .op-fill .screen-meta { margin-top: 16px; opacity: 1; }
.op-fill .screen-chip, .op-fill .sound { opacity: 1; }
.stage .bokeh { z-index: -1; }

/* ---------- Sandwich: two more screens slide in above and below ---------- */
.screen-box { transform: scale(var(--g, 1)); }
.sw {
  position: absolute; left: 0; right: 0; top: 0; aspect-ratio: 16 / 9; overflow: hidden; background: #000; z-index: -1;
  clip-path: inset(12.83% 0 12.83% 0 round var(--r-xl));
  transform: translate(var(--sx, 0px), var(--sy, 0px)); opacity: var(--so, 0); filter: blur(var(--sb, 12px)) brightness(0.62);
  will-change: transform, filter;
}
.sw .media > i { filter: brightness(0.7); }
.sw .yt { width: 120%; height: 120%; }
.sw .tagline { position: absolute; left: 50%; top: 12.83%; transform: translate(-50%, 14px); z-index: 2; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; background: rgba(10, 10, 10, 0.5); border: 1px solid rgba(255, 255, 255, 0.12); white-space: nowrap; }
.op-done .screen-meta { opacity: calc(1 - var(--e, 0) * 5); }

/* ---------- Works: manifesto + next film ---------- */
.manifesto { text-align: center; position: relative; padding: clamp(110px, 14vw, 200px) 0; overflow: hidden; }
.manifesto .title { max-width: 1100px; margin-inline: auto; position: relative; }
.manifesto .lead { margin-inline: auto; position: relative; }
.next-film { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.next-film .frame { position: relative; aspect-ratio: 2.39 / 1; border-radius: var(--r-xl); overflow: hidden; }
.next-film .tag { font-family: var(--mincho); font-weight: 700; font-size: clamp(22px, 2.4vw, 36px); line-height: 1.6; letter-spacing: 0.08em; margin: 18px 0 0; }
html[lang="en"] .next-film .tag { font-family: "Bodoni Moda", serif; font-style: italic; font-weight: 500; letter-spacing: 0; line-height: 1.3; }
.next-film p.syn { color: #b3ada4; margin: 22px 0 0; line-height: 1.9; }
@media (max-width: 900px) { .next-film { grid-template-columns: 1fr; } }

/* ---------- Team: founders' words + how we work ---------- */
.founder .bio { margin: 14px 0 0; color: #b3ada4; font-size: 13px; line-height: 1.8; max-width: 520px; }
.founder blockquote { margin: 22px 0 0; font-family: var(--mincho); font-weight: 700; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.7; letter-spacing: 0.04em; color: var(--ivory); }
html[lang="en"] .founder blockquote { font-family: "Bodoni Moda", serif; font-style: italic; font-weight: 500; letter-spacing: 0; }
.founder blockquote::before { content: ""; display: block; width: 26px; height: 1px; background: var(--hi); margin-bottom: 14px; }
.how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.how > div { border-radius: var(--r-lg); border: 1px solid var(--line-soft); background: var(--panel); padding: clamp(26px, 3vw, 40px); }
.how .n { font-family: "Bodoni Moda", serif; font-size: 20px; color: var(--hi); }
.how h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 1.8vw, 26px); margin: 18px 0 10px; line-height: 1.4; }
html[lang="ja"] .how h3 { font-weight: 700; letter-spacing: 0.05em; }
.how p { margin: 0; color: #b3ada4; font-size: 14px; line-height: 1.85; }
.motto { text-align: center; margin-top: clamp(50px, 7vw, 90px); font-family: var(--mincho); font-weight: 700; font-size: clamp(20px, 2.6vw, 36px); letter-spacing: 0.12em; }
html[lang="en"] .motto { font-family: "Bodoni Moda", serif; font-style: italic; font-weight: 500; letter-spacing: 0; }
@media (max-width: 900px) { .how { grid-template-columns: 1fr; } }

/* ---------- Team: vertical film timeline ---------- */
.vt { max-width: 1120px; margin: 0 auto; }
.vt-row { display: grid; grid-template-columns: clamp(76px, 16vw, 210px) 1fr; column-gap: clamp(16px, 4vw, 56px); }
.vt-y { position: relative; }
.vt-y .yr { position: sticky; top: calc(var(--nav-h) + 30px); display: block; text-align: right; padding-top: 22px; font-family: "Bodoni Moda", serif; font-size: clamp(34px, 5.4vw, 88px); line-height: 1; letter-spacing: -0.02em; }
.vt-y .yr.hi { color: var(--hi); font-style: italic; }
.vt-cell { position: relative; background: #0d0c0b; padding: 12px clamp(34px, 4vw, 52px); }
.vt-row:first-child .vt-cell { border-radius: 16px 16px 0 0; padding-top: 26px; }
.vt-row:last-child .vt-cell { border-radius: 0 0 16px 16px; padding-bottom: 26px; }
.vt-cell::before, .vt-cell::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='30'><rect x='1' y='7' width='12' height='16' rx='3' fill='%23060606'/></svg>") repeat-y;
}
.vt-cell::before { left: clamp(10px, 1.2vw, 18px); } .vt-cell::after { right: clamp(10px, 1.2vw, 18px); }
.vt .fr2 { position: relative; aspect-ratio: 16 / 9; border-radius: 6px; overflow: hidden; background: #000; }
.vt .fr2 .media { opacity: 0.5; }
.vt .fr2 .media > i { filter: grayscale(0.25) contrast(1.05); }
.vt .fr2::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.15) 70%); pointer-events: none; }
.vt .edge { position: absolute; left: 14px; top: 10px; z-index: 2; font-size: 9px; letter-spacing: 0.3em; color: rgba(224, 53, 31, 0.9); }
.vt .body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(18px, 2.6vw, 36px); }
.vt h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(19px, 2vw, 30px); line-height: 1.35; margin: 0 0 8px; }
html[lang="ja"] .vt h3 { font-weight: 700; letter-spacing: 0.05em; }
.vt p { margin: 0; color: #c4beb5; font-size: clamp(13px, 1.1vw, 15px); line-height: 1.8; max-width: 640px; }
.vt .award { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--hi); }
.vt .award svg { width: 26px; }
@media (max-width: 700px) { .vt .body p { display: none; } .vt .fr2 { aspect-ratio: 4 / 3; } .vt .body p.keep { display: block; } }
.vt .fr2 > .focus { position: absolute; inset: 0; }
.founder .vname { color: rgba(237, 231, 221, 0.06); }

/* ==========================================================
   v6 — bed-to-cinema opening, automatic sandwich, profiles, lens cursor
   ========================================================== */
.stage { height: 100svh; overflow: hidden; transition: height 2s var(--ease-io); }
.stage.instant, .stage.instant * { transition: none !important; }
.stage-sticky { position: relative; top: auto; height: 100svh; overflow: visible; }
.screen-box { transform: translateY(var(--gy, 0px)) scale(var(--g, 1)); transition: transform 2.1s var(--ease-io); }
body.opening .stage .bokeh { opacity: 0; }
.stage .bokeh { transition: opacity 2.6s ease; }

/* the line that draws the screen — rounded like the final frame */
.lines { position: absolute; left: 0; top: 0; width: 100%; aspect-ratio: 16 / 9; height: auto; z-index: 5; pointer-events: none; overflow: visible; opacity: 0; transition: opacity 1.4s ease; }
.op-lines .lines { opacity: 1; }
.lines path { fill: none; stroke: var(--ivory); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; filter: drop-shadow(0 0 6px rgba(237, 231, 221, 0.5)); }
/* the phone's camera: traced slowly, then it glows in */
.lines .island { fill: var(--ivory); fill-opacity: 0; stroke: var(--ivory); stroke-width: 1.3; stroke-dasharray: 1; stroke-dashoffset: 1; filter: drop-shadow(0 0 5px rgba(237, 231, 221, 0.5));
  transition: stroke-dashoffset 1.2s var(--ease-io), fill-opacity 0.8s ease; }
.op-phone .lines .island { stroke-dashoffset: 0; fill-opacity: 0.85; transition: stroke-dashoffset 2.2s var(--ease-io) 0.5s, fill-opacity 1.8s ease 2.5s; }
.op-fill .lines { opacity: 0; }
.op-done .lines { display: none; }

/* aspect ratio readout, centred under the screen */
.screen-meta { justify-content: center; flex-direction: column; align-items: center; gap: 6px; margin-top: 20px; opacity: 0; transition: opacity 1s ease; }
.op-phone .screen-meta, .op-close .screen-meta, .op-fill .screen-meta { opacity: 1; }
.op-done .screen-meta { opacity: 0 !important; }
.screen-meta .ratio { font-size: 15px; font-weight: 500; letter-spacing: 0.26em; font-variant-numeric: tabular-nums; }
.screen-meta .cap { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); }

/* sandwich screens */
.sw { display: block; opacity: 0; filter: blur(16px) brightness(0.62); transition: transform 2.1s var(--ease-io), filter 2.4s var(--slow), opacity 1.2s ease; }
.sw.in { opacity: 1; filter: blur(1.2px) brightness(0.66); }
.sw.in:hover { filter: blur(0) brightness(0.95); }
.sw .tagline { transition: background 0.4s, color 0.4s; }
.sw:hover .tagline { background: var(--ivory); color: #0a0a0a; }

/* Things that lift go somewhere. Things that don't go anywhere don't lift. */
.nolift:hover, .nolift { transform: none !important; box-shadow: none !important; }
a.ncard, a.founder, a.laurel, a.fr2 { display: block; color: inherit; }
.laurels .laurel.nolift:hover::before { opacity: 0; }
.ticket { cursor: pointer; }
.founder[data-profile] { cursor: pointer; text-align: left; font: inherit; color: inherit; width: 100%; }
.founder .more { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ivory); }
.founder .more::after { content: "→"; transition: transform 0.5s var(--ease); }
.founder:hover .more::after { transform: translateX(5px); }

/* Director profile popup */
.profile { position: fixed; inset: 0; z-index: 960; display: grid; place-items: center; padding: var(--gutter); background: rgba(3, 3, 3, 0.55); backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); opacity: 0; pointer-events: none; transition: opacity 0.5s ease, backdrop-filter 0.8s ease, -webkit-backdrop-filter 0.8s ease; }
.profile.open { opacity: 1; pointer-events: auto; backdrop-filter: blur(18px) saturate(0.7); -webkit-backdrop-filter: blur(18px) saturate(0.7); }
.profile .card {
  position: relative; width: min(1040px, 100%); max-height: min(86vh, 820px); overflow: auto; display: grid; grid-template-columns: 0.9fr 1.1fr;
  border-radius: var(--r-xl); background: #0e0d0c; border: 1px solid var(--line); box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.9);
  transform: translateY(40px) scale(0.96); filter: blur(10px); transition: transform 0.9s var(--slow), filter 0.8s var(--slow);
}
.profile.open .card { transform: none; filter: none; }
.profile .ph { position: relative; min-height: 420px; background: #000; overflow: hidden; }
.profile .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.15) contrast(1.05); transform: scale(1.06); transition: transform 3s var(--slow); }
.profile.open .ph img { transform: none; }
.profile .ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 45%); }
.profile .ph .vn { position: absolute; left: 24px; bottom: 20px; z-index: 2; font-family: var(--mincho); font-weight: 700; font-size: clamp(30px, 3.4vw, 48px); letter-spacing: 0.14em; }
.profile .tx { padding: clamp(28px, 3.6vw, 50px); }
.profile .tx h3 { font-family: "Bodoni Moda", serif; font-weight: 500; font-size: clamp(30px, 3vw, 44px); line-height: 1.05; margin: 10px 0 6px; }
.profile .tx .meta { color: var(--muted); font-size: 13px; letter-spacing: 0.06em; }
.profile .tx blockquote { margin: 26px 0; padding-left: 18px; border-left: 2px solid var(--hi); font-family: var(--mincho); font-weight: 700; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.7; }
html[lang="en"] .profile .tx blockquote { font-family: "Bodoni Moda", serif; font-style: italic; font-weight: 500; }
.profile .tx h4 { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--hi); margin: 26px 0 12px; font-weight: 600; }
.profile .tx ul { margin: 0; padding: 0; list-style: none; }
.profile .tx li { position: relative; padding: 0 0 10px 18px; color: #c4beb5; font-size: 14px; line-height: 1.75; }
.profile .tx li::before { content: ""; position: absolute; left: 0; top: 0.8em; width: 8px; height: 1px; background: var(--muted); }
.profile .tx p.msg { color: #c4beb5; font-size: 14px; line-height: 1.9; margin: 0; }
.profile .tx .btn-row { margin-top: 28px; }
.profile .x { position: absolute; top: 16px; right: 16px; z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: rgba(14, 13, 12, 0.7); cursor: pointer; font-size: 20px; }
.profile .x:hover { background: var(--ivory); color: #000; }
.profile .tx > * { opacity: 0; transform: translateY(14px); transition: opacity 1.2s var(--slow), transform 1.2s var(--slow); }
.profile.open .tx > * { opacity: 1; transform: none; }
.profile.open .tx > *:nth-child(2) { transition-delay: 0.08s; } .profile.open .tx > *:nth-child(3) { transition-delay: 0.16s; }
.profile.open .tx > *:nth-child(4) { transition-delay: 0.24s; } .profile.open .tx > *:nth-child(5) { transition-delay: 0.32s; }
.profile.open .tx > *:nth-child(n + 6) { transition-delay: 0.4s; }
@media (max-width: 800px) { .profile .card { grid-template-columns: 1fr; } .profile .ph { min-height: 300px; } }

/* Instagram: five latest posts, side by side */
.ig-grid { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: thin; }
.ig-post { flex: 0 0 min(340px, 82vw); scroll-snap-align: start; border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.ig-post iframe { height: 600px; }

/* ---------- Lens cursor: aperture ring, f-stop readout ---------- */
.cursor .ring { transition: width 0.35s var(--ease), height 0.35s var(--ease), margin 0.35s var(--ease), background 0.35s, border-color 0.35s, color 0.2s; }
.cursor .ticks { position: absolute; inset: -7px; border-radius: 50%; pointer-events: none;
  background: repeating-conic-gradient(from 0deg, rgba(237, 231, 221, 0.75) 0 1.1deg, transparent 1.1deg 10deg);
  -webkit-mask: radial-gradient(circle, transparent calc(50% - 4px), #000 calc(50% - 3px), #000 50%, transparent calc(50% + 1px));
          mask: radial-gradient(circle, transparent calc(50% - 4px), #000 calc(50% - 3px), #000 50%, transparent calc(50% + 1px));
  transform: rotate(var(--rot, 0deg)); opacity: 0.8; transition: opacity 0.3s; }
.cursor.label .ticks { opacity: 0.35; }
.cursor .fstop { position: absolute; left: 0; top: 0; margin: 20px 0 0 24px; white-space: nowrap; font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.18em; color: var(--muted); font-variant-numeric: tabular-nums; will-change: transform; transition: color 0.3s, opacity 0.3s; }
.cursor .fstop b { color: var(--ivory); font-weight: 600; }
.cursor.hover .fstop b, .cursor.label .fstop b { color: var(--hi); }
.cursor.label .fstop { opacity: 0; }

/* ==========================================================
   v7 — Instagram wall, drifting filmography, news sheet
   ========================================================== */
/* Instagram: black, editorial, room to breathe */
.ig-wall { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 3vw, 48px) clamp(20px, 2.4vw, 36px); align-items: start; }
.ig-tile { display: flex; flex-direction: column; gap: 18px; color: inherit; }
.ig-tile.lead-tile { grid-row: span 2; }
.ig-img { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden; background: #0d0c0b; transition: transform 0.9s var(--slow), box-shadow 0.9s var(--slow), filter 2.4s var(--slow), opacity 2.2s var(--slow); }
.ig-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2) brightness(0.82); transition: transform 1.8s var(--slow), filter 1s ease; }
.ig-tile:hover .ig-img { transform: translateY(-10px); box-shadow: 0 50px 90px -40px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(237, 231, 221, 0.14); }
.ig-tile:hover .ig-img img { transform: scale(1.05); filter: none; }
.ig-wall:hover .ig-tile:not(:hover) .ig-img { filter: blur(3px) brightness(0.6); }
.ig-cap .d { font-size: 10px; letter-spacing: 0.28em; color: var(--hi); font-variant-numeric: tabular-nums; }
.ig-cap p { margin: 10px 0 12px; font-size: 14px; line-height: 1.75; color: #c4beb5; }
.lead-tile .ig-cap p { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2vw, 28px); line-height: 1.45; color: var(--ivory); }
html[lang="ja"] .lead-tile .ig-cap p { font-weight: 700; letter-spacing: 0.04em; }
.ig-cap .go { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); transition: color 0.4s; }
.ig-tile:hover .go { color: var(--ivory); }
@media (max-width: 900px) { .ig-wall { grid-template-columns: 1fr 1fr; } .ig-tile.lead-tile { grid-column: span 2; grid-row: auto; } }
@media (max-width: 560px) { .ig-wall { grid-template-columns: 1fr; } .ig-tile.lead-tile { grid-column: auto; } }

/* Filmography that drifts by itself */
.hgal.auto { overflow: hidden; }
.hgal.auto .hgal-sticky { position: static; height: auto; padding: clamp(90px, 11vw, 160px) 0; overflow: visible; }
.hgal.auto .hgal-track { overflow: visible !important; scroll-snap-type: none; width: max-content; will-change: transform; }
@media (max-width: 900px) { .hgal.auto .reel { flex-basis: 78vw; } .hgal.auto .hgal-foot { display: flex; } }

/* News cards and feature are buttons that open a sheet */
button.news-feature, button.ncard { font: inherit; color: inherit; text-align: left; padding: 0; cursor: pointer; width: 100%; }
.profile .tx h3.news-h { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.35; }
html[lang="ja"] .profile .tx h3.news-h { font-weight: 700; letter-spacing: 0.04em; }
.profile .news-ph .media > i { filter: brightness(0.85); }
.profile .tx p.msg { font-size: 15px; }

/* Opening lockup, as in the original logo: the wordmark spans the emblem */
.logo-intro { gap: 20px; }
.logo-intro span { font-family: var(--mark); font-weight: 500; font-size: 30px; letter-spacing: 0.04em; margin-right: 0; text-transform: none; color: var(--hi); white-space: nowrap; }
body.lo-in .logo-intro span { opacity: 1; }
/* Instagram's images can't be linked directly, so the official embed is cropped to just the photo */
.ig-img { aspect-ratio: 1 / 1; }
.ig-frame { position: absolute; left: -2px; top: -54px; width: calc(100% + 4px); height: calc(100% + 460px); border: 0; pointer-events: none; opacity: 0; transition: opacity 1.2s ease, transform 1.8s var(--slow); background: #0d0c0b; }
.ig-frame.ready { opacity: 1; }
.ig-tile:hover .ig-frame { transform: scale(1.04); }
.ig-img::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(237, 231, 221, 0.06); border-radius: inherit; }
.ig-frame { left: 0; top: 0; width: 400px; height: 1000px; transform-origin: 0 0; transition: opacity 1.2s ease; }
.ig-tile:hover .ig-frame { transform: none; }
.ig-tile:hover .ig-img { transform: translateY(-10px) scale(1.01); }

/* The camera must not show as a dot before it is traced: flat line ends, and hidden until its turn */
.lines .island { stroke-linecap: butt; opacity: 0; }
.op-phone .lines .island { opacity: 1; transition: stroke-dashoffset 2.2s var(--ease-io) 0.5s, fill-opacity 1.8s ease 2.5s, opacity 0.01s linear 0.5s; }
.lines .island { transition: stroke-dashoffset 1.2s var(--ease-io), fill-opacity 0.8s ease, opacity 0.6s ease 0.8s; }

/* ==========================================================
   v9 — no jolts, slower logo, true CinemaScope teaser
   ========================================================== */
/* The ratio readout floats under the screen and never takes layout space,
   so text appearing in it can't nudge the screen. */
.screen-meta, .op-draw .screen-meta, .op-fill .screen-meta, .op-169 .screen-meta { position: absolute; left: 0; right: 0; top: calc(100% + 18px); margin: 0 !important; height: 44px; justify-content: flex-start; }
.screen-meta .cap { min-height: 14px; }

/* The logo comes up slowly, and leaves slowly */
.logo-intro img { transform: scale(0.985); filter: blur(10px); transition: opacity 3.2s ease, transform 4.5s var(--slow), filter 3.2s ease; }
body.opening.lo-out .logo-intro { transition: opacity 1.9s ease; }

/* Show the teaser at its real framing: the 2.39:1 picture inside the 16:9 player lines up with the
   screen's CinemaScope band — no zoom. */
.screen .yt, .sw .yt { width: 100%; height: 100%; }

/* ==========================================================
   v10 — REC cursor, lens text size, richer profiles, timeline sheets, line breaking
   ========================================================== */
/* Japanese breaks between phrases, not inside words; headings balance, prose avoids orphans */
html[lang="ja"] body { word-break: auto-phrase; line-break: strict; }
h1, h2, h3, h4, blockquote, .display, .title, .subtitle { text-wrap: balance; }
p, li, dd { text-wrap: pretty; }

/* Cursor: press = REC */
.cursor .recfill { position: absolute; inset: 0; border-radius: 50%; background: var(--hi); transform: scale(0); transition: transform 0.35s var(--ease); }
.cursor .rec { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; color: #fff; white-space: nowrap; opacity: 0; transition: opacity 0.2s; }
.cursor.rec .ring { width: 74px; height: 74px; margin: -37px 0 0 -37px; border-color: var(--hi); background: transparent; color: transparent; }
.cursor.rec .recfill { transform: scale(1); }
.cursor.rec .rec { opacity: 1; animation: blink 1s steps(2) infinite; }
.cursor.rec .lbl { opacity: 0; }
.cursor.rec .dot { opacity: 0; }
.cursor.rec .fstop b { color: var(--hi); }
.cursor .lbl { position: relative; z-index: 1; transition: opacity 0.2s; }

/* Lens ring: text size by focal length */
.lens { position: relative; display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 10px 0 4px; border-radius: 999px; border: 1px solid var(--line); cursor: ew-resize; user-select: none; touch-action: none; }
.lens:focus-visible { outline: 1px solid var(--ivory); outline-offset: 3px; }
.lens-barrel {
  --cell: 28px; position: relative; width: 84px; height: 22px; border-radius: 999px; overflow: hidden;
  background: repeating-linear-gradient(90deg, #1b1a19 0 2px, #0c0c0b 2px 5px);
  background-position: calc(var(--li, 1) * -14px + var(--drag, 0px)) 0; transition: background-position 0.6s var(--ease);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 12px 0 10px -8px #000, inset -12px 0 10px -8px #000;
  -webkit-mask: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent); mask: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}
.lens-scale { position: absolute; top: 0; bottom: 0; left: 50%; display: flex; transform: translateX(calc(var(--li, 1) * -1 * var(--cell) - var(--cell) / 2 + var(--drag, 0px))); transition: transform 0.6s var(--ease); }
.lens-scale span { width: var(--cell); display: grid; place-items: center; font-size: 10px; font-weight: 600; letter-spacing: 0.02em; color: var(--dim); font-variant-numeric: tabular-nums; transition: color 0.4s; }
.lens-scale span.on { color: var(--ivory); }
.lens-idx { position: absolute; left: calc(4px + 42px); top: -1px; width: 0; height: 0; border-left: 3px solid transparent; border-right: 3px solid transparent; border-top: 4px solid var(--hi); transform: translateX(-50%); z-index: 2; }
.lens-mm { font-size: 9px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; }
@media (max-width: 900px) { .lens { padding-right: 6px; } .lens-mm { display: none; } }
@media (max-width: 420px) { .lens-barrel { width: 60px; } .lens-idx { left: calc(4px + 30px); } }

/* The chosen focal length magnifies the page (the opening screen keeps its own framing) */
main > *:not(.stage), footer { zoom: var(--lens, 1); }

/* Founder card: the lead award */
.f-awards { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-size: 12px; letter-spacing: 0.08em; color: var(--muted); flex-wrap: wrap; }
.f-awards svg { width: 34px; color: var(--hi); }
.f-awards b { font-family: "Bodoni Moda", serif; font-size: 22px; color: var(--ivory); font-weight: 500; margin-right: 4px; }
.f-awards em { font-style: normal; color: var(--ivory); padding-left: 12px; border-left: 1px solid var(--line); }

/* Profile sheet */
.profile .card { max-height: min(90vh, 880px); }
.profile .tx { padding: clamp(28px, 3.6vw, 54px); }
.profile .tx .meta { line-height: 1.9; }
.profile .tx blockquote { font-size: clamp(18px, 1.8vw, 24px); line-height: 1.75; }
.p-awards { margin: 30px 0 8px; padding: 22px 22px 8px; border-radius: 18px; background: linear-gradient(135deg, rgba(224, 53, 31, 0.14), rgba(224, 53, 31, 0.02) 60%); border: 1px solid rgba(224, 53, 31, 0.3); }
.p-awards h4 { margin: 0 0 14px !important; display: flex; align-items: baseline; gap: 10px; }
.p-awards h4 span { font-family: "Bodoni Moda", serif; font-size: 26px; color: var(--ivory); letter-spacing: 0; }
.p-awards ol { list-style: none; margin: 0; padding: 0; }
.p-awards li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: center; padding: 12px 0; border-top: 1px solid rgba(237, 231, 221, 0.08); }
.p-awards li:first-child { border-top: 0; }
.p-awards li svg { width: 34px; color: var(--hi); opacity: 0.8; }
.p-awards li b { display: block; font-family: var(--serif); font-weight: 600; font-size: 16px; line-height: 1.4; }
.p-awards li small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.p-awards li.top b { font-size: clamp(19px, 1.8vw, 24px); color: #fff; }
.p-awards li.top svg { width: 34px; opacity: 1; }
.p-career { display: grid; grid-template-columns: auto 1fr; gap: 12px 20px; margin: 0; }
.p-career dt { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hi); padding-top: 5px; white-space: nowrap; }
.p-career dd { margin: 0; color: #c4beb5; font-size: 14px; line-height: 1.85; padding-bottom: 12px; border-bottom: 1px solid rgba(237, 231, 221, 0.06); }
.p-films { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.p-films a { display: block; color: inherit; }
.p-films .m { position: relative; aspect-ratio: 2.39 / 1; border-radius: 10px; overflow: hidden; margin-bottom: 8px; transition: transform 0.8s var(--slow); }
.p-films a:hover .m { transform: translateY(-4px); }
.p-films b { display: block; font-family: "Bodoni Moda", var(--mincho), serif; font-weight: 500; font-size: 18px; }
.p-films small { color: var(--muted); font-size: 11px; }
.p-msg p { margin: 0 0 14px; color: #d3cdc4; font-size: 15px; line-height: 2; }
html[lang="ja"] .p-msg p { font-family: var(--mincho); font-weight: 600; letter-spacing: 0.04em; }
.p-motto { margin: 24px 0 0; font-family: var(--mincho); font-weight: 700; font-size: 18px; letter-spacing: 0.08em; color: var(--ivory); }
html[lang="en"] .p-motto { font-family: "Bodoni Moda", serif; font-style: italic; font-weight: 500; letter-spacing: 0; }
.profile .tl-y { font-family: "Bodoni Moda", serif; font-size: clamp(44px, 5vw, 72px); letter-spacing: -0.02em; }

/* Timeline frames are buttons now */
button.fr2 { display: block; width: 100%; padding: 0; border: 0; font: inherit; color: inherit; text-align: left; cursor: pointer; }
.profile .p-awards li { padding: 12px 0 !important; }
.profile .p-awards li::before { display: none; }
/* the portrait stays put while the text scrolls beside it */
.profile .ph { position: sticky; top: 0; align-self: start; height: min(90vh, 880px); min-height: 420px; }
@media (max-width: 800px) { .profile .ph { position: relative; height: 320px; min-height: 0; } }

/* Slim cursor over the nav: a thin ring, nothing filled or blurred, so the lens ring / language
   switch / buttons stay fully readable. REC shows as a small tag beside it instead of a fill. */
.cursor.slim .ring,
.cursor.slim.hover .ring,
.cursor.slim.label .ring,
.cursor.slim.rec .ring { width: 26px; height: 26px; margin: -13px 0 0 -13px; background: transparent; border-color: rgba(237, 231, 221, 0.55); backdrop-filter: none; -webkit-backdrop-filter: none; color: transparent; }
.cursor.slim .ticks { opacity: 0.45; inset: -5px; }
.cursor.slim .recfill { transform: scale(0) !important; }
.cursor.slim .lbl { opacity: 0; }
.cursor.slim.rec .ring { border-color: var(--hi); }
.cursor.slim .rec { left: 100%; top: 100%; transform: translate(6px, 4px); font-size: 8px; color: var(--hi); }
.cursor.slim .fstop { opacity: 0; }
.cursor.slim .dot { opacity: 1 !important; }

/* ---------- Big lens dial (press & hold the small ring) ---------- */
.lens.held { border-color: var(--ivory); }
.lens-pop {
  --cellB: 92px;
  position: fixed; z-index: 1200; width: min(420px, calc(100vw - 24px)); padding: 20px 20px 18px; border-radius: 24px;
  background: rgba(14, 13, 12, 0.92); border: 1px solid var(--line); backdrop-filter: blur(22px) saturate(140%); -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
  opacity: 0; pointer-events: none; transform: translateY(-10px) scale(0.96); transform-origin: top right;
  transition: opacity 0.35s ease, transform 0.5s var(--ease);
}
.lens-pop.open { opacity: 1; pointer-events: auto; transform: none; }
.lp-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.lp-t { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); }
.lp-read { font-family: "Bodoni Moda", serif; font-size: 22px; font-weight: 500; color: var(--ivory); font-variant-numeric: tabular-nums; }
.lp-barrel {
  position: relative; height: 84px; border-radius: 16px; overflow: hidden; cursor: ew-resize;
  background: repeating-linear-gradient(90deg, #1d1c1a 0 3px, #0b0b0a 3px 8px);
  background-position: calc(var(--li, 1) * -46px) 0; transition: background-position 0.6s var(--ease);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 40px 0 30px -20px #000, inset -40px 0 30px -20px #000;
}
.lp-idx { position: absolute; left: 50%; top: 0; width: 0; height: 0; margin-left: -6px; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 8px solid var(--hi); z-index: 2; }
.lp-scale { position: absolute; top: 0; bottom: 0; left: 50%; display: flex; transform: translateX(calc(var(--li, 1) * -1 * var(--cellB) - var(--cellB) / 2)); transition: transform 0.6s var(--ease); }
.lp-scale button { width: var(--cellB); border: 0; background: none; cursor: pointer; display: grid; place-content: center; justify-items: center; color: var(--dim); transition: color 0.4s, transform 0.5s var(--ease); }
.lp-scale button b { font-family: "Bodoni Moda", serif; font-weight: 500; font-size: 30px; line-height: 1; font-variant-numeric: tabular-nums; }
.lp-scale button small { font-size: 9px; letter-spacing: 0.24em; margin-top: 4px; }
.lp-scale button.on { color: var(--ivory); transform: scale(1.12); }
.lp-scale button:hover { color: var(--ivory); }
.lp-sample { display: flex; justify-content: center; align-items: baseline; gap: 18px; margin-top: 14px; color: var(--muted); }
.lp-sample span { font-family: var(--mincho); font-weight: 600; font-size: calc(18px * var(--lens, 1)); transition: font-size 0.4s var(--ease); }
.lp-sample span:first-child { font-family: "Bodoni Moda", serif; }

/* Clapperboard: the real logo, as it is */
.slab .prod > div { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.slab-logo { height: clamp(40px, 7vw, 58px); width: auto; display: block; }
.slab-mark { height: 12px; width: auto; display: block; }
.slab .prod > div { display: block; }
.slab-logo { height: clamp(48px, 8.4vw, 68px); margin: 6px 0 2px; }
/* slate logo centred in its row (the "Prod." label stays top-left) */
.slab .prod > div { position: relative; text-align: center; }
.slab .prod > div > span { position: absolute; left: 16px; top: 10px; }
.slab-logo { display: inline-block; margin: 16px auto 4px; }
/* motto sits right under the name, before the message */
.profile .p-motto { margin: 18px 0 0; padding: 12px 16px; border-radius: 12px; background: rgba(237, 231, 221, 0.04); border: 1px solid var(--line-soft); display: inline-block; }
/* motto: after the message, set plainly as before, with the awards right beneath */
.profile .p-motto { display: block; margin: 0 0 6px; padding: 0; border: 0; border-radius: 0; background: none; }
.profile .p-message { margin-bottom: 20px; }
