/* ─────────────────────────────────────────────
   ARTPIE AGENCY — style.css
   Colors: #E8C547 (gold) | #0A0A0A (black) | #fff
───────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #E8C547;
  --gold-dim: rgba(232,197,71,.15);
  --black: #0A0A0A;
  --dark: #111111;
  --white: #ffffff;
  --gray: rgba(255,255,255,.55);
  --font-en: 'Montserrat', sans-serif;
  --font-ko: 'Noto Sans KR', sans-serif;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ko);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition);
}
#header.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,197,71,.12);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: .18em;
  color: var(--gold);
  transition: opacity var(--transition);
}
.logo:hover { opacity: .75; }

.nav {
  display: flex;
  gap: 40px;
}
.nav a {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after { right: 0; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}

/* subtle background grid */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,197,71,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,197,71,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  max-width: 1280px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-left { flex: 1; }

.hero-sub {
  font-family: var(--font-ko);
  font-weight: 300;
  font-size: .85rem;
  letter-spacing: .3em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-left h1 {
  line-height: 1.05;
}

.hero-white {
  font-family: var(--font-ko);
  font-weight: 900;
  font-size: clamp(72px, 10vw, 130px);
  color: var(--white);
  display: block;
}

.hero-gold {
  font-family: var(--font-ko);
  font-weight: 900;
  font-size: clamp(72px, 10vw, 130px);
  color: var(--gold);
  display: block;
  letter-spacing: -.02em;
}

.hero-divider {
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 60px;
  flex-shrink: 0;
}

.hero-right {
  flex: 0 0 auto;
  max-width: 320px;
}

.hero-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
}

.hero-tags {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .6;
  animation: fadeInUp 1s ease .8s both;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
.scroll-text {
  font-family: var(--font-en);
  font-size: .6rem;
  letter-spacing: .3em;
  color: var(--gray);
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50% { transform: scaleY(.6); opacity: .3; }
}

/* ══════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════ */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: .05em;
  color: var(--white);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -10px;
  width: 50px; height: 3px;
  background: var(--gold);
}
.section-header .section-title::after {
  left: 50%; transform: translateX(-50%);
}

.section-sub {
  margin-top: 24px;
  font-size: .9rem;
  color: var(--gray);
  letter-spacing: .05em;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about {
  background: var(--dark);
  padding: 120px 40px;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.stat-item { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}

.stat-plus {
  font-size: .6em;
  vertical-align: super;
}

.stat-label {
  font-family: var(--font-ko);
  font-size: .85rem;
  color: var(--gray);
  letter-spacing: .1em;
  margin-top: 6px;
}

.about-text {
  flex: 1;
  border-left: 1px solid rgba(232,197,71,.25);
  padding-left: 60px;
}

.about-text .section-title { margin-bottom: 32px; }

.about-text p {
  font-family: var(--font-ko);
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}
.about-text p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════
   ARTISTS
══════════════════════════════════════ */
#artists {
  background: var(--black);
  padding: 120px 40px;
}

.artists-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.artist-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color var(--transition), transform var(--transition);
}
.artist-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.card-bg {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}
.artist-card:hover .card-bg { transform: scale(1.04); }

.card-music  { background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 40%, #0a0a1a 100%); }
.card-dance  { background: linear-gradient(135deg, #0a1a2e 0%, #1b3a5e 40%, #0a0a1a 100%); }
.card-perf   { background: linear-gradient(135deg, #1a1a0a 0%, #3a3210 40%, #0a0a0a 100%); }
.card-mc     { background: linear-gradient(135deg, #1a0a0a 0%, #3a1010 40%, #0a0a0a 100%); }

/* noise texture overlay */
.card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(232,197,71,.06) 0%, transparent 70%);
  transition: opacity var(--transition);
}
.artist-card:hover .card-bg::after { opacity: 2; }

.card-content {
  position: absolute;
  inset: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(10,10,10,.85) 0%, transparent 60%);
}

.card-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.card-ko {
  font-family: var(--font-ko);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.card-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease;
  opacity: 0;
}
.artist-card:hover .card-desc {
  max-height: 80px;
  opacity: 1;
}

/* ══════════════════════════════════════
   WORKS
══════════════════════════════════════ */
#works {
  background: var(--dark);
  padding: 120px 40px;
  overflow: hidden;
}

.works-grid {
  max-width: 1280px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.work-card {
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.work-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height .4s ease;
}
.work-card:hover { background: rgba(232,197,71,.04); }
.work-card:hover::before { height: 100%; }

.work-num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 3.5rem;
  color: rgba(232,197,71,.18);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.work-card:hover .work-num { color: rgba(232,197,71,.45); }

.work-title {
  font-family: var(--font-ko);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.work-desc {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.75;
}

/* marquee */
.marquee-wrap {
  max-width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(232,197,71,.15);
  border-bottom: 1px solid rgba(232,197,71,.15);
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-ko);
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
}
.marquee-track .dot {
  color: var(--gold);
  font-size: 1.1rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact {
  background: var(--black);
  padding: 120px 40px;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.contact-col { flex: 1; padding: 0 40px; }
.contact-col:first-child { padding-left: 0; }
.contact-col:last-child  { padding-right: 0; }

.contact-divider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(to bottom, transparent, rgba(232,197,71,.3), transparent);
  flex-shrink: 0;
}

.contact-label {
  font-family: var(--font-en);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-title {
  font-family: var(--font-ko);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-ko);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#footer {
  background: #000;
  border-top: 1px solid rgba(232,197,71,.1);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: .18em;
  color: var(--gold);
}

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .05em;
}

.footer-insta {
  font-family: var(--font-en);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
  transition: color var(--transition);
}
.footer-insta:hover { color: var(--gold); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content {
  animation: fadeInUp .9s ease .2s both;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .artists-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: 1fr; gap: 0; }
  .about-inner { flex-direction: column; gap: 48px; }
  .about-text { border-left: none; padding-left: 0; border-top: 1px solid rgba(232,197,71,.25); padding-top: 40px; }
  .about-stats { flex-direction: row; gap: 32px; }
}

@media (max-width: 768px) {
  .header-inner { padding: 20px 24px; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: rgba(10,10,10,.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: right var(--transition);
    border-left: 1px solid rgba(232,197,71,.15);
  }
  .nav.open { right: 0; }
  .nav a { font-size: 1rem; letter-spacing: .2em; }
  .hamburger { display: flex; }

  #hero { padding: 0 24px; }
  .hero-content { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-divider { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: 0; }
  .hero-right { max-width: 100%; }

  #about { padding: 80px 24px; }
  .about-stats { flex-direction: column; gap: 32px; }
  .about-inner { gap: 40px; }

  #artists { padding: 80px 24px; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .artist-card { height: 280px; }

  #works { padding: 80px 24px; }
  .work-card { padding: 36px 24px; }

  #contact { padding: 80px 24px; }
  .contact-inner { flex-direction: column; gap: 56px; }
  .contact-divider { width: 80px; height: 1px; background: linear-gradient(to right, transparent, rgba(232,197,71,.3), transparent); }
  .contact-col { padding: 0 !important; }

  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .artists-grid { grid-template-columns: 1fr; }
  .hero-white, .hero-gold { font-size: clamp(52px, 14vw, 72px); }
  .contact-btns { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}

/* ─── 아티스트 카드 (7개 그리드) ─── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 1024px) { .artists-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .artists-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .artists-grid { grid-template-columns: 1fr; } }

.artist-card { cursor: pointer; transition: transform 0.25s, box-shadow 0.25s; }
.artist-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }

/* 새 카드 배경 */
.card-acting { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.card-celeb  { background: linear-gradient(135deg, #2d1b69 0%, #11998e 100%); }
.card-etc    { background: linear-gradient(135deg, #232526 0%, #414345 100%); }

/* ─── 아티스트 모달 ─── */
.artist-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.artist-modal-overlay.active { display: flex; }

.artist-modal-box {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  width: 90%;
  max-width: 560px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.artist-modal-close {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  background: none; border: none;
  color: #aaa; font-size: 1.2rem;
  cursor: pointer; transition: color 0.2s;
}
.artist-modal-close:hover { color: #fff; }

.artist-modal-header { margin-bottom: 1.8rem; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1.2rem; }
.modal-genre-en { font-size: 0.75rem; letter-spacing: 0.15em; color: #C9A84C; text-transform: uppercase; font-family: 'Montserrat', sans-serif; }
.modal-genre-ko { font-size: 1.6rem; font-weight: 700; color: #fff; margin: 0.3rem 0 0.5rem; }
.modal-genre-desc { font-size: 0.9rem; color: #aaa; line-height: 1.6; }

/* 빈 상태 */
.artist-empty-state { text-align: center; padding: 2.5rem 1rem; }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
.empty-text { font-size: 1.05rem; color: #ddd; font-weight: 600; margin-bottom: 0.5rem; }
.empty-sub  { font-size: 0.85rem; color: #888; margin-bottom: 1.8rem; }
.empty-cta {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: linear-gradient(135deg, #C9A84C, #e8c97a);
  color: #000;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.empty-cta:hover { opacity: 0.85; }

/* ─── Clients 섹션 ─── */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.client-logo-wrap { display: none; }
.client-logo-wrap:hover { transform: scale(1.06); box-shadow: 0 8px 24px rgba(201,168,76,0.25); }
.client-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }

/* ─── Footer 개선 ─── */
#footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.07); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-top { margin-bottom: 2rem; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 900; color: #C9A84C; letter-spacing: 0.1em; }
.footer-tagline { font-size: 0.85rem; color: #666; margin-top: 0.3rem; }
.footer-info { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.5rem; }
.footer-info-row { display: flex; gap: 1.5rem; font-size: 0.88rem; color: #aaa; }
.footer-info-label { color: #666; min-width: 50px; font-size: 0.8rem; }
.footer-info-row a { color: #C9A84C; text-decoration: none; }
.footer-info-row a:hover { text-decoration: underline; }
.footer-map-row { display: flex; gap: 1.5rem; font-size: 0.88rem; color: #aaa; }
.footer-map-row .footer-info-label { min-width: 50px; }
.footer-map-wrap { flex: 1; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; gap: 0.5rem; }
.footer-copy { font-size: 0.8rem; color: #444; }
.footer-insta { font-size: 0.8rem; color: #C9A84C; text-decoration: none; }
.footer-insta:hover { text-decoration: underline; }
@media (max-width: 600px) { .footer-info-row, .footer-map-row { flex-direction: column; gap: 0.3rem; } }

/* ─── 아티스트 목록 ─── */
.artist-list { display: flex; flex-direction: column; gap: 1rem; }
.artist-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 1.2rem; }
.artist-item-top { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.6rem; flex-wrap: wrap; }
.artist-name { font-size: 1.05rem; font-weight: 700; color: #fff; }
.artist-genre-tag { font-size: 0.75rem; color: #C9A84C; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); padding: 0.15rem 0.6rem; border-radius: 20px; }
.artist-available { font-size: 0.72rem; color: #4caf50; background: rgba(76,175,80,0.12); border: 1px solid rgba(76,175,80,0.3); padding: 0.15rem 0.6rem; border-radius: 20px; }
.artist-bio { font-size: 0.87rem; color: #bbb; line-height: 1.6; margin-bottom: 0.7rem; }
.artist-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag { font-size: 0.72rem; color: #888; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 0.15rem 0.5rem; border-radius: 4px; }

/* ─── 빈 상태 (이모지 제거 버전) ─── */
.artist-empty-state { text-align: center; padding: 2.5rem 1rem; }
.empty-text { font-size: 1.05rem; color: #ddd; font-weight: 600; margin-bottom: 0.5rem; }
.empty-sub  { font-size: 0.85rem; color: #888; margin-bottom: 1.8rem; }

/* ─── 섭외 문의 폼 ─── */
.contact-form-box { max-width: 620px; }
.inquiry-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group label { font-size: 0.82rem; color: #aaa; font-weight: 500; }
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.7rem 0.9rem;
  font-family: 'Noto Sans KR', sans-serif;
  resize: vertical;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #C9A84C;
}
.form-submit-btn { width: 100%; padding: 0.9rem; font-size: 1rem; font-weight: 700; margin-top: 0.5rem; border: none; cursor: pointer; border-radius: 50px; background: linear-gradient(135deg,#C9A84C,#e8c97a); color: #000; transition: opacity 0.2s; }
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-notice { text-align: center; font-size: 0.78rem; color: #666; margin-top: 0.5rem; }

/* AI 추천 결과 */
.ai-result { margin-top: 0.5rem; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }
.ai-result-inner { background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.25); border-radius: 10px; padding: 1.2rem; }
.ai-result-label { font-size: 0.75rem; color: #C9A84C; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }
.ai-artist-card { margin-bottom: 0.8rem; }
.ai-artist-name { font-size: 1.1rem; font-weight: 700; color: #fff; margin-right: 0.5rem; }
.ai-artist-genre { font-size: 0.8rem; color: #C9A84C; }
.ai-artist-reason { font-size: 0.87rem; color: #bbb; line-height: 1.6; margin-top: 0.5rem; }
.ai-result-footer { font-size: 0.82rem; color: #888; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 0.8rem; margin-top: 0.8rem; }
.ai-result-footer strong { color: #C9A84C; }

/* ─── 로고 마퀴 슬라이더 ─── */
.logo-marquee-wrap {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  position: relative;
}
.logo-marquee-wrap::before,
.logo-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.logo-marquee-wrap::before { left: 0; background: linear-gradient(to right, #0d0d0d, transparent); }
.logo-marquee-wrap::after  { right: 0; background: linear-gradient(to left, #0d0d0d, transparent); }

.logo-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: logoScroll 40s linear infinite;
}
.logo-marquee-track:hover { animation-play-state: paused; }

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  flex-shrink: 0;
  width: 110px; height: 110px;
  background: #f5f5f5;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  overflow: hidden;
  border: none;
  box-shadow: none;
}
.logo-item img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* ─── Contact Info 섹션 ─── */
.contact-info-section { padding: 5rem 2rem; }
.contact-info-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) { .contact-info-inner { grid-template-columns: 1fr; } }
.ci-row {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
  color: #ccc;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ci-row a { color: #C9A84C; text-decoration: none; }
.ci-row a:hover { text-decoration: underline; }
.ci-label { color: #666; min-width: 55px; font-size: 0.82rem; padding-top: 2px; }

/* ─── 포트폴리오 갤러리 ─── */
.portfolio-section {
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #1a1a1a;
  aspect-ratio: 1 / 1;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.portfolio-item:hover img { transform: scale(1.05); }
.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.portfolio-item:hover .port-overlay { background: rgba(0,0,0,0.15); }

@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── 아티스트 카드 사진 ─── */
.artist-item { display: flex; gap: 1rem; }
.artist-photo { flex-shrink: 0; width: 70px; height: 70px; border-radius: 8px; overflow: hidden; background: #2a2a2a; }
.artist-photo img { width: 100%; height: 100%; object-fit: cover; }
.artist-item-content { flex: 1; min-width: 0; }
.artist-members { font-size: 0.72rem; color: #888; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 0.15rem 0.6rem; border-radius: 20px; }
.artist-example { opacity: 0.7; }
.artist-example-badge { font-size: 0.68rem; color: #888; background: rgba(255,255,255,0.05); border: 1px dashed rgba(255,255,255,0.2); padding: 0.1rem 0.5rem; border-radius: 10px; }

/* empty-cta 버튼 */
.empty-cta {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: linear-gradient(135deg, #C9A84C, #e8c97a);
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.empty-cta:hover { opacity: 0.85; }

/* ─── 아티스트 카드 이미지 배경 (사진) ─── */
.artist-card .card-bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.artist-card .card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
}

/* 3열 2행 그리드 */
.artists-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .artists-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .artists-grid { grid-template-columns: 1fr !important; }
}

/* ─── 아티스트 검색바 ─── */
.artist-search-wrap {
  margin-top: 1rem;
}
.artist-search {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  color: #fff;
  font-size: 0.88rem;
  padding: 0.6rem 1.2rem;
  font-family: 'Noto Sans KR', sans-serif;
  transition: border-color 0.2s;
}
.artist-search:focus { outline: none; border-color: #C9A84C; }
.artist-search::placeholder { color: #666; }
