/* ══════════════════════════════════════════════════════════════
   MJ GROUND — Single Design System
   Dark Editorial · YG/SM/JYP Aesthetic
   Fonts: Syne (display) · Plus Jakarta Sans (body) · Pretendard (KR)
══════════════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Tokens ── */
:root {
  --black:        #0a0a0a;
  --surface:      #111111;
  --surface-2:    #161616;
  --surface-3:    #1e1e1e;
  --white:        #f4f2ee;
  --off-white:    #e8e6e1;
  --mid:          #666;
  --faint:        rgba(244,242,238,0.12);

  --gold:         #c8a558;
  --gold-light:   #e2c98a;
  --gold-dim:     rgba(200,165,88,0.18);

  --purple:       #7c5cbf;
  --purple-soft:  #9b7dd4;
  --purple-dim:   rgba(124,92,191,0.15);

  --nav-h: 68px;
  --pad-x: 52px;
  --pad-x-sm: 24px;

  --ease-out: cubic-bezier(0.22,1,0.36,1);
  --ease-snap: cubic-bezier(0.77,0,0.175,1);
}

/* ── Base ── */
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', 'Pretendard', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══ NAV ══════════════════════════════════════════════════════ */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad-x);
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(244,242,238,0.05);
  transition: background 0.35s;
}
#main-nav.scrolled { background: rgba(10,10,10,0.97); }

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); justify-self: start;
}
.nav-logo .g { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  justify-self: center;
}
.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,242,238,0.38);
  position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-right { justify-self: end; display: flex; align-items: center; gap: 16px; }
.nav-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 9px 22px; white-space: nowrap;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  color: var(--white); font-size: 1.1rem; padding: 4px;
  justify-self: end;
}

/* ── Mobile Drawer ── */
#nav-drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid rgba(244,242,238,0.06);
  padding: 20px var(--pad-x-sm) 28px;
  z-index: 99; flex-direction: column; gap: 0;
}
#nav-drawer.open { display: flex; }
#nav-drawer a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,242,238,0.42); padding: 14px 0;
  border-bottom: 1px solid rgba(244,242,238,0.05);
  transition: color 0.25s;
}
#nav-drawer a:last-child { border-bottom: none; }
#nav-drawer a:hover, #nav-drawer a.active { color: var(--white); }
#nav-drawer .drawer-cta {
  margin-top: 16px;
  color: var(--black); background: var(--gold);
  padding: 13px 20px; text-align: center;
  font-weight: 700; border-bottom: none !important;
}
#nav-drawer .drawer-cta:hover { background: var(--gold-light); color: var(--black); }

/* ── Nav Dropdown (PC hover) ── */
.nav-links li { list-style: none; }
.nav-has-drop { position: relative; }
.nav-caret {
  font-size: 0.45rem; margin-left: 5px;
  display: inline-block; vertical-align: middle;
  transition: transform 0.25s;
}
.nav-has-drop:hover > a .nav-caret,
.nav-has-drop:focus-within > a .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  visibility: hidden; opacity: 0;
  position: absolute; top: calc(100% + 14px); left: -20px;
  background: var(--surface-2);
  border: 1px solid rgba(244,242,238,0.08);
  min-width: 176px; padding: 8px 0; list-style: none;
  z-index: 200;
  transition: opacity 0.2s, visibility 0.2s;
}
.nav-has-drop:hover .nav-dropdown,
.nav-has-drop:focus-within .nav-dropdown { visibility: visible; opacity: 1; }
.nav-dropdown li { list-style: none; }
.nav-dropdown li a {
  display: block; padding: 10px 20px;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(244,242,238,0.4); white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover { color: var(--gold); background: rgba(244,242,238,0.03); }

/* ── Mobile Drawer Accordion ── */
#nav-drawer .drawer-group { display: flex; flex-direction: column; }
#nav-drawer .drawer-group-head {
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(244,242,238,0.05);
}
#nav-drawer .drawer-group-head > a { flex: 1; border-bottom: none; }
.drawer-group-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(244,242,238,0.25); padding: 0 4px 0 12px;
  font-size: 0.5rem; line-height: 1;
  transition: color 0.2s, transform 0.25s;
}
.drawer-group.open .drawer-group-btn { color: var(--gold); transform: rotate(180deg); }
.drawer-sub {
  display: none; flex-direction: column;
  padding-left: 16px;
  border-left: 1px solid rgba(244,242,238,0.06);
  margin-left: 6px;
}
.drawer-group.open .drawer-sub { display: flex; }
#nav-drawer .drawer-sub a {
  font-size: 0.62rem; color: rgba(244,242,238,0.28);
  padding: 10px 0; border-bottom: 1px solid rgba(244,242,238,0.03);
}
#nav-drawer .drawer-sub a:last-child { border-bottom: none; }
#nav-drawer .drawer-sub a:hover,
#nav-drawer .drawer-sub a.active { color: var(--gold); }

/* ══ PAGE HERO ════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 72px) var(--pad-x) 64px;
  border-bottom: 1px solid var(--faint);
  display: flex; align-items: flex-end;
  justify-content: space-between;
  position: relative; overflow: hidden;
  min-height: 320px;
}
.page-hero::before {
  content: attr(data-watermark);
  position: absolute; right: -1vw; bottom: -3vw;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(6rem, 16vw, 15rem);
  line-height: 1; letter-spacing: -0.04em;
  color: rgba(244,242,238,0.028);
  pointer-events: none; user-select: none;
}
.page-hero-left {}
.page-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.eyebrow-line { width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.38em; color: var(--gold); text-transform: uppercase;
}
.page-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.9; letter-spacing: -0.03em;
  color: var(--white);
}
.page-title em {
  font-style: normal; color: var(--gold); display: block;
  font-size: clamp(0.9rem, 1.6vw, 1.3rem);
  letter-spacing: 0.3em; margin-top: 10px; font-weight: 700;
}
.page-desc {
  font-size: 0.87rem; font-weight: 300; line-height: 2;
  color: rgba(244,242,238,0.38); max-width: 280px;
  letter-spacing: 0.01em;
}

/* ══ SECTION COMMON ═══════════════════════════════════════════ */
.section-pad    { padding: 88px var(--pad-x); }
.section-pad-sm { padding: 60px var(--pad-x); }
.section-border { border-top: 1px solid var(--faint); }

.section-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.section-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.92; letter-spacing: -0.03em;
  color: var(--white);
}
.section-title em {
  font-style: normal; color: var(--gold); display: block;
  font-size: clamp(0.75rem, 1.2vw, 1rem); letter-spacing: 0.3em; margin-top: 8px;
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px;
}
.section-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(244,242,238,0.35);
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 4px; border-bottom: 1px solid rgba(244,242,238,0.1);
  transition: color 0.25s, border-color 0.25s;
}
.section-link:hover { color: var(--white); border-color: var(--gold); }
.section-link .arr { display: inline-block; transition: transform 0.25s; }
.section-link:hover .arr { transform: translateX(4px); }

/* ══ BUTTONS ══════════════════════════════════════════════════ */
.btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 14px 32px; display: inline-block;
  transition: all 0.25s; border: none;
}
.btn-gold { color: var(--black); background: var(--gold); }
.btn-gold:hover { background: var(--gold-light); }
.btn-purple { color: var(--white); background: var(--purple); }
.btn-purple:hover { background: var(--purple-soft); }
.btn-outline {
  color: rgba(244,242,238,0.45); background: none;
  border: 1px solid rgba(200,165,88,0.25);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { color: var(--white); border-color: var(--gold); }
.btn-outline .arr { display: inline-block; transition: transform 0.25s; }
.btn-outline:hover .arr { transform: translateX(4px); }
.btn-ghost {
  color: rgba(244,242,238,0.4); background: none;
  border: 1px solid var(--faint);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(244,242,238,0.2); }

/* ══ ARTIST CARD ══════════════════════════════════════════════ */
.artist-card {
  display: block; cursor: pointer;
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out);
}
.artist-card:hover { transform: translateY(-6px); }
.artist-card-img {
  position: relative; overflow: hidden;
  background: var(--surface-2);
}
.artist-card-img img {
  width: 100%; height: auto; display: block;
  filter: brightness(0.8) contrast(1.05);
  transition: transform 0.7s var(--ease-out), filter 0.4s;
}
.artist-card:hover .artist-card-img img {
  transform: scale(1.04); filter: brightness(0.65) contrast(1.1);
}
.artist-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 55%);
  pointer-events: none;
}
.artist-card-badge {
  position: absolute; top: 16px; right: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.52rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--black);
  background: var(--gold); padding: 5px 12px;
}
.artist-card-body { padding: 20px 24px 26px; }
.artist-card-num {
  font-family: 'Syne', sans-serif; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.3em; color: var(--gold); margin-bottom: 8px; display: block;
}
.artist-card-name {
  font-family: 'Pretendard', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--white);
  margin-bottom: 2px; line-height: 1.2;
}
.artist-card-name-en {
  font-family: 'Syne', sans-serif; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,242,238,0.35); margin-bottom: 10px; display: block;
}
.artist-card-spec {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.05em;
  color: rgba(244,242,238,0.4); line-height: 1.6;
}
.artist-card-bio {
  font-size: 0.8rem; font-weight: 300; line-height: 1.85;
  color: rgba(244,242,238,0.38); margin-top: 10px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Artists grid */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* ══ EXHIBITION CARD ══════════════════════════════════════════ */
.exh-card {
  display: block;
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out);
  border-top: 1px solid var(--faint);
}
.exh-card:hover { transform: translateY(-4px); }
.exh-card-img {
  position: relative; overflow: hidden;
  background: var(--surface-2);
}
.exh-card-img img {
  width: 100%; height: auto; display: block;
  filter: brightness(0.75);
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.exh-card:hover .exh-card-img img { transform: scale(1.03); filter: brightness(0.55); }
.exh-card-status {
  position: absolute; top: 16px; left: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.52rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 12px;
}
.status-upcoming { background: var(--gold); color: var(--black); }
.status-past     { background: var(--surface-3); color: rgba(244,242,238,0.4); }
.status-ongoing  { background: var(--purple); color: var(--white); }
.exh-card-body { padding: 24px 28px 30px; }
.exh-card-date {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.exh-card-title {
  font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800;
  letter-spacing: -0.02em; color: var(--white);
  margin-bottom: 4px; line-height: 1.15;
}
.exh-card-title-en {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.1em;
  color: rgba(244,242,238,0.32); margin-bottom: 12px; display: block;
}
.exh-card-loc {
  font-size: 0.78rem; color: rgba(244,242,238,0.38);
  display: flex; align-items: center; gap: 6px;
}
.exh-card-desc {
  font-size: 0.8rem; font-weight: 300; line-height: 1.85;
  color: rgba(244,242,238,0.38); margin-top: 10px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Exhibitions grid */
.exh-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.exh-grid .exh-card:first-child {
  grid-column: span 2;
}

/* ══ NEWS CATEGORY CARDS ══════════════════════════════════════ */
.news-cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.news-cat-card {
  display: block; position: relative;
  height: 400px; overflow: hidden;
  background: var(--surface);
  transition: transform 0.35s var(--ease-out);
}
.news-cat-card:hover { transform: translateY(-4px); }
.news-cat-icon {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  padding-bottom: 110px;
  font-size: 8rem; opacity: 0.055;
  color: var(--white); pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
}
.news-cat-card:hover .news-cat-icon { opacity: 0.12; transform: scale(1.1) translateY(-8px); }
.news-cat-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
  background: linear-gradient(to top, rgba(10,10,10,0.96) 0%, transparent 80%);
}
.news-cat-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.news-cat-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 8px;
}
.news-cat-desc {
  font-size: 0.8rem; font-weight: 300; line-height: 1.75;
  color: rgba(244,242,238,0.45); margin-bottom: 16px;
}
.news-cat-arr {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em;
  color: rgba(244,242,238,0.4); text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.25s;
}
.news-cat-card:hover .news-cat-arr { color: var(--gold); }
.news-cat-arr .arr { display: inline-block; transition: transform 0.25s; }
.news-cat-card:hover .arr { transform: translateX(4px); }

/* ══ PROGRAM CARDS ════════════════════════════════════════════ */
.program-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-bottom: 2px;
}
.program-card {
  display: block; position: relative; overflow: hidden;
  background: var(--surface);
  transition: transform 0.35s var(--ease-out);
}
.program-card:hover { transform: translateY(-4px); }
.program-card-img {
  position: relative; overflow: hidden;
  background: var(--surface-2);
}
.program-card-img img {
  width: 100%; height: auto; display: block;
  filter: brightness(0.5) contrast(1.1);
  transition: transform 0.7s var(--ease-out), filter 0.4s;
}
.program-card:hover .program-card-img img { transform: scale(1.04); filter: brightness(0.35); }
.program-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.2) 50%, transparent 100%);
  pointer-events: none;
}
.program-card-status {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.52rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: var(--black); padding: 5px 12px;
}
.program-card-status.soon { background: var(--surface-3); color: rgba(244,242,238,0.4); }
.program-card-body { padding: 28px 32px 36px; }
.program-card-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 14px; line-height: 1.2;
}
.program-card-meta {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px;
}
.program-meta-row {
  font-size: 0.8rem; font-weight: 300;
  color: rgba(244,242,238,0.45); display: flex; align-items: center; gap: 10px;
}
.program-meta-row i { color: var(--purple-soft); width: 14px; }
.program-card-desc {
  font-size: 0.82rem; font-weight: 300; line-height: 1.85;
  color: rgba(244,242,238,0.38); margin-bottom: 18px;
}
.program-card-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 8px;
  transition: gap 0.25s;
}
.program-card:hover .program-card-cta { gap: 14px; }

/* ══ BENEFITS GRID ════════════════════════════════════════════ */
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.benefit-item {
  padding: 44px 36px;
  background: var(--surface);
  transition: background 0.3s;
}
.benefit-item:hover { background: var(--surface-3); }
.benefit-line {
  width: 32px; height: 1px; background: var(--gold);
  margin-bottom: 24px; transition: width 0.3s;
}
.benefit-item:hover .benefit-line { width: 52px; }
.benefit-icon {
  font-size: 1.6rem; color: var(--gold); opacity: 0.7;
  margin-bottom: 18px;
}
.benefit-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em;
}
.benefit-desc {
  font-size: 0.8rem; font-weight: 300; line-height: 1.85;
  color: rgba(244,242,238,0.38);
}

/* ══ STEPS / PROCESS LIST ═════════════════════════════════════ */
.steps-list {
  display: flex; flex-direction: column; gap: 2px;
  max-width: 760px; margin: 0 auto;
}
.step-item {
  display: grid; grid-template-columns: 64px 1fr;
  align-items: start; gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--faint);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 2rem; line-height: 1;
  color: var(--gold); opacity: 0.5;
}
.step-body {}
.step-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px; letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.82rem; font-weight: 300; line-height: 1.85;
  color: rgba(244,242,238,0.4);
}

/* ══ HIGHLIGHT CARDS ══════════════════════════════════════════ */
.highlight-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.highlight-card {
  padding: 44px 36px;
  background: var(--surface);
  transition: background 0.3s;
}
.highlight-card:hover { background: var(--surface-3); }
.highlight-card-head {
  display: flex; align-items: center; gap: 16px; margin-bottom: 20px;
}
.highlight-card-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 2.8rem; line-height: 1; color: rgba(244,242,238,0.06);
}
.highlight-card-title {
  font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.01em;
}
.highlight-card-sub {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-top: 2px; display: block;
}
.highlight-card-desc {
  font-size: 0.82rem; font-weight: 300; line-height: 1.9;
  color: rgba(244,242,238,0.4);
}

/* ══ VALUE ROWS ═══════════════════════════════════════════════ */
.value-row {
  display: grid; grid-template-columns: 80px 1fr 2fr;
  gap: 40px; align-items: start;
  padding: 56px 0; border-bottom: 1px solid var(--faint);
}
.value-row:last-child { border-bottom: none; }
.value-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(244,242,238,0.22); padding-top: 6px;
}
.value-label {
  font-size: 0.8rem; font-weight: 600; line-height: 1.7;
  color: var(--gold);
}
.value-content {}
.value-title-lg {
  font-family: 'Pretendard', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 800;
  letter-spacing: -0.02em; color: var(--white); margin-bottom: 14px;
}
.value-body {
  font-size: 0.87rem; font-weight: 300; line-height: 2;
  color: rgba(244,242,238,0.42);
}

/* ══ MISSION / 2COL SPLIT ═════════════════════════════════════ */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr;
}
.split-col {
  padding: 80px var(--pad-x);
  border-right: 1px solid var(--faint);
}
.split-col:last-child { border-right: none; }
.split-col-dark { background: var(--surface); }
.mission-text {
  font-size: 0.92rem; font-weight: 300; line-height: 2.1;
  color: rgba(244,242,238,0.5);
}
.mission-text strong { font-weight: 700; color: var(--white); }

/* ══ CONTACT ══════════════════════════════════════════════════ */
.contact-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--purple-soft);
  margin-bottom: 8px; display: block;
}
.contact-value {
  font-size: 0.95rem; color: var(--white); line-height: 1.7;
}
.contact-value a {
  color: var(--white); border-bottom: 1px solid var(--faint);
  transition: border-color 0.25s;
}
.contact-value a:hover { border-color: var(--gold); }
.contact-items { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }

/* ══ TAGS ═════════════════════════════════════════════════════ */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 6px 14px;
  border: 1px solid var(--faint); color: rgba(244,242,238,0.45);
}
.tag-gold { border-color: rgba(200,165,88,0.35); color: var(--gold); }
.tag-purple { border-color: rgba(124,92,191,0.35); color: var(--purple-soft); }

/* ══ KIDS PROGRAM SPECIFIC ════════════════════════════════════ */
.kids-info-card {
  background: var(--surface); padding: 48px;
  border-top: 2px solid var(--gold);
  text-align: center;
}
.kids-age-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-soft); background: var(--purple-dim);
  padding: 8px 20px; margin-top: 16px;
}
.kids-desc {
  font-size: 1rem; font-weight: 300; line-height: 2;
  color: rgba(244,242,238,0.5); max-width: 640px; margin: 0 auto;
}

/* ══ COMMUNITY TABS ═══════════════════════════════════════════ */
.tab-nav {
  position: sticky; top: var(--nav-h); z-index: 50;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--faint);
  display: flex; overflow-x: auto;
}
.tab-btn {
  flex-shrink: 0; padding: 20px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,242,238,0.3); background: none;
  border-bottom: 2px solid transparent;
  transition: all 0.25s; white-space: nowrap;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Community sections */
.club-section { padding: 80px var(--pad-x); border-top: 1px solid var(--faint); }
.club-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start; margin-bottom: 60px;
}
.club-num {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.club-num::after {
  content: ''; flex: 1; height: 1px; max-width: 60px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.club-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -0.03em;
  color: var(--white); line-height: 1;
}
.club-name em { color: var(--purple-soft); font-style: normal; }
.club-sub {
  font-size: 0.65rem; letter-spacing: 0.25em; font-weight: 600;
  color: var(--purple-soft); text-transform: uppercase; margin-bottom: 12px; display: block;
}
.club-desc {
  font-size: 0.88rem; font-weight: 300; line-height: 2;
  color: rgba(244,242,238,0.42);
}

.thumb-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.thumb-item {
  background: var(--surface-2);
  position: relative; overflow: hidden;
}
.thumb-item:first-child { grid-column: span 2; }
.thumb-item img { width: 100%; height: auto; display: block; }
.thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.thumb-ph-icon { font-size: 1.8rem; color: rgba(200,165,88,0.15); }
.thumb-ph-label {
  font-size: 0.58rem; letter-spacing: 0.25em; font-weight: 700;
  text-transform: uppercase; color: rgba(200,165,88,0.2);
}

/* ══ ABOUT BRAND ══════════════════════════════════════════════ */
.brand-hero {
  padding: calc(var(--nav-h) + 80px) var(--pad-x) 80px;
  border-bottom: 1px solid var(--faint);
  text-align: center;
}
.brand-hero-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(4rem, 10vw, 9rem);
  letter-spacing: -0.04em; color: var(--white);
  line-height: 0.9; margin-bottom: 24px;
}
.brand-hero-title span { color: var(--gold); }
.brand-hero-sub {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.4em;
  text-transform: uppercase; color: rgba(244,242,238,0.28);
}

/* ══ KIDS ARTISTS ═════════════════════════════════════════════ */
.kids-artists-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.kids-artist-card {
  position: relative; overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}
.kids-artist-card img {
  width: 100%; height: auto; display: block;
  filter: brightness(0.7);
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.kids-artist-card:hover img { transform: scale(1.05); filter: brightness(0.5); }
.kids-artist-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 55%);
  pointer-events: none;
}
.kids-artist-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
}
.kids-artist-name {
  font-family: 'Pretendard', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 2px;
}
.kids-artist-age {
  font-size: 0.65rem; letter-spacing: 0.15em;
  color: var(--gold); font-weight: 600;
}

/* ══ CTA BANNER ═══════════════════════════════════════════════ */
.cta-banner {
  padding: 80px var(--pad-x);
  background: var(--surface);
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; overflow: hidden;
  border-top: 1px solid var(--faint);
}
.cta-banner::before {
  content: attr(data-watermark);
  position: absolute; right: -1vw; top: 50%; transform: translateY(-50%);
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(5rem, 14vw, 13rem);
  color: rgba(244,242,238,0.022); pointer-events: none; letter-spacing: -0.04em;
}
.cta-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block;
}
.cta-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.92; letter-spacing: -0.03em; color: var(--white);
}
.cta-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

/* ══ WHAT WE DO GRID ══════════════════════════════════════════ */
.whatwedo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.whatwedo-item {
  padding: 44px 36px; background: var(--surface);
  transition: background 0.3s;
}
.whatwedo-item:hover { background: var(--surface-3); }
.whatwedo-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 3rem; line-height: 1;
  color: rgba(244,242,238,0.04); margin-bottom: 18px; display: block;
  transition: color 0.3s;
}
.whatwedo-item:hover .whatwedo-num { color: rgba(200,165,88,0.12); }
.whatwedo-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 12px;
}
.whatwedo-desc {
  font-size: 0.82rem; font-weight: 300; line-height: 1.9;
  color: rgba(244,242,238,0.38);
}

/* ══ VALUES 4-COL ═════════════════════════════════════════════ */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.value-item {
  padding: 36px 28px; background: var(--surface-2);
}
.value-icon-bar { width: 36px; height: 1px; background: var(--gold); margin-bottom: 24px; }
.value-item-title {
  font-family: 'Pretendard', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--white);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.value-item-desc {
  font-size: 0.8rem; font-weight: 300; line-height: 1.85;
  color: rgba(244,242,238,0.38);
}

/* ══ ARTIST DETAIL ════════════════════════════════════════════ */
.detail-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 92vh;
}
.detail-hero-img {
  position: relative; overflow: hidden; background: var(--surface-2);
}
.detail-hero-img img {
  width: 100%; height: auto; display: block;
  filter: brightness(0.75);
}
.detail-hero-body {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 60px;
  background: var(--surface);
}
.detail-artworks {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
.detail-artwork-item {
  overflow: hidden; background: var(--surface-2);
  cursor: pointer; position: relative;
}
.detail-artwork-item img {
  width: 100%; height: auto; display: block;
  filter: brightness(0.8);
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}
.detail-artwork-item:hover img { transform: scale(1.05); filter: brightness(0.6); }

/* ══ MODAL ════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--surface); max-width: 860px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  color: rgba(244,242,238,0.4); font-size: 1.4rem;
  transition: color 0.25s; z-index: 2;
}
.modal-close:hover { color: var(--white); }
.modal-inner { padding: 40px; }
.modal-img { width: 100%; height: auto; display: block; }

/* Exhibition modal (open/visible pattern) */
#exhibition-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.88); z-index: 200;
  align-items: center; justify-content: center; padding: 24px;
  opacity: 0; transition: opacity 0.3s;
}
#exhibition-modal.open { display: flex; }
#exhibition-modal.visible { opacity: 1; }
.exhibition-modal-box {
  background: var(--surface); max-width: 860px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
}
.exh-modal-img { width: 100%; max-height: 440px; object-fit: contain; background: var(--surface-2); }
.exh-modal-body { padding: 36px 40px; }
.exh-modal-status {
  display: inline-block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.52rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 16px;
}
.exh-modal-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem,3vw,2.6rem); letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 4px;
}
.exh-modal-title-en {
  font-size: 0.82rem; color: rgba(244,242,238,0.3); margin-bottom: 20px; display: block;
}
.exh-modal-meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.exh-modal-meta-row {
  font-size: 0.8rem; color: rgba(244,242,238,0.45);
  display: flex; align-items: center; gap: 10px;
}
.exh-modal-meta-row i { color: var(--purple-soft); width: 14px; }
.exh-modal-desc {
  font-size: 0.87rem; font-weight: 300; line-height: 2;
  color: rgba(244,242,238,0.45); margin-bottom: 12px;
}
.exh-modal-desc-en {
  font-size: 0.78rem; color: rgba(244,242,238,0.25); line-height: 1.9; font-style: italic;
}

/* Artwork modal (artist detail) */
#artwork-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.96); z-index: 200;
  align-items: stretch; opacity: 0; transition: opacity 0.3s;
}
#artwork-modal.open { display: flex; }
#artwork-modal.visible { opacity: 1; }
.artwork-modal-img-side {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: #000; overflow: hidden;
}
.artwork-modal-img-side img { max-width: 100%; max-height: 100%; object-fit: contain; }
.artwork-modal-info {
  width: 280px; flex-shrink: 0; background: var(--surface);
  padding: 40px 32px; display: flex; flex-direction: column; justify-content: center;
}
.artwork-modal-title {
  font-family: 'Pretendard', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px; letter-spacing: -0.01em;
}
.artwork-modal-meta p {
  font-size: 0.8rem; color: rgba(244,242,238,0.4); line-height: 1.9;
}
#modal-close {
  position: absolute; top: 20px; right: 20px;
  color: rgba(244,242,238,0.4); font-size: 1.6rem;
  transition: color 0.25s; z-index: 10;
}
#modal-close:hover { color: var(--white); }

/* Exhibition filter buttons */
.exh-filter-bar {
  position: sticky; top: var(--nav-h); z-index: 50;
  background: rgba(10,10,10,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--faint);
  display: flex; gap: 0; padding: 0 var(--pad-x);
}
.filter-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; background: none;
  color: rgba(244,242,238,0.3); padding: 18px 20px;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
}
.filter-btn:hover { color: var(--white); }
.filter-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Artist detail: featured slider — YG center-focus style */
.featured-slider-wrap {
  overflow: hidden;
  position: relative;
  padding: 48px 0 56px;
}
.featured-track {
  display: flex;
  align-items: center;
  gap: 36px;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}
.featured-item {
  flex: 0 0 420px;
  height: auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform-origin: center center;
  transform: scale(0.55);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              opacity  0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.featured-item.active {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}
.featured-item.side-1 {
  transform: scale(0.85);
  opacity: 0.4;
  z-index: 1;
}
.featured-item.side-2 {
  transform: scale(0.7);
  opacity: 0.2;
  z-index: 0;
}
.featured-item img {
  width: 100%; height: auto; max-height: 80vh;
  pointer-events: none;
  display: block;
}
.featured-item.active img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.featured-item.active:hover img { transform: scale(1.04); }

/* 화살표 — 중앙 이미지 양옆 오버레이 */
.slider-arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(200,165,88,0.28);
  background: rgba(10,10,10,0.6);
  color: rgba(244,242,238,0.5);
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.slider-arrow:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(200,165,88,0.1);
}
.slider-arrow:disabled {
  opacity: 0.15;
  cursor: not-allowed;
  pointer-events: none;
}
.slider-arrow-prev,
.slider-arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.slider-arrow-prev { left:  calc(50% - 266px); }
.slider-arrow-next { right: calc(50% - 266px); }

.slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px var(--pad-x) 0;
}
.slider-dot {
  width: 20px; height: 2px;
  background: rgba(244,242,238,0.18);
  border: none; padding: 0;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), width 0.3s var(--ease-out);
}
.slider-dot.active {
  background: var(--gold);
  width: 40px;
}

/* Slider custom drag cursor — YG style */
.slider-drag-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.18s var(--ease-out);
  will-change: left, top;
}
.slider-drag-cursor.visible { opacity: 1; }
.slider-drag-cursor.dragging { opacity: 0.5; }
.slider-drag-cursor-arrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.slider-drag-cursor-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1;
}
/* system cursor off inside slider wrap */
.featured-slider-wrap.drag-cursor-active { cursor: none; }
.featured-slider-wrap.drag-cursor-active .slider-arrow { cursor: pointer; }

/* Artist detail: collage grid */
.collage-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; min-height: 600px;
}
.collage-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--surface-2);
}
.collage-item img {
  width: 100%; height: auto; display: block;
  filter: brightness(0.8);
  transition: filter 0.4s, transform 0.6s var(--ease-out);
}
.collage-item:hover img { filter: brightness(0.55); transform: scale(1.04); }
.collage-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, transparent 80%);
  opacity: 0; transition: opacity 0.35s;
}
.collage-item:hover .collage-overlay { opacity: 1; }

/* ══ CARD HOVER TEXT OVERLAY ═════════════════════════════════ */
.artist-card-img-hover {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 24px 22px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s var(--ease-out), transform 0.42s var(--ease-out);
  pointer-events: none; z-index: 2;
}
.artist-card:hover .artist-card-img-hover { opacity: 1; transform: translateY(0); }
.artist-card-img-hover-name {
  font-family: 'Pretendard', sans-serif;
  font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 3px; display: block;
}
.artist-card-img-hover-spec {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
}

.exh-card-img-hover {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.2) 70%, transparent 100%);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s var(--ease-out), transform 0.42s var(--ease-out);
  pointer-events: none; z-index: 2;
}
.exh-card:hover .exh-card-img-hover { opacity: 1; transform: translateY(0); }
.exh-card-img-hover-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.54rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px; display: block;
}
.exh-card-img-hover-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem; font-weight: 800; letter-spacing: -0.01em;
  color: var(--white); line-height: 1.2;
}

/* Artist detail tabs */
.artist-header {
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 0;
  background: var(--surface);
}
.artist-name-section {
  text-align: center; padding: 0 0 32px;
}
.artist-tabs {
  display: flex; justify-content: center; gap: 60px;
  border-bottom: 1px solid var(--faint);
}
.artist-tab {
  padding: 20px 0; font-family: 'Syne', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(244,242,238,0.3); cursor: pointer; position: relative;
  transition: color 0.25s;
}
.artist-tab:hover { color: rgba(244,242,238,0.7); }
.artist-tab.active { color: var(--white); }
.artist-tab.active::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.tab-content { display: none; min-height: 600px; }
.tab-content.active { display: block; }

/* Residency kids - info table */
.kids-table {
  width: 100%; border-collapse: collapse; background: var(--surface);
}
.kids-table th {
  padding: 16px 20px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--surface-3); color: var(--gold);
  border-bottom: 1px solid var(--faint); text-align: center;
}
.kids-table th:first-child { text-align: right; }
.kids-table td {
  padding: 16px 20px; font-size: 0.87rem; color: rgba(244,242,238,0.6);
  border-bottom: 1px solid var(--faint); text-align: center;
  vertical-align: middle;
}
.kids-table td:first-child { text-align: right; font-weight: 600; color: rgba(244,242,238,0.45); }
.kids-table td.price { color: var(--gold); font-weight: 700; }
.kids-table tr:last-child td { border-bottom: none; }

@media (max-width: 900px) {
  .artist-tabs { gap: 24px; }
  .artist-tab { font-size: 0.6rem; padding: 16px 0; }
  .featured-item { flex: 0 0 280px; height: auto; }
  .slider-dots { padding: 16px 24px 0; }
  .slider-arrow { width: 38px; height: 38px; font-size: 0.78rem; }
  .slider-arrow-prev { left:  calc(50% - 178px); }
  .slider-arrow-next { right: calc(50% - 178px); }
  .artwork-modal-info { width: 100%; max-height: 200px; }
  #artwork-modal { flex-direction: column; }
  .collage-grid { grid-template-columns: 1fr 1fr; }
  .exh-filter-bar { padding: 0 var(--pad-x-sm); gap: 0; overflow-x: auto; }
  .filter-btn { padding: 16px 12px; font-size: 0.58rem; }
}

/* ══ FOOTER ═══════════════════════════════════════════════════ */
#main-footer {
  background: var(--surface);
  color: var(--white);
  padding: 72px var(--pad-x) 40px;
  border-top: 1px solid var(--faint);
}
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px; padding-bottom: 52px;
  border-bottom: 1px solid var(--faint);
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.35rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); display: block; margin-bottom: 16px;
}
.footer-logo .g { color: var(--gold); }
.footer-desc {
  font-size: 0.8rem; font-weight: 300; line-height: 2;
  color: rgba(244,242,238,0.3);
}
.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(244,242,238,0.3); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.82rem; color: rgba(244,242,238,0.38);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact {
  font-size: 0.82rem; color: rgba(244,242,238,0.3); line-height: 2.1;
}
.footer-bottom {
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.14em;
  color: rgba(244,242,238,0.18);
}
.footer-operator {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.1em;
  color: rgba(244,242,238,0.14);
}
.footer-sns { display: flex; gap: 20px; }
.footer-sns a { color: rgba(244,242,238,0.25); font-size: 1rem; transition: color 0.25s; }
.footer-sns a:hover { color: var(--gold); }

/* ══ TICKER ═══════════════════════════════════════════════════ */
.ticker-wrap {
  border-top: 1px solid var(--faint);
  background: var(--surface);
  padding: 14px 0; overflow: hidden;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 36s linear infinite;
}
.ticker-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.55rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(244,242,238,0.15); padding: 0 44px;
  display: inline-flex; align-items: center; gap: 44px;
}
.ticker-item::after { content: '◆'; font-size: 0.3rem; color: var(--gold); opacity: 0.4; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══ SCROLL REVEAL ════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══ RESPONSIVE ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad-x: 40px; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .kids-artists-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .value-row { grid-template-columns: 60px 1fr; }
  .value-row .value-label { display: none; }
}
@media (max-width: 900px) {
  :root { --pad-x: var(--pad-x-sm); }

  #main-nav { grid-template-columns: 1fr auto; }
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }

  .page-hero { flex-direction: column; gap: 24px; align-items: flex-start;
    padding: calc(var(--nav-h) + 44px) var(--pad-x-sm) 44px; }

  .section-header { flex-direction: column; gap: 16px; align-items: flex-start; }

  .artists-grid { grid-template-columns: 1fr; }
  .exh-grid { grid-template-columns: 1fr; }
  .exh-grid .exh-card:first-child { grid-column: span 1; }
  .exh-grid .exh-card:first-child .exh-card-img { height: 280px; }
  .news-cat-grid { grid-template-columns: 1fr; }
  .news-cat-card { height: 280px; }
  .program-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .whatwedo-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .split-grid { grid-template-columns: 1fr; }
  .split-col { border-right: none; border-bottom: 1px solid var(--faint); padding: 52px var(--pad-x-sm); }
  .split-col:last-child { border-bottom: none; }
  .club-header { grid-template-columns: 1fr; gap: 28px; }
  .thumb-grid { grid-template-columns: 1fr 1fr; }
  .detail-hero { grid-template-columns: 1fr; }
  .kids-artists-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; gap: 28px; padding: 52px var(--pad-x-sm); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  #main-footer { padding: 52px var(--pad-x-sm) 36px; }
  .section-pad { padding: 64px var(--pad-x-sm); }
  .club-section { padding: 60px var(--pad-x-sm); }
  .value-row { grid-template-columns: 1fr; gap: 16px; }
  .step-item { grid-template-columns: 48px 1fr; gap: 16px; }
  .brand-hero { padding: calc(var(--nav-h) + 52px) var(--pad-x-sm) 52px; }
  .detail-hero-body { padding: 40px var(--pad-x-sm) 40px; }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .kids-artists-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══ SECTION LIGHT ════════════════════════════════════════════
   흰 배경 섹션 — 다크 섹션과 교차 배치로 에디토리얼 리듬 생성
   사용: 해당 section에 class="section-light" 추가
   빈도: 전체 섹션의 30% 이하 (YG 강도 기준)
══════════════════════════════════════════════════════════════ */
.section-light {
  background: var(--white);
  color: var(--black);
  border-top: 1px solid rgba(200,165,88,0.18);
  border-bottom: 1px solid rgba(200,165,88,0.18);
}

/* 텍스트 계층 */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light .section-title  { color: var(--black); }
.section-light .section-title em { color: var(--gold); }
.section-light p { color: rgba(10,10,10,0.52); }

/* eyebrow */
.section-light .eyebrow-line                   { background: var(--purple); }
.section-light .eyebrow-text,
.section-light .section-eyebrow .eyebrow-text  { color: var(--purple); }

/* 링크 */
.section-light .section-link {
  color: rgba(10,10,10,0.4);
  border-bottom-color: rgba(10,10,10,0.12);
}
.section-light .section-link:hover {
  color: var(--black);
  border-bottom-color: var(--gold);
}

/* 버튼 */
.section-light .btn-outline {
  color: rgba(10,10,10,0.5);
  border-color: rgba(200,165,88,0.32);
}
.section-light .btn-outline:hover { color: var(--black); border-color: var(--gold); }

/* 구분선 */
.section-light .section-border { border-top-color: rgba(10,10,10,0.07); }

/* 카드 */
.section-light .artist-card          { background: var(--off-white); }
.section-light .artist-card-name     { color: var(--black); }
.section-light .artist-card-name-en  { color: rgba(10,10,10,0.35); }
.section-light .artist-card-spec,
.section-light .artist-card-bio      { color: rgba(10,10,10,0.42); }

/* 통계 숫자 */
.section-light .rs-num,
.section-light .stat-num   { color: var(--black); }
.section-light .rs-num em  { color: var(--gold); }
.section-light .rs-label,
.section-light .stat-label { color: rgba(10,10,10,0.42); }

/* 통계 박스 border */
.section-light .residency-stats { border-color: rgba(10,10,10,0.09); }
.section-light .residency-stat  { border-right-color: rgba(10,10,10,0.09); }

/* ══ HERO ART BACKGROUND ══════════════════════════════════════
   HOME 히어로 우측 붓터치·캔버스 텍스처 배경
   — opacity 극저로 연하게 (미술 느낌, 방해 없음)
══════════════════════════════════════════════════════════════ */
.hero-art {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 56%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-art svg {
  width: 100%; height: 100%;
  display: block;
}
@media (max-width: 900px) {
  .hero-art { width: 100%; }
}

/* ══ NEWS ITEMS LIST ══════════════════════════════════════════
   NEWS 페이지 개별 항목 리스트 (아이콘 + 태그 + 제목 + 설명)
══════════════════════════════════════════════════════════════ */
.news-items-wrap {
  padding: 80px 0 60px;
}
.news-items-header {
  padding: 0 var(--pad-x) 48px;
}
.news-items-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
}
.news-items-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
  font-size: clamp(0.9rem, 1.6vw, 1.3rem);
  letter-spacing: 0.28em;
  margin-top: 8px;
  font-weight: 600;
}
.news-items-list {
  display: flex;
  flex-direction: column;
}
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 30px var(--pad-x);
  border-bottom: 1px solid rgba(255,255,255,0.055);
  transition: background 0.3s var(--ease-out);
}
.news-item:first-child { border-top: 1px solid rgba(255,255,255,0.055); }
.news-item:hover { background: rgba(255,255,255,0.028); }
.news-item-icon {
  width: 50px; height: 50px;
  border: 1px solid rgba(200,165,88,0.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.05rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.news-item:hover .news-item-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.news-item-body { flex: 1; min-width: 0; }
.news-item-meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 9px;
}
.news-item-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.52rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,165,88,0.28);
  padding: 3px 10px;
}
.news-item-date {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(244,242,238,0.32);
}
.news-item-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 7px;
  line-height: 1.3;
  transition: color 0.25s;
}
.news-item:hover .news-item-title { color: var(--gold); }
.news-item-desc {
  font-family: 'Pretendard', sans-serif;
  font-size: 0.85rem; font-weight: 300;
  line-height: 1.75;
  color: rgba(244,242,238,0.42);
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .news-items-header { padding: 0 24px 36px; }
  .news-item { padding: 26px 24px; gap: 18px; }
  .news-item-icon { width: 42px; height: 42px; font-size: 0.9rem; }
}

/* ══ PAGE ENTER ANIMATION ═════════════════════════════════════ */
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-hero { animation: pageEnter 0.55s 0.05s var(--ease-out) both; }

/* ══ CUSTOM CURSOR ════════════════════════════════════════════ */
.cursor-dot,
.cursor-ring {
  display: none; pointer-events: none;
  position: fixed; border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  .cursor-dot {
    display: block; z-index: 9999;
    width: 5px; height: 5px; background: var(--gold);
    transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.3s;
  }
  .cursor-ring {
    display: block; z-index: 9998;
    width: 30px; height: 30px;
    border: 1px solid rgba(200,165,88,0.45);
    transition: width 0.22s, height 0.22s, border-color 0.22s, background 0.22s, opacity 0.3s;
  }
}
body.chl .cursor-dot  { background: var(--white); width: 7px; height: 7px; }
body.chl .cursor-ring { width: 46px; height: 46px; border-color: rgba(200,165,88,0.8); background: rgba(200,165,88,0.04); }
