/* =========================================================
   유앤미 가라오케 (younadmebaby.com)
   프리미엄 라운지 UI — 모바일 우선(Mobile-first) 설계
   ========================================================= */

/* 폰트: 본문(Pretendard) + 디스플레이 세리프(Cormorant / Noto Serif KR) */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Noto+Serif+KR:wght@500;600;700&display=swap");

:root {
  --bg: #09090c;
  --bg-soft: #0d0d12;
  --bg-alt: #0f0e15;
  --surface: rgba(255, 255, 255, .035);
  --surface-2: rgba(255, 255, 255, .06);
  --glass: rgba(20, 18, 28, .55);
  --line: rgba(220, 200, 150, .14);
  --line-soft: rgba(255, 255, 255, .08);

  --text: #f6f1e7;
  --text-muted: #a59f96;
  --text-dim: #6f6a63;

  --gold: #c8a45c;
  --gold-bright: #e8cf8e;
  --gold-pale: #f4e7c4;
  --champagne: linear-gradient(135deg, #b98a3e 0%, #e8cf8e 45%, #f6ecc8 60%, #c8a45c 100%);
  --wine: #6e1d35;
  --danger: #e0738c;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .5);
  --shadow-gold: 0 18px 50px rgba(200, 164, 92, .22);
  --maxw: 1160px;
  --header-h: 76px;

  --font-display: "Cormorant Garamond", "Noto Serif KR", Georgia, serif;
  --font-sans: "Pretendard", "Pretendard Variable", -apple-system,
    BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: .1px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
  overflow-x: hidden;
}

/* 은은한 그레인 텍스처 — 고급스러운 깊이감 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

::selection { background: rgba(200, 164, 92, .3); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2620; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #3a352c; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 2;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* 디스플레이 타이포 공통 */
.section-head h2, .hero h1, .page-hero h1,
.brand, .contact-box .phone, .prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .2px;
}

/* ---------- 버튼 ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .3px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease, border-color .35s ease, color .35s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg);
  transition: left .7s ease;
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--champagne);
  color: #241a08;
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}
.btn-primary:hover { box-shadow: 0 22px 56px rgba(200, 164, 92, .4); }

.btn-line {
  background: rgba(255,255,255,.02);
  color: var(--text);
  border-color: var(--line);
  backdrop-filter: blur(6px);
}
.btn-line:hover { border-color: var(--gold); color: var(--gold-pale); }

.btn-kakao { background: #fee500; color: #191600; font-weight: 700; }

/* ---------- 헤더 / 내비게이션 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(9, 9, 12, .72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--text);
}
.brand .dot {
  background: var(--champagne);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand small {
  font-family: var(--font-sans);
  color: var(--gold);
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none; border: 0; cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  width: 26px; height: 1.5px;
  background: var(--gold-pale);
  border-radius: 2px;
  transition: .3s cubic-bezier(.2,.7,.3,1);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: rgba(10, 9, 14, .96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  display: none;
  flex-direction: column;
  padding: 14px 22px 26px;
  box-shadow: var(--shadow);
}
.nav-menu.open { display: flex; animation: menuDrop .35s ease; }
@keyframes menuDrop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
/* 메뉴 구조 (모바일: 아코디언) */
.menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; width: 100%; }
.menu > li { border-bottom: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; align-items: center; }
.menu > li > a {
  flex: 1; min-width: 0;
  padding: 15px 6px; font-weight: 500; letter-spacing: .5px;
  color: var(--text-muted); transition: color .25s ease;
}
.menu > li > a[aria-current="page"], .menu > li > a:hover { color: var(--gold-pale); }

.sub-toggle {
  width: 46px; height: 46px;
  background: none; border: 0; cursor: pointer;
  color: var(--gold); position: relative; flex: 0 0 auto;
}
.sub-toggle::before, .sub-toggle::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 1.5px; background: currentColor; border-radius: 2px;
  transform: translate(-50%, -50%); transition: transform .3s ease;
}
.sub-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.sub-toggle[aria-expanded="true"]::after { transform: translate(-50%, -50%) rotate(0); }

.submenu { list-style: none; margin: 0; padding: 0; width: 100%; max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.submenu.open { max-height: 320px; padding-bottom: 8px; }
.submenu a {
  display: block; padding: 12px 8px 12px 22px;
  color: var(--text-dim); font-size: .92rem; letter-spacing: .3px;
  transition: color .25s ease;
}
.submenu a::before { content: "—  "; color: var(--gold); opacity: .5; }
.submenu a[aria-current="page"], .submenu a:hover { color: var(--gold-pale); }
.nav-cta { display: none; }

/* ---------- 히어로 ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 880px);
  display: flex;
  align-items: center;
  text-align: center;
  padding: 90px 0 70px;
  overflow: hidden;
  background: var(--bg);
}
/* 앰비언트 라이팅 — 떠 있는 골드/와인 광원 */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}
.hero::before {
  width: 560px; height: 560px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(200,164,92,.26), transparent 65%);
  animation: float1 14s ease-in-out infinite;
}
.hero::after {
  width: 520px; height: 520px;
  bottom: -200px; left: -140px;
  background: radial-gradient(circle, rgba(110,29,53,.34), transparent 62%);
  animation: float2 16s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px,30px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(36px,-26px); } }

.hero .container { z-index: 2; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-pale);
  font-size: .74rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero .eyebrow::before, .hero .eyebrow::after {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero .eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero h1 {
  font-size: clamp(2.8rem, 11vw, 6rem);
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: 1px;
  font-weight: 600;
}
.hero h1 .accent {
  background: var(--champagne);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}
.hero p.lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 600px;
  margin: 0 auto 38px;
  line-height: 1.85;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.hero-meta {
  margin-top: 44px;
  color: var(--text-muted);
  font-size: .9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: center;
}
.hero-meta span { display: inline-flex; gap: 8px; align-items: center; }
.hero-meta b { color: var(--gold-pale); font-weight: 600; letter-spacing: .5px; }

/* 스크롤 유도 */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-dim);
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .line {
  width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: cueGrow 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueGrow { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- 섹션 공통 ---------- */
.section { padding: 92px 0; position: relative; }
.section.alt { background: linear-gradient(180deg, var(--bg-alt), var(--bg-soft)); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .kicker {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 4px;
  font-size: .74rem;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head .kicker::before { content: "— "; color: var(--gold); opacity: .6; }
.section-head .kicker::after { content: " —"; color: var(--gold); opacity: .6; }
.section-head h2 {
  font-size: clamp(2rem, 6vw, 3.1rem);
  margin: 0 0 16px;
  line-height: 1.18;
}
.section-head p { color: var(--text-muted); margin: 0 auto; max-width: 620px; line-height: 1.85; }
.section-head::after {
  content: "❖";
  display: block;
  margin: 22px auto 0;
  width: max-content;
  padding: 0 18px;
  color: var(--gold);
  font-size: .85rem;
  line-height: 1;
}

/* 우아한 디바이더 */
.divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 4px 0 0; }
.divider span { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.divider .dia { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }

/* ---------- 카드 그리드 ---------- */
.grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 30px;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.7,.3,1), border-color .45s ease, background .45s ease;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(200,164,92,.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity .45s ease;
}
.card:hover { transform: translateY(-6px); background: var(--surface-2); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card h3 { margin: 0 0 10px; font-size: 1.28rem; font-weight: 600; letter-spacing: .3px; }
.card p { color: var(--text-muted); margin: 0; }
.card .ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(200,164,92,.16), rgba(200,164,92,.04));
  border: 1px solid var(--line);
  color: var(--gold-pale);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* ---------- 갤러리 ---------- */
.gallery-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  aspect-ratio: 4 / 3;
  position: relative;
}
.gallery-grid .ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  color: var(--text-dim);
  font-size: .82rem; text-align: center; padding: 12px;
  letter-spacing: .5px;
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(200,164,92,.1), transparent 55%),
    repeating-linear-gradient(135deg, #131218 0 14px, #17161d 14px 28px);
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.gallery-grid figure:hover .ph { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  font-size: .86rem; font-weight: 500; letter-spacing: .5px;
  color: var(--gold-pale);
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  transform: translateY(6px); opacity: .85;
  transition: .4s ease;
}
.gallery-grid figure:hover figcaption { transform: none; opacity: 1; }

/* ---------- 가격 / 코스 ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 18px 22px; text-align: left;
  border-bottom: 1px solid var(--line-soft); font-size: .98rem;
}
.price-table th {
  background: rgba(200,164,92,.08);
  color: var(--gold-pale);
  font-weight: 600; letter-spacing: 1px;
  font-size: .8rem; text-transform: uppercase;
}
.price-table td { color: var(--text-muted); }
.price-table td:first-child { color: var(--text); font-weight: 500; }
.price-table tr:last-child td { border-bottom: 0; }
.price-note { color: var(--text-dim); font-size: .88rem; margin-top: 16px; line-height: 1.8; }

/* ---------- 스텝 ---------- */
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; counter-reset: step; }
.step {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 26px 26px 78px;
  position: relative;
  transition: border-color .4s ease, transform .4s ease;
}
.step:hover { border-color: var(--line); transform: translateY(-3px); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  left: 24px; top: 24px;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  background: var(--champagne);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step::after {
  content: ""; position: absolute;
  left: 28px; top: 60px; bottom: 22px; width: 1px;
  background: linear-gradient(var(--line), transparent);
}
.step h3 { margin: 0 0 6px; font-size: 1.12rem; font-weight: 600; letter-spacing: .3px; }
.step p { margin: 0; color: var(--text-muted); }

/* ---------- 연락 / CTA 박스 ---------- */
.contact-box {
  position: relative;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(200,164,92,.1), transparent 60%),
    var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 52px 30px;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.contact-box .kicker {
  display: inline-block;
  color: var(--gold); letter-spacing: 4px;
  font-size: .74rem; text-transform: uppercase; font-weight: 600;
  margin-bottom: 14px;
}
.contact-box .person { color: var(--text-muted); letter-spacing: .5px; }
.contact-box .phone {
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  font-weight: 600;
  background: var(--champagne);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 2px;
  margin: 12px 0 8px;
  display: inline-block;
}
.contact-actions {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 30px; align-items: center;
}

/* ---------- FAQ ---------- */
.faq details {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  padding: 6px 24px;
  transition: border-color .35s ease, background .35s ease;
}
.faq details[open] { border-color: var(--line); background: var(--surface-2); }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.04rem; letter-spacing: .3px;
  padding: 20px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--gold); font-size: 1.6rem; font-weight: 300;
  transition: transform .35s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--text-muted); margin: 0 0 20px; line-height: 1.85; }

/* ---------- 오시는 길 ---------- */
.map-embed {
  width: 100%; aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.05); }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line-soft);
}
.info-list li:last-child { border-bottom: 0; }
.info-list .lbl {
  color: var(--gold); min-width: 64px; font-weight: 600;
  letter-spacing: 2px; font-size: .76rem; text-transform: uppercase;
  padding-top: 3px;
}

/* ---------- 페이지 헤더 ---------- */
.page-hero {
  position: relative;
  padding: 92px 0 56px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero::before {
  content: ""; position: absolute;
  width: 520px; height: 320px; top: -160px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(200,164,92,.2), transparent 65%);
  filter: blur(60px); z-index: 0;
}
.page-hero .container { z-index: 2; }
.page-hero h1 { margin: 8px 0 14px; font-size: clamp(2.2rem, 7vw, 3.6rem); font-weight: 600; letter-spacing: 1px; }
.page-hero p { color: var(--text-muted); margin: 0; letter-spacing: .3px; }
.breadcrumb {
  font-size: .76rem; color: var(--text-dim);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--gold-pale); }

/* ---------- 콘텐츠(prose) ---------- */
.prose p { color: var(--text-muted); line-height: 1.95; }
.prose h2 {
  margin-top: 48px; font-size: 1.7rem; font-weight: 600; color: var(--text);
  padding-bottom: 14px; border-bottom: 1px solid var(--line-soft);
}
.prose ul { color: var(--text-muted); padding-left: 4px; list-style: none; }
.prose li { margin-bottom: 12px; padding-left: 24px; position: relative; line-height: 1.85; }
.prose ul li::before {
  content: ""; position: absolute; left: 2px; top: 12px;
  width: 6px; height: 6px; background: var(--gold);
  transform: rotate(45deg);
}

/* ---------- 푸터 ---------- */
.site-footer {
  background: #060608;
  border-top: 1px solid var(--line);
  padding: 72px 0 36px;
  font-size: .92rem;
  color: var(--text-muted);
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
.footer-grid h4 {
  font-family: var(--font-display);
  color: var(--gold-pale); margin: 0 0 16px;
  font-size: 1.3rem; font-weight: 600; letter-spacing: .5px;
}
.footer-grid a { color: var(--text-muted); transition: color .25s ease; }
.footer-grid a:hover { color: var(--gold-pale); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 11px; }
.legal {
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  font-size: .82rem; line-height: 1.9; color: var(--text-dim);
}
.legal .warn {
  display: inline-block; color: var(--danger);
  border: 1px solid rgba(224,115,140,.35);
  border-radius: 8px; padding: 5px 14px;
  font-weight: 600; letter-spacing: .3px; margin-bottom: 14px;
}

/* ---------- 모바일 고정 통화 바 ---------- */
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 11px;
  background: rgba(9, 9, 12, .82);
  backdrop-filter: blur(18px) saturate(140%);
  border-top: 1px solid var(--line);
  padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
}
.mobile-callbar .btn { flex: 1; padding: 14px; font-size: .95rem; }
body { padding-bottom: 80px; }

/* ---------- 스크롤 리빌 ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.3,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   반응형 — 태블릿 이상
   ========================================================= */
@media (min-width: 720px) {
  .grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: row; justify-content: center; }
  .contact-actions { flex-direction: row; justify-content: center; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
  .two-col { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: center; }
}

@media (min-width: 980px) {
  body { padding-bottom: 0; }
  .mobile-callbar { display: none; }
  .nav-toggle { display: none; }
  .nav-menu {
    position: static; display: flex; flex-direction: row; align-items: center;
    background: none; border: 0; box-shadow: none; padding: 0; gap: 2px; animation: none;
  }
  .menu { flex-direction: row; width: auto; }
  .menu > li { border: 0; position: relative; }
  .menu > li > a { padding: 10px 15px; font-size: .92rem; letter-spacing: .8px; }
  .has-sub > a { padding-right: 26px; }
  .has-sub > a::after {
    content: ""; position: absolute; right: 12px; top: 50%;
    width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: translateY(-70%) rotate(45deg); opacity: .65; transition: transform .3s ease;
  }
  .has-sub:hover > a::after { transform: translateY(-30%) rotate(225deg); }
  .sub-toggle { display: none; }

  .submenu {
    position: absolute; top: calc(100% + 8px); left: 0;
    width: auto; min-width: 226px; max-height: none; overflow: visible;
    background: rgba(11, 10, 16, .97); backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--line); border-radius: 14px; padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: .3s cubic-bezier(.2,.7,.3,1);
  }
  .submenu::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
  .has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: none; }
  .submenu a { padding: 11px 14px; border-radius: 9px; font-size: .9rem; }
  .submenu a::before { content: ""; }
  .submenu a:hover, .submenu a[aria-current="page"] { background: var(--surface-2); color: var(--gold-pale); }
  .nav-cta { display: inline-flex; margin-left: 14px; padding: 12px 24px; }
}

/* 모션 최소화 선호 사용자 배려 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
