/* ==========================================
   가은다움 뷰티 - 메인 스타일시트
   ========================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B7355;
    --secondary-color: #C4A07A;
    --accent-color: #D4AF75;
    --dark-color: #2C2C2C;
    --light-color: #F5F5F5;
    --white-color: #FFFFFF;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    
    --font-kr: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    --font-en: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', sans-serif;
    --font-jp: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    --font-zh: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    
    --section-padding: 100px 20px;
    --container-max: 1200px;
    --transition: all 0.3s ease;
}

html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: fixed;
    touch-action: pan-y;
}

body {
    font-family: var(--font-kr);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white-color);
    overflow-x: hidden;
    overflow-y: auto;
    word-break: keep-all;
    overflow-wrap: break-word;
    touch-action: pan-y;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

body[data-lang="en"] {
    font-family: var(--font-en);
    word-break: normal;
    overflow-wrap: break-word;
}

body[data-lang="ja"] {
    font-family: var(--font-jp);
    word-break: keep-all;
    overflow-wrap: break-word;
}

body[data-lang="zh"] {
    font-family: var(--font-zh);
    word-break: keep-all;
    overflow-wrap: break-word;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.language-selector.collapsed {
    padding: 0;
    border-radius: 50%;
    gap: 0;
    min-width: auto;
    width: 50px;
    height: 50px;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none;
}

.language-selector.collapsed .lang-btn {
    display: none !important;
    padding: 0;
    width: 0;
    opacity: 0;
    margin: 0;
    overflow: hidden;
}

.language-selector.collapsed .lang-btn.active {
    display: flex !important;
    width: 50px;
    height: 50px;
    opacity: 1;
    padding: 0;
    margin: 0;
    min-width: 50px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.language-selector.collapsed .lang-btn.active .lang-text {
    display: none;
}

.language-selector.collapsed .lang-btn.active .flag {
    font-size: 28px;
    margin: 0;
    line-height: 1;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid transparent;
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    z-index: 1;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.language-selector.collapsed .lang-btn.active {
    pointer-events: auto;
    cursor: pointer;
}

.lang-btn * {
    pointer-events: none;
}

.lang-btn .flag {
    font-size: 20px;
    pointer-events: none;
}

.lang-btn:hover {
    background: var(--light-color);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-padding);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 50px;
    line-height: 1.8;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: var(--white-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cta-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 48px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.3);
    position: relative;
    z-index: 2;
}

.hero-cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 115, 85, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 24px;
    color: var(--white-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

/* About Master Section */
.about-master {
    padding: var(--section-padding);
    background: var(--white-color);
}

.master-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.profile-image {
    position: sticky;
    top: 100px;
}

.director-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.profile-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--white-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.credentials h3,
.awards h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.credentials-list,
.awards-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credentials-list li,
.awards-list li {
    display: flex;
    align-items: start;
    gap: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.credentials-list li i,
.awards-list li i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
}

/* Philosophy Section */
.philosophy {
    padding: var(--section-padding);
    background: var(--light-color);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.philosophy-card {
    background: var(--white-color);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.card-number {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
    opacity: 0.3;
}

.card-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.philosophy-card h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

.philosophy-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    background: var(--white-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
    flex-shrink: 0;
}

.highlight-item p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

/* Technique Section */
.technique {
    padding: var(--section-padding);
    background: var(--white-color);
}

.technique-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.technique-image {
    width: 100%;
}

.technique-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.technique-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.technique-image .image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--light-color) 0%, #E8DDD3 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.technique-image .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    opacity: 0.5;
}

.technique-image .image-placeholder p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.technique-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.technique-text-inner {
    text-align: center;
    max-width: 100%;
}

.technique-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.technique-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    background: var(--light-color);
    padding: 25px;
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    background: #F0F0F0;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Mission Section */
.mission {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #FAF9F7 0%, #F5F0EB 50%, #FAF9F7 100%);
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 115, 85, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(196, 160, 122, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.mission .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.mission-left {
    display: flex;
    flex-direction: column;
}

.mission-text-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
    word-break: keep-all;
    overflow-wrap: break-word;
}

.mission-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.mission-image {
    width: auto;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.mission-video {
    width: auto;
    height: 510px;
    max-width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.mission-image .image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 220px;
    background: linear-gradient(135deg, var(--light-color) 0%, #E8DDD3 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mission-image .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    opacity: 0.5;
}

.mission-image .image-placeholder p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.mission-right-content {
    width: 100%;
    margin-top: 40px;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
    word-break: keep-all;
    overflow-wrap: break-word;
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
}

/* Consultation Section */
.consultation {
    padding: var(--section-padding);
    background: var(--white-color);
    position: relative;
}

.consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(139, 115, 85, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(196, 160, 122, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.consultation-left {
    display: flex;
    flex-direction: column;
}

.consultation-text-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
    word-break: keep-all;
    overflow-wrap: break-word;
}

.consultation-right {
    display: flex;
    flex-direction: column;
}

.consultation-image {
    width: 100%;
}

.consultation-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.consultation-image .image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: auto;
    background: linear-gradient(135deg, var(--light-color) 0%, #E8DDD3 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.consultation-image .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    opacity: 0.5;
}

.consultation-image .image-placeholder p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Premium Reason Section */
.premium-reason {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #FAF9F7 0%, #F5F0EB 50%, #FAF9F7 100%);
    position: relative;
}

.premium-reason::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 115, 85, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(196, 160, 122, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.premium-reason .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.premium-reason-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.premium-reason-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-block {
    background: var(--white-color);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.reason-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.reason-title strong {
    color: var(--primary-color);
    font-weight: 700;
}

.reason-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 10px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.reason-desc:last-child {
    margin-bottom: 0;
    margin-top: 10px;
}

.reason-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.reason-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 0;
}

.reason-checklist {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.reason-checklist li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 8px;
    padding-left: 0;
}

.reason-checklist li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    margin-right: 8px;
}

.premium-reason-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.premium-reason-image {
    width: 100%;
}

.premium-reason-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.premium-reason-image .image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: auto;
    background: linear-gradient(135deg, var(--light-color) 0%, #E8DDD3 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.premium-reason-image .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    opacity: 0.5;
}

.premium-reason-image .image-placeholder p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.premium-reason-summary {
    background: var(--white-color);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.premium-reason-summary p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    word-break: keep-all;
    overflow-wrap: break-word;
    margin: 0;
}

/* Premium Care Section */
.premium-care {
    padding: var(--section-padding);
    background: var(--white-color);
}

.care-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.care-step {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
}

.care-step:hover {
    background: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.step-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.care-step h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.care-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Specialization Section */
.specialization {
    padding: var(--section-padding);
    background: var(--light-color);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.spec-card {
    background: var(--white-color);
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.spec-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spec-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.spec-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
}

/* Gallery Sections */
.gallery-section {
    padding: var(--section-padding);
    background: var(--light-color);
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Gallery Section - Complete Rewrite */
.gallery-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
    width: 100%;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 115, 85, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(196, 160, 122, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.eyebrow-gallery,
.lip-gallery {
    padding: var(--section-padding);
    overflow: hidden;
    width: 100%;
    position: relative;
}

.lip-gallery {
    background: var(--white-color);
}

.gallery-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Swiper Container */
.gallery-section .swiper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-section .swiper-wrapper {
    display: flex;
    align-items: stretch;
    /* 끊김 없이 흐르는 연속 스크롤 (jsfiddle 방식) */
    transition-timing-function: linear !important;
}

.gallery-section .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

/* Gallery Item */
.gallery-item {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    aspect-ratio: 1 / 2;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    display: block;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Hide Navigation Buttons */
.gallery-section .swiper-button-next,
.gallery-section .swiper-button-prev {
    display: none !important;
}

/* Mobile (up to 640px) */
@media (max-width: 640px) {
    .gallery-section .swiper {
        padding: 20px 10px;
        overflow: hidden;
    }
    
    .gallery-section .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }
    
    .gallery-section .swiper-slide {
        width: calc(66.666% - 10px) !important;
        flex-shrink: 0;
        margin-right: 10px;
    }
    
    .gallery-item {
        width: 100%;
        height: 100%;
    }
    
    .gallery-image {
        width: 100%;
        aspect-ratio: 1 / 2;
        display: block;
    }
    
    .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Tablet (641px to 1023px) */
@media (min-width: 641px) and (max-width: 1023px) {
    .gallery-section .swiper {
        padding: 20px 15px;
    }
    
    .gallery-section .swiper-slide {
        width: auto;
    }
    
    .gallery-image {
        aspect-ratio: 1 / 2;
    }
}

/* Desktop (1024px and above) */
@media (min-width: 1024px) {
    .gallery-section .swiper {
        padding: 20px 0;
    }
    
    .gallery-section .swiper-slide {
        width: auto;
    }
    
    .gallery-image {
        aspect-ratio: 1 / 2;
    }
}

/* Review Gallery Section - Same as other galleries */
.review-gallery {
    padding: var(--section-padding);
    overflow: hidden;
    width: 100%;
    position: relative;
    background: linear-gradient(180deg, #FAF9F7 0%, #F5F0EB 50%, #FAF9F7 100%);
}

.review-gallery .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.review-gallery .swiper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.review-gallery .swiper-wrapper {
    display: flex;
    align-items: stretch;
    transition-timing-function: linear !important;
}

.review-gallery .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.review-gallery .gallery-item {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-gallery .gallery-image {
    width: 100%;
    aspect-ratio: 1 / 2;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    display: block;
    position: relative;
}

.review-gallery .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.review-gallery .gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Hide Navigation Buttons for Review Gallery */
.review-gallery .swiper-button-next,
.review-gallery .swiper-button-prev {
    display: none !important;
}

/* Mobile (up to 640px) */
@media (max-width: 640px) {
    .review-gallery .swiper {
        padding: 20px 10px;
        overflow: hidden;
    }
    
    .review-gallery .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }
    
    .review-gallery .swiper-slide {
        width: calc(66.666% - 10px) !important;
        flex-shrink: 0;
        margin-right: 10px;
    }
    
    .review-gallery .gallery-item {
        width: 100%;
        height: 100%;
    }
    
    .review-gallery .gallery-image {
        width: 100%;
        aspect-ratio: 1 / 2;
        display: block;
    }
    
    .review-gallery .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Tablet (641px to 1023px) */
@media (min-width: 641px) and (max-width: 1023px) {
    .review-gallery .swiper {
        padding: 20px 15px;
    }
    
    .review-gallery .swiper-slide {
        width: auto;
    }
    
    .review-gallery .gallery-image {
        aspect-ratio: 1 / 2;
    }
}

/* Desktop (1024px and above) */
@media (min-width: 1024px) {
    .review-gallery .swiper {
        padding: 20px 0;
    }
    
    .review-gallery .swiper-slide {
        width: auto;
    }
    
    .review-gallery .gallery-image {
        aspect-ratio: 1 / 2;
    }
}

.review-image .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    opacity: 0.5;
}

.review-image .image-placeholder p {
    font-size: 1rem;
    color: var(--text-light);
}

.reviews-section .swiper-button-next,
.reviews-section .swiper-button-prev {
    color: var(--primary-color);
    background: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.reviews-section .swiper-button-next:hover,
.reviews-section .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

.reviews-section .swiper-button-next::after,
.reviews-section .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.reviews-section .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
    width: 12px;
    height: 12px;
}

.reviews-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--white-color);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 115, 85, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(196, 160, 122, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background: var(--white-color);
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-item.active .faq-question {
    background: var(--light-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
    padding-right: 20px;
    line-height: 1.5;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 25px 30px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, 
        rgba(139, 115, 85, 0.05) 0%, 
        rgba(196, 160, 122, 0.08) 50%,
        rgba(139, 115, 85, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 115, 85, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196, 160, 122, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.cta-kakao-btn,
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    min-width: 200px;
}

.cta-kakao-btn {
    background: #FEE500;
    color: #000000;
    box-shadow: 0 4px 15px rgba(254, 229, 0, 0.3);
}

.cta-kakao-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(254, 229, 0, 0.4);
    background: #FFE500;
}

.cta-naver-btn {
    background: #03C75A;
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(3, 199, 90, 0.3);
}

.cta-naver-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(3, 199, 90, 0.4);
    background: #02B350;
}

.cta-instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white-color);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.cta-instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(188, 24, 136, 0.4);
    opacity: 0.9;
}

.cta-kakao-btn i,
.cta-btn i {
    font-size: 1.3rem;
}

.cta-message {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    font-style: italic;
    line-height: 1.8;
    margin: 0;
}

/* Final CTA Mobile Responsive */
@media (max-width: 768px) {
    .final-cta {
        padding: 70px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .cta-kakao-btn,
    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
        min-width: 180px;
    }
    
    .cta-message {
        font-size: 1.1rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white-color);
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--secondary-color);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 5px 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .philosophy-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .master-profile {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-image {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 18px;
    }
    
    .philosophy-highlight {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
    }
    
    .technique-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .premium-reason-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .technique-image {
        min-height: auto;
    }
    
    .technique-image .image-placeholder {
        min-height: auto;
        aspect-ratio: 16 / 9;
    }
    
    .consultation-image .image-placeholder {
        aspect-ratio: 16 / 9;
        min-height: auto;
    }
    
    .premium-reason-image .image-placeholder {
        aspect-ratio: 16 / 9;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .language-selector {
        top: 10px;
        right: 10px;
        padding: 8px;
        gap: 5px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .lang-btn .lang-text {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .philosophy-grid,
    .care-steps,
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .philosophy-highlight {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .philosophy-card {
        padding: 20px 15px;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .technique-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .technique-content > .technique-image {
        order: 1;
    }
    
    .technique-content > .technique-text {
        order: 2;
    }
    
    .technique-image {
        min-height: auto;
        width: 100%;
    }
    
    .technique-image .image-placeholder {
        min-height: auto;
        aspect-ratio: 16 / 9;
        width: 100%;
    }
    
    .technique-text-inner {
        text-align: left;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .consultation-left {
        order: 2;
    }
    
    .consultation-right {
        order: 1;
    }
    
    .consultation-image {
        width: 100%;
    }
    
    .consultation-image .image-placeholder {
        aspect-ratio: 16 / 9;
        min-height: auto;
        width: 100%;
    }
    
    .premium-reason-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .premium-reason-left {
        order: 2;
        gap: 20px;
    }
    
    .premium-reason-right {
        order: 1;
        gap: 20px;
    }
    
    .premium-reason-image {
        width: 100%;
    }
    
    .premium-reason-image .image-placeholder {
        aspect-ratio: 16 / 9;
        min-height: auto;
        width: 100%;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .image-placeholder p {
        font-size: 0.9rem;
    }
    
    .technique-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .technique-features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
        gap: 15px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .consultation-text-content {
        font-size: 0.95rem;
    }
    
    .consultation-image .image-placeholder {
        aspect-ratio: 16 / 9;
    }
    
    .consultation-image .image-placeholder i {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .consultation-image .image-placeholder p {
        font-size: 1rem;
    }
    
    .premium-reason-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .premium-reason-left {
        gap: 20px;
    }
    
    .reason-block {
        padding: 20px;
    }
    
    .reason-title {
        font-size: 1.1rem;
    }
    
    .reason-desc {
        font-size: 0.95rem;
    }
    
    .reason-list li,
    .reason-checklist li {
        font-size: 0.9rem;
    }
    
    .premium-reason-image .image-placeholder {
        aspect-ratio: 16 / 9;
    }
    
    .premium-reason-image .image-placeholder i {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .premium-reason-image .image-placeholder p {
        font-size: 1rem;
    }
    
    .premium-reason-summary {
        padding: 20px;
    }
    
    .premium-reason-summary p {
        font-size: 0.95rem;
    }
    
    .mission-text-content,
    .mission-right-content {
        font-size: 0.95rem;
    }
    
    .mission-image .image-placeholder {
        aspect-ratio: 16 / 9;
    }
    
    .mission-image .image-placeholder i {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .mission-image .image-placeholder p {
        font-size: 1rem;
    }
    
    .mission-right-content {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .eyebrow-gallery,
    .lip-gallery {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .eyebrow-gallery .swiper,
    .lip-gallery .swiper {
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .eyebrow-gallery .swiper-wrapper,
    .lip-gallery .swiper-wrapper {
        width: 100% !important;
    }
    
    .eyebrow-gallery .swiper-slide,
    .lip-gallery .swiper-slide {
        width: calc(66.666% - 10px) !important;
        flex-shrink: 0;
        display: block !important;
        height: auto;
        padding: 0 5px;
    }
    
    .eyebrow-gallery .gallery-item,
    .lip-gallery .gallery-item {
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .eyebrow-gallery .gallery-image,
    .lip-gallery .gallery-image {
        aspect-ratio: 1 / 2;
        width: 100%;
        height: auto;
        display: block;
    }
    
    .eyebrow-gallery .gallery-img,
    .lip-gallery .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

/* Gallery Mobile Responsive */
@media (max-width: 768px) {
    .gallery-section .swiper-button-next,
    .gallery-section .swiper-button-prev {
        display: none;
    }
    
    .reviews-section .swiper-button-next,
    .reviews-section .swiper-button-prev {
        display: none;
    }
    
    .gallery-section .swiper-pagination,
    .reviews-section .swiper-pagination {
        bottom: 20px;
    }
    
    .gallery-image {
        width: 100%;
        margin: 0;
    }
    
    .eyebrow-gallery .gallery-image,
    .lip-gallery .gallery-image {
        aspect-ratio: 1 / 2;
        width: 100%;
    }
    
    .eyebrow-gallery .swiper-slide,
    .lip-gallery .swiper-slide {
        width: calc(66.666% - 10px) !important;
        display: block !important;
        height: auto;
        padding: 0 5px;
    }
    
    .eyebrow-gallery .gallery-item,
    .lip-gallery .gallery-item {
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .eyebrow-gallery .gallery-image,
    .lip-gallery .gallery-image {
        aspect-ratio: 1 / 2;
        width: 100%;
        height: auto;
        display: block;
    }
    
    .eyebrow-gallery .gallery-img,
    .lip-gallery .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.6s ease-out;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

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

.modal-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-modal.active .modal-content {
    transform: scale(1);
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.modal-prev {
    left: -80px;
}

.modal-next {
    right: -80px;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.modal-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white-color);
    font-size: 1.2rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* Modal Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        max-height: 85vh;
        padding: 20px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .modal-prev,
    .modal-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
    
    .modal-counter {
        bottom: 10px;
        font-size: 1rem;
        padding: 8px 16px;
    }
}