/* ========== DIRECTIONS LUXURY STYLES ========== */

/* Hero */
.directions-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/directions/directions_hero.png') center/cover no-repeat;
    overflow: hidden;
}
.directions-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.directions-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.directions-hero-content h1 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.12em;
    margin: 0;
}
.directions-hero-content .lux-label {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
}

/* Luxury Label */
.lux-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
    display: block;
}

/* Section base */
.dir-section {
    padding: 140px 0;
}

.dir-section .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.dir-section--white {
    background: #fff;
}

.dir-section--cream {
    background: #F7F5F0;
}

/* Location Section */
.location-heading {
    font-family: 'Noto Serif KR', serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.location-address {
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 50px;
}

.location-address .addr-sub {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-top: 6px;
}

.map-wrap {
    width: 100%;
    margin-top: 40px;
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: none;
}

/* Transportation Section */
.transport-row {
    display: flex;
    align-items: baseline;
    padding: 32px 0;
    border-bottom: 1px solid #e5e5e5;
}

.transport-row:first-child {
    padding-top: 0;
}

.transport-row:last-child {
    border-bottom: none;
}

.transport-label {
    font-family: 'Noto Serif KR', serif;
    font-weight: 500;
    font-size: 1.05rem;
    color: #1a1a1a;
    min-width: 100px;
    flex-shrink: 0;
}

.transport-detail {
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
    margin-left: 40px;
}

.transport-detail p {
    margin: 0 0 6px 0;
}

.transport-detail p:last-child {
    margin-bottom: 0;
}

/* Hours & Contact */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: #555;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day-label {
    color: #1a1a1a;
    font-weight: 400;
}

.hours-list .time-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: #666;
}

.contact-info-lux {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
}

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

.contact-info-lux .phone-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    letter-spacing: 0.06em;
}

/* Dark CTA */
.dir-cta {
    background: #1a1a1a;
    padding: 100px 0;
    text-align: center;
}

.dir-cta .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.dir-cta .cta-heading {
    font-family: 'Noto Serif KR', serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}

.dir-cta .cta-sub {
    font-family: 'Pretendard', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 36px;
}

.dir-cta .cta-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    transition: border-color 0.3s ease;
}

.dir-cta .cta-phone:hover {
    border-color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .directions-hero .hero-text h1 {
        font-size: 2rem;
    }

    .dir-section {
        padding: 80px 0;
    }

    .transport-row {
        flex-direction: column;
        padding: 24px 0;
    }

    .transport-label {
        margin-bottom: 10px;
    }

    .transport-detail {
        margin-left: 0;
    }

    .map-wrap iframe {
        height: 320px;
    }

    .dir-cta {
        padding: 70px 0;
    }

    .dir-cta .cta-phone {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .directions-hero {
        height: 50vh;
    }

    .directions-hero .hero-text h1 {
        font-size: 1.6rem;
    }

    .hours-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
