/* CSS Design System for Salon de Asel Maseok Branch */

:root {
    /* Color Palette */
    --color-bg-primary: #FAF9F6;      /* Warm Alabaster */
    --color-bg-secondary: #FFFFFF;    /* Pure White */
    --color-bg-cream: #F5EFEB;        /* Very Soft Cream Gold */
    --color-text-main: #232323;       /* Luxury Dark Slate */
    --color-text-muted: #666666;      /* Slate Muted */
    --color-accent-gold: #C5A880;     /* Muted Gold */
    --color-accent-gold-dark: #A48962;/* Deeper Muted Gold */
    --color-accent-gold-light: #FBF9F6; /* Extremely soft warm gold */
    --color-naver-green: #03C75A;     /* Naver Green for Trust/Reviews */
    
    /* Layout & Spacing */
    --max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Shadow Utilities */
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-premium: 0 10px 40px rgba(197, 168, 128, 0.08);
    --shadow-hover: 0 20px 50px rgba(35, 35, 35, 0.08);
}

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

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

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-main);
    font-family: 'Outfit', 'Noto Sans KR', sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.mt-3 {
    margin-top: 1.5rem;
}

.w-100 {
    width: 100%;
}

/* Common Typography & Titles */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-accent-gold-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Playfair Display', 'Noto Sans KR', serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Premium Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-gold-dark) 100%);
    color: #FFFFFF;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
    opacity: 0.95;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-weight: 500;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: var(--color-text-main);
    transform: translateY(-2px);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--color-accent-gold-dark);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-accent-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background-color: var(--color-accent-gold);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Header & Sticky Nav */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    box-shadow: var(--shadow-subtle);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo .brand-text-en {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-text-main);
}

.logo .brand-text-kr {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-accent-gold-dark);
    margin-top: -2px;
}

#nav-menu ul {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-gold);
    transition: var(--transition-smooth);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(3, 199, 90, 0.1);
    color: var(--color-naver-green);
    font-size: 1.1rem;
    border: 1px solid rgba(3, 199, 90, 0.2);
}

.blog-btn:hover {
    background-color: var(--color-naver-green);
    color: #FFFFFF;
    transform: rotate(15deg);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-main);
}

/* Mobile Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background-color: var(--color-bg-secondary);
    z-index: 1001;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.05);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: var(--transition-smooth);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    padding-bottom: 15px;
}

.drawer-header .brand-text-en {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-link {
    font-size: 1.1rem;
    font-weight: 500;
}

.drawer-footer {
    margin-top: auto;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('./images/salon_hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #FFFFFF;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(197, 168, 128, 0.2);
    border: 1px solid rgba(197, 168, 128, 0.4);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-accent-gold);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.gold-star {
    color: #FFD700;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title .accent-playfair {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-title .title-kr {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 3px;
    opacity: 0.8;
}

.hero-scroll-indicator .arrow {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.hero-scroll-indicator .arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent-gold);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* About Section */
#about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

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

.about-img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
    object-fit: cover;
    width: 100%;
    height: 480px;
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: var(--color-bg-secondary);
    padding: 24px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-hover);
    border-left: 4px solid var(--color-accent-gold);
    display: flex;
    flex-direction: column;
}

.about-floating-card .highlight-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-gold-dark);
    line-height: 1;
}

.about-floating-card .highlight-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-top: 4px;
}

.about-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.3rem;
    color: var(--color-accent-gold-dark);
    background-color: var(--color-accent-gold-light);
    padding: 12px;
    border-radius: 12px;
}

.feature-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}

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

/* Signature Styles Gallery */
#styles {
    padding: 100px 0;
    background-color: var(--color-bg-secondary);
}

.style-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 2rem;
}

.style-card {
    background-color: var(--color-bg-primary);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.style-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.style-img-container {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.style-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.style-card:hover .style-img {
    transform: scale(1.05);
}

.style-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-accent-gold-dark);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.style-info {
    padding: 24px;
    text-align: left;
}

.style-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text-main);
}

.style-info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.style-tag {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent-gold-dark);
}

/* Designer Section */
#designers {
    padding: 100px 0;
}

.designer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.designer-card {
    background-color: var(--color-bg-secondary);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(197, 168, 128, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.designer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-accent-gold);
}

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

.designer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent-gold-light) 0%, var(--color-bg-cream) 100%);
    border: 2px solid var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-letter {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-gold-dark);
}

.designer-meta h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.tag-title {
    font-size: 0.75rem;
    font-weight: 500;
    background-color: var(--color-accent-gold-light);
    color: var(--color-accent-gold-dark);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.designer-meta .specialty {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.designer-body {
    margin-bottom: 25px;
}

.designer-body .quote {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    border-left: 2px solid var(--color-accent-gold);
    padding-left: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge-row .badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background-color: var(--color-bg-primary);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Pricing Section */
#pricing {
    padding: 100px 0;
    background-color: var(--color-bg-secondary);
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 2rem;
}

.price-list-box {
    background-color: var(--color-bg-primary);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-subtle);
}

.price-category {
    margin-bottom: 2.5rem;
}

.price-category h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid rgba(197, 168, 128, 0.2);
    padding-bottom: 8px;
    color: var(--color-accent-gold-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.menu-with-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-name {
    font-weight: 500;
    font-size: 1rem;
}

.badge-rep {
    font-size: 0.7rem;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #E25C5C;
    padding: 2px 6px;
    border-radius: 4px;
}

.menu-price {
    font-weight: 600;
    color: var(--color-text-main);
}

.price-info-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background-color: rgba(197, 168, 128, 0.1);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    color: var(--color-accent-gold-dark);
}

.price-info-note i {
    margin-top: 3px;
}

/* Interactive Pricing Calculator */
.price-calc-box {
    background-color: var(--color-bg-primary);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.price-calc-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-intro {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.calc-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.calc-opt-btn {
    background-color: var(--color-bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.calc-opt-btn:hover {
    background-color: var(--color-accent-gold-light);
    border-color: var(--color-accent-gold);
}

.calc-opt-btn.active {
    background-color: var(--color-accent-gold-dark);
    color: #FFFFFF;
    border-color: var(--color-accent-gold-dark);
    font-weight: 600;
}

#length-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

#length-options .calc-opt-btn {
    text-align: center;
    padding: 10px;
}

.calc-result-panel {
    background-color: var(--color-bg-secondary);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-top: 2rem;
    border: 1px solid rgba(197, 168, 128, 0.1);
}

.result-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.calc-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin: 12px 0;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.result-total span:first-child {
    font-size: 1rem;
}

.result-total span:last-child {
    font-size: 1.4rem;
    color: var(--color-accent-gold-dark);
}

/* Reviews Section */
#reviews {
    padding: 100px 0;
}

.review-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--color-bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold-dark);
}

.filter-btn.active {
    background-color: var(--color-text-main);
    color: #FFFFFF;
    border-color: var(--color-text-main);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background-color: var(--color-bg-secondary);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.review-card.hidden {
    display: none;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.visit-count {
    font-size: 0.72rem;
    font-weight: 600;
    background-color: rgba(3, 199, 90, 0.08);
    color: var(--color-naver-green);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 4px;
    align-self: flex-start;
}

.stars {
    color: #FFD700;
    font-size: 0.8rem;
}

.review-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 12px;
    margin-top: auto;
}

.designer-tag {
    font-weight: 600;
    color: var(--color-accent-gold-dark);
}

/* Designer Reply inside review card */
.designer-reply {
    background-color: var(--color-bg-primary);
    border-radius: var(--border-radius-sm);
    padding: 12px 15px;
    margin-top: 12px;
    border-left: 2px solid var(--color-accent-gold);
    font-size: 0.82rem;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 4px;
}

.reply-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.designer-reply .reply-text {
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Booking & Contact Section */
#booking-section {
    padding: 100px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.booking-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-desc {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.info-item i {
    font-size: 1.2rem;
    color: var(--color-accent-gold-dark);
    margin-top: 4px;
}

.info-item h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

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

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

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.social-btn.blog {
    background-color: var(--color-naver-green);
    color: #FFFFFF;
}

.social-btn.blog:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.booking-card {
    background-color: var(--color-bg-secondary);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(197, 168, 128, 0.1);
}

.booking-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 0.9rem;
    margin-top: 8px;
    outline: none;
    background-color: var(--color-bg-primary);
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-accent-gold);
    background-color: #FFFFFF;
}

#final-booking-btn {
    margin-top: 1.5rem;
}

/* Footer Section */
footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px 0;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

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

.footer-brand .logo-en {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #FFFFFF;
    margin-bottom: 5px;
    display: block;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    padding-top: 20px;
    text-align: center;
    font-size: 0.75rem;
}

/* Animation Utilities */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-grid, .pricing-layout, .booking-grid {
        gap: 40px;
    }
    
    .designer-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    #nav-menu {
        display: none;
    }
    
    .about-grid, .pricing-layout, .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
    
    .about-img {
        height: 320px;
    }
    
    .about-floating-card {
        bottom: -20px;
        right: 0;
    }
    
    .style-grid {
        grid-template-columns: 1fr;
    }
    
    .designer-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title .accent-playfair {
        font-size: 2.2rem;
    }
    
    .hero-title .title-kr {
        font-size: 1.7rem;
    }
    
    #hero {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
}
