@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Pinyon+Script&family=Great+Vibes&family=Noto+Serif+KR:wght@400;500;600;700&display=swap');

:root {
    /* Premium Color Palette */
    --primary-dark: #0a0a0a;
    --primary-black: #111111;
    --secondary-dark: #1a1a1a;
    --gold: #c9a86c;
    --gold-light: #d4b77e;
    --gold-dark: #a8894d;
    --cream: #f5f1e8;
    --cream-light: #faf8f3;
    --text-light: #e8e8e8;
    --text-muted: #888888;
    --text-dark: #333333;
    --white: #ffffff;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #c9a86c 0%, #d4b77e 50%, #a8894d 100%);
    --dark-gradient: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --overlay-gradient: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    max-width: 100vw;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Typography Classes */
.font-serif {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

.text-gold {
    color: var(--gold);
}

.text-gold-dark {
    color: var(--gold-dark);
}

.bg-gold {
    background: var(--gold-gradient);
}

/* Premium Navigation */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    padding: 8px 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .premium-nav {
        padding: 12px 0;
    }
}

.premium-nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1024px) {
    .premium-nav.scrolled {
        padding: 10px 0;
    }
}

/* Navigation Logo */
.nav-logo {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-logo-gold {
    color: var(--gold);
    font-weight: 700;
    transition: color 0.3s ease;
}

/* 위쪽 화살표 — 기본 숨김 */
.nav-logo-arrow {
    display: inline-block;
    margin-left: 5px;
    font-size: 0.65em;
    opacity: 0;
    transition: opacity 0.3s ease;
    vertical-align: middle;
    color: var(--white);
}

/* 스크롤 내렸을 때 화살표 반투명 표시 */
.nav-logo-link.has-scrolled .nav-logo-arrow {
    opacity: 0.7;
}

/* 호버/터치 — 텍스트 골드→흰색, 화살표 완전 불투명 */
.nav-logo-link:hover .nav-logo,
.nav-logo-link:hover .nav-logo-gold {
    color: var(--white);
}
.nav-logo-link:hover .nav-logo-arrow {
    opacity: 1;
}

@media (min-width: 640px) {
    .nav-logo {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
}

@media (min-width: 1024px) {
    .nav-logo {
        font-size: 26px;
        letter-spacing: 2px;
    }
}

.nav-link {
    position: relative;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

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

/* Mobile Navigation Link */
.nav-link-mobile {
    position: relative;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 6px 0;
    white-space: nowrap;
}

.nav-link-mobile:hover,
.nav-link-mobile:active {
    color: var(--gold);
}

/* Two-line Navigation Link */
.nav-link-two-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
}

.nav-link-two-line span {
    display: block;
}

@media (min-width: 640px) {
    .nav-link-mobile {
        font-size: 16px;
        letter-spacing: 1.5px;
    }
}

@media (min-width: 1024px) {
    .nav-link-mobile {
        font-size: 17px;
        letter-spacing: 2.5px;
        padding: 8px 0;
    }
    
    .nav-link-mobile::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width 0.3s ease;
    }
    
    .nav-link-mobile:hover::after {
        width: 100%;
    }
}

/* Premium Button Styles */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-gold:hover {
    color: var(--primary-dark);
}

.btn-gold:hover::before {
    left: 0;
}

.btn-gold-filled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-gold-filled:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.3);
}

/* Navigation Button - Responsive */
.btn-gold-nav {
    padding: 4px 10px;
    font-size: 15px;
    letter-spacing: 1px;
}

/* Reservation Button Blink Animation */
/* 4초 대기 → 0.5초 페이드인 → 1초 유지 → 0.5초 페이드아웃 = 총 6초 */
.btn-gold-nav.blink-reservation {
    animation: reservationBlink 6s ease infinite;
}

.btn-gold-nav.blink-reservation::before {
    left: 0;
    opacity: 0;
    transition: none;
    animation: reservationBlinkBg 6s ease infinite;
}

@keyframes reservationBlink {
    0%, 66.7% {
        color: var(--gold);
    }
    75% {
        color: var(--primary-dark);
    }
    91.7% {
        color: var(--primary-dark);
    }
    100% {
        color: var(--gold);
    }
}

@keyframes reservationBlinkBg {
    0%, 66.7% {
        opacity: 0;
    }
    75% {
        opacity: 1;
    }
    91.7% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Reviews More Button - Mobile Friendly */
.btn-reviews-more {
    font-size: 14px;
    padding: 14px 24px;
    letter-spacing: 1px;
}

@media (min-width: 640px) {
    .btn-reviews-more {
        font-size: 12px;
        padding: 16px 40px;
        letter-spacing: 3px;
    }
}

@media (min-width: 640px) {
    .btn-gold-nav {
        padding: 5px 12px;
        font-size: 16px;
        letter-spacing: 1.5px;
    }
}

@media (min-width: 1024px) {
    .btn-gold-nav {
        padding: 4px 12px;
        font-size: 13px;
        letter-spacing: 1.5px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: auto;
    min-height: 700px;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    overflow: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/bg_1.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 1.0;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(10, 10, 10, 0.4) 0%, 
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    width: 100%;
}

/* ===================================
   Combined Hero Section (Hero + About)
   =================================== */
.hero-combined {
    min-height: 100vh;
    height: auto;
    padding-top: 75px;
    padding-bottom: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-combined {
        padding-top: 88px;
    }
}

.hero-combined-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 13px 20px;
    gap: 30px;
}

@media (min-width: 1024px) {
    .hero-combined-container {
        flex-direction: row;
        padding: 0 60px;
        gap: 50px;
        align-items: flex-end;
    }
}

/* Hero Left - Text Content */
.hero-left {
    flex: 1;
    text-align: center;
    max-width: 700px;
}

@media (min-width: 1024px) {
    .hero-left {
        text-align: left;
        max-width: none;
    }
}

.hero-left .hero-badge {
    margin-bottom: 32px;
}

.hero-left .hero-title {
    margin-bottom: 26px;
    font-size: clamp(36px, 6vw, 70px);
}

.hero-left .gold-divider {
    margin-bottom: 30px;
}

/* Hero Introduction Text */
.hero-intro {
    text-align: left;
    margin-top: 15px;
}

.hero-intro-highlight {
    font-size: 22px;
    font-weight: 600;
    color: transparent;
    background: linear-gradient(135deg, #d4b77e 0%, #f5e6c8 25%, #c9a86c 50%, #f5e6c8 75%, #a8894d 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 22px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    animation: goldShimmer 4s ease-in-out infinite;
}

@media (min-width: 640px) {
    .hero-intro-highlight {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .hero-intro-highlight {
        font-size: 26px;
    }
}

.hero-intro-greeting {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.hero-intro-greeting strong {
    color: var(--gold);
}

.hero-intro-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.7;
    opacity: 0.95;
}

@media (min-width: 640px) {
    .hero-intro-text {
        font-size: 18px;
    }
}

@media (min-width: 1024px) {
    .hero-intro-text {
        font-size: 18px;
        line-height: 1.7;
    }
}

.hero-intro-text strong {
    color: var(--gold);
    font-weight: 600;
}

.hero-intro-text:last-child {
    margin-bottom: 0;
}

/* Hero Right - Profile & Stats */
.hero-right {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 1024px) {
    .hero-right {
        align-self: flex-end;
        margin-top: 180px;
        padding-bottom: 20px;
    }
}

.hero-right-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

@media (min-width: 640px) {
    .hero-right-inner {
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .hero-right-inner {
        gap: 25px;
    }
}

/* Smaller Profile Frame */
.hero-profile-frame {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold-light) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 168, 108, 0.15);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .hero-profile-frame {
        width: 140px;
        height: 140px;
    }
}

@media (min-width: 1024px) {
    .hero-profile-frame {
        width: 160px;
        height: 160px;
    }
}

.hero-profile-small {
    /* Additional styles for small profile */
}

.hero-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.hero-profile-frame:hover .hero-profile-image {
    filter: grayscale(0%);
}

/* Vertical Stats Container (Right Side) */
.hero-stats-vertical {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-left: 20px;
}

@media (min-width: 640px) {
    .hero-stats-vertical {
        gap: 15px;
        padding-left: 30px;
    }
}

/* Horizontal Stat Row (Number + Label on same line) */
.hero-stat-h {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
}

.hero-stat-h .hero-stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    font-style: italic;
}

@media (min-width: 640px) {
    .hero-stat-h .hero-stat-number {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .hero-stat-h .hero-stat-number {
        font-size: 36px;
    }
}

.hero-stat-h .hero-stat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (min-width: 640px) {
    .hero-stat-h .hero-stat-label {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

@media (min-width: 1024px) {
    .hero-stat-h .hero-stat-label {
        font-size: 12px;
    }
}

.hero-stat-line-h {
    width: 60px;
    height: 1px;
    background: rgba(201, 168, 108, 0.4);
    margin-left: 5px;
}

@media (min-width: 640px) {
    .hero-stat-line-h {
        width: 80px;
    }
}

.hero-badge {
    display: inline-block;
    padding: 13px 30px;
    border: 1px solid var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    /* Gold shimmer text effect */
    color: transparent;
    background: linear-gradient(135deg, #d4b77e 0%, #f5e6c8 25%, #c9a86c 50%, #f5e6c8 75%, #a8894d 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: goldShimmer 4s ease-in-out infinite;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-title span {
    display: block;
    font-family: 'Noto Serif KR', 'Playfair Display', Georgia, serif;
    color: transparent;
    background: linear-gradient(135deg, #d4b77e 0%, #f5e6c8 25%, #c9a86c 50%, #f5e6c8 75%, #a8894d 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
    font-weight: 700;
    font-size: 1.1em;
    letter-spacing: 3px;
    position: relative;
    animation: goldShimmer 4s ease-in-out infinite;
}

.hero-title span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-title span::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% center;
        filter: brightness(1) drop-shadow(0 0 20px rgba(201, 168, 108, 0.3));
    }
    50% {
        background-position: 100% center;
        filter: brightness(1.2) drop-shadow(0 0 30px rgba(201, 168, 108, 0.5));
    }
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Hero Keywords */
.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 40px;
}

.hero-keyword {
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
}

.hero-keyword-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

@media (max-width: 640px) {
    .hero-keywords {
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-keyword-divider {
        display: none;
    }
    
    .hero-keyword {
        font-size: 11px;
        padding: 6px 14px;
        border: 1px solid rgba(201, 168, 108, 0.3);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.hero-stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cccccc;
}

.hero-stat-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-number {
        font-size: 24px;
    }
    
    .hero-stat-label {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .hero-stat-line {
        height: 30px;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    margin-top: 15px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 60px; }
    50% { opacity: 0.5; height: 40px; }
}

/* Section Styles */
.section-dark {
    background: var(--primary-dark);
    color: var(--white);
}

.section-cream {
    background: var(--cream-light);
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    opacity: 0.85;
}

.section-highlight {
    font-size: 22px;
    font-weight: 600;
    color: transparent;
    background: linear-gradient(135deg, #d4b77e 0%, #f5e6c8 25%, #c9a86c 50%, #f5e6c8 75%, #a8894d 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    animation: goldShimmer 4s ease-in-out infinite;
}

@media (min-width: 640px) {
    .section-highlight {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .section-highlight {
        font-size: 26px;
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

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

.about-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.about-image:hover {
    filter: grayscale(0%);
}

.about-image-frame {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 0;
    bottom: -30px;
    border: 1px solid var(--gold);
    pointer-events: none;
}

.about-content {
    padding-left: 60px;
}

.about-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
    border-left: 2px solid var(--gold);
}

.about-text {
    font-size: 15px;
    color: #666;
    line-height: 2;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 60px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #eee;
}

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

.stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Services Section */
.services-section {
    padding: 60px 0 80px 0;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(201, 168, 108, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(201, 168, 108, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 30, 30, 1) 0%, rgba(10, 10, 10, 1) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 108, 0.3) 50%, transparent 100%);
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 108, 0.3) 50%, transparent 100%);
}

/* Service anchor for hash navigation — inside card but positioned absolutely to avoid layout impact */
.service-anchor {
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    scroll-margin-top: 80px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 168, 108, 0.3);
    transform: translateY(-10px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--gold);
    font-size: 28px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--primary-dark);
}

.service-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
    opacity: 0.85;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 15px;
}

/* Reviews Section */
.reviews-section {
    position: relative;
    padding: 60px 0 45px 0;
    background: var(--primary-dark);
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.35;
    z-index: 0;
}

.reviews-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg, 
        rgba(10, 10, 10, 0.6) 0%, 
        rgba(10, 10, 10, 0.75) 100%
    );
    z-index: 0;
}

.reviews-section > div {
    position: relative;
    z-index: 1;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 168, 108, 0.3);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    padding: 6px 12px;
    border: 1px solid var(--gold);
}

.review-rating {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 12px;
}

.review-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 25px;
    opacity: 0.85;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-author {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
}

.review-part {
    font-size: 12px;
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 150px 0;
    background: var(--primary-black);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Media Section Compact */
.media-section-compact {
    padding: 50px 0;
    background: var(--cream-light);
    border-top: 1px solid #e5e5e5;
}

.media-compact-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.media-compact-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.media-compact-title .section-subtitle {
    margin-bottom: 0;
}

.media-compact-title h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}

.media-compact-links {
    display: flex;
    gap: 15px;
}

/* 2x2 Grid Layout for Media Links */
.media-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 640px) {
    .media-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.media-link-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s ease;
}

.media-link-btn i {
    font-size: 16px;
}

.media-link-btn.naver {
    background: #03c75a;
}

.media-link-btn.naver:hover {
    background: #02b350;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(3, 199, 90, 0.3);
}

.media-link-btn.youtube {
    background: #ff0000;
}

.media-link-btn.youtube:hover {
    background: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.media-link-btn.website {
    background: var(--primary-dark);
}

.media-link-btn.website:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .media-compact-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .media-compact-title {
        flex-direction: column;
        gap: 10px;
    }
    
    .media-compact-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .media-link-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Media Section (legacy) */
.media-section {
    padding: 120px 0;
    background: var(--cream-light);
}

.media-card {
    display: flex;
    align-items: center;
    padding: 30px 40px;
    background: var(--white);
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
}

.media-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}

.media-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-right: 30px;
    flex-shrink: 0;
}

.media-icon.naver {
    background: #03c75a;
    color: white;
}

.media-icon.youtube {
    background: #ff0000;
    color: white;
}

.media-icon.website {
    background: var(--primary-dark);
    color: var(--gold);
}

.media-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.media-info p {
    font-size: 14px;
    color: var(--text-muted);
}

.media-arrow {
    margin-left: auto;
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.media-card:hover .media-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Footer */
.premium-footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 25px 0 40px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
}

.footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-desc {
    font-size: 14px;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 300px;
    opacity: 0.9;
}

/* Footer Social Grid */
.footer-social-grid {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-row {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border: 1px solid rgba(201, 168, 108, 0.25);
    border-radius: 6px;
    background: rgba(201, 168, 108, 0.06);
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-btn i {
    font-size: 15px;
}

.footer-social-btn:hover {
    background: rgba(201, 168, 108, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-pc-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border: 1px solid rgba(201, 168, 108, 0.35);
    border-radius: 6px;
    background: rgba(201, 168, 108, 0.06);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-pc-link i:first-child {
    font-size: 15px;
}

.footer-pc-link i:last-child {
    font-size: 11px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-pc-link:hover {
    border-color: var(--gold);
    color: #fff;
    background: rgba(201, 168, 108, 0.12);
}

.footer-pc-link:hover i:last-child {
    opacity: 1;
    transform: translateX(3px);
}

.footer-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-contact-item span {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.85;
}

.footer-contact-item span .text-gold-dark {
    color: var(--gold-dark) !important;
}

.footer-contact-item span .text-gold {
    color: #ffd700 !important;
    font-weight: 600;
}

.footer-phone-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 8px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-phone-btn i {
    color: var(--gold);
    font-size: 16px;
    margin: 0 0 2px 0;
}

.footer-phone-btn span {
    color: var(--gold);
    font-size: 9px;
    line-height: 1;
}

.footer-phone-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.4);
}

.footer-phone-btn:hover i,
.footer-phone-btn:hover span {
    color: var(--primary-dark);
}

/* Hours button - same size box but non-interactive */
.footer-hours-btn {
    cursor: default;
    pointer-events: none;
}

.footer-map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-map-btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.4);
}

.footer-map-btn:hover i {
    color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

/* Divider */
.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 30px 0;
}

.gold-divider-center {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 30px auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .about-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 60px 0;
    }
    
    .about-image-container {
        max-width: 220px;
        margin: 0 auto 20px;
    }
    
    .about-image {
        height: 280px;
        object-fit: cover;
        object-position: top center;
        border-radius: 0;
    }
    
    .about-image-frame {
        top: 12px;
        left: 12px;
        right: -12px;
        bottom: -12px;
    }
    
    .about-content {
        text-align: center;
        padding: 0 15px;
        margin-top: 15px;
    }
    
    .about-content .section-subtitle {
        display: block;
        margin-bottom: 8px;
        font-size: 10px;
    }
    
    .about-content .section-title {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .about-content .gold-divider {
        margin: 15px auto;
        width: 40px;
    }
    
    .about-text {
        font-size: 13px;
        line-height: 1.7;
        text-align: left;
        margin-bottom: 12px;
    }
    
    .about-quote {
        font-size: 22px;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 25px;
        padding-top: 25px;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1 0 30%;
        min-width: 85px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .media-card {
        padding: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 2000;
    padding: 100px 50px;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links li {
    margin-bottom: 30px;
}

.mobile-menu-links a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--gold);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Consultation Section */
.consultation-section {
    position: relative;
    padding: 25px 0 15px 0;
    background: var(--primary-dark);
    overflow: hidden;
}

.consultation-bg {
    display: none;
}

.consultation-overlay {
    display: none;
}

.consultation-subtitle-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.consultation-subtitle-line::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.consultation-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.consultation-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon-box {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
}

.info-value {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.85;
}

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

/* Email Consultation Header */
.email-consultation-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.email-icon-box {
    width: 45px;
    height: 45px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.email-consultation-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
}

.consultation-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 35px;
    border-radius: 0;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 14px;
    font-family: "Pretendard", sans-serif;
    transition: all 0.3s ease;
    outline: none;
    border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a86c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Custom Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-container:hover .checkmark {
    border-color: var(--gold);
}

.checkbox-container input:checked ~ .checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-container input:checked ~ .checkmark::after {
    content: '✓';
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--gold);
    border: none;
    color: var(--primary-dark);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .consultation-form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 80px 0;
    }
    
    .consultation-form-container {
        padding: 30px 20px;
    }
}

/* ===================================
   Service Detail Slide Panel
   =================================== */

.service-detail-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.service-detail-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-detail-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.service-detail-panel.active {
    transform: translateX(0);
}

.service-detail-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-detail-slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    will-change: transform;
}

.service-detail-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    flex-shrink: 0;
    position: relative;
}

.slide-content {
    padding: 80px 30px 120px;
    min-height: 100%;
    box-sizing: border-box;
}

/* Detail Header */
.detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-dark);
}

.detail-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 16px;
    border: 1px solid var(--gold);
}

.detail-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.detail-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 25px 0;
}

.detail-intro {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 40px;
}

/* Scroll Hint */
.detail-scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    margin-top: auto;
    padding-top: 40px;
    animation: pulseRight 1.5s ease-in-out infinite;
}

@keyframes pulseRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Slide Labels */
.slide-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.slide-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--gold);
}

.info-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
}

.info-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.info-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Area Grid */
.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.area-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.area-item:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 108, 0.1);
}

.area-item i {
    font-size: 28px;
    color: var(--gold);
}

.area-item span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item i {
    color: var(--gold);
    font-size: 14px;
}

.benefit-item span {
    font-size: 15px;
    color: var(--text-light);
}

/* Detail CTA */
.detail-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.detail-cta .btn-gold,
.detail-cta .btn-gold-filled {
    width: 100%;
    text-align: center;
    padding: 16px 30px;
}

/* FAQ Slide Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: calc(100vh - 280px);
    overflow-y: auto;
    padding-right: 4px;
}

.faq-list::-webkit-scrollbar {
    width: 3px;
}

.faq-list::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 108, 0.3);
    border-radius: 3px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 108, 0.12);
    border-radius: 10px;
    padding: 14px 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 168, 108, 0.25);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.faq-question i {
    color: var(--gold);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.faq-question span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.faq-answer {
    padding-left: 25px;
}

.faq-answer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Slide Navigation Container */
.slide-nav-container {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
    padding: 0 20px;
}

/* Slide Navigation Buttons */
.slide-nav-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    flex-shrink: 0;
}

.slide-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
}

.slide-nav-btn:active {
    transform: scale(0.95);
}

.slide-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slide-nav-btn.disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Slide Dots */
.slide-dots {
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(201, 168, 108, 0.6);
}

/* Close Button */
.detail-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.detail-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* =============================================
   Review Detail Slide Panel
   ============================================= */

/* Review Detail Link Button (on review cards) */
.review-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px 0 0;
    margin-top: auto;
    transition: all 0.3s ease;
}
.review-detail-link:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}
.review-detail-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}
.review-detail-link:hover i {
    transform: translateX(4px);
}

/* Review Detail Overlay */
.review-detail-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.review-detail-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Review Detail Panel */
.review-detail-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    z-index: 2101;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}
.review-detail-panel.active {
    transform: translateX(0);
}

.review-detail-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.review-detail-slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    will-change: transform;
}

.review-detail-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    flex-shrink: 0;
    position: relative;
}

.review-slide-content {
    padding: 80px 30px 120px;
    min-height: 100%;
    box-sizing: border-box;
}

/* Review slide header */
.review-slide-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.review-slide-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 6px 14px;
    border: 1px solid var(--gold);
}
.review-slide-page {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Review slide title */
.review-slide-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 8px;
}

/* Star rating in slide */
.review-slide-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}
.review-slide-stars i {
    color: var(--gold);
    font-size: 14px;
}

/* Review slide divider */
.review-slide-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 20px 0;
}

/* Review quote */
.review-slide-quote {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(201, 168, 108, 0.3);
}
.review-slide-quote::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 40px;
    color: var(--gold);
    opacity: 0.3;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Review meta info */
.review-slide-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.review-slide-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.review-slide-meta-item i {
    color: var(--gold);
    font-size: 13px;
}

/* Review satisfaction tags */
/* Review CTA */
.review-slide-cta {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.review-slide-cta a {
    display: block;
    text-align: center;
    padding: 14px 24px;
}

/* Swipe hint */
.review-slide-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    margin-top: 30px;
    animation: pulseRight 1.5s ease-in-out infinite;
}

/* Review Nav Container */
.review-slide-nav-container {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
    padding: 0 20px;
}
.review-slide-dots {
    display: flex;
    gap: 10px;
    z-index: 10;
}
.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.review-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}
.review-dot:hover {
    background: rgba(201, 168, 108, 0.6);
}

/* Make review-card flex column so button goes to bottom */
.review-card {
    display: flex;
    flex-direction: column;
}

/* Service Link Button Style */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: gap 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.service-link:hover {
    gap: 15px;
}

/* Responsive for Detail Panel */
@media (max-width: 768px) {
    .service-detail-panel {
        max-width: 100%;
    }
    
    .slide-content {
        padding: 70px 20px 100px;
    }
    
    .detail-title {
        font-size: 26px;
    }
    
    .detail-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .detail-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slide-dots {
        bottom: 30px;
    }

    /* Review Detail Panel Responsive */
    .review-detail-panel {
        max-width: 100%;
    }
    .review-slide-content {
        padding: 60px 20px 100px;
    }
    .review-slide-title {
        font-size: 22px;
    }
    .review-slide-quote {
        font-size: 14px;
        line-height: 1.8;
    }
    .review-slide-meta {
        flex-direction: column;
        gap: 10px;
    }
    .review-slide-nav-container {
        bottom: 20px;
    }
}

/* ===================================
   YouTube Facade Section
   =================================== */

/* Override legacy .media-section for the TV section */
section.media-section {
    padding: 80px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}
section.media-section .section-subtitle {
    display: block;
    margin-bottom: 22px;  /* 간격1: MEDIA FEATURE ↔ 방송 인터뷰 */
}
section.media-section .section-title {
    margin-bottom: 0;     /* title 자체 margin 제거, divider의 margin-top으로 제어 */
}
section.media-section .gold-divider-center {
    margin: 22px auto;    /* 간격2(위) + 간격3(아래): 구분선 상하 균등 */
}
section.media-section .section-desc {
    margin-top: 0;        /* divider의 margin-bottom(22px)이 간격3 역할 */
    margin-bottom: 0;     /* 간격4는 부모 div의 margin-bottom으로 제어 */
}

/* Wrapper gives rounded + shadow */
.youtube-facade-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(201, 168, 108, 0.15);
}

/* Facade container — 16:9 aspect ratio */
.youtube-facade {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
    cursor: pointer;
    overflow: hidden;
}

/* Thumbnail */
.youtube-facade-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.youtube-facade:hover .youtube-facade-thumb {
    transform: scale(1.04);
    filter: brightness(0.75);
}

/* Play button (centred) */
.youtube-facade-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 2;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.youtube-facade:hover .youtube-facade-play {
    transform: translate(-50%, -50%) scale(1.15);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.6));
}

.youtube-facade-play svg {
    display: block;
    width: 68px;
    height: 48px;
}

.youtube-facade-play-bg {
    transition: fill 0.2s ease;
}
.youtube-facade:hover .youtube-facade-play-bg {
    fill: #cc0000;
}

/* Badge (bottom-left) */
.youtube-facade-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(201, 168, 108, 0.3);
    z-index: 2;
    pointer-events: none;
}

/* Active state — hide facade, show iframe */
.youtube-facade--active {
    padding-bottom: 0;
    cursor: default;
}
.youtube-facade--active .youtube-facade-thumb,
.youtube-facade--active .youtube-facade-play,
.youtube-facade--active .youtube-facade-badge {
    display: none;
}

.youtube-facade iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive - smaller play button on mobile */
@media (max-width: 640px) {
    section.media-section {
        padding: 60px 0;
    }
    .youtube-facade-play svg {
        width: 56px;
        height: 40px;
    }
    .youtube-facade-badge {
        font-size: 11px;
        padding: 6px 12px;
        bottom: 10px;
        left: 10px;
    }
}

/* ===================================
   Quick Action Bar (가격표·FAQ·예약)
   =================================== */
.quick-action-bar {
    display: flex;
    gap: 12px;
}

.quick-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 22px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 108, 0.25);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: "Pretendard", sans-serif;
}

.quick-action-btn i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.quick-action-btn:hover {
    background: rgba(201, 168, 108, 0.12);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.15);
}

.quick-action-btn:hover i {
    transform: scale(1.15);
}

.quick-action-btn:active {
    transform: translateY(-1px);
}

.quick-action-btn:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* Quick Action Bar - Gold Filled (예약 버튼 강조) */
.quick-action-btn-gold {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--primary-dark) !important;
}
.quick-action-btn-gold:hover {
    background: var(--gold-light) !important;
    border-color: var(--gold-light) !important;
    color: var(--primary-dark) !important;
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.3);
}
.quick-action-btn-gold i {
    color: var(--primary-dark);
}

/* Email Consult Link (한 줄 버튼) */
.email-consult-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
    padding: 16px 20px;
    background: rgba(201, 168, 108, 0.06);
    border: 1px solid rgba(201, 168, 108, 0.3);
    border-radius: 0;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: "Pretendard", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-consult-link i:first-child {
    font-size: 16px;
}

.email-consult-link i:last-child {
    font-size: 12px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.email-consult-link:hover {
    background: rgba(201, 168, 108, 0.14);
    border-color: var(--gold);
    color: var(--white);
}

.email-consult-link:hover i:last-child {
    opacity: 1;
    transform: translateX(3px);
}

/* ===================================
   FAQ Selection Popup
   =================================== */
.faq-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.faq-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.faq-popup-container {
    position: relative;
    max-width: 420px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #1a1a1a;
    border: 1px solid rgba(201, 168, 108, 0.3);
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-popup-overlay.active .faq-popup-container {
    transform: scale(1) translateY(0);
}

.faq-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-popup-close:hover {
    background: rgba(201, 168, 108, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.faq-popup-header {
    text-align: center;
    padding: 32px 24px 20px;
    border-bottom: 1px solid rgba(201, 168, 108, 0.15);
}

.faq-popup-header i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 10px;
}

.faq-popup-header h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    margin: 0 0 6px 0;
}

.faq-popup-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 400;
}

.faq-popup-list {
    padding: 8px 12px 12px;
}

.faq-popup-item {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 4px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
    font-family: "Pretendard", sans-serif;
}

.faq-popup-item:last-child {
    margin-bottom: 0;
}

.faq-popup-item:hover {
    background: rgba(201, 168, 108, 0.08);
    border-color: rgba(201, 168, 108, 0.25);
}

.faq-popup-item:active {
    background: rgba(201, 168, 108, 0.15);
    transform: scale(0.98);
}

.faq-popup-item-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201, 168, 108, 0.1);
    border: 1px solid rgba(201, 168, 108, 0.2);
}

.faq-popup-item-icon i {
    font-size: 16px;
    color: var(--gold);
}

.faq-popup-item-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.faq-popup-item-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.faq-popup-item-sub {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.3;
}

.faq-popup-arrow {
    flex-shrink: 0;
    font-size: 12px;
    color: rgba(201, 168, 108, 0.4);
    transition: all 0.25s ease;
}

.faq-popup-item:hover .faq-popup-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

.faq-popup-item:hover .faq-popup-item-title {
    color: var(--gold);
}

@media (max-width: 640px) {
    .faq-popup-container {
        max-width: 100%;
        border-radius: 10px;
    }
    .faq-popup-header {
        padding: 28px 20px 16px;
    }
    .faq-popup-list {
        padding: 6px 8px 8px;
    }
    .faq-popup-item {
        padding: 12px 14px;
    }
}

/* ===================================
   Price Popup Modal
   =================================== */
.price-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.price-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.price-popup-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-popup-overlay.active .price-popup-container {
    transform: scale(1);
}

.price-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    font-family: "Pretendard", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-popup-close i {
    font-size: 16px;
}

.price-popup-close:hover {
    background: rgba(201, 168, 108, 0.25);
    border-color: var(--gold);
    color: var(--gold);
}

.price-popup-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .price-popup-container {
        max-width: 100%;
    }
    .price-popup-close {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

/* ===================================
   Email Consultation Popup Modal
   =================================== */
.email-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.email-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.email-popup-container {
    position: relative;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 4px;
    padding: 40px 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.email-popup-overlay.active .email-popup-container {
    transform: translateY(0) scale(1);
}

.email-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    font-family: "Pretendard", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-popup-close i {
    font-size: 15px;
}

.email-popup-close:hover {
    background: rgba(201, 168, 108, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

.email-popup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Reuse consultation-form styles inside popup */
.email-popup-container .consultation-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.email-popup-container .form-group input,
.email-popup-container .form-group select,
.email-popup-container .form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 14px;
    font-family: "Pretendard", sans-serif;
    transition: all 0.3s ease;
    outline: none;
    border-radius: 0;
}

.email-popup-container .form-group input::placeholder,
.email-popup-container .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.email-popup-container .form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a86c' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}

.email-popup-container .form-group select option {
    background: var(--primary-dark);
    color: var(--white);
}

.email-popup-container .form-group input:focus,
.email-popup-container .form-group select:focus,
.email-popup-container .form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.email-popup-container .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.email-popup-container .btn-submit {
    margin-top: 6px;
}

@media (max-width: 640px) {
    .email-popup-container {
        max-width: 100%;
        padding: 35px 20px;
    }
    .email-popup-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    .email-popup-header .email-consultation-title {
        font-size: 24px;
    }
}

/* ===================================
   MEDIA ARTICLES - 신문 보도 카드 & 슬라이드 패널
   =================================== */

/* 서브 헤딩 */
.media-sub-heading {
    font-family: 'Pretendard', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.media-sub-heading i {
    font-size: 16px;
}

/* 인터뷰 더 보기 버튼 */
.media-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(201, 168, 108, 0.4);
    border-radius: 6px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 600;
    font-family: 'Pretendard', sans-serif;
    cursor: pointer;
    transition: all 0.35s ease;
    letter-spacing: 0.5px;
}
.media-more-btn:hover {
    background: rgba(201, 168, 108, 0.12);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 108, 0.15);
}
.media-more-btn i:last-child {
    transition: transform 0.3s ease;
}
.media-more-btn:hover i:last-child {
    transform: translateX(4px);
}

/* 카드 그리드 */
.media-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 640px) {
    .media-articles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* 카드 */
.media-article-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s ease;
}
.media-article-card:hover {
    border-color: rgba(201, 168, 108, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* 카드 이미지 */
.media-article-card .card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.media-article-card:hover .card-image {
    transform: scale(1.05);
}
.media-article-card .card-image-wrap {
    overflow: hidden;
    position: relative;
}

/* 카드 오버레이 그라데이션 */
.media-article-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    pointer-events: none;
}

/* 카드 텍스트 */
.media-article-card .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
}
.media-article-card .card-publisher {
    font-size: 10px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.media-article-card .card-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (min-width: 640px) {
    .media-article-card .card-publisher {
        font-size: 11px;
    }
    .media-article-card .card-title {
        font-size: 13px;
    }
    .media-article-card .card-info {
        padding: 14px;
    }
}

/* ===== Media Detail Slide Panel ===== */
.media-detail-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.media-detail-overlay.active {
    opacity: 1;
    visibility: visible;
}

.media-detail-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    z-index: 2201;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}
.media-detail-panel.active {
    transform: translateX(0);
}

.media-detail-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.media-detail-slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-detail-slide {
    min-width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 30px 24px 100px 24px;
    box-sizing: border-box;
}

/* 슬라이드 내부 콘텐츠 */
.media-slide-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.media-slide-publisher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.media-slide-date {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.media-slide-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.media-slide-excerpt {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.media-slide-quote {
    position: relative;
    padding: 16px 20px;
    margin-bottom: 20px;
    background: rgba(201, 168, 108, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
}
.media-slide-quote::before {
    content: '\201C';
    position: absolute;
    top: -4px;
    left: 10px;
    font-size: 36px;
    color: var(--gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}
.media-slide-quote p {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-style: italic;
}
.media-slide-quote cite {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}

.media-slide-reporter {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.media-slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.media-slide-tags span {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(201, 168, 108, 0.1);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 108, 0.2);
}

.media-slide-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(201, 168, 108, 0.4);
    border-radius: 6px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.media-slide-link:hover {
    background: rgba(201, 168, 108, 0.15);
    border-color: var(--gold);
}
.media-slide-link i {
    transition: transform 0.3s ease;
}
.media-slide-link:hover i {
    transform: translateX(3px);
}

/* 슬라이드 네비게이션 */
.media-slide-nav-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
    background: linear-gradient(to top, rgba(15,15,15,1) 60%, transparent);
    z-index: 10;
}
.media-slide-dots {
    display: flex;
    gap: 8px;
}
.media-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
.media-slide-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* 모바일 반응형 */
@media (max-width: 640px) {
    .media-detail-panel {
        max-width: 100%;
    }
    .media-detail-slide {
        padding: 24px 18px 90px 18px;
    }
    .media-slide-title {
        font-size: 18px;
    }
}

/* FAQ Styles */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 108, 0.05);
}

.faq-item[open] {
    border-color: var(--gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 168, 108, 0.2);
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer p {
    margin: 0;
}

/* Service Section Dark Theme */
.service-section.dark {
    background-color: #0a0a0a;
    color: #e8e8e8;
}

.service-section.dark .section-title-large {
    color: #ffffff;
}

.service-section.dark .gold-divider-center {
    margin: 0 auto;
}

/* Footer Dark Background */
footer {
    background-color: #0a0a0a;
    color: #e8e8e8;
}

footer .footer-logo {
    color: #ffffff;
}

footer .footer-logo span {
    color: #c9a86c;
}

footer .footer-desc,
footer .footer-contact-item {
    color: #e8e8e8;
}

footer .footer-bottom {
    color: #999999;
}

/* Hero Profile Info */
.hero-profile-info {
    text-align: center;
    margin-top: 1.5rem;
}

.hero-profile-name {
    font-size: 14px;
    font-weight: 600;
    color: #cccccc;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.5px;
}

.hero-profile-title {
    font-size: 14px;
    font-weight: 500;
    color: #cccccc;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Hero Stat Description */
.hero-stat-desc {
    font-size: 11px;
    font-weight: 400;
    color: #cccccc;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

/* Hero Stat Divider */
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Profile Card */
.hero-profile-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .hero-profile-name {
        font-size: 12px;
    }
    
    .hero-profile-title {
        font-size: 12px;
    }
    
    .hero-stat-desc {
        font-size: 10px;
    }
}

/* Special stat number for text-based stats (like "눈두덩이주사") */
.stat-number-text {
    font-size: clamp(28px, 4vw, 36px) !important;
    font-weight: 400 !important;
}

/* Consultation Section Layout - Responsive */
@media (max-width: 768px) {
    /* Stack consultation and business hours vertically on mobile */
    .consultation-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Consultation Grid Responsive */
@media (max-width: 768px) {
    .consultation-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}
