/* ══════════════════════════════════════════════
   BUNKER — Minimal Clean Dark
   No decorative symbols · Spacing as dividers
   ══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: #000;
  color: #e4ddd4;
  font-family: 'Inter', 'Noto Sans KR', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ── Tokens ── */
:root {
  --bg:       #000000;
  --bg1:      #0a0a0a;
  --bg2:      #111111;
  --bg3:      #181818;
  --white:    #ffffff;
  --off:      #e4ddd4;
  --muted:    rgba(228, 221, 212, 0.42);
  --dim:      rgba(228, 221, 212, 0.12);
  --gold:     #b8975a;
  --gold2:    #d4b07a;
  --nav-h:    60px;
  --max:      960px;
  --f:        'Inter', 'Noto Sans KR', sans-serif;
}

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(0,0,0,0);
  transition: background .35s;
}
#nav.on { background: rgba(0,0,0,.94); border-bottom: 1px solid var(--dim); }

.nav-brand {
  font-size: .82rem; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--white); cursor: pointer;
}

.nav-list {
  display: flex; align-items: center; gap: 2px;
}
.nl {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); padding: 8px 14px; cursor: pointer;
  transition: color .2s;
  position: relative;
}
.nl::after {
  content: '';
  position: absolute; bottom: 3px; left: 14px; right: 14px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nl:hover, .nl.active { color: var(--white); }
.nl:hover::after, .nl.active::after { transform: scaleX(1); }

.nl-rental {
  color: var(--gold) !important;
  border: 1px solid rgba(184,151,90,.35);
  padding: 7px 16px;
}
.nl-rental::after { display: none; }
.nl-rental:hover { background: var(--gold); color: #000 !important; }

/* Burger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transition: transform .25s, opacity .25s;
}
.nav-burger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   PAGE SYSTEM
   ══════════════════════════════════════════════ */
.page { display: none; min-height: 100vh; }
.page.active {
  display: block;
  animation: fadeIn .45s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   HOME — HERO
   ══════════════════════════════════════════════ */
.s-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  padding: var(--nav-h) 40px 80px;
}
.hero-inner {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  max-width: 720px;
}
.h-label {
  font-size: .6rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
}
.h-wordmark {
  font-size: clamp(4.5rem, 16vw, 11rem);
  font-weight: 800; letter-spacing: -.02em;
  color: var(--white); line-height: .95;
}

/* HOME 자막 (h-ko / h-en) */
.h-ko {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem); font-weight: 500;
  color: var(--off); letter-spacing: -.01em;
}
.h-en {
  font-size: clamp(.82rem, 1.8vw, 1rem); font-weight: 300;
  font-style: italic; color: var(--muted); letter-spacing: .04em;
}
.h-rule {
  width: 32px; height: 1px;
  background: var(--gold); margin: 8px 0;
}

/* HOME — Modes */
.s-modes {
  background: var(--bg);
  padding: 0 40px 120px;
}
.modes-row {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--dim);
}
.mcard {
  padding: 48px 36px;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer; position: relative;
  transition: background .25s;
  border-right: 1px solid var(--dim);
}
.mcard:last-child { border-right: none; }
.mcard:hover { background: var(--bg2); }

.mc-time {
  font-size: .6rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}
.mc-name {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  letter-spacing: -.01em; color: var(--white); line-height: 1;
  transition: letter-spacing .25s;
}
.mcard:hover .mc-name { letter-spacing: .02em; }
.mc-en {
  font-size: .78rem; font-weight: 400; font-style: italic;
  color: var(--muted);
}
.mc-ko {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: .82rem; color: var(--muted);
}
.mc-arrow {
  position: absolute; top: 28px; right: 28px;
  font-size: .9rem; color: var(--gold);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .25s, transform .25s;
}
.mcard:hover .mc-arrow { opacity: 1; transform: translateX(0); }

/* HOME — Brand line */
.s-brand-line {
  background: var(--bg);
  padding: 80px 40px 120px;
  text-align: center;
  border-top: 1px solid var(--dim);
}
.brand-ko {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(.95rem, 2vw, 1.15rem); font-weight: 500;
  color: var(--off); margin-bottom: 10px;
}
.brand-en {
  font-size: .85rem; font-weight: 300; font-style: italic;
  color: var(--muted);
}

/* ══════════════════════════════════════════════
   PAGE HERO (DAY / NIGHT / CLUB / RENTAL)
   ══════════════════════════════════════════════ */
.s-page-hero {
  min-height: 60vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--nav-h) 40px 80px;
  max-width: 100%;
  background: var(--bg);
}
.ph-label {
  font-size: .6rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.ph-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(2rem, 6vw, 3rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -.02em; color: var(--white);
  margin-bottom: 18px;
  max-width: 860px;
}

/* 페이지별 제목 크기 고정 */
.day-title   { font-size: clamp(1.8rem, 4vw, 48px); }
.night-title { font-size: clamp(1.6rem, 3.5vw, 40px); }
.club-title  { font-size: clamp(1.8rem, 4vw, 44px); }
.rental-title{ font-size: clamp(1.8rem, 4vw, 44px); }

/* 영어 서브라인 (ph-title 내에 자동 삽입) */
.ph-title-en {
  display: block;
  font-size: .55em; font-weight: 300;
  font-style: italic; color: var(--muted);
  letter-spacing: .04em; margin-top: 10px;
  font-family: 'Inter', sans-serif;
}
.ph-en {
  font-size: clamp(.82rem, 1.8vw, 1rem); font-weight: 300;
  font-style: italic; color: var(--muted); letter-spacing: .04em;
}
.ph-note {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(.82rem, 1.6vw, .95rem); color: var(--muted);
  margin-top: 14px; line-height: 1.8;
}

/* ══════════════════════════════════════════════
   DAY — INFO
   ══════════════════════════════════════════════ */
.s-info {
  background: var(--bg);
  padding: 0 40px 60px;
  border-top: 1px solid var(--dim);
}
.info-row {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(5,1fr);
  border: 1px solid var(--dim); border-top: none;
}
.iblock {
  padding: 36px 24px;
  display: flex; flex-direction: column; gap: 8px;
  border-right: 1px solid var(--dim);
  transition: background .2s;
}
.iblock:last-child { border-right: none; }
.iblock:hover { background: var(--bg2); }
.iblock strong {
  font-size: .88rem; font-weight: 700; color: var(--white);
  line-height: 1.3;
}
.iblock span {
  font-size: .72rem; color: var(--muted); line-height: 1.5;
}

/* Instagram banner */
.s-insta {
  background: var(--bg);
  padding: 0 40px 60px;
}
.insta-bar {
  max-width: var(--max); margin: 0 auto;
  border: 1px solid var(--dim);
  padding: 20px 28px;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.insta-bar p {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: .85rem; color: var(--off);
}
.insta-bar a {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  color: var(--gold); white-space: nowrap;
  border-bottom: 1px solid rgba(184,151,90,.3);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.insta-bar a:hover { color: var(--gold2); border-color: var(--gold2); }

/* ══════════════════════════════════════════════
   MENU
   ══════════════════════════════════════════════ */
.s-menu {
  background: var(--bg);
  padding: 0 40px 100px;
}

/* Tab nav */
.tab-nav {
  max-width: var(--max); margin: 0 auto;
  display: flex; gap: 0;
  border-bottom: 1px solid var(--dim);
  margin-bottom: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.tb {
  font-size: .62rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
  padding: 16px 28px; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.tb:hover { color: var(--white); }
.tb.active { color: var(--gold); border-bottom-color: var(--gold); }

/* Tab body */
.tab-body { display: none; max-width: var(--max); margin: 0 auto; }
.tab-body.active {
  display: block;
  animation: slideUp .3s ease forwards;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Category label */
.menu-cat {
  font-size: .58rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold);
  padding: 36px 0 12px;
  border-bottom: 1px solid var(--dim);
}

/* Menu list */
.menu-list { }
.mi {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; padding: 15px 0;
  border-bottom: 1px solid var(--dim);
  transition: padding-left .2s;
}
.mi:hover { padding-left: 8px; }
.mi-name {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: .9rem; font-weight: 500; color: var(--off);
}
.mi-name em {
  font-style: normal; font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 300; color: var(--muted);
  margin-left: 8px;
}
.mi-price {
  font-size: .82rem; font-weight: 400; color: var(--muted);
  white-space: nowrap; font-variant-numeric: tabular-nums;
  letter-spacing: .03em;
}
.mi-price.accent { color: var(--gold); }
.mi-set { background: rgba(184,151,90,.04); margin: 0 -8px; padding-left: 8px; padding-right: 8px; }
.mi-prem { border-left: 1px solid rgba(184,151,90,.2); padding-left: 12px; }

/* Event note */
.event-note {
  margin-top: 32px; padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(184,151,90,.04);
}
.event-note p { font-size: .82rem; color: var(--muted); line-height: 1.8; }
.event-note p:first-child {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500; color: var(--off);
}

/* ══════════════════════════════════════════════
   CLUB
   ══════════════════════════════════════════════ */
.s-club-hero { min-height: 65vh; }

.s-club-info {
  background: var(--bg);
  padding: 0 40px 100px;
  display: flex; flex-direction: column; align-items: center; gap: 60px;
}
.club-blocks {
  max-width: var(--max); width: 100%;
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--dim);
}
.cblock {
  padding: 48px 36px;
  display: flex; flex-direction: column; gap: 8px;
  border-right: 1px solid var(--dim);
  text-align: center;
  transition: background .2s;
}
.cblock:last-child { border-right: none; }
.cblock:hover { background: var(--bg2); }
.cblock strong {
  font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 800;
  letter-spacing: .04em; color: var(--white);
}
.cblock span {
  font-size: .8rem; color: var(--muted); line-height: 1.6;
}
.cblock span:nth-child(2) {
  font-family: 'Noto Sans KR', sans-serif; font-weight: 500;
  color: var(--off);
}

.club-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--gold); color: #000;
  padding: 14px 28px;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase;
  background: transparent; color: var(--off);
  padding: 13px 28px;
  border: 1px solid var(--dim);
  transition: border-color .25s, color .25s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════
   RENTAL — VENUE
   ══════════════════════════════════════════════ */
.s-venue {
  background: var(--bg);
  padding: 0 40px 60px;
  border-top: 1px solid var(--dim);
}
.venue-table {
  max-width: var(--max); margin: 0 auto;
  width: 100%; border-collapse: collapse;
}
.venue-table tr { border-bottom: 1px solid var(--dim); }
.vt-key {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  padding: 20px 24px 20px 0; width: 200px; white-space: nowrap;
  vertical-align: top;
}
.vt-val {
  font-size: .88rem; color: var(--off); padding: 20px 0;
  font-family: 'Noto Sans KR', sans-serif;
}

/* ══════════════════════════════════════════════
   RENTAL — CATERING
   ══════════════════════════════════════════════ */
.s-catering {
  background: var(--bg);
  padding: 60px 40px 100px;
  display: flex; flex-direction: column; align-items: center; gap: 50px;
}
.cat-title {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: .06em; color: var(--white);
  text-align: center;
}
.cat-sub {
  font-size: .72rem; font-weight: 400; font-style: italic;
  color: var(--muted); letter-spacing: .1em; text-align: center;
  margin-top: -36px;
}

/* Cards grid */
.cat-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--dim);
  width: 100%; max-width: 1100px;
}
.ccard {
  background: var(--bg1);
  display: flex; flex-direction: column;
  transition: background .25s;
}
.ccard:hover { background: var(--bg2); }

.ccard-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: var(--bg2);
}
.ccard-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.ccard:hover .ccard-img img { transform: scale(1.04); }

/* Text-only card placeholder */
.ccard-img-text {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg3);
}
.ccard-img-text span {
  font-size: 1.1rem; font-weight: 800; letter-spacing: .08em;
  color: var(--gold); text-align: center; line-height: 1.3;
}

.ccard-body {
  padding: 24px 22px 28px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.ccard-body h3 {
  font-size: .72rem; font-weight: 800; letter-spacing: .18em;
  color: var(--white); text-transform: uppercase;
}
.ccard-ko {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: .8rem; font-weight: 500; color: var(--gold);
}
.ccard-en { font-size: .72rem; color: var(--muted); }
.ccard-price {
  font-size: .88rem; font-weight: 700; color: var(--gold);
  letter-spacing: .04em;
}
.ccard-desc {
  font-size: .78rem; color: var(--muted); line-height: 1.6; margin-top: 4px;
}

/* Services */
.svc-row {
  display: flex; gap: 48px; flex-wrap: wrap; justify-content: center;
}
.svc-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.svc-dot {
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
  margin-top: 7px; flex-shrink: 0;
}
.svc-item > div {
  display: flex; flex-direction: column; gap: 4px;
}
.svc-item strong {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: .85rem; font-weight: 700; color: var(--white);
}
.svc-item span {
  font-size: .72rem; color: var(--muted); letter-spacing: .05em;
}

.rental-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
#footer {
  background: var(--bg1);
  border-top: 1px solid var(--dim);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 72px 40px 52px;
  display: grid; grid-template-columns: auto 1fr 1fr auto;
  gap: 48px; align-items: start;
}
.ft-brand {
  font-size: 2.8rem; font-weight: 800;
  letter-spacing: .04em; color: var(--white); line-height: 1;
}
.ft-addr p, .ft-hours p {
  font-size: .78rem; color: var(--muted); line-height: 2;
}
.ft-mode {
  font-size: .58rem; font-weight: 700; letter-spacing: .18em;
  color: var(--gold); margin-right: 10px; text-transform: uppercase;
}
.ft-contact {
  display: flex; flex-direction: column; gap: 12px;
}
.ft-label {
  font-size: .58rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.ft-email {
  font-size: .88rem; color: var(--gold); font-weight: 400;
  letter-spacing: .02em;
  text-decoration: underline; text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color .2s, text-decoration-color .2s, text-shadow .2s;
}
.ft-email:hover {
  color: var(--gold2);
  text-decoration-color: var(--gold2);
  text-shadow: 0 0 12px rgba(184,151,90,.35);
}
.ft-links {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.ft-links a {
  font-size: .68rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  transition: color .2s;
}
.ft-links a:hover { color: var(--white); }

.ft-bottom {
  border-top: 1px solid var(--dim);
  padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center;
}
.ft-bottom span {
  font-size: .62rem; color: rgba(228,221,212,.2); letter-spacing: .06em;
}

/* ══════════════════════════════════════════════
   SCROLLBAR
   ══════════════════════════════════════════════ */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(184,151,90,.3); }

/* ══════════════════════════════════════════════
   RESPONSIVE — tablet
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .ft-brand { grid-column: 1 / -1; font-size: 2rem; }
  .ft-contact { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 768px) {
  #nav { padding: 0 20px; }
  .nav-burger { display: flex; }
  .nav-list {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.97);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 24px; z-index: 999;
  }
  .nav-list.open { display: flex; }
  .nl { font-size: .82rem; padding: 12px 24px; }

  .modes-row, .club-blocks { grid-template-columns: 1fr; }
  .mcard, .cblock { border-right: none; border-bottom: 1px solid var(--dim); }
  .mcard:last-child, .cblock:last-child { border-bottom: none; }

  .info-row { grid-template-columns: repeat(2,1fr); }
  .iblock { border-right: none; border-bottom: 1px solid var(--dim); }
  .iblock:nth-child(odd) { border-right: 1px solid var(--dim); }

  .cat-grid { grid-template-columns: 1fr; }

  .s-hero, .s-page-hero, .s-info, .s-insta, .s-menu,
  .s-club-info, .s-venue, .s-catering, .s-modes, .s-brand-line {
    padding-left: 20px; padding-right: 20px;
  }
  .footer-inner { grid-template-columns: 1fr; padding: 48px 20px 32px; gap: 28px; }
  .ft-contact { flex-direction: column; gap: 12px; }
  .ft-bottom { padding: 16px 20px; flex-direction: column; gap: 6px; }

  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .club-ctas, .rental-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 400px; }

  .vt-key { width: 130px; font-size: .62rem; padding-right: 12px; }
  .vt-val { font-size: .82rem; }

  .insta-bar { flex-direction: column; gap: 8px; }

  .svc-row { flex-direction: column; align-items: center; gap: 24px; }
}

@media (max-width: 480px) {
  .h-wordmark { font-size: clamp(3.5rem, 20vw, 5rem); }
  .ph-title { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .info-row { grid-template-columns: 1fr; }
  .iblock { border-right: none; }
  .iblock:nth-child(odd) { border-right: none; }
}
