/* ========================================================
   안양 No.1 호빠 호스트바 — Deep Purple x Rose Gold Luxury
   ======================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Core palette — deep purple x rose gold */
    --void: #07050d;
    --bg-deep: #0d0817;
    --bg-mid: #140d24;
    --bg-card: #18102a;
    --bg-card-2: #1f1533;
    --line: rgba(217, 168, 120, 0.16);
    --line-soft: rgba(255, 255, 255, 0.08);

    --purple-900: #1c0f38;
    --purple-700: #3c1f68;
    --purple-500: #6c3fa3;
    --purple-400: #8c62c4;

    --rose-gold: #d9a878;
    --rose-gold-light: #f3d3a3;
    --rose-gold-deep: #b3814f;
    --magenta: #c8447d;
    --magenta-light: #e8749f;
    --gold: #e9c383;

    --white: #fbf7f2;
    --text-soft: #d8cde6;
    --text-mute: #9a8bb3;
    --text-faint: #6c5f88;

    --gradient-primary: linear-gradient(135deg, #6c3fa3 0%, #c8447d 55%, #d9a878 100%);
    --gradient-gold: linear-gradient(135deg, #f3d3a3 0%, #d9a878 45%, #b3814f 100%);
    --gradient-dark: linear-gradient(180deg, #140d24 0%, #07050d 100%);
    --gradient-card: linear-gradient(160deg, rgba(140, 98, 196, 0.14) 0%, rgba(200, 68, 125, 0.06) 100%);
    --gradient-orb-1: radial-gradient(circle, rgba(140, 98, 196, 0.55) 0%, transparent 70%);
    --gradient-orb-2: radial-gradient(circle, rgba(200, 68, 125, 0.45) 0%, transparent 70%);
    --gradient-orb-3: radial-gradient(circle, rgba(217, 168, 120, 0.35) 0%, transparent 70%);

    --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.55);
    --shadow-gold: 0 10px 40px rgba(217, 168, 120, 0.18);
    --glow-purple: 0 0 60px rgba(108, 63, 163, 0.35);

    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-full: 9999px;

    --t-fast: 0.2s cubic-bezier(.4,0,.2,1);
    --t-normal: 0.35s cubic-bezier(.4,0,.2,1);
    --t-slow: 0.6s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-soft);
    line-height: 1.75;
    background: var(--void);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.045;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

::selection { background: var(--magenta); color: var(--white); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--gradient-gold); border-radius: var(--radius-full); }

:focus-visible { outline: 2px solid var(--rose-gold); outline-offset: 3px; }

/* ========================================================
   유틸 — 골드 텍스트 / 오너먼트
   ======================================================== */
.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.grad-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 2rem;
    width: fit-content;
}
.ornament.left { margin: 0 0 2rem 0; }
.ornament::before,
.ornament::after {
    content: '';
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
}
.ornament.left::before { display: none; }
.ornament-diamond {
    width: 9px;
    height: 9px;
    background: var(--gradient-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(217, 168, 120, 0.6);
}

/* ========================================================
   스크롤 진행 바
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 10000;
    width: 0%;
    box-shadow: 0 0 16px rgba(217, 168, 120, 0.7);
}

/* ========================================================
   플로팅 버튼
   ======================================== */
.floating-contact {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-normal);
}

.floating-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--t-normal);
    cursor: pointer;
    position: relative;
}

.floating-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(217, 168, 120, 0.5);
    animation: ringPulse 2.4s ease-out infinite;
}

.floating-btn:nth-child(2)::after { animation-delay: 0.6s; }

.floating-btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: var(--shadow-gold);
}

.phone-btn { background: var(--gradient-primary); color: var(--white); }
.kakao-btn { background: linear-gradient(135deg, #ffe812 0%, #ffd60a 100%); color: #3c1e1e; }

.top-btn {
    background: var(--bg-card-2);
    color: var(--rose-gold);
    border: 1px solid var(--line);
    font-size: 1.3rem;
    opacity: 0;
    pointer-events: none;
}
.top-btn.show { opacity: 1; pointer-events: auto; }
.top-btn::after { display: none; }

/* ========================================================
   헤더
   ======================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(7, 5, 13, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all var(--t-normal);
}

.header.scrolled {
    background: rgba(7, 5, 13, 0.92);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.header-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.logo-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    color: var(--void);
    font-size: 1rem;
    font-weight: 900;
    box-shadow: var(--shadow-gold);
}

.logo-text {
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav { display: flex; gap: 2.2rem; align-items: center; }

.nav a {
    text-decoration: none;
    color: var(--text-soft);
    font-weight: 500;
    font-size: 0.98rem;
    transition: all var(--t-normal);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav a:hover { color: var(--rose-gold-light); }
.nav a:hover::after { width: 100%; }

.nav .dropdown { position: relative; }
.nav .dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 0.3rem; }
.nav .dropdown .arrow { font-size: 0.6rem; transition: transform var(--t-normal); color: var(--rose-gold); }
.nav .dropdown:hover .arrow { transform: rotate(180deg); }

.nav .dropdown-menu {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: var(--bg-card-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 0.6rem 0;
    min-width: 170px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-normal);
    z-index: 100;
}

.nav .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; margin-top: 0.4rem; }

.nav .dropdown-menu a {
    display: block;
    padding: 0.65rem 1.4rem;
    color: var(--text-soft);
    font-weight: 400;
    font-size: 0.92rem;
}
.nav .dropdown-menu a::after { display: none; }
.nav .dropdown-menu a:hover { background: rgba(217, 168, 120, 0.08); color: var(--rose-gold-light); padding-left: 1.7rem; }

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.mobile-menu-toggle span { width: 25px; height: 2px; background: var(--gradient-gold); border-radius: 2px; transition: all var(--t-normal); }

/* ========================================================
   히어로
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 130px 2rem 5rem;
    background: var(--gradient-dark);
}

.hero-background { position: absolute; inset: 0; z-index: 0; overflow: hidden; }

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.75;
    animation: float 22s ease-in-out infinite;
}

.orb-1 { width: 620px; height: 620px; background: var(--gradient-orb-1); top: -220px; left: -140px; }
.orb-2 { width: 520px; height: 520px; background: var(--gradient-orb-2); bottom: -180px; right: -120px; animation-delay: 4s; }
.orb-3 { width: 440px; height: 440px; background: var(--gradient-orb-3); top: 45%; left: 55%; transform: translate(-50%, -50%); animation-delay: 8s; }

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(217,168,120,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217,168,120,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 960px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.hero-content.show { opacity: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.5rem;
    background: rgba(217, 168, 120, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(217, 168, 120, 0.35);
    color: var(--rose-gold-light);
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    margin-bottom: 1.4rem;
    line-height: 1.25;
    animation: fadeInUp 1s ease 0.2s both;
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    text-shadow: 0 8px 40px rgba(108, 63, 163, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    color: var(--text-soft);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 780px;
    margin: 0 auto 2.6rem;
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    backdrop-filter: blur(14px);
    animation: fadeInUp 1s ease 0.55s both;
}

.hero-fact { display: flex; flex-direction: column; gap: 0.3rem; }
.hero-fact-label { font-size: 0.75rem; color: var(--text-mute); letter-spacing: 1px; }
.hero-fact-value { font-size: 1.05rem; font-weight: 700; color: var(--rose-gold-light); font-family: 'Playfair Display', serif; }

.hero-buttons {
    display: flex;
    gap: 1.4rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.75s both;
}

.scroll-hint {
    position: absolute;
    bottom: 34px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-mute);
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 1s both;
}
.scroll-hint-line { width: 1px; height: 34px; background: linear-gradient(180deg, var(--rose-gold), transparent); animation: scrollLine 2s ease-in-out infinite; }

/* ========================================================
   버튼
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.15rem 2.4rem;
    font-size: 1.02rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--t-normal);
    position: relative;
    overflow: hidden;
    font-family: 'Noto Sans KR', sans-serif;
    cursor: pointer;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.btn:hover::before { width: 400px; height: 400px; }
.btn:hover { transform: translateY(-3px); }

.btn-call { background: var(--gradient-primary); color: var(--white); box-shadow: 0 10px 30px rgba(108, 63, 163, 0.4); }
.btn-call:hover { box-shadow: 0 15px 40px rgba(108, 63, 163, 0.55); }

.btn-kakao { background: linear-gradient(135deg, #ffe812 0%, #ffd60a 100%); color: #3c1e1e; box-shadow: 0 10px 30px rgba(255, 214, 10, 0.25); }

.btn-outline {
    background: transparent;
    border: 1px solid var(--rose-gold);
    color: var(--rose-gold-light);
}
.btn-outline:hover { background: rgba(217, 168, 120, 0.08); }

.btn-large { padding: 1.4rem 2.8rem; font-size: 1.1rem; }
.btn svg, .btn .btn-content { position: relative; z-index: 1; }
.btn-content { display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; }
.btn-label { font-size: 0.8rem; opacity: 0.85; }
.btn-text { font-size: 1.05rem; font-weight: 700; }

/* ========================================================
   트러스트 마퀴
   ======================================== */
.marquee-section {
    background: var(--bg-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.3rem 0;
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: flex;
    width: max-content;
    gap: 3.5rem;
    animation: marquee 32s linear infinite;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-mute);
    white-space: nowrap;
}
.marquee-item .dot { color: var(--rose-gold); }
.marquee-item strong { color: var(--rose-gold-light); font-family: 'Playfair Display', serif; }

/* ========================================================
   섹션 공통
   ======================================== */
.section { padding: 7rem 2rem; position: relative; }
.container { max-width: 1440px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 4.5rem; }

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.3rem;
    border: 1px solid rgba(217, 168, 120, 0.4);
    color: var(--rose-gold-light);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    background: rgba(217, 168, 120, 0.06);
}

.section-title {
    font-size: 2.9rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--white);
    line-height: 1.35;
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
}

.section-subtitle {
    font-size: 1.12rem;
    color: var(--text-mute);
    line-height: 1.85;
    max-width: 640px;
    margin: 0 auto;
}

.section-alt { background: var(--bg-deep); }

/* ========================================================
   한눈에 보기 요약 박스 (AEO)
   ======================================== */
.summary-box {
    max-width: 980px;
    margin: -3.5rem auto 0;
    position: relative;
    z-index: 3;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.4rem 2.6rem;
    box-shadow: var(--shadow-lg);
}
.summary-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--rose-gold-light);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.summary-item { border-left: 2px solid var(--line); padding-left: 1rem; }
.summary-item dt { font-size: 0.8rem; color: var(--text-mute); margin-bottom: 0.3rem; }
.summary-item dd { font-size: 1.05rem; font-weight: 700; color: var(--white); }

/* ========================================================
   소개 카드
   ======================================== */
.intro-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.intro-card {
    background: var(--gradient-card), var(--bg-card);
    padding: 2.8rem 2.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--t-normal);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-normal);
}
.intro-card:hover::before { transform: scaleX(1); }
.intro-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: rgba(217, 168, 120, 0.35); }

.card-number {
    position: absolute;
    top: 18px; right: 24px;
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: transparent;
    -webkit-text-stroke: 1px rgba(217, 168, 120, 0.3);
}

.card-icon-wrapper {
    width: 68px; height: 68px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.6rem;
    box-shadow: var(--shadow-gold);
}
.card-icon { font-size: 1.9rem; }

.intro-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.9rem; color: var(--white); font-family: 'Playfair Display', 'Noto Sans KR', serif; }
.intro-card p { color: var(--text-mute); line-height: 1.85; font-size: 0.97rem; }

/* ========================================================
   Why + Stats
   ======================================== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.why-content { text-align: left; }
.why-list { display: flex; flex-direction: column; gap: 1.8rem; }
.why-item { display: flex; gap: 1.4rem; align-items: flex-start; }

.why-icon {
    width: 46px; height: 46px;
    background: var(--gradient-gold);
    color: var(--void);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.why-text h4 { font-size: 1.18rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--white); }
.why-text p { color: var(--text-mute); line-height: 1.75; font-size: 0.95rem; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }

.stat-card {
    background: var(--bg-card);
    padding: 2.4rem 1.6rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--t-normal);
    border: 1px solid var(--line);
}
.stat-card:hover { transform: translateY(-8px); border-color: var(--rose-gold); box-shadow: var(--shadow-gold); }

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.85rem; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.3rem; }
.stat-desc { font-size: 0.88rem; color: var(--text-faint); }

/* ========================================================
   이용 절차 (Process)
   ======================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 34px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line), var(--line), transparent);
    z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; padding: 0 0.5rem; }
.process-num {
    width: 68px; height: 68px;
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--rose-gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose-gold-light);
    box-shadow: var(--shadow-gold);
}
.process-step h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.process-step p { font-size: 0.92rem; color: var(--text-mute); line-height: 1.7; }

/* ========================================================
   매니저 라인업
   ======================================== */
.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.6rem;
}
.host-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.4rem;
    text-align: center;
    transition: all var(--t-normal);
}
.host-card:hover { transform: translateY(-8px); border-color: var(--rose-gold); box-shadow: var(--shadow-gold); }
.host-avatar {
    width: 84px; height: 84px;
    margin: 0 auto 1.3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
}
.host-avatar::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(217, 168, 120, 0.5);
}
.host-card h4 { font-size: 1.02rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.host-tag { font-size: 0.82rem; color: var(--rose-gold-light); margin-bottom: 0.7rem; font-weight: 600; }
.host-card p { font-size: 0.85rem; color: var(--text-faint); line-height: 1.6; }
.hosts-note { text-align: center; margin-top: 2.5rem; color: var(--text-faint); font-size: 0.9rem; }

/* ========================================================
   가격
   ======================================== */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.8rem; margin-top: 1rem; }

.price-card {
    background: var(--bg-card);
    padding: 2.8rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--t-normal);
    position: relative;
    border: 1px solid var(--line);
}
.price-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: rgba(217, 168, 120, 0.4); }

.price-card.popular {
    background: linear-gradient(160deg, rgba(217, 168, 120, 0.1), var(--bg-card) 55%);
    border-color: var(--rose-gold);
    transform: scale(1.04);
}
.price-card.popular:hover { transform: translateY(-12px) scale(1.04); }

.popular-badge {
    position: absolute;
    top: -14px; right: 28px;
    background: var(--gradient-gold);
    color: var(--void);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.price-header { text-align: center; margin-bottom: 1.8rem; }
.person-icon { font-size: 2.6rem; margin-bottom: 0.9rem; }
.price-header h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; font-family: 'Playfair Display', serif; }
.price-desc { font-size: 0.9rem; color: var(--text-faint); }

.price-amount { text-align: center; margin-bottom: 1.8rem; }
.price-currency { font-size: 1.3rem; font-weight: 700; color: var(--text-mute); vertical-align: top; }
.price-number { font-size: 2.7rem; font-weight: 900; font-family: 'Playfair Display', serif; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.price-features li { padding: 0.75rem 0; color: var(--text-mute); display: flex; align-items: center; gap: 0.9rem; font-size: 0.95rem; border-bottom: 1px solid var(--line-soft); }
.price-features li:last-child { border-bottom: none; }

.check-icon {
    width: 22px; height: 22px;
    background: var(--gradient-gold);
    color: var(--void);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 0.75rem;
    flex-shrink: 0;
}

.price-notice {
    margin-top: 2.6rem;
    text-align: center;
    padding: 1.4rem 2rem;
    background: rgba(217, 168, 120, 0.06);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--rose-gold);
}
.price-notice p { color: var(--text-soft); font-size: 1.02rem; }

/* ========================================================
   서비스
   ======================================== */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 1.8rem; }

.service-card {
    background: var(--gradient-card), var(--bg-card);
    padding: 2.8rem 2.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--t-normal);
    border: 1px solid var(--line);
}
.service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: rgba(217, 168, 120, 0.35); }

.service-icon {
    width: 82px; height: 82px;
    margin: 0 auto 1.4rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: all var(--t-normal);
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(8deg); }
.service-icon svg { color: var(--white); }

.service-card h3 { font-size: 1.32rem; font-weight: 700; margin-bottom: 0.9rem; color: var(--white); font-family: 'Playfair Display', 'Noto Sans KR', serif; }
.service-card p { color: var(--text-mute); line-height: 1.85; margin-bottom: 1.2rem; font-size: 0.95rem; }
.service-link { color: var(--rose-gold-light); font-weight: 700; font-size: 0.95rem; }

/* ========================================================
   후기 (Testimonials)
   ======================================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    transition: all var(--t-normal);
}
.testimonial-card:hover { border-color: var(--rose-gold); box-shadow: var(--shadow-gold); transform: translateY(-6px); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-soft); font-size: 0.96rem; line-height: 1.8; margin-bottom: 1.3rem; }
.testimonial-author { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-faint); border-top: 1px solid var(--line-soft); padding-top: 1rem; }
.testimonial-author strong { color: var(--rose-gold-light); font-weight: 700; }

/* ========================================================
   지역 카드
   ======================================== */
.regions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; }
.region-card {
    display: block;
    text-decoration: none;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    transition: all var(--t-normal);
    position: relative;
    overflow: hidden;
}
.region-card:hover { transform: translateY(-8px); border-color: var(--rose-gold); box-shadow: var(--shadow-gold); }
.region-card .region-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.region-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.6rem; font-family: 'Playfair Display', serif; }
.region-card p { font-size: 0.9rem; color: var(--text-mute); line-height: 1.7; margin-bottom: 1rem; }
.region-card .region-link { font-size: 0.85rem; color: var(--rose-gold-light); font-weight: 700; }

/* ========================================================
   FAQ
   ======================================== */
.faq-container { max-width: 920px; margin: 0 auto; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: all var(--t-normal);
}
.faq-item:hover { border-color: rgba(217, 168, 120, 0.3); }

.faq-question { padding: 1.7rem 2.2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question h3 { font-size: 1.08rem; font-weight: 600; color: var(--white); margin: 0; }

.faq-toggle {
    width: 36px; height: 36px;
    background: transparent;
    border: 1px solid var(--rose-gold);
    color: var(--rose-gold-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 300;
    transition: all var(--t-normal);
    flex-shrink: 0;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); background: var(--gradient-gold); color: var(--void); border-color: transparent; }

.faq-answer { max-height: 0; overflow: hidden; transition: all var(--t-slow); }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 2.2rem 1.8rem; color: var(--text-mute); line-height: 1.85; font-size: 0.98rem; }

/* ========================================================
   위치
   ======================================== */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.location-info { display: flex; flex-direction: column; gap: 1.4rem; }

.info-item {
    display: flex; gap: 1.3rem; padding: 1.7rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    transition: all var(--t-normal);
}
.info-item:hover { transform: translateX(8px); border-color: rgba(217, 168, 120, 0.35); }
.info-icon { font-size: 2rem; flex-shrink: 0; }
.info-content h4 { font-size: 1.12rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.info-content p { color: var(--text-mute); line-height: 1.7; font-size: 0.93rem; }

.location-contact { padding: 2.2rem; background: var(--gradient-primary); border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-md); }
.location-contact h4 { font-size: 1.15rem; margin-bottom: 1.3rem; font-weight: 700; color: var(--white); }
.contact-buttons-small { display: flex; flex-direction: column; gap: 0.9rem; }

.btn-small { padding: 0.9rem 1.8rem; background: var(--white); color: var(--void); border-radius: var(--radius-full); font-weight: 700; text-decoration: none; transition: all var(--t-normal); font-size: 0.95rem; }
.btn-small:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.location-map {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: flex; align-items: center; justify-content: center;
    min-height: 460px;
    position: relative;
    overflow: hidden;
}
.location-map::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(217,168,120,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(217,168,120,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}
.map-placeholder { text-align: center; color: var(--text-mute); position: relative; z-index: 1; }
.map-placeholder svg { color: var(--rose-gold); margin-bottom: 1.4rem; }
.map-placeholder p { font-size: 1.02rem; line-height: 1.85; }

/* ========================================================
   컨택트 CTA
   ======================================== */
.contact {
    background: var(--bg-mid);
    padding: 7rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
}
.contact-bg { position: absolute; inset: 0; overflow: hidden; }
.orb-contact-1, .orb-contact-2 { position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(110px); }
.orb-contact-1 { background: var(--gradient-orb-1); top: -220px; right: -120px; animation: float 18s ease-in-out infinite; }
.orb-contact-2 { background: var(--gradient-orb-2); bottom: -220px; left: -120px; animation: float 22s ease-in-out infinite reverse; }

.contact-content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.contact-title { font-size: 3.1rem; font-weight: 900; margin-bottom: 1.4rem; line-height: 1.35; font-family: 'Playfair Display', 'Noto Sans KR', serif; }
.contact-subtitle { font-size: 1.18rem; margin-bottom: 2.6rem; color: var(--text-soft); line-height: 1.85; }

.contact-features { display: flex; justify-content: center; gap: 2.6rem; margin-bottom: 2.6rem; flex-wrap: wrap; }
.contact-feature { display: flex; align-items: center; gap: 0.7rem; font-size: 1.02rem; font-weight: 600; color: var(--text-soft); }
.feature-check { width: 28px; height: 28px; background: rgba(217, 168, 120, 0.12); border: 1px solid var(--rose-gold); color: var(--rose-gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.8rem; }

.contact-buttons { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; }

/* ========================================================
   푸터
   ======================================== */
.footer { background: var(--void); color: var(--white); padding: 4.5rem 2rem 2rem; border-top: 1px solid var(--line); }
.footer-content { display: grid; grid-template-columns: 1.3fr 2fr; gap: 4rem; margin-bottom: 2.6rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { font-size: 1.55rem; font-weight: 900; display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; font-family: 'Playfair Display', serif; }
.footer-desc { color: var(--text-faint); line-height: 1.85; font-size: 0.98rem; }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 1.3rem; color: var(--rose-gold-light); }
.footer-col ul li { margin-bottom: 0.85rem; }
.footer-col ul li a { color: var(--text-faint); text-decoration: none; transition: all var(--t-normal); font-size: 0.92rem; }
.footer-col ul li a:hover { color: var(--white); padding-left: 5px; }
.footer-col ul li { color: var(--text-faint); font-size: 0.92rem; }

.footer-business { background: rgba(217, 168, 120, 0.05); border-radius: var(--radius-md); padding: 1.8rem; margin: 1.8rem 0; text-align: center; border: 1px solid var(--line); }
.footer-business h3 { color: var(--rose-gold-light); font-size: 1.28rem; margin-bottom: 1.3rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.business-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.9rem; text-align: left; }
.business-info p { color: var(--text-mute); font-size: 0.9rem; line-height: 1.8; }
.business-info strong { color: var(--text-soft); margin-right: 0.4rem; font-weight: 700; }

.footer-links-bar { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem 1rem; padding: 1.3rem 0; margin: 1.3rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer-links-bar a { color: var(--text-mute); text-decoration: none; font-size: 0.87rem; transition: color var(--t-normal); background: none; border: none; cursor: pointer; font-family: inherit; }
.footer-links-bar a:hover { color: var(--rose-gold-light); }
.footer-links-bar .divider { color: var(--text-faint); }

.footer-keywords { background: rgba(255, 255, 255, 0.02); border-radius: var(--radius-md); padding: 1.8rem; margin: 1.8rem 0; border: 1px solid var(--line-soft); }
.footer-keywords p { color: var(--text-faint); font-size: 0.83rem; line-height: 2; margin-bottom: 0.9rem; }
.footer-keywords p:last-child { margin-bottom: 0; }
.footer-keywords strong { color: var(--text-mute); font-weight: 600; margin-right: 0.4rem; }

.footer-bottom { text-align: center; display: flex; flex-direction: column; gap: 0.8rem; padding-top: 0.6rem; }
.footer-disclaimer { color: var(--text-faint); font-size: 0.82rem; line-height: 1.8; }
.footer-copyright { color: var(--text-faint); font-size: 0.85rem; margin-top: 0.6rem; }

/* ========================================================
   모달
   ======================================== */
.modal { display: none; position: fixed; z-index: 10000; inset: 0; overflow: auto; background: rgba(5, 3, 10, 0.8); backdrop-filter: blur(6px); animation: fadeIn 0.3s ease; }
.modal-content { background: var(--bg-card); border: 1px solid var(--line); margin: 3% auto; border-radius: var(--radius-md); width: 90%; max-width: 800px; max-height: 85vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: slideDown 0.3s ease; }
.modal-content h2 { background: var(--gradient-primary); color: white; padding: 1.8rem 2rem; margin: 0; border-radius: var(--radius-md) var(--radius-md) 0 0; font-size: 1.6rem; font-family: 'Playfair Display', serif; }
.modal-body { padding: 2rem; }
.modal-body h3 { color: var(--rose-gold-light); font-size: 1.2rem; margin-top: 1.8rem; margin-bottom: 0.9rem; }
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { color: var(--text-mute); line-height: 1.85; margin-bottom: 0.9rem; font-size: 0.95rem; }
.modal-body ul { padding-left: 1.4rem; margin-bottom: 0.9rem; }
.modal-body ul li { color: var(--text-mute); line-height: 1.8; position: relative; margin-bottom: 0.4rem; font-size: 0.95rem; }
.modal-body ul li:before { content: '•'; color: var(--rose-gold); font-weight: bold; position: absolute; left: -1.2rem; }
.modal-close { color: white; float: right; font-size: 2.2rem; font-weight: 300; line-height: 1; cursor: pointer; transition: all var(--t-normal); padding: 0 0.4rem; }
.modal-close:hover { transform: rotate(90deg); opacity: 0.7; }

/* ========================================================
   애니메이션
   ======================================== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0) translateX(0); } 25% { transform: translateY(-24px) translateX(14px); } 50% { transform: translateY(0) translateX(24px); } 75% { transform: translateY(-24px) translateX(14px); } }
@keyframes ringPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes scrollLine { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.4); opacity: 0.4; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ========================================================
   반응형
   ======================================== */
@media (max-width: 1200px) {
    .why-grid, .location-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .summary-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
    .process-grid::before { display: none; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3.3rem; }
    .section-title { font-size: 2.3rem; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
    .hero-facts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .nav.active {
        display: flex; position: fixed; top: 68px; right: 0;
        background: rgba(13, 8, 23, 0.98);
        border: 1px solid var(--line);
        flex-direction: column; padding: 2rem; gap: 1.4rem;
        box-shadow: var(--shadow-lg);
        border-radius: 20px 0 0 20px;
        min-width: 200px; z-index: 999;
        animation: slideInRight 0.3s ease;
    }
    @keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.08rem; }
    .summary-box { margin-top: -2.2rem; padding: 1.8rem; }
    .section { padding: 4.5rem 1.4rem; }
    .section-title { font-size: 1.9rem; }
    .contact-title { font-size: 2.3rem; }
    .contact-features, .contact-buttons { flex-direction: column; align-items: center; }
    .contact-buttons .btn { width: 100%; max-width: 400px; }
    .price-grid, .service-grid, .intro-content, .footer-links { grid-template-columns: 1fr; }
    .floating-contact { right: 18px; bottom: 18px; }
    .floating-btn { width: 52px; height: 52px; }
    .business-info { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.05rem; }
    .hero-facts { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 1.65rem; }
    .hero-buttons, .contact-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .stat-number { font-size: 2.3rem; }
    .price-card, .service-card, .intro-card { padding: 2rem 1.5rem; }
    .faq-question { padding: 1.3rem 1.5rem; }
    .faq-answer p { padding: 0 1.5rem 1.5rem; }
    .location-map { padding: 2rem; min-height: 280px; }
    .summary-grid { grid-template-columns: 1fr; }
}
