/* ═══════════════════════════════════════
   LULU shared.css — v3 디자인 시스템 1:1
   ═══════════════════════════════════════ */
:root {
  --bg:       #0B1026;
  --surface:  #131A35;
  --card:     #1A2240;
  --text1:    #E9ECEF;
  --text2:    #ADB5BD;
  --text3:    #6C757D;
  --lav:      #9B8EC4;
  --lav-bg:   rgba(155,142,196,0.10);
  --lav-bd:   rgba(155,142,196,0.22);
  --lav-cta:  rgba(155,142,196,0.15);
  --lav-cta-bd: rgba(155,142,196,0.30);
  --gold:     #E8C87A;
  --gold-bg:  rgba(232,200,122,0.08);
  --gold-bd:  rgba(232,200,122,0.20);
  --amb:      #D4A056;
  --mint:     #4DB6AC;
  --night:    #7B8BD4;
  --night-bg: #465090;
  --glass:    rgba(232,230,240,0.08);
  --baby1:    #7EB8DA;
  --baby2:    #E8B4CB;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text1);
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', -apple-system, 'Malgun Gothic', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV (v3 Nav() 1:1) ── */
#lulu-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,16,38,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; height: 58px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo-text {
  font-size: 20px; font-weight: 800;
  color: #D4AF6A; letter-spacing: 2px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 14px; color: var(--text3);
  text-decoration: none; cursor: pointer; transition: color .2s;
}
.nav-link:hover { color: var(--text1); }
.nav-cta {
  padding: 7px 18px; border-radius: 100px;
  background: var(--lav-cta);
  border: 1px solid var(--lav-cta-bd);
  color: var(--lav); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background .2s;
}
.nav-cta:hover { background: rgba(155,142,196,0.22); }

/* ── FOOTER (v3 Footer() 1:1) ── */
#lulu-footer {
  background: #070F1A;
  padding: 48px 24px;
}
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 40px;
  margin-bottom: 28px; padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.footer-logo-img { width: 28px; height: 28px; object-fit: contain; }
.footer-logo-text {
  font-size: 18px; font-weight: 800;
  color: #D4AF6A; letter-spacing: 2px;
}
.footer-brand-desc {
  font-size: 13px; color: var(--text3);
  line-height: 1.65; max-width: 220px;
}
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text3); margin-bottom: 5px;
}
.footer-col a {
  font-size: 13px; color: rgba(232,230,240,0.45);
  text-decoration: none; transition: color .2s;
}
.footer-col a:hover { color: var(--text2); }
.footer-bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--text3); line-height: 1.7;
}
.footer-disclaimer {
  font-size: 11px; color: rgba(232,230,240,0.22); max-width: 440px;
}

/* ── 반응형 ── */
@media (max-width: 640px) {
  .nav-link { display: none; }
  .footer-top { flex-direction: column; gap: 28px; }
}

.nav-lang-toggle{font-size:12px;font-weight:700;color:var(--text3);text-decoration:none;padding:4px 10px;border-radius:100px;border:1px solid var(--glass);transition:all .2s;letter-spacing:.5px}
.nav-lang-toggle:hover{color:var(--text1);border-color:rgba(232,230,240,0.20)}
