/* ===== Reset & Variables ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Noraebang karaoke palette - midnight + neon magenta/cyan */
    --bg: #0a0612;
    --bg-soft: #120a1d;
    --bg-card: #181025;
    --bg-elevated: #20152f;
    --border: #2a1c42;
    --border-strong: #3d2b5e;

    --text: #f5ecff;
    --text-dim: #b4a3ce;
    --text-mute: #7a6894;

    --gold: #ff5cd4;          /* neon magenta as main accent */
    --gold-bright: #ff8fe0;
    --gold-deep: #c93aa8;
    --gold-soft: rgba(255, 92, 212, 0.1);
    --neon-cyan: #4de5ff;     /* karaoke neon cyan */

    --call: #ff3b3b;
    --call-deep: #c41e1e;

    --gradient-gold: linear-gradient(135deg, #ff8fe0 0%, #ff5cd4 45%, #9d2bd8 100%);
    --gradient-call: linear-gradient(135deg, #ff5757 0%, #ff3b3b 50%, #c41e1e 100%);

    --shadow-gold: 0 12px 40px -12px rgba(255, 92, 212, 0.5);
    --shadow-call: 0 12px 32px -8px rgba(255, 59, 59, 0.5);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
@media (max-width: 1024px) {
    body { padding-bottom: 90px; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ===== Top Bar ===== */
.top-bar {
    background: linear-gradient(90deg, #0a0a0a 0%, #1a1410 50%, #0a0a0a 100%);
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dim);
}
.top-bar a {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    flex-shrink: 0;
}
.logo > div { display: flex; flex-direction: column; line-height: 1.2; }
.logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--gradient-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
    font-weight: 900;
    box-shadow: var(--shadow-gold);
}
.logo-text {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.logo-sub {
    font-size: 9px;
    color: var(--gold);
    letter-spacing: 0.25em;
    font-weight: 700;
    margin-top: 2px;
}
.header-nav {
    display: flex;
    gap: 26px;
    margin-left: auto;
}
.header-nav a {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 600;
    transition: color 0.2s;
}
.header-nav a:hover { color: var(--gold); }
.header-cta {
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--gradient-call);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.2s;
    box-shadow: var(--shadow-call);
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.header-cta:hover { transform: translateY(-1px); }

/* ===== Common Type ===== */
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.serif-accent {
    font-family: 'Noto Serif KR', serif;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0;
}
.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.section-head h2 {
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
}
.section-head p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.8;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 80px 20px 0;
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/main.jpg');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 92, 212, 0.22), transparent 70%),
        radial-gradient(ellipse 80% 40% at 50% 100%, rgba(168, 85, 247, 0.18), transparent 70%),
        linear-gradient(180deg, rgba(10, 6, 18, 0.55) 0%, rgba(10, 6, 18, 0.82) 100%);
    z-index: 1;
}
@media (max-width: 768px) {
    .hero-bg { background-size: cover; background-position: center top; }
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
}
.hero-inner {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.25em;
    font-weight: 700;
    border-radius: 999px;
    margin-bottom: 28px;
}
.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 22px;
}
.hero-serif {
    font-family: 'Noto Serif KR', serif;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub {
    font-size: clamp(14px, 1.5vw, 17px);
    color: var(--text-dim);
    margin-bottom: 32px;
    line-height: 1.8;
}
.hero-sub strong { color: var(--gold); font-weight: 800; }

/* Price strip in hero */
.hero-price-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.price-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    transition: all 0.2s;
}
.price-chip:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}
.price-chip-ppl {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
}
.price-chip-amount {
    font-family: 'Noto Serif KR', serif;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
}

/* CTAs */
.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 30px;
    background: var(--gradient-call);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
    box-shadow: var(--shadow-call);
    position: relative;
    isolation: isolate;
}
.btn-call::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.45);
    animation: pulse-ring 2.4s ease-out infinite;
    pointer-events: none;
    z-index: -1;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.45); }
    80%, 100% { box-shadow: 0 0 0 10px rgba(255, 59, 59, 0); }
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -8px rgba(255, 59, 59, 0.6); }
.btn-call-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.btn-call-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.btn-call-text em {
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.05em;
}
.btn-call-text strong {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-top: 2px;
}
.btn-call-lg { padding: 22px 40px; font-size: 16px; }
.btn-call-lg .btn-call-icon { width: 46px; height: 46px; font-size: 22px; }
.btn-call-lg .btn-call-text strong { font-size: 22px; }
.btn-call-sm { padding: 12px 20px; }
.btn-call-sm .btn-call-icon { width: 32px; height: 32px; font-size: 15px; }
.btn-call-sm .btn-call-text em { font-size: 10px; }
.btn-call-sm .btn-call-text strong { font-size: 15px; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    background: transparent;
    color: #fff;
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
}
.btn-outline:hover {
    background: var(--gradient-gold);
    color: #0a0a0a;
}

.hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    max-width: 720px;
    margin: 0 auto;
}
.hero-meta > div { display: flex; flex-direction: column; align-items: center; }
.hero-meta strong {
    font-family: 'Noto Serif KR', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.hero-meta span {
    font-size: 12px;
    color: var(--text-mute);
    margin-top: 8px;
    letter-spacing: 0.1em;
}
.hero-meta .divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Marquee */
.marquee {
    margin-top: 0;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, #0a0a0a, #1a1410, #0a0a0a);
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    width: max-content;
}
.marquee-track span {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== ABOUT / Info Cards ===== */
.about { padding: 100px 0; background: var(--bg); }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.info-card {
    background: linear-gradient(180deg, var(--bg-card), var(--bg-soft));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    background: linear-gradient(180deg, #1c1612, var(--bg-card));
}
.info-card:hover::before { opacity: 1; }
.info-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--gold-soft);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}
.info-card h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}
.info-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.75;
}

/* ===== GALLERY (Carousel) ===== */
.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.carousel {
    overflow: hidden;
    padding: 12px 0;
    margin-top: 16px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.carousel-track {
    display: flex;
    gap: 18px;
    animation: scroll 40s linear infinite;
    width: max-content;
}
.carousel.reverse .carousel-track {
    animation: scroll-reverse 40s linear infinite;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes scroll-reverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}
.carousel-item {
    position: relative;
    width: 280px;
    height: 360px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--border);
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.carousel-item:hover img { transform: scale(1.08); }
.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.85));
}
.carousel-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 14px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--gold);
}

/* ===== EVENTS ===== */
.events { padding: 100px 0; background: var(--bg); }
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}
.event-card {
    background: linear-gradient(180deg, #1c1612, var(--bg-card));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all 0.3s;
    position: relative;
}
.event-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.event-num {
    display: inline-block;
    font-family: 'Noto Serif KR', serif;
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 18px;
}
.event-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.015em;
}
.event-card p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 20px;
}
.event-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: gap 0.2s;
}
.event-link:hover { gap: 12px; }

/* ===== HOURS ===== */
.hours { padding: 100px 0; background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.hours-card {
    padding: 48px 40px;
    background: linear-gradient(180deg, var(--bg-card), var(--bg-soft));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.3s;
}
.hours-card:hover { border-color: var(--gold); }
.hours-card h2 {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}
.hours-time {
    font-family: 'Noto Serif KR', serif;
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}
.hours-card p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.8;
}
.hours-card .address {
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}
.hours-line {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}
.hours-detail { display: flex; flex-direction: column; gap: 12px; }
.hours-detail > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
}
.hours-detail > div:last-child { border-bottom: none; }
.hours-detail span { color: var(--text-dim); font-size: 14px; font-weight: 600; }
.hours-detail strong {
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    font-family: 'Noto Serif KR', serif;
}

/* ===== PRICE TABLE ===== */
.price-section { padding: 100px 0; background: var(--bg); }
.price-table {
    max-width: 920px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.price-row {
    display: grid;
    grid-template-columns: 100px 1fr 180px 130px;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    transition: background 0.2s;
    position: relative;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg-elevated); }
.price-row.featured {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border-left: 3px solid var(--gold);
}
.price-row.featured:hover { background: linear-gradient(90deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.04)); }
.row-badge {
    position: absolute;
    top: 12px;
    right: 32px;
    padding: 3px 10px;
    background: var(--gradient-gold);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #0a0a0a;
}
.row-ppl {
    font-family: 'Noto Serif KR', serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
}
.row-desc {
    color: var(--text-dim);
    font-size: 14.5px;
}
.row-price {
    font-family: 'Noto Serif KR', serif;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    text-align: right;
    letter-spacing: -0.01em;
}
.row-cta {
    padding: 11px 18px;
    background: var(--gradient-call);
    color: #fff !important;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    transition: transform 0.2s;
    box-shadow: 0 6px 18px -6px rgba(255, 59, 59, 0.5);
}
.row-cta:hover { transform: translateY(-1px); }
.price-note {
    text-align: center;
    color: var(--text-mute);
    font-size: 12.5px;
    margin-top: 24px;
    line-height: 1.7;
}

/* ===== REGIONS ===== */
.regions { padding: 100px 0; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.region-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    transition: border-color 0.3s;
}
.region-block:hover { border-color: var(--gold); }
.region-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border);
}
.region-head h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-family: 'Noto Serif KR', serif;
}
.region-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 14px var(--gold);
}
.region-count {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.2em;
    padding: 5px 14px;
    background: var(--gold-soft);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
}
.region-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.region-buttons.centered { justify-content: center; }
.btn-region {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.btn-region:hover {
    background: var(--gradient-gold);
    color: #0a0a0a;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-region-all {
    background: var(--gradient-gold);
    color: #0a0a0a;
    border-color: var(--gold);
}

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--bg); }
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-list details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
    overflow: hidden;
}
.faq-list details[open] {
    border-color: var(--gold);
    background: var(--bg-elevated);
}
.faq-list summary {
    cursor: pointer;
    padding: 22px 26px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '+';
    color: var(--gold);
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
    padding: 0 26px 24px;
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.85;
}

/* ===== Final CTA ===== */
.final-cta { padding: 40px 0 100px; }
.cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 40px;
    background:
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.15), transparent 60%),
        var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}
.cta-card h2 { color: #fff; }
.cta-card p { color: var(--text-dim); margin-bottom: 32px; font-size: 16px; }
.cta-card .btn-call { margin: 0 auto; }

/* ===== REGION PAGE HERO ===== */
.region-hero {
    position: relative;
    min-height: 600px;
    padding: 80px 24px 60px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.region-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(1.1);
    z-index: 0;
}
.region-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(212, 175, 55, 0.4), transparent 70%),
        linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.95) 100%);
}
.region-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    margin-bottom: 24px;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { opacity: 0.5; }
.breadcrumb em {
    font-style: normal;
    color: var(--gold);
}

/* ===== SHOPS ===== */
.shops { padding: 100px 0; background: var(--bg); }
.shop-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.shop {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.shop:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.shop-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.shop:hover .shop-image img { transform: scale(1.08); }
.shop-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.7));
}
.shop-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 12px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--gold);
}
.shop-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.shop-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.shop-chip {
    padding: 4px 10px;
    background: var(--gold-soft);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
}
.shop h3 {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    font-family: 'Noto Serif KR', serif;
}
.shop-desc {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
    flex-grow: 1;
}
.shop .btn-call { width: 100%; justify-content: center; }

/* Empty */
.empty-box {
    text-align: center;
    padding: 80px 30px;
    background: var(--bg-card);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
    max-width: 640px;
    margin: 0 auto;
}
.empty-emoji { font-size: 54px; margin-bottom: 16px; }
.empty { color: #fff; font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.empty-sub { color: var(--text-mute); font-size: 14px; margin-bottom: 28px; }

/* Other regions */
.other-regions { padding: 80px 0 100px; background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }

/* ===== Footer ===== */
.site-footer {
    background: #050505;
    padding: 56px 24px 36px;
    border-top: 1px solid var(--border);
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.footer-brand {
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}
.footer-desc { color: var(--text-dim); font-size: 14px; }
.footer-info { display: flex; flex-direction: column; gap: 6px; color: var(--text-dim); font-size: 14px; }
.footer-info p:first-child { color: var(--gold); font-weight: 800; }
.footer-bottom {
    text-align: center;
    color: var(--text-mute);
    font-size: 13px;
}
.footer-note {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.7;
}

/* ===== FLOATING CALL BAR (mobile only) ===== */
.floating-call {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--gradient-call);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 16px 40px -10px rgba(255, 59, 59, 0.6);
    max-width: calc(100% - 32px);
    border: 2px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 1024px) {
    .floating-call { display: flex; }
}
.fc-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.fc-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.fc-text em {
    font-style: normal;
    font-size: 11px;
    opacity: 0.92;
    letter-spacing: 0.05em;
}
.fc-text strong {
    font-size: 17px;
    font-weight: 900;
    margin-top: 1px;
}
.fc-arrow {
    margin-left: 6px;
    font-size: 18px;
    transition: transform 0.2s;
}
.floating-call:hover .fc-arrow { transform: translateX(4px); }

/* ===== 404 ===== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background:
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.15), transparent 60%),
        var(--bg);
}
.error-inner { text-align: center; }
.error-inner h1 {
    font-family: 'Noto Serif KR', serif;
    font-size: 160px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 20px;
}
.error-inner p {
    color: var(--text-dim);
    font-size: 18px;
    margin-bottom: 36px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hours-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    body { padding-bottom: 96px; }
    .top-bar { font-size: 12px; }
    .header-nav { display: none; }
    .header-cta { padding: 9px 14px; font-size: 12px; }
    .logo-mark { width: 36px; height: 36px; font-size: 18px; }
    .logo-text { font-size: 14px; }
    .logo-sub { font-size: 8px; }

    .hero { padding: 48px 16px 0; }
    .hero-meta { gap: 24px; padding-top: 28px; }
    .hero-meta strong { font-size: 28px; }
    .hero-meta .divider { display: none; }

    .price-chip { padding: 10px 16px; }
    .price-chip-amount { font-size: 14px; }

    .btn-call { padding: 14px 22px; gap: 10px; }
    .btn-call-icon { width: 32px; height: 32px; font-size: 16px; }
    .btn-call-text strong { font-size: 16px; }
    .btn-call-lg { padding: 18px 28px; }
    .btn-call-lg .btn-call-text strong { font-size: 18px; }

    .about, .gallery, .events, .hours, .price-section, .regions, .faq, .shops, .other-regions { padding: 64px 0; }
    .final-cta { padding: 20px 0 64px; }
    .cta-card { padding: 44px 24px; }
    .section-head { margin-bottom: 36px; }

    .info-grid { grid-template-columns: 1fr; }
    .info-card { padding: 28px 24px; }

    .carousel-item { width: 220px; height: 290px; }

    .hours-card { padding: 36px 28px; }
    .hours-time { font-size: 26px; }

    .price-row {
        grid-template-columns: 80px 1fr;
        grid-template-areas:
            "ppl price"
            "desc desc"
            "cta cta";
        padding: 22px 22px;
        gap: 12px;
    }
    .row-ppl { grid-area: ppl; font-size: 22px; }
    .row-price { grid-area: price; font-size: 22px; }
    .row-desc { grid-area: desc; font-size: 13.5px; }
    .row-cta { grid-area: cta; padding: 12px; }
    .row-badge { top: 10px; right: 16px; font-size: 9px; }

    .region-block { padding: 22px; }
    .region-head { flex-direction: column; align-items: flex-start; gap: 10px; }
    .region-head h3 { font-size: 20px; }
    .btn-region { padding: 9px 14px; font-size: 12.5px; }

    .shop-list { grid-template-columns: 1fr; }

    .region-hero { min-height: 480px; padding: 60px 16px 40px; }

    .footer-top { flex-direction: column; gap: 20px; }

    .floating-call { bottom: 12px; padding: 12px 18px; }
    .fc-icon { width: 32px; height: 32px; font-size: 16px; }
    .fc-text strong { font-size: 15px; }
    .fc-text em { font-size: 10px; }

    .error-inner h1 { font-size: 100px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas > a { width: 100%; justify-content: center; }
    .price-chip { flex: 1; min-width: 140px; justify-content: center; }
    .carousel-item { width: 180px; height: 240px; }
    .floating-call { padding: 10px 16px; gap: 8px; }
    .fc-arrow { display: none; }
}
