:root {
  --red: #e8112d;
  --red-dark: #c00d24;
  --gold: #f5b301;
  --amber: #ffb800;
  --blue: #1c8adb;
  --blue-dark: #1667b3;
  --kakao: #fae100;
  --pink: #ff0069;
  --ink: #191919;
  --ink-soft: #555;
  --line: #e5e5e5;
  --gray: #f4f4f6;
  --max: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: "Noto Sans KR", system-ui, sans-serif;
  color: var(--ink); background: #fff; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.display { font-family: "Black Han Sans", "Noto Sans KR", sans-serif; font-weight: 400; letter-spacing: -.5px; }

/* 버튼 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: 6px;
  border: 2px solid transparent; cursor: pointer; transition: all .15s; white-space: nowrap;
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(232,17,45,.32); }
.btn--outline { background: rgba(0,0,0,.25); color: #fff; border-color: rgba(255,255,255,.7); backdrop-filter: blur(2px); }
.btn--outline:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn--lg { padding: 16px 34px; font-size: 17px; }
.btn--block { width: 100%; }

/* 유틸바 */
.utilbar { background: #1a1a1a; color: #ddd; font-size: 13px; }
.utilbar__inner { display: flex; justify-content: space-between; align-items: center; height: 36px; }
.utilbar strong { color: var(--gold); }
.utilbar__right { display: flex; gap: 20px; }
.utilbar__right a { color: #ddd; }
.utilbar__right a:hover { color: #fff; }

/* 헤더 */
.header { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.header__inner { display: flex; align-items: center; height: 76px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo__star { color: var(--gold); font-size: 30px; line-height: 1; text-shadow: 0 2px 6px rgba(245,179,1,.4); }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__text small { font-size: 11px; color: var(--red); font-weight: 700; }
.logo__text strong { font-family: "Black Han Sans", sans-serif; font-weight: 400; font-size: 23px; color: var(--ink); letter-spacing: -.5px; }
.logo--light .logo__text strong { color: #fff; }
.logo--light .logo__text small { color: var(--gold); }
.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a { font-weight: 700; color: #333; font-size: 15.5px; padding: 6px 0; position: relative; }
.nav a:hover { color: var(--red); }
.header__cta { margin-left: 6px; padding: 11px 22px; font-size: 15px; }
.nav-toggle { display: none; background: none; border: none; font-size: 28px; cursor: pointer; margin-left: auto; }

/* 히어로 */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; color: #fff; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  text-align: center; padding: 0 20px 170px; opacity: 0; transform: scale(1.06);
  transition: opacity .9s ease, transform 6s ease;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(245,179,1,.22), transparent 55%),
    linear-gradient(180deg, rgba(15,8,4,.74), rgba(15,8,4,.5) 45%, rgba(15,8,4,.86)),
    var(--bg-photo, none),
    linear-gradient(125deg, #2a1608, #5a2a12 40%, #1a0e06 80%);
  background-size: cover; background-position: center;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__slide h1 { font-family: "Black Han Sans", sans-serif; font-weight: 400; font-size: clamp(30px, 5.4vw, 58px); line-height: 1.22; letter-spacing: -1px; text-shadow: 0 4px 24px rgba(0,0,0,.5); }
.hero__slide h1 em { color: var(--gold); font-style: normal; }
.hero__slide p { margin-top: 20px; font-size: clamp(14px, 2.2vw, 19px); color: rgba(255,255,255,.9); font-weight: 500; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.hero__inner { position: absolute; left: 0; right: 0; bottom: 74px; z-index: 3; width: 100%; }
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  background: rgba(0,0,0,.25); color: #fff; border: none; width: 52px; height: 52px;
  font-size: 34px; cursor: pointer; border-radius: 50%; transition: background .15s; line-height: 1;
}
.hero__arrow:hover { background: rgba(0,0,0,.5); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }
.hero__dots { position: absolute; bottom: 26px; left: 0; right: 0; z-index: 4; display: flex; gap: 10px; justify-content: center; }
.hero__dots button { width: 11px; height: 11px; border-radius: 50%; border: none; background: rgba(255,255,255,.4); cursor: pointer; }
.hero__dots button.is-active { background: var(--gold); width: 28px; border-radius: 6px; }
.hero__since { position: absolute; bottom: 20px; right: 26px; z-index: 3; font-family: "Black Han Sans", sans-serif; font-size: 26px; color: rgba(245,179,1,.55); pointer-events: none; }

/* 전화 + 카카오 배너 */
.promo-row { background: var(--gray); padding: 26px 0; }
.promo-row__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pbanner { position: relative; border-radius: 12px; padding: 22px 26px; overflow: hidden; color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.12); transition: transform .15s; }
.pbanner:hover { transform: translateY(-3px); }
.pbanner__icon, .pbanner__talk { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); }
.pbanner--phone { background: linear-gradient(120deg, var(--blue), var(--blue-dark)); }
.pbanner__label { font-size: 14px; font-weight: 700; opacity: .95; }
.pbanner__phone { font-family: "Black Han Sans", sans-serif; font-size: clamp(30px, 5vw, 46px); letter-spacing: -1px; line-height: 1.1; }
.pbanner__sub { font-size: 15px; margin-top: 2px; }
.pbanner__sub b { background: var(--red); padding: 2px 8px; border-radius: 4px; }
.pbanner__icon { font-size: 54px; opacity: .9; }
.pbanner--kakao { background: var(--kakao); color: #3c1e1e; display: flex; flex-direction: column; justify-content: center; }
.pbanner--kakao .pbanner__label { color: #6b4b1e; }
.pbanner__title { font-size: clamp(18px, 3vw, 26px); font-weight: 700; margin-top: 4px; }
.pbanner__title b { color: #e8112d; }
.pbanner__sub2 { font-size: clamp(15px, 2.4vw, 20px); font-weight: 700; margin-top: 2px; }
.pbanner__sub2 b { color: #e8112d; }
.pbanner__talk { background: #3c1e1e; color: var(--kakao); font-weight: 800; font-size: 15px; padding: 12px 14px; border-radius: 10px; }

/* 섹션 헤더 */
.section { padding: 74px 0; }
.section--gray { background: var(--gray); }
.section--dark { background: #17110c; color: #fff; }
.shead { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.shead__badge { display: inline-block; background: #fff0f1; color: var(--red); font-weight: 800; font-size: 13px; letter-spacing: 1px; padding: 5px 14px; border-radius: 999px; }
.shead__badge--live { background: var(--red); color: #fff; }
.shead--light .shead__badge { background: rgba(245,179,1,.16); color: var(--gold); }
.shead__title { font-family: "Black Han Sans", sans-serif; font-weight: 400; font-size: clamp(26px, 4.2vw, 40px); letter-spacing: -1px; margin-top: 12px; }
.shead__desc { color: var(--ink-soft); margin-top: 10px; }
.shead--light .shead__desc { color: rgba(255,255,255,.7); }

/* 서비스 */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.scard { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 40px 28px 32px; text-align: center; overflow: hidden; transition: all .2s; }
.scard::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--red), var(--gold)); transform: scaleX(0); transition: transform .25s; transform-origin: left; }
.scard:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,0,0,.12); border-color: transparent; }
.scard:hover::before { transform: scaleX(1); }
.scard__no { position: absolute; top: 18px; right: 22px; font-family: "Black Han Sans", sans-serif; font-size: 40px; color: #f1f1f4; }
.scard__icon { font-size: 46px; }
.scard h3 { font-family: "Black Han Sans", sans-serif; font-weight: 400; font-size: 24px; margin: 16px 0 12px; letter-spacing: -.5px; }
.scard p { color: var(--ink-soft); font-size: 15px; min-height: 48px; }
.scard__more { display: inline-block; margin-top: 18px; color: var(--red); font-weight: 800; font-size: 14px; }

/* 필터 */
.filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.filter { border: 1.5px solid rgba(255,255,255,.25); background: transparent; color: rgba(255,255,255,.8); padding: 10px 22px; border-radius: 999px; font-weight: 700; cursor: pointer; font-family: inherit; font-size: 14.5px; transition: all .15s; }
.filter:hover { border-color: var(--gold); color: var(--gold); }
.filter.is-active { background: var(--gold); color: #1a1a1a; border-color: var(--gold); }

/* 아티스트 카드 (포트폴리오 스타일) */
.artist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.artist-card { position: relative; border-radius: 12px; overflow: hidden; background: #000; box-shadow: 0 10px 26px rgba(0,0,0,.35); transition: transform .2s; }
.artist-card:hover { transform: translateY(-6px); }
.artist-card__thumb { aspect-ratio: 3/4; background-size: cover; background-position: center; position: relative; }
.artist-card__thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.05) 55%); }
.artist-card__wm { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: "Black Han Sans", sans-serif; font-size: 13px; color: rgba(255,255,255,.75); }
.artist-card__badge { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px; }
.artist-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px 16px 18px; color: #fff; }
.artist-card__cat { display: inline-block; background: var(--gold); color: #1a1a1a; font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 4px; }
.artist-card__name { font-family: "Black Han Sans", sans-serif; font-weight: 400; font-size: 21px; margin: 8px 0 6px; letter-spacing: -.5px; }
.artist-card__desc { font-size: 13px; color: rgba(255,255,255,.82); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.artist-card__tags { margin-top: 8px; display: flex; gap: 6px; flex-wrap: wrap; }
.artist-card__tags span { font-size: 11px; color: rgba(255,255,255,.7); }

/* 갤러리 (현장사진 카드) */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gcard { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; transition: transform .18s, box-shadow .18s; }
.gcard:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(0,0,0,.12); }
.gcard__img { aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; }
.gcard__wm { position: absolute; bottom: 8px; right: 10px; font-family: "Black Han Sans", sans-serif; font-size: 12px; color: rgba(255,255,255,.85); text-shadow: 0 1px 3px rgba(0,0,0,.6); }
.gcard__cat { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.6); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 4px; }
.gcard__body { padding: 13px 14px; }
.gcard__title { font-weight: 700; font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gcard__date { color: #999; font-size: 12.5px; margin-top: 4px; }

/* 온라인문의 배너 */
.cta-band { position: relative; padding: 80px 0; text-align: center; color: #fff; overflow: hidden; }
.cta-band__overlay { position: absolute; inset: 0; background:
    linear-gradient(rgba(20,10,6,.72), rgba(20,10,6,.82)),
    radial-gradient(circle at 30% 30%, #7a3a18, transparent 60%),
    linear-gradient(120deg, #3a1e0e, #7a1226); }
.cta-band__inner { position: relative; z-index: 2; }
.cta-band h2 { font-family: "Black Han Sans", sans-serif; font-weight: 400; font-size: clamp(28px, 4.5vw, 42px); letter-spacing: -1px; }
.cta-band p { margin: 12px 0 26px; color: rgba(255,255,255,.85); }

/* 감동보장 */
.guarantee { background: linear-gradient(120deg, var(--pink), #c60057); color: #fff; padding: 34px 0; }
.guarantee__inner { display: flex; align-items: center; gap: 26px; justify-content: center; text-align: left; flex-wrap: wrap; }
.guarantee__badge { font-family: "Black Han Sans", sans-serif; font-size: 56px; background: #1a1a1a; color: #fff; width: 108px; height: 108px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.guarantee__text h3 { font-family: "Black Han Sans", sans-serif; font-weight: 400; font-size: clamp(24px, 3.6vw, 34px); }
.guarantee__text p { font-size: clamp(14px, 2vw, 17px); margin-top: 6px; opacity: .95; }
.guarantee__text b { color: var(--kakao); }

/* 후기 */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rcard { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 26px; box-shadow: 0 6px 18px rgba(0,0,0,.05); position: relative; }
.rcard__quote { position: absolute; top: 14px; right: 20px; font-family: "Black Han Sans", sans-serif; font-size: 52px; color: #f3f3f5; line-height: 1; }
.rcard__stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.rcard__content { margin: 12px 0 18px; color: #333; font-size: 15px; position: relative; z-index: 1; }
.rcard__foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 14px; }
.rcard__author { font-weight: 800; }
.rcard__meta { font-size: 12.5px; color: #999; }

/* 예약상담 */
.contact__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 46px; align-items: start; }
.contact__lead { color: var(--ink-soft); margin: 16px 0 24px; }
.contact__list { list-style: none; display: grid; gap: 14px; }
.contact__list li { display: flex; gap: 14px; align-items: center; }
.contact__list span { width: 110px; color: var(--ink-soft); font-size: 14px; }
.contact__list strong { font-size: 16px; }
.contact__form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px; box-shadow: 0 12px 34px rgba(0,0,0,.08); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid #d9d9df; border-radius: 8px; font-family: inherit; font-size: 15px; background: #fff; transition: border-color .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field textarea { resize: vertical; }
.form-msg { margin-top: 12px; text-align: center; font-weight: 700; font-size: 14px; }
.form-msg.ok { color: #16a34a; }
.form-msg.err { color: var(--red); }

/* 푸터 */
.footer { background: #141414; color: rgba(255,255,255,.65); padding: 46px 0; }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer__desc { margin-top: 12px; font-size: 14px; }
.footer__meta { text-align: right; font-size: 13px; line-height: 2; }
.footer__meta strong { color: var(--gold); }
.footer__meta a { color: rgba(255,255,255,.6); text-decoration: underline; }

/* 소셜 레일 */
.social-rail { position: fixed; right: 16px; top: 50%; transform: translateY(-50%); z-index: 70; display: flex; flex-direction: column; gap: 10px; }
.social-rail__item { width: 50px; height: 50px; border-radius: 50%; background: var(--c, #333); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; box-shadow: 0 6px 16px rgba(0,0,0,.25); transition: transform .15s; border: none; cursor: pointer; }
.social-rail__item:hover { transform: scale(1.1); }
.social-rail__top { font-size: 14px; }

.empty { text-align: center; color: var(--ink-soft); padding: 40px; grid-column: 1 / -1; }
.section--dark .empty { color: rgba(255,255,255,.6); }

/* 반응형 */
@media (max-width: 1000px) {
  .artist-grid, .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open { display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 12px 20px; gap: 2px; margin: 0; box-shadow: 0 12px 24px rgba(0,0,0,.1); }
  .nav.is-open a { padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
  .promo-row__inner { grid-template-columns: 1fr; }
  .services, .review-grid { grid-template-columns: 1fr; }
  .artist-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__form { order: -1; }
  .social-rail { right: 10px; }
  .social-rail__item { width: 44px; height: 44px; font-size: 16px; }
  .hero__arrow { display: none; }
  .guarantee__inner { justify-content: center; text-align: center; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  .utilbar__inner span:first-child { display: none; }
  .utilbar__inner { justify-content: center; }
  .footer__meta { text-align: left; }
}
