/* ============================================================
   DRAM — Whisky Bar
   Luxury dark + gold theme matching the brand design assets
   ============================================================ */

/* ------- Tokens ------- */
:root {
  --bg-0: #07060a;
  --bg-1: #0d0a12;
  --bg-2: #14101a;
  --bg-3: #1c1622;
  --line: rgba(212, 175, 96, 0.18);
  --line-strong: rgba(212, 175, 96, 0.38);

  --gold-1: #f5d98a;
  --gold-2: #d4af60;
  --gold-3: #a8822f;
  --gold-4: #6b4f1a;
  --gold-grad: linear-gradient(135deg, #f7e29b 0%, #d4af60 35%, #a8822f 70%, #f3d586 100%);
  --gold-grad-soft: linear-gradient(135deg, #f7e29b22 0%, #d4af6022 50%, #a8822f22 100%);

  --text: #ece4d3;
  --text-dim: #b6ad96;
  --text-mute: #807865;

  --font-serif-en: "Cormorant Garamond", "Noto Serif KR", serif;
  --font-display: "Cinzel", "Noto Serif KR", serif;
  --font-script: "Pinyon Script", "Cormorant Garamond", cursive;
  --font-kr: "Noto Serif KR", serif;

  --maxw: 1180px;
  --radius: 14px;
  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 96, 0.35);
}

/* ------- Reset ------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-kr);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold-2); color: #1a1209; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Gold logo helpers
   ============================================================ */
.logo-d,
.brand-d {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(212, 175, 96, .25);
}
.logo-dram,
.brand-dram {
  font-family: var(--font-script);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: .01em;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(7, 6, 10, 0.55);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(7, 6, 10, 0.85);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}
.nav-logo .logo-d { font-size: 28px; }
.nav-logo .logo-dram { font-size: 32px; transform: translateY(2px); }

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-kr);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-grad);
  transition: width .3s, left .3s;
}
.nav-links a:hover { color: var(--gold-1); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold-2);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(212, 175, 96, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(168, 130, 47, 0.22), transparent 60%),
    linear-gradient(180deg, #0a070d 0%, #100a13 50%, #07060a 100%);
  z-index: -2;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      125deg,
      transparent 0 80px,
      rgba(212, 175, 96, 0.025) 80px 81px
    );
  mix-blend-mode: screen;
}
.hero-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .14;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 .85  0 0 0 0 .55  0 0 0 .55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.hero-inner {
  text-align: center;
  padding: 140px 24px 80px;
  max-width: 880px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  letter-spacing: .35em;
  font-size: 12px;
  color: var(--gold-2);
  margin: 0 0 28px;
}
.hero-title {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(8px, 2vw, 22px);
  line-height: 1;
}
.brand-d {
  font-size: clamp(96px, 18vw, 200px);
}
.brand-dram {
  font-size: clamp(96px, 18vw, 220px);
  transform: translateY(.12em);
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 24px 0 28px;
  font-family: var(--font-display);
  letter-spacing: .55em;
  color: var(--gold-2);
  font-size: clamp(12px, 1.4vw, 16px);
}
.hero-divider span {
  display: inline-block;
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  font-size: 0;
}
.hero-tagline {
  font-family: var(--font-kr);
  font-weight: 300;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-dim);
  margin: 0 0 40px;
  line-height: 1.9;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 32px;
  transform: translateX(-50%);
  text-align: center;
}
.hero-scroll span {
  display: block;
  width: 1px; height: 50px;
  margin: 0 auto 8px;
  background: linear-gradient(180deg, transparent, var(--gold-2));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--gold-3);
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .4; }
  50%      { transform: scaleY(1.4); opacity: 1; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  border: 1px solid transparent;
}
.btn-gold {
  background: var(--gold-grad);
  color: #1a1209;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px -10px rgba(212, 175, 96, 0.55);
}
.btn-ghost {
  border-color: var(--gold-3);
  color: var(--gold-1);
}
.btn-ghost:hover {
  background: rgba(212, 175, 96, 0.08);
  border-color: var(--gold-2);
}
.btn-block { width: 100%; }

/* ============================================================
   Section primitives
   ============================================================ */
.section {
  padding: 120px 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--line); }

.section-eyebrow {
  font-family: var(--font-display);
  letter-spacing: .4em;
  font-size: 11px;
  color: var(--gold-3);
  text-align: center;
  margin: 0 0 14px;
}
.section-title {
  font-family: var(--font-kr);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 48px);
  text-align: center;
  margin: 0;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 22px 0 64px;
}
.section-divider::before,
.section-divider::after {
  content: "";
  display: block;
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3), transparent);
}
.section-divider .diamond {
  color: var(--gold-2);
  font-size: 10px;
  transform: rotate(0);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-1); }
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text .lead {
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 24px);
  color: var(--gold-1);
  margin: 0 0 24px;
  line-height: 1.5;
}
.about-text p {
  font-size: 16px;
  color: var(--text-dim);
  margin: 0 0 18px;
}
.about-text em {
  color: var(--gold-1);
  font-style: italic;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat {
  text-align: center;
  padding: 28px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(212, 175, 96, 0.04), transparent);
  position: relative;
  transition: border-color .3s, transform .3s;
}
.stat:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.stat-plus {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-2);
  vertical-align: top;
  margin-left: 2px;
}
.stat-label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--text-mute);
  text-transform: uppercase;
}

/* ============================================================
   SPACE
   ============================================================ */
.space { background: var(--bg-0); }
.space-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.space-card {
  position: relative;
  padding: 40px 32px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(212, 175, 96, 0.05) 0%, transparent 50%),
    var(--bg-2);
  overflow: hidden;
  transition: border-color .35s, transform .35s, box-shadow .35s;
}
.space-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity .35s;
}
.space-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -20px rgba(212, 175, 96, 0.22);
}
.space-card:hover::before { opacity: 1; }
.space-num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--gold-3);
  margin-bottom: 18px;
}
.space-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 4px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.space-kr {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-mute);
  letter-spacing: .05em;
}
.space-desc {
  margin: 0;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ============================================================
   MENU
   ============================================================ */
.menu { background: var(--bg-1); }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 12px 28px;
  font-family: var(--font-kr);
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--text-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all .25s;
}
.menu-tab:hover { color: var(--gold-1); border-color: var(--line-strong); }
.menu-tab.active {
  color: #1a1209;
  background: var(--gold-grad);
  border-color: transparent;
  font-weight: 600;
}

.menu-panels { max-width: 820px; margin: 0 auto; }
.menu-panel {
  display: none;
  animation: fadeUp .45s ease;
}
.menu-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-item {
  padding: 28px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item:last-child { border-bottom: none; }
.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.menu-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-1);
}
.menu-price {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--gold-2);
  font-weight: 600;
}
.menu-desc {
  margin: 0 0 10px;
  color: var(--text-dim);
  font-size: 15px;
}
.menu-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--gold-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* ============================================================
   EVENTS
   ============================================================ */
.events { background: var(--bg-0); }
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.event-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: transform .3s, border-color .3s;
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.event-when {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--gold-3);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.event-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-1);
}
.event-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
}

/* ============================================================
   MEMBERSHIP
   ============================================================ */
.community { background: var(--bg-1); }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tier {
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.tier:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.tier.highlight {
  border-color: var(--gold-3);
  background:
    linear-gradient(180deg, rgba(212, 175, 96, 0.1), transparent 50%),
    var(--bg-2);
  box-shadow: 0 16px 40px -16px rgba(212, 175, 96, 0.3);
}
.tier.highlight::after {
  content: "POPULAR";
  position: absolute;
  top: -10px; right: 16px;
  background: var(--gold-grad);
  color: #1a1209;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .25em;
  padding: 4px 10px;
  border-radius: 999px;
}
.tier header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.tier-icon { font-size: 22px; }
.tier h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tier-cond {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.tier ul li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 6px 0 6px 18px;
  position: relative;
}
.tier ul li::before {
  content: "◆";
  position: absolute;
  left: 0; top: 6px;
  font-size: 8px;
  color: var(--gold-2);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-0); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
}
.contact-block {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
}
.contact-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-block h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--gold-3);
  text-transform: uppercase;
}
.contact-block p {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--text);
}
.contact-block .muted {
  color: var(--text-mute);
  font-size: 14px;
}
.contact-block a:hover { color: var(--gold-1); }
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
  color: var(--text-dim);
}
.hours li span:first-child {
  font-family: var(--font-display);
  color: var(--gold-2);
  letter-spacing: .15em;
  font-size: 13px;
}

/* Form */
.contact-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(212, 175, 96, 0.04), transparent), var(--bg-2);
}
.contact-form h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--gold-3);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-kr);
  font-size: 15px;
  transition: border-color .25s, background .25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  background: rgba(0, 0, 0, 0.55);
}
.field input.error,
.field select.error,
.field textarea.error {
  border-color: #c84d4d;
}
.field textarea { resize: vertical; }
.form-note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-inner { text-align: center; }
.footer-brand {
  margin-bottom: 32px;
}
.footer-brand .logo-d { font-size: 44px; }
.footer-brand .logo-dram { font-size: 52px; vertical-align: middle; }
.footer-tagline {
  margin: 6px 0 0;
  font-family: var(--font-display);
  letter-spacing: .5em;
  font-size: 11px;
  color: var(--gold-3);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: left;
}
.footer-cols h4 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--gold-2);
  text-transform: uppercase;
}
.footer-cols p {
  margin: 4px 0;
  font-size: 14px;
  color: var(--text-dim);
}
.copyright {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: .15em;
  color: var(--text-mute);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn .25s ease;
}
.modal[hidden] { display: none; }
.modal-card {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  max-width: 380px;
  width: calc(100% - 32px);
  animation: popIn .35s ease;
}
.modal-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.modal-card p {
  color: var(--text-dim);
  margin: 0 0 24px;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn  { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 720px) {
  .section { padding: 90px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(7, 6, 10, 0.97);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
  }
  .space-grid,
  .event-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-inner { padding: 120px 16px 80px; }
  .contact-form { padding: 24px; }
}

/* ============================================================
   NEW (v17) — Logo images / Space photos / Menu QR / Events
   ============================================================ */

/* ── Logo image (nav / hero / footer) ── */
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo-img {
  height: 38px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 96, .2));
  transition: opacity .2s;
}
.nav-logo:hover .nav-logo-img { opacity: .85; }

.hero-logo-img {
  display: block;
  width: clamp(280px, 60vw, 620px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 14px 40px rgba(212, 175, 96, .3));
  animation: heroLogoIn 1.2s cubic-bezier(.2, .7, .2, 1) both;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.footer-logo-img {
  width: clamp(160px, 28vw, 240px);
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(212, 175, 96, .25));
}

/* ── About stats simplified (2 columns) ── */
.about-grid .stats { grid-template-columns: repeat(2, 1fr); }
#statWhisky, #statCocktail {
  transition: opacity .3s;
}

/* ── Space photo grid ── */
.space-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.space-photo {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, .35);
  cursor: zoom-in;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.space-photo:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 55px -22px rgba(212, 175, 96, .35);
}
.space-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.space-photo:hover img { transform: scale(1.05); }
.space-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}

@media (max-width: 720px) {
  .space-photo-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ── Menu (index) loading + dynamic items ── */
.menu-loading {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-mute);
  font-size: 14px;
  letter-spacing: .12em;
}

/* ── Menu QR card (index) ── */
.menu-qr-card {
  margin-top: 48px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(212, 175, 96, .04), transparent 60%),
    var(--bg-2);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.menu-qr-visual { text-align: center; }
.menu-qr-box {
  display: inline-block;
  padding: 14px;
  background: linear-gradient(135deg, #f7e29b 0%, #f5d98a 100%);
  border-radius: 10px;
  box-shadow: 0 14px 35px -12px rgba(212, 175, 96, .35);
}
.menu-qr-box img { display: block; width: 200px; height: 200px; }
.menu-qr-caption {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .4em;
  color: var(--gold-3);
}
.menu-qr-label {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--gold-3);
  text-transform: uppercase;
}
.menu-qr-info > h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-1);
}
.menu-qr-desc {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .menu-qr-card { grid-template-columns: 1fr; padding: 22px; text-align: center; }
  .menu-qr-box img { width: 180px; height: 180px; }
}

/* ── Event tag (replaces .event-when as a bigger label) ── */
.event-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .3em;
  color: #1a1209;
  background: var(--gold-grad);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ── Membership join CTA ── */
.membership-cta {
  text-align: center;
  margin-top: 40px;
}
#joinMembershipBtn {
  padding: 16px 40px;
  font-size: 14px;
  letter-spacing: .25em;
}

/* ── Membership modal admin-style ── */
#memberModal .modal-card {
  text-align: left;
}
#memberModal .modal-card h3 {
  text-align: center;
  margin: 0 0 24px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
#memberModal .field { margin-bottom: 14px; }
#memberModal .modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 14px;
}


/* ── menu.html header brand image ── */
.menu-brand-img {
  display: block;
  width: clamp(220px, 60vw, 460px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(212, 175, 96, .3));
}

/* Membership note (v32) */
.membership-note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--gold-3);
  font-style: italic;
}
.membership-note:empty { display: none; }

/* Closed-day mark (일요일 휴무) */
.hours .closed {
  color: #ff8e7a;
  font-weight: 500;
}

/* ============================================================
   SERVICES & POLICY — 보틀 킵 + 반입 안주
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.service-card {
  padding: 32px 30px;
  background:
    linear-gradient(180deg, rgba(212,175,96,.05), transparent 60%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s, transform .25s;
}
.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.service-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.service-icon {
  font-size: 28px;
}
.service-head h3 {
  margin: 0;
  font-family: var(--font-kr);
  font-weight: 500;
  font-size: 22px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  line-height: 1.9;
  color: var(--text-dim);
  font-size: 15px;
}
.service-list li {
  position: relative;
  padding-left: 18px;
}
.service-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold-3);
}
.service-list strong { color: var(--gold-1); }
.service-list .muted { color: var(--text-mute); font-size: 13px; }

.service-perks {
  padding: 18px 20px;
  background: rgba(0,0,0,.3);
  border: 1px dashed var(--gold-3);
  border-radius: 10px;
}
.service-perks-label {
  margin: 0 0 12px;
  font-family: var(--font-display);
  letter-spacing: .25em;
  font-size: 11px;
  color: var(--gold-3);
  text-align: center;
}
.service-perks-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.service-perks-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 14px;
}
.perk-tier {
  flex-shrink: 0;
  min-width: 110px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
}
.perk-gold {
  background: rgba(245, 217, 138, .15);
  color: var(--gold-1);
  border: 1px solid var(--gold-2);
}
.perk-platinum {
  background: rgba(212, 175, 96, .25);
  color: #1a1209;
  background-image: var(--gold-grad);
  border: 1px solid var(--gold-2);
}

/* 반입 안주 블록 */
.bring-block {
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.bring-block.bring-allow {
  background: rgba(108, 217, 123, .06);
  border-color: rgba(108, 217, 123, .3);
}
.bring-block.bring-deny {
  background: rgba(255, 142, 122, .06);
  border-color: rgba(255, 142, 122, .3);
}
.bring-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-kr);
  color: var(--text);
}
.bring-allow .bring-title { color: #6cd97b; }
.bring-deny  .bring-title { color: #ff8e7a; }

.bring-desc {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.bring-desc strong { color: var(--gold-1); }

.bring-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bring-list li {
  padding: 4px 12px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-dim);
}
.bring-allow .bring-list li { border-color: rgba(108, 217, 123, .25); }
.bring-deny  .bring-list li { border-color: rgba(255, 142, 122, .25); color: var(--text-mute); }

.bring-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: rgba(212, 175, 96, .06);
  border-left: 2px solid var(--gold-3);
  border-radius: 4px;
  font-size: 13px;
  font-style: italic;
  color: var(--gold-3);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .service-card { padding: 24px 22px; }
  .service-head h3 { font-size: 19px; }
  .perk-tier { min-width: 90px; font-size: 11px; }
}

/* ============================================================
   SCOTLAND WHISKY REGIONS
   ============================================================ */
.regions {
  background:
    radial-gradient(ellipse 50% 35% at 20% 30%, rgba(212, 175, 96, .06), transparent 60%),
    radial-gradient(ellipse 50% 35% at 80% 70%, rgba(168, 130, 47, .05), transparent 60%);
}
.region-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.8;
}
.region-intro strong { color: var(--gold-1); }

.regions-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 40px;
  align-items: start;
}

/* SVG MAP */
.map-wrap {
  position: sticky;
  top: 100px;
  display: flex;
  justify-content: center;
}
.scotland-map {
  width: 100%;
  max-width: 360px;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-1);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.6);
}

.region-shape {
  fill: rgba(212, 175, 96, .18);
  stroke: var(--gold-3);
  stroke-width: 1.2;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  cursor: pointer;
}
.region-shape:hover {
  fill: rgba(212, 175, 96, .35);
  stroke: var(--gold-1);
  stroke-width: 1.6;
  filter: drop-shadow(0 0 12px rgba(212, 175, 96, .5));
}
.region-shape.active {
  fill: url(#glow), rgba(212, 175, 96, .55);
  fill: rgba(245, 217, 138, .55);
  stroke: var(--gold-1);
  stroke-width: 2;
  filter: drop-shadow(0 0 16px rgba(245, 217, 138, .6));
}
.region-label text {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .15em;
  fill: var(--gold-2);
  pointer-events: none;
  text-shadow: 0 0 4px rgba(0,0,0,.8);
}
.region-label[data-region="highland"] text   { fill: #f5d98a; }
.region-label[data-region="speyside"] text   { fill: #f7e29b; font-size: 7px; }
.region-label[data-region="lowland"] text    { fill: #f5d98a; }
.region-label[data-region="islay"] text      { fill: #f5d98a; font-size: 7px; }
.region-label[data-region="campbeltown"] text { fill: #f5d98a; font-size: 6.5px; }

/* REGION CARDS */
.regions-cards {
  display: grid;
  gap: 16px;
}
.region-card {
  padding: 22px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-3);
  border-radius: 12px;
  transition: all .3s;
  cursor: pointer;
}
.region-card:hover {
  border-color: var(--line-strong);
  border-left-color: var(--gold-2);
  transform: translateX(4px);
}
.region-card.active {
  background:
    linear-gradient(180deg, rgba(212, 175, 96, .08), transparent 60%),
    var(--bg-2);
  border-color: var(--gold-2);
  border-left-color: var(--gold-1);
  box-shadow: 0 14px 36px -10px rgba(212, 175, 96, .25);
}
.region-card header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
}
.region-badge {
  font-size: 26px;
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 96, .12);
  border: 1px solid var(--line-strong);
}
.region-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.region-card .r-ko {
  display: block;
  font-family: var(--font-kr);
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 2px;
  background: none;
  -webkit-text-fill-color: var(--text-dim);
}
.r-desc {
  margin: 0 0 16px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.75;
}

.r-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1), opacity .3s;
  opacity: 0;
  padding-top: 0;
  border-top: 0 solid transparent;
}
.region-card.active .r-detail {
  max-height: 1000px;
  opacity: 1;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  margin-top: 4px;
}
.r-detail-label {
  margin: 12px 0 4px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--gold-3);
  text-transform: uppercase;
}
.r-distillers {
  margin: 0;
  font-size: 13px;
  color: var(--gold-1);
  line-height: 1.7;
}
.r-lineup {
  margin: 0;
  padding-left: 16px;
  list-style: '✦  ';
}
.r-lineup li {
  font-size: 13px;
  color: var(--text-dim);
  margin: 4px 0;
}
.r-feature {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .regions-layout { grid-template-columns: 1fr; }
  .map-wrap { position: relative; top: auto; }
  .scotland-map { max-width: 280px; }
}

/* 가챠 이벤트 카드 강조 */
.event-card.gacha-card {
  background:
    linear-gradient(135deg, rgba(245, 217, 138, .08) 0%, rgba(168, 130, 47, .04) 100%),
    var(--bg-2);
  border-color: var(--gold-3);
  position: relative;
  overflow: hidden;
}
.event-card.gacha-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(245, 217, 138, .12) 20%, transparent 40%);
  animation: gachaShine 8s linear infinite;
  pointer-events: none;
}
@keyframes gachaShine {
  to { transform: rotate(360deg); }
}
.event-card.gacha-card > * { position: relative; z-index: 1; }
.event-card.gacha-card .event-tag {
  background: var(--gold-grad);
  color: #1a1209;
}

/* ============================================================
   Scotland Map — Vintage Cartography 보강
   ============================================================ */
.scotland-map {
  max-width: 380px;
  aspect-ratio: 380 / 560;
  background: linear-gradient(180deg, #1a1c28 0%, #08090f 100%);
}

/* 베이스 육지 (실제 스코틀랜드 + 섬들) */
.land-base {
  fill: url(#landBase);
  stroke: rgba(212, 175, 96, .45);
  stroke-width: 0.7;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .5));
}

/* 지역 오버레이 — 반투명 색상 영역 */
.region-shape {
  fill: rgba(212, 175, 96, .12);
  stroke: rgba(245, 217, 138, .55);
  stroke-width: 1.2;
  stroke-linejoin: round;
  cursor: pointer;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  mix-blend-mode: screen;
}
.region-shape:hover {
  fill: rgba(245, 217, 138, .28);
  stroke: rgba(247, 226, 155, .9);
  stroke-width: 1.6;
  filter: drop-shadow(0 0 12px rgba(245, 217, 138, .6));
}
.region-shape.active {
  fill: rgba(247, 226, 155, .42);
  stroke: #f7e29b;
  stroke-width: 2;
  filter: drop-shadow(0 0 18px rgba(247, 226, 155, .8));
}

/* 핀 마커 깜빡임 */
.map-pins circle {
  filter: drop-shadow(0 0 4px rgba(247, 226, 155, .8));
  animation: pinBlink 3s ease-in-out infinite;
}
.map-pins circle:nth-child(2) { animation-delay: .5s; }
.map-pins circle:nth-child(3) { animation-delay: 1s; }
.map-pins circle:nth-child(4) { animation-delay: 1.5s; }
.map-pins circle:nth-child(5) { animation-delay: 2s; }
@keyframes pinBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}

/* 지역 라벨 */
.region-label text {
  font-family: var(--font-display), serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
  fill: #f7e29b;
  pointer-events: none;
  text-shadow: 0 0 6px rgba(0, 0, 0, .9), 0 0 3px rgba(0, 0, 0, 1);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .9));
}
.region-label[data-region="speyside"] text   { font-size: 7.5px; }
.region-label[data-region="islay"] text      { font-size: 8px; }
.region-label[data-region="campbeltown"] text { font-size: 7px; }
.region-label.active text {
  fill: #fff8e0;
  font-size: 10px;
  filter: drop-shadow(0 0 8px rgba(247, 226, 155, 1));
}

/* 컴파스 회전 애니메이션 (호버 시) */
.scotland-map g[transform*="translate(40 510)"] {
  transition: transform .6s ease;
  transform-origin: 40px 510px;
}
.scotland-map:hover g[transform*="translate(40 510)"] {
  transform: translate(40px, 510px) rotate(45deg);
}

/* 지도 wrapper 보강 */
.map-wrap .scotland-map {
  border: 1px solid rgba(212, 175, 96, .4);
  border-radius: 8px;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, .8),
    inset 0 0 0 1px rgba(212, 175, 96, .15);
}

/* Contact 주소 - 지도 버튼 */
.map-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.map-link .raw-emoji {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: initial !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}
