/* ============================================================
   개인 작품 전시 페이지 — 스타일
   색/폰트만 바꾸려면 :root 변수를 수정하세요.
   ============================================================ */
:root {
  --bg: #0e0e0f;
  --bg-soft: #16161a;
  --ink: #f3f1ec;
  --ink-soft: #a6a39c;
  --line: #2a2a2e;
  --accent: #c9a26b;        /* 포인트 색 (골드톤) */
  --max: 1100px;
  --serif: "Cormorant Garamond", serif;
  --sans: "Noto Sans KR", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===== 상단 작은 라벨 ===== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
  mix-blend-mode: difference;
}
.topbar a:hover { color: var(--accent); }

/* ===== 히어로 (이름/제목) ===== */
.hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 50px;
  position: relative;
}
.hero-eyebrow {
  font-family: var(--serif);
  letter-spacing: 0.45em;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 26px;
}
.hero-name-en {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.5em;
  color: var(--ink-soft);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.hero-name {
  margin-top: 22px;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 500;
}
.hero-sub { margin-top: 8px; color: var(--ink-soft); font-size: 1rem; }
.scroll-hint {
  margin-top: 48px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(8px);} }

/* ===== 메인 영상 ===== */
.video-section { padding: 30px 24px 90px; }
.video-frame {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--line);
}
.video-frame iframe,
.video-frame video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-caption {
  max-width: var(--max);
  margin: 22px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ===== 작품 설명 ===== */
.about {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 24px 110px;
  text-align: center;
}
.about-line {
  width: 40px; height: 2px;
  background: var(--accent);
  margin: 0 auto 30px;
}
.about p { color: var(--ink-soft); white-space: pre-line; font-size: 1.02rem; }

/* ===== 푸터 ===== */
.site-footer {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
}
.site-footer .accent { color: var(--accent); }

/* ===== 영상 placeholder (아직 영상 없을 때) ===== */
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: var(--ink-soft);
  background:
    repeating-linear-gradient(45deg, #1b1b1f, #1b1b1f 14px, #202024 14px, #202024 28px);
}
.video-placeholder .play { font-size: 2.4rem; opacity: 0.6; }

/* ===== 랜딩(두 사람 선택) 페이지 ===== */
.landing {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 24px;
  text-align: center;
}
.landing h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
.landing .lead { color: var(--ink-soft); margin: 16px 0 50px; }
.people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 760px;
}
@media (max-width: 560px) { .people { grid-template-columns: 1fr; } }
.person-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 46px 28px;
  background: var(--bg-soft);
  transition: transform 0.3s, border-color 0.3s;
}
.person-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.person-card .en {
  font-family: var(--serif);
  letter-spacing: 0.35em;
  color: var(--ink-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
}
.person-card .kr { font-size: 1.7rem; font-weight: 700; margin: 10px 0 6px; }
.person-card .go { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.1em; }
