/* ──────────────────────────────────────────
   노원 블랙 마사지 — 다크 럭스 스파
   다크 네이비 + 골드 / 세리프 헤딩 / 좌측 고정 목차
   ────────────────────────────────────────── */
:root {
  --bg: #070b14;          /* 가장 깊은 네이비 블랙 */
  --bg-2: #0a1120;        /* 헤더·푸터 */
  --panel: #0d1626;       /* 본문 섹션 패널 */
  --panel-2: #101b30;     /* 카드 */
  --line: #1b2742;        /* 네이비 라인 */
  --line-gold: rgba(200, 162, 94, 0.28);
  --gold: #c8a25e;
  --gold-soft: #e9d7ab;
  --gold-deep: #a9853f;
  --text: #eaedf4;
  --text-dim: #97a1b8;
  --serif: "Noto Serif KR", "Nanum Myeongjo", serif;
  --sans: "Noto Sans KR", "Pretendard", "Apple SD Gothic Neo", sans-serif;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 130px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.85;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-soft); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--gold); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── 헤더 ─────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  /* 미드나잇 블루 그라데이션 + 좌측 골드·우측 로열블루 오로라 */
  background:
    radial-gradient(ellipse 46% 180% at 8% -50%, rgba(214, 178, 110, 0.22), transparent 58%),
    radial-gradient(ellipse 42% 150% at 55% -40%, rgba(90, 124, 210, 0.16), transparent 62%),
    radial-gradient(ellipse 46% 170% at 96% -45%, rgba(56, 90, 180, 0.34), transparent 60%),
    linear-gradient(115deg, #0c1530 0%, #15244c 34%, #101d3e 58%, #0a1228 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(4, 8, 18, 0.55);
}
/* 최상단 골드 액센트 라인 — 은은하게 흐르는 빛 */
.header-accent {
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%, #6e5526 18%, var(--gold) 38%,
    #f4e8c6 50%, var(--gold) 62%, #6e5526 82%, transparent 100%);
  background-size: 200% 100%;
  animation: accent-flow 7s linear infinite;
}
@keyframes accent-flow {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.header-top { border-bottom: 1px solid rgba(200, 162, 94, 0.18); }
/* 메뉴 행은 살짝 어둡게 가라앉혀 배경 그라데이션과 층을 분리 */
.main-nav { background: rgba(6, 10, 20, 0.45); backdrop-filter: blur(8px); }
.header-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px; min-height: 68px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.24rem; font-weight: 900;
  letter-spacing: 0.12em; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 11px;
}
/* 브랜드 텍스트 — 골드 메탈 그라데이션 */
.brand-text {
  background: linear-gradient(120deg, #f4e8c6 0%, var(--gold-soft) 30%, var(--gold) 55%, #f0deae 80%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 0.92rem; font-weight: 900; color: #120e06;
  background: linear-gradient(135deg, #f4e8c6, var(--gold) 55%, var(--gold-deep));
  box-shadow:
    0 0 0 1px rgba(200, 162, 94, 0.5),
    0 0 0 5px rgba(200, 162, 94, 0.08),
    0 4px 14px rgba(200, 162, 94, 0.3);
}
.brand:hover .brand-mark { box-shadow:
  0 0 0 1px rgba(200, 162, 94, 0.7),
  0 0 0 5px rgba(200, 162, 94, 0.14),
  0 4px 20px rgba(200, 162, 94, 0.45); }
.header-tagline {
  font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.18em;
  border-left: 1px solid rgba(200, 162, 94, 0.22); padding-left: 20px;
  white-space: nowrap;
}
.tag-gem { color: var(--gold); font-size: 0.55rem; vertical-align: 1px; }
/* 전화 버튼 — 차분한 골드 (포인트는 배경에 양보) */
.header-call {
  margin-left: auto; white-space: nowrap; font-weight: 800;
  color: #120e06;
  background: linear-gradient(135deg, #f0deae, var(--gold) 60%, var(--gold-deep));
  border-radius: 26px; padding: 10px 24px; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 224, 0.55),
    0 6px 20px rgba(200, 162, 94, 0.26);
  transition: 0.15s;
}
.header-call:hover { filter: brightness(1.06); color: #120e06; transform: translateY(-1px); }
.call-label {
  font-size: 0.7rem; font-weight: 700; opacity: 0.72;
  border-right: 1px solid rgba(18, 14, 6, 0.3); padding-right: 9px;
  letter-spacing: 0.08em;
}
@media (prefers-reduced-motion: reduce) {
  .header-accent { animation: none; }
}

/* 햄버거 */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 40px; padding: 0 10px;
  background: none; border: 1px solid var(--line-gold);
  border-radius: 9px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--gold); border-radius: 2px; transition: 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 내비게이션 ───────────────────────── */
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 12px; }
.nav-list {
  list-style: none; display: flex; flex-wrap: nowrap;
  justify-content: center;
}
.nav-item { position: relative; }
.nav-item > a {
  position: relative;
  display: block; padding: 14px 15px; font-size: 0.93rem;
  letter-spacing: 0.04em; color: var(--text);
  white-space: nowrap;
}
/* 가운데서 펼쳐지는 골드 언더라인 */
.nav-item > a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 8px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--gold-deep));
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.22s ease;
}
.nav-item > a:hover::after, .nav-item.is-active > a::after { transform: scaleX(1); }
.nav-item.is-active > a { color: var(--gold); }
.nav-item > a:hover { color: var(--gold-soft); }
.sub-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  min-width: 200px; max-height: 70vh; overflow-y: auto;
  background: var(--bg-2); border: 1px solid var(--line-gold);
  border-radius: 12px; list-style: none; padding: 10px 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
}
.nav-item.has-sub:hover .sub-menu,
.nav-item.has-sub:focus-within .sub-menu { display: block; }
.sub-menu a {
  display: block; padding: 8px 20px; font-size: 0.88rem; color: var(--text-dim);
  white-space: nowrap;
}
.sub-menu a:hover { color: var(--gold-soft); background: var(--panel-2); }

/* ── 히어로 (메인) ────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 100% at 50% -20%, rgba(200, 162, 94, 0.18), transparent 62%),
    radial-gradient(ellipse 50% 60% at 85% 110%, rgba(28, 45, 86, 0.55), transparent 70%),
    linear-gradient(180deg, #0b1322 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 88px 24px 64px;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 1px; height: 58px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.7;
}
.hero-inner { max-width: 820px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-block; font-size: 0.8rem; letter-spacing: 0.34em;
  color: var(--gold); padding: 0 0 18px; margin-bottom: 0;
  text-transform: uppercase;
}
.hero h1::after { display: none; }
.hero h1 {
  font-family: var(--serif);
  font-size: 3rem; line-height: 1.32; color: var(--gold-soft);
  margin: 0 0 22px; border: none; padding: 0; font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 30px rgba(200, 162, 94, 0.18);
}
.hero-lead {
  font-size: 1.06rem; color: var(--text-dim); line-height: 2;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-btn {
  display: inline-block; padding: 15px 38px; border-radius: 32px;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.04em;
  border: 1px solid var(--line-gold); color: var(--gold-soft);
  transition: 0.15s;
}
.hero-btn:hover { border-color: var(--gold); background: rgba(200, 162, 94, 0.08); color: var(--gold-soft); }
.hero-btn.primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: transparent; color: #120e06; font-weight: 800;
  box-shadow: 0 10px 34px rgba(200, 162, 94, 0.3);
}
.hero-btn.primary:hover { filter: brightness(1.07); color: #120e06; }
.hero-stats {
  list-style: none; display: flex; justify-content: center;
  margin: 0; padding: 26px 0 0;
  border-top: 1px solid var(--line);
}
.hero-stats li {
  flex: 1; max-width: 185px; padding: 0 14px; margin: 0;
  display: flex; flex-direction: column; gap: 1px;
}
.hero-stats li + li { border-left: 1px solid var(--line); }
.hero-stats strong {
  font-family: var(--serif);
  color: var(--gold); font-size: 1.45rem; font-weight: 700;
}
.hero-stats span { color: var(--text-dim); font-size: 0.8rem; letter-spacing: 0.1em; }

/* ── 본문 레이아웃 (좌측 고정 목차) ────── */
.site-main { padding: 52px 0 80px; }
.page-layout.has-toc {
  display: grid; grid-template-columns: 216px minmax(0, 1fr);
  gap: 48px; align-items: start;
}

/* 목차 */
.page-toc {
  position: sticky; top: 132px;
  max-height: calc(100vh - 160px); overflow-y: auto;
  padding-right: 6px;
}
.toc-title {
  font-family: var(--serif);
  font-size: 0.82rem; letter-spacing: 0.4em; color: var(--gold);
  margin-bottom: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line-gold);
}
.page-toc ul { list-style: none; margin: 0; }
.page-toc li { margin: 0; }
.page-toc a {
  display: block; padding: 7px 0 7px 16px;
  font-size: 0.87rem; line-height: 1.5; color: var(--text-dim);
  border-left: 2px solid var(--line);
  transition: 0.15s;
}
.page-toc a:hover { color: var(--gold-soft); }
.page-toc a.active {
  color: var(--gold-soft); border-left-color: var(--gold);
  background: linear-gradient(90deg, rgba(200, 162, 94, 0.08), transparent);
}

/* 본문 */
.page-content { min-width: 0; counter-reset: sec; }

h1 {
  font-family: var(--serif);
  font-size: 2.05rem; color: var(--gold-soft); line-height: 1.4;
  margin: 8px 0 14px; padding-bottom: 22px; font-weight: 900;
  border-bottom: 1px solid var(--line);
  position: relative;
}
h1::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 64px; height: 2px; background: var(--gold);
}

.lead {
  font-size: 1.04rem; color: var(--text-dim); line-height: 2;
  margin: 0 0 34px;
}

/* 섹션 = 네이비 패널 + 골드 넘버링 */
.page-content section {
  background: linear-gradient(180deg, var(--panel) 0%, #0b1322 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 38px 28px;
  margin: 0 0 22px;
  counter-increment: sec;
  position: relative;
  transition: border-color 0.2s;
}
.page-content section:hover { border-color: #243456; }

h2 {
  font-family: var(--serif);
  font-size: 1.42rem; color: var(--gold-soft); font-weight: 700;
  margin: 0 0 16px; line-height: 1.45;
  border: none; padding: 0;
}
h2::before {
  content: counter(sec, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-size: 0.78rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.5em;
  margin-bottom: 10px; opacity: 0.9;
}
h2::after {
  content: ""; display: block;
  width: 40px; height: 1px; background: var(--line-gold);
  margin-top: 14px;
}

h3 { font-size: 1.02rem; color: var(--gold-soft); margin: 24px 0 8px; font-weight: 700; }
p { margin: 0 0 14px; color: var(--text); }
section > p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 14px 22px; }
li { margin-bottom: 7px; }
strong { color: var(--gold-soft); font-weight: 700; }

/* 브레드크럼 */
.breadcrumb { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 4px; letter-spacing: 0.04em; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--line-gold); }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: var(--gold); }

/* 카드 그리드 */
.card-grid {
  display: grid; gap: 12px; margin: 20px 0 8px;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  list-style: none; margin-left: 0;
}
.card-grid li { margin: 0; }
.card-grid a {
  display: block; padding: 17px 14px; text-align: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 12px; color: var(--text); font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: 0.18s;
}
.card-grid a:hover {
  border-color: var(--gold); color: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  background: linear-gradient(180deg, #13203a, var(--panel-2));
}

/* 안내 박스 */
.info-box {
  background: var(--panel-2); border: 1px solid var(--line-gold);
  border-radius: 12px; padding: 18px 22px; margin: 16px 0;
}

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 4px; }
.faq-item h3 { margin: 0 0 7px; }
.faq-item h3::before { content: "Q. "; color: var(--gold); font-family: var(--serif); }
.faq-item p { margin: 0; color: var(--text-dim); }
.faq-item p::before { content: "A. "; color: var(--gold); font-family: var(--serif); }

/* CTA — 골드 패널 */
.page-content section.cta {
  margin-top: 40px; padding: 44px 32px; text-align: center;
  background:
    radial-gradient(ellipse 60% 120% at 50% -30%, rgba(200, 162, 94, 0.16), transparent 60%),
    linear-gradient(180deg, #101a2e, #0c1424);
  border: 1px solid var(--line-gold);
}
.cta h2 { font-size: 1.55rem; }
.cta h2::after { margin-left: auto; margin-right: auto; }
.cta p { color: var(--text-dim); max-width: 540px; margin-left: auto; margin-right: auto; }
.cta .cta-phone {
  display: inline-block; margin-top: 18px; padding: 15px 44px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #120e06; font-weight: 800; letter-spacing: 0.04em;
  font-size: 1.15rem; border-radius: 34px;
  box-shadow: 0 12px 36px rgba(200, 162, 94, 0.28);
  transition: 0.15s;
}
.cta .cta-phone:hover { filter: brightness(1.07); color: #120e06; }

/* 요금 카드 */
.pricing-lead { color: var(--text-dim); }
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin: 24px 0 18px; align-items: stretch;
}
.price-card {
  position: relative; text-align: center;
  background: linear-gradient(180deg, #0b1322, #0a101e);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 34px 22px 26px;
  display: flex; flex-direction: column; gap: 4px;
  transition: 0.18s;
}
.price-card:hover { border-color: #2a3b63; transform: translateY(-3px); }
.price-card.featured {
  border-color: var(--gold);
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(200, 162, 94, 0.14), transparent 65%),
    linear-gradient(180deg, #101a30, #0b1322);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45);
}
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #f0deae, var(--gold));
  color: #120e06; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.1em; padding: 3px 16px; border-radius: 14px;
  box-shadow: 0 4px 14px rgba(200, 162, 94, 0.35);
  margin: 0;
}
.price-name { font-weight: 700; color: var(--text); margin: 0 0 6px; font-size: 0.98rem; }
.price-value {
  font-size: 2.1rem; font-weight: 800; color: #fff;
  line-height: 1.2; margin: 0; letter-spacing: 0.01em;
}
.price-value span { font-size: 0.95rem; font-weight: 600; color: var(--text-dim); margin-left: 3px; }
.price-time { font-size: 0.82rem; color: var(--gold); letter-spacing: 0.1em; margin: 2px 0 6px; }
.price-desc { font-size: 0.88rem; color: var(--text-dim); margin: 0 0 18px; flex: 1; }
.price-btn {
  display: block; padding: 12px 0; border-radius: 10px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em;
  border: 1px solid var(--line-gold); color: var(--gold-soft);
  transition: 0.15s;
}
.price-btn:hover { border-color: var(--gold); background: rgba(200, 162, 94, 0.08); color: var(--gold-soft); }
.price-btn.primary {
  background: linear-gradient(135deg, #f0deae, var(--gold) 70%, var(--gold-deep));
  border-color: transparent; color: #120e06;
  box-shadow: 0 8px 22px rgba(200, 162, 94, 0.28);
}
.price-btn.primary:hover { filter: brightness(1.06); color: #120e06; }
.price-note { font-size: 0.85rem; color: var(--text-dim); margin: 0; }
.price-note a { font-weight: 700; }

@media (max-width: 720px) {
  .price-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card.featured { order: -1; }
}

/* 매거진 */
.post-meta {
  font-size: 0.8rem; color: var(--text-dim); letter-spacing: 0.06em;
  margin: -6px 0 26px;
}
.post-meta time { color: var(--gold); }
.post-list { list-style: none; margin: 6px 0 0; }
.post-list li { margin: 0 0 12px; }
.post-list a {
  display: block; padding: 20px 24px;
  background: var(--panel-2); border: 1px solid var(--line);
  border-radius: 14px; transition: 0.18s;
}
.post-list a:hover {
  border-color: var(--gold); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}
.post-list strong {
  display: block; font-family: var(--serif);
  font-size: 1.05rem; color: var(--gold-soft); margin-bottom: 6px;
}
.post-list span {
  display: block; font-size: 0.88rem; color: var(--text-dim);
  line-height: 1.7; margin-bottom: 8px;
}
.post-list time { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.08em; }

/* 표 */
table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.92rem; }
th, td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; }
th { background: var(--panel-2); color: var(--gold-soft); font-family: var(--serif); }

/* ── 푸터 ─────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line); background: var(--bg-2);
  font-size: 0.86rem; color: var(--text-dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 48px; padding-bottom: 40px;
}
.footer-col ul { list-style: none; margin: 0; }
.footer-col li { margin: 0 0 9px; }
.footer-col a { color: var(--text-dim); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-brand {
  font-family: var(--serif);
  color: var(--gold-soft); font-weight: 700; font-size: 1.12rem;
  letter-spacing: 0.12em; margin-bottom: 12px;
}
.footer-desc { font-size: 0.84rem; line-height: 1.9; margin-bottom: 16px; }
.footer-contact { font-style: normal; display: flex; flex-direction: column; gap: 5px; }
.footer-contact-row { display: block; }
.footer-contact a { color: var(--gold-soft); font-weight: 700; }
.footer-label {
  display: inline-block; min-width: 78px;
  color: var(--gold); font-size: 0.78rem; letter-spacing: 0.08em;
}
.footer-title {
  font-family: var(--serif);
  color: var(--gold); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.3em; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  padding-top: 18px; padding-bottom: 20px;
}
.footer-copy { font-size: 0.78rem; opacity: 0.75; margin: 0; }
.footer-note { font-size: 0.76rem; opacity: 0.55; margin: 0; }
.footer-made {
  font-size: 0.76rem; color: var(--text-dim);
  border: 1px solid var(--line); border-radius: 16px;
  padding: 4px 14px; white-space: nowrap; transition: 0.15s;
}
.footer-made:hover { color: var(--gold-soft); border-color: var(--line-gold); }

@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 36px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; padding-bottom: 84px; }
}

/* 플로팅 전화 — 우측 하단 원형 버튼 */
.call-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 95;
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55), 0 4px 18px rgba(200, 162, 94, 0.35);
  transition: transform 0.15s, filter 0.15s;
}
.call-fab:hover { transform: scale(1.07); filter: brightness(1.06); }
.call-fab svg {
  width: 28px; height: 28px; fill: #120e06;
  animation: fab-shake 2.4s ease-in-out infinite;
  transform-origin: 50% 50%;
}
/* 퍼져 나가는 골드 링 */
.call-fab::before,
.call-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(200, 162, 94, 0.65);
  animation: fab-ring 2.4s ease-out infinite;
  pointer-events: none;
}
.call-fab::after { animation-delay: 1.2s; }
@keyframes fab-ring {
  0%   { transform: scale(1);    opacity: 0.85; }
  100% { transform: scale(1.85); opacity: 0; }
}
/* 벨 울리듯 흔들리는 수화기 */
@keyframes fab-shake {
  0%, 28%, 100% { transform: rotate(0); }
  4%  { transform: rotate(-16deg); }
  8%  { transform: rotate(13deg); }
  12% { transform: rotate(-10deg); }
  16% { transform: rotate(7deg); }
  20% { transform: rotate(-4deg); }
  24% { transform: rotate(2deg); }
}
/* 호버 시 왼쪽으로 떠오르는 라벨 */
.call-fab-label {
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--bg-2); color: var(--gold-soft);
  border: 1px solid var(--line-gold);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 7px 14px; border-radius: 20px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: 0.2s;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
}
.call-fab:hover .call-fab-label { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .call-fab svg, .call-fab::before, .call-fab::after { animation: none; }
}

/* ── 반응형 ───────────────────────────── */
@media (max-width: 1180px) {
  .nav-item > a { padding: 14px 10px; font-size: 0.89rem; }
  .header-tagline { display: none; }
}

@media (max-width: 1080px) {
  .page-layout.has-toc { display: block; }
  .page-toc { display: none; }
}

@media (max-width: 920px) {
  html { scroll-padding-top: 80px; }
  .nav-toggle { display: flex; }
  .header-call .call-label { display: none; }
  .header-call { padding: 8px 17px; font-size: 0.88rem; }
  .header-top { border-bottom: none; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-2); backdrop-filter: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 66px); overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .nav-inner { padding: 0; }
  .nav-list { flex-direction: column; }
  .nav-item > a {
    padding: 14px 22px; border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }
  .nav-item > a::after { display: none; }
  .nav-item.is-active > a { border-bottom-color: var(--line); }
  .nav-item.has-sub > a::after { content: " ▾"; color: var(--text-dim); font-size: 0.8em; }
  .sub-menu {
    position: static; display: none; transform: none;
    border: none; border-radius: 0;
    background: var(--bg); box-shadow: none; max-height: none;
  }
  .nav-item.sub-open .sub-menu { display: block; }
  .nav-item.has-sub:hover .sub-menu { display: none; }
  .nav-item.has-sub.sub-open:hover .sub-menu { display: block; }
  .sub-menu a { padding: 11px 38px; white-space: normal; }

  .hero { padding: 56px 20px 44px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-lead { font-size: 0.97rem; }
  .hero-lead br { display: none; }
  .hero-stats { flex-wrap: wrap; row-gap: 16px; }
  .hero-stats li { flex: 1 1 40%; max-width: none; border-left: none !important; }
  .hero-stats strong { font-size: 1.15rem; }

  .site-main { padding: 36px 0 70px; }
  .call-fab { right: 16px; bottom: 16px; width: 56px; height: 56px; }
  .call-fab svg { width: 24px; height: 24px; }
  .call-fab-label { display: none; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.22rem; }
  .page-content section { padding: 26px 22px 22px; border-radius: 14px; }
  .cta { padding: 36px 20px; }
}

/* E-E-A-T 콘텐츠 책임 고지 */
.content-byline {
  margin-top: 48px;
  padding: 18px 22px;
  border: 1px solid rgba(200, 162, 94, 0.35);
  border-left: 4px solid #c8a25e;
  border-radius: 8px;
  background: rgba(200, 162, 94, 0.06);
}
.content-byline p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #5d5648;
}
.content-byline a { color: #8a6d3b; font-weight: 600; }
