/*
Theme Name: 일산 요정 명월관 (Myeongwolgwan)
Theme URI: https://myeongwolgwan.kr
Author: Antigravity Deepmind
Author URI: https://myeongwolgwan.kr
Description: 일산 요정 명월관 고품격 전통 한정식 & 연회 전용 커스텀 워드프레스 테마 (Google SEO & 반응형 최적화)
Version: 1.0.0
Text Domain: myeongwolgwan
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Design Tokens */
:root {
    --bg-dark: #121110;
    --bg-card: #1c1a18;
    --bg-card-hover: #262320;
    --bg-elevated: #292522;
    --bg-overlay: rgba(18, 17, 16, 0.88);
    
    --gold-primary: #D4AF37;
    --gold-light: #F5E6AB;
    --gold-dark: #A38020;
    --gold-gradient: linear-gradient(135deg, #F5E6AB 0%, #D4AF37 50%, #997819 100%);
    --gold-glow: rgba(212, 175, 55, 0.3);
    
    --burgundy-primary: #5A1827;
    --burgundy-dark: #380C16;
    --burgundy-accent: #7D2336;
    
    --text-primary: #F7F5F0;
    --text-secondary: #C8C3BC;
    --text-muted: #8E8982;
    --text-gold: #E5C158;
    
    --font-serif: 'Noto Serif KR', 'Nanum Myeongjo', serif;
    --font-latin: 'Cinzel', serif;
    --font-body: 'Noto Serif KR', system-ui, -apple-system, sans-serif;
    
    --border-gold: rgba(212, 175, 55, 0.3);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.15);
    --shadow-deep: 0 16px 48px rgba(0, 0, 0, 0.6);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

#inkCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

/* Typography Base */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

/* Section Titles */
.section-title {
    margin-bottom: 60px;
}

.gold-subtitle {
    font-family: var(--font-latin);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--gold-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px auto 0 auto;
    width: 200px;
}

.gold-divider::before, .gold-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.gold-divider span {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.gold-divider-left {
    height: 2px;
    width: 80px;
    background: var(--gold-gradient);
    margin: 20px 0 25px 0;
}

/* Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: #121110;
    font-family: var(--font-serif);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 16px var(--gold-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

.btn-gold-lg {
    background: var(--gold-gradient);
    color: #121110;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    padding: 14px 40px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 8px 24px var(--gold-glow);
}

.btn-gold-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
    filter: brightness(1.12);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
    font-family: var(--font-serif);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-light);
}

.btn-outline-lg {
    background: rgba(18, 17, 16, 0.6);
    color: var(--text-primary);
    border: 1px solid var(--gold-primary);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.btn-outline-lg:hover {
    background: var(--gold-primary);
    color: #121110;
}

/* Header & Nav */
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(18,17,16,0.95) 0%, rgba(18,17,16,0.7) 70%, transparent 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

#mainHeader.scrolled {
    padding: 12px 0;
    background: rgba(18, 17, 16, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
    border-bottom: 1px solid var(--border-gold);
}

.header-container {
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
}

.logo:hover .logo-img {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-logo-img {
    height: 108px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
}

.footer-brand-header h3 {
    font-size: 1.6rem;
    color: var(--gold-light);
    font-family: var(--font-serif);
    margin-bottom: 0;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--gold-light);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(18, 17, 16, 0.4) 0%, rgba(18, 17, 16, 0.92) 80%);
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    padding: 0 20px;
    margin-top: 60px;
}

.stamp-badge {
    width: 70px;
    height: 70px;
    border: 2px solid var(--burgundy-accent);
    background: var(--burgundy-dark);
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(90, 24, 39, 0.6);
    transform: rotate(-5deg);
}

.stamp-inner {
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.hero-subtext {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold-light);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.8);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold-primary), transparent);
    animation: pulseLine 2s infinite;
}

@keyframes pulseLine {
    0% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0.3; transform: scaleY(0.5); }
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(18, 17, 16, 0.93) 0%, rgba(18, 17, 16, 0.88) 50%, rgba(18, 17, 16, 0.95) 100%);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, transparent 0%, #121110 100%);
    z-index: 3;
    pointer-events: none;
}

.about-image-wrap {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    border: 1px solid var(--border-gold);
}

.image-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.image-frame:hover img {
    transform: scale(1.03);
}

.gold-border-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold-primary);
    pointer-events: none;
}

.top-left { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.top-right { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.bottom-left { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.bottom-right { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.experience-card {
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    padding: 20px 25px;
    border-radius: 4px;
    box-shadow: var(--shadow-deep);
    display: flex;
    align-items: center;
    gap: 15px;
}

.exp-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold-primary);
}

.exp-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    max-width: 120px;
    line-height: 1.3;
}

.gold-heading {
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    line-height: 1.4;
}

.text-body {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Course Menu Section */
.courses {
    position: relative;
    overflow: hidden;
    background-color: #171513;
}

.courses-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.courses-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(18, 17, 16, 0.92) 0%, rgba(18, 17, 16, 0.85) 50%, rgba(18, 17, 16, 0.95) 100%);
}

/* Clean Balanced 2-Column Course Layout */
.clean-course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 960px;
    margin: 0 auto;
}

.clean-course-card {
    background: rgba(28, 26, 24, 0.95);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: var(--shadow-deep);
    position: relative;
}

.clean-course-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 16px 36px rgba(212, 175, 55, 0.2);
}

.highlight-card {
    background: linear-gradient(145deg, rgba(36, 33, 30, 0.98) 0%, rgba(24, 22, 20, 0.98) 100%);
    border: 1px solid var(--gold-primary);
}

.course-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-subtle);
}

.course-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-title-wrap h3 {
    font-size: 1.8rem;
    color: var(--gold-light);
    font-family: var(--font-serif);
}

.course-tag-gold {
    background: var(--gold-gradient);
    color: #121110;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 15px;
    box-shadow: 0 2px 8px var(--gold-glow);
}

.vip-tag {
    background: var(--burgundy-primary);
    color: var(--gold-light);
    border: 1px solid var(--gold-primary);
}

.course-time-badge {
    color: var(--gold-primary);
    font-size: 1.05rem;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.course-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.course-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(18, 17, 16, 0.6);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.info-value {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 600;
}

.gold-text {
    color: var(--gold-primary) !important;
    font-family: var(--font-serif);
    font-size: 1.15rem !important;
}

/* Rooms Section */
.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
}

.room-thumb {
    position: relative;
    height: 240px;
}

.room-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(18, 17, 16, 0.85);
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
}

.room-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-info h3 {
    font-size: 1.35rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.room-capacity {
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.room-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.room-amenities {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.room-amenities li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-amenities i {
    color: var(--gold-primary);
    font-size: 0.75rem;
}

.room-info .btn-outline {
    margin-top: auto;
    width: 100%;
}

/* Performance Section */
.performance {
    position: relative;
    overflow: hidden;
}

.performance-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.performance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(18, 17, 16, 0.95) 0%, rgba(18, 17, 16, 0.8) 100%);
}

.performance-box {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.perf-text h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.perf-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.perf-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.perf-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.perf-list i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.perf-card-highlight {
    background: rgba(28, 26, 24, 0.85);
    border: 1px solid var(--gold-primary);
    padding: 40px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-deep);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    opacity: 0.4;
    margin-bottom: 15px;
    display: block;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.quote-author {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
    text-align: right;
}

/* Trust Section */
.trust {
    background-color: var(--bg-dark);
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 35px 25px;
    border-radius: 4px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.trust-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.trust-icon {
    font-family: var(--font-latin);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 15px;
    opacity: 0.8;
}

.trust-card h4 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Location Section */
.location {
    background-color: #171513;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-block {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    padding: 24px;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
}

.info-block i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-top: 3px;
}

.info-block h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.info-block p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.phone-big a {
    font-family: var(--font-latin);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.sub-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

/* Map Mockup UI */
.map-container {
    height: 100%;
    min-height: 420px;
}

.map-mockup {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: radial-gradient(circle at center, #262320 0%, #171513 100%);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: var(--shadow-deep);
    background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-badge {
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    padding: 20px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-gold);
}

.map-badge i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.map-badge strong {
    display: block;
    font-size: 1.2rem;
    color: var(--gold-light);
}

.map-badge span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.map-actions {
    display: flex;
    gap: 15px;
}

.map-btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-btn.naver {
    background: #03C75A;
    color: #ffffff;
}

.map-btn.kakao {
    background: #FEE500;
    color: #191919;
}

/* Footer */
.footer {
    background: #0b0a09;
    padding: 70px 0 30px 0;
    border-top: 1px solid var(--border-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 400px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-phone {
    font-family: var(--font-latin);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-deep);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.reserve-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    margin-bottom: 18px;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 12px 15px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.full-width.btn-gold-lg {
    width: 100%;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    padding: 18px 25px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-deep);
    z-index: 1100;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition);
}

.toast.active {
    opacity: 1;
    transform: translateY(0);
}

.toast i {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.toast-text strong {
    display: block;
    color: var(--gold-light);
    font-size: 0.95rem;
}

.toast-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 90;
    display: flex;
    gap: 10px;
}

.btn-phone {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--burgundy-primary);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid var(--gold-primary);
    box-shadow: var(--shadow-deep);
}

.btn-phone:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   Mobile Responsiveness & Touch UX Optimization
   ========================================================================== */

/* Universal Touch & Typography Scaling */
button, input, select, textarea, a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1024px) {
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .room-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .hero-title { font-size: clamp(2.2rem, 5vw, 3.2rem); }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .header-container { 
        width: 94%; 
        position: relative;
        justify-content: center;
    }

    .logo {
        margin: 0 auto;
        justify-content: center;
    }

    .logo-img {
        height: 42px;
        margin: 0 auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100dvh;
        background: rgba(18, 17, 16, 0.98);
        backdrop-filter: blur(15px);
        border-left: 1px solid var(--gold-primary);
        padding: 90px 30px 40px 30px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        z-index: 99;
    }
    
    .nav-menu.active { right: 0; }
    .nav-menu ul { flex-direction: column; gap: 22px; }
    .nav-menu a { font-size: 1.1rem; display: block; padding: 8px 0; }

    .mobile-toggle { 
        display: flex; 
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 101; 
        padding: 8px; 
    }
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5deg, 5deg); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5deg, -5deg); }

    .header-actions .phone-link,
    .header-actions #btnHeaderReserve { 
        display: none !important; 
    }
    
    .hero-title { 
        font-size: clamp(1.8rem, 7vw, 2.5rem); 
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .hero-subtext { font-size: 1rem; letter-spacing: 0.1em; }
    .hero-desc { font-size: 0.95rem; margin-bottom: 30px; }
    
    .hero-buttons { 
        flex-direction: column; 
        width: 100%;
        gap: 12px;
    }
    .btn-gold-lg, .btn-outline-lg {
        width: 100%;
        padding: 16px 20px;
        font-size: 1rem;
    }

    .room-grid { grid-template-columns: 1fr; }
    .clean-course-grid { grid-template-columns: 1fr; gap: 20px; }
    .grid-4 { grid-template-columns: 1fr; gap: 15px; }

    .modal-content {
        width: 95%;
        padding: 25px 20px;
        max-height: 85dvh;
    }

    .reserve-form .form-grid { grid-template-columns: 1fr; gap: 14px; }
    .form-group input, .form-group select, .form-group textarea {
        font-size: 16px; /* Prevents auto-zoom on iOS Safari */
    }

    .floating-cta {
        bottom: 20px;
        left: 20px;
        right: 20px;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .logo-img { height: 36px; }
    .btn-gold { padding: 10px 18px; font-size: 0.85rem; }
}
