/* =========================================================
   D-PLUG VFX — site styles
   Dark cinematic theme. No build step.
   ========================================================= */
:root {
  --bg: #0a0b0d;
  --bg-2: #0e1013;
  --panel: #121419;
  --panel-2: #171a20;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .15);
  --text: #eceef1;
  --text-2: #c9ccd2;
  --muted: #9296a0;
  --dim: #666b74;
  /* D-PLUG brand colors — sampled from the :D logo (red → magenta) */
  --brand: #f5372a;
  --brand-2: #c9437f;
  --brand-text: #ff5d4f;      /* brand red tuned for small text on black */
  --grad: linear-gradient(90deg, #f5372a 0%, #ec3a45 50%, #c9437f 100%);
  --accent: var(--brand);     /* buttons */
  --accent-2: var(--brand-text);
  --violet: var(--brand-2);
  --gold: var(--brand-text);
  --gutter: clamp(20px, 4.6vw, 64px);
  --maxw: 1360px;
  --hdr-h: 84px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --font: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Segoe UI", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font); font-size: 15px; line-height: 1.7; letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  word-break: keep-all; overflow-wrap: anywhere;
}
img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }
::selection { background: rgba(245, 55, 42, .38); }
/* gradient text for highlighted words (*word* in captions, <em> in headings) */
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; font-style: normal; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.ico { width: 1em; height: 1em; display: inline-block; vertical-align: -.125em; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.skip { position: fixed; left: 12px; top: -60px; z-index: 200; background: #fff; color: #000; padding: 8px 14px; border-radius: 2px; }
.skip:focus { top: 12px; }

/* ---------- header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 90; height: var(--hdr-h); transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease); border-bottom: 1px solid transparent; }
.site-header.solid { background: rgba(10, 11, 13, .82); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-color: var(--line); }
.hdr-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 var(--gutter); }
.brand img { height: 26px; width: auto; }
.gnb { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); margin-left: auto; }
.gnb > .nav-item { position: relative; }
.gnb a.nav-link { display: inline-block; padding: 8px 0; font-size: 12px; font-weight: 500; letter-spacing: .14em; color: var(--text-2); transition: color .2s; position: relative; }
.gnb a.nav-link:hover, .gnb a.nav-link.on { color: #fff; }
.gnb a.nav-link.on::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: 1px; height: 2px; background: var(--grad); }
.submenu { position: absolute; top: 100%; left: 50%; transform: translate(-50%, 6px); min-width: 188px; padding: 10px 0; background: rgba(14, 16, 19, .96); border: 1px solid var(--line); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; }
.nav-item:hover .submenu, .nav-item:focus-within .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.submenu a { display: block; padding: 8px 20px; font-size: 13px; color: var(--text-2); letter-spacing: .02em; white-space: nowrap; }
.submenu a:hover { color: #fff; background: rgba(255, 255, 255, .04); }
.hdr-tools { display: flex; align-items: center; gap: 22px; }
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: .12em; color: var(--dim); }
.lang-switch button { color: var(--dim); font-weight: 600; padding: 4px 1px; }
.lang-switch button.on { color: #fff; }
.menu-toggle { width: 30px; height: 22px; position: relative; display: inline-flex; flex-direction: column; justify-content: space-between; }
.menu-toggle i { display: block; height: 1.5px; width: 100%; background: #fff; transition: transform .3s var(--ease), opacity .3s; }
.menu-open .menu-toggle i:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-open .menu-toggle i:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle i:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* full-screen menu */
.menu-layer { position: fixed; inset: 0; z-index: 85; background: rgba(8, 9, 11, .97); display: flex; flex-direction: column; justify-content: center; padding: calc(var(--hdr-h) + 20px) var(--gutter) 48px; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s; overflow-y: auto; }
.menu-open .menu-layer { opacity: 1; visibility: visible; }
.menu-grid { width: 100%; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: end; }
.menu-big a { display: block; font-size: clamp(38px, 6.4vw, 84px); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; color: #6f737c; transition: color .2s, transform .3s var(--ease); }
.menu-big a:hover, .menu-big a.on { color: #fff; transform: translateX(8px); }
.menu-sub { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 6px 0 20px 4px; }
.menu-sub a { font-size: 14px; color: var(--muted); }
.menu-sub a:hover { color: #fff; }
.menu-side { display: grid; gap: 26px; font-size: 14px; color: var(--text-2); }
.menu-side h4 { font-size: 11px; letter-spacing: .18em; color: var(--brand-text); font-weight: 600; margin-bottom: 8px; }
.menu-side a:hover { color: #fff; }

/* ---------- generic section / type ---------- */
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--brand-text); }
.eyebrow.red, .eyebrow.blue, .eyebrow.violet { color: var(--brand-text); }
.sec { padding: clamp(72px, 9vw, 120px) 0; }
.sec.tight { padding: clamp(56px, 6vw, 84px) 0; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: clamp(28px, 3.4vw, 44px); }
.sec-title { font-size: clamp(26px, 3.2vw, 40px); line-height: 1.2; font-weight: 700; letter-spacing: -.02em; margin-top: 12px; }
.sec-lead { color: var(--muted); max-width: 560px; font-size: 15px; }
.num-label { display: flex; align-items: baseline; gap: 14px; font-size: 12px; letter-spacing: .14em; color: var(--muted); font-weight: 600; }
.num-label b { color: var(--brand-text); font-weight: 600; font-size: 11px; }
.divider { border: 0; border-top: 1px solid var(--line); margin: 0; }
.btn { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 15px 22px; border: 1px solid var(--line-2); color: #fff; transition: background .25s, border-color .25s, color .25s; }
.btn:hover { border-color: #fff; background: rgba(255, 255, 255, .04); }
.btn .ico { font-size: 16px; transition: transform .3s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }
.btn.red { background: var(--accent); border-color: var(--accent); }
.btn.red:hover { background: #ff4b3d; border-color: #ff4b3d; }
.btn.line-red { border-color: var(--accent); color: var(--accent); }
.btn.line-red:hover { background: var(--accent); color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.text-link .ico { font-size: 18px; transition: transform .3s var(--ease); }
.text-link:hover .ico { transform: translateX(5px); }

/* play button (round) */
.play { display: inline-flex; align-items: center; gap: 16px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.play .ring { width: 58px; height: 58px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .85); display: grid; place-items: center; transition: background .25s, transform .3s var(--ease); flex: none; }
.play .ring svg { width: 18px; height: 18px; fill: #fff; stroke: none; margin-left: 3px; }
.play:hover .ring { background: rgba(255, 255, 255, .12); transform: scale(1.05); }
.play em { font-style: normal; color: var(--text-2); margin-left: -4px; letter-spacing: .08em; }

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* ---------- page hero ---------- */
.page-hero { position: relative; min-height: clamp(440px, 64vh, 660px); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.page-hero .hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: heroIn 2.4s var(--ease) forwards; }
@keyframes heroIn { from { transform: scale(1.1); opacity: .2; } to { transform: scale(1.02); opacity: 1; } }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 11, 13, .55) 0%, rgba(10, 11, 13, .15) 38%, rgba(10, 11, 13, .55) 76%, var(--bg) 100%); }
.page-hero.center { justify-content: center; text-align: center; }
.page-hero .hero-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: calc(var(--hdr-h) + 24px) var(--gutter) 64px; }
.hero-title { font-size: clamp(44px, 7.4vw, 96px); line-height: 1.02; font-weight: 700; letter-spacing: -.02em; }
.hero-title.spaced { font-weight: 300; letter-spacing: .32em; margin-right: -.32em; }
.hero-sub { margin-top: 20px; font-size: clamp(14px, 1.3vw, 16px); color: var(--text-2); }
.hero-sub.left { max-width: 560px; }

/* ---------- HOME stage ---------- */
body.page-home { overflow: hidden; }
body.page-home .site-footer { display: none; }
.stage { position: relative; height: 100vh; height: 100svh; min-height: 520px; overflow: hidden; background: #000; }
.stage-media, .slide { position: absolute; inset: 0; }
.slide { opacity: 0; transition: opacity 1.4s var(--ease); }
.slide.on { opacity: 1; }
.slide > img { width: 100%; height: 100%; object-fit: cover; }
.slide.on > img.kb { animation: kenburns var(--dur, 9s) linear forwards; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.slide .bgv { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh; transform: translate(-50%, -50%); border: 0; pointer-events: none; opacity: 0; transition: opacity 1.2s; object-fit: cover; }
.slide.v-on .bgv { opacity: 1; }
.stage-shade { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .32) 42%, rgba(0, 0, 0, 0) 70%),
              linear-gradient(0deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, 0) 45%),
              linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 22%); }
.stage-caption { position: absolute; left: 0; right: 0; bottom: clamp(96px, 15vh, 150px); padding: 0 var(--gutter); max-width: calc(var(--maxw) + 2 * var(--gutter)); margin: 0 auto; }
.stage-caption > * { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.stage-caption.in > * { opacity: 1; transform: none; }
.stage-caption.in > *:nth-child(2) { transition-delay: .08s; }
.stage-caption.in > *:nth-child(3) { transition-delay: .16s; }
.stage-caption.in > *:nth-child(4) { transition-delay: .24s; }
.cap-label { font-size: 12px; letter-spacing: .2em; font-weight: 600; color: var(--brand-text); text-transform: uppercase; margin-bottom: 18px; }
.cap-title { font-size: clamp(38px, 6vw, 80px); line-height: 1.06; font-weight: 700; letter-spacing: -.025em; max-width: 900px; }
.cap-title .sub { display: block; font-weight: 300; letter-spacing: .04em; margin-top: 4px; }
.cap-title em, .fb-title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.cap-text { margin-top: 22px; max-width: 520px; font-size: clamp(14px, 1.25vw, 16px); line-height: 1.75; color: var(--text-2); }
.cap-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px 40px; margin-top: 34px; }
.stage-nav { position: absolute; right: var(--gutter); bottom: 40px; display: flex; align-items: center; gap: 16px; font-size: 12px; letter-spacing: .12em; color: var(--text-2); }
.stage-nav .idx { color: #fff; font-weight: 600; }
.stage-bars { display: flex; gap: 6px; }
.stage-bars button { width: 34px; height: 14px; display: flex; align-items: center; }
.stage-bars button::before { content: ""; display: block; width: 100%; height: 2px; background: rgba(255, 255, 255, .22); }
.stage-bars button { position: relative; }
.stage-bars button i { position: absolute; left: 0; top: 6px; height: 2px; width: 0; background: var(--grad); }
.stage-arrows { display: flex; gap: 8px; margin-left: 8px; }
.stage-arrows button { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .35); display: grid; place-items: center; transition: background .2s, border-color .2s; }
.stage-arrows button:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.stage-arrows .ico { font-size: 16px; }
.stage-foot { position: absolute; left: var(--gutter); bottom: 40px; display: flex; align-items: center; gap: 18px; }
/* SNS icons (white SVG) — dimmed, full white on hover; Instagram without a URL is a plain <span> */
.sns { display: inline-flex; opacity: .7; transition: opacity .2s; }
.sns img { display: block; width: 18px; height: 18px; }
a.sns:hover { opacity: 1; }

/* ---------- WORK ---------- */
.cat-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px clamp(16px, 3vw, 44px); padding: 34px var(--gutter) 10px; }
.cat-tabs button { position: relative; padding: 10px 2px; font-size: 14px; color: var(--muted); letter-spacing: .02em; transition: color .2s; }
.cat-tabs button sup { font-size: 10px; color: var(--dim); margin-left: 4px; letter-spacing: 0; }
.cat-tabs button:hover { color: #fff; }
.cat-tabs button.on { color: #fff; }
.cat-tabs button.on::after { content: ""; position: absolute; left: -4px; right: -4px; bottom: 0; height: 2px; background: var(--grad); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding-top: 28px; }
.work-card { position: relative; display: block; background: var(--panel); border: 1px solid var(--line); overflow: hidden; aspect-ratio: 16 / 10; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s; filter: brightness(.82) saturate(.95); }
.work-card:hover img { transform: scale(1.05); filter: brightness(.95) saturate(1.02); }
.work-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .25) 42%, rgba(0, 0, 0, 0) 64%); pointer-events: none; }
/* title (+ subtitle) on the left, genre label on the right — both sit on the card's bottom line */
.wc-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 22px 20px; display: flex; justify-content: space-between; align-items: flex-end; align-items: last baseline; gap: 16px; }
.wc-title { flex: 1 1 auto; min-width: 0; font-size: clamp(17px, 1.55vw, 21px); line-height: 1.3; font-weight: 600; letter-spacing: -.01em; }
.wc-title span { display: block; font-weight: 400; color: #aeb3bb; }
.wc-label { flex: 0 1 auto; max-width: 46%; margin: 0; text-align: right; font-size: 11px; line-height: 1.5; letter-spacing: .12em; color: #b7bbc2; text-transform: uppercase; }
.wc-badge { position: absolute; top: 16px; left: 16px; z-index: 2; font-size: 10px; letter-spacing: .16em; font-weight: 600; padding: 5px 8px; background: rgba(0, 0, 0, .5); border: 1px solid var(--line-2); color: var(--text-2); text-transform: uppercase; }
.wc-badge.ai { color: var(--brand-text); border-color: rgba(245, 55, 42, .55); }
/* highlighted (featured) cards in the "전체" tab — the title line in the brand gradient */
.work-card.feat .wc-hl { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; -webkit-box-decoration-break: clone; box-decoration-break: clone; filter: drop-shadow(0 1px 1.5px rgba(0, 0, 0, .8)) drop-shadow(0 2px 10px rgba(0, 0, 0, .5)); }

.more-wrap { display: flex; justify-content: center; padding: 44px 0 0; }
.empty { padding: 80px 0; text-align: center; color: var(--muted); }
.featured { position: relative; margin-top: clamp(60px, 7vw, 96px); min-height: 300px; border: 1px solid var(--line); overflow: hidden; display: flex; align-items: center; isolation: isolate; }
.featured .fb-bg { position: absolute; inset: 0; z-index: -2; }
.featured .fb-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.featured::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10, 11, 13, .96) 0%, rgba(10, 11, 13, .75) 38%, rgba(10, 11, 13, .1) 75%); }
.fb-inner { padding: clamp(32px, 4.6vw, 64px); max-width: 620px; }
.fb-title { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.05; font-weight: 500; letter-spacing: -.02em; margin: 16px 0 16px; }
.fb-text { color: var(--text-2); font-size: 15px; }
.fb-link { position: absolute; right: clamp(24px, 3.4vw, 44px); bottom: clamp(22px, 3vw, 36px); }

/* ---------- WORK VIEW ---------- */
.wv-hero { position: relative; min-height: clamp(520px, 78vh, 760px); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.wv-hero .hero-bg { position: absolute; inset: 0; z-index: -2; }
.wv-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 40%; animation: heroIn 2.4s var(--ease) forwards; }
.wv-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8, 9, 11, .94) 0%, rgba(8, 9, 11, .7) 34%, rgba(8, 9, 11, .15) 70%), linear-gradient(0deg, var(--bg) 0%, rgba(10, 11, 13, 0) 30%); }
.wv-hero-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: calc(var(--hdr-h) + 40px) var(--gutter) 80px; }
.wv-title { margin-top: 18px; font-size: clamp(40px, 5.6vw, 76px); line-height: 1.04; letter-spacing: -.02em; max-width: 780px; }
.wv-title strong { display: block; font-weight: 700; }
.wv-title span { display: block; font-weight: 300; letter-spacing: .03em; }
.wv-desc { margin-top: 26px; max-width: 480px; color: var(--text-2); font-size: 15px; line-height: 1.8; }
.wv-hero .play { margin-top: 40px; }
.wv-crumb { display: inline-flex; gap: 10px; align-items: center; font-size: 12px; color: var(--muted); letter-spacing: .08em; }
.wv-crumb a:hover { color: #fff; }
.wv-sec { display: grid; grid-template-columns: minmax(200px, 250px) 1fr; gap: 24px clamp(24px, 4vw, 60px); padding: clamp(44px, 5vw, 64px) 0; border-top: 1px solid var(--line); }
.wv-sec:first-child { border-top: 0; }
.wv-sec-head .n { font-size: 11px; color: var(--brand-text); letter-spacing: .1em; font-weight: 600; }
.wv-sec-head h2 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 500; letter-spacing: -.01em; margin-top: 6px; }
.wv-overview { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.1fr); gap: clamp(24px, 3vw, 44px); align-items: start; }
.wv-overview p { color: var(--text-2); font-size: 14.5px; line-height: 1.9; }
.wv-meta { margin-top: 26px; display: grid; gap: 14px; }
.wv-meta div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; font-size: 13px; padding-top: 12px; border-top: 1px solid var(--line); }
.wv-meta dt { color: var(--dim); letter-spacing: .06em; }
.wv-meta dd { margin: 0; color: var(--text); }
.wv-still { position: relative; border: 1px solid var(--line); overflow: hidden; cursor: pointer; aspect-ratio: 16 / 9; background: var(--panel); }
.wv-still img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.wv-still:hover img { transform: scale(1.03); }
.wv-still .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.gallery { position: relative; min-width: 0; }
.g-track { display: flex; gap: 6px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 2px; }
.g-track::-webkit-scrollbar { display: none; }
.g-item { flex: 0 0 auto; height: clamp(180px, 20vw, 260px); scroll-snap-align: start; border: 1px solid var(--line); overflow: hidden; cursor: zoom-in; background: var(--panel); }
.g-item img { height: 100%; width: auto; max-width: none; transition: transform .8s var(--ease), filter .4s; filter: brightness(.9); }
.g-item:hover img { transform: scale(1.04); filter: brightness(1); }
.g-ctrl { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.round-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: border-color .2s, background .2s; }
.round-btn:hover { border-color: #fff; background: rgba(255, 255, 255, .06); }
.round-btn:disabled { opacity: .35; pointer-events: none; }
.round-btn .ico { font-size: 16px; }
.tools-panel { border: 1px solid var(--line); background: linear-gradient(135deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, 0)); display: grid; grid-template-columns: 1fr auto; align-items: center; }
.tools-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)); gap: 8px; padding: 30px clamp(18px, 2.4vw, 32px); }
.tool { text-align: center; padding: 10px 6px; }
.tool .ico { font-size: 34px; stroke-width: 1.1; color: var(--text-2); }
.tool b { display: block; margin-top: 14px; font-size: 13px; font-weight: 500; }
.tool small { display: block; font-size: 11.5px; color: var(--dim); margin-top: 4px; }
.tools-quote { position: relative; padding: 30px clamp(24px, 3vw, 44px); font-size: 14px; line-height: 1.6; color: var(--brand-text); max-width: 240px; border-left: 1px solid rgba(245, 55, 42, .35); margin: 22px 0; }
.tools-quote::before { content: ""; position: absolute; left: -5px; top: 50%; width: 9px; height: 9px; transform: translateY(-50%) rotate(45deg); background: radial-gradient(circle, #ffb3a8 0%, rgba(245, 55, 42, .25) 70%); box-shadow: 0 0 18px 6px rgba(245, 55, 42, .4); }
.next-card { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); min-height: 170px; border: 1px solid var(--line); overflow: hidden; isolation: isolate; }
.next-card .nc-text { padding: 30px 34px; display: flex; flex-direction: column; justify-content: center; gap: 16px; z-index: 1; }
.next-card h3 { font-size: clamp(20px, 2vw, 24px); font-weight: 400; line-height: 1.3; }
.next-card .nc-img { position: relative; }
.next-card .nc-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); transition: transform 1s var(--ease), filter .5s; }
.next-card .nc-img::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--bg) 0%, rgba(10, 11, 13, 0) 40%); }
.next-card:hover .nc-img img { transform: scale(1.04); filter: brightness(.85); }

/* ---------- ABOUT ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); padding: 54px 0; border-bottom: 1px solid var(--line); }
.stat { text-align: center; padding: 6px 12px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-size: clamp(36px, 4vw, 52px); line-height: 1; font-weight: 300; letter-spacing: -.02em; }
.stat span { display: block; margin-top: 14px; font-size: 12px; letter-spacing: .12em; color: var(--text-2); text-transform: uppercase; }
.stat.key b { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; font-weight: 400; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.intro-grid h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.25; font-weight: 700; letter-spacing: -.02em; margin-top: 14px; }
.intro-grid h2 em, .sec-title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.intro-grid .body p { color: var(--text-2); font-size: 15.5px; line-height: 1.95; }
.intro-grid .body p + p { margin-top: 18px; }
.intro-grid .body p.profile-dl { margin-top: 30px; }
.profile-dl .btn small { font-size: 10px; letter-spacing: .12em; color: var(--muted); margin-left: -4px; }
.profile-dl .btn:hover .ico { transform: translateY(3px); }
.caps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.cap { position: relative; aspect-ratio: 3 / 4; border: 1px solid var(--line); overflow: hidden; display: block; isolation: isolate; }
.cap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: brightness(.62) saturate(.9); transition: transform 1s var(--ease), filter .5s; }
.cap::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, .75) 100%); }
.cap:hover img { transform: scale(1.06); filter: brightness(.8); }
.cap h3 { position: absolute; top: 18px; left: 18px; right: 18px; font-size: 12px; font-weight: 600; letter-spacing: .12em; }
.cap p { position: absolute; left: 18px; right: 52px; bottom: 18px; font-size: 12.5px; line-height: 1.55; color: var(--text-2); }
.cap .ico { position: absolute; right: 16px; bottom: 20px; font-size: 18px; }
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.step { position: relative; }
.step .ico { font-size: 34px; stroke-width: 1.1; color: var(--text-2); }
.step h3 { margin-top: 18px; font-size: 12px; letter-spacing: .12em; font-weight: 600; color: var(--brand-text); }
.step h3 small { display: block; margin-top: 6px; font-size: 16px; letter-spacing: -.01em; font-weight: 600; color: var(--text); }
.step ul { margin-top: 14px; display: grid; gap: 4px; }
.step li { font-size: 13px; color: var(--muted); }
.step:not(:last-child)::after { content: ""; position: absolute; top: 17px; left: 58px; right: -8px; height: 1px; background: linear-gradient(90deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, .06)); }
.formats { margin-top: 56px; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.formats div { padding: 20px 22px; border-left: 1px solid var(--line); }
.formats div:first-child { border-left: 0; }
.formats small { display: block; font-size: 10.5px; letter-spacing: .16em; color: var(--dim); font-weight: 600; }
.formats b { display: block; margin-top: 6px; font-size: 15px; font-weight: 500; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 0; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 7px; height: 1px; background: var(--line-2); }
.tl-item { position: relative; padding: 30px 14px 0 0; }
.tl-item::before { content: ""; position: absolute; top: 3px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--bg); border: 1px solid rgba(255, 255, 255, .6); }
.tl-item.hl::before { background: var(--brand); border-color: var(--brand); box-shadow: 0 0 12px rgba(245, 55, 42, .75); }
.tl-item.hl b { color: var(--brand-text); }
.tl-item b { display: block; font-size: 15px; font-weight: 600; letter-spacing: .02em; }
.tl-item p { margin-top: 8px; font-size: 13px; line-height: 1.55; color: var(--text-2); }
.tl-item small { display: block; margin-top: 6px; font-size: 12px; color: var(--dim); line-height: 1.5; }
.logo-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.logo-grid div { height: 112px; display: grid; place-items: center; padding: 22px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-grid img { max-height: 46px; max-width: 100%; width: auto; object-fit: contain; filter: grayscale(1) brightness(2.2) contrast(.9); opacity: .78; transition: opacity .3s; }
.logo-grid div:hover img { opacity: 1; }
.client-names { margin-top: 26px; color: var(--muted); font-size: 13.5px; line-height: 2; }
.client-names b { color: var(--brand-text); font-weight: 600; margin-right: 10px; letter-spacing: .12em; font-size: 11px; }

/* CTA banners */
.cta-banner { position: relative; overflow: hidden; isolation: isolate; border: 1px solid rgba(255, 255, 255, .1); }
.cta-banner .cb-bg { position: absolute; inset: 0; z-index: -2; }
.cta-banner .cb-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; }
.cta-banner.violet { border-radius: 10px; background: linear-gradient(90deg, #262a47 0%, #151726 60%, #0e0f18 100%); }
.cta-banner.violet::after { background: linear-gradient(90deg, rgba(34, 36, 64, .96) 0%, rgba(20, 21, 38, .7) 45%, rgba(10, 11, 18, .05) 100%); }
.cta-banner .cb-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(24px, 5vw, 64px); padding: clamp(34px, 4.4vw, 56px) clamp(28px, 4.4vw, 60px); }
.cb-title { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.2; font-weight: 600; letter-spacing: -.02em; }
.cb-title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.cb-text { color: var(--text-2); font-size: 14px; line-height: 1.9; max-width: 340px; }
.cta-band { position: relative; overflow: hidden; isolation: isolate; border-top: 1px solid var(--line); }
.cta-band .cb-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .cb-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10, 11, 13, .92) 0%, rgba(10, 11, 13, .45) 50%, rgba(10, 11, 13, .88) 100%); }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 72px); }
.cta-band h2 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.2; font-weight: 600; letter-spacing: -.02em; margin: 12px 0 10px; }
.cta-band p { color: var(--text-2); }

/* ---------- NEWS ---------- */
.news-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 12.5px; padding: 9px 16px; border: 1px solid var(--line-2); border-radius: 100px; color: var(--text-2); transition: all .2s; }
.chip:hover { border-color: #fff; color: #fff; }
.chip.on { background: #fff; color: #0a0a0a; border-color: #fff; }
.news-feature { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); border: 1px solid var(--line); background: var(--panel); cursor: pointer; margin-bottom: 6px; }
.news-feature .nf-img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.news-feature .nf-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.news-feature:hover .nf-img img { transform: scale(1.03); }
.news-feature .nf-text { padding: clamp(24px, 3vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.news-feature h3 { font-size: clamp(22px, 2.3vw, 30px); line-height: 1.35; font-weight: 600; letter-spacing: -.015em; margin: 14px 0 14px; }
.news-feature p.ex { color: var(--muted); font-size: 14.5px; line-height: 1.8; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.news-card { border: 1px solid var(--line); background: var(--panel); cursor: pointer; display: flex; flex-direction: column; transition: border-color .25s; text-align: left; }
.news-card:hover { border-color: var(--line-2); }
.news-card .nc-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--panel-2); }
.news-card .nc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); filter: brightness(.9); }
.news-card:hover .nc-media img { transform: scale(1.04); }
.news-card .nc-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card h3 { font-size: 16.5px; line-height: 1.45; font-weight: 600; letter-spacing: -.01em; }
.news-card p.ex { font-size: 13.5px; color: var(--muted); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-meta { display: flex; align-items: center; gap: 12px; font-size: 11.5px; letter-spacing: .06em; color: var(--dim); }
.tag { font-size: 10.5px; letter-spacing: .14em; font-weight: 600; text-transform: uppercase; padding: 3px 8px; border: 1px solid var(--line-2); color: var(--text-2); }
.tag.notice, .tag.work, .tag.making, .tag.link { color: var(--brand-text); border-color: rgba(245, 55, 42, .5); }



.news-card .nc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-2); }
.pin { font-size: 10.5px; letter-spacing: .14em; color: var(--brand-text); font-weight: 600; }

/* ---------- CONTACT ---------- */
.contact-hero { min-height: clamp(460px, 62vh, 620px); }
.contact-hero::after { background: linear-gradient(90deg, rgba(10, 11, 13, .9) 0%, rgba(10, 11, 13, .55) 42%, rgba(10, 11, 13, .1) 70%), linear-gradient(0deg, var(--bg) 0%, rgba(10, 11, 13, 0) 28%); }
.contact-hero .hero-title { font-size: clamp(38px, 5vw, 64px); line-height: 1.12; margin-top: 18px; }
.contact-hero .hero-sub { max-width: 440px; }
.contact-main { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.contact-main > div { padding: clamp(36px, 4.4vw, 60px) clamp(24px, 4.4vw, 64px); }
.contact-main > div + div { border-left: 1px solid var(--line); }
.form-intro { margin: 14px 0 30px; font-size: 13.5px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 28px; }
.field { display: flex; flex-direction: column; gap: 4px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; color: var(--text); }
.field label i { font-style: normal; color: var(--accent); margin-left: 3px; }
.field input, .field select, .field textarea { width: 100%; background: transparent; color: var(--text); border: 0; border-bottom: 1px solid var(--line-2); padding: 10px 0 11px; font: inherit; font-size: 14px; border-radius: 0; transition: border-color .2s; }
.field textarea { border: 1px solid var(--line-2); padding: 12px 14px; min-height: 140px; resize: vertical; margin-top: 6px; }
.field select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%23c9ccd2' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px; cursor: pointer; }
.field select option { background: #15171c; color: var(--text); }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: #fff; }
.field.err input, .field.err select, .field.err textarea { border-color: var(--accent); }
.consent { grid-column: 1 / -1; font-size: 13px; color: var(--text-2); }
.consent label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.consent input { margin-top: 4px; accent-color: var(--accent); width: 15px; height: 15px; flex: none; }
.consent details { margin: 8px 0 0 25px; color: var(--dim); font-size: 12.5px; }
.consent summary { cursor: pointer; color: var(--muted); }
.consent.err label { color: #ff9a88; }
.submit-btn { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; background: #2a2d33; border: 1px solid var(--line-2); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .12em; transition: background .2s, border-color .2s; }
.submit-btn:hover { background: #353940; border-color: rgba(255, 255, 255, .26); }
.submit-btn[disabled] { opacity: .6; pointer-events: none; }
.submit-btn .ico { font-size: 20px; transition: transform .3s var(--ease), color .2s; }
.submit-btn:hover .ico { transform: translateX(4px); color: var(--brand-text); }
.form-note { grid-column: 1 / -1; font-size: 12px; color: var(--dim); }
.form-msg { grid-column: 1 / -1; font-size: 14px; padding: 14px 16px; border: 1px solid var(--line-2); display: none; }
.form-msg.show { display: block; }
.form-msg.ok { border-color: rgba(245, 55, 42, .55); color: #ffd6d0; }
.form-msg.bad { border-color: rgba(212, 83, 63, .7); color: #ffc2b8; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.info-list { margin-top: 30px; display: grid; gap: 28px; }
.info-row { display: grid; grid-template-columns: 34px 1fr; gap: 14px; }
.info-row .ico { font-size: 24px; stroke-width: 1.2; color: var(--brand-text); margin-top: 2px; }
.info-row h4 { font-size: 11px; letter-spacing: .16em; font-weight: 600; color: var(--text); }
.info-row p, .info-row a { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.info-row a:hover { color: #fff; }
.studio-card { margin-top: 36px; position: relative; width: 100%; max-width: 480px; aspect-ratio: 16 / 10; border: 1px solid var(--line-2); overflow: hidden; display: grid; place-items: center; text-align: center; background-color: #0f1115; }
/* card background image (assets/img/pages/contact-studio.jpg — night VFX studio, no people), darkened, with the 34px grid on top */
.studio-card .sc-map { position: absolute; inset: 0; }
.studio-card .sc-map img { width: 100%; height: 100%; object-fit: cover; }
.studio-card .sc-map::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 44%, rgba(10, 11, 13, .12) 0%, rgba(10, 11, 13, .42) 55%, rgba(10, 11, 13, .72) 100%); }
.studio-card .sc-map.is-studio img { filter: brightness(.8) saturate(.92); }
/* grid lines + a darker spot behind the centered text + an even tint + a soft edge vignette */
.studio-card .sc-map.is-studio::after {
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    radial-gradient(ellipse 46% 58% at 50% 46%, rgba(10, 11, 13, .6) 0%, rgba(10, 11, 13, 0) 100%),
    linear-gradient(rgba(10, 11, 13, .34), rgba(10, 11, 13, .34)),
    radial-gradient(ellipse at 50% 50%, rgba(10, 11, 13, 0) 55%, rgba(10, 11, 13, .5) 100%);
  background-size: 34px 34px, 34px 34px, 100% 100%, 100% 100%, 100% 100%; background-position: center; }
.studio-card .sc-body { position: relative; z-index: 1; text-shadow: 0 1px 8px rgba(0, 0, 0, .75); }
.studio-card b { display: block; font-size: 17px; letter-spacing: .06em; }
.studio-card .pinmark { width: 42px; height: 42px; margin: 14px auto; border-radius: 50%; border: 1.5px solid #fff; display: grid; place-items: center; }
.studio-card .pinmark .ico { font-size: 18px; }
.studio-card .sc-links { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.studio-card .sc-links a { font-size: 11.5px; letter-spacing: .12em; padding: 7px 12px; border: 1px solid var(--line-2); background: rgba(10, 11, 13, .55); }
.studio-card .sc-links a:hover { border-color: #fff; }
.faq-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 32px; }
.faq-grid h2 { font-size: clamp(28px, 3vw, 38px); font-weight: 400; letter-spacing: -.02em; margin-top: 14px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; font-size: 16px; text-align: left; color: var(--text); }
.faq-item button .ico { font-size: 18px; flex: none; transition: transform .3s var(--ease); color: var(--text-2); }
.faq-item.open button .ico { transform: rotate(45deg); color: var(--brand-text); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 40px 22px 0; color: var(--muted); font-size: 14.5px; line-height: 1.85; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg); }
.ft-row { display: flex; align-items: center; justify-content: space-between; gap: 24px 40px; flex-wrap: wrap; padding-top: 36px; padding-bottom: 20px; }
.ft-row .brand img { height: 22px; }
.ft-links { display: flex; align-items: center; gap: 18px; }
.ft-mail { font-size: 13px; color: var(--text-2); }
.ft-copy { font-size: 12px; color: var(--dim); }
.ft-biz { padding-bottom: 34px; font-size: 12px; color: var(--dim); line-height: 1.8; }
.ft-biz span + span::before { content: "·"; margin: 0 10px; color: #3d4047; }

/* ---------- modal (video) & lightbox ---------- */
.modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.modal.open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4, 5, 6, .9); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.modal-box { position: relative; width: min(1240px, 100%); }
.modal-frame { position: relative; aspect-ratio: 16 / 9; background: #000; }
.modal-frame iframe, .modal-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.modal-close { position: absolute; right: 0; top: -52px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-2); }
.modal-close:hover { border-color: #fff; }
.modal-close .ico { font-size: 20px; }
.modal-cap { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding-top: 16px; font-size: 14px; color: var(--text-2); }
.modal-cap a { font-size: 12px; letter-spacing: .1em; color: var(--muted); display: inline-flex; gap: 8px; align-items: center; }
.modal-cap a:hover { color: #fff; }
.lightbox .modal-box { width: min(1500px, 100%); }
.lightbox .lb-img { max-height: 82vh; margin: 0 auto; width: auto; max-width: 100%; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; }
.lightbox .lb-prev { left: -8px; } .lightbox .lb-next { right: -8px; }
.lightbox .lb-count { text-align: center; margin-top: 14px; font-size: 12px; color: var(--muted); letter-spacing: .1em; }
.post-modal .modal-box { width: min(920px, 100%); max-height: calc(100vh - 48px); overflow-y: auto; background: var(--panel); border: 1px solid var(--line); scrollbar-width: thin; }
.post-modal .modal-close { top: 14px; right: 14px; background: rgba(0, 0, 0, .55); z-index: 2; }
.pm-img img { width: 100%; }
.pm-body { padding: clamp(24px, 3.4vw, 44px); }
.pm-body h2 { font-size: clamp(22px, 2.6vw, 32px); line-height: 1.35; font-weight: 600; letter-spacing: -.015em; margin: 14px 0 18px; }
.pm-body .txt { color: var(--text-2); font-size: 15px; line-height: 1.9; white-space: pre-line; }
.pm-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 6px; margin-top: 28px; }
.pm-gallery button { aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--line); }
.pm-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pm-gallery button:hover img { transform: scale(1.05); }
.pm-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.pm-links a { display: inline-flex; gap: 8px; align-items: center; font-size: 12.5px; padding: 11px 16px; border: 1px solid var(--line-2); transition: border-color .2s, background .2s; }
.pm-links a:hover { border-color: #fff; background: rgba(255, 255, 255, .04); }
.pm-links a.primary { background: #fff; color: #0a0a0a; border-color: #fff; }
body.no-scroll { overflow: hidden; }

/* ---------- 404 ---------- */
.nf { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 120px var(--gutter); }
.nf b { display: block; font-size: clamp(80px, 14vw, 180px); font-weight: 200; letter-spacing: .1em; line-height: 1; }

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .caps { grid-template-columns: repeat(3, 1fr); }
  .cap { aspect-ratio: 4 / 3.4; }
  .timeline { grid-template-columns: repeat(5, minmax(0, 1fr)); row-gap: 34px; }
  .timeline::before { display: none; }
  .tl-item { border-top: 1px solid var(--line-2); }
  .tl-item::before { top: -5px; }
}
@media (max-width: 1024px) {
  .work-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .step:nth-child(3)::after { display: none; }
  .formats { grid-template-columns: repeat(3, 1fr); }
  .formats div:nth-child(4) { border-left: 0; }
  .formats div:nth-child(n+4) { border-top: 1px solid var(--line); }
  .contact-main { grid-template-columns: 1fr; }
  .contact-main > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .cta-banner .cb-inner { grid-template-columns: 1fr auto; }
  .cta-banner .cb-text { display: none; }
}
@media (max-width: 860px) {
  :root { --hdr-h: 64px; }
  .gnb, .hdr-tools .lang-switch { display: none; }
  .brand img { height: 22px; }
  .menu-grid { grid-template-columns: 1fr; gap: 36px; }
  .menu-side { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .stat:nth-child(3) { border-left: 0; }
  .intro-grid, .faq-grid { grid-template-columns: 1fr; }
  .wv-sec { grid-template-columns: 1fr; }
  .wv-overview { grid-template-columns: 1fr; }
  .tools-panel { grid-template-columns: 1fr; }
  .tools-quote { max-width: none; border-left: 0; border-top: 1px solid rgba(215, 167, 100, .35); margin: 0 24px; padding: 22px 0 26px; }
  .tools-quote::before { display: none; }
  .next-card { grid-template-columns: 1fr; }
  .next-card .nc-img { min-height: 180px; order: -1; }
  .next-card .nc-img::before { background: linear-gradient(0deg, var(--bg) 0%, rgba(10, 11, 13, 0) 60%); }
  .news-feature { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .stage-nav .stage-bars { display: none; }
  .stage-foot { display: none; }
  .cap-actions { gap: 20px 28px; }
}
@media (max-width: 640px) {
  body { font-size: 14.5px; }
  .work-grid, .news-grid { grid-template-columns: 1fr; }
  .caps { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .formats { grid-template-columns: 1fr 1fr; }
  .formats div { border-left: 0 !important; border-top: 1px solid var(--line); }
  .formats div:nth-child(-n+2) { border-top: 0; }
  .formats div:nth-child(even) { border-left: 1px solid var(--line) !important; }
  .form-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .logo-grid div { height: 88px; padding: 16px 18px; }
  .hero-title.spaced { letter-spacing: .2em; margin-right: -.2em; }
  .cta-banner .cb-inner { grid-template-columns: 1fr; }
  .featured { min-height: 360px; align-items: flex-end; }
  .fb-link { position: static; margin-top: 22px; }
  .fb-inner { padding-bottom: 32px; }
  .stage-caption { bottom: 108px; }
  .play .ring { width: 50px; height: 50px; }
  .modal { padding: 12px; }
  .modal-close { top: -50px; }
  .lightbox .lb-nav { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .rv { opacity: 1; transform: none; }
}
