/* ============================================
   SERVICES 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;
}


/* ============================================
   히어로
   ============================================ */
.svc-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/services/services_hero.png') center/cover no-repeat;
    overflow: hidden;
}
.svc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.svc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.svc-hero-content h1 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin: 0;
}
.svc-hero-content p {
    font-family: 'Pretendard', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
}
.svc-hero-content .lux-label {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
}

.svc-hero-text p {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.65;
    letter-spacing: 0.1em;
}


/* ============================================
   서비스 네비게이션
   ============================================ */
.svc-nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-nav-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 24px;
}

.svc-nav-inner a {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s;
    white-space: nowrap;
}
.svc-nav-inner a:hover {
    color: #1a1a1a;
}


/* ============================================
   서비스 블록 — 이미지 + 텍스트 2단
   ============================================ */
.svc-block {
    padding: 0;
    background: #fff;
}
.svc-block-alt {
    background: #F7F5F0;
}

.svc-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.svc-reverse {
    direction: rtl;
}
.svc-reverse > * {
    direction: ltr;
}

.svc-img {
    overflow: hidden;
    position: relative;
}
.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.svc-block:hover .svc-img img {
    transform: scale(1.02);
}

.svc-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
}

.svc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #C9A96E;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.svc-info h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.svc-info p {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
    margin-bottom: 28px;
}

.svc-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}
.svc-info ul li {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: #777;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    letter-spacing: 0.01em;
}
.svc-info ul li:last-child {
    border-bottom: none;
}

.svc-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #C9A96E;
    letter-spacing: 0.05em;
    margin-top: 8px;
}

.svc-link {
    display: inline-block;
    font-family: 'Pretendard', sans-serif;
    font-size: 0.85rem;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    margin-top: 8px;
}
.svc-link:hover { color: #C9A96E; }


/* ============================================
   가격 섹션
   ============================================ */
.svc-pricing {
    padding: 140px 24px 100px;
    text-align: center;
    background: #fff;
}

.pricing-note {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #999;
    margin-bottom: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-list {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.pricing-row:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pricing-row span:first-child {
    font-family: 'Noto Serif KR', serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
}
.pricing-row span:last-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #999;
    letter-spacing: 0.02em;
}

.svc-text-link {
    display: inline-block;
    font-family: 'Pretendard', sans-serif;
    font-size: 0.85rem;
    color: #999;
    text-decoration: none;
    margin-top: 48px;
    transition: color 0.3s;
}
.svc-text-link:hover { color: #C9A96E; }


/* ============================================
   CTA
   ============================================ */
.svc-cta {
    background: #1A1A1A;
    color: #fff;
    padding: 140px 24px;
    text-align: center;
}
.svc-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}
.svc-cta h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 40px;
}
.svc-cta-phone {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    transition: color 0.3s;
}
.svc-cta-phone:hover { color: #C9A96E; }
.svc-cta-sub {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
}


/* ============================================
   반응형
   ============================================ */
@media (max-width: 900px) {
    .svc-block-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .svc-reverse {
        direction: ltr;
    }
    .svc-img {
        aspect-ratio: 4 / 3;
    }
    .svc-info {
        padding: 48px 32px;
    }
    .svc-nav-inner {
        gap: 24px;
        overflow-x: auto;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .svc-hero { height: 55vh; }
    .svc-pricing { padding: 100px 24px 80px; }
    .svc-cta { padding: 100px 24px; }
    .svc-info {
        padding: 40px 24px;
    }
}

@media (max-width: 576px) {
    .svc-hero { height: 45vh; }
    .svc-hero-text h1 { font-size: 1.7rem; }
    .svc-nav-inner { gap: 20px; padding: 16px 20px; }
}
