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


/* ============================================
   히어로: 풀스크린 이미지
   ============================================ */
.about-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/about/about_hero.png') center top/cover no-repeat;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.about-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;
}
.about-hero-content p {
    font-family: 'Pretendard', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
    letter-spacing: 0.02em;
}
.about-hero-content .lux-label {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
}


/* ============================================
   인트로 텍스트
   ============================================ */
.about-intro {
    padding: 140px 24px;
    text-align: center;
    background: #fff;
}

.about-intro-inner {
    max-width: 600px;
    margin: 0 auto;
}

.about-intro-inner p {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    line-height: 2;
    color: #222;
    letter-spacing: -0.01em;
}

.about-intro-sub {
    margin-top: 32px !important;
    font-size: clamp(0.9rem, 1.5vw, 1rem) !important;
    color: #888 !important;
    font-weight: 300 !important;
    font-family: 'Pretendard', sans-serif !important;
}


/* ============================================
   타임라인: 미니멀 가로 레이아웃
   ============================================ */
.about-history {
    padding: 140px 24px 100px;
    background: #F7F5F0;
}

.history-list {
    max-width: 1100px;
    margin: 0 auto;
}

.history-row {
    display: grid;
    grid-template-columns: 100px 280px 1fr;
    gap: 40px;
    align-items: start;
    padding: 48px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.history-row:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.history-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #C9A96E;
    letter-spacing: 0.02em;
    padding-top: 8px;
}

.history-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.history-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.history-row:hover .history-img img {
    transform: scale(1.03);
}

.history-text h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.history-text p {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}

@media (max-width: 900px) {
    .history-row {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    .history-img { display: none; }
}

@media (max-width: 576px) {
    .history-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .history-year {
        font-size: 1.6rem;
    }
}


/* ============================================
   비디오 밴드
   ============================================ */
.about-video-band {
    width: 100%;
    max-height: 60vh;
    overflow: hidden;
    background: #0a0a0a;
}

.about-video-band video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ============================================
   프로세스: 미니멀 스텝
   ============================================ */
.about-process {
    padding: 140px 24px 100px;
    background: #fff;
}

.process-list {
    max-width: 700px;
    margin: 0 auto;
}

.process-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    align-items: start;
    padding: 36px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.process-row:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.process-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #C9A96E;
    padding-top: 2px;
}

.process-text h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.process-text p {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}


/* ============================================
   CTA
   ============================================ */
.about-cta {
    background: #1A1A1A;
    color: #fff;
    padding: 140px 24px;
    text-align: center;
}

.about-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 40px;
}

.about-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;
}
.about-cta-phone:hover { color: #C9A96E; }

.about-cta-sub {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
}


/* ============================================
   푸터 (index와 동일)
   ============================================ */
.footer-luxury {
    background: #111;
    color: #fff;
    padding: 80px 24px 48px;
    text-align: center;
}

.footer-luxury-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    letter-spacing: 0.25em;
    font-weight: 400;
}
.footer-brand-kr {
    font-family: 'Noto Serif KR', serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}
.footer-nav a {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-nav a:hover { color: #fff; }

.footer-social-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 32px;
}
.footer-social-link:hover { color: #fff; }

.footer-bottom-line {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    width: 100%;
}
.footer-bottom-line span {
    font-family: 'Pretendard', sans-serif;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
}


/* ============================================
   반응형
   ============================================ */
@media (max-width: 768px) {
    .about-hero { height: 60vh; }
    .about-intro { padding: 140px 24px; }
    .about-history { padding: 140px 24px 100px; }
    .about-process { padding: 140px 24px 100px; }
    .about-cta { padding: 140px 24px; }
    .about-video-band { max-height: 40vh; }
    .footer-luxury { padding: 60px 24px 40px; }
    .footer-nav { gap: 20px; }
}

@media (max-width: 576px) {
    .about-hero { height: 50vh; }
    .about-hero-text h1 { font-size: 1.8rem; }
    .lux-label { margin-bottom: 40px; }
}
