/* ============================================================
   강남 가라오케 달토 — 소프트 카드 UI
   크림 배경 블록 · 아이콘 칩 · 부드러운 그림자 · 앱처럼 정돈된 프리미엄
   ============================================================ */
:root {
  --cream: #faf6ef;          /* 페이지 배경 */
  --cream-block: #fdfaf4;    /* 블록 배경 */
  --cream-deep: #f3ece0;     /* 강조 크림 블록 */
  --card: #ffffff;
  --gold: #c79a4b;
  --gold-soft: #e4cf9f;
  --gold-deep: #a87f33;
  --ink: #2c2722;            /* 본문 텍스트 */
  --ink-dim: #7c756b;        /* 보조 텍스트 */
  --accent: #b88a3e;         /* 예약 블록 */
  --accent-2: #8c6322;
  --line: #ece4d6;
  --shadow-sm: 0 4px 14px rgba(120, 96, 50, 0.08);
  --shadow-md: 0 14px 34px rgba(120, 96, 50, 0.12);
  --shadow-lg: 0 24px 60px rgba(120, 96, 50, 0.16);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ============ 아이콘 칩 ============ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.chip-hero {
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  letter-spacing: 1px;
  color: var(--gold-deep);
}
.chip-light {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

/* ============ 헤더 / 내비게이션 ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; flex-direction: column; line-height: 1.15; }
.brand-logo { font-size: 1.55rem; font-weight: 900; letter-spacing: 1px; color: var(--gold-deep); }
.brand-sub { font-size: 0.7rem; color: var(--ink-dim); letter-spacing: 0.5px; }

.main-nav { margin-left: auto; }
.nav-menu { display: flex; list-style: none; gap: 2px; }
.nav-item { position: relative; }
.nav-item > a {
  display: block;
  padding: 25px 15px;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-item > a:hover { color: var(--gold-deep); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 224px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.22s ease;
  box-shadow: var(--shadow-md);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 11px 14px;
  font-size: 0.88rem;
  color: var(--ink-dim);
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.15s;
}
.dropdown li a:hover { color: var(--gold-deep); background: var(--cream-deep); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #fff;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--gold-deep); border-radius: 2px; transition: 0.3s; }

/* ============ 히어로 ============ */
.hero {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}
.hero-card {
  width: 100%;
  max-width: var(--max);
  text-align: center;
  padding: 90px 36px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55), transparent 50%),
    linear-gradient(135deg, #f6e7c6, #efd9ad 45%, #e7c98e);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  bottom: -80px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.45), transparent 70%);
  border-radius: 50%;
}
.hero-title {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--ink);
  margin: 22px 0 0;
}
.hero-title span { color: var(--gold-deep); }
.hero-slogan { color: #6b5e45; margin: 18px auto 30px; max-width: 560px; font-size: 1.08rem; font-weight: 500; }
.hero-points { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; position: relative; z-index: 1; }
.hero-points li {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-deep);
  box-shadow: var(--shadow-sm);
}
.hero-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============ 버튼 ============ */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; box-shadow: var(--shadow-md); }
.btn-ghost { background: #fff; border: 1.5px solid var(--gold-soft); color: var(--gold-deep); box-shadow: var(--shadow-sm); }
.btn-white { background: #fff; color: var(--accent-2); box-shadow: var(--shadow-md); }

/* ============ 블록 (섹션 카드) ============ */
.blocks { display: flex; flex-direction: column; gap: 30px; padding-top: 10px; padding-bottom: 70px; }
.block {
  background: var(--cream-block);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 56px 44px;
  box-shadow: var(--shadow-sm);
}
.block-cream { background: var(--cream-deep); }
.block-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  box-shadow: var(--shadow-md);
}
.block-head { text-align: center; margin-bottom: 42px; }
.block-lead { color: var(--ink-dim); margin-top: 16px; font-size: 1rem; }
.block-lead-light { color: rgba(255, 255, 255, 0.92); }

/* ============ 그리드 / 카드 ============ */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card, .feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover, .feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card h3, .feature h3 { color: var(--ink); font-size: 1.08rem; margin-bottom: 10px; font-weight: 700; }
.card p, .feature p { color: var(--ink-dim); font-size: 0.92rem; }

.card-icon, .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fdf3dc, #f6e3b8);
  font-size: 1.7rem;
  margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(199, 154, 75, 0.15);
}
.feature { text-align: center; }
.feature-icon { margin-left: auto; margin-right: auto; }

.list { list-style: none; margin-top: 10px; }
.list li { color: var(--ink-dim); font-size: 0.92rem; padding: 5px 0 5px 20px; position: relative; }
.list li::before { content: "✓"; color: var(--gold-deep); font-weight: 800; position: absolute; left: 2px; }

/* ============ 예약 CTA ============ */
.cta-box { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-phone { font-size: clamp(2rem, 6vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 22px; }
.cta-phone a { color: #fff; }
.reserve-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.reserve-chips span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============ 지도 ============ */
.map-card { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.map-card .card-icon { margin-bottom: 8px; }
.map-card .btn { width: 100%; max-width: 240px; }

/* ============ FAQ ============ */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary { cursor: pointer; font-weight: 700; color: var(--ink); list-style: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold-deep); font-weight: 800; font-size: 1.2rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-dim); margin-top: 14px; font-size: 0.92rem; }

/* ============ 푸터 (다열 · NAP · 사이트맵 · 신뢰) ============ */
.site-footer {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 36px;
  padding: 60px 20px 48px;
}
.footer-col { min-width: 0; }
.footer-brand { font-size: 1.4rem; font-weight: 900; color: var(--gold-deep); margin-bottom: 10px; }
.footer-tag { color: var(--ink); font-weight: 600; font-size: 0.92rem; margin-bottom: 10px; }
.footer-desc { font-size: 0.86rem; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-social a {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px; font-size: 0.82rem; font-weight: 700; color: var(--gold-deep);
  box-shadow: var(--shadow-sm); transition: transform 0.15s;
}
.footer-social a:hover { transform: translateY(-2px); }

.footer-h { font-size: 0.95rem; font-weight: 800; color: var(--ink); margin-bottom: 16px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--ink-dim); font-weight: 500; font-size: 0.88rem; transition: color 0.15s; }
.footer-nav a:hover { color: var(--gold-deep); }

.footer-address { font-style: normal; display: flex; flex-direction: column; gap: 10px; }
.footer-line { font-size: 0.86rem; line-height: 1.6; }
.footer-line strong { color: var(--gold-deep); }
.footer-phone { font-size: 1.45rem; font-weight: 900; color: var(--gold-deep); margin-top: 4px; }
.footer-cta { margin-top: 18px; text-align: center; font-size: 0.9rem; }

.footer-bottom { border-top: 1px solid var(--line); background: rgba(0,0,0,0.02); }
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 18px; padding: 22px 20px 34px; text-align: center; position: relative;
}
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; width: 100%; margin-bottom: 8px; }
.footer-legal a { font-size: 0.82rem; font-weight: 700; color: var(--gold-deep); }
.footer-copy { font-size: 0.8rem; font-weight: 700; color: var(--ink); width: 100%; }
.footer-meta { font-size: 0.76rem; opacity: 0.8; width: 100%; }
.footer-top {
  position: absolute; right: 20px; top: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: 0.78rem; font-weight: 700; color: var(--gold-deep);
  box-shadow: var(--shadow-sm);
}

/* ============ 본문 산문 (prose) ============ */
.prose { max-width: 820px; margin: 0 auto 34px; }
.prose p { color: #5f574b; font-size: 1rem; margin-bottom: 16px; }
.prose strong { color: var(--ink); }

/* ============ 비교표 ============ */
.table-wrap { overflow-x: auto; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.compare { width: 100%; border-collapse: collapse; background: #fff; min-width: 560px; }
.compare th, .compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.compare thead th { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; font-weight: 800; }
.compare thead th:last-child { background: linear-gradient(135deg, var(--gold-deep), var(--accent-2)); }
.compare tbody td:first-child { font-weight: 700; color: var(--ink); background: var(--cream-deep); }
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody td:last-child { color: var(--gold-deep); font-weight: 600; }

/* ============ 이용 가이드 스텝 ============ */
.steps { list-style: none; max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.steps li { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.step-no {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff; font-weight: 900; font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.steps h3 { font-size: 1.05rem; margin-bottom: 5px; color: var(--ink); }
.steps p { color: var(--ink-dim); font-size: 0.93rem; }

/* ============ 바이라인 / 노트 ============ */
.byline { text-align: center; margin-top: 28px; font-size: 0.85rem; color: var(--ink-dim); }
.byline strong { color: var(--gold-deep); }
.note { text-align: center; margin-top: 22px; font-size: 0.82rem; color: var(--ink-dim); }

/* ============ 후기 카드 ============ */
.review { display: flex; flex-direction: column; gap: 10px; }
.review .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }
.review p { color: #5f574b; font-style: italic; }
.review-by { font-size: 0.84rem; color: var(--ink-dim); font-weight: 600; }

/* ============ 모바일 고정 전화 ============ */
.floating-call {
  position: fixed;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  display: none;
}

/* ============ 반응형 ============ */
@media (max-width: 920px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px; right: 0;
    width: 286px;
    height: calc(100vh - 72px);
    background: #fff;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    margin-left: 0;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-menu { flex-direction: column; gap: 0; padding: 12px 0; }
  .nav-item > a { padding: 14px 22px; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: var(--cream); border-radius: 0;
    padding: 4px 0 8px;
  }
  .dropdown li a { padding: 9px 36px; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .floating-call { display: block; }
}
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .block { padding: 44px 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .footer-brand-col, .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-card { padding: 60px 24px; }
  .block { padding: 38px 20px; }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 36px; }
  .footer-top { position: static; display: inline-block; margin-top: 12px; }
  .floating-call { bottom: 14px; }
}
