/* 押形と鋼。紙の上に刀を置き、墨の文字で名前を添える。
   背景は場面ごとの紙（白・砥石・焼刃土）。アクセントは緑青（ボタンと選択中の印だけ）。
   書体：和文の見出し＝しっぽり明朝 B1、本文＝Zen角ゴシック New、欧文＝Bodoni Moda（可変）、操作部品＝システム書体（Apple HIG）。 */
:root {
  --paper: #eef0eb;
  --stone: #d6d9d1;
  --clay: #b3b7ae;
  --ink: #15181a;
  --ink-2: #41474b;
  --accent: #2c6759;
  --line: rgba(21, 24, 26, 0.3);
  --bg: var(--paper);
  --f-mincho: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  --f-gothic: "Zen Kaku Gothic New", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
  --f-latin: "Bodoni Moda", "Bodoni 72", "Didot", serif;
  --f-ui: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", "Segoe UI", sans-serif;
  --gutter: clamp(16px, 4.2vw, 64px);
  --bar-h: 64px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  color-scheme: light;
}
html { background: var(--paper); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--f-gothic); font-size: 15px; line-height: 1.85; -webkit-font-smoothing: antialiased; }
html, body { overflow-x: clip; }
* { box-sizing: border-box; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.num { font-family: var(--f-latin); font-variant-numeric: lining-nums tabular-nums; font-optical-sizing: auto; }

/* ---------------- 画面の層 */
#gl { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; display: block; }
#cutfx { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 6; pointer-events: none; display: block; }
.loader { position: fixed; inset: 0; z-index: 20; display: grid; place-items: center; background: var(--paper); transition: opacity 0.7s var(--ease), visibility 0.7s; }
.loader b { display: none; }
.loader i { position: absolute; left: 50%; bottom: 18vh; width: min(240px, 50vw); height: 1px; background: var(--line); transform: translateX(-50%); overflow: hidden; }
.loader i::after { content: ""; position: absolute; inset: 0; background: var(--ink); transform-origin: left; transform: scaleX(var(--lp, 0)); transition: transform 0.3s var(--ease); }
.loaded .loader { opacity: 0; visibility: hidden; }

/* ---------------- 上の帯 */
.bar { position: fixed; top: 0; left: 0; right: 0; z-index: 10; height: calc(var(--bar-h) + env(safe-area-inset-top, 0px)); padding: env(safe-area-inset-top, 0px) var(--gutter) 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; pointer-events: none; }
.bar > * { pointer-events: auto; }
.mark { display: flex; align-items: baseline; gap: 12px; text-decoration: none; color: var(--ink); }
.mark-ja { font: 700 20px/1 var(--f-mincho); letter-spacing: 0.14em; }
.mark-en { font: italic 500 15px/1 var(--f-latin); font-variation-settings: "opsz" 14; letter-spacing: 0.02em; }
.nav { display: flex; align-items: center; gap: clamp(10px, 1.8vw, 26px); font: 500 14px/1 var(--f-ui); white-space: nowrap; }
.nav a:not(.btn) { text-decoration: none; padding: 12px 2px; position: relative; color: var(--ink); }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease); }
.nav a:not(.btn):hover::after, .nav a.on::after { transform: scaleX(1); transform-origin: left; }

/* ---------------- ボタン（Apple HIG：高さ 44pt・カプセル・システム書体） */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 22px; border-radius: 999px; font: 600 15px/1 var(--f-ui); text-decoration: none; cursor: pointer; border: 1px solid var(--ink); background: transparent; color: var(--ink); white-space: nowrap; transition: transform 0.2s var(--ease), background-color 0.25s, color 0.25s; -webkit-tap-highlight-color: transparent; }
.btn:active { transform: scale(0.97); }
.btn.solid { background: var(--ink); color: var(--paper); }
.btn.solid:hover { background: var(--accent); border-color: var(--accent); }
.btn.ghost:hover { background: rgba(21, 24, 26, 0.06); }
.btn.lg { min-height: 52px; padding: 0 28px; font-size: 16px; }
.btn.sm { min-height: 36px; padding: 0 16px; font-size: 14px; }
.btn.icon { width: 44px; padding: 0; }
.ico { width: 18px; height: 18px; flex: none; }
.btn .ico-off { display: none; }
.btn[aria-pressed="false"] .ico-on { display: none; }
.btn[aria-pressed="false"] .ico-off { display: block; }

/* セグメント（HIG の segmented control） */
.seg { position: relative; display: inline-grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); padding: 3px; border-radius: 999px; background: #dfe2dc; box-shadow: inset 0 0 0 1px rgba(21, 24, 26, 0.06); font: 500 14px/1 var(--f-ui); isolation: isolate; max-width: 100%; }
.seg-i { position: relative; z-index: 1; min-height: 38px; padding: 0 14px; border: 0; border-radius: 999px; background: transparent; color: var(--ink); font: inherit; cursor: pointer; white-space: nowrap; }
.seg-i[aria-selected="true"] { font-weight: 700; }
.seg-thumb { position: absolute; z-index: 0; top: 3px; bottom: 3px; left: 3px; width: var(--tw, 60px); border-radius: 999px; background: var(--paper); box-shadow: 0 1px 2px rgba(21, 24, 26, 0.14), 0 3px 10px rgba(21, 24, 26, 0.08); transform: translateX(var(--tx, 0px)); transition: transform 0.45s var(--ease), width 0.45s var(--ease); }

/* ---------------- 文字 */
.h2 { font: 700 clamp(28px, 3.3vw, 54px)/1.25 var(--f-mincho); letter-spacing: 0.04em; margin: 0 0 18px; text-wrap: balance; }
.h3 { font: 700 clamp(20px, 1.9vw, 28px)/1.35 var(--f-mincho); letter-spacing: 0.04em; margin: 0 0 10px; }
.body { margin: 0; max-width: 34em; color: var(--ink-2); font-size: clamp(14px, 1.05vw, 16px); }
.ph { display: inline-block; }
/* 日本語は文節（BudouX の区切り）でだけ折る */
.hero-sub, .body, .hn-text, .sn-text, .wn-text, .end-line, .end-note, .hint, .credits dd, .h2, .h3 { word-break: keep-all; overflow-wrap: anywhere; line-break: strict; }
.ch { display: inline-block; will-change: transform; }
.hint { display: flex; align-items: center; gap: 8px; margin: 0; font: 500 13px/1.5 var(--f-ui); color: var(--ink-2); }
[data-cut] { -webkit-user-select: none; user-select: none; }
.is-cut, .is-cut * { visibility: hidden !important; }

/* ---------------- 場面（固定区間） */
.stage { position: relative; height: calc((var(--len) + 100) * 1vh); background: var(--bg); }
.stage > .sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: clip; z-index: 2; }
.sticky > * { position: absolute; z-index: 2; }
.anchor { position: absolute; left: 0; top: calc(var(--at) * 1vh); width: 1px; height: 1px; }
.s-blade { --bg: var(--paper); }
.s-process { --bg: var(--clay); --ink-2: #2b3033; --line: rgba(21, 24, 26, 0.38); }
.s-process .seg { background: #c9ccc4; }
.s-tameshi { --bg: var(--stone); --ink-2: #353a3d; height: 100vh; height: 100svh; min-height: 640px; }
.s-works { --bg: var(--paper); }
.part { transition: none; }

/* 抜刀（ヒーロー） */
.hero { inset: 0; }
.hero-title { position: absolute; right: calc(var(--gutter) + 2vw); top: calc(var(--bar-h) + 3vh); margin: 0; writing-mode: vertical-rl; font: 800 clamp(76px, 12.5vw, 200px)/1 var(--f-mincho); letter-spacing: 0.1em; color: var(--ink); }
.hero-en { position: absolute; right: calc(var(--gutter) + 2vw + clamp(92px, 14.4vw, 232px)); top: calc(var(--bar-h) + 4vh); margin: 0; writing-mode: vertical-rl; font: italic 400 clamp(16px, 1.4vw, 22px)/1 var(--f-latin); font-variation-settings: "opsz" 24; letter-spacing: 0.08em; color: var(--ink-2); }
.hero-foot { position: absolute; left: var(--gutter); bottom: max(5vh, 28px); max-width: min(560px, 62vw); display: grid; gap: 22px; }
.hero-sub { margin: 0; font: 500 clamp(15px, 1.25vw, 18px)/1.8 var(--f-gothic); color: var(--ink); max-width: 26em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* 題字が斬れる（2枚の切り抜き） */
.hero .ht-part { visibility: hidden; pointer-events: none; will-change: transform; }
.hero-title.is-split { pointer-events: none; }
/* 切り口の線：位置・長さ・向きは題字の切り抜きと同じ数から JS で決める */
.ht-line { position: absolute; left: 0; top: 0; width: 0; height: 1.5px; margin-top: -0.75px; background: linear-gradient(90deg, transparent, var(--ink) 18%, var(--ink) 82%, transparent); transform-origin: 0 50%; opacity: 0; pointer-events: none; }

/* 刃文 */
.hamon-ui { inset: 0; pointer-events: none; }
.hamon-ui > * { pointer-events: auto; }
.hamon-head { position: absolute; left: var(--gutter); top: calc(var(--bar-h) + 4vh); max-width: min(440px, 42vw); }
.hamon-names { position: absolute; right: var(--gutter); top: calc(var(--bar-h) + 3vh); bottom: 7vh; width: min(520px, 46vw); }
.hn { position: absolute; inset: 0; display: grid; grid-template-columns: auto auto 1fr; grid-template-rows: 1fr auto; column-gap: 18px; justify-items: end; visibility: hidden; }
.hn-ja { grid-column: 3; grid-row: 1; margin: 0; writing-mode: vertical-rl; font: 800 clamp(56px, 7.2vw, 120px)/1 var(--f-mincho); letter-spacing: 0.06em; color: var(--ink); justify-self: end; }
.hn-yomi { grid-column: 2; grid-row: 1; margin: 0; writing-mode: vertical-rl; font: 500 clamp(13px, 1vw, 16px)/1 var(--f-gothic); letter-spacing: 0.3em; color: var(--ink-2); padding-top: 0.6em; }
.hn-en { grid-column: 1; grid-row: 1; margin: 0; writing-mode: vertical-rl; font: italic 400 clamp(20px, 2vw, 32px)/1 var(--f-latin); font-variation-settings: "opsz" 40; color: var(--ink); padding-top: 0.2em; }
.hn-text { grid-column: 1 / 4; grid-row: 2; margin: 18px 0 0; max-width: 26em; justify-self: end; color: var(--ink-2); font-size: clamp(14px, 1vw, 15px); }
.hamon-foot { position: absolute; left: var(--gutter); bottom: max(5vh, 24px); display: grid; gap: 12px; max-width: calc(100vw - 2 * var(--gutter)); }

/* 各部の名前 */
.anatomy-ui { inset: 0; pointer-events: none; }
.anatomy-head { position: absolute; left: var(--gutter); top: calc(var(--bar-h) + 4vh); max-width: min(440px, 42vw); }
.leaders { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.leaders path { fill: none; stroke: var(--ink); stroke-width: 1; vector-effect: non-scaling-stroke; }
.leaders circle { fill: var(--ink); }
.parts { position: absolute; inset: 0; margin: 0; padding: 0; list-style: none; }
.parts li { position: absolute; left: 0; top: 0; display: flex; align-items: baseline; gap: 8px; white-space: nowrap; transform: translate3d(var(--x, -999px), var(--y, -999px), 0); visibility: hidden; }
.parts b { font: 700 clamp(16px, 1.35vw, 21px)/1 var(--f-mincho); letter-spacing: 0.06em; }
.parts span { font: 500 11px/1 var(--f-gothic); letter-spacing: 0.12em; color: var(--ink-2); }
.section-note { position: absolute; right: var(--gutter); bottom: max(6vh, 28px); max-width: min(420px, 40vw); visibility: hidden; }
.section-key { display: flex; gap: 20px; margin: 14px 0 0; font: 500 13px/1 var(--f-gothic); }
.section-key dt { display: flex; align-items: center; gap: 8px; }
.sw { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.sw.kawa { background: #c9ced1; box-shadow: inset 0 0 0 1px rgba(21,24,26,0.35); }
.sw.shin { background: #6c7176; }

/* 工程 */
.process-head { left: var(--gutter); top: calc(var(--bar-h) + 4vh); max-width: min(460px, 44vw); }
.steps { left: var(--gutter); top: 50%; transform: translateY(-50%); margin: 0; padding: 0; list-style: none; display: grid; gap: 2px; counter-reset: st; }
.steps { transition: opacity 0.5s var(--ease); }
.steps li { counter-increment: st; display: flex; align-items: baseline; gap: 12px; font: 500 14px/2.1 var(--f-gothic); color: var(--ink-2); transition: color 0.3s; }
.steps li::before { content: counter(st, cjk-decimal); font: 500 12px/1 var(--f-mincho); width: 1.6em; color: inherit; }
.steps li .k { transition: transform 0.4s var(--ease); display: inline-block; }
.steps li.on { color: var(--ink); font-weight: 700; }
.steps li.on .k { transform: translateX(6px); }
.steps li.on::before { color: var(--accent); }
.step-now { right: var(--gutter); bottom: max(6vh, 28px); width: min(480px, 44vw); height: 60vh; }
.sn { position: absolute; right: 0; bottom: 0; display: grid; justify-items: end; gap: 10px; visibility: hidden; }
.sn-yomi { margin: 0; font: 500 13px/1 var(--f-gothic); letter-spacing: 0.3em; color: var(--ink-2); }
.sn-ja { margin: 0; font: 800 clamp(40px, 4.6vw, 80px)/1.05 var(--f-mincho); letter-spacing: 0.04em; text-align: right; white-space: nowrap; }
.sn-text { margin: 0; max-width: 25em; color: var(--ink-2); text-align: left; font-size: clamp(14px, 1vw, 15px); }
.folds { right: var(--gutter); top: calc(var(--bar-h) + 3vh); display: flex; gap: clamp(20px, 3vw, 48px); visibility: hidden; }
.folds > div { display: grid; justify-items: end; }
.folds .num { font: 400 clamp(40px, 5vw, 84px)/1 var(--f-latin); font-variation-settings: "opsz" 96; letter-spacing: -0.01em; }
.folds em { font: 500 12px/1 var(--f-gothic); font-style: normal; letter-spacing: 0.2em; color: var(--ink-2); margin-top: 8px; }

/* 試し切り */
.tameshi-head { left: var(--gutter); top: calc(var(--bar-h) + 4vh); max-width: min(420px, 38vw); z-index: 4; pointer-events: none; }
.tameshi-title { font-size: clamp(56px, 8.4vw, 136px); line-height: 1.05; letter-spacing: 0.02em; }
.tameshi-pad { inset: 0; z-index: 3; touch-action: none; cursor: crosshair; }
.tameshi-hud { right: var(--gutter); top: calc(var(--bar-h) + 4vh); z-index: 4; display: grid; justify-items: end; gap: 14px; text-align: right; }
.cutname { margin: 0; display: grid; justify-items: end; }
.cutname span { font: 800 clamp(34px, 3.8vw, 60px)/1.1 var(--f-mincho); letter-spacing: 0.04em; }
.cutname em { font: italic 400 clamp(16px, 1.3vw, 20px)/1 var(--f-latin); font-style: italic; color: var(--ink-2); margin-top: 6px; }
.hasuji { margin: 0; font: 600 14px/1.4 var(--f-ui); min-height: 1.4em; }
.tally { display: flex; gap: 28px; margin: 6px 0 0; }
.tally div { display: grid; justify-items: end; }
.tally dt { font: 500 12px/1 var(--f-gothic); letter-spacing: 0.14em; color: var(--ink-2); }
.tally dd { margin: 6px 0 0; font: 400 clamp(34px, 3.2vw, 52px)/1 var(--f-latin); font-variation-settings: "opsz" 72; }
.tameshi-actions { display: flex; gap: 10px; margin-top: 4px; }
.tameshi-hint { left: 50%; bottom: max(4vh, 20px); transform: translateX(-50%); z-index: 4; white-space: nowrap; pointer-events: none; }

/* 作刀 */
.works-head { left: var(--gutter); top: calc(var(--bar-h) + 4vh); max-width: min(440px, 42vw); }
.works-names { right: var(--gutter); top: calc(var(--bar-h) + 3vh); width: min(460px, 42vw); height: 46vh; }
.wn { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr auto auto; grid-template-rows: auto 1fr; column-gap: 14px; justify-items: end; align-items: start; visibility: hidden; }
.wn-kind { grid-column: 3; grid-row: 1 / 3; margin: 0; writing-mode: vertical-rl; font: 800 clamp(60px, 7.6vw, 128px)/1 var(--f-mincho); letter-spacing: 0.08em; }
.wn-yomi { grid-column: 2; grid-row: 1 / 3; margin: 0; writing-mode: vertical-rl; font: 500 13px/1 var(--f-gothic); letter-spacing: 0.3em; color: var(--ink-2); padding-top: 0.5em; }
.wn-tags { grid-column: 1; grid-row: 1; margin: 0; display: flex; gap: 8px; }
.wn-tags span { font: 700 14px/1 var(--f-mincho); padding: 8px 12px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); letter-spacing: 0.08em; }
.wn-text { grid-column: 1; grid-row: 2; margin: 14px 0 0; max-width: 22em; color: var(--ink-2); font-size: clamp(14px, 1vw, 15px); }
.specs { left: var(--gutter); right: var(--gutter); bottom: calc(max(5vh, 24px) + 62px); margin: 0; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px clamp(12px, 2vw, 32px); }
.specs div { display: grid; gap: 6px; padding-top: 12px; box-shadow: inset 0 1px 0 var(--line); }
.specs dt { font: 500 12px/1 var(--f-gothic); letter-spacing: 0.16em; color: var(--ink-2); }
.specs dd { margin: 0; display: flex; align-items: baseline; gap: 4px; }
.specs .num { font: 400 clamp(26px, 2.6vw, 42px)/1 var(--f-latin); font-variation-settings: "opsz" 60; }
.specs em { font: italic 400 14px/1 var(--f-latin); color: var(--ink-2); }
.works-scale { right: var(--gutter); top: 52%; display: flex; align-items: center; gap: 10px; font: italic 400 14px/1 var(--f-latin); color: var(--ink-2); visibility: hidden; }
.works-scale i { display: block; height: 7px; width: var(--w10, 100px); border: 1px solid var(--ink); border-top: 0; }
.works-tabs { left: var(--gutter); bottom: max(5vh, 24px); }

/* 終わり */
.end { position: relative; z-index: 2; min-height: 100vh; min-height: 100svh; background: var(--stone); display: grid; align-items: end; padding: calc(var(--bar-h) + 6vh) var(--gutter) max(8vh, 40px); }
.end-in { display: grid; gap: 18px; justify-items: start; max-width: 1200px; }
.end-mark { margin: 0 0 2vh; font: 800 clamp(90px, 17vw, 280px)/0.95 var(--f-mincho); letter-spacing: 0.06em; }
.end-line { margin: 0; font: 700 clamp(20px, 2vw, 30px)/1.6 var(--f-mincho); max-width: 28em; }
.end-note { margin: 0; color: var(--ink-2); max-width: 36em; }
.credits { margin: 10px 0 18px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 40px; width: 100%; }
.credits div { display: grid; gap: 6px; }
.credits dt { font: 500 12px/1 var(--f-gothic); letter-spacing: 0.16em; color: var(--ink-2); }
.credits dd { margin: 0; font-size: 14px; line-height: 1.7; }

/* ---------------- スマホ（縦長）：刀は縦に置き、文字は右側と下にまとめる */
@media (max-width: 767px) {
  :root { --bar-h: 56px; }
  body { font-size: 14px; }
  .nav a:not(.btn) { display: none; }
  .mark-en { display: none; }
  .hero-title { font-size: clamp(64px, 20vw, 110px); right: var(--gutter); top: calc(var(--bar-h) + 2vh); }
  .hero-en { right: calc(var(--gutter) + clamp(70px, 22vw, 124px)); top: calc(var(--bar-h) + 3vh); }
  .hero-foot { left: var(--gutter); right: var(--gutter); max-width: none; bottom: max(3vh, 18px); gap: 14px; }
  .hero-sub { font-size: 14px; max-width: 18em; margin-left: auto; text-align: right; }
  .hero-cta { justify-content: flex-end; }
  .hero-cta .btn { flex: 0 1 auto; }
  .hamon-head, .anatomy-head, .process-head, .works-head { left: var(--gutter); right: var(--gutter); max-width: none; top: calc(var(--bar-h) + 1.5vh); }
  .h2 { font-size: clamp(22px, 6.4vw, 30px); margin-bottom: 8px; }
  .hamon-head .body, .anatomy-head .body, .works-head .body { display: none; }
  .hamon-head { left: 44vw; }
  .hamon-head .h2 { font-size: clamp(18px, 5.2vw, 24px); }
  .hamon-names { left: auto; right: var(--gutter); width: 50vw; top: calc(var(--bar-h) + 14vh); bottom: 124px; height: auto; }
  .hn { grid-template-columns: 1fr auto auto; grid-template-rows: auto 1fr; }
  .hn-ja { font-size: clamp(48px, 15vw, 76px); grid-row: 1; }
  .hn-yomi, .hn-en { grid-row: 1; }
  .hn-text { grid-column: 1 / 4; grid-row: 2; font-size: 13px; max-width: 100%; margin-top: 12px; align-self: end; }
  .hamon-foot { bottom: 16px; left: var(--gutter); right: var(--gutter); }
  .hamon-foot .hint { padding-left: 40vw; }
  .seg { display: grid; width: auto; }
  .seg-i { padding: 0 2px; font-size: 12.5px; min-height: 40px; }
  .hint { font-size: 12px; }
  .section-note { left: var(--gutter); right: var(--gutter); max-width: none; bottom: 20px; }
  .parts b { font-size: 15px; }
  .steps { display: none; }
  .step-now { left: 38vw; right: var(--gutter); width: auto; height: auto; top: auto; bottom: 22px; }
  .sn-ja { font-size: clamp(34px, 10vw, 48px); }
  .sn-text { font-size: 13px; max-width: 100%; }
  .folds { top: calc(var(--bar-h) + 1.5vh); right: var(--gutter); }
  .folds .num { font-size: 38px; }
  .tameshi-head { left: var(--gutter); right: var(--gutter); max-width: none; top: calc(var(--bar-h) + 1.5vh); }
  .tameshi-head .body { display: none; }
  .tameshi-title { font-size: clamp(48px, 15vw, 78px); }
  .tameshi-hud { top: auto; bottom: 74px; right: var(--gutter); }
  .cutname span { font-size: 28px; }
  .tally { gap: 18px; }
  .tally dd { font-size: 28px; }
  .tameshi-hint { left: var(--gutter); right: var(--gutter); transform: none; white-space: normal; justify-content: center; text-align: center; bottom: 18px; }
  .works-names { left: 46vw; right: var(--gutter); width: auto; top: calc(var(--bar-h) + 7vh); height: 44vh; }
  .wn { grid-template-columns: 1fr auto auto; grid-template-rows: auto auto 1fr; }
  .wn-kind { grid-column: 3; grid-row: 1 / 3; font-size: clamp(52px, 15vw, 72px); }
  .wn-yomi { grid-column: 2; grid-row: 1 / 3; }
  .wn-tags { grid-column: 1; grid-row: 1; flex-direction: column; align-items: flex-end; gap: 6px; }
  .wn-text { grid-column: 1 / 4; grid-row: 3; margin-top: 12px; max-width: 100%; }
  .wn-text { font-size: 13px; }
  .wn-tags span { font-size: 12px; padding: 6px 9px; }
  .specs { left: 46vw; right: var(--gutter); grid-template-columns: repeat(2, minmax(0, 1fr)); bottom: 76px; gap: 10px 14px; }
  .specs .num { font-size: 24px; }
  .works-scale { display: none; }
  .works-tabs { left: var(--gutter); right: var(--gutter); bottom: 16px; }
  .credits { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .ch { will-change: auto; }
  .seg-thumb, .btn, .nav a::after { transition: none; }
}
