/* ============================================================
   ELITE Lounge — 강남 프리미엄 가라오케 라운지
   디자인 토큰 시스템 (프리미엄 팔레트) + 컴포넌트 오버레이
   반응형 / 모바일 최적화 / 다크 럭셔리 테마
   ============================================================ */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

:root {
  /* ---- 배경 / 표면 (deep obsidian) ---- */
  --bg: #08070b;
  --bg-soft: #100f16;
  --bg-card: #17151f;
  --bg-elevated: #1d1b27;
  --line: #2c2937;
  --line-soft: #221f2c;

  /* ---- 텍스트 ---- */
  --text: #f4f2f7;
  --text-dim: #b0acbe;
  --text-mute: #807c8f;

  /* ---- 프리미엄 골드 (champagne) ---- */
  --gold: #d8b576;
  --gold-soft: #f0dcae;
  --gold-deep: #b08d4c;

  /* ---- 와인 / 버건디 액센트 ---- */
  --accent: #b13348;
  --accent-2: #7c1f33;
  --wine: #4a1426;

  /* ---- 그라디언트 / 오버레이 토큰 ---- */
  --grad-gold: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  --grad-wine: linear-gradient(135deg, var(--accent), var(--accent-2));
  --grad-surface: linear-gradient(180deg, var(--bg-elevated), var(--bg-card));
  --ov-sheen: linear-gradient(115deg, transparent 0%, rgba(240, 220, 174, 0.06) 45%, transparent 60%);
  --ov-glass: rgba(23, 21, 31, 0.62);
  --ring-gold: 0 0 0 1px rgba(216, 181, 118, 0.35);

  --radius: 16px;
  --radius-sm: 10px;
  --gnb-h: 72px;
  --maxw: 1180px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 14px 40px rgba(176, 141, 76, 0.18);
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--gnb-h); }

body {
  font-family: "Pretendard", "Pretendard Variable", "Noto Sans KR", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: keep-all;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 720px; }

/* ===================== 버튼 ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 15px 28px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--call {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.35);
}
.btn--call:hover { box-shadow: 0 8px 26px rgba(192, 57, 43, 0.5); transform: translateY(-1px); }

.btn--reserve {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1206;
  box-shadow: 0 6px 20px rgba(212, 175, 106, 0.3);
}
.btn--reserve:hover { box-shadow: 0 8px 26px rgba(212, 175, 106, 0.45); transform: translateY(-1px); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn__icon { font-size: 1.05em; line-height: 1; }

/* ===================== GNB ===================== */
.gnb {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--gnb-h);
  background: rgba(12, 12, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.gnb.is-scrolled { background: rgba(12, 12, 16, 0.96); }

.gnb__inner {
  max-width: var(--maxw);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo__mark {
  font-family: "Black Han Sans", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo__sub { font-size: 0.66rem; color: var(--text-dim); letter-spacing: 1px; }

/* 네비게이션 */
.nav__list { display: flex; gap: 6px; list-style: none; }
.nav__item { position: relative; }
.nav__item > a {
  display: block;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__item > a:hover { color: var(--gold-soft); background: rgba(255, 255, 255, 0.04); }

.nav__drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  list-style: none;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
}
.nav__item:hover .nav__drop,
.nav__item:focus-within .nav__drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__drop li a {
  display: block;
  padding: 9px 12px;
  font-size: 0.88rem;
  color: var(--text-dim);
  border-radius: 8px;
}
.nav__drop li a:hover { color: var(--text); background: rgba(212, 175, 106, 0.12); }

.gnb__actions { display: flex; align-items: center; gap: 10px; }

/* 햄버거 */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav__toggle span {
  display: block; width: 20px; height: 2px; margin: 0 auto;
  background: var(--text); transition: 0.25s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== 섹션 공통 ===================== */
.section { padding: 92px 0; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section__eyebrow {
  font-size: 0.78rem; letter-spacing: 3px; font-weight: 700;
  color: var(--gold); margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700; line-height: 1.25; margin-bottom: 16px;
}
.section__desc { color: var(--text-dim); font-size: 1rem; }

/* ===================== 히어로 ===================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(212, 175, 106, 0.18), transparent 60%),
    linear-gradient(160deg, #181820 0%, #0c0c10 55%, #0a0a0e 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(212,175,106,.5), transparent),
    radial-gradient(2px 2px at 80% 60%, rgba(212,175,106,.4), transparent),
    radial-gradient(1.5px 1.5px at 50% 80%, rgba(255,255,255,.3), transparent),
    radial-gradient(2px 2px at 35% 70%, rgba(212,175,106,.3), transparent);
  opacity: 0.6;
}
.hero__media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(8,7,11,.94) 0%, rgba(8,7,11,.8) 38%, rgba(8,7,11,.45) 70%, rgba(8,7,11,.6) 100%),
    linear-gradient(to top, var(--bg) 3%, transparent 48%);
}
.hero__content {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.hero__eyebrow {
  font-size: 0.82rem; letter-spacing: 4px; color: var(--gold);
  font-weight: 700; margin-bottom: 18px;
}
.hero__title {
  font-family: "Black Han Sans", sans-serif;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1.08; letter-spacing: 1px; margin-bottom: 22px;
}
.hero__title strong {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--text-dim); margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 12px; list-style: none;
}
.hero__badges li {
  font-size: 0.84rem; color: var(--gold-soft);
  padding: 7px 15px; border: 1px solid rgba(212, 175, 106, 0.35);
  border-radius: 999px; background: rgba(212, 175, 106, 0.06);
}

/* ===================== 라인업 ===================== */
.lineup { background: var(--bg-soft); }
.lineup__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.info-card:hover { transform: translateY(-4px); border-color: rgba(212, 175, 106, 0.4); }
.info-card__num {
  font-family: "Black Han Sans", sans-serif;
  font-size: 1.6rem; color: var(--gold); opacity: 0.6;
}
.info-card h3 { font-size: 1.2rem; margin: 10px 0 10px; }
.info-card p { color: var(--text-dim); font-size: 0.94rem; margin-bottom: 16px; }
.link-arrow { color: var(--gold-soft); font-weight: 600; font-size: 0.92rem; }
.link-arrow:hover { color: var(--gold); }
.lineup__cta { text-align: center; margin-top: 40px; }

/* ===================== 객실 ===================== */
.rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card--featured { border-color: rgba(212, 175, 106, 0.5); }
.room-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(212,175,106,.18), rgba(155,35,53,.18)),
    linear-gradient(160deg, #242430, #15151c);
  display: flex; align-items: center; justify-content: center;
}
.room-card__media::after {
  content: attr(data-label);
  font-family: "Black Han Sans", sans-serif;
  letter-spacing: 3px; font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
}
.room-card__body { padding: 24px 22px; position: relative; }
.room-card__tag {
  position: absolute; top: -14px; right: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1206; font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
}
.room-card__body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.room-card__body > p { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 16px; }
.room-card__spec { list-style: none; }
.room-card__spec li {
  font-size: 0.88rem; color: var(--text-dim);
  padding: 7px 0 7px 22px; position: relative;
  border-top: 1px solid var(--line);
}
.room-card__spec li::before {
  content: "✦"; position: absolute; left: 0; color: var(--gold);
}

.rooms__features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 40px;
}
.feature {
  text-align: center; padding: 26px 16px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.feature span { font-size: 1.9rem; display: block; margin-bottom: 10px; }
.feature strong { display: block; margin-bottom: 4px; font-size: 0.98rem; }
.feature p { color: var(--text-dim); font-size: 0.82rem; }

/* ===================== 메뉴 / 패키지 ===================== */
.menu { background: var(--bg-soft); }
.menu__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.menu-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
}
.menu-card--featured {
  border-color: rgba(212, 175, 106, 0.5);
  background: linear-gradient(180deg, rgba(212,175,106,.08), var(--bg-card));
}
.menu-card__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1206; font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
}
.menu-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.menu-card__price {
  font-family: "Black Han Sans", sans-serif;
  font-size: 1.3rem; color: var(--gold); margin-bottom: 18px;
}
.menu-card ul { list-style: none; }
.menu-card ul li {
  font-size: 0.9rem; color: var(--text-dim);
  padding: 8px 0; border-top: 1px solid var(--line);
}
.menu__note { text-align: center; color: var(--text-dim); font-size: 0.84rem; margin-top: 26px; }

/* ===================== 후기 ===================== */
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.review-card p { font-size: 0.98rem; margin-bottom: 16px; }
.review-card p::before { content: "❝ "; color: var(--gold); }
.review-card cite { color: var(--gold-soft); font-size: 0.85rem; font-style: normal; }

/* ===================== 위치 ===================== */
.location { background: var(--bg-soft); }
.location__grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: stretch;
}
.location__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }
.map-placeholder {
  height: 100%; min-height: 320px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; color: var(--text-dim);
  background:
    repeating-linear-gradient(45deg, #15151c, #15151c 18px, #181820 18px, #181820 36px);
}
.map-placeholder span { font-size: 2.4rem; }
.location__info {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 30px;
  display: flex; flex-direction: column; justify-content: center;
}
.location__info dl { margin-bottom: 24px; }
.location__info dt {
  font-size: 0.78rem; letter-spacing: 1px; color: var(--gold);
  font-weight: 700; margin-top: 16px;
}
.location__info dt:first-child { margin-top: 0; }
.location__info dd { font-size: 1rem; }
.phone-big {
  font-family: "Black Han Sans", sans-serif;
  font-size: 1.5rem; color: var(--gold-soft);
}

/* ===================== 예약 폼 ===================== */
.reserve-form {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px 32px;
}
.form-row { margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label { display: block; font-size: 0.88rem; margin-bottom: 8px; color: var(--text-dim); }
.req { color: var(--accent); }
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.reserve-form textarea { resize: vertical; }
.checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-dim); margin: 6px 0 22px;
  cursor: pointer;
}
.checkbox input { width: auto; margin-top: 3px; accent-color: var(--gold); }
.checkbox a { color: var(--gold-soft); text-decoration: underline; }
.form-msg { margin-top: 14px; text-align: center; font-size: 0.9rem; min-height: 1.2em; }
.form-msg.is-ok { color: var(--gold-soft); }
.form-msg.is-err { color: #ff8a7a; }

/* ===================== 푸터 ===================== */
.footer {
  background: #08080c;
  border-top: 1px solid var(--line);
  padding: 56px 0 110px;
}
.footer__top {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: space-between; align-items: center;
  padding-bottom: 28px; border-bottom: 1px solid var(--line);
}
.footer__brand p { color: var(--text-dim); font-size: 0.88rem; margin-top: 8px; }
.footer__contact { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__legal { padding-top: 26px; }
.footer__legal p { color: var(--text-dim); font-size: 0.82rem; margin-bottom: 8px; }
.footer__notice {
  color: var(--gold-soft) !important;
  padding: 12px 16px; margin: 14px 0 !important;
  background: rgba(212, 175, 106, 0.06);
  border: 1px solid rgba(212, 175, 106, 0.25);
  border-radius: 10px; font-size: 0.84rem !important;
}
.footer__copy { opacity: 0.7; }

/* ===================== 모바일 하단 고정바 ===================== */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none;
  gap: 10px; padding: 10px 14px;
  background: rgba(8, 8, 12, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mobile-bar__btn {
  flex: 1; text-align: center; padding: 13px;
  border-radius: 12px; font-weight: 700; font-size: 0.95rem;
}
.mobile-bar__btn--call { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.mobile-bar__btn--reserve { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: #1a1206; }

/* ===================== 스크롤 등장 애니메이션 ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===================== 반응형 ===================== */
@media (max-width: 980px) {
  .location__grid { grid-template-columns: 1fr; }
  .rooms__features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .gnb__actions .btn--reserve { display: none; }
  .btn--call .btn__text { display: none; }
  .btn--call { padding: 11px 14px; }

  .nav {
    position: fixed;
    top: var(--gnb-h); left: 0; right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav.is-open { max-height: 80vh; overflow-y: auto; }
  .nav__list { flex-direction: column; padding: 12px; gap: 2px; }
  .nav__item > a { padding: 14px; border-radius: 10px; }
  .nav__drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent;
    padding: 0 0 6px 14px; min-width: 0;
  }
  .nav__drop li a { padding: 8px 10px; }

  .lineup__cards,
  .rooms__grid,
  .menu__grid,
  .reviews__grid { grid-template-columns: 1fr; }

  .mobile-bar { display: flex; }
  .section { padding: 64px 0; }
  .hero { min-height: 78vh; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .rooms__features { grid-template-columns: 1fr 1fr; }
  .reserve-form { padding: 26px 20px; }
  .footer__top { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   컴포넌트 오버레이 (프리미엄 효과)
   ============================================================ */

/* 카드류 공통 시인성 오버레이 — 골드 시언 + 상단 하이라이트 */
.info-card, .room-card, .menu-card, .review-card,
.feature, .location__info, .reserve-form,
.related-card, .author-box, .faq-item, .stat-card {
  position: relative;
  isolation: isolate;
  background-image: var(--grad-surface);
}
.info-card::before, .room-card::before, .menu-card::before,
.review-card::before, .related-card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--ov-sheen);
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none; z-index: -1;
}
.info-card:hover::before, .room-card:hover::before, .menu-card:hover::before,
.review-card:hover::before, .related-card:hover::before { opacity: 1; }

/* 상단 그라디언트 헤어라인 */
.gnb { position: sticky; }
.gnb::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,181,118,.45), transparent);
}

/* ============================================================
   하위 페이지 — 페이지 히어로 / 브레드크럼
   ============================================================ */
.page-hero {
  position: relative;
  padding: calc(var(--gnb-h) + 56px) 0 60px;
  background:
    radial-gradient(900px 420px at 75% -20%, rgba(216,181,118,.16), transparent 60%),
    linear-gradient(160deg, #16141d 0%, var(--bg) 70%);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 18% 40%, rgba(216,181,118,.4), transparent),
    radial-gradient(2px 2px at 82% 60%, rgba(216,181,118,.3), transparent);
  opacity: .5;
}
.page-hero__inner { position: relative; }
.page-hero__eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 3px; font-size: .78rem; margin-bottom: 12px; }
.page-hero__title { font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.2; margin-bottom: 16px; }
.page-hero__title strong { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero__lead { color: var(--text-dim); max-width: 720px; font-size: 1.05rem; }

.breadcrumb { margin-bottom: 22px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; font-size: .82rem; color: var(--text-mute); }
.breadcrumb li::after { content: "›"; margin-left: 8px; color: var(--line); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb li[aria-current] { color: var(--gold-soft); }

/* ============================================================
   아티클 본문 (롱폼 콘텐츠)
   ============================================================ */
.article-wrap { padding: 56px 0 92px; }
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.article { max-width: 760px; font-size: 1.02rem; }
.article h2 {
  font-size: 1.5rem; margin: 44px 0 16px; padding-top: 8px;
  scroll-margin-top: calc(var(--gnb-h) + 16px);
}
.article h2::before { content: "◆ "; color: var(--gold); font-size: .8em; vertical-align: middle; }
.article h3 { font-size: 1.18rem; margin: 28px 0 12px; color: var(--gold-soft); }
.article p { color: #d9d6e2; margin-bottom: 16px; }
.article ul, .article ol { margin: 0 0 18px 4px; padding-left: 22px; color: #d9d6e2; }
.article li { margin-bottom: 8px; }
.article a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(240,220,174,.4); }
.article a:hover { text-decoration-color: var(--gold); }
.article strong { color: var(--text); }
.article blockquote {
  margin: 22px 0; padding: 18px 22px; border-left: 3px solid var(--gold);
  background: var(--bg-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--text-dim);
}
.article hr { border: none; border-top: 1px solid var(--line-soft); margin: 36px 0; }

.lead-em {
  font-size: 1.1rem; color: var(--text) !important;
  padding: 20px 24px; background: var(--bg-soft);
  border: 1px solid var(--line-soft); border-radius: var(--radius); margin-bottom: 28px !important;
}

/* 사이드바 */
.article-side { position: sticky; top: calc(var(--gnb-h) + 16px); display: flex; flex-direction: column; gap: 20px; }
.toc {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.toc h4 { font-size: .82rem; letter-spacing: 1px; color: var(--gold); margin-bottom: 12px; }
.toc ul { list-style: none; }
.toc li { margin: 6px 0; }
.toc a { font-size: .9rem; color: var(--text-dim); }
.toc a:hover { color: var(--gold-soft); }
.side-cta {
  background: var(--grad-surface); border: 1px solid rgba(216,181,118,.3);
  border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow-gold);
}
.side-cta h4 { margin-bottom: 8px; }
.side-cta p { font-size: .86rem; color: var(--text-dim); margin-bottom: 16px; }

/* 저자 박스 (E-E-A-T) */
.author-box {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin: 40px 0;
}
.author-box__avatar {
  width: 56px; height: 56px; flex: 0 0 56px; border-radius: 50%;
  background: var(--grad-gold); color: #1a1206; display: flex; align-items: center; justify-content: center;
  font-family: "Black Han Sans", sans-serif; font-size: 1.2rem;
}
.author-box__meta strong { display: block; margin-bottom: 4px; }
.author-box__meta p { font-size: .88rem; color: var(--text-dim); margin: 0; }
.author-box__meta time { color: var(--text-mute); font-size: .82rem; }

/* 통계/팩트 카드 (1차 경험·정보 이득) */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.stat-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.stat-card b { display: block; font-family: "Black Han Sans", sans-serif; font-size: 1.7rem; color: var(--gold-soft); }
.stat-card span { font-size: .84rem; color: var(--text-dim); }

/* FAQ (구조화 데이터 대응) */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; }
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--text); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q. "; color: var(--gold); }
.faq-item[open] summary { color: var(--gold-soft); }
.faq-item p { margin: 12px 0 0; color: var(--text-dim); font-size: .94rem; }

/* 내부링크 — 관련 페이지 카드 */
.related { padding: 0 0 92px; }
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card {
  display: block; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  transition: transform .2s ease, border-color .2s ease;
}
.related-card:hover { transform: translateY(-4px); border-color: rgba(216,181,118,.4); }
.related-card span { font-size: .74rem; letter-spacing: 1px; color: var(--gold); font-weight: 700; }
.related-card h3 { font-size: 1.1rem; margin: 8px 0 8px; }
.related-card p { font-size: .88rem; color: var(--text-dim); margin: 0; }

/* 본문 내부 인라인 CTA 바 */
.inline-cta {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  background: var(--grad-surface); border: 1px solid rgba(216,181,118,.3);
  border-radius: var(--radius); padding: 24px 28px; margin: 36px 0; box-shadow: var(--shadow-gold);
}
.inline-cta p { margin: 0; font-weight: 700; }
.inline-cta small { display: block; font-weight: 400; color: var(--text-dim); font-size: .82rem; margin-top: 4px; }

@media (max-width: 920px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-side { position: static; flex-direction: column; }
  .toc { display: none; }
}
@media (max-width: 820px) {
  .related__grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }
}

/* ============================================================
   히어로 우측 비주얼 — 실시간 예약 글래스 카드 + 글로우 + 이퀄라이저
   ============================================================ */
.hero__content { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }

/* 배경 글로우 오브 (무드 조명) */
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0; pointer-events: none; }
.hero-orb--1 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(216,181,118,.42), transparent 70%); top: 6%; right: 6%; animation: heroFloat 8s ease-in-out infinite; }
.hero-orb--2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(177,51,72,.4), transparent 70%); bottom: 8%; right: 22%; animation: heroFloat 11s ease-in-out infinite reverse; }

/* 우측 CSS 아트 — 회전 헤일로 + ELITE 모노그램 + 이퀄라이저 */
.hero__art { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 380px; }
.hero-halo { position: absolute; top: 50%; left: 50%; width: 320px; height: 320px; transform: translate(-50%, -54%); border-radius: 50%; background: radial-gradient(circle, rgba(216,181,118,.14), transparent 62%); box-shadow: inset 0 0 80px rgba(216,181,118,.16), 0 0 70px rgba(177,51,72,.14); }
.hero-halo::before {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 6%, rgba(240,220,174,.6) 18%, transparent 36% 60%, rgba(177,51,72,.45) 72%, transparent 88%);
  -webkit-mask: radial-gradient(circle, transparent 55%, #000 57%);
  mask: radial-gradient(circle, transparent 55%, #000 57%);
  animation: heroSpin 16s linear infinite;
}
.hero-mono {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center;
  font-family: "Black Han Sans", sans-serif; font-size: clamp(2.8rem, 6vw, 4.6rem); letter-spacing: 6px;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 30px rgba(216,181,118,.35));
}
.hero-mono__sub { font-family: "Pretendard", sans-serif; -webkit-text-fill-color: var(--text-dim); color: var(--text-dim); font-size: .8rem; letter-spacing: 5px; margin-top: 6px; }
@keyframes heroSpin { to { transform: rotate(360deg); } }

.res-card {
  position: relative; z-index: 1; width: 100%; max-width: 370px;
  background: linear-gradient(180deg, rgba(29,27,39,.78), rgba(12,11,16,.7));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(240,220,174,.25);
  border-radius: 22px; padding: 26px 26px 22px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.06);
}
.res-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.live { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; color: #9be7a6; font-weight: 600; }
.live__dot { width: 8px; height: 8px; border-radius: 50%; background: #36d36a; animation: livePulse 1.8s infinite; }
.res-card__badge { font-size: .7rem; font-weight: 700; color: var(--gold-soft); border: 1px solid rgba(240,220,174,.3); padding: 4px 10px; border-radius: 999px; letter-spacing: 1px; }
.res-card__title { font-size: 1.3rem; line-height: 1.35; margin-bottom: 18px; }
.res-card__title b { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.res-card__stats { list-style: none; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 18px; }
.res-card__stats li { text-align: center; background: rgba(255,255,255,.04); border: 1px solid var(--line-soft); border-radius: 12px; padding: 12px 4px; }
.res-card__stats b { display: block; font-size: .9rem; color: var(--gold-soft); margin-bottom: 3px; }
.res-card__stats span { font-size: .66rem; color: var(--text-dim); }
.res-card__phone { text-align: center; margin-bottom: 14px; }
.res-card__phone small { display: block; font-size: .74rem; color: var(--text-dim); margin-bottom: 2px; }
.res-card__phone a { font-family: "Black Han Sans", sans-serif; font-size: 1.55rem; color: var(--text); letter-spacing: 1px; }
.res-card__phone a:hover { color: var(--gold-soft); }

.equalizer { display: flex; align-items: flex-end; justify-content: center; gap: 3px; height: 26px; margin-top: 18px; opacity: .9; }
.equalizer span { width: 4px; height: 30%; background: var(--grad-gold); border-radius: 2px; animation: eq 1s ease-in-out infinite; }
.equalizer span:nth-child(1){animation-delay:-.9s} .equalizer span:nth-child(2){animation-delay:-.2s}
.equalizer span:nth-child(3){animation-delay:-.6s} .equalizer span:nth-child(4){animation-delay:-.1s}
.equalizer span:nth-child(5){animation-delay:-.8s} .equalizer span:nth-child(6){animation-delay:-.4s}
.equalizer span:nth-child(7){animation-delay:-.7s} .equalizer span:nth-child(8){animation-delay:-.3s}
.equalizer span:nth-child(9){animation-delay:-.5s} .equalizer span:nth-child(10){animation-delay:-.15s}
.equalizer span:nth-child(11){animation-delay:-.65s} .equalizer span:nth-child(12){animation-delay:-.35s}

@keyframes eq { 0%,100%{height:22%} 50%{height:100%} }
@keyframes livePulse { 0%{box-shadow:0 0 0 0 rgba(54,211,106,.55)} 70%{box-shadow:0 0 0 9px rgba(54,211,106,0)} 100%{box-shadow:0 0 0 0 rgba(54,211,106,0)} }
@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }

@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; gap: 8px; }
  .hero__art { order: 2; min-height: 240px; }
  .hero-halo { width: 230px; height: 230px; }
  .hero-orb--1 { width: 240px; height: 240px; top: 2%; right: -6%; }
  .hero-orb--2 { width: 190px; height: 190px; right: 8%; bottom: 14%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-orb, .equalizer span, .live__dot, .hero-halo::before { animation: none; }
}
