/*
Theme Name: OrangeArrow
Theme URI: 
Author: MOQO
Description: 声優事務所OrangeArrow公式サイトテーマ
Version: 1.0
License: Private
*/

:root {
  --white: #fff;
  --off-white: #f8f7f5;
  --cream: #f2f0ec;
  --black: #111;
  --text: #222;
  --text-light: #777;
  --text-muted: #aaa;
  --border: #ddd;
  --border-light: #eee;
  --accent: #E8A838;
  --placeholder: #ece9e4;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Noto Sans JP', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --talent-rose: #C46B6B;
  --talent-blue: #4A7B9D;
  --talent-green: #6B9E7B;
  --talent-violet: #8B7BB5;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-weight: 300; color: var(--text);
  background: var(--white); overflow-x: hidden;
  -webkit-font-smoothing: antialiased; cursor: none;
}
body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; cursor: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: none; }

/* ═══ CUSTOM CURSOR ═══ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 10000;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference; opacity: 0;
}
.cursor.visible { opacity: 1; }
.cursor.hovering { width: 48px; height: 48px; }

/* ═══ CURSOR TRAIL ═══ */
.cursor-trail {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(232,168,56,0.3); pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease), height 0.5s var(--ease), border-color 0.3s;
  opacity: 0;
}
.cursor-trail.visible { opacity: 1; }
.cursor-trail.hovering { width: 64px; height: 64px; border-color: rgba(232,168,56,0.15); }

/* ═══ SCROLL ARROW GAUGE ═══ */
.scroll-gauge {
  position: fixed; left: 20px; top: 50%; transform: translateY(-50%);
  z-index: 9998; height: 280px; width: 40px;
  opacity: 0; transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.scroll-gauge.vis { opacity: 1; }
.scroll-gauge-track {
  position: absolute; left: 7px; top: 0; width: 1px; height: 100%;
  background: rgba(200,200,200,0.15);
}
.scroll-gauge-fill {
  position: absolute; left: 7px; top: 0; width: 1px; height: 0;
  background: var(--accent);
  transition: height 0.1s linear;
}
.scroll-gauge-arrow {
  position: absolute; left: 7px; top: 0;
  transform: translate(-50%, -2px);
  transition: top 0.1s linear;
}
.scroll-gauge-arrow::before {
  content: ''; display: block;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
}
.scroll-gauge-pct {
  position: absolute; left: 7px; bottom: -22px; transform: translateX(-50%);
  font-family: var(--serif); font-size: 9px; letter-spacing: 0.05em;
  color: var(--accent); opacity: 0.6; white-space: nowrap;
}
.scroll-gauge-letters {
  position: absolute; left: 22px; top: 0; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.scroll-gauge-letter {
  font-family: var(--serif); font-size: 14px; font-weight: 400;
  color: var(--accent); line-height: 1;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.scroll-gauge-letter.vis {
  opacity: 0.7; transform: translateY(0);
}

/* ═══ GRAIN ═══ */
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 128px 128px;
}

/* ═══ LOADER ═══ */
.loader {
  position: fixed; inset: 0; background: var(--white); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px;
}
.loader-logo { width: 60px; opacity: 0; animation: loaderLogoIn 1s var(--ease) 0.2s forwards; }
@keyframes loaderLogoIn { to { opacity: 0.6; } }
.loader-bar { width: 120px; height: 1px; background: rgba(0,0,0,0.08); position: relative; overflow: hidden; }
.loader-bar-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: var(--accent); transition: width 0.8s var(--ease); }
.loader-text { font-family: var(--serif); font-size: 11px; letter-spacing: 0.3em; color: var(--text-muted); }
.loader-out { transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1); clip-path: inset(0 0 0 0); }
.loader-out.done { clip-path: inset(0 0 100% 0); }

/* ═══ HEADER ═══ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; height: 72px;
  z-index: 1000; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, transform 0.5s var(--ease);
}
.header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); }
.header.hidden { transform: translateY(-100%); }
.header-logo img { height: 26px; width: auto; }
.nav-list { display: flex; gap: 40px; }
.nav-list a {
  font-family: var(--serif); font-size: 12px; font-weight: 400;
  letter-spacing: 0.2em; color: var(--text); position: relative;
  transition: color 0.3s ease;
}
.nav-list a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--accent); transition: width 0.4s var(--ease);
}
.nav-list a:hover { color: var(--accent); }
.nav-list a:hover::after { width: 100%; }

.hamburger { display: none; background: none; border: none; width: 32px; height: 32px; position: relative; }
.hamburger span { position: absolute; left: 4px; width: 24px; height: 1px; background: var(--text); transition: 0.4s var(--ease); }
.hamburger span:nth-child(1) { top: 11px; }
.hamburger span:nth-child(2) { top: 16px; }
.hamburger span:nth-child(3) { top: 21px; }
.hamburger.active span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--white); z-index: 999;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: 0.5s var(--ease);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-list { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.mobile-nav-list a {
  font-family: var(--serif); font-size: 28px; letter-spacing: 0.15em;
  color: var(--text); transition: color 0.3s ease;
}
.mobile-nav-list a:hover { color: var(--accent); }

/* ═══ HERO ═══ */
.hero {
  height: 100vh; min-height: 700px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
}

/* ── Curtain tear (arrow slashes → top/bottom split) ── */
.hero-curtain-top, .hero-curtain-btm {
  position: absolute; left: 0; width: 100%; z-index: 4; pointer-events: none;
  overflow: hidden;
}
.hero-curtain-top { top: 0; height: 50%; }
.hero-curtain-btm { top: 50%; height: 50.1%; }
.curtain-strip {
  position: absolute; top: 0; height: 100%;
  background: var(--white);
  transition: transform var(--dur) cubic-bezier(0.4, 0, 0.7, 0.2);
  transition-delay: var(--d);
}
.hero-curtain-top .curtain-strip.tear { transform: translateY(calc(-105% - var(--rnd, 0%))) ; }
.hero-curtain-btm .curtain-strip.tear { transform: translateY(calc(105% + var(--rnd, 0%))); }

/* ── Flying arrow ── */
.hero-arrow {
  position: absolute; top: 50%; z-index: 6;
  right: -160px; transform: translateY(-50%);
  pointer-events: none; opacity: 0;
}
.hero-arrow img {
  height: 56px; width: auto;
  filter: drop-shadow(0 0 24px rgba(232,168,56,1))
          drop-shadow(0 0 60px rgba(232,168,56,0.7))
          drop-shadow(0 0 100px rgba(232,168,56,0.3));
}
/* afterimage streaks */
.hero-arrow::before, .hero-arrow::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 80px; height: 2px; transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, rgba(232,168,56,0.6), rgba(232,168,56,0));
  pointer-events: none; opacity: 0;
}
.hero-arrow::before { width: 120px; margin-left: 30px; }
.hero-arrow::after { width: 60px; margin-left: 50px; filter: blur(2px); }
.hero-arrow.fly::before { animation: afterimage 1.4s cubic-bezier(0.2,0,0.6,1) forwards; }
.hero-arrow.fly::after { animation: afterimage 1.4s cubic-bezier(0.2,0,0.6,1) 0.05s forwards; }
@keyframes afterimage {
  0% { opacity: 0; } 8% { opacity: 1; } 65% { opacity: 0.7; } 100% { opacity: 0; }
}
.hero-arrow.fly {
  animation: arrowFly 1.4s cubic-bezier(0.2, 0, 0.6, 1) forwards;
}
@keyframes arrowFly {
  0% { right: -160px; opacity: 0; }
  5% { opacity: 1; }
  70% { opacity: 1; }
  100% { right: calc(100% + 160px); opacity: 0; }
}
/* slash scar — horizontal accent line left behind */
.hero-arrow-trail {
  position: absolute; top: 50%; right: 0; z-index: 5;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), rgba(232,168,56,0.6), rgba(232,168,56,0.15));
  transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(232,168,56,0.7), 0 0 50px rgba(232,168,56,0.3), 0 0 80px rgba(232,168,56,0.1);
  pointer-events: none; opacity: 0;
}
.hero-arrow-trail.active {
  opacity: 1;
  animation: trailExpand 1.4s cubic-bezier(0.2, 0, 0.6, 1) forwards;
}
.hero-arrow-trail.fade {
  animation: trailFade 1s ease forwards;
}
@keyframes trailExpand {
  0% { width: 0; }
  100% { width: 100vw; }
}
@keyframes trailFade {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
/* slash flash — bright burst along cut line */
.hero-slash-flash {
  position: absolute; top: 50%; left: 0; right: 0; z-index: 5;
  height: 6px; transform: translateY(-50%);
  background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.9) 30%, var(--accent) 50%, rgba(255,255,255,0.9) 70%, transparent 95%);
  box-shadow: 0 0 40px rgba(232,168,56,0.9), 0 0 80px rgba(232,168,56,0.4);
  pointer-events: none; opacity: 0;
}
.hero-slash-flash.active {
  animation: slashFlash 0.6s ease-out forwards;
}
@keyframes slashFlash {
  0% { opacity: 0; transform: translateY(-50%) scaleY(3); }
  15% { opacity: 1; transform: translateY(-50%) scaleY(1); }
  100% { opacity: 0; transform: translateY(-50%) scaleY(0.5); }
}

.hero-bg { position: absolute; inset: -10%; z-index: 0; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.5); z-index: 1;
}
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.1);
  transition: opacity 1.5s var(--ease), transform 6s cubic-bezier(0.05, 0.6, 0.4, 1);
}
.hero-bg.revealed img, .hero-bg.revealed video { opacity: 0.9; transform: scale(1); }

.hero-center { position: relative; z-index: 2; text-align: center; }

.hero-title {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(36px, 7vw, 96px);
  line-height: 1.3; letter-spacing: 0.08em;
  color: var(--text);
  text-shadow: none;
}
.hero-title-line { overflow: visible; display: block; position: relative; }

/* ── Line 1: Voice Burst ── */
.hero-char--burst {
  display: inline-block; position: relative;
  opacity: 0;
  clip-path: inset(0 48% 0 48%);
  color: var(--accent);
  text-shadow: 0 0 40px rgba(232,168,56,0.8), 0 0 80px rgba(232,168,56,0.3);
}
.hero-char--burst.vis {
  animation: burstReveal 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
             burstColor 0.8s ease 0.15s forwards,
             burstShake 0.5s ease 0.05s;
}
@keyframes burstReveal {
  0% { opacity: 0; clip-path: inset(0 48% 0 48%); }
  30% { opacity: 1; }
  100% { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes burstColor {
  0% { color: var(--accent); text-shadow: 0 0 40px rgba(232,168,56,0.8), 0 0 80px rgba(232,168,56,0.3); }
  100% { color: var(--text); text-shadow: none; }
}
@keyframes burstShake {
  0%,100% { transform: translateX(0) rotate(0); }
  15% { transform: translateX(-5px) rotate(-1.5deg); }
  30% { transform: translateX(4px) rotate(1deg); }
  50% { transform: translateX(-2px) rotate(-0.5deg); }
  70% { transform: translateX(1px); }
}

/* ── Line 2: Scan beam reveal ── */
.hero-line2-wrap { position: relative; display: inline-block; }
.hero-scan-beam {
  position: absolute; top: -15%; left: -5%; width: 3px; height: 130%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(232,168,56,0.8), 0 0 24px rgba(232,168,56,0.4),
              10px 0 40px rgba(232,168,56,0.15), -10px 0 40px rgba(232,168,56,0.15);
  opacity: 0; z-index: 3; pointer-events: none;
}
.hero-scan-beam.active {
  animation: scanBeamMove 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes scanBeamMove {
  0% { left: -5%; opacity: 0; }
  3% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 105%; opacity: 0; }
}

.hero-char--scan {
  display: inline-block; position: relative;
  opacity: 0;
  transform: translateX(-10px) scaleX(0.7);
  filter: blur(6px);
  transition: opacity 0.3s ease, transform 0.5s var(--ease), filter 0.4s ease;
}
.hero-char--scan.vis {
  opacity: 1; transform: translateX(0) scaleX(1); filter: blur(0);
}
/* accent underline carve per character */
.hero-char--scan::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  box-shadow: 0 0 6px rgba(232,168,56,0.4);
}
.hero-char--scan.vis::after {
  animation: scanUnderline 0.8s var(--ease) forwards;
}
@keyframes scanUnderline {
  0% { width: 0; opacity: 1; }
  50% { width: 100%; opacity: 1; }
  100% { width: 100%; opacity: 0; }
}

/* ── Equalizer bars ── */
.hero-eq {
  position: absolute; bottom: 28%; left: 50%; transform: translateX(-50%);
  display: flex; gap: 3px; align-items: flex-end; z-index: 1;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-eq.vis { opacity: 1; }
.hero-eq-bar {
  width: 2px; background: var(--accent); opacity: 0.25;
  animation: eqBounce var(--eq-speed, 0.8s) ease-in-out infinite alternate;
  height: var(--eq-h, 20px);
}
@keyframes eqBounce {
  0% { height: var(--eq-h-min, 4px); }
  100% { height: var(--eq-h, 20px); }
}

/* ── Pulse rings ── */
.hero-pulse {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 1; pointer-events: none;
}
.hero-pulse-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid rgba(232,168,56,0.2);
  width: 0; height: 0; opacity: 0;
}
.hero-pulse-ring.active { animation: pulseRing 2s ease-out forwards; }
@keyframes pulseRing {
  0% { width: 0; height: 0; opacity: 0.5; }
  100% { width: 600px; height: 600px; opacity: 0; }
}

.hero-sub { margin-top: 28px; overflow: hidden; }
.hero-sub-inner {
  font-family: var(--serif); font-weight: 300; font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 0.2em; color: var(--text-light);
  transform: translateY(100%); opacity: 0;
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease);
  display: inline-block;
}
.hero-sub.revealed .hero-sub-inner { transform: translateY(0); opacity: 1; }
.hero-sub-logo { height: clamp(48px, 6vw, 80px); width: auto; display: inline-block; opacity: 1; }

.hero-logo-small {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%) scale(0.8);
  width: 40px; opacity: 0;
  transition: opacity 1s var(--ease) 0.8s, transform 1s var(--ease) 0.8s;
  z-index: 2;
}
.hero-logo-small.revealed { opacity: 1; transform: translateX(-50%) scale(1); }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; transition: opacity 1s var(--ease) 1.2s;
}
.hero-scroll.revealed { opacity: 1; }
.hero-scroll span {
  font-family: var(--serif); font-size: 9px; letter-spacing: 0.3em; color: var(--text-muted);
  writing-mode: vertical-rl;
}
.hero-scroll-line { width: 1px; height: 40px; background: var(--border); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--accent); animation: scrollDrop 2.4s ease-in-out infinite;
}
@keyframes scrollDrop { 0%{top:-100%} 50%{top:100%} 100%{top:100%} }

/* ── hero decorative lines ── */
.hero-line {
  position: absolute; background: var(--accent); z-index: 1; opacity: 0.15;
}
.hero-line--left { left: 48px; top: 0; width: 1px; height: 0; transition: height 2s var(--ease) 0.5s; }
.hero-line--left.revealed { height: 100%; }
.hero-line--right { right: 48px; bottom: 0; width: 1px; height: 0; transition: height 2s var(--ease) 0.8s; }
.hero-line--right.revealed { height: 60%; }
.hero-line--bottom { bottom: 120px; left: 0; height: 1px; width: 0; transition: width 2s var(--ease) 1s; }
.hero-line--bottom.revealed { width: 30%; }

/* ═══ MARQUEE ═══ */
.marquee {
  padding: 0; overflow: hidden; white-space: nowrap;
  background: var(--off-white); position: relative;
}
.marquee-row { display: flex; padding: 18px 0; }
.marquee-row + .marquee-row { border-top: 1px solid var(--border-light); }
.marquee-track { display: inline-flex; animation: marqueeScroll 30s linear infinite; }
.marquee-row:nth-child(2) .marquee-track { animation-direction: reverse; animation-duration: 36s; }
.marquee-text {
  font-family: var(--serif); font-size: 12px; font-weight: 300;
  letter-spacing: 0.25em; padding: 0 20px; flex-shrink: 0;
  color: var(--border);
  transition: color 0.3s;
}
.marquee-text--accent { color: var(--accent); opacity: 0.5; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══ SECTION COMMON ═══ */
.sec { padding: 140px 0; position: relative; }
.sec--tight { padding: 100px 0; }
.sec--wide { padding: 180px 0; }
.sec-pad { padding-left: 48px; padding-right: 48px; }
.sec-inner { max-width: 1200px; margin: 0 auto; }

.sec-label {
  font-family: var(--serif); font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent); margin-bottom: 12px;
  opacity: 0; transform: translateX(-30px);
  transition: 0.8s var(--ease);
}
.sec-label.vis { opacity: 1; transform: translateX(0); }

.sec-title {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 64px); font-weight: 300;
  letter-spacing: 0.08em; color: var(--black); line-height: 1.1;
  overflow: hidden; margin-bottom: 48px;
}
.sec-title span {
  display: inline-block; transform: translateY(110%);
  transition: transform 1s var(--ease) 0.1s;
}
.sec-title.vis span { transform: translateY(0); }

/* section divider line animation */
.sec-divider {
  width: 0; height: 1px; background: var(--accent); margin-bottom: 48px;
  transition: width 1.2s var(--ease) 0.2s;
}
.sec-divider.vis { width: 60px; }

.sec-num {
  font-family: var(--serif); font-size: clamp(80px, 10vw, 150px); font-weight: 300;
  color: transparent; -webkit-text-stroke: 1px var(--border);
  line-height: 1; letter-spacing: -0.02em; user-select: none;
  position: absolute; right: 48px; top: 100px;
  opacity: 0; transform: translateY(40px) scale(0.9);
  transition: 1.2s var(--ease);
}
.sec-num.vis { opacity: 1; transform: translateY(0) scale(1); }

.view-more {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 13px; letter-spacing: 0.2em;
  color: var(--text-light); margin-top: 48px; position: relative;
  transition: color 0.3s ease;
}
.view-more:hover { color: var(--accent); }
.view-more-line {
  width: 40px; height: 1px; background: var(--border);
  transition: width 0.5s var(--ease), background 0.3s ease;
  position: relative;
}
.view-more-line::after {
  content: ''; position: absolute; right: -6px; top: -3px;
  width: 7px; height: 7px; border-right: 1px solid var(--border); border-top: 1px solid var(--border);
  transform: rotate(45deg); transition: border-color 0.3s, right 0.5s var(--ease);
}
.view-more:hover .view-more-line { width: 60px; background: var(--accent); }
.view-more:hover .view-more-line::after { border-color: var(--accent); right: -8px; }

.reveal-up {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-up.vis { opacity: 1; transform: translateY(0); }

/* ═══ PICKUP ═══ */
.pickup { background: var(--white); }
.pickup-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; }
.pickup-card {
  display: block; position: relative;
  opacity: 0; transform: translateY(80px) scale(0.96);
  transition: opacity 1s var(--ease), transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.pickup-card.vis { opacity: 1; transform: translateY(0) scale(1); }
.pickup-card--main { grid-row: 1 / 3; }
/* 3D tilt container */
.pickup-card-inner {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform; transform-style: preserve-3d;
}
.pickup-card:hover .pickup-card-inner {
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(232,168,56,0.06);
}
.pickup-thumb {
  width: 100%; aspect-ratio: 16 / 10; background: var(--placeholder);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; z-index: 0;
}
.pickup-card--main .pickup-thumb { aspect-ratio: 4 / 5; }
/* double-layer wipe: accent then white */
.pickup-thumb::before, .pickup-thumb::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
}
.pickup-thumb::before {
  background: var(--accent);
  transform: translateX(-101%); transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.pickup-thumb::after {
  background: var(--white);
  transform: translateX(-101%); transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.1s;
}
.pickup-card.vis .pickup-thumb::before { transform: translateX(101%); transition-delay: 0.3s; }
.pickup-card.vis .pickup-thumb::after { transform: translateX(101%); transition-delay: 0.45s; }
/* image parallax on hover */
.pickup-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
  will-change: transform;
}
.pickup-card:hover .pickup-thumb img { transform: scale(1.08); }
/* hover gradient overlay */
.pickup-thumb-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5));
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.pickup-card:hover .pickup-thumb-overlay { opacity: 1; }
/* floating category badge on hover */
.pickup-thumb-cat {
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  font-family: var(--serif); font-size: 10px; letter-spacing: 0.2em; color: var(--white);
  background: var(--accent); padding: 4px 12px;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.5s var(--ease) 0.1s, opacity 0.4s var(--ease) 0.1s;
}
.pickup-card:hover .pickup-thumb-cat { transform: translateY(0); opacity: 1; }
.pickup-ph { font-family: var(--serif); font-size: 11px; letter-spacing: 0.12em; color: var(--text-muted); }
/* meta slide-up reveal */
.pickup-meta {
  padding: 20px 0 0; position: relative;
  transform: translateY(15px); opacity: 0;
  transition: transform 0.7s var(--ease) 0.5s, opacity 0.7s var(--ease) 0.5s;
}
.pickup-card.vis .pickup-meta { transform: translateY(0); opacity: 1; }
.pickup-meta::before {
  content: ''; position: absolute; top: 8px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.8s var(--ease) 0.7s;
}
.pickup-card.vis .pickup-meta::before { width: 24px; }
.pickup-cat { font-family: var(--serif); font-size: 10px; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 6px; }
.pickup-title {
  font-size: 14px; font-weight: 400; line-height: 1.7; letter-spacing: 0.02em;
  transition: color 0.3s, letter-spacing 0.4s var(--ease);
}
.pickup-card:hover .pickup-title { color: var(--accent); letter-spacing: 0.04em; }
.pickup-date { font-family: var(--serif); font-size: 11px; color: var(--text-muted); margin-top: 8px; }
/* border trace on hover */
.pickup-card::before {
  content: ''; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  border: 1px solid var(--accent); opacity: 0;
  clip-path: inset(0 100% 100% 0);
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s;
}
.pickup-card:hover::before { opacity: 1; clip-path: inset(0 0 0 0); }

/* ═══ ABOUT ═══ */
.about { background: var(--off-white); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  position: relative; opacity: 0; transform: translateX(-40px);
  transition: 1.2s var(--ease);
  min-height: 400px; display: flex; align-items: center; justify-content: center;
}
.about-visual.vis { opacity: 1; transform: translateX(0); }
/* accent vertical line */
.about-visual-line {
  position: absolute; top: -40px; left: 0; width: 1px; height: 0;
  background: var(--accent); transition: height 1.5s var(--ease) 0.3s;
}
.about-visual.vis .about-visual-line { height: calc(100% + 80px); }
/* waveform visualizer */
.about-wave {
  display: flex; align-items: center; gap: 3px; height: 180px; padding-left: 24px;
}
.about-wave-bar {
  width: 3px; background: var(--accent); border-radius: 2px;
  height: 0; opacity: 0;
  transition: height 1.2s var(--ease), opacity 0.8s var(--ease);
}
.about-visual.vis .about-wave-bar { opacity: 1; }
/* deco text overlay */
.about-deco {
  position: absolute; bottom: -10px; left: 20px;
  font-family: var(--serif); font-size: clamp(60px, 7vw, 100px); font-weight: 300;
  color: transparent; -webkit-text-stroke: 1px var(--border); line-height: 0.95;
  letter-spacing: -0.02em;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1.2s var(--ease) 0.6s, transform 1.2s var(--ease) 0.6s;
}
.about-visual.vis .about-deco { opacity: 1; transform: translateY(0); }
/* quote mark */
.about-quote {
  position: absolute; top: 0; right: 20px;
  font-family: var(--serif); font-size: 120px; line-height: 1; color: var(--accent);
  opacity: 0; transition: opacity 1s var(--ease) 0.8s;
}
.about-visual.vis .about-quote { opacity: 0.1; }
/* right side */
.about-right { opacity: 0; transform: translateY(60px); transition: 1.2s var(--ease) 0.3s; }
.about-right.vis { opacity: 1; transform: translateY(0); }
.about-text {
  font-size: 14px; line-height: 2.4; letter-spacing: 0.04em; font-weight: 300;
}
.about-text-line {
  display: block; overflow: hidden;
}
.about-text-line span {
  display: inline-block; transform: translateY(100%); opacity: 0;
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease);
}
.about-right.vis .about-text-line span,
.about-page-text.vis .about-text-line span { transform: translateY(0); opacity: 1; }
.about-en {
  font-family: var(--serif); font-size: 12px; color: var(--text-muted);
  font-style: italic; margin-top: 24px; letter-spacing: 0.06em;
  opacity: 0; transition: opacity 1s var(--ease) 0.8s;
}
.about-right.vis .about-en { opacity: 1; }

/* ═══ TALENT MARQUEE ═══ */
.talent-sec { background: var(--white); padding: 100px 0 120px; overflow: hidden; }
.talent-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0 48px; margin-bottom: 48px;
}
.talent-head-title {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; letter-spacing: 0.15em; color: var(--black);
  opacity: 0; transform: translateY(30px); transition: 1s var(--ease);
}
.talent-head-title.vis { opacity: 1; transform: translateY(0); }
.talent-head-link {
  font-family: var(--serif); font-size: 14px; color: var(--accent);
  letter-spacing: 0.1em; border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease) 0.2s, transform 0.8s var(--ease) 0.2s, border-color 0.3s ease;
}
.talent-head-link.vis { opacity: 1; transform: translateY(0); }
.talent-head-link:hover { border-bottom-color: var(--accent); }

.talent-marquee { overflow: hidden; }
.talent-marquee + .talent-marquee { margin-top: 3px; }

.talent-marquee-track { display: flex; gap: 3px; width: max-content; }
.talent-marquee--left .talent-marquee-track { animation: talentScrollL 40s linear infinite; }
.talent-marquee--right .talent-marquee-track { animation: talentScrollR 50s linear infinite; }
.talent-marquee:hover .talent-marquee-track { animation-play-state: paused; }

@keyframes talentScrollL { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes talentScrollR { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }

.talent-photo { flex-shrink: 0; position: relative; overflow: hidden; }
.talent-photo a { display: block; width: 100%; height: 100%; }

/* Upper row heights & widths */
.talent-marquee--upper .talent-photo { height: 280px; }
.talent-marquee--upper .talent-photo--s { width: 196px; }
.talent-marquee--upper .talent-photo--m { width: 280px; }
.talent-marquee--upper .talent-photo--l { width: 392px; }
/* Lower row heights & widths */
.talent-marquee--lower .talent-photo { height: 340px; }
.talent-marquee--lower .talent-photo--s { width: 238px; }
.talent-marquee--lower .talent-photo--m { width: 340px; }
.talent-marquee--lower .talent-photo--l { width: 476px; }

.talent-photo-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.talent-photo-initial {
  font-family: var(--serif); font-size: 40px; color: rgba(255,255,255,0.3);
  user-select: none;
}
.talent-photo-bg {
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}
.talent-photo-bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.talent-photo:hover .talent-photo-bg { transform: scale(1.08); filter: brightness(0.7); }
.talent-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7));
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 24px;
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.talent-photo:hover .talent-photo-overlay,
.talent-photo.touch-active .talent-photo-overlay { opacity: 1; }
.talent-photo-name {
  font-family: var(--sans); font-size: 14px; color: #fff;
  letter-spacing: 0.1em; font-weight: 400;
  transform: translateY(12px); opacity: 0;
  transition: transform 0.5s var(--ease) 0.1s, opacity 0.4s var(--ease) 0.1s;
}
.talent-photo:hover .talent-photo-name,
.talent-photo.touch-active .talent-photo-name { transform: translateY(0); opacity: 1; }
.talent-photo-en {
  font-family: var(--serif); font-size: 11px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em; margin-top: 4px;
  transform: translateY(12px); opacity: 0;
  transition: transform 0.5s var(--ease) 0.18s, opacity 0.4s var(--ease) 0.18s;
}
.talent-photo:hover .talent-photo-en,
.talent-photo.touch-active .talent-photo-en { transform: translateY(0); opacity: 1; }
/* accent line under name */
.talent-photo-overlay::after {
  content: ''; width: 0; height: 1px; background: var(--accent);
  margin-top: 8px;
  transition: width 0.6s var(--ease) 0.25s;
}
.talent-photo:hover .talent-photo-overlay::after,
.talent-photo.touch-active .talent-photo-overlay::after { width: 32px; }
/* border frame on hover */
.talent-photo::after {
  content: ''; position: absolute; inset: 6px; z-index: 2; pointer-events: none;
  border: 1px solid rgba(255,255,255,0.25);
  opacity: 0; transform: scale(1.05);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.talent-photo:hover::after,
.talent-photo.touch-active::after { opacity: 1; transform: scale(1); }

/* ═══ WORKS ═══ */
.works { background: var(--off-white); overflow: hidden; }
.works-grid { display: flex; flex-direction: column; gap: 0; }
/* each work: full-width horizontal card, alternating layout */
.works-card {
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center;
  position: relative; min-height: 340px;
  border-bottom: 1px solid var(--border-light);
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.works-card.vis { opacity: 1; }
.works-card:nth-child(even) { direction: rtl; }
.works-card:nth-child(even) > * { direction: ltr; }
/* big floating number */
.works-card-num {
  position: absolute; top: 50%; right: 40px;
  font-family: var(--serif); font-size: clamp(100px, 12vw, 180px); font-weight: 300;
  color: transparent; -webkit-text-stroke: 1px var(--border);
  line-height: 1; transform: translateY(-50%);
  opacity: 0; transition: opacity 1.2s var(--ease) 0.3s;
  z-index: 0; user-select: none;
}
.works-card:nth-child(even) .works-card-num { right: auto; left: 40px; }
.works-card.vis .works-card-num { opacity: 1; }
/* thumb: cinematic grayscale → color */
.works-thumb {
  width: 100%; height: 100%; min-height: 340px; background: var(--placeholder);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.works-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) brightness(0.9);
  transition: transform 1.2s var(--ease), filter 0.8s var(--ease);
  will-change: transform;
}
.works-card:hover .works-thumb img { filter: grayscale(0%) brightness(1); transform: scale(1.06); }
/* film frame marks */
.works-thumb::before {
  content: ''; position: absolute; inset: 8px; z-index: 2;
  border: 1px solid rgba(255,255,255,0.2); pointer-events: none;
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.works-card:hover .works-thumb::before { opacity: 1; }
/* reveal curtain */
.works-thumb-curtain {
  position: absolute; inset: 0; background: var(--off-white); z-index: 3;
  transform-origin: left; transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
}
.works-card:nth-child(even) .works-thumb-curtain { transform-origin: right; }
.works-card.vis .works-thumb-curtain { transform: scaleX(0); }
.works-ph { font-family: var(--serif); font-size: 11px; letter-spacing: 0.1em; color: var(--text-muted); position: relative; z-index: 1; }
/* meta side */
.works-meta {
  padding: 40px 48px; position: relative; z-index: 1;
}
.works-meta-inner {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.8s var(--ease) 0.5s, transform 0.8s var(--ease) 0.5s;
}
.works-card:nth-child(even) .works-meta-inner { transform: translateX(30px); }
.works-card.vis .works-meta-inner { opacity: 1; transform: translateX(0); }
.works-cat {
  font-family: var(--serif); font-size: 10px; letter-spacing: 0.2em; color: var(--accent);
  margin-bottom: 12px; display: inline-block;
  padding-bottom: 4px; border-bottom: 1px solid var(--accent);
}
.works-title {
  font-size: 20px; font-weight: 400; line-height: 1.6; letter-spacing: 0.04em;
  transition: color 0.4s var(--ease);
}
.works-card:hover .works-title { color: var(--accent); }
.works-cast {
  font-size: 13px; font-weight: 300; color: var(--text-light); margin-top: 8px;
  letter-spacing: 0.04em;
}
.works-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-family: var(--serif); font-size: 11px; letter-spacing: 0.15em; color: var(--text-muted);
  transition: color 0.3s;
}
.works-more-line {
  width: 24px; height: 1px; background: var(--border);
  transition: width 0.5s var(--ease), background 0.3s;
}
.works-card:hover .works-more { color: var(--accent); }
.works-card:hover .works-more-line { width: 40px; background: var(--accent); }

/* ═══ NEWS ═══ */
.news { background: var(--white); }
.news-grid { display: flex; flex-direction: column; }
/* timeline line */
.news-grid::before {
  content: ''; position: absolute; left: 130px; top: 0; bottom: 0;
  width: 1px; background: var(--border-light);
}
.news-item {
  display: grid; grid-template-columns: 100px 1fr auto; align-items: center; gap: 0;
  padding: 28px 0; border-bottom: 1px solid var(--border-light);
  position: relative;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.news-item.vis { opacity: 1; transform: translateY(0); }
/* left accent bar on hover */
.news-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.news-item:hover::before { transform: scaleY(1); }
/* bottom line sweep */
.news-item::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.8s var(--ease);
}
.news-item:hover::after { width: 100%; }
/* hover row shift */
.news-item:hover { padding-left: 16px; }
.news-date {
  font-family: var(--serif); font-size: 13px; color: var(--text-muted);
  letter-spacing: 0.04em; padding-right: 30px;
  position: relative;
}
/* timeline dot */
.news-date::after {
  content: ''; position: absolute; right: 0; top: 50%;
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  transform: translate(50%, -50%); transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.news-item:hover .news-date::after {
  border-color: var(--accent); background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232,168,56,0.15);
}
.news-body { padding-left: 30px; display: flex; align-items: center; gap: 14px; }
.news-cat {
  font-family: var(--serif); font-size: 9px; letter-spacing: 0.12em;
  color: var(--accent); border: 1px solid var(--accent);
  padding: 2px 10px; flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}
.news-item:hover .news-cat { background: var(--accent); color: var(--white); }
.news-ttl {
  font-size: 14px; font-weight: 300; line-height: 1.6;
  transition: color 0.3s, letter-spacing 0.4s var(--ease);
}
.news-item:hover .news-ttl { color: var(--accent); }
/* hover arrow */
.news-arrow {
  font-family: var(--serif); font-size: 14px; color: var(--text-muted);
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
  padding-right: 4px;
}
.news-item:hover .news-arrow { opacity: 1; transform: translateX(0); color: var(--accent); }
/* first item "NEW" pulse */
.news-item:first-child .news-date::before {
  content: 'NEW'; position: absolute; top: -18px; left: 0;
  font-family: var(--serif); font-size: 9px; letter-spacing: 0.15em;
  color: var(--accent); animation: newsPulse 2s ease-in-out infinite;
}
@keyframes newsPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ═══ LINKS ═══ */
.links { background: var(--cream); padding: 0; }
.links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.link-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 72px 32px; position: relative;
  overflow: hidden;
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.link-card.vis { opacity: 1; transform: translateY(0); }
/* expanding bg fill on hover */
.link-card-bg {
  position: absolute; inset: 0; background: var(--text);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 0;
}
.link-card:hover .link-card-bg { transform: scaleY(1); }
/* vertical divider between cards */
.link-card + .link-card { border-left: 1px solid var(--border-light); }
.link-card:hover + .link-card,
.link-card:has(+ .link-card:hover) { border-left-color: transparent; }
/* icon */
.link-icon {
  font-family: var(--serif); font-size: 28px; color: var(--accent);
  position: relative; z-index: 1; margin-bottom: 20px;
  width: 56px; height: 56px; line-height: 56px;
  border: 1px solid var(--accent); border-radius: 50%;
  transition: transform 0.5s var(--ease), color 0.3s, border-color 0.3s, background 0.3s;
}
.link-card:hover .link-icon {
  transform: scale(1.1); background: var(--accent); color: var(--white);
}
.link-body { position: relative; z-index: 1; }
.link-title {
  font-size: 15px; font-weight: 400; letter-spacing: 0.06em;
  transition: color 0.4s var(--ease);
}
.link-card:hover .link-title { color: var(--white); }
.link-desc {
  font-size: 11px; color: var(--text-light); margin-top: 6px;
  transition: color 0.4s var(--ease);
}
.link-card:hover .link-desc { color: rgba(255,255,255,0.5); }
/* arrow slides up */
.link-arrow {
  position: relative; z-index: 1; margin-top: 24px;
  font-family: var(--serif); font-size: 12px; letter-spacing: 0.15em;
  color: var(--text-muted);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.4s var(--ease) 0.1s, transform 0.4s var(--ease) 0.1s, color 0.3s;
}
.link-card:hover .link-arrow { opacity: 1; transform: translateY(0); color: var(--accent); }
/* top accent line on hover */
.link-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transition: transform 0.6s var(--ease);
  z-index: 1;
}
.link-card:hover::after { transform: scaleX(1); }

/* ═══ AUDITION ═══ */
.audition {
  padding: 160px 48px; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--cream) 0%, #f5efe5 50%, var(--cream) 100%);
}
/* animated gradient orbs */
.audition-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: 0;
  animation: orbFloat 8s ease-in-out infinite;
}
.audition-orb--1 {
  width: 400px; height: 400px; background: rgba(232,168,56,0.1);
  top: -10%; left: -5%; animation-delay: 0s;
}
.audition-orb--2 {
  width: 300px; height: 300px; background: rgba(232,168,56,0.06);
  bottom: -15%; right: -5%; animation-delay: 3s;
}
.audition-orb--3 {
  width: 200px; height: 200px; background: rgba(232,168,56,0.04);
  top: 50%; left: 50%; animation-delay: 5s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0, 0) scale(1); opacity: 0; }
  15% { opacity: 1; }
  50% { transform: translate(30px, -20px) scale(1.15); opacity: 0.8; }
  85% { opacity: 1; }
}
/* horizontal accent lines */
.audition-line {
  position: absolute; height: 1px; background: rgba(232,168,56,0.15);
}
.audition-line--1 { top: 25%; left: 0; width: 0; transition: width 2s var(--ease) 0.3s; }
.audition-line--2 { bottom: 30%; right: 0; width: 0; transition: width 2s var(--ease) 0.6s; }
.audition.vis .audition-line--1 { width: 30%; }
.audition.vis .audition-line--2 { width: 25%; }
/* floating particles */
.audition-particle {
  position: absolute; border-radius: 50%; background: var(--accent); opacity: 0;
  animation: particleFloat 6s ease-in-out infinite;
}
@keyframes particleFloat {
  0%,100% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.2; }
  50% { transform: translateY(-50px) scale(1.4); opacity: 0.08; }
  80% { opacity: 0.2; }
}
/* bg text */
.audition-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-size: clamp(100px, 18vw, 280px); font-weight: 300;
  color: transparent; white-space: nowrap; user-select: none; letter-spacing: 0.05em;
  -webkit-text-stroke: 1px rgba(0,0,0,0.04);
  opacity: 0; transition: opacity 1.5s var(--ease) 0.2s;
}
.audition.vis .audition-bg { opacity: 1; }
/* content */
.audition-inner { position: relative; z-index: 1; }
.audition-label {
  font-family: var(--serif); font-size: 11px; letter-spacing: 0.3em; color: var(--accent);
  margin-bottom: 20px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.audition.vis .audition-label { opacity: 1; transform: translateY(0); }
.audition-title {
  font-family: var(--sans); font-size: clamp(22px, 3.5vw, 32px); font-weight: 200;
  color: var(--text); letter-spacing: 0.15em; margin-bottom: 12px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.15s, transform 0.8s var(--ease) 0.15s;
}
.audition.vis .audition-title { opacity: 1; transform: translateY(0); }
.audition-sub {
  font-size: 13px; color: var(--text-light); margin-bottom: 20px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s var(--ease) 0.3s, transform 0.8s var(--ease) 0.3s;
}
.audition.vis .audition-sub { opacity: 1; transform: translateY(0); }
/* divider */
.audition-divider {
  width: 0; height: 1px; background: var(--accent);
  margin: 0 auto 32px; transition: width 1s var(--ease) 0.45s;
}
.audition.vis .audition-divider { width: 40px; }
.audition-btn {
  display: inline-block; font-family: var(--serif); font-size: 12px; letter-spacing: 0.25em;
  padding: 18px 64px; border: 1px solid var(--accent); color: var(--accent);
  position: relative; overflow: hidden;
  transition: color 0.5s var(--ease), border-color 0.5s, letter-spacing 0.5s var(--ease);
  opacity: 0; transform: translateY(16px);
}
.audition.vis .audition-btn {
  opacity: 1; transform: translateY(0);
  transition: color 0.5s var(--ease), border-color 0.5s, letter-spacing 0.5s var(--ease),
              opacity 0.8s var(--ease) 0.55s, transform 0.8s var(--ease) 0.55s;
}
.audition-btn::before {
  content: ''; position: absolute; inset: 0; background: var(--accent);
  transform: scaleX(0); transform-origin: right; transition: transform 0.5s var(--ease); z-index: -1;
}
.audition-btn:hover { color: var(--white); border-color: var(--accent); letter-spacing: 0.4em; }
.audition-btn:hover::before { transform: scaleX(1); transform-origin: left; }

/* ═══ CONTACT BANNER ═══ */
.contact-banner {
  padding: 100px 48px; position: relative; overflow: hidden;
  background: var(--off-white);
}
/* diagonal accent stripe */
.contact-banner::before {
  content: ''; position: absolute; top: -60%; right: -10%; width: 45%; height: 220%;
  background: var(--accent); transform: rotate(-12deg); opacity: 0.04;
  pointer-events: none;
}
.contact-inner {
  max-width: 900px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.contact-label {
  font-family: var(--serif); font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent); margin-bottom: 16px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.contact-banner.vis .contact-label { opacity: 1; transform: translateY(0); }
.contact-title {
  font-family: var(--sans); font-size: clamp(22px, 3.5vw, 36px); font-weight: 200;
  letter-spacing: 0.12em; color: var(--black); line-height: 1.5;
  margin-bottom: 8px;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease) 0.15s, transform 0.8s var(--ease) 0.15s;
}
.contact-banner.vis .contact-title { opacity: 1; transform: translateY(0); }
.contact-text {
  font-size: 13px; color: var(--text-light); letter-spacing: 0.06em;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.3s, transform 0.8s var(--ease) 0.3s;
}
.contact-banner.vis .contact-text { opacity: 1; transform: translateY(0); }
/* line expanding from center */
.contact-line {
  width: 0; height: 1px; background: var(--accent); margin: 0 auto 36px;
  transition: width 1s var(--ease) 0.4s;
}
.contact-banner.vis .contact-line { width: 60px; }
.contact-btn {
  display: inline-block; font-family: var(--serif); font-size: 13px; letter-spacing: 0.25em;
  padding: 18px 64px; border: 1px solid var(--accent); color: var(--accent);
  position: relative; overflow: hidden;
  transition: color 0.5s var(--ease), letter-spacing 0.5s var(--ease), border-color 0.5s;
  opacity: 0; transform: translateY(20px);
  /* animate in with banner */
}
.contact-banner.vis .contact-btn {
  opacity: 1; transform: translateY(0);
  transition: color 0.5s var(--ease), letter-spacing 0.5s var(--ease), border-color 0.5s,
              opacity 0.8s var(--ease) 0.5s, transform 0.8s var(--ease) 0.5s;
}
.contact-btn::before {
  content: ''; position: absolute; inset: 0; background: var(--accent);
  transform: scaleX(0); transform-origin: right; transition: transform 0.5s var(--ease); z-index: -1;
}
.contact-btn:hover { color: var(--white); border-color: var(--accent); letter-spacing: 0.4em; }
.contact-btn:hover::before { transform: scaleX(1); transform-origin: left; }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--off-white); padding: 80px 48px 40px;
  position: relative; overflow: hidden;
}
/* subtle top accent line */
.footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: var(--accent);
  transition: width 1.5s var(--ease);
}
.footer.vis::before { width: 120px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 200px 1fr; gap: 80px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border-light);
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.footer.vis .footer-top { opacity: 1; transform: translateY(0); }
.footer-logo {
  width: 100px; margin-bottom: 20px; opacity: 0.6;
  transition: opacity 0.4s;
}
.footer-logo:hover { opacity: 1; }
.footer-sns { display: flex; gap: 20px; }
.footer-sns a {
  font-family: var(--serif); font-size: 11px; color: var(--text-muted);
  position: relative; transition: color 0.3s;
}
.footer-sns a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px;
  background: var(--accent); transition: width 0.4s var(--ease);
}
.footer-sns a:hover { color: var(--accent); }
.footer-sns a:hover::after { width: 100%; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-nav-head {
  font-family: var(--serif); font-size: 12px; letter-spacing: 0.15em;
  color: var(--text-light); margin-bottom: 14px;
  position: relative; padding-bottom: 8px;
}
.footer-nav-head::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 16px; height: 1px; background: rgba(232,168,56,0.3);
}
.footer-nav a {
  display: block; font-size: 12px; color: var(--text-muted); padding: 4px 0;
  transition: color 0.3s, padding-left 0.3s var(--ease);
  position: relative;
}
.footer-nav a::before {
  content: ''; position: absolute; left: -12px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
  opacity: 0; transition: opacity 0.3s, left 0.3s var(--ease);
}
.footer-nav a:hover { color: var(--text); padding-left: 12px; }
.footer-nav a:hover::before { opacity: 1; left: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 28px;
  opacity: 0; transition: opacity 1s var(--ease) 0.3s;
}
.footer.vis .footer-bottom { opacity: 1; }
.footer-copy { font-family: var(--serif); font-size: 10px; color: var(--text-muted); letter-spacing: 0.08em; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 10px; color: var(--text-muted); transition: color 0.3s; }
.footer-legal a:hover { color: var(--text); }

/* ═══ BACK TO TOP ═══ */
.back-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 44px; height: 44px; border: 1px solid var(--border);
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity 0.4s, transform 0.4s var(--ease), border-color 0.3s;
}
.back-top.vis { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { border-color: var(--accent); }
.back-top-arrow {
  width: 10px; height: 10px; border-left: 1px solid var(--text-muted);
  border-top: 1px solid var(--text-muted); transform: rotate(45deg) translateY(2px);
  transition: border-color 0.3s;
}
.back-top:hover .back-top-arrow { border-color: var(--accent); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .sec { padding: 100px 0; }
  .sec--tight { padding: 72px 0; }
  .sec--wide { padding: 120px 0; }
  .sec-pad { padding-left: 32px; padding-right: 32px; }
  .pickup-grid { grid-template-columns: 1fr; }
  .pickup-card--main { grid-row: auto; }
  .pickup-card--main .pickup-thumb { aspect-ratio: 16/9; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .talent-marquee--upper .talent-photo { height: 220px; }
  .talent-marquee--upper .talent-photo--s { width: 154px; }
  .talent-marquee--upper .talent-photo--m { width: 220px; }
  .talent-marquee--upper .talent-photo--l { width: 308px; }
  .talent-marquee--lower .talent-photo { height: 260px; }
  .talent-marquee--lower .talent-photo--s { width: 182px; }
  .talent-marquee--lower .talent-photo--m { width: 260px; }
  .talent-marquee--lower .talent-photo--l { width: 364px; }
  .works-card { grid-template-columns: 1fr 1fr; min-height: 280px; }
  .works-thumb { min-height: 280px; }
  .works-meta { padding: 32px; }
  .works-card-num { font-size: 100px; }
  .news-grid::before { left: 100px; }
  .news-item { grid-template-columns: 72px 1fr auto; }
  .news-date { padding-right: 28px; }
  .links-grid { grid-template-columns: 1fr 1fr; }
  .link-card { padding: 56px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  a, button { cursor: auto; }
  .cursor, .cursor-trail { display: none; }
  .header { padding: 0 20px; height: 60px; justify-content: center; }
  .hamburger { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
  .nav-list { display: none; }
  .hamburger { display: block; }
  .mobile-nav { display: flex; }
  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(28px, 8vw, 56px); }
  .hero-line { display: none; }
  .sec { padding: 72px 0; }
  .sec--tight { padding: 56px 0; }
  .sec--wide { padding: 88px 0; }
  .sec-pad { padding-left: 20px; padding-right: 20px; }
  .sec-num { display: none; }
  .talent-sec { padding: 60px 0 80px; }
  .talent-head { padding: 0 20px; margin-bottom: 32px; }
  .talent-marquee--upper .talent-photo { height: 160px; }
  .talent-marquee--upper .talent-photo--s { width: 112px; }
  .talent-marquee--upper .talent-photo--m { width: 160px; }
  .talent-marquee--upper .talent-photo--l { width: 224px; }
  .talent-marquee--lower .talent-photo { height: 180px; }
  .talent-marquee--lower .talent-photo--s { width: 126px; }
  .talent-marquee--lower .talent-photo--m { width: 180px; }
  .talent-marquee--lower .talent-photo--l { width: 252px; }
  .works-card {
    grid-template-columns: 110px 1fr !important; min-height: auto; direction: ltr !important;
    align-items: stretch; gap: 0;
  }
  .works-card > * { direction: ltr !important; }
  .works-thumb { min-height: 0; height: 100%; aspect-ratio: 1/1; }
  .works-thumb-curtain { display: none; }
  .works-meta { padding: 12px 0 12px 16px; display: flex; align-items: center; }
  .works-card-num { display: none; }
  .news-grid::before { display: none; }
  .news-item { grid-template-columns: 1fr auto; padding: 16px 0; }
  .news-date { grid-column: 1 / -1; padding-right: 0; margin-bottom: 4px; }
  .news-date::after { display: none; }
  .news-body { padding-left: 0; flex-wrap: wrap; gap: 8px; }
  .news-item:first-child .news-date::before { top: auto; bottom: -2px; }
  .links-grid { grid-template-columns: 1fr; gap: 0; }
  .link-card {
    flex-direction: row; align-items: center; justify-content: flex-start;
    text-align: left; padding: 20px; gap: 16px;
  }
  .link-card + .link-card { border-left: none; border-top: 1px solid var(--border-light); }
  .link-icon {
    width: 44px; height: 44px; line-height: 44px; font-size: 20px;
    margin-bottom: 0; flex-shrink: 0;
  }
  .link-body { flex: 1; }
  .link-arrow {
    opacity: 1; transform: none; margin-top: 0; flex-shrink: 0;
    font-size: 16px; color: var(--accent); letter-spacing: 0;
  }
  .link-card-bg { display: none; }
  .link-card::after { display: none; }
  .audition { padding: 80px 20px; }
  .audition-bg { display: none; }
  .audition-orb { filter: blur(60px); }
  .audition-orb--1 { width: 200px; height: 200px; }
  .audition-orb--2 { width: 150px; height: 150px; }
  .audition-orb--3 { width: 100px; height: 100px; }
  .audition-line { display: none; }
  .audition-particle { display: none; }
  .audition-btn { padding: 16px 40px; }
  .contact-banner { padding: 60px 20px; overflow: hidden; }
  .contact-btn { padding: 16px 40px; }
  .footer { padding: 48px 20px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .footer-top > div:first-child { display: flex; flex-direction: column; align-items: center; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border-light); }
  .footer-logo { margin-bottom: 16px; }
  .footer-sns { justify-content: center; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 0; text-align: center; }
  .footer-nav > div { padding: 12px 0; }
  .footer-nav-head { margin-bottom: 0; padding-bottom: 0; font-size: 12px; }
  .footer-nav-head::after { display: none; }
  .footer-nav a { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-pulse-ring { max-width: 300px; max-height: 300px; }
  .mobile-nav-list a { font-size: clamp(20px, 6vw, 28px); }
  .works-title { font-size: 18px; }
  .back-top { bottom: 16px; right: 16px; }
  .grain { opacity: 0.012; }
  /* About: compact waveform */
  .about-visual { min-height: 220px; }
  .about-wave { height: 120px; }
  .about-quote { font-size: 80px; }
  .about-deco { font-size: clamp(40px, 10vw, 60px); }
  .about-grid { gap: 32px; }
  /* Pickup: compact mobile */
  .pickup-grid { gap: 16px; }
  .pickup-card--main .pickup-thumb { aspect-ratio: 16/9; }
  .pickup-card:not(.pickup-card--main) {
    display: grid; grid-template-columns: 100px 1fr; gap: 0;
  }
  .pickup-card:not(.pickup-card--main) .pickup-card-inner {
    display: grid; grid-template-columns: 100px 1fr; gap: 0;
  }
  .pickup-card:not(.pickup-card--main) .pickup-thumb { aspect-ratio: 1/1; }
  .pickup-card:not(.pickup-card--main) .pickup-meta { padding: 0 0 0 12px; display: flex; flex-direction: column; justify-content: center; }
  .pickup-card:not(.pickup-card--main) .pickup-meta::before { display: none; }
  .pickup-card--main .pickup-meta { padding: 10px 0 0; }
  .pickup-title { font-size: 14px; line-height: 1.5; }
  .pickup-date { margin-top: 4px; }
  .sec-title { margin-bottom: 24px; }
  .sec-divider { margin-bottom: 24px; }
  /* Works: horizontal card tweaks */
  .works-title { line-height: 1.4; }
  .works-cast { font-size: 12px; margin-top: 4px; }
  .works-cat { margin-bottom: 6px; }
  .works-more { margin-top: 8px; }
  .works-card { border-bottom: 1px solid var(--border-light); }
  .works-card + .works-card { margin-top: 0; }
  .works-meta-inner { transform: none !important; opacity: 1 !important; }
  /* News: tighter */
  .news-ttl { font-size: 14px; line-height: 1.5; }
  .news-date { font-size: 11px; }
  /* Footer: tighten */
  .footer-copy { font-size: 9px; }
  .footer-legal a { font-size: 9px; }
  /* View more: smaller */
  .view-more { margin-top: 28px; font-size: 12px; }
  .scroll-gauge { display: none; }
}

/* ═══ SMALL MOBILE ═══ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(22px, 7vw, 40px); }
  .sec { padding: 56px 0; }
  .sec--tight { padding: 40px 0; }
  .sec--wide { padding: 64px 0; }
  .sec-pad { padding-left: 16px; padding-right: 16px; }
  .sec-title { font-size: clamp(28px, 5vw, 48px); }
  .hero-sub-logo { height: clamp(36px, 5vw, 60px); }
  .talent-sec { padding: 40px 0 56px; }
  .talent-head { padding: 0 16px; margin-bottom: 20px; }
  .talent-marquee--upper .talent-photo { height: 120px; }
  .talent-marquee--upper .talent-photo--s { width: 84px; }
  .talent-marquee--upper .talent-photo--m { width: 120px; }
  .talent-marquee--upper .talent-photo--l { width: 168px; }
  .talent-marquee--lower .talent-photo { height: 140px; }
  .talent-marquee--lower .talent-photo--s { width: 98px; }
  .talent-marquee--lower .talent-photo--m { width: 140px; }
  .talent-marquee--lower .talent-photo--l { width: 196px; }
  .about-text { font-size: 13px; line-height: 2.2; }
  .audition { padding: 56px 16px; }
  .audition-title { font-size: clamp(18px, 5vw, 28px); }
  .contact-banner { padding: 48px 16px; }
  .contact-title { font-size: clamp(18px, 5vw, 28px); }
  .footer { padding: 32px 16px 20px; }
  .mobile-nav-list a { font-size: clamp(18px, 5.5vw, 24px); }
  .mobile-nav-list { gap: 28px; }
  .header { padding: 0 16px; }
  .hamburger { right: 16px; }
  .hero-scroll { bottom: 24px; }
  .hero-logo-small { bottom: 72px; }
  .back-top { bottom: 12px; right: 12px; width: 40px; height: 40px; }
  .marquee-text { font-size: 10px; padding: 0 14px; }
  .pickup-title { font-size: 13px; }
  .pickup-card--main .pickup-thumb { aspect-ratio: 4/3; }
  .news-ttl { font-size: 13px; }
  .news-cat { font-size: 8px; padding: 2px 8px; }
  /* Links: even more compact */
  .link-card { padding: 16px; gap: 12px; }
  .link-icon { width: 38px; height: 38px; line-height: 38px; font-size: 18px; }
  .link-title { font-size: 14px; }
  .link-desc { font-size: 10px; }
  /* About: very compact */
  .about-visual { min-height: 160px; }
  .about-wave { height: 90px; gap: 2px; }
  .about-wave-bar { width: 2px; }
  .about-quote { display: none; }
  .about-en { font-size: 11px; }
  /* Works: smaller thumb */
  .works-card { grid-template-columns: 88px 1fr !important; }
  .works-title { font-size: 15px; }
  .works-cast { font-size: 11px; }
  .works-more { font-size: 10px; margin-top: 6px; }
  .works-meta { padding: 10px 0 10px 12px; }
  /* Pickup: tighter side cards */
  .pickup-card:not(.pickup-card--main),
  .pickup-card:not(.pickup-card--main) .pickup-card-inner {
    grid-template-columns: 80px 1fr;
  }
  .pickup-card:not(.pickup-card--main) .pickup-meta { padding-left: 10px; }
  .pickup-date { font-size: 10px; }
  .pickup-cat { font-size: 9px; }
  /* Audition: compact */
  .audition-sub { font-size: 12px; }
  .audition-btn { font-size: 11px; padding: 14px 32px; }
  /* Contact */
  .contact-text { font-size: 12px; }
  .contact-btn { font-size: 12px; padding: 14px 32px; }
  /* Footer: single column nav */
  .footer-legal { gap: 14px; }
  .view-more { margin-top: 20px; font-size: 11px; }
}

/* ═══ TOUCH / NO-HOVER DEVICES ═══ */
@media (hover: none) {
  .pickup-card:hover .pickup-card-inner { box-shadow: none; }
  .pickup-card:hover .pickup-thumb img { transform: none; }
  .pickup-card:hover .pickup-thumb-overlay { opacity: 0; }
  .pickup-card:hover .pickup-thumb-cat { transform: translateY(20px); opacity: 0; }
  .pickup-card:hover .pickup-title { color: inherit; letter-spacing: 0.02em; }
  .pickup-card:hover::before { opacity: 0; }
  .works-card:hover .works-thumb img { filter: grayscale(100%) brightness(0.9); transform: none; }
  .works-card:hover .works-thumb::before { opacity: 0; }
  .works-card:hover .works-title { color: inherit; }
  .works-card:hover .works-more { color: var(--text-muted); }
  .works-card:hover .works-more-line { width: 24px; background: var(--border); }
  .news-item:hover { padding-left: 0; }
  .news-item:hover::before { transform: scaleY(0); }
  .news-item:hover::after { width: 0; }
  .news-item:hover .news-date::after { border-color: var(--border); background: var(--white); box-shadow: none; }
  .news-item:hover .news-cat { background: transparent; color: var(--accent); }
  .news-item:hover .news-ttl { color: inherit; }
  .news-item:hover .news-arrow { opacity: 0; }
  .link-card:hover .link-card-bg { transform: scaleY(0); }
  .link-card:hover .link-icon { transform: none; background: transparent; color: var(--accent); }
  .link-card:hover .link-title { color: inherit; }
  .link-card:hover .link-desc { color: var(--text-light); }
  .link-card:hover .link-arrow { opacity: 1; color: var(--accent); transform: none; }
  .link-card:hover::after { transform: scaleX(0); }
}

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-eq, .hero-pulse, .marquee-track, .talent-marquee-track,
  .audition-orb, .audition-particle { animation: none !important; }
  .grain { display: none; }
}

/* ═══ VOICE PLAYER ═══ */
.oa-voice-player { display: flex; flex-direction: column; gap: 12px; }
.oa-player {
  background: #fff; border-radius: 12px; padding: 16px 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  display: flex; align-items: center; gap: 16px;
}
.oa-play-btn {
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: #E8A838; color: #fff; font-size: 16px; cursor: pointer;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.1s;
}
.oa-play-btn:hover { background: #d4952e; }
.oa-play-btn:active { transform: scale(0.95); }
.oa-play-btn.playing { background: #333; }
.oa-player-info { min-width: 120px; }
.oa-player-name { font-size: 14px; font-weight: 600; color: #222; margin-bottom: 3px; }
.oa-player-label { font-size: 11px; color: #999; }
.oa-progress-wrap { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.oa-progress-bar { width: 100%; height: 4px; background: #eee; border-radius: 2px; cursor: pointer; }
.oa-progress-fill { height: 100%; background: #E8A838; border-radius: 2px; width: 0%; pointer-events: none; }
.oa-time-label { font-size: 10px; color: #bbb; text-align: right; }

/* ─── CONTACT PAGE ─── */
.contact-page {
  background: #fff; color: #222;
  padding-top: 120px; min-height: 80vh;
  display: flex; align-items: flex-start; justify-content: center;
}
.contact-page .contact-inner {
  width: 100%; max-width: 640px; padding: 60px 32px 100px;
}
.contact-head { text-align: center; margin-bottom: 56px; }
.contact-page .contact-label {
  font-family: 'Cormorant Garamond', serif; font-size: 12px;
  letter-spacing: 0.35em; color: #E8A838; margin-bottom: 12px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.7s, transform 0.7s;
}
.contact-page .contact-label.vis { opacity: 1; transform: none; }
.contact-page .contact-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 5vw, 48px);
  font-weight: 300; letter-spacing: 0.06em; color: #111; margin-bottom: 20px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
}
.contact-page .contact-title.vis { opacity: 1; transform: none; }
.contact-divider {
  width: 40px; height: 1px; background: #E8A838; margin: 0 auto 24px;
  opacity: 0; transform: scaleX(0); transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
}
.contact-divider.vis { opacity: 1; transform: scaleX(1); }
.contact-sub {
  font-size: 13px; color: #888; letter-spacing: 0.08em; line-height: 1.8;
  opacity: 0; transform: translateY(12px); transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
}
.contact-sub.vis { opacity: 1; transform: none; }
.contact-form-wrap {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s 0.4s, transform 0.8s 0.4s;
}
.contact-form-wrap.vis { opacity: 1; transform: none; }

/* CF7 form styling */
.wpcf7 form { display: flex; flex-direction: column; gap: 20px; }
.wpcf7 .cf7-field { display: flex; flex-direction: column; gap: 6px; }
.wpcf7 label { font-size: 11px; letter-spacing: 0.2em; color: #888; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #222;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus { border-color: #E8A838; background: #fff; }
.wpcf7 select { appearance: none; cursor: pointer; }
.wpcf7 textarea { min-height: 160px; resize: vertical; }
.wpcf7 input[type="submit"] {
  background: transparent;
  border: 1px solid #E8A838;
  color: #E8A838;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  padding: 14px 48px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  align-self: center;
  margin-top: 8px;
}
.wpcf7 input[type="submit"]:hover { background: #E8A838; color: #fff; }
.wpcf7-response-output {
  text-align: center; font-size: 13px; padding: 12px !important;
  border-radius: 4px; margin-top: 8px !important;
  border: 1px solid #ddd !important;
  color: #555;
}
.wpcf7 .wpcf7-not-valid-tip { font-size: 11px; color: #c0392b; margin-top: 4px; }

/* ─── TALENT ARCHIVE PAGE ─── */
.talent-archive-page {
  padding-top: 120px; min-height: 80vh;
  max-width: 1200px; margin: 0 auto; padding-left: 32px; padding-right: 32px; padding-bottom: 100px;
}
.talent-archive-head {
  text-align: center; padding: 60px 0 56px;
}
.talent-archive-label {
  font-family: var(--serif); font-size: 12px; letter-spacing: 0.35em;
  color: var(--accent); margin-bottom: 12px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.7s, transform 0.7s;
}
.talent-archive-label.vis { opacity: 1; transform: none; }
.talent-archive-title {
  font-family: var(--serif); font-size: clamp(32px, 5vw, 56px);
  font-weight: 300; letter-spacing: 0.08em; color: var(--black); margin-bottom: 20px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
}
.talent-archive-title span { display: inline-block; }
.talent-archive-title.vis { opacity: 1; transform: none; }

.talent-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px 24px;
}

.talent-card {
  display: block; text-decoration: none; color: inherit;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}
.talent-card.vis { opacity: 1; transform: none; }

.talent-card-photo {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 4; background: var(--placeholder);
  border-radius: 2px;
}
.talent-card-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.talent-card:hover .talent-card-img { transform: scale(1.05); }

.talent-card-noimg {
  width: 100%; height: 100%; background: var(--placeholder);
}
.talent-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.4s;
}
.talent-card:hover .talent-card-overlay { opacity: 1; }
.talent-card-name-en {
  font-family: var(--serif); font-size: 13px; letter-spacing: 0.15em; color: #fff;
}

.talent-card-info { padding: 12px 4px 0; }
.talent-card-name {
  font-size: 14px; font-weight: 400; letter-spacing: 0.06em; color: var(--black);
  margin-bottom: 3px;
}
.talent-card-en {
  font-family: var(--serif); font-size: 11px; color: var(--text-muted); letter-spacing: 0.1em;
}

@media (max-width: 600px) {
  .talent-archive-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .talent-archive-page { padding-left: 16px; padding-right: 16px; }
}

/* ─── ABOUT PAGE ─── */
.about-page { padding-top: 120px; }
.about-page-head {
  text-align: center; padding: 60px 32px 56px;
}
.about-page-label {
  font-family: var(--serif); font-size: 12px; letter-spacing: 0.35em;
  color: var(--accent); margin-bottom: 12px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.7s, transform 0.7s;
}
.about-page-label.vis { opacity: 1; transform: none; }
.about-page-title {
  font-family: var(--serif); font-size: clamp(28px, 5vw, 52px);
  font-weight: 300; letter-spacing: 0.08em; color: var(--black); margin-bottom: 20px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
}
.about-page-title span { display: inline-block; }
.about-page-title.vis { opacity: 1; transform: none; }

.about-page-sec { padding: 80px 0; }
.about-page-sec + .about-page-sec { border-top: 1px solid var(--border-light); }
.about-page-inner { max-width: 1000px; margin: 0 auto; padding: 0 48px; }

.about-page-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-page-visual { position: relative; min-height: 320px; }
.about-page-visual-img { position: relative; z-index: 2; border-radius: 4px; overflow: hidden; }
.about-page-visual-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-page-text {}

.about-page-company .sec-label,
.about-page-company .sec-title,
.about-page-company .sec-divider { margin-bottom: 8px; }
.about-page-company .sec-title { margin-bottom: 16px; }

.about-table {
  width: 100%; border-collapse: collapse; margin-top: 40px;
  opacity: 0; transform: translateY(20px); transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
}
.about-table.vis { opacity: 1; transform: none; }
.about-table th, .about-table td {
  padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--border-light);
  font-size: 14px; font-weight: 300; vertical-align: top;
}
.about-table th {
  width: 160px; color: var(--text-muted); font-family: var(--serif);
  letter-spacing: 0.06em; white-space: nowrap;
}
.about-table td { color: var(--text); line-height: 1.8; }
.about-table td a { color: var(--accent); border-bottom: 1px solid rgba(232,168,56,0.3); transition: border-color 0.3s; }
.about-table td a:hover { border-color: var(--accent); }

@media (max-width: 768px) {
  .about-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-page-inner { padding: 0 20px; }
  .about-table th { width: 100px; }
  .about-table th, .about-table td { padding: 14px 12px; font-size: 13px; }
}

/* ─── NEWS ARCHIVE PAGE ─── */
.news-archive-page { padding-top: 120px; min-height: 80vh; }
.news-archive-head { text-align: center; padding: 60px 32px 48px; }
.news-archive-label {
  font-family: var(--serif); font-size: 12px; letter-spacing: 0.35em;
  color: var(--accent); margin-bottom: 12px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.7s, transform 0.7s;
}
.news-archive-label.vis { opacity: 1; transform: none; }
.news-archive-title {
  font-family: var(--serif); font-size: clamp(32px, 5vw, 56px);
  font-weight: 300; letter-spacing: 0.08em; color: var(--black); margin-bottom: 20px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
}
.news-archive-title span { display: inline-block; }
.news-archive-title.vis { opacity: 1; transform: none; }
.news-archive-inner { max-width: 800px; margin: 0 auto; padding: 0 32px 100px; }
.news-archive-list { display: flex; flex-direction: column; }
.news-archive-item {
  display: grid; grid-template-columns: 100px 80px 1fr 24px;
  align-items: center; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border-light);
  text-decoration: none; color: inherit;
  opacity: 0; transform: translateY(12px); transition: opacity 0.6s, transform 0.6s, background 0.2s;
}
.news-archive-item.vis { opacity: 1; transform: none; }
.news-archive-item:hover { background: var(--off-white); padding-left: 12px; padding-right: 12px; margin: 0 -12px; border-radius: 4px; }
.news-archive-date { font-family: var(--serif); font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }
.news-archive-cat {
  font-size: 10px; letter-spacing: 0.15em; color: var(--accent);
  border: 1px solid rgba(232,168,56,0.4); padding: 3px 8px; border-radius: 2px;
  white-space: nowrap;
}
.news-archive-title-text { font-size: 14px; font-weight: 300; color: var(--text); line-height: 1.6; }
.news-archive-arrow { font-size: 14px; color: var(--text-muted); text-align: right; transition: transform 0.3s, color 0.3s; }
.news-archive-item:hover .news-archive-arrow { transform: translateX(4px); color: var(--accent); }
.news-pagination { display: flex; justify-content: space-between; margin-top: 48px; }
.news-pagination a { font-family: var(--serif); font-size: 13px; letter-spacing: 0.15em; color: var(--text-muted); transition: color 0.3s; }
.news-pagination a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .news-archive-item { grid-template-columns: 1fr 24px; grid-template-rows: auto auto; gap: 6px 8px; }
  .news-archive-date { font-size: 11px; }
  .news-archive-cat { grid-column: 1; justify-self: start; }
  .news-archive-title-text { grid-column: 1; }
  .news-archive-arrow { grid-column: 2; grid-row: 1 / 3; align-self: center; }
}

/* ─── SINGLE POST PAGE ─── */
.single-page { padding-top: 120px; min-height: 80vh; }
.single-inner { max-width: 740px; margin: 0 auto; padding: 60px 32px 100px; }
.single-head { margin-bottom: 40px; }
.single-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.single-date { font-family: var(--serif); font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }
.single-cat {
  font-size: 10px; letter-spacing: 0.15em; color: var(--accent);
  border: 1px solid rgba(232,168,56,0.4); padding: 3px 8px; border-radius: 2px;
}
.single-title {
  font-family: var(--sans); font-size: clamp(20px, 3vw, 28px); font-weight: 300;
  letter-spacing: 0.06em; color: var(--black); line-height: 1.6; margin-bottom: 24px;
}
.single-divider { width: 40px; height: 1px; background: var(--accent); }
.single-thumb { margin-bottom: 40px; border-radius: 4px; overflow: hidden; }
.single-thumb-img { width: 100%; height: auto; display: block; }
.single-content {
  font-size: 15px; font-weight: 300; line-height: 2; color: var(--text);
  letter-spacing: 0.04em;
}
.single-content p { margin-bottom: 1.6em; }
.single-content h2 { font-size: 18px; font-weight: 400; margin: 2em 0 0.8em; color: var(--black); }
.single-content h3 { font-size: 16px; font-weight: 400; margin: 1.6em 0 0.6em; color: var(--black); }
.single-content img { max-width: 100%; height: auto; border-radius: 4px; margin: 1em 0; }
.single-content a { color: var(--accent); border-bottom: 1px solid rgba(232,168,56,0.3); }
.single-footer { margin-top: 60px; padding-top: 32px; border-top: 1px solid var(--border-light); }
.single-back {
  font-family: var(--serif); font-size: 13px; letter-spacing: 0.15em;
  color: var(--text-muted); transition: color 0.3s;
}
.single-back:hover { color: var(--accent); }

@media (max-width: 600px) {
  .single-inner { padding: 40px 20px 80px; }
}

/* ─── PDF BUTTON ─── */
.pdf-btn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; letter-spacing: 0.2em;
  color: #E8A838; background: transparent;
  border: 1px solid #E8A838; padding: 8px 24px;
  cursor: pointer; transition: background 0.3s, color 0.3s;
}
.pdf-btn:hover { background: #E8A838; color: #fff; }

/* ─── PRINT / PDF STYLES ─── */
@media print {
  /* 印刷時に非表示 */
  .header, .mobile-nav, .cursor, .cursor-trail,
  .scroll-gauge, .grain, .loader,
  .talent-single-footer, footer, #backTop { display: none !important; }

  /* 余白・フォントリセット */
  body { background: #fff !important; color: #111 !important; cursor: auto !important; }
  main { padding-top: 0 !important; }

  /* レイアウト維持 */
  .oa-voice-player { display: none !important; }

  /* 改ページ抑制 */
  h1, h2, img { page-break-after: avoid; }
}

/* ─── TALENT SINGLE PAGE ─── */
.talent-single-page { padding-top: 120px; min-height: 80vh; }

.talent-single-head {
  text-align: center; padding: 60px 32px 48px; position: relative;
}
.talent-single-label {
  font-family: var(--serif); font-size: 12px; letter-spacing: 0.35em;
  color: var(--accent); margin-bottom: 12px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.7s, transform 0.7s;
}
.talent-single-label.vis { opacity: 1; transform: none; }
.talent-single-name {
  font-family: var(--sans); font-size: clamp(28px, 5vw, 52px);
  font-weight: 300; letter-spacing: 0.12em; color: var(--black); margin-bottom: 8px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.7s 0.1s, transform 0.7s 0.1s;
}
.talent-single-name.vis { opacity: 1; transform: none; }
.talent-single-name-en {
  font-family: var(--serif); font-size: 15px; color: var(--text-muted);
  letter-spacing: 0.15em; margin-bottom: 20px;
  opacity: 0; transform: translateY(12px); transition: opacity 0.7s 0.2s, transform 0.7s 0.2s;
}
.talent-single-name-en.vis { opacity: 1; transform: none; }

.talent-single-body {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 64px; align-items: flex-start;
  max-width: 960px; margin: 0 auto; padding: 0 48px 80px;
}

.talent-single-photo { position: relative; }
.talent-single-img { width: 100%; display: block; border-radius: 2px; }
.talent-single-noimg {
  aspect-ratio: 3/4; background: var(--placeholder); border-radius: 2px;
}
.talent-single-photo-deco {
  position: absolute; bottom: -16px; right: -16px;
  width: 60%; height: 60%; border: 1px solid rgba(232,168,56,0.25);
  pointer-events: none; z-index: -1;
}

.talent-single-info { padding-top: 8px; }
.talent-single-section-label {
  font-family: var(--serif); font-size: 11px; letter-spacing: 0.3em;
  color: var(--accent); margin-bottom: 16px;
}
.talent-single-profile-wrap { margin-bottom: 48px; }
.talent-single-profile {
  font-size: 14px; font-weight: 300; line-height: 2.2;
  color: var(--text); letter-spacing: 0.04em;
}
.talent-single-voice-wrap {}

.talent-single-footer {
  max-width: 960px; margin: 0 auto; padding: 0 48px 80px;
  display: flex; align-items: center; gap: 32px;
  border-top: 1px solid var(--border-light); padding-top: 32px;
}
.talent-single-back {
  font-family: var(--serif); font-size: 13px; letter-spacing: 0.2em;
  color: var(--text-muted); transition: color 0.3s;
}
.talent-single-back:hover { color: var(--accent); }

@media (max-width: 768px) {
  .talent-single-body { grid-template-columns: 1fr; gap: 40px; padding: 0 20px 60px; }
  .talent-single-photo { max-width: 280px; margin: 0 auto; }
  .talent-single-footer { padding: 24px 20px 60px; }
}

/* ─── NEWS ARCHIVE items animation fix ─── */
.news-archive-item {
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s, background 0.2s, padding 0.2s;
}
.news-archive-item.vis { opacity: 1; transform: none; }
