/* ============================================================
   GLAM LOUNGE — districtglam.com 리뉴얼
   디자인 토큰: 블랙/화이트 모노크롬 + 샴페인 골드 #C7A164 (구 레드 #BD1515 — 창업자 지시 2026-08-27 교체)
   ============================================================ */
:root {
  --bg-black: #000000;
  --bg-near: #0D0D0D;
  --bg-dark: #161616;
  --red: #C7A164; /* champagne gold accent (var name kept for compatibility) */
  --white: #FFFFFF;
  --cream: #D4D4D2;
  --paper: #F9F9F9;
  --font-body: 'Nunito Sans', 'Noto Sans KR', Arial, sans-serif;
  --font-display: 'Poppins', Arial, sans-serif;
  --font-sub: 'Barlow', Arial, sans-serif;
  --header-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  background: var(--bg-black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: min(1140px, 90%); margin: 0 auto; }
.container.narrow { width: min(760px, 90%); }
.center { text-align: center; }
.center-text { text-align: center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0, 0, 0, 0);
  transition: background .4s ease, box-shadow .4s ease;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, .92);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .6);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  height: var(--header-h);
  width: min(1240px, 94%);
  margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
}
.brand img { height: 42px; width: auto; }
.main-nav { display: flex; gap: 28px; margin-left: auto; }
.nav-link {
  font-family: var(--font-sub);
  font-size: 13px; letter-spacing: .18em; font-weight: 400;
  color: var(--paper);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--red); border-color: var(--red); }
.myk-link img { height: 30px; width: auto; opacity: .85; transition: opacity .25s; }
.myk-link:hover img { opacity: 1; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px 0;
  background: var(--paper); transition: transform .3s, opacity .3s;
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.72));
}
.hero-content { position: relative; text-align: center; padding: 0 16px; }
.hero-logo {
  width: min(420px, 62vw); height: auto; margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.45));
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.eyebrow {
  font-family: var(--font-sub); font-size: 13px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--cream); margin-bottom: 26px;
}
.display-xl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 6vw, 74px);
  letter-spacing: .24em;
  line-height: 1.2;
  color: var(--paper);
  text-transform: uppercase;
}
.tagline {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 22px); letter-spacing: .08em;
  color: var(--cream);
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--red); font-size: 26px;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 10px); } }

/* ---------- pdf link / ghost ---------- */
.pdf-link {
  display: inline-block; margin-top: 34px;
  font-family: var(--font-sub); font-size: 13px; letter-spacing: .22em;
  color: var(--paper);
  border: 1px solid var(--red);
  padding: 13px 34px;
  transition: background .3s, color .3s;
}
.pdf-link:hover { background: var(--red); color: var(--white); }

.ghost-btn {
  display: inline-block; margin-top: 40px;
  font-family: var(--font-sub); font-size: 12px; letter-spacing: .22em;
  color: var(--cream); border: 1px solid rgba(212,212,210,.4);
  padding: 12px 30px; transition: border-color .3s, color .3s;
}
.ghost-btn:hover { border-color: var(--red); color: var(--red); }

/* ---------- about ---------- */
.about { padding: 110px 0 40px; background: var(--bg-black); }
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  margin-bottom: 90px;
}
.split.rev .about-text { order: 2; }
.split.rev .about-img { order: 1; }
.about-text .en {
  font-size: 18px; font-weight: 300; line-height: 1.85;
  color: var(--paper);
}
.about-text .ko {
  margin-top: 24px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14.5px; font-weight: 300; line-height: 1.95;
  color: var(--cream);
}
.about-img img {
  width: 100%; height: 480px; object-fit: cover;
  filter: saturate(.92);
}

/* ---------- display band ---------- */
.display-band {
  padding: 96px 0; text-align: center;
  background: var(--bg-near);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.display-word {
  font-family: var(--font-display);
  font-weight: 500; text-transform: uppercase;
  font-size: clamp(20px, 3.2vw, 40px);
  letter-spacing: .34em;
  line-height: 1.7;
  color: var(--paper);
}
.display-word:nth-child(3) { color: var(--red); }

/* ---------- section title ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 500; text-transform: uppercase;
  font-size: clamp(19px, 2.6vw, 27px);
  letter-spacing: .3em; text-align: center;
  color: var(--paper);
  margin-bottom: 56px;
}
.section-title.left { text-align: left; margin-bottom: 8px; }
.sub-title {
  font-family: var(--font-sub); letter-spacing: .2em; font-size: 13px;
  color: var(--red); text-transform: uppercase; margin-bottom: 30px;
}

/* ---------- strips ---------- */
.strip-section { padding: 110px 0; background: var(--bg-black); }
.strip-section.alt { background: var(--bg-near); }
.strip-scroll {
  display: flex; gap: 18px; overflow-x: auto;
  padding: 0 5vw 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--red) transparent;
}
.strip-scroll figure { flex: 0 0 280px; scroll-snap-align: start; }
.strip-scroll img {
  width: 280px; height: 360px; object-fit: cover; cursor: pointer;
  transition: transform .4s ease, filter .4s ease;
}
.strip-scroll img:hover { transform: scale(1.02); filter: brightness(1.08); }
.strip-scroll figcaption {
  margin-top: 12px;
  font-family: var(--font-sub); font-size: 11px; letter-spacing: .24em;
  color: var(--red); text-align: center;
}

/* ---------- gallery ---------- */
.gallery { padding: 110px 0; background: var(--bg-black); }
.gallery-grid {
  width: min(1240px, 94%); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.gallery-grid figure { overflow: hidden; }
.gallery-grid img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; cursor: pointer;
  transition: transform .5s ease;
}
.gallery-grid img:hover { transform: scale(1.05); }

/* ---------- vip / rental ---------- */
.rental { padding: 110px 0; background: var(--bg-near); }
.vip-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.vip-card {
  display: block;
  border: 1px solid rgba(255,255,255,.14);
  padding: 44px 20px; text-align: center;
  transition: border-color .3s;
}
.vip-card:hover { border-color: var(--red); }
.vip-card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 18px; letter-spacing: .3em; color: var(--paper);
}
.vip-card p {
  margin-top: 8px;
  font-family: var(--font-sub); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red);
}
.rental .en { font-size: 17px; color: var(--paper); }
.rental .ko {
  margin-top: 18px; font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px; color: var(--cream);
}

/* ---------- contact ---------- */
.contact { padding: 110px 0 0; background: var(--bg-black); }
.split-wide {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  padding-bottom: 96px;
}
.info-list { list-style: none; }
.info-list li {
  display: flex; gap: 18px; margin-bottom: 14px; font-size: 15px;
  font-family: var(--font-sub); font-weight: 300;
}
.info-list li span {
  flex: 0 0 76px; color: var(--red); font-size: 11px;
  letter-spacing: .18em; padding-top: 4px;
}
.info-list a:hover { color: var(--red); }

.hours { margin-top: 48px; }
.hours h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  letter-spacing: .26em; color: var(--paper); margin-bottom: 20px;
}
.hours ul { list-style: none; }
.hours li {
  display: flex; gap: 18px; font-family: var(--font-sub);
  font-size: 14px; font-weight: 300; margin-bottom: 8px;
}
.hours li span { flex: 0 0 110px; color: var(--red); letter-spacing: .12em; }

.contact-form-wrap form { display: flex; flex-direction: column; gap: 20px; }
.contact-form-wrap label {
  font-family: var(--font-sub); font-size: 11px; letter-spacing: .22em;
  color: var(--red); display: flex; flex-direction: column; gap: 8px;
}
.contact-form-wrap input,
.contact-form-wrap textarea {
  background: var(--bg-dark); border: 1px solid rgba(212,212,210,.15);
  color: var(--paper); font-family: var(--font-body); font-size: 15px;
  padding: 13px 14px; outline: none; resize: vertical;
  transition: border-color .3s;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus { border-color: var(--red); }
.send-btn {
  align-self: flex-start;
  background: var(--red); color: var(--white);
  border: 0; cursor: pointer;
  font-family: var(--font-sub); font-size: 13px; letter-spacing: .24em;
  padding: 14px 46px; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.send-btn:hover { background: var(--paper); color: var(--bg-black); }
.form-note { font-size: 12.5px; color: var(--cream); opacity: .75; }

.map-wrap iframe {
  display: block; width: 100%; height: 380px; border: 0;
  filter: grayscale(.5) contrast(1.05);
}

/* ---------- footer ---------- */
.site-footer { background: var(--bg-near); padding: 72px 0 40px; border-top: 1px solid rgba(255,255,255,.05); }
.footer-inner { text-align: center; }
.connect h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: .3em; color: var(--paper); margin-bottom: 22px;
}
.social { display: flex; gap: 22px; justify-content: center; }
.social a { color: var(--cream); transition: color .3s; }
.social a:hover { color: var(--red); }
.footer-brands { margin-top: 48px; }
.footer-myk { height: 26px; margin: 0 auto 18px; opacity: .8; }
.footer-brand-links {
  display: flex; gap: 32px; justify-content: center; align-items: center;
  margin-top: 6px;
}
.footer-brand-links img { height: 34px; width: auto; opacity: .8; transition: opacity .3s; }
.footer-brand-links a:hover img { opacity: 1; }
.related {
  font-family: var(--font-sub); font-size: 12px; letter-spacing: .2em;
  color: var(--cream);
}
.related span { margin: 0 10px; color: var(--red); }
.related a:hover { color: var(--red); }
.copyright {
  margin-top: 40px; font-family: var(--font-sub);
  font-size: 11px; letter-spacing: .14em; color: rgba(212,212,210,.45);
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.94);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lb-close {
  position: absolute; top: 18px; right: 26px;
  background: none; border: 0; color: var(--paper);
  font-size: 42px; line-height: 1; cursor: pointer;
}
.lb-close:hover { color: var(--red); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .split, .split-wide { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .about-text { order: 1; }
  .split.rev .about-img { order: 2; }
  .about-img img { height: 340px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .vip-cards { grid-template-columns: 1fr; }

  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: rgba(0, 0, 0, .97);
    flex-direction: column; gap: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease;
  }
  .main-nav.open { max-height: 320px; box-shadow: 0 14px 30px rgba(0,0,0,.5); }
  .main-nav .nav-link {
    padding: 16px 6vw; border-bottom: 1px solid rgba(212,212,210,.08);
  }
  .nav-toggle { display: block; }
  .myk-link { margin-left: auto; }
  .header-inner { gap: 16px; }
  .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); }

  .about, .strip-section, .gallery, .rental, .contact { padding-top: 80px; }
  .strip-section, .gallery, .rental { padding-bottom: 80px; }
  .strip-scroll figure { flex: 0 0 230px; }
  .strip-scroll img { width: 230px; height: 290px; }
}
@media (max-width: 520px) {
  .brand img { height: 34px; }
  .myk-link img { height: 24px; }
  .display-word { letter-spacing: .22em; }
  .section-title { letter-spacing: .22em; }
  .about-text .en { font-size: 15.5px; line-height: 1.85; }
  .about-text .ko { font-size: 14px; line-height: 1.9; }
  .rental .en { font-size: 15.5px; line-height: 1.85; }
  .rental .ko { font-size: 14px; line-height: 1.9; }
  .about-img img { height: 260px; }
  .vip-card { padding: 32px 16px; }
  .info-list li { font-size: 14.5px; flex-wrap: wrap; row-gap: 2px; }
  .hero-logo { width: min(300px, 72vw); }
  .strip-scroll figure { flex: 0 0 200px; }
  .strip-scroll img { width: 200px; height: 260px; }
  .gallery-grid { gap: 10px; }
}
