/* ============================================
   CONTACT PAGE — 럭셔리 리디자인
   ============================================ */

/* --- 공통 라벨 --- */
.lux-label {
    display: block;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: #999;
    margin-bottom: 60px;
}


/* ============================================
   히어로: 풀스크린 이미지
   ============================================ */
.contact-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
}

.contact-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-dimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.15) 40%,
        rgba(0,0,0,0.5) 100%
    );
}

.contact-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.contact-hero-text .lux-label {
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

.contact-hero-text h1 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.contact-hero-text p {
    font-family: 'Pretendard', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.7;
    letter-spacing: 0.02em;
}


/* ============================================
   Contact Methods
   ============================================ */
.contact-methods {
    padding: 140px 24px;
    background: #fff;
}

.contact-methods-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-section-title {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.contact-section-sub {
    font-family: 'Pretendard', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    margin: 0 0 80px;
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-card {
    text-align: center;
    padding: 60px 40px;
    border: 1px solid #e8e4df;
    transition: border-color 0.3s ease;
}

.contact-card:hover {
    border-color: #999;
}

.contact-card-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #999;
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
}

.contact-card h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.contact-card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    margin: 0 0 8px;
}

.contact-card-name {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #999;
    margin: 0 0 16px;
}

.contact-card-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin: 0 0 32px;
}

.contact-card-btn {
    display: inline-block;
    font-family: 'Pretendard', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    border: 1px solid #1a1a1a;
    padding: 12px 36px;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-card-btn:hover {
    background: #1a1a1a;
    color: #fff;
}


/* ============================================
   Operating Hours
   ============================================ */
.contact-hours {
    padding: 140px 24px;
    background: #F7F5F0;
}

.contact-hours-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 60px 0 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.hours-list li:first-child {
    border-top: 1px solid rgba(0,0,0,0.08);
}

.hours-day {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
}

.hours-time {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #666;
}


/* ============================================
   Appointment
   ============================================ */
.contact-appointment {
    padding: 140px 24px;
    background: #fff;
}

.contact-appointment-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-appointment-text {
    text-align: left;
}

.contact-appointment-text .lux-label {
    text-align: left;
    margin-bottom: 40px;
}

.contact-appointment-text .contact-section-title {
    text-align: left;
    margin-bottom: 24px;
}

.contact-appointment-desc {
    font-family: 'Pretendard', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #666;
    line-height: 1.8;
    margin: 0 0 40px;
}

.appointment-features {
    list-style: none;
    padding: 0;
    margin: 0 0 48px;
}

.appointment-features li {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #444;
    padding: 12px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.appointment-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #bbb;
}

.contact-appointment-btn {
    display: inline-block;
    font-family: 'Pretendard', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #fff;
    background: #1a1a1a;
    text-decoration: none;
    padding: 16px 48px;
    letter-spacing: 0.05em;
    transition: background 0.3s ease;
}

.contact-appointment-btn:hover {
    background: #333;
}

.contact-appointment-img {
    position: relative;
    overflow: hidden;
}

.contact-appointment-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}


/* ============================================
   Dark CTA
   ============================================ */
.contact-cta {
    padding: 140px 24px;
    background: #0f0f0f;
    text-align: center;
}

.contact-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-sub {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin: 0 0 40px;
    letter-spacing: -0.01em;
}

.contact-cta-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    transition: opacity 0.3s ease;
}

.contact-cta-number:hover {
    opacity: 0.7;
}

.contact-cta-hours {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    margin: 0;
}


/* ============================================
   반응형
   ============================================ */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-card {
        padding: 48px 32px;
    }

    .contact-appointment-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .contact-appointment-text .lux-label {
        text-align: center;
    }

    .contact-appointment-text .contact-section-title {
        text-align: center;
    }

    .contact-appointment-img img {
        height: 350px;
    }

    .contact-methods,
    .contact-hours,
    .contact-appointment,
    .contact-cta {
        padding: 100px 20px;
    }
}
