/*
Theme Name: 강남 하이퍼블릭 NEON
Theme URI: https://example.com
Author: GHP Studio
Description: 강남 달토·도파민·유앤미·퍼펙트 — 넥슨폰트 기반 프리미엄 테마
Version: 4.0.0
Requires at least: 5.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: ghp-neon
*/

/* ╔══════════════════════════════════════════════════╗
   ║  NEXON FONTS (CDN)                               ║
   ╚══════════════════════════════════════════════════╝ */
@font-face {
  font-family: 'NEXON Lv1 Gothic';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON-Lv1-Gothic-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NEXON Lv1 Gothic';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON-Lv1-Gothic-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NEXON Lv2 Gothic';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON-Lv2-Gothic-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NEXON Lv2 Gothic';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.1/NEXON-Lv2-Gothic-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ╔══════════════════════════════════════════════════╗
   ║  DESIGN TOKENS                                   ║
   ╚══════════════════════════════════════════════════╝ */
:root {
  /* Palette */
  --black:        #080808;
  --black-2:      #0f0f0f;
  --black-3:      #161616;
  --black-4:      #1e1e1e;
  --crimson:      #d9003a;
  --crimson-deep: #a0002b;
  --crimson-glow: rgba(217,0,58,0.2);
  --pink:         #f0246e;
  --pink-soft:    #f76fa0;
  --pink-glow:    rgba(240,36,110,0.18);
  --gold:         #e8b830;
  --gold-pale:    #f5d878;
  --gold-glow:    rgba(232,184,48,0.16);
  --white:        #f8f4f5;
  --off-white:    #e8dde0;
  --grey:         #8a8a8a;
  --grey-light:   #c0baba;
  --border-dim:   rgba(255,255,255,0.06);
  --border-red:   rgba(217,0,58,0.2);
  --border-gold:  rgba(232,184,48,0.18);

  /* ─── 글로우 대폭 줄임 (눈 보호) ─── */
  --glow-red:     0 0 12px rgba(217,0,58,0.4), 0 0 28px rgba(217,0,58,0.15);
  --glow-pink:    0 0 12px rgba(240,36,110,0.35), 0 0 24px rgba(240,36,110,0.12);
  --glow-gold:    0 0 12px rgba(232,184,48,0.4),  0 0 24px rgba(232,184,48,0.12);
  --text-glow-r:  0 0 8px rgba(217,0,58,0.5);
  --text-glow-p:  0 0 8px rgba(240,36,110,0.45);
  --text-glow-g:  0 0 8px rgba(232,184,48,0.5);

  /* Typography — 넥슨 폰트 */
  --font-display: 'NEXON Lv1 Gothic', 'Apple SD Gothic Neo', sans-serif;
  --font-heading: 'NEXON Lv1 Gothic', 'Apple SD Gothic Neo', sans-serif;
  --font-body:    'NEXON Lv2 Gothic', 'Apple SD Gothic Neo', sans-serif;
  --font-accent:  'NEXON Lv1 Gothic', 'Apple SD Gothic Neo', sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Sizing */
  --max-w: 1280px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.4,0,0.2,1);
  --slow: 0.5s cubic-bezier(0.4,0,0.2,1);
  --fast: 0.2s cubic-bezier(0.4,0,0.2,1);
}

/* ╔══════════════════════════════════════════════════╗
   ║  RESET & BASE                                    ║
   ╚══════════════════════════════════════════════════╝ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grid overlay texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,0,61,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,0,61,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

a { color: var(--pink); text-decoration: none; transition: color var(--fast); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ╔══════════════════════════════════════════════════╗
   ║  LAYOUT                                          ║
   ╚══════════════════════════════════════════════════╝ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.section      { padding: 100px 0; }
.section--sm  { padding: 64px 0; }
.section--lg  { padding: 140px 0; }

/* ╔══════════════════════════════════════════════════╗
   ║  NEON DECORATORS                                 ║
   ╚══════════════════════════════════════════════════╝ */
.neon-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--crimson);
  text-shadow: var(--text-glow-r);
  display: block;
  margin-bottom: 14px;
}

.neon-line {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--pink), transparent);
  box-shadow: 0 0 8px rgba(217,0,58,0.3);
  margin: 16px 0 28px;
}

.neon-line--full { margin-left: 0; width: 100%; }
.neon-line--center { margin-left: auto; margin-right: auto; width: 200px; background: linear-gradient(90deg, transparent, var(--crimson), var(--pink), transparent); }

.slash-deco {
  color: var(--crimson);
  font-style: normal;
  text-shadow: var(--text-glow-r);
}

/* ╔══════════════════════════════════════════════════╗
   ║  HEADER                                          ║
   ╚══════════════════════════════════════════════════╝ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  transition: background var(--slow), box-shadow var(--slow);
  padding: 0;
}

#site-header.scrolled {
  background: rgba(4,4,4,0.96);
  backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 var(--border-red), 0 4px 40px rgba(232,0,61,0.08);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo */
.site-logo { display: flex; flex-direction: column; gap: 4px; }

.logo-mark {
  font-family: var(--font-accent);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.logo-mark span { color: var(--crimson); text-shadow: var(--text-glow-r); }

.logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--grey);
}

/* Nav */
.main-nav ul { display: flex; align-items: center; gap: 4px; }

.main-nav li a {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0em;
  font-weight: 500;
  color: var(--grey-light);
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--fast);
}

.main-nav li a:hover,
.main-nav li.current-menu-item > a {
  color: var(--white);
  border-color: var(--border-red);
  background: rgba(217,0,58,0.06);
}

/* Venue color overrides in nav */
.main-nav li.venue-dalto    > a { border-left: 3px solid #d9003a; }
.main-nav li.venue-dopamine > a { border-left: 3px solid #ff6b2b; }
.main-nav li.venue-unme     > a { border-left: 3px solid #c026d3; }
.main-nav li.venue-perfect  > a { border-left: 3px solid #e8b830; }
.main-nav li.venue-jjumoh   > a { border-left: 3px solid #00b4d8; }

.main-nav li.venue-dalto    > a:hover { background: rgba(217,0,58,0.08);   color: #ff6680; border-color: #d9003a; }
.main-nav li.venue-dopamine > a:hover { background: rgba(255,107,43,0.08); color: #ff9a6a; border-color: #ff6b2b; }
.main-nav li.venue-unme     > a:hover { background: rgba(192,38,211,0.08); color: #e060f0; border-color: #c026d3; }
.main-nav li.venue-perfect  > a:hover { background: rgba(232,184,48,0.08); color: #f5d060; border-color: #e8b830; }
.main-nav li.venue-jjumoh   > a:hover { background: rgba(0,180,216,0.08);  color: #40d0f0; border-color: #00b4d8; }

.nav-cta-btn {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  background: var(--crimson) !important;
  color: var(--white) !important;
  border-color: var(--crimson) !important;
  box-shadow: 0 0 12px rgba(217,0,58,0.3);
  letter-spacing: 0 !important;
}

.nav-cta-btn:hover {
  background: var(--pink) !important;
  border-color: var(--pink) !important;
  box-shadow: 0 0 12px rgba(240,36,110,0.3) !important;
  color: var(--white) !important;
}

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--crimson);
  box-shadow: var(--glow-red);
  transition: var(--slow);
}

.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile overlay nav */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 76px 0 0;
  background: rgba(4,4,4,0.98);
  backdrop-filter: blur(24px);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mobile-overlay.is-open { display: flex; }

.mobile-overlay a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  padding: 10px 32px;
  transition: color var(--fast), text-shadow var(--fast);
}

.mobile-overlay a:hover {
  color: var(--crimson);
}

/* ╔══════════════════════════════════════════════════╗
   ║  BUTTONS                                         ║
   ╚══════════════════════════════════════════════════╝ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--slow);
  white-space: nowrap;
}

.btn-red {
  background: var(--crimson);
  color: var(--white);
  box-shadow: var(--glow-red), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-red:hover {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--glow-pink);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--crimson);
  border: 1.5px solid var(--crimson);
  box-shadow: 0 0 8px rgba(232,0,61,0.2);
}

.btn-outline-red:hover {
  background: rgba(232,0,61,0.08);
  color: var(--pink);
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  box-shadow: var(--glow-gold);
}

.btn-gold:hover {
  background: var(--gold-pale);
  color: var(--black);
  box-shadow: 0 0 30px rgba(245,200,66,0.7);
  transform: translateY(-2px);
}

/* ╔══════════════════════════════════════════════════╗
   ║  HERO — MAIN PAGE                                ║
   ╚══════════════════════════════════════════════════╝ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(232,0,61,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(255,45,120,0.08) 0%, transparent 60%),
    var(--black);
}

.hero-vignette {
  display: none;
}

/* Animated scanlines */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.06) 2px,
    rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  /* 텍스트 가독성 — 이미지 오버레이 없이 */
  background: linear-gradient(90deg, rgba(4,4,4,0.55) 0%, rgba(4,4,4,0.2) 55%, transparent 100%);
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 12px;
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--crimson);
  text-shadow: var(--text-glow-r);
  display: block;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.2s var(--ease) forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 11vw, 130px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.4s var(--ease) forwards;
}

.hero h1 .neon-r {
  color: var(--crimson);
  text-shadow: var(--text-glow-r);
}

.hero h1 .neon-p {
  color: var(--pink);
  text-shadow: var(--text-glow-p);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}

.hero-sub {
  font-size: 15px;
  color: var(--grey-light);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.75s var(--ease) forwards;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

.hero-sub .sep { color: var(--crimson); margin: 0 8px; }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s 0.9s var(--ease) forwards;
}

/* Red horizontal line under hero heading */
.hero-rule {
  display: block;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--pink));
  box-shadow: var(--glow-pink);
  margin: 24px 0;
  opacity: 0;
  animation: fadeUp 0.7s 0.58s var(--ease) forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.7s 1.2s var(--ease) forwards;
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--grey);
  
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--crimson), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ╔══════════════════════════════════════════════════╗
   ║  SECTION HEADERS                                 ║
   ╚══════════════════════════════════════════════════╝ */
.sh {
  margin-bottom: 60px;
}

.sh--center { text-align: center; }

.sh h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.sh h2 .cr { color: var(--crimson); text-shadow: var(--text-glow-r); }
.sh h2 .pk { color: var(--pink);    text-shadow: var(--text-glow-p); }
.sh h2 .gd { color: var(--gold);    text-shadow: var(--text-glow-g); }

.sh p {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.85;
  max-width: 560px;
  margin-top: 16px;
}

.sh--center p { margin: 16px auto 0; }

/* ╔══════════════════════════════════════════════════╗
   ║  VENUE CARDS — MAIN PAGE                         ║
   ╚══════════════════════════════════════════════════╝ */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.vc {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: var(--black-3);
}

.vc-img {
  position: absolute;
  inset: 0;
}

.vc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}

.vc-img-ph {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--black-3), var(--black-4));
}

.vc:hover .vc-img img {
  transform: scale(1.07);
  filter: none;
}

/* Neon border on hover */
.vc::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color var(--slow), box-shadow var(--slow);
  z-index: 3;
  pointer-events: none;
}

.vc:hover::after {
  border-color: var(--crimson);
  box-shadow: inset 0 0 30px rgba(232,0,61,0.12), var(--glow-red);
}

.vc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4,4,4,0.97) 0%,
    rgba(4,4,4,0.6) 55%,
    rgba(4,4,4,0.1) 100%
  );
  z-index: 1;
}

.vc-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px;
  z-index: 2;
}

.vc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--crimson);
  text-shadow: var(--text-glow-r);
  display: block;
  margin-bottom: 10px;
}

.vc-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.vc-desc {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
}

.vc:hover .vc-desc {
  max-height: 80px;
  opacity: 1;
}

.vc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  
  color: var(--gold);
  text-shadow: var(--text-glow-g);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--slow), transform var(--slow);
}

.vc:hover .vc-arrow { opacity: 1; transform: translateY(0); }

/* ╔══════════════════════════════════════════════════╗
   ║  STEP CARDS                                      ║
   ╚══════════════════════════════════════════════════╝ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.step-card {
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--slow), background var(--slow);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--pink));
  box-shadow: var(--glow-pink);
  opacity: 0;
  transition: opacity var(--slow);
}

.step-card:hover {
  border-color: var(--border-red);
  background: rgba(232,0,61,0.04);
}

.step-card:hover::before { opacity: 1; }

.step-num-bg {
  position: absolute;
  bottom: -20px;
  right: 16px;
  font-family: var(--font-accent);
  font-size: 100px;
  color: rgba(232,0,61,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step-n {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--crimson);
  text-shadow: var(--text-glow-r);
  display: block;
  margin-bottom: 16px;
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.step-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
}

/* ╔══════════════════════════════════════════════════╗
   ║  FEATURE CARDS                                   ║
   ╚══════════════════════════════════════════════════╝ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feat-card {
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--slow);
  position: relative;
  overflow: hidden;
}

.feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,0,61,0.03), transparent 60%);
  opacity: 0;
  transition: opacity var(--slow);
}

.feat-card:hover {
  border-color: var(--border-red);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(232,0,61,0.1);
}

.feat-card:hover::after { opacity: 1; }

.feat-ico {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.feat-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
}

/* ╔══════════════════════════════════════════════════╗
   ║  COMPARISON TABLE                                ║
   ╚══════════════════════════════════════════════════╝ */
.table-outer {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-red);
  box-shadow: 0 0 30px rgba(232,0,61,0.06);
}

.compare-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-tbl th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  
  color: var(--gold);
  text-shadow: var(--text-glow-g);
  padding: 22px 28px;
  text-align: left;
  background: rgba(245,200,66,0.04);
  border-bottom: 1px solid var(--border-gold);
  white-space: nowrap;
}

.compare-tbl td {
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-dim);
  color: var(--grey-light);
  vertical-align: top;
}

.compare-tbl td:first-child { color: var(--white); font-weight: 500; }
.compare-tbl tr:last-child td { border-bottom: none; }

.compare-tbl tbody tr {
  transition: background var(--fast);
}

.compare-tbl tbody tr:hover { background: rgba(232,0,61,0.03); }

.badge-r { display: inline-block; padding: 3px 12px; border-radius: 2px; font-size: 12px; font-weight: 600; background: rgba(232,0,61,0.15); color: var(--crimson); text-shadow: 0 0 6px rgba(232,0,61,0.5); }
.badge-p { display: inline-block; padding: 3px 12px; border-radius: 2px; font-size: 12px; font-weight: 600; background: rgba(255,45,120,0.12); color: var(--pink); text-shadow: 0 0 6px rgba(255,45,120,0.4); }
.badge-g { display: inline-block; padding: 3px 12px; border-radius: 2px; font-size: 12px; font-weight: 600; background: rgba(245,200,66,0.1); color: var(--gold); }
.badge-dim { display: inline-block; padding: 3px 12px; border-radius: 2px; font-size: 12px; color: var(--grey); background: rgba(255,255,255,0.05); }

/* ╔══════════════════════════════════════════════════╗
   ║  REVIEW CARDS                                    ║
   ╚══════════════════════════════════════════════════╝ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rv-card {
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--slow), transform var(--slow);
}

.rv-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 100px;
  color: var(--crimson);
  opacity: 0.08;
  position: absolute;
  top: -10px;
  left: 12px;
  line-height: 1;
  pointer-events: none;
}

.rv-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
}

.rv-stars {
  color: var(--gold);
  font-size: 16px;
  text-shadow: var(--text-glow-g);
  margin-bottom: 14px;
}

.rv-text {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.8;
  font-style: italic;
}

/* ╔══════════════════════════════════════════════════╗
   ║  FAQ                                             ║
   ╚══════════════════════════════════════════════════╝ */
.faq-wrap { max-width: 840px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border-dim); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--fast);
}

.faq-q:hover { color: var(--crimson); }

.faq-icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--crimson);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(232,0,61,0.3);
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--crimson);
  top: 50%; left: 50%;
}

.faq-icon::before {
  width: 9px; height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px; height: 9px;
  transform: translate(-50%, -50%);
  transition: transform var(--fast), opacity var(--fast);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a p {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.85;
  padding-bottom: 26px;
}

.faq-item.open .faq-a { max-height: 220px; }

/* ╔══════════════════════════════════════════════════╗
   ║  PRICING GRID                                    ║
   ╚══════════════════════════════════════════════════╝ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.p-card {
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--slow);
}

.p-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232,0,61,0.08);
}

.p-card--hot {
  border-color: var(--crimson) !important;
  background: linear-gradient(135deg, rgba(232,0,61,0.08), rgba(255,45,120,0.04)) !important;
  box-shadow: 0 0 0 1px rgba(232,0,61,0.2), var(--glow-red);
}

.p-icon { font-size: 28px; margin-bottom: 12px; }

.p-card h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.p-card p { font-size: 13px; color: var(--grey); line-height: 1.7; }

.pricing-note {
  background: rgba(245,200,66,0.05);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 20px 28px;
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.7;
}

.pricing-note strong { color: var(--gold); text-shadow: var(--text-glow-g); }

/* ╔══════════════════════════════════════════════════╗
   ║  GALLERY                                         ║
   ╚══════════════════════════════════════════════════╝ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  transition: border-color var(--slow);
}

.g-item:hover { border-color: var(--border-red); }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.g-item:hover img { transform: scale(1.06); }

.g-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(4,4,4,0.9), transparent);
}

.g-cap-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--crimson);
  text-shadow: var(--text-glow-r);
  display: block;
  margin-bottom: 4px;
}

.g-cap-text { font-size: 13px; color: var(--white); }

.g-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--border-red);
  border-radius: var(--radius);
}

.g-ph-ico {
  width: 52px; height: 52px;
  background: rgba(232,0,61,0.08);
  border-radius: 50%;
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-ph-ico svg { width: 24px; height: 24px; color: var(--crimson); opacity: 0.6; }

.g-ph p { font-size: 13px; color: var(--grey); text-align: center; }
.g-ph span { font-family: var(--font-mono); font-size: 10px; color: rgba(232,0,61,0.4); letter-spacing: 0.15em; }

/* ╔══════════════════════════════════════════════════╗
   ║  TIPS                                            ║
   ╚══════════════════════════════════════════════════╝ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tip-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  transition: border-color var(--slow);
}

.tip-item:hover { border-color: var(--border-red); }

.tip-n {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--crimson);
  text-shadow: var(--text-glow-r);
  min-width: 30px;
  padding-top: 1px;
}

.tip-t { font-size: 15px; color: var(--grey-light); line-height: 1.7; }

/* ╔══════════════════════════════════════════════════╗
   ║  TOP3 CARDS                                      ║
   ╚══════════════════════════════════════════════════╝ */
.top3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.top3-card {
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--slow);
}

.top3-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--pink));
  box-shadow: var(--glow-pink);
  opacity: 0;
  transition: opacity var(--slow);
}

.top3-card:hover, .top3-card--active {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(232,0,61,0.1);
}

.top3-card:hover::before, .top3-card--active::before { opacity: 1; }

.top3-cur {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--crimson);
  text-shadow: var(--text-glow-r);
  display: block;
  margin-bottom: 10px;
}

.top3-card h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.top3-card p { font-size: 14px; color: var(--grey); line-height: 1.75; margin-bottom: 20px; }

.top3-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  
  color: var(--pink);
  text-shadow: var(--text-glow-p);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--fast);
}

.top3-link:hover { color: var(--gold); }

/* ╔══════════════════════════════════════════════════╗
   ║  INFO META BLOCK                                 ║
   ╚══════════════════════════════════════════════════╝ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.info-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.info-text p {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.meta-list { display: flex; flex-direction: column; gap: 16px; }

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--black-2);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  transition: border-color var(--slow);
}

.meta-item:hover { border-color: var(--border-red); }

.meta-ico {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(232,0,61,0.08);
  border: 1px solid var(--border-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meta-ico svg { width: 18px; height: 18px; color: var(--crimson); }

.meta-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  
  color: var(--grey);
  margin-bottom: 5px;
}

.meta-val { font-size: 15px; color: var(--white); font-weight: 500; }

.stars { color: var(--gold); text-shadow: var(--text-glow-g); font-size: 16px; }

/* ╔══════════════════════════════════════════════════╗
   ║  SUBPAGE HERO                                    ║
   ╚══════════════════════════════════════════════════╝ */
.sub-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}

.sub-hero-bg {
  position: absolute;
  inset: 0;
}

.sub-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
}

.sub-hero-bg-ph {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,0,61,0.1) 0%, transparent 70%), var(--black);
}

.sub-hero-overlay {
  display: none;
}

.sub-hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.05) 2px,
    rgba(0,0,0,0.05) 4px
  );
  pointer-events: none;
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(4,4,4,0.45);
  padding: 48px 40px;
  border-radius: 12px;
  display: inline-block;
  width: 100%;
}

.sub-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.sub-hero-content h1 .cr {
  color: var(--crimson);
  text-shadow: var(--text-glow-r);
}

.sub-hero-tag {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--grey-light);
  font-style: italic;
  font-family: var(--font-heading);
  margin-bottom: 32px;
}

.sub-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ╔══════════════════════════════════════════════════╗
   ║  CTA BANNER                                      ║
   ╚══════════════════════════════════════════════════╝ */
.cta-strip {
  background: var(--black-2);
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border-red);
  box-shadow: 0 0 60px rgba(232,0,61,0.06) inset;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,0,61,0.05) 0%, transparent 70%);
}

.cta-strip .wrap { position: relative; z-index: 1; }

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta-strip h2 .cr { color: var(--crimson); text-shadow: var(--text-glow-r); }

.cta-strip p {
  font-size: 17px;
  color: var(--grey-light);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ╔══════════════════════════════════════════════════╗
   ║  FLOATING CONTACT                                ║
   ╚══════════════════════════════════════════════════╝ */
.float-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  transition: all var(--slow);
  white-space: nowrap;
}

.float-btn:hover { transform: translateY(-3px); }

.float-kakao {
  background: #FEE500;
  color: #3C1E1E;
  box-shadow: 0 4px 20px rgba(254,229,0,0.3);
}

.float-kakao:hover {
  background: #FFD700;
  color: #3C1E1E;
  box-shadow: 0 8px 32px rgba(254,229,0,0.45);
}

.float-call {
  background: var(--crimson);
  color: var(--white);
  box-shadow: var(--glow-red);
}

.float-call:hover {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--glow-pink);
}

/* ╔══════════════════════════════════════════════════╗
   ║  FOOTER                                          ║
   ╚══════════════════════════════════════════════════╝ */
#site-footer {
  background: var(--black);
  border-top: 1px solid var(--border-dim);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dim);
  margin-bottom: 32px;
}

.footer-brand-logo {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
  
}

.footer-brand-logo span { color: var(--crimson); text-shadow: var(--text-glow-r); }

.footer-brand p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.85;
  max-width: 280px;
}

.footer-contacts {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contacts span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.04em;
}

.footer-nav-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  
  color: var(--crimson);
  text-shadow: var(--text-glow-r);
  display: block;
  margin-bottom: 18px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-links a {
  font-size: 14px;
  color: var(--grey);
  transition: color var(--fast);
}

.footer-nav-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(136,136,136,0.6);
  line-height: 1.6;
}

.footer-disc {
  font-size: 11px;
  color: rgba(136,136,136,0.35);
  max-width: 440px;
  text-align: right;
  line-height: 1.6;
}

/* ╔══════════════════════════════════════════════════╗
   ║  ANIMATIONS                                      ║
   ╚══════════════════════════════════════════════════╝ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes neonPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

@keyframes shimmerGold {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}

.neon-pulse { animation: neonPulse 2.5s ease-in-out infinite; }

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-pale) 45%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 3s linear infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ╔══════════════════════════════════════════════════╗
   ║  RESPONSIVE                                      ║
   ╚══════════════════════════════════════════════════╝ */
/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .venues-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps-row      { grid-template-columns: repeat(2, 1fr); }
  .feat-grid      { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .info-grid      { grid-template-columns: 1fr; gap: 48px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── 기본 레이아웃 ── */
  :root { font-size: 15px; }
  .wrap { padding: 0 16px; }
  .section    { padding: 52px 0; }
  .section-sm { padding: 36px 0; }
  .section-lg { padding: 64px 0; }

  /* ── 헤더 ── */
  .main-nav { display: none; }
  .burger { display: flex; }
  .nav-cta-btn { display: none; }
  #site-header .hdr-wrap { height: 64px; padding: 0 16px; }
  .logo-text { font-size: 17px; }
  .logo-sub { display: none; }

  /* ── 히어로 메인 ── */
  .hero { min-height: 100svh; padding-top: 64px; }
  .hero-content { padding: 0 16px 32px; background: linear-gradient(180deg, rgba(4,4,4,0.5) 0%, rgba(4,4,4,0.3) 100%); border-radius: 0; }
  .hero-kicker { font-size: 10px; letter-spacing: 0.3em; margin-bottom: 14px; }
  .hero-title  { font-size: clamp(38px, 11vw, 64px); line-height: 1.08; margin-bottom: 10px; }
  .hero-sub    { font-size: 15px; margin-bottom: 14px; }
  .hero-desc   { font-size: 13px; max-width: 100%; margin-bottom: 24px; }
  .hero-btns, .cta-btns, .sub-hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-btns .btn, .cta-btns .btn { width: 100%; justify-content: center; font-size: 15px; padding: 14px 20px; }
  .hero-stats  { flex-wrap: wrap; gap: 20px; padding-top: 20px; }
  .hero-stats > div { flex: 1 1 calc(50% - 10px); }
  .stat-n { font-size: 26px; }

  /* ── 서브히어로 ── */
  .sub-hero { padding: 100px 0 52px; }
  .sub-hero-content { padding: 32px 16px; }
  .sub-hero-title { font-size: clamp(36px, 12vw, 64px); }
  .sub-hero-sub { font-size: 14px; }
  .sub-hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .sub-hero-btns .btn { width: 100%; justify-content: center; }

  /* ── 섹션 헤딩 ── */
  .sh h2, .section-title { font-size: clamp(24px, 7vw, 36px); }
  .sh p { font-size: 14px; }
  .neon-label { font-size: 10px; letter-spacing: 0.15em; }

  /* ── 그리드 ── */
  .venues-grid   { grid-template-columns: 1fr; gap: 16px; }
  .feat-grid     { grid-template-columns: 1fr; gap: 12px; }
  .steps-row     { grid-template-columns: 1fr 1fr; gap: 3px; }
  .reviews-grid  { grid-template-columns: 1fr; gap: 12px; }
  .top3-grid     { grid-template-columns: 1fr; gap: 12px; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tips-grid     { grid-template-columns: 1fr; gap: 8px; }
  .compare-wrap  { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* ── vc 카드 ── */
  .vc { aspect-ratio: 16/10 !important; min-height: 200px; }
  .vc-desc { max-height: 60px !important; opacity: 1 !important; font-size: 13px !important; }
  .vc-arrow { opacity: 1 !important; transform: none !important; }
  .vc-title { font-size: 22px !important; }
  .vc-meta  { font-size: 12px; }

  /* ── 스텝 카드 ── */
  .step-card { padding: 22px 18px; }
  .step-card h4 { font-size: 15px; }
  .step-card p  { font-size: 13px; }

  /* ── 특징 카드 ── */
  .feat-card { padding: 20px 18px; }
  .feat-card h4 { font-size: 15px; }
  .feat-card p  { font-size: 13px; }

  /* ── 리뷰 카드 ── */
  .rv-card { padding: 20px; }
  .rv-text { font-size: 14px; }

  /* ── 팁/주의 ── */
  .tip-item, .caution-item { padding: 14px 16px; font-size: 13px; }

  /* ── 가격 카드 ── */
  .price-card { padding: 20px 16px; }
  .price-title { font-size: 14px; }
  .price-amount { font-size: 22px; }

  /* ── 인포 그리드 ── */
  .info-grid { grid-template-columns: 1fr; gap: 32px; }

  /* ── FAQ ── */
  .faq-q { font-size: 15px; padding: 18px 0; }
  .faq-a p { font-size: 14px; }

  /* ── 어드바이저 ── */
  .advisor-box { padding: 24px 20px; }
  .advisor-box blockquote { font-size: 14px; }

  /* ── CTA ── */
  .cta-section { padding: 52px 0; }
  .cta-section h2 { font-size: clamp(24px, 7vw, 40px); }

  /* ── 테이블 ── */
  .compare-tbl { font-size: 13px; min-width: 560px; }
  .compare-tbl th, .compare-tbl td { padding: 12px 14px; }
  .info-tbl { font-size: 13px; }
  .info-tbl th, .info-tbl td { padding: 12px 14px; }

  /* ── 풋터 ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-disc { text-align: left; font-size: 11px; }
  .footer-brand p { font-size: 13px; }
  .footer-links a { font-size: 14px; }

  /* ── 플로팅 버튼 ── */
  .float-wrap { bottom: 16px; right: 14px; gap: 10px; }
  .float-btn span { display: none; }
  .float-btn { padding: 0; border-radius: 50%; width: 50px; height: 50px; justify-content: center; gap: 0; }
  .float-btn svg { width: 22px; height: 22px; }

  /* ── 버튼 ── */
  .btn { font-size: 14px; padding: 12px 20px; }

  /* ── 갤러리 ── */
  .gallery-item img { height: 180px; }

  /* ── 공통 여백 ── */
  .sh { margin-bottom: 36px; }
  .neon-line { width: 50px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .wrap { padding: 0 14px; }
  .section { padding: 44px 0; }

  .steps-row     { grid-template-columns: 1fr; gap: 3px; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .hero-stats > div { flex: 1 1 100%; }

  .hero-title  { font-size: clamp(32px, 10vw, 52px); }
  .sub-hero-title { font-size: clamp(30px, 11vw, 52px); }
  .sh h2, .section-title { font-size: clamp(22px, 6.5vw, 32px); }

  .vc { aspect-ratio: 4/3 !important; }
  .compare-tbl { min-width: 440px; font-size: 12px; }
  .compare-tbl th, .compare-tbl td { padding: 10px 12px; }

  .float-btn { width: 46px; height: 46px; }
  .float-btn svg { width: 20px; height: 20px; }

  /* 모바일 너비 100% 버튼 강제 */
  .sub-hero-btns .btn,
  .hero-btns .btn,
  .cta-btns .btn { font-size: 14px; padding: 13px 16px; }
}


/* ╔══════════════════════════════════════════════════╗
   ║  VENUE-SPECIFIC COLOR THEMES                     ║
   ╚══════════════════════════════════════════════════╝ */

/* 달토 — 진홍/크림슨 (기본 팔레트 그대로) */
body.venue-dalto {
  --v-color:      #e8003d;
  --v-color-2:    #ff2d78;
  --v-glow:       0 0 20px rgba(232,0,61,0.7), 0 0 60px rgba(232,0,61,0.3);
  --v-text-glow:  0 0 12px rgba(232,0,61,0.9), 0 0 40px rgba(232,0,61,0.4);
  --v-bg-tint:    rgba(232,0,61,0.06);
  --v-border:     rgba(232,0,61,0.3);
}

/* 도파민 — 오렌지 파이어 */
body.venue-dopamine {
  --v-color:      #ff6b2b;
  --v-color-2:    #ff9a3c;
  --v-glow:       0 0 20px rgba(255,107,43,0.7), 0 0 60px rgba(255,107,43,0.3);
  --v-text-glow:  0 0 12px rgba(255,107,43,0.9), 0 0 40px rgba(255,107,43,0.4);
  --v-bg-tint:    rgba(255,107,43,0.06);
  --v-border:     rgba(255,107,43,0.3);
}

/* 유앤미 — 보라/마젠타 */
body.venue-unme {
  --v-color:      #c026d3;
  --v-color-2:    #e040fb;
  --v-glow:       0 0 20px rgba(192,38,211,0.7), 0 0 60px rgba(192,38,211,0.3);
  --v-text-glow:  0 0 12px rgba(192,38,211,0.9), 0 0 40px rgba(192,38,211,0.4);
  --v-bg-tint:    rgba(192,38,211,0.06);
  --v-border:     rgba(192,38,211,0.3);
}

/* 퍼펙트 — 골드/앰버 */
body.venue-perfect {
  --v-color:      #f5c842;
  --v-color-2:    #fae08a;
  --v-glow:       0 0 20px rgba(245,200,66,0.7), 0 0 60px rgba(245,200,66,0.3);
  --v-text-glow:  0 0 12px rgba(245,200,66,0.9), 0 0 40px rgba(245,200,66,0.4);
  --v-bg-tint:    rgba(245,200,66,0.05);
  --v-border:     rgba(245,200,66,0.3);
}

/* 쩜오 — 아이스 블루/시안 */
body.venue-jjumoh {
  --v-color:      #00b4d8;
  --v-color-2:    #48cae4;
  --v-glow:       0 0 20px rgba(0,180,216,0.6), 0 0 60px rgba(0,180,216,0.25);
  --v-text-glow:  0 0 12px rgba(0,180,216,0.9), 0 0 40px rgba(0,180,216,0.35);
  --v-bg-tint:    rgba(0,180,216,0.05);
  --v-border:     rgba(0,180,216,0.3);
}

/* Apply venue colors to common subpage elements */
body[class*="venue-"] .neon-label {
  color: var(--v-color);
  text-shadow: var(--v-text-glow);
}

body[class*="venue-"] .neon-line {
  background: linear-gradient(90deg, var(--v-color), var(--v-color-2), transparent);
  box-shadow: var(--v-glow);
}

body[class*="venue-"] .neon-line--center {
  background: linear-gradient(90deg, transparent, var(--v-color), var(--v-color-2), transparent);
}

body[class*="venue-"] .step-n {
  color: var(--v-color);
  text-shadow: var(--v-text-glow);
}

body[class*="venue-"] .step-card::before {
  background: linear-gradient(90deg, var(--v-color), var(--v-color-2));
  box-shadow: var(--v-glow);
}

body[class*="venue-"] .step-card:hover {
  border-color: var(--v-border);
  background: var(--v-bg-tint);
}

body[class*="venue-"] .vc-num,
body[class*="venue-"] .tip-n {
  color: var(--v-color);
  text-shadow: var(--v-text-glow);
}

body[class*="venue-"] .faq-q:hover { color: var(--v-color); }

body[class*="venue-"] .faq-icon {
  border-color: var(--v-color);
  box-shadow: 0 0 8px color-mix(in srgb, var(--v-color) 40%, transparent);
}

body[class*="venue-"] .faq-icon::before,
body[class*="venue-"] .faq-icon::after {
  background: var(--v-color);
}

body[class*="venue-"] .sub-hero-content .neon-label {
  color: var(--v-color);
  text-shadow: var(--v-text-glow);
}

body[class*="venue-"] .sub-hero-content h1 .cr {
  color: var(--v-color);
  text-shadow: var(--v-text-glow);
}

body[class*="venue-"] .meta-ico {
  background: var(--v-bg-tint);
  border-color: var(--v-border);
}

body[class*="venue-"] .meta-ico svg { color: var(--v-color); }

body[class*="venue-"] .btn-red {
  background: var(--v-color);
  box-shadow: var(--v-glow);
}

body[class*="venue-"] .btn-red:hover { background: var(--v-color-2); }

body[class*="venue-"] .btn-outline-red {
  color: var(--v-color);
  border-color: var(--v-color);
}

body[class*="venue-"] .btn-outline-red:hover {
  background: var(--v-bg-tint);
  color: var(--v-color-2);
  border-color: var(--v-color-2);
}

body[class*="venue-"] .float-call {
  background: var(--v-color);
  box-shadow: var(--v-glow);
}

body[class*="venue-"] .cta-strip {
  border-top-color: var(--v-border);
  border-bottom-color: var(--v-border);
}

body[class*="venue-"] .cta-strip h2 .cr {
  color: var(--v-color);
  text-shadow: var(--v-text-glow);
}

body[class*="venue-"] .vc:hover::after {
  border-color: var(--v-color);
  box-shadow: inset 0 0 30px var(--v-bg-tint), var(--v-glow);
}

body[class*="venue-"] .compare-tbl th {
  color: var(--v-color);
  text-shadow: var(--v-text-glow);
  background: var(--v-bg-tint);
}

body[class*="venue-"] .table-outer {
  border-color: var(--v-border);
}

body[class*="venue-"] .top3-card--active,
body[class*="venue-"] .top3-card:hover {
  border-color: var(--v-border);
}

body[class*="venue-"] .top3-card::before {
  background: linear-gradient(90deg, var(--v-color), var(--v-color-2));
  box-shadow: var(--v-glow);
}

body[class*="venue-"] .top3-cur {
  color: var(--v-color);
  text-shadow: var(--v-text-glow);
}

body[class*="venue-"] .g-cap-label {
  color: var(--v-color);
  text-shadow: var(--v-text-glow);
}

body[class*="venue-"] .feat-card:hover {
  box-shadow: 0 20px 60px color-mix(in srgb, var(--v-color) 12%, transparent);
  border-color: var(--v-border);
}

body[class*="venue-"] .rv-card:hover { border-color: var(--v-border); }
body[class*="venue-"] .tip-item:hover { border-color: var(--v-border); }
body[class*="venue-"] .meta-item:hover { border-color: var(--v-border); }

/* WP admin bar offset */
.screen-reader-text { position: absolute; left: -9999px; }
.wp-caption { max-width: 100%; }
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin: 0 auto 16px; text-align: center; }
