/* =====================================================================
   SKY ENTERTAINMENT — 디자인 시스템 (MIDNIGHT)
   딥 미드나잇 차콜 + 문라이트 스틸블루 · 세리프 디스플레이 + Pretendard UI.
   토큰 → 전역 → 배경 → 레이아웃 → 버튼 → 헤더 → 홈(히어로·인용·로스터·서비스·빌더CTA·프로세스)
        → 아티스트카드 → 푸터 → FAB → 빌더 → 반응형 → 접근성 → 인쇄
   ── 기존 골드 토큰명(--gold*)은 별칭으로 유지(builder.js 호환). 값은 스틸블루.
   ===================================================================== */

/* ── 1. 토큰 ──────────────────────────────────────────────────────── */
:root {
  --bg: #0f1217;            /* deep midnight charcoal */
  --bg-2: #151a22;
  --bg-3: #1b212b;
  --panel: #151a22;
  --panel-2: #1b212b;
  --panel-3: #11151c;

  --ink: #ecedf1;           /* platinum */
  --ink-2: rgba(236, 237, 241, 0.66);
  --ink-soft: #c4ccd8;
  --muted: rgba(236, 237, 241, 0.56);
  --muted-2: rgba(236, 237, 241, 0.50);
  --muted-3: rgba(236, 237, 241, 0.40);

  --hair: rgba(236, 237, 241, 0.10);
  --hair-2: rgba(236, 237, 241, 0.18);
  --line: var(--hair);
  --line-strong: var(--hair-2);

  --accent: #9db4ce;        /* moonlight steel-blue */
  --accent-deep: #7d96b4;
  --accent-soft: #c2d2e4;
  --accent-hi: #eaf1f8;
  --accent-ink: #0f1217;    /* dark text over accent fill */

  /* 레거시 별칭 — builder.js / app.js 의 var(--gold*) 가 그대로 동작 */
  --gold: var(--accent);
  --gold-soft: var(--accent-soft);
  --gold-hi: var(--accent-hi);
  --gold-deep: var(--accent-deep);
  --gold-ink: var(--accent-ink);

  --grad-gold: linear-gradient(135deg, #c2d2e4, #9db4ce);
  --grad-brand: linear-gradient(120deg, #ecedf1, #9db4ce);
  --lux-gold: #caa24e;

  --radius-pill: 999px;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-input: 10px;

  --max: 1280px;
  --pad-x: clamp(22px, 5vw, 84px);

  --shadow-card-hover: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(157, 180, 206, 0.10);
  --shadow-cta: 0 14px 40px rgba(0, 0, 0, 0.45);

  --ease-reveal: cubic-bezier(.2, .7, .2, 1);

  --sans: "Pretendard", -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  --serif: "Cormorant Garamond", serif;
  --kserif: "Noto Serif KR", "Cormorant Garamond", serif;
  --font: var(--sans);
}

/* ── 2. 리셋 / 전역 ───────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  /* 한글 줄바꿈: 어절(띄어쓰기) 단위로만 끊고 단어는 쪼개지 않음. 너무 긴 토큰만 강제 분할.
     text-wrap: pretty 로 마지막 줄 고아 단어를 방지(전역 상속) → 폭 조절 시 단어가 통째로 예쁘게 이동.
     제목류는 아래 §6에서 balance 로 덮어써 줄 길이를 고르게. */
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
input, textarea, select, button { font-family: var(--sans); }
input::placeholder, textarea::placeholder { color: var(--muted-3); }
::selection { background: var(--accent); color: var(--bg); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a323e; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #38424f; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* 건너뛰기 링크(접근성) — 포커스 시에만 노출 */
.skip-link { position: fixed; top: -60px; left: 16px; z-index: 100; background: var(--accent); color: var(--accent-ink); font-family: var(--sans); font-size: 13px; font-weight: 500; padding: 10px 18px; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.container, .wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--tight { padding: clamp(44px, 6vw, 80px) 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ── 3. 전역 배경 레이어 (z/DOM 순서 중요: 캔버스가 그라데이션 뒤) ──── */
.sky-bg-gradient, .sky-bg-vignette, .sky-canvas, .sky-grain { position: fixed; inset: 0; pointer-events: none; }
.sky-bg-gradient {
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 78% 8%, rgba(157, 180, 206, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 12% 92%, rgba(157, 180, 206, 0.06), transparent 60%),
    linear-gradient(180deg, #0f1217 0%, #0d1015 50%, #0f1217 100%);
}
.sky-bg-vignette { z-index: 0; background: radial-gradient(128% 96% at 50% 0%, transparent 54%, rgba(0, 0, 0, 0.50)); }
.sky-canvas { z-index: 0; width: 100vw; height: 100vh; display: block; }
.sky-grain {
  z-index: 3; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, footer { position: relative; z-index: 1; }

/* ── 4. 타이포 유틸 ───────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--accent); margin: 0;
}
.eyebrow--line, .eyebrow.has-rule { display: inline-flex; align-items: center; gap: 16px; }
.eyebrow--line::before, .eyebrow .rule { content: ""; width: 54px; height: 1px; background: var(--hair-2); display: inline-block; }
.eyebrow--lg { font-size: clamp(20px, 2.4vw, 30px); letter-spacing: 0.22em; font-weight: 600; }
.more--sans { font-family: var(--sans) !important; font-style: normal !important; font-size: 14px !important; }
.h1, .display {
  font-family: var(--kserif); font-weight: 200; font-size: clamp(42px, 8.4vw, 120px);
  line-height: 1.08; letter-spacing: -0.01em; margin: 0;
}
.h1 .it, .display .it { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent); }
.page-title { font-family: var(--kserif); font-weight: 300; font-size: clamp(34px, 6vw, 64px); letter-spacing: -0.01em; margin: 0 0 10px; }
.h2 { font-family: var(--kserif); font-weight: 300; font-size: clamp(30px, 5vw, 62px); line-height: 1.1; margin: 0; }
.h2 .it { font-family: var(--serif); font-style: italic; color: var(--accent); }
.lead { font-family: var(--sans); font-size: clamp(16px, 1.5vw, 20px); font-weight: 300; line-height: 1.85; color: var(--ink-2); }
/* 줄바꿈 품질(지원 브라우저): 제목은 줄 길이 균형, 본문은 마지막 한 단어 고립 방지 */
.display, .h1, .h2, .page-title, .quote p, .footer-lead h4, .sec-head h2 { text-wrap: balance; }
.lead, .hero-lead, .sec-head .desc, .page-desc, .quote .sig { text-wrap: pretty; }
.text-gold, .text-accent { color: var(--accent); }
.brand-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.text-shine { color: var(--ink); }
.text-shine--word { font-family: var(--serif); font-style: italic; color: var(--accent); }

/* ── 5. 버튼 ──────────────────────────────────────────────────────── */
.btn {
  font-family: var(--sans); display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  cursor: pointer; white-space: nowrap; font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 16px 32px;
  border: 1px solid var(--ink); transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.btn .arw { transition: transform .3s; }
.btn:hover .arw { transform: translateX(6px); }
.btn-gold, .btn-fill { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-gold:hover, .btn-fill:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.btn-secondary, .btn-line { background: transparent; border-color: var(--hair-2); color: var(--ink-2); }
.btn-secondary:hover, .btn-line:hover { border-color: var(--ink); color: var(--ink); }
.btn-sm { padding: 12px 22px; font-size: 12px; }
.btn-lg { padding: 18px 38px; font-size: 14px; }

/* ── 6. 헤더 ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(15, 18, 23, 0.72); border-bottom: 1px solid var(--hair);
  transition: background .3s, box-shadow .3s;
}
.site-header.is-scrolled { background: rgba(15, 18, 23, 0.92); box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4); }
.site-header__line { display: none; }
.navbar { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); height: 78px; display: flex; align-items: center; gap: 22px; }
.brand { display: flex; flex-direction: row; align-items: center; gap: 11px; line-height: 1; }
.brand-logo { height: 42px; width: auto; display: block; flex-shrink: 0; }
.brand-text { display: inline-flex; flex-direction: column; align-items: stretch; line-height: 1; }
/* 한글/영문 두 줄의 글자 끝 정렬은 app.js의 SKY.alignBrand()가 실제 글자폭을 측정해 자간으로 맞춤(폰트 로드 후) */
.brand .ko { font-family: var(--kserif); font-weight: 500; font-size: 18px; color: var(--ink); white-space: nowrap; }
.brand .en { font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.34em; color: var(--muted-2); margin-top: 6px; font-weight: 500; white-space: nowrap; }
/* 한글 제거 후 단독 영문 락업: 주 텍스트로 승격 */
.brand .en--solo { font-size: 15px; letter-spacing: 0.24em; color: var(--ink); margin-top: 0; font-weight: 600; }
.brand__sub { font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.36em; color: var(--muted-2); margin-top: 5px; font-weight: 500; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 36px; }
.nav-link {
  font-family: var(--sans); background: none; border: none; color: var(--ink-2); font-size: 13px; font-weight: 400;
  padding: 4px 0; cursor: pointer; position: relative; transition: color .25s;
}
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--accent); transition: width .3s; }
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after { width: 100%; }
.nav-cta {
  font-family: var(--sans); color: var(--accent); border: 1px solid var(--hair-2); font-size: 13px; font-weight: 500;
  padding: 9px 18px; border-radius: var(--radius-pill); transition: border-color .25s, background .25s, color .25s;
}
.nav-cta:hover { border-color: var(--accent); background: var(--accent); color: var(--bg); }
.nav-tel { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--ink); border-left: 1px solid var(--hair-2); padding-left: 28px; }

.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--hair-2);
  color: var(--ink); width: 44px; height: 40px; font-size: 18px; cursor: pointer;
  font-family: var(--sans); letter-spacing: 0.1em;
}

/* ── 7. 홈: Hero ─────────────────────────────────────────────────── */
.hero { position: relative; border-bottom: 1px solid var(--hair); }
.hero-in { padding: clamp(64px, 11vw, 154px) 0 clamp(54px, 8vw, 112px); }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 16px; margin-bottom: clamp(30px, 5vw, 52px); }
.hero-sub { margin-top: clamp(28px, 4vw, 44px); max-width: 42ch; font-family: var(--kserif); font-weight: 300; font-size: clamp(17px, 2vw, 23px); line-height: 1.62; letter-spacing: -0.005em; color: var(--ink-soft); }
.hero .lead, .hero-lead { margin-top: clamp(34px, 5vw, 52px); max-width: 50ch; }
.hero-sub + .hero-lead { margin-top: clamp(16px, 2vw, 22px); }
.hero-cta, .hero-actions { margin-top: clamp(38px, 5vw, 56px); display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.hero-stats, .stat-strip {
  display: grid; grid-template-columns: repeat(3, auto); gap: clamp(40px, 7vw, 96px);
  margin-top: clamp(52px, 7vw, 86px); padding-top: clamp(34px, 4vw, 48px); border-top: 1px solid var(--hair);
}
.hero-stats .st .n, .stat-strip__num { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 5vw, 64px); line-height: 1; color: var(--ink); }
.hero-stats .st .n .u, .stat-strip__num .u { font-size: 0.4em; color: var(--muted-2); margin-left: 6px; }
.hero-stats .st .c, .stat-strip__label { font-family: var(--sans); font-size: 12px; color: var(--ink-2); margin-top: 14px; line-height: 1.6; }

/* ── 8. 인용(Quote) ──────────────────────────────────────────────── */
.quote { background: var(--bg-2); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); position: relative; }
.quote-in { padding: clamp(56px, 9vw, 128px) 0; text-align: center; }
.quote .mk { font-family: var(--serif); font-style: italic; font-size: clamp(48px, 8vw, 96px); line-height: 0; color: var(--accent-deep); display: block; height: .4em; opacity: .6; }
.quote p { font-family: var(--kserif); font-weight: 200; font-size: clamp(22px, 3.4vw, 44px); line-height: 1.5; max-width: 20ch; margin: 0 auto; }
.quote .sig { font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-2); margin-top: clamp(28px, 4vw, 44px); }

/* ── 9. 섹션 헤더 ────────────────────────────────────────────────── */
.sec { border-bottom: 1px solid var(--hair); }
.sec--form { padding-bottom: clamp(80px, 10vw, 140px); }   /* 문의 폼 하단 여백(버튼이 푸터에 붙지 않도록) */
.sec-head { padding: clamp(56px, 8vw, 120px) 0 clamp(30px, 4vw, 56px); }
.sec-head .top { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sec-head h2 { margin-top: 18px; }
.sec-head .desc { max-width: 38ch; font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--ink-2); line-height: 1.8; }
.sec-head .more { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--muted-2); transition: color .3s; align-self: flex-end; }
.sec-head .more:hover { color: var(--accent); }
/* 기존 .section-head 호환 (다른 페이지에서 사용) */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 20px; flex-wrap: wrap; }
.section-head--center { text-align: center; justify-content: center; flex-direction: column; align-items: center; }

/* ── 10. 아티스트 로스터 (홈 · 리스트형) ─────────────────────────── */
.roster { border-top: 1px solid var(--hair-2); }
.a-row {
  display: grid; grid-template-columns: 74px 1fr 1.5fr auto; align-items: center; gap: 24px;
  padding: clamp(20px, 2.4vw, 30px) 8px; border-bottom: 1px solid var(--hair);
  transition: background .35s, padding .35s; color: inherit;
}
.a-row:hover { background: var(--bg-2); padding-left: 20px; padding-right: 20px; }
.a-no { font-family: var(--serif); font-size: 18px; color: var(--muted-2); }
.a-name { font-family: var(--kserif); font-weight: 500; font-size: clamp(22px, 2.6vw, 34px); }
.a-en { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--muted-2); margin-top: 4px; }
.a-role { font-family: var(--sans); font-weight: 300; font-size: 14px; color: var(--ink-2); }
.a-fields { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 7px; }
.a-fields span { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.06em; color: var(--ink-2); border: 1px solid var(--hair-2); border-radius: 999px; padding: 3px 11px; transition: color .3s, border-color .3s; }
.a-row:hover .a-fields span { border-color: var(--accent); color: var(--accent); }
.a-go { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--muted-2); opacity: 0; transform: translateX(-8px); transition: .3s; }
.a-row:hover .a-go { opacity: 1; transform: none; color: var(--accent); }


/* ── 14. 아티스트 카드 (artists.html / 서비스 페이지 추천) ────────── */
.artist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.artist-card { background: var(--panel); border: 1px solid var(--hair); border-radius: var(--radius-lg); overflow: hidden; transition: transform .35s, border-color .35s, box-shadow .35s; }
.artist-card:hover { transform: translateY(-6px); border-color: var(--hair-2); box-shadow: var(--shadow-card-hover); }
.artist-portrait { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.artist-portrait__sheen { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(135deg, rgba(234, 241, 248, 0.08), transparent 40%); }
.artist-portrait .sil-svg, .artist-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.artist-rank { position: absolute; top: 12px; left: 14px; font-family: var(--serif); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; color: var(--accent); background: rgba(15, 18, 23, 0.6); border: 1px solid rgba(157, 180, 206, 0.3); padding: 4px 9px; border-radius: 8px; backdrop-filter: blur(4px); z-index: 3; }
.artist-portrait__ribbon { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px 14px 12px; background: linear-gradient(0deg, rgba(15, 18, 23, 0.92), transparent); display: flex; justify-content: center; z-index: 3; }
.coming-soon-ribbon { font-family: var(--sans); font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em; color: var(--accent-soft); border: 1px solid rgba(194, 210, 228, 0.35); background: rgba(157, 180, 206, 0.10); padding: 5px 12px; border-radius: var(--radius-pill); backdrop-filter: blur(4px); }
.artist-info { padding: 18px 20px 22px; }
.artist-info__head { display: flex; align-items: baseline; gap: 9px; margin-bottom: 5px; }
.artist-info__head h3 { font-family: var(--kserif); font-size: 22px; font-weight: 500; margin: 0; }
.artist-info__en { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--muted-2); }
.artist-info__role { font-family: var(--sans); font-size: 13px; color: var(--accent); font-weight: 400; margin-bottom: 12px; }
.artist-info__tag { font-family: var(--sans); font-weight: 300; font-size: 13px; line-height: 1.65; color: var(--ink-2); margin: 0; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.badge-row { display: flex; flex-wrap: wrap; gap: 6px; }
.badge { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.04em; color: var(--ink-2); background: transparent; border: 1px solid var(--hair-2); padding: 4px 11px; border-radius: 999px; }

/* ── 15. 푸터 (= 홈 Contact) ─────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--hair); background: var(--bg-3); margin-top: 0; }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: clamp(64px, 8vw, 120px) var(--pad-x) clamp(44px, 5vw, 72px); display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; }
.footer-lead h4 { font-family: var(--kserif); font-weight: 200; font-size: clamp(34px, 5vw, 64px); line-height: 1.12; margin: 0; }
.footer-lead h4 .it { font-family: var(--serif); font-style: italic; color: var(--accent); }
.footer-lead .tag { font-family: var(--sans); font-weight: 300; font-size: 15px; color: var(--ink-2); max-width: 34ch; margin: 26px 0 0; line-height: 1.8; }
.footer-lead .acts { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }
.footer-lead .acts:first-child { margin-top: 0; }   /* 헤드라인 삭제 후 버튼만 남았을 때 컬럼 상단에 정렬 */
.footer-brand { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.footer-brand .brand-grad { font-family: var(--kserif); font-weight: 500; font-size: 20px; letter-spacing: 0.04em; }
.footer-brand .brand__sub { font-size: 9.5px; }
.footer .ck { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); padding-bottom: 14px; border-bottom: 1px solid var(--hair); margin-bottom: 20px; }
.footer h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.footer p, .footer .col p { font-family: var(--sans); font-weight: 300; font-size: 14.5px; line-height: 2; color: var(--ink-2); margin: 0; }
.footer__desc { font-family: var(--sans); font-weight: 300; font-size: 14px; color: var(--ink-2); line-height: 1.8; max-width: 340px; }
.footer__meta { font-family: var(--sans); font-size: 12.5px; color: var(--muted-2); line-height: 1.8; margin-top: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer-links a, .footer-links span { font-family: var(--sans); font-weight: 300; color: var(--ink-2); transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { max-width: var(--max); margin: 0 auto; padding: 24px var(--pad-x); border-top: 1px solid var(--hair); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.06em; color: var(--muted-2); }

/* ── 16. 플로팅 FAB / 모바일 퀵바 ────────────────────────────────── */
.sky-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 40; background: var(--accent); color: var(--bg);
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 22px; display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5); transition: background .3s;
}
.sky-fab:hover { background: var(--ink); }
.mobile-quickbar { display: none; }

/* ── 17. 공용 폼 요소 (회사 정보 문의 폼) ──────────────────────────── */
.field-label { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-soft); margin-bottom: 10px; }
.field-stack { display: flex; flex-direction: column; gap: 24px; }
.field-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.input, .select, .textarea { width: 100%; background: var(--panel-3); border: 1px solid var(--hair-2); color: var(--ink); padding: 12px 14px; border-radius: var(--radius-input); font-size: 14px; outline: none; transition: border-color .2s; }
.input:focus, .select:focus, .textarea:focus { border-color: rgba(157, 180, 206, 0.5); }
.input[type="date"] { color-scheme: dark; }
.textarea { min-height: 96px; resize: vertical; line-height: 1.6; }
.check-line { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: 13px; color: var(--ink-2); cursor: pointer; }
.check-line input { accent-color: var(--accent); width: 16px; height: 16px; }
/* 문의 완료 화면 */
.contact-done { text-align: center; padding: 50px 20px; }
.contact-done__icon { width: 84px; height: 84px; border-radius: 50%; background: rgba(157, 180, 206, 0.10); border: 1px solid rgba(157, 180, 206, 0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 38px; color: var(--accent-soft); }
.contact-done h2 { font-family: var(--kserif); font-size: 28px; font-weight: 400; margin: 0 0 12px; }
.contact-done p { font-family: var(--sans); font-weight: 300; color: var(--ink-2); font-size: 15px; margin: 0 0 28px; line-height: 1.7; }

/* ── 17b. 아티스트 페이지 (artists.html) ─────────────────────────── */
.page-head { padding: clamp(44px, 7vw, 96px) 0 clamp(22px, 3vw, 36px); border-bottom: 1px solid var(--hair); }
.page-head .eyebrow { display: inline-flex; align-items: center; gap: 16px; margin-bottom: clamp(26px, 4vw, 44px); }
.page-title .it { font-family: var(--serif); font-style: italic; color: var(--accent); }
.page-desc { font-family: var(--sans); font-weight: 300; font-size: clamp(15px, 1.4vw, 18px); color: var(--ink-2); line-height: 1.8; max-width: 56ch; margin: 20px 0 0; }
.page-body { padding: clamp(30px, 4vw, 52px) 0 clamp(90px, 11vw, 150px); }

/* 카드: 클릭 가능 */
.page-body .artist-card { cursor: pointer; }

/* 모달 (상세) */
body.modal-open { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 80; display: none; }
.modal.is-open { display: block; }
.modal__overlay { position: absolute; inset: 0; background: rgba(8, 10, 14, 0.72); backdrop-filter: blur(6px); }
.modal__card { position: relative; z-index: 1; width: min(920px, 100% - 36px); margin: clamp(20px, 5vh, 56px) auto; background: var(--bg-2); border: 1px solid var(--hair-2); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px); max-height: calc(100vh - 40px); overflow: auto; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); }
.modal__close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(236, 237, 241, 0.05); border: 1px solid var(--hair-2); color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer; z-index: 2; transition: border-color .2s, color .2s; }
.modal__close:hover { border-color: var(--accent); color: var(--accent); }
.modal__title { font-family: var(--kserif); font-size: clamp(22px, 3vw, 30px); font-weight: 400; margin-bottom: 24px; }
.modal__title span { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 0.7em; margin-left: 6px; }

/* 상세 모달 */
.detail-grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 3vw, 40px); }
.detail-portrait { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--hair); }
.detail-portrait .sil-svg, .detail-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detail-info__head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.detail-info__head h2 { font-family: var(--kserif); font-weight: 500; font-size: clamp(28px, 4vw, 40px); margin: 0; }
.detail-en { font-family: var(--serif); font-style: italic; color: var(--muted-2); font-size: 16px; }
.detail-role { font-family: var(--sans); color: var(--accent); font-size: 14px; margin: 8px 0 8px; }
.detail-meta { font-family: var(--sans); font-size: 13px; color: var(--muted-2); letter-spacing: 0.02em; margin: 0 0 16px; }
.detail-tag { font-family: var(--kserif); font-weight: 300; font-size: clamp(16px, 1.8vw, 20px); line-height: 1.6; color: var(--ink); margin: 0 0 16px; }
.detail-bio { font-family: var(--sans); font-weight: 300; font-size: 14.5px; line-height: 1.85; color: var(--ink-2); margin: 0; }
.detail-career { margin-top: 24px; }
.detail-career__k { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.detail-career ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.detail-career li { font-family: var(--sans); font-weight: 300; font-size: 14px; line-height: 1.6; color: var(--ink-2); padding-left: 18px; position: relative; }
.detail-career li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border: 1px solid var(--accent); transform: rotate(45deg); }
.detail-acts { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

@media (max-width: 760px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-portrait { max-width: 240px; aspect-ratio: 4 / 4; }
}

/* ── 17d. 문의 페이지 (contact.html) ─────────────────────────────── */
.page-body--top { padding-top: clamp(36px, 5vw, 64px); }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.contact-card { background: var(--panel); border: 1px solid var(--hair); border-radius: var(--radius-md); padding: 24px 22px; transition: border-color .25s, background .25s; }
.contact-card:hover { border-color: var(--hair-2); background: var(--bg-2); }
.contact-card__k { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.contact-card__v { font-family: var(--kserif); font-weight: 500; font-size: 20px; color: var(--ink); display: block; }
a.contact-card__v { transition: color .2s; }
a.contact-card__v:hover { color: var(--accent); }
.contact-card__sub { font-family: var(--sans); font-weight: 300; font-size: 12.5px; color: var(--ink-2); line-height: 1.6; margin-top: 10px; }
.contact-hint { font-family: var(--sans); font-weight: 300; font-size: 13px; color: var(--muted-2); margin: 18px 0 0; }
.contact-hint b { color: var(--accent-soft); font-weight: 500; }

/* FAQ */
.faq { border-top: 1px solid var(--hair-2); }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-item > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: clamp(22px, 3vw, 30px) 4px; font-family: var(--kserif); font-weight: 500; font-size: clamp(17px, 2vw, 21px); color: var(--ink); transition: color .2s; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--accent); }
.faq-item__mk { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-item__mk::before, .faq-item__mk::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--accent); transition: transform .3s, opacity .3s; }
.faq-item__mk::before { width: 16px; height: 1.5px; }
.faq-item__mk::after { width: 1.5px; height: 16px; }
.faq-item[open] > summary { color: var(--accent); }
.faq-item[open] .faq-item__mk::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item__a { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.85; color: var(--ink-2); padding: 0 40px 28px 4px; max-width: 70ch; }

/* 문의 폼 */
.contact-form { max-width: 760px; }
.form-block { margin-top: 18px; }
.contact-form__foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 26px; flex-wrap: wrap; }
.form-err { font-family: var(--sans); font-size: 13px; color: var(--accent-soft); }
.form-err:empty { display: none; }
.contact-done { text-align: center; padding: 40px 20px; max-width: 760px; }
.contact-done h2 { font-family: var(--kserif); font-size: 28px; font-weight: 400; margin: 0 0 12px; }
.contact-done p { font-family: var(--sans); font-weight: 300; color: var(--ink-2); font-size: 15px; margin: 0 0 28px; line-height: 1.7; }
@media (max-width: 860px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .contact-cards { grid-template-columns: 1fr; }
  .contact-form__foot .btn { width: 100%; }
}

/* ── 17e. 법적 페이지 + 동의 체크박스 ──────────────────────────────── */
.legal { max-width: 820px; }
.legal-art { padding: 0 0 clamp(26px, 3.5vw, 38px); margin-bottom: clamp(26px, 3.5vw, 38px); border-bottom: 1px solid var(--hair); }
.legal-art:last-child { border-bottom: none; margin-bottom: 0; }
.legal-art h2 { font-family: var(--kserif); font-weight: 500; font-size: clamp(18px, 2.2vw, 24px); color: var(--ink); margin: 0 0 16px; }
.legal-art p { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.85; color: var(--ink-2); margin: 0 0 12px; }
.legal-art p:last-child { margin-bottom: 0; }
.legal-art ul { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.legal-art li { font-family: var(--sans); font-weight: 300; font-size: 14.5px; line-height: 1.7; color: var(--ink-2); padding-left: 18px; position: relative; }
.legal-art li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 5px; height: 5px; border: 1px solid var(--accent); transform: rotate(45deg); }
.legal-art li b { font-weight: 500; color: var(--ink); }
.legal-link { color: var(--accent); }
.legal-meta { color: var(--muted-2) !important; font-size: 13px !important; }

/* 수집·이용 동의 체크박스 (빌더·문의 공용) */
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; font-family: var(--sans); font-weight: 300; font-size: 13.5px; color: var(--ink-2); line-height: 1.6; cursor: pointer; }
.consent input { accent-color: var(--accent); width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; }
.consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.consent .req { color: var(--accent); font-weight: 500; }

/* 푸터 개인정보처리방침 링크 */
.footer-copy__legal a { color: var(--ink-2); transition: color .2s; }
.footer-copy__legal a:hover { color: var(--accent); }

/* ── 18. 애니메이션 ──────────────────────────────────────────────── */
@keyframes skyFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes skySpin { to { transform: rotate(360deg); } }

[data-reveal], .rv { will-change: opacity, transform; }
.reveal-init, .rv { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-reveal), transform .9s var(--ease-reveal); }
.reveal-in, .rv.in { opacity: 1; transform: none; }

/* ── 19. 반응형 ─────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links { gap: 24px; }
  .artist-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 820px) {
  .nav-links { position: fixed; top: 78px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(15, 18, 23, 0.98); backdrop-filter: blur(16px); padding: 8px var(--pad-x) 24px; border-bottom: 1px solid var(--hair); transform: translateY(-130%); transition: transform .3s; max-height: calc(100vh - 78px); overflow-y: auto; }
  .nav-links.is-open { transform: translateY(0); }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-link { padding: 16px 0; border-bottom: 1px solid var(--hair); font-size: 17px; }
  .nav-link::after { display: none; }
  .nav-tel { margin: 14px 0 0; text-align: center; padding: 14px; border: 1px solid var(--hair-2); }
}
@media (max-width: 680px) {
  .a-row { grid-template-columns: 40px 1fr; gap: 14px; }
  .a-row .a-roleblock { grid-column: 2; }
  .a-go { display: none; }
  .artist-grid { grid-template-columns: 1fr; }
  .field-row2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-copy { flex-direction: column; }
  .sky-fab { display: none; }
  .mobile-quickbar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(15, 18, 23, 0.96); backdrop-filter: blur(14px); border-top: 1px solid var(--hair-2); }
  .mobile-quickbar a { flex: 1; text-align: center; padding: 13px 0; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; }
  .mobile-quickbar .btn-gold { background: var(--accent); color: var(--bg); }
  .mobile-quickbar .btn-secondary { border: 1px solid var(--hair-2); }
  body { padding-bottom: 64px; }
}

/* ── 20. 접근성: 모션 최소화 ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal-init, .rv { opacity: 1 !important; transform: none !important; }
}
.reduce-motion *, .reduce-motion *::before, .reduce-motion *::after { animation: none !important; transition: none !important; }
.reduce-motion .reveal-init, .reduce-motion .rv { opacity: 1 !important; transform: none !important; }

/* ── 21. 인쇄 ────────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .sky-fab, .mobile-quickbar,
  .sky-bg-gradient, .sky-bg-vignette, .sky-canvas, .sky-grain { display: none !important; }
  body { background: #fff; color: #111; }
}

/* ── 22. 무빙 쇼케이스 (홈 상단 필름스트립) ───────────────────────── */
.showcase { position: relative; padding: clamp(46px, 6vw, 96px) 0 clamp(56px, 7vw, 108px); border-bottom: 1px solid var(--hair); overflow: hidden; }
.showcase-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(30px, 4vw, 52px); }
.showcase-head h2 { margin-top: 16px; }
.showcase-head .more { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--muted-2); transition: color .3s; align-self: flex-end; }
.showcase-head .more:hover { color: var(--accent); }
.marquee { position: relative; width: 100%; padding: 24px 0 30px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: flex; width: max-content; animation: skyMarquee 42s linear infinite; will-change: transform; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes skyMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.face { position: relative; flex: 0 0 auto; width: clamp(186px, 15.5vw, 252px); aspect-ratio: 3 / 4; margin-right: 22px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--hair); display: block; color: inherit; background: var(--panel); box-shadow: 0 10px 26px -18px rgba(0,0,0,.6); transition: border-color .45s var(--ease-reveal), box-shadow .45s var(--ease-reveal), transform .55s var(--ease-reveal); }
.face img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02) contrast(1.02); transition: filter .5s var(--ease-reveal), transform 1.3s cubic-bezier(.2,.7,.2,1); }
.face::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,11,15,.9) 0%, rgba(9,11,15,.55) 22%, transparent 46%); }
.face::before { content: ""; position: absolute; top: -10%; left: 0; z-index: 4; width: 55%; height: 120%; pointer-events: none; opacity: 0; background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.22) 50%, transparent 80%); transform: translateX(-190%) skewX(-14deg); }
.face:hover::before, .face:focus-visible::before { animation: faceSheen 0.9s var(--ease-reveal); }
@keyframes faceSheen { 0% { opacity: 1; transform: translateX(-190%) skewX(-14deg); } 100% { opacity: 1; transform: translateX(330%) skewX(-14deg); } }
@media (prefers-reduced-motion: reduce) { .face:hover::before, .face:focus-visible::before { animation: none; } }
.face__cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0 18px 16px; transform: translateY(8px); transition: transform .55s var(--ease-reveal); }
.face__name { font-family: var(--kserif); font-weight: 500; font-size: 21px; color: #fff; display: block; line-height: 1.1; }
.face__role { font-family: var(--sans); font-weight: 300; font-size: 11.5px; letter-spacing: .02em; color: rgba(236,237,241,.74); margin-top: 4px; display: block; }
.face__go { position: absolute; top: 14px; right: 14px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(236,237,241,.42); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; color: #fff; opacity: 0; transform: scale(.8); transition: opacity .4s, transform .4s, background .3s, border-color .3s, color .3s; }
.face:hover, .face:focus-visible { border-color: rgba(201,164,84,.60); box-shadow: 0 0 0 1px rgba(201,164,84,.50), 0 22px 46px -16px rgba(201,164,84,.34); transform: translateY(-5px); }
.face:hover img, .face:focus-visible img { filter: saturate(1.1) brightness(1.04) contrast(1.02); transform: scale(1.06); }
.face:hover .face__cap, .face:focus-visible .face__cap { transform: none; }
.face:hover .face__go, .face:focus-visible .face__go { opacity: 1; transform: none; background: var(--lux-gold); border-color: transparent; color: var(--bg); }
.face:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── 23. 아티스트 상세 페이지 (artist.html?id=) ───────────────────── */
.ad-top { padding: clamp(28px, 4vw, 48px) 0 0; }
.ad-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 13px; color: var(--muted-2); transition: color .3s, gap .3s; }
.ad-back:hover { color: var(--accent); gap: 13px; }
.ad-hero { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 4.5vw, 72px); align-items: center; padding: clamp(22px, 3vw, 40px) 0 clamp(42px, 6vw, 86px); }
.ad-portrait { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--hair); box-shadow: var(--shadow-card-hover); }
.ad-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: adKen 22s ease-in-out infinite alternate; }
@keyframes adKen { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.ad-info { min-width: 0; }
.ad-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: var(--sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 22px; }
.ad-eyebrow .rule { width: 40px; height: 1px; background: var(--accent-deep); display: inline-block; }
.ad-name { font-family: var(--kserif); font-weight: 500; font-size: clamp(42px, 6.5vw, 82px); line-height: 1.02; margin: 0; }
.ad-en { font-family: var(--serif); font-style: italic; font-size: clamp(17px, 2vw, 22px); color: var(--muted-2); margin-top: 10px; display: block; }
.ad-role { font-family: var(--sans); font-size: 14px; color: var(--accent); margin-top: 20px; }
.ad-meta { font-family: var(--sans); font-size: 13.5px; color: var(--ink-2); margin-top: 8px; }
.ad-tagline { font-family: var(--kserif); font-weight: 300; font-size: clamp(18px, 2.2vw, 26px); line-height: 1.5; color: var(--ink); margin: 26px 0 0; max-width: 32ch; }
.ad-acts { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.ad-body { padding: clamp(42px, 6vw, 88px) 0; border-top: 1px solid var(--hair); display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 4.5vw, 72px); align-items: start; }
.ad-col__k { font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.ad-bio { font-family: var(--sans); font-weight: 300; font-size: clamp(15px, 1.5vw, 17px); line-height: 1.95; color: var(--ink-2); margin: 0; }
.ad-career { list-style: none; margin: 0; padding: 0; }
.ad-career li { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.6; color: var(--ink); padding: 16px 0 16px 26px; border-bottom: 1px solid var(--hair); position: relative; }
.ad-career li:first-child { border-top: 1px solid var(--hair-2); }
.ad-career li::before { content: ""; position: absolute; left: 3px; top: 23px; width: 7px; height: 7px; border: 1px solid var(--accent); transform: rotate(45deg); transition: background .3s; }
.ad-career li:hover::before { background: var(--accent); }
.ad-pager { display: flex; justify-content: space-between; gap: 14px; padding: clamp(26px,4vw,40px) 0 clamp(84px,10vw,134px); border-top: 1px solid var(--hair); }
.ad-pager a { display: flex; flex-direction: column; gap: 7px; font-family: var(--sans); color: var(--ink-2); transition: color .3s; max-width: 46%; }
.ad-pager a:hover { color: var(--accent); }
.ad-pager .lbl { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.ad-pager .nm { font-family: var(--kserif); font-size: 19px; }
.ad-pager .next { text-align: right; align-items: flex-end; margin-left: auto; }
@media (max-width: 860px) {
  .ad-hero, .ad-body { grid-template-columns: 1fr; }
  .ad-portrait { max-width: 420px; }
  .ad-body { gap: 18px; }
}

/* ── 24. 마이크로 인터랙션 ────────────────────────────────────────── */
.btn { transition: transform .3s var(--ease-reveal), background .3s, border-color .3s, color .3s; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arw, .more .arw { display: inline-block; transition: transform .35s var(--ease-reveal); }
.btn:hover .arw, .more:hover .arw, .a-row:hover .a-go .arw { transform: translateX(4px); }
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--accent-deep), var(--accent)); z-index: 100; pointer-events: none; }
/* 그리드 스태거 리빌 */
.artist-grid [data-reveal]:nth-child(3n+2) { transition-delay: .08s; }
.artist-grid [data-reveal]:nth-child(3n+3) { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee__track { animation: none; }
  .ad-portrait img { animation: none; }
  .gal-img { transition: none; }
}

/* ── 25. 레이아웃 토글 · 페이지 마퀴 · 그리드 라벨 ────────────────── */
.layout-toggle { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-family: var(--sans); font-size: 13px; color: var(--accent-soft); border: 1px solid var(--hair-2); border-radius: var(--radius-pill); padding: 9px 17px; transition: border-color .3s, color .3s, gap .3s; }
.layout-toggle:hover { border-color: var(--accent); color: var(--accent); gap: 12px; }
.marquee--page { margin: clamp(6px, 1.5vw, 16px) 0 clamp(40px, 5vw, 66px); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: clamp(26px, 3.5vw, 44px) 0; }
.grid-label { font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px; }
.grid-label span { color: var(--accent); font-family: var(--serif); font-style: italic; font-size: 17px; margin-left: 5px; }

/* ── 26. 시네마틱 갤러리 (artists-gallery.html) ───────────────────── */
.gallery { padding: clamp(40px, 6vw, 88px) 0 clamp(72px, 9vw, 124px); }
.gal-head .eyebrow { display: inline-flex; align-items: center; gap: 16px; margin-bottom: clamp(22px, 3vw, 36px); }
.gal-stage { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 66px); align-items: center; margin-top: clamp(26px, 3.5vw, 44px); }
.gal-photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--hair); box-shadow: var(--shadow-card-hover); background: var(--panel); }
.gal-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .85s var(--ease-reveal), transform 6s ease-out; }
.gal-img.is-on { opacity: 1; transform: scale(1.05); }
.gal-counter { position: absolute; top: 16px; left: 16px; z-index: 2; font-family: var(--serif); font-style: italic; font-size: 15px; color: #fff; background: rgba(9,11,15,.5); border: 1px solid rgba(236,237,241,.3); padding: 4px 13px; border-radius: 999px; backdrop-filter: blur(4px); }
.gal-info { min-width: 0; }
.gal-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.gal-name { font-family: var(--kserif); font-weight: 500; font-size: clamp(36px, 5vw, 66px); line-height: 1.04; margin: 0; }
.gal-en { font-family: var(--serif); font-style: italic; font-size: clamp(16px, 1.8vw, 20px); color: var(--muted-2); margin-top: 9px; display: block; }
.gal-role { font-family: var(--sans); font-size: 14px; color: var(--accent); margin-top: 18px; }
.gal-meta { font-family: var(--sans); font-size: 13.5px; color: var(--ink-2); margin-top: 7px; }
.gal-tag { font-family: var(--kserif); font-weight: 300; font-size: clamp(16px, 1.9vw, 22px); line-height: 1.5; color: var(--ink); margin: 22px 0 0; max-width: 32ch; min-height: 2.4em; }
.gal-acts { margin-top: 26px; }
.gal-nav { display: flex; align-items: center; gap: 18px; margin-top: 28px; }
.gal-arrow { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--hair-2); background: transparent; color: var(--ink); font-size: 17px; cursor: pointer; transition: border-color .25s, color .25s, background .25s; display: flex; align-items: center; justify-content: center; }
.gal-arrow:hover { border-color: var(--accent); color: var(--accent); }
.gal-count { font-family: var(--sans); font-size: 13px; color: var(--muted-2); letter-spacing: .1em; }
.gal-count b { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--accent); font-weight: 500; }
.gal-thumbs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: clamp(32px, 4vw, 56px); }
.gal-thumb { flex: 0 0 auto; width: 58px; aspect-ratio: 3 / 4; border-radius: 10px; overflow: hidden; border: 1px solid var(--hair); opacity: .5; cursor: pointer; transition: opacity .3s, border-color .3s, transform .3s; padding: 0; background: none; position: relative; }
.gal-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gal-thumb:hover { opacity: .8; }
.gal-thumb.is-on { opacity: 1; border-color: var(--accent); transform: translateY(-3px); }
@media (max-width: 860px) {
  .gal-stage { grid-template-columns: 1fr; }
  .gal-photo { max-width: 380px; }
  .gal-tag { min-height: 0; }
}
