/* 세븐록 마사지 - 전체 UI 스타일
   어두운 프리미엄 톤 + 살구/골드 포인트 */

:root {
  --bg: #100d0b;
  --bg-soft: #17120f;
  --surface: #1d1713;
  --surface-2: #251d18;
  --line: #34291f;
  --text: #f3ece4;
  --muted: #b6a99b;
  --muted-2: #8d8174;
  --accent: #e7b486;   /* 살구 */
  --accent-2: #d59a5f; /* 골드살구 */
  --gold: #cda659;     /* 골드 */
  --danger: #e08a7a;
  --radius: 16px;
  --maxw: 1120px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(231, 180, 134, 0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(205, 166, 89, 0.07), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Segoe UI", Roboto, "Noto Sans KR", "Malgun Gothic", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; display: block; }

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

/* ---------- 헤더 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 13, 11, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  font-weight: 800;
  flex: none;
}
.brand .logo {
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--accent);
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 1px; flex: 1 1 auto; justify-content: center; }
.nav > .nav-item { position: relative; }
.nav > .nav-item > a {
  display: inline-block;
  padding: 9px 9px;
  font-size: 13.5px;
  color: var(--muted);
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.nav > .nav-item > a:hover { color: var(--text); background: var(--surface); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow);
  display: none;
  grid-template-columns: 1fr;
  gap: 2px;
}
.dropdown.cols-2 { grid-template-columns: 1fr 1fr; min-width: 320px; }
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { display: grid; }

/* 메가메뉴 (지역별 출장마사지) */
.nav-item.has-mega { position: static; }
.dropdown.mega {
  left: 16px;
  right: 16px;
  min-width: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 14px;
  padding: 20px 22px;
}
.mega .mega-col { min-width: 0; }
.mega .mega-col > .gu-title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  padding: 6px 10px 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.mega .mega-col > .gu-title:hover { background: var(--surface-2); border-radius: 8px; }
.dropdown a {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--muted);
  border-radius: 8px;
}
.dropdown a:hover { color: var(--text); background: var(--surface-2); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #2a1c10;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  flex: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  width: 42px;
  height: 38px;
  font-size: 18px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 92px 0 72px;
  overflow: hidden;
}
.hero .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(30px, 5.2vw, 52px);
  line-height: 1.18;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero h1 .hl { color: var(--accent); }
.hero p.lead {
  font-size: clamp(15px, 2.1vw, 19px);
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 30px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #2a1c10;
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-meta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  color: var(--muted-2);
  font-size: 13px;
}
.hero-meta b { color: var(--text); font-weight: 700; }

/* ---------- 섹션 공통 ---------- */
section { padding: 64px 0; }
.section-head { margin-bottom: 36px; }
.section-head .kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  font-weight: 700;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(24px, 3.6vw, 34px);
  margin: 10px 0 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head p { color: var(--muted); margin: 12px 0 0; max-width: 680px; }

/* ---------- Trust 카드 ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.trust-card h3 { margin: 0 0 8px; font-size: 17px; color: var(--accent); }
.trust-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---------- 서비스 ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.svc-card:hover { border-color: var(--accent-2); transform: translateY(-3px); }
.svc-card .ico { font-size: 24px; margin-bottom: 14px; }
.svc-card h3 { margin: 0 0 8px; font-size: 19px; }
.svc-card p { margin: 0 0 16px; color: var(--muted); font-size: 14px; }
.svc-card .more { color: var(--accent); font-weight: 700; font-size: 14px; }

/* ---------- 지역 ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  font-weight: 700;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}
.area-chip:hover { border-color: var(--accent); color: var(--accent); }
.area-chip span { display: block; font-size: 12px; color: var(--muted-2); font-weight: 500; margin-top: 4px; }

/* ---------- 이용 방법 ---------- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
}
.step .num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #2a1c10;
  display: grid; place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
}
.step h3 { margin: 0 0 6px; font-size: 15px; }
.step p { margin: 0; color: var(--muted); font-size: 13px; }

/* ---------- 요금 ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.price-card.featured { border-color: var(--accent-2); box-shadow: var(--shadow); }
.price-card .time { font-size: 14px; color: var(--muted); }
.price-card .price { font-size: 30px; font-weight: 800; margin: 8px 0; color: var(--accent); }
.price-card .price small { font-size: 14px; color: var(--muted-2); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 16px 0 0; text-align: left; }
.price-card li { padding: 6px 0; color: var(--muted); font-size: 14px; border-top: 1px solid var(--line); }
.price-note {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 13px;
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.faq-q .mark { color: var(--accent); transition: transform 0.2s; flex: none; }
.faq-item.open .faq-q .mark { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--muted);
  font-size: 14px;
}
.faq-a div { padding: 0 20px 18px; }

/* ---------- 최종 CTA ---------- */
.cta-final {
  background: linear-gradient(135deg, rgba(231, 180, 134, 0.14), rgba(205, 166, 89, 0.06));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 46px 32px;
  text-align: center;
}
.cta-final h2 { font-size: clamp(22px, 3.4vw, 30px); margin: 0 0 12px; }
.cta-final p { color: var(--muted); margin: 0 0 26px; }

/* ---------- 푸터 ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 120px;
  color: var(--muted-2);
  font-size: 13px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-top h4 { color: var(--text); font-size: 14px; margin: 0 0 12px; }
.footer-top a { color: var(--muted); display: block; padding: 3px 0; }
.footer-top a:hover { color: var(--accent); }
.footer-legal { border-top: 1px solid var(--line); padding-top: 20px; line-height: 1.8; }
.footer-legal .disclaimer { color: var(--muted-2); margin-top: 10px; font-size: 12px; }

/* ---------- 하단 고정 CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: none;
  gap: 0;
  background: rgba(16, 13, 11, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 15px 8px;
  font-weight: 800;
  font-size: 15px;
}
.sticky-cta .call { color: #2a1c10; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.sticky-cta .sms { color: var(--text); }

/* ---------- 콘텐츠(서비스/지역 상세) ---------- */
.page-hero {
  padding: 64px 0 28px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb { font-size: 13px; color: var(--muted-2); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--accent); }
.page-hero h1 { font-size: clamp(26px, 4.4vw, 40px); margin: 0 0 12px; font-weight: 800; }
.page-hero p { color: var(--muted); max-width: 720px; margin: 0; }

.article { padding: 44px 0 64px; }
.article-grid { display: grid; grid-template-columns: 1fr 280px; gap: 44px; align-items: start; }
.prose h2 {
  font-size: 22px;
  margin: 36px 0 12px;
  padding-top: 8px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 17px; margin: 22px 0 8px; color: var(--accent); }
.prose p { color: var(--muted); margin: 0 0 14px; }
.prose ul { color: var(--muted); padding-left: 20px; margin: 0 0 14px; }
.prose li { margin: 6px 0; }
.prose strong { color: var(--text); }
.prose .callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent-2);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 14px;
}
.zone-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 14px 0; }
.zone-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}
.zone-card h4 { margin: 0 0 6px; color: var(--accent); font-size: 15px; }
.zone-card p { margin: 0; font-size: 13px; }

.sidebar { position: sticky; top: 84px; display: grid; gap: 16px; }
.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.side-card h4 { margin: 0 0 14px; font-size: 15px; }
.side-card .big-phone { font-size: 24px; font-weight: 800; color: var(--accent); margin: 0 0 6px; }
.side-card .btn { width: 100%; justify-content: center; margin-top: 10px; }
.side-links a { display: block; padding: 7px 0; color: var(--muted); font-size: 14px; border-top: 1px solid var(--line); }
.side-links a:first-child { border-top: none; }
.side-links a:hover { color: var(--accent); }

.review-line {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted-2);
}

/* 고객후기 카드 */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 16px 0; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.review-card .stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.review-card p { margin: 8px 0 10px; color: var(--text); font-size: 14px; }
.review-card .meta { color: var(--muted-2); font-size: 12px; }
@media (max-width: 680px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- 반응형 ---------- */
@media (max-width: 980px) {
  .article-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .trust-grid, .price-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: 1fr; }
}
/* 메뉴 항목이 8개라 좁은 화면에서는 햄버거로 전환 */
@media (max-width: 992px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 12px;
    gap: 2px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav.open > .nav-item { width: 100%; }
  .nav.open .dropdown,
  .nav.open .dropdown.mega { position: static; display: grid; grid-template-columns: 1fr; box-shadow: none; border: none; padding: 4px 0 8px 14px; background: none; min-width: 0; }
  .nav.open .mega .mega-col > .gu-title { border-bottom: none; padding: 8px 10px 4px; }
  .sticky-cta { display: flex; }
}
@media (max-width: 680px) {
  .card-grid, .area-grid, .step-grid, .sidebar { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 48px 0; }
}
