/*
 * PC / 모바일 디자인 분리
 * - PC 전용: @media (min-width: 769px) 로 검색. 수정 시 모바일 영향 없음.
 * - 모바일 전용: @media (max-width: 768px) 또는 (max-width: 414px). 수정 시 PC 영향 없음.
 */
/* 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #000;
    margin: 0 !important;
    padding: 0 !important;
}

/* 인라인 스타일 덮어쓰기: 메인 내 섹션/카드 배경·텍스트 */
main section {
    background-color: #000 !important;
    color: #fff !important;
}
/* 업체소개 페이지: 밝은 배경·어두운 텍스트 유지 */
main section.about-philosophy-section,
body main section.about-philosophy-section,
section.about-philosophy-section {
    background-color: #FDFCF9 !important;
    background: #FDFCF9 !important;
    color: #222222 !important;
}
main section.about-hero-section {
    background-color: #F9F8F4 !important;
    color: #2f2a24 !important;
}
main section.about-process-section {
    background-color: #F9F9F9 !important;
    color: #1a1a1a !important;
}
main section.location-information-section {
    background-color: #fcfaf7 !important;
    color: #222222 !important;
}
main .service-card-item,
main .prayer-guide-section,
main .prayer-text-p,
main .client-section li {
    color: #fff !important;
}
main .service-card-item {
    background: #111 !important;
}

body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    line-height: 1.6;
    color: #fff !important;
    background-color: #000 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}

/* 상단 하얀 구분선은 헤더 하단(border-bottom)에 적용 */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더: 공통(레이아웃만), 상단바 밑 끝에 흰색 선 */
header {
    background-color: transparent !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-top: none !important;
    border-bottom: 1px solid #ffffff !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
    padding: 0 !important;
    margin: 0 !important;
}

/* PC 전용 헤더 레이아웃/스타일 */
@media (min-width: 769px) {
.mobile-menu-toggle {
    display: none !important;
}
header.scrolled {
    background: rgba(246, 243, 238, 0.01) !important;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-top: none !important;
    border-bottom: 1px solid #ffffff !important;
}

.header-container {
    width: min(1460px, calc(100% - 88px));
    margin: 0 auto;
    padding: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    outline: none;
}

.header-logo-img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-top: 0;
    outline: none;
    mix-blend-mode: lighten;
}

.logo a:focus,
.logo a:focus-visible,
.header-logo-img:focus {
    outline: none;
}

.logo-en {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: 2px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

header.scrolled .logo-en {
    color: #fff;
}

.logo-en::after {
    content: '—';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
}

header.scrolled .logo-en::after {
    color: #fff;
}

.logo-ko {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-top: 2px;
    transition: color 0.3s ease;
}

header.scrolled .logo-ko {
    color: #fff;
}

.main-nav {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: auto;
}

.main-nav ul {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    padding-left: 0 !important;
    align-items: center;
    height: 100%;
}

.main-nav ul li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.main-nav ul li::marker {
    display: none !important;
    content: '' !important;
    font-size: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.main-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 400 !important;
    font-size: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    position: relative;
    text-align: center;
    background: none !important;
    background-image: none !important;
}

header.scrolled .main-nav ul li a {
    color: #fff;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #999 !important;
    font-weight: 400 !important;
}

header.scrolled .main-nav ul li a:hover,
header.scrolled .main-nav ul li a.active {
    color: #999 !important;
    font-weight: 400 !important;
}

/* 네비 하얀 점 완전 제거 - 가상요소·포커스·마커 전부 제거 */
.main-nav ul li::before,
.main-nav ul li::after,
.main-nav ul li a::before,
.main-nav ul li a::after {
    display: none !important;
    content: '' !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.main-nav ul li a,
.main-nav ul li a:focus,
.main-nav ul li a:focus-visible,
.main-nav ul li a:active {
    outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
}

.main-nav ul li a:focus::before,
.main-nav ul li a:focus::after,
.main-nav ul li a:focus-visible::before,
.main-nav ul li a:focus-visible::after {
    display: none !important;
    content: '' !important;
}

header .main-nav ul li a {
    -webkit-tap-highlight-color: transparent !important;
}

.submenu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    min-width: 150px;
    padding: 10px 0;
    z-index: 1000;
}

.has-submenu:hover .submenu {
    display: block !important;
}

.submenu li {
    display: block;
}

.submenu li a {
    padding: 10px 20px;
    color: #fff;
}
} /* end PC 헤더 (min-width: 769px) */

/* 메인 컨텐츠 */
main {
    min-height: calc(100vh - 200px);
}

/* 캐러셀 */
.main-carousel {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    width: 100%;
    height: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 섹션 스타일 */
.intro-section,
.service-section,
.map-section,
.customer-service {
    padding: 60px 0;
}

.intro-section {
    background: #000;
    color: #fff;
    text-align: center;
    padding-bottom: 20px;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 30px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.service-section {
    background: #000;
}

/* 이미지 갤러리 섹션 */
.image-gallery-section {
    padding: 0 0 60px 0;
    margin-top: -80px;
    background: #000;
}

.image-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-image-item {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.gallery-image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(184, 149, 106, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-image-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(184, 149, 106, 0.2)) padding-box,
                linear-gradient(135deg, rgba(212, 165, 116, 0.5), rgba(184, 149, 106, 0.3)) border-box;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-image-item:hover::after {
    opacity: 1;
}

.gallery-image-item.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: gallerySlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.gallery-image-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 8px 20px rgba(212, 165, 116, 0.2);
    border-color: rgba(212, 165, 116, 0.3);
}

.gallery-image-item:hover::before {
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: brightness(0.95) contrast(1.05);
}

.gallery-image-item:hover .gallery-image {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.1);
}

/* 이미지 오버레이 스타일 */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 2;
    transition: all 0.5s ease;
    backdrop-filter: blur(2px);
}

.gallery-image-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    padding: 45px 35px;
    backdrop-filter: blur(4px);
}

.gallery-text {
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}

.gallery-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 165, 116, 0.3);
    letter-spacing: 0.5px;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #D4A574 0%, transparent 100%);
    transition: width 0.5s ease;
}

.gallery-image-item:hover .gallery-title::after {
    width: 80px;
}

.gallery-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: #D4A574;
    margin: 12px 0 0 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
}

.gallery-btn {
    background: rgba(10, 10, 10, 0.72);
    color: #f5f5f5;
    border: 1px solid rgba(212, 165, 116, 0.48);
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.28s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(3px);
}

.gallery-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.18), transparent);
    transition: left 0.5s ease;
}

.gallery-btn:hover::before {
    left: 100%;
}

.gallery-btn:hover {
    background: rgba(12, 12, 12, 0.86);
    border-color: rgba(212, 165, 116, 0.78);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34);
}

.gallery-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
}

@keyframes gallerySlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1024px) {
    .image-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 414px) {
    .image-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .image-gallery-section {
        padding: 0 0 40px 0;
        margin-top: -100px;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-overlay {
        padding: 20px 15px;
    }
    
    .map-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .map-title-en {
        font-size: 14px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
        letter-spacing: 1px;
    }
    
    .map-description {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .map-phone,
    .map-mobile {
        font-size: 16px;
    }
    
    .map-wrapper {
        margin-top: 40px;
        border-radius: 10px;
    }
    
    .map-section {
        padding: 50px 0 50px 0;
    }
}

@media (max-width: 768px) and (min-width: 415px) {
    .image-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 300px;
    }
    
    .map-title {
        font-size: 24px;
    }
    
    .map-title-en {
        font-size: 16px;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    
    .map-description {
        font-size: 14px;
    }
    
    .map-phone,
    .map-mobile {
        font-size: 16px;
    }
}

.service-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #D4A574;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #000;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #D4A574;
}

.service-card p {
    margin-bottom: 20px;
    color: #aaa;
}

/* 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #D4A574;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #B8956A;
}

/* PROGRESSIVE PROCESS: 왼쪽 고정(스티키), 오른쪽 스크롤 */
/* 스크롤이 통계 섹션 정도 내려갔을 때만 나타남 (JS에서 .progressive-revealed 추가) */
.progressive-process-section {
    background: #f9f8f4;
    min-height: 100vh;
    padding: 0;
    overflow: visible;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.progressive-process-section.progressive-revealed {
    opacity: 1;
    transform: translateY(0);
}

.progressive-process-wrap {
    display: flex;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
}

/* 왼쪽: 스크롤해도 화면에 고정(sticky), 구분선을 조금 왼쪽으로 */
.progressive-process-left {
    flex: 0 0 42%;
    max-width: none;
    position: sticky;
    top: 80px;
    align-self: flex-start;
    min-height: 60vh;
    padding: 56px 56px 64px 6px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid rgba(47, 42, 36, 0.12);
}

.progressive-process-title {
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 200;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    color: #2f2a24;
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 0 0 40px 0;
}

.progressive-process-sub {
    font-size: 19px;
    font-weight: 400;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    color: #2f2a24;
    line-height: 1.45;
    margin: 0 0 20px 0;
    max-width: 320px;
}

.progressive-process-line {
    display: block;
    width: 56px;
    height: 1px;
    background: rgba(47, 42, 36, 0.45);
}

/* 오른쪽: STEP + 이미지 스크롤 영역 */
.progressive-process-right {
    flex: 1 1 58%;
    min-width: 0;
    padding: 56px 48px 160px 40px;
    box-sizing: border-box;
}

.progressive-step {
    margin-bottom: 140px;
}

.progressive-step:last-child {
    margin-bottom: 0;
}

/* STEP 블록 스크롤 등장 애니메이션: 번호 → 제목 → 이미지 → 설명 순서 */
@keyframes step-item-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.progressive-step .progressive-step-num,
.progressive-step .progressive-step-title,
.progressive-step .progressive-step-image,
.progressive-step .progressive-step-desc {
    opacity: 0;
}

.progressive-step.step-in-view .progressive-step-num,
.progressive-step.step-in-view .progressive-step-title,
.progressive-step.step-in-view .progressive-step-image,
.progressive-step.step-in-view .progressive-step-desc {
    animation: step-item-in 0.55s ease-out forwards;
}

.progressive-step.step-in-view .progressive-step-num {
    animation-delay: 0.05s;
}
.progressive-step.step-in-view .progressive-step-title {
    animation-delay: 0.15s;
}
.progressive-step.step-in-view .progressive-step-image {
    animation-delay: 0.28s;
}
.progressive-step.step-in-view .progressive-step-desc {
    animation-delay: 0.45s;
}

@media (max-width: 768px) {
    .progressive-step.step-in-view .progressive-step-num,
    .progressive-step.step-in-view .progressive-step-title,
    .progressive-step.step-in-view .progressive-step-image,
    .progressive-step.step-in-view .progressive-step-desc {
        animation-duration: 0.45s;
    }
    .progressive-step.step-in-view .progressive-step-num { animation-delay: 0.03s; }
    .progressive-step.step-in-view .progressive-step-title { animation-delay: 0.1s; }
    .progressive-step.step-in-view .progressive-step-image { animation-delay: 0.2s; }
    .progressive-step.step-in-view .progressive-step-desc { animation-delay: 0.32s; }
}

.progressive-step-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #4D96FF;
    margin-bottom: 24px;
}

.progressive-step-title {
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 700;
    color: #2f2a24;
    margin: 0 0 32px 0;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.progressive-step-image {
    width: 100%;
    min-height: 400px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 4px 28px rgba(47, 42, 36, 0.08);
}

.progressive-step-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    display: block;
    vertical-align: top;
}

.progressive-step-desc {
    font-size: 17px;
    color: rgba(107, 107, 107, 0.78);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 1024px) {
    .progressive-process-wrap {
        flex-direction: column;
    }
    .progressive-process-left {
        position: relative;
        flex: none;
        max-width: none;
        height: auto;
        padding: 28px 24px 0 0;
        border-right: none;
        border-bottom: 1px solid rgba(47, 42, 36, 0.1);
    }
    .progressive-process-right {
        padding: 0 24px 56px;
    }
    .progressive-step {
        margin-bottom: 64px;
    }
}

/* 모바일만: 통계 ↔ PROGRESSIVE 사이 빈 공간 제거, PROGRESSIVE가 더 위에서 시작 */
@media (max-width: 768px) {
    .statistics-section {
        padding: 20px 20px 0 20px !important;
    }
    .statistics-grid {
        margin-bottom: 0 !important;
        gap: 12px !important;
    }
    .stat-item {
        padding: 20px 16px !important;
    }
    .progressive-process-section {
        padding-top: 0 !important;
        min-height: auto !important;
    }
    .progressive-process-wrap {
        min-height: auto !important;
    }
    .progressive-process-left {
        padding: 0 24px 0 28px !important;
        border-bottom: none !important;
    }
}

/* 고객센터 섹션 - 고급·미니멀 */
.customer-center-section {
    background: #f6f3ee;
    padding: 88px 24px 72px;
    text-align: center;
}

.customer-center-inner {
    width: min(1460px, calc(100% - 88px));
    max-width: 720px;
    margin: 0 auto;
}

.customer-center-kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    color: #8f6c49;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.customer-center-title {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 600;
    color: #2f2a24;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.customer-center-desc {
    font-size: 15px;
    color: #5c554d;
    line-height: 1.7;
    margin: 0 0 40px 0;
}

.customer-center-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
}

.customer-center-phone {
    font-size: 18px;
    font-weight: 500;
    color: #2f2a24;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.customer-center-phone:hover {
    color: #8f6c49;
}

@media (max-width: 768px) {
    .customer-center-section {
        padding: 56px 20px 48px;
    }
    .customer-center-contact {
        flex-direction: column;
        gap: 12px;
    }
}

/* 지도 섹션 - 미니멀 */
.map-section--minimal {
    padding: 0 0 80px 0;
    background: #f6f3ee !important;
}

.map-section--minimal .map-section-inner {
    width: min(1460px, calc(100% - 88px));
    margin: 0 auto;
    padding: 0 24px;
}

.map-section--minimal .map-container {
    max-width: 100%;
}

.map-section--minimal .map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(47, 42, 36, 0.08);
    border: 1px solid rgba(47, 42, 36, 0.06);
}

.map-section--minimal .map-iframe {
    height: 420px;
    display: block;
}

/* 지도 섹션 (기본) */
.map-section {
    padding: 20px 0 100px 0;
    background: #000;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-wrapper {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
}

.map-iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-info-top {
    text-align: center;
    padding: 0;
    margin-bottom: 50px;
}

.map-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.map-title-en {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-left: 10px;
    letter-spacing: 2px;
}

.map-description {
    margin-bottom: 5px;
    font-size: 24px;
    color: #fff;
    line-height: 1.6;
}

.map-contact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.map-phone,
.map-mobile {
    margin: 0;
    font-size: 28px;
    color: #fff;
    font-weight: 700;
}

.map-phone strong,
.map-mobile strong {
    color: #fff;
    margin-right: 10px;
    font-weight: 700;
}

/* 고객센터 */
.customer-service {
    background: #D4A574;
    color: #fff;
    text-align: center;
}

.customer-service h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.customer-service .phone {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

/* 히어로 이미지 섹션 - 박스 크기에 맞춤(전체화면 아님) */
.hero-image-section {
    width: 100%;
    margin: -100px 0 0 0;
    padding: 0;
    overflow: hidden;
    min-height: 0;
    height: auto;
    display: block;
    position: relative;
}

.hero-image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-image-section img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    display: block;
}

.hero-image-section .hero-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain !important;
    object-position: center center !important;
    margin: 0;
    padding: 0;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-subtitle-top {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-title-main {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    line-height: 1.4;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* 모바일 전용 줄바꿈 - 데스크톱에서는 숨김 */
.mobile-br-only {
    display: none;
}

.hero-subtitle {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.hero-title.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

/* 페이지 헤더 */
.page-header {
    background: #000;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
}

/* 페이지 컨텐츠 */
.page-content {
    padding: 80px 0 40px 0;
    background: #000;
}

/* 컨텐츠 섹션 */
.content-section {
    padding: 40px 0;
    background: #000;
    margin-bottom: 20px;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #D4A574;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}

.content-section h2.about-main-title {
    font-size: 48px !important;
    border-bottom: none;
    padding-bottom: 0;
    color: #fff;
}

.content-section h2.inquiry-main-title {
    font-size: 48px !important;
    border-bottom: none;
    padding-bottom: 0;
    color: #fff;
}

.content-section h2.info-main-title {
    font-size: 48px !important;
    border-bottom: none;
    padding-bottom: 0;
    color: #fff;
}

.content-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.subpage-content {
    padding: 20px 0;
}

.subpage-content p {
    word-break: keep-all;
    line-height: 1.8;
    margin-bottom: 18px;
}

.subpage-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.subpage-intro-img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-section .lead {
    font-size: 18px;
    color: #aaa;
    font-weight: 500;
}

.content-section ul,
.content-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li {
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4A574;
    font-weight: bold;
}

.activity-list {
    list-style: none;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.activity-list li {
    background: #000;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-item {
    background: #000;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #D4A574;
}

.info-item h3 {
    margin-top: 0;
    color: #D4A574;
    font-size: 18px;
}

.contact-info {
    background: #000;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
}

.about-content,
.service-content,
.location-content {
    max-width: 800px;
    margin: 0 auto;
}

/* 센터소개 메인 이미지 */
.about-hero-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-hero-image .hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

/* 업체소개 페이지 히어로: 2단 (좌 텍스트 / 우 이미지) - 참고 이미지와 동일 */
.about-hero-section {
    background: #F9F8F4;
    padding: 88px 48px 100px;
    margin: 0;
}

.about-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: stretch;
}

.about-hero-left {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-badge,
.about-hero-section .about-hero-badge,
main .about-hero-section .about-hero-badge {
    position: relative;
    z-index: 1;
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 10px 18px;
    border-radius: 0;
    margin-bottom: 40px;
}

.about-hero-title {
    position: relative;
    z-index: 1;
    font-size: clamp(42px, 5.2vw, 62px);
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin: 0 0 28px 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.about-hero-title-line {
    display: block;
}
.about-hero-title-line::first-letter {
    font-size: 1.18em;
}

.about-hero-title-accent {
    font-style: normal;
    position: relative;
    z-index: 1;
    color: rgba(26, 26, 26, 0.75);
}

.about-hero-watermark {
    position: absolute;
    top: 50%;
    left: -120px;
    transform: translateY(-50%);
    font-size: clamp(72px, 12vw, 130px);
    font-weight: 700;
    color: #666666;
    opacity: 0.08;
    letter-spacing: -0.02em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    margin: 0;
}

.about-hero-desc {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.85;
    color: #5a5652;
    margin: 24px 0 0 0;
}

.about-hero-right {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    min-height: 420px;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
}

/* 업체소개 히어로: 첫 등장 시 요소별 다른 애니메이션 */
@keyframes about-hero-watermark-in {
    0% { opacity: 0; transform: translateY(-50%) scale(0.96); }
    100% { opacity: 0.08; transform: translateY(-50%) scale(1); }
}
@keyframes about-hero-title-line-in {
    0% { opacity: 0; transform: translateX(-28px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes about-hero-desc-in {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes about-hero-img-in {
    0% { opacity: 0; transform: translateX(32px) scale(1.02); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

.about-hero-section:not(.about-hero-animated) .about-hero-watermark {
    opacity: 0 !important;
}
.about-hero-section .about-hero-title-line {
    opacity: 0;
}
.about-hero-section .about-hero-desc {
    opacity: 0;
}
.about-hero-section .about-hero-right .about-hero-img {
    opacity: 0;
}

.about-hero-section.about-hero-animated .about-hero-watermark {
    animation: about-hero-watermark-in 1s ease-out 0.1s forwards;
}
.about-hero-section.about-hero-animated .about-hero-title-line:nth-of-type(1) {
    animation: about-hero-title-line-in 0.65s ease-out 0.25s forwards;
}
.about-hero-section.about-hero-animated .about-hero-title-line:nth-of-type(2) {
    animation: about-hero-title-line-in 0.65s ease-out 0.45s forwards;
}
.about-hero-section.about-hero-animated .about-hero-desc {
    animation: about-hero-desc-in 0.7s ease-out 0.65s forwards;
}
.about-hero-section.about-hero-animated .about-hero-right .about-hero-img {
    animation: about-hero-img-in 0.9s ease-out 0.4s forwards;
}

/* 모바일: 애니메이션 더 빠르게 (트리거는 JS에서 일찍, 재생 시간·딜레이만 단축) */
@media (max-width: 768px) {
    .about-hero-section.about-hero-animated .about-hero-watermark {
        animation-duration: 0.65s;
        animation-delay: 0.05s;
    }
    .about-hero-section.about-hero-animated .about-hero-title-line:nth-of-type(1) {
        animation-duration: 0.5s;
        animation-delay: 0.12s;
    }
    .about-hero-section.about-hero-animated .about-hero-title-line:nth-of-type(2) {
        animation-duration: 0.5s;
        animation-delay: 0.22s;
    }
    .about-hero-section.about-hero-animated .about-hero-desc {
        animation-duration: 0.5s;
        animation-delay: 0.32s;
    }
    .about-hero-section.about-hero-animated .about-hero-right .about-hero-img {
        animation-duration: 0.6s;
        animation-delay: 0.2s;
    }
    .about-philosophy-section.philosophy-cards-visible .about-philosophy-card {
        animation-duration: 0.5s;
    }
    .about-philosophy-section.philosophy-cards-visible .about-philosophy-card:nth-child(1) { animation-delay: 0.05s; }
    .about-philosophy-section.philosophy-cards-visible .about-philosophy-card:nth-child(2) { animation-delay: 0.15s; }
    .about-philosophy-section.philosophy-cards-visible .about-philosophy-card:nth-child(3) { animation-delay: 0.25s; }
    .about-process-section.process-cards-visible .about-process-card {
        animation-duration: 0.5s;
    }
    .about-process-section.process-cards-visible .about-process-card:nth-child(1) { animation-delay: 0.05s; }
    .about-process-section.process-cards-visible .about-process-card:nth-child(2) { animation-delay: 0.12s; }
    .about-process-section.process-cards-visible .about-process-card:nth-child(3) { animation-delay: 0.19s; }
    .about-process-section.process-cards-visible .about-process-card:nth-child(4) { animation-delay: 0.26s; }
}

@media (max-width: 900px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        overflow: visible;
    }
    .about-hero-left {
        overflow: visible;
    }
    .about-hero-watermark {
        font-size: clamp(36px, 9vw, 52px);
        left: 0;
        padding: 0 16px;
        box-sizing: border-box;
        white-space: normal;
        max-width: 100%;
    }
}

/* 업체소개 PHILOSOPHY 섹션 - 연한 베이지 배경, 밑 PROGRESSIVE PROCESS 섹션과 동일한 간격 */
.about-philosophy-section {
    background-color: #FDFCF9 !important;
    background: #FDFCF9 !important;
    padding: 120px 24px 140px;
    margin-bottom: 0;
}

.about-philosophy-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.about-philosophy-kicker {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #999999 !important;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.about-philosophy-title {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: #1a1a1a !important;
    line-height: 1.2;
    margin: 0 0 48px 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.about-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

@keyframes about-philosophy-card-pop {
    0% {
        opacity: 0;
        transform: scale(0.88) translateY(24px);
    }
    70% {
        transform: scale(1.02) translateY(-4px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.about-philosophy-card {
    position: relative;
    background: #FDFCF9 !important;
    border-radius: 12px;
    padding: 40px 28px 44px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: none;
    transition: box-shadow 0.25s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
}
.about-philosophy-section.philosophy-cards-visible .about-philosophy-card {
    animation: about-philosophy-card-pop 0.75s ease-out forwards;
}
.about-philosophy-section.philosophy-cards-visible .about-philosophy-card:nth-child(1) { animation-delay: 0.15s; }
.about-philosophy-section.philosophy-cards-visible .about-philosophy-card:nth-child(2) { animation-delay: 0.35s; }
.about-philosophy-section.philosophy-cards-visible .about-philosophy-card:nth-child(3) { animation-delay: 0.55s; }

.about-philosophy-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* 숫자: 좌상단, 연한 회색, 약한 투명도, 세로 upright (2번째 사진) */
.about-philosophy-num {
    position: absolute;
    top: 24px;
    left: 28px;
    font-size: 52px;
    font-weight: 500;
    font-style: normal;
    color: rgba(0, 0, 0, 0.08) !important;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.about-philosophy-card-title {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a !important;
    margin: 48px 0 14px 0;
    text-align: left;
}

.about-philosophy-card-desc {
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.85;
    color: #2d2d2d !important;
    text-align: left;
    margin: 0;
}

@media (max-width: 900px) {
    .about-philosophy-grid {
        grid-template-columns: 1fr;
    }
    .about-philosophy-section {
        padding: 80px 20px 100px;
    }
    .about-philosophy-title {
        margin-bottom: 40px;
    }
}

/* 업체소개 PROGRESSIVE PROCESS 4단계 (PHILOSOPHY 바로 아래) - 기준 섹션, 위 섹션과 간격 통일 */
.about-process-section {
    background: #F9F9F9;
    padding: 120px 24px 140px;
    margin-top: 0;
}

.about-process-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

/* 부제목: 옅은 회색, 작은 크기, 자간 넓음, 좌측 정렬 */
.about-process-kicker {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #777777 !important;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

/* 메인 제목: 진한 검정, 굵게, 행간 밀집, 좌측 정렬 */
.about-process-title {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: #1a1a1a !important;
    line-height: 1.2;
    margin: 0 0 48px 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@keyframes about-process-card-pop {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.about-process-card {
    position: relative;
    background: #F9F9F9;
    border-radius: 0;
    padding: 48px 32px 52px;
    min-height: 280px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: none;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.35s ease;
    transform: translateY(0) scale(1);
    opacity: 0;
}
.about-process-section.process-cards-visible .about-process-card {
    animation: about-process-card-pop 0.7s ease-out forwards;
}
.about-process-section.process-cards-visible .about-process-card:nth-child(1) { animation-delay: 0.1s; }
.about-process-section.process-cards-visible .about-process-card:nth-child(2) { animation-delay: 0.25s; }
.about-process-section.process-cards-visible .about-process-card:nth-child(3) { animation-delay: 0.4s; }
.about-process-section.process-cards-visible .about-process-card:nth-child(4) { animation-delay: 0.55s; }

/* 상단 검은선 (비활성 시 숨김) */
.about-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
    z-index: 2;
}

/* 비활성 카드: 회색 필터 (활성 시 제거) */
.about-process-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.06);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.35s ease;
}

.about-process-card.is-active::after {
    opacity: 0;
    pointer-events: none;
}

.about-process-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

/* 활성 카드: 상단 검은선 애니메이션 + 위로 올라가며 커짐 */
.about-process-card.is-active {
    background: #F9F9F9;
    border: none;
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-12px) scale(1.05);
    z-index: 1;
}

.about-process-card.is-active::before {
    transform: scaleX(1);
}

/* 숫자: 우하단(2번째 사진 위치), 연한 회색, 투명도 0.08, 기울임 */
.about-process-num {
    position: absolute;
    bottom: 24px;
    right: 0;
    font-size: 120px;
    font-weight: 300;
    font-style: italic;
    font-family: inherit;
    color: #646464 !important;
    opacity: 0.08 !important;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    letter-spacing: 0;
}

/* 비활성 카드: 텍스트 전부 회색 */
.about-process-cat {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: #999999 !important;
    margin: 0 0 14px 0;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
}

.about-process-card:not(.is-active) .about-process-cat,
.about-process-card:not(.is-active) .about-process-card-title,
.about-process-card:not(.is-active) .about-process-card-desc {
    color: #999999 !important;
}

.about-process-card-title {
    position: relative;
    z-index: 1;
    font-size: 19px;
    font-weight: 300;
    color: #888888 !important;
    margin: 0 0 18px 0;
    letter-spacing: 0.06em;
    transition: color 0.35s ease;
}

.about-process-card.is-active .about-process-card-title {
    font-weight: 700;
}

.about-process-card-desc {
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.04em;
    color: #999999 !important;
    margin: 0;
    transition: color 0.35s ease;
}

/* 활성화 시 텍스트 색 (전역 색상 덮어쓰기) */
.about-process-card.is-active .about-process-cat {
    color: #555555 !important;
}

.about-process-card.is-active .about-process-card-title {
    color: #202020 !important;
}

.about-process-card.is-active .about-process-card-desc {
    color: #666666 !important;
}

@media (max-width: 1024px) {
    .about-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-process-card.is-active {
        transform: translateY(-10px) scale(1.03);
    }
}

@media (max-width: 600px) {
    .about-process-grid {
        grid-template-columns: 1fr;
    }
    .about-process-card.is-active {
        transform: translateY(-8px) scale(1.02);
    }
    .about-process-section {
        padding: 80px 20px 100px;
    }
    .about-process-title {
        margin-bottom: 36px;
    }
}

/* 업체소개 인쿼리 히어로 (PROGRESSIVE PROCESS 바로 아래) */
.about-inquiry-hero {
    position: relative;
    min-height: 520px;
    padding: 80px 24px 100px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-inquiry-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1d24 0%, #252a33 50%, #1e2229 100%);
}

.about-inquiry-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.about-inquiry-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
}

.about-inquiry-hero-left {
    max-width: 560px;
}

.about-inquiry-start-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    text-decoration: none;
    margin-bottom: 40px;
    transition: border-color 0.2s, background 0.2s;
}

.about-inquiry-start-btn:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

.about-inquiry-hero-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 24px 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

.about-inquiry-hero-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.about-inquiry-panel {
    background: rgba(30, 33, 40, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 40px 36px 44px;
    min-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-inquiry-panel-head {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #fff;
    margin: 0 0 28px 0;
}

.about-inquiry-btn-primary {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    margin-bottom: 12px;
    transition: background 0.2s, opacity 0.2s;
}

.about-inquiry-btn-primary:hover {
    background: #f0f0f0;
}

.about-inquiry-btn-secondary {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    margin-bottom: 32px;
    transition: background 0.2s, border-color 0.2s;
}

.about-inquiry-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.about-inquiry-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-inquiry-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-inquiry-meta-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
}

.about-inquiry-meta-value {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 900px) {
    .about-inquiry-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-inquiry-panel {
        min-width: 0;
    }
    .about-inquiry-hero {
        padding: 60px 20px 80px;
    }
}

.about-content h2,
.service-content h2,
.location-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #D4A574;
}

.about-content h3,
.service-content h3,
.location-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.about-content ul,
.service-content ul,
.location-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.about-content li,
.service-content li,
.location-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.about-content ol,
.service-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.contact-box {
    background: #000;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.contact-box h3 {
    margin-bottom: 15px;
}

.contact-box .phone {
    font-size: 20px;
    font-weight: bold;
    color: #D4A574;
    margin: 15px 0;
}

/* 공지사항 테이블 */
.notice-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.notice-table th,
.notice-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.notice-table th {
    background-color: #D4A574;
    color: #fff;
    font-weight: bold;
}

.notice-table td a {
    color: #fff;
    text-decoration: none;
}

.notice-table td a:hover {
    color: #D4A574;
    text-decoration: underline;
}

/* 고객센터 스타일 */
.inquiry-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 50px;
}

.inquiry-main-title {
    font-size: 48px !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.inquiry-subtitle {
    font-size: 18px;
    color: #aaa;
    line-height: 1.6;
}

.inquiry-subtitle .mobile-br-only {
    display: none;
}

.inquiry-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.inquiry-card {
    background: #000;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inquiry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.inquiry-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
}

.inquiry-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.inquiry-card-content {
    color: #bbb;
}

.inquiry-info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.inquiry-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.inquiry-info-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 500;
}

.inquiry-info-value {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}

.inquiry-phone {
    color: #D4A574;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.inquiry-phone:hover {
    color: #D4A574;
}

.inquiry-info-address .inquiry-info-value {
    line-height: 1.8;
}

.inquiry-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inquiry-guide-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #bbb;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

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

.inquiry-guide-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4A574;
    font-weight: bold;
    font-size: 18px;
}

.inquiry-action {
    text-align: center;
    margin-top: 50px;
}

.inquiry-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(172, 151, 85, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inquiry-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(172, 151, 85, 0.4);
}

.inquiry-btn-primary svg {
    width: 20px;
    height: 20px;
}

/* 업체안내 스타일 */
.info-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.info-header {
    text-align: center;
    margin-bottom: 50px;
}

.info-main-title {
    font-size: 48px !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.info-subtitle {
    font-size: 18px;
    color: #aaa;
    line-height: 1.6;
}

.info-subtitle .mobile-br-only {
    display: none;
}

.info-intro-card {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.info-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 20px;
    word-break: keep-all;
}

.info-intro-text:last-child {
    margin-bottom: 0;
}

.info-services {
    margin-bottom: 50px;
}

.info-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.info-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.info-service-card {
    background: #000;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.info-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-service-icon {
    width: 64px;
    height: 64px;
    background: #D4A574;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.info-service-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.info-service-desc {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

.info-solutions {
    margin-bottom: 30px;
}

.info-solution-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-solution-item {
    background: #000;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-solution-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.info-solution-badge {
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.info-solution-item p {
    font-size: 16px;
    color: #bbb;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
}

/* 업체소개 스타일 */
.about-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-main-title {
    font-size: 48px !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-subtitle {
    font-size: 20px;
    color: #D4A574;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-intro-card {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.about-intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #fff;
}

.about-intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 20px;
    word-break: keep-all;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro-text:last-child {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-feature-card {
    background:
        linear-gradient(180deg, rgba(212, 165, 116, 0.08) 0%, rgba(212, 165, 116, 0) 26%),
        #0d0d0d;
    border-radius: 18px;
    padding: 30px 28px 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 34px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #D4A574 0%, rgba(212, 165, 116, 0.1) 100%);
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 46px rgba(0, 0, 0, 0.38);
    border-color: rgba(212, 165, 116, 0.32);
}

.about-feature-kicker {
    margin: 0 0 16px;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #D4A574;
}

.about-feature-icon {
    width: 58px;
    height: 58px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 22px;
    color: #D4A574;
    border: 1px solid rgba(212, 165, 116, 0.42);
    box-shadow: inset 0 0 0 1px rgba(212, 165, 116, 0.15);
}

.about-feature-icon svg {
    width: 30px;
    height: 30px;
    opacity: 0.95;
}

.about-feature-title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.35;
}

.about-feature-desc {
    font-size: 21px;
    color: #b7b7b7;
    line-height: 1.8;
    word-break: keep-all;
}

.premium-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4A574;
    margin-bottom: 14px;
}

.premium-pill {
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    margin-top: 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.28);
}

.about-showcase {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

.about-showcase-main img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.about-showcase-side {
    display: grid;
    gap: 18px;
}

.showcase-stat-card {
    background: linear-gradient(145deg, #121212 0%, #1a1a1a 100%);
    border: 1px solid rgba(212, 165, 116, 0.24);
    border-radius: 18px;
    padding: 26px 22px;
}

.showcase-label {
    font-size: 12px;
    color: #D4A574;
    letter-spacing: 1px;
}

.showcase-value {
    display: block;
    margin: 8px 0 10px 0;
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
}

.showcase-stat-card p {
    margin: 0;
    color: #b7b7b7;
    font-size: 14px;
    line-height: 1.7;
}

.about-photo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 34px;
}

.about-photo-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-photo-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.about-photo-card figcaption {
    padding: 14px 16px;
    color: #cbcbcb;
    font-size: 14px;
}

.info-gallery {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-gallery-item {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.info-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.info-gallery-item figcaption {
    padding: 12px 14px;
    font-size: 13px;
    color: #bdbdbd;
}

.about-signature-panel {
    margin: 38px 0 46px;
    padding: 38px 40px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 0% 0%, rgba(212, 165, 116, 0.18), transparent 45%),
        radial-gradient(circle at 100% 100%, rgba(212, 165, 116, 0.12), transparent 40%),
        #0f0f0f;
    border: 1px solid rgba(212, 165, 116, 0.22);
    display: grid;
    grid-template-columns: 0.95fr 1.4fr;
    gap: 34px;
    align-items: center;
}

.about-signature-kicker {
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #D4A574;
    margin-bottom: 14px;
}

.about-signature-title {
    margin: 0;
    font-size: 44px;
    line-height: 1.28;
    color: #fff;
    font-weight: 700;
}

.about-signature-lead {
    margin: 0 0 14px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #ececec;
}

.about-signature-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: #b8b8b8;
}

.about-signature-points {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-signature-points span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    background: rgba(212, 165, 116, 0.08);
    color: #d8d8d8;
    font-size: 12px;
    letter-spacing: 0.6px;
}

.info-premium {
    max-width: 1040px;
    margin: 0 auto;
    padding: 40px 20px;
}

.info-page-content {
    padding-top: 24px;
}

.info-page-content .content-section {
    padding-top: 8px;
}

.info-premium-header {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
}

.info-premium-title {
    font-size: 48px;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -1px;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.info-premium-subtitle {
    margin: 0 0 14px;
    color: #b6b6b6;
    font-size: 18px;
    max-width: 760px;
    line-height: 1.7;
}

.info-premium-header .premium-pill {
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 4;
    flex-shrink: 0;
}

.info-premium-showcase {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 22px;
    margin-top: 48px;
    margin-bottom: 30px;
}

.info-premium-visual img {
    width: 100%;
    min-height: 410px;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
}

.info-premium-cards {
    display: grid;
    gap: 16px;
}

.info-premium-mini-card {
    margin: 0;
    border-radius: 16px;
    padding: 24px 22px;
    background: linear-gradient(145deg, #111 0%, #191919 100%);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.info-premium-mini-card span {
    font-size: 12px;
    letter-spacing: 1.3px;
    color: #D4A574;
    text-transform: uppercase;
}

.info-premium-mini-card strong {
    display: block;
    margin: 8px 0 10px;
    font-size: 25px;
    color: #fff;
}

.info-premium-mini-card p {
    margin: 0;
    color: #bdbdbd;
    line-height: 1.75;
}

.info-premium-signature {
    margin: 28px 0 32px;
    border-radius: 18px;
    padding: 30px 32px;
    border: 1px solid rgba(212, 165, 116, 0.18);
    background: #0d0d0d;
    display: grid;
    grid-template-columns: 0.85fr 1.45fr;
    gap: 24px;
    align-items: center;
}

.info-premium-kicker {
    margin: 0 0 10px;
    color: #D4A574;
    font-size: 11px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.info-premium-signature-left h3 {
    margin: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1.35;
    letter-spacing: -0.4px;
}

.info-premium-signature-right .lead {
    margin: 0 0 10px;
    color: #e4e4e4;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.info-premium-signature-right p {
    margin: 0;
    color: #a7a7a7;
    font-size: 15px;
    line-height: 1.85;
}

.info-premium-programs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 14px 0 42px;
}

.info-premium-program-card {
    margin: 0;
    border-radius: 16px;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    padding: 26px 24px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.info-premium-program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #D4A574 0%, rgba(212, 165, 116, 0.1) 100%);
}

.info-premium-program-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 165, 116, 0.34);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.program-kicker {
    margin: 0 0 12px;
    color: #D4A574;
    font-size: 12px;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    opacity: 0.82;
    font-weight: 600;
}

.info-premium-program-card h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.info-premium-program-card p {
    margin: 0;
    color: #b8b8b8;
    line-height: 1.82;
    font-size: 15px;
}

.info-premium-steps {
    margin-top: 4px;
    border-radius: 18px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    background: #0d0d0d;
    padding: 26px 24px 24px;
}

.info-premium-steps-head {
    margin-bottom: 18px;
}

.steps-kicker {
    margin: 0 0 8px;
    color: #D4A574;
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.info-premium-steps-sub {
    margin: 8px 0 0;
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.7;
}

.info-premium-steps h3 {
    margin: 0;
    color: #fff;
    font-size: 32px;
    letter-spacing: -0.3px;
}

.info-premium-step-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.info-premium-step {
    border-radius: 14px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    background: #101010;
    padding: 18px 14px;
}

.info-premium-step b {
    font-size: 20px;
    color: #D4A574;
    display: block;
    margin-bottom: 8px;
}

.info-premium-step p {
    margin: 0;
    color: #c6c6c6;
    line-height: 1.65;
}

.info-premium-gallery {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-premium-gallery figure {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.info-premium-gallery img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.info-premium-gallery figcaption {
    padding: 12px 14px;
    color: #bcbcbc;
    font-size: 13px;
}

/* 오시는 길 INFORMATION 스타일 (밝은 배경, 어두운 텍스트) */
.location-information-section {
    background: #fcfaf7;
    padding: 80px 24px 72px;
}

.location-information-inner {
    max-width: 900px;
    margin: 0 auto;
}

.location-information-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.location-information-line {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
    margin-bottom: 40px;
}

.location-information-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.location-info-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-info-block-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info-icon {
    flex-shrink: 0;
    color: #1a1a1a;
    stroke: currentColor;
}

.location-info-block-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.location-info-block-body p {
    margin: 0 0 8px 0;
    font-size: 15px;
    line-height: 1.75;
    color: #333333;
}

.location-info-block-body p:last-child {
    margin-bottom: 0;
}

.location-address-ko {
    font-weight: 500;
    color: #222222 !important;
}

.location-address-en {
    font-size: 13px !important;
    color: #666666 !important;
}

.location-info-note {
    font-size: 14px !important;
    color: #555555 !important;
    margin-top: 12px !important;
}

.location-info-block-body a {
    color: #222222;
    text-decoration: none;
}

.location-info-block-body a:hover {
    text-decoration: underline;
}

.location-map-wrap {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.location-information-section .location-map-iframe {
    width: 100%;
    min-height: 400px;
    display: block;
    border: 0;
}

@media (max-width: 768px) {
    .location-information-section {
        padding: 56px 20px 56px;
    }
    .location-information-blocks {
        gap: 28px;
        margin-bottom: 40px;
    }
    .location-information-section .location-map-iframe {
        min-height: 320px;
    }
}

.location-premium {
    background: #000;
    padding: 70px 0 56px;
}

.location-premium-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.location-premium-header h2 {
    margin: 0 0 12px;
    font-size: 48px;
    color: #fff;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    letter-spacing: -0.8px;
}

.location-premium-header p {
    margin: 0;
    color: #b5b5b5;
    font-size: 17px;
    line-height: 1.8;
}

.location-premium-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    gap: 20px;
}

.location-info-card,
.location-map-card {
    border-radius: 18px;
    border: 1px solid rgba(212, 165, 116, 0.22);
    background: #0d0d0d;
}

.location-info-card {
    padding: 30px 28px;
}

.location-info-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 30px;
}

.location-address {
    margin: 0 0 18px;
    color: #d3d3d3;
    line-height: 1.8;
}

.location-phone-group {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.location-phone-group a {
    text-decoration: none;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.location-route-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.location-route-actions a {
    text-decoration: none;
    text-align: center;
    padding: 12px 10px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-route-actions a.route-naver {
    background: linear-gradient(135deg, #03c75a 0%, #02b350 100%);
}

.location-route-actions a.route-kakao {
    background: linear-gradient(135deg, #fee500 0%, #f7d800 100%);
    color: #3c1e1e;
}

.location-route-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 165, 116, 0.28);
}

.location-tips {
    border-top: 1px dashed rgba(212, 165, 116, 0.25);
    padding-top: 14px;
}

.location-tips p {
    margin: 0;
    font-size: 14px;
    color: #a8a8a8;
    line-height: 1.7;
}

.location-map-card {
    overflow: hidden;
}

.location-map-iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .about-showcase {
        grid-template-columns: 1fr;
    }

    .about-showcase-main img {
        min-height: 280px;
    }

    .about-photo-strip,
    .info-gallery {
        grid-template-columns: 1fr;
    }

    .about-signature-panel {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 22px;
    }

    .about-signature-title {
        font-size: 30px;
    }

    .about-signature-lead {
        font-size: 16px;
    }

    .info-premium {
        padding: 32px 14px;
    }

    .info-page-content {
        padding-top: 16px;
    }

    .info-page-content .content-section {
        padding-top: 4px;
    }

    .info-premium-title {
        font-size: 36px;
    }

    .info-premium-subtitle {
        font-size: 16px;
    }

    .info-premium-showcase,
    .info-premium-signature,
    .info-premium-programs,
    .info-premium-step-list,
    .info-premium-gallery {
        grid-template-columns: 1fr;
    }

    .info-premium-visual img {
        min-height: 280px;
    }

    .info-premium-signature {
        padding: 24px 20px;
        gap: 16px;
    }

    .info-premium-signature-left h3 {
        font-size: 28px;
    }

    .info-premium-signature-right .lead {
        font-size: 15px;
    }

    .info-premium-program-card h4 {
        font-size: 20px;
    }

    .info-premium-program-card p {
        font-size: 14px;
    }

    .info-premium-steps {
        padding: 22px 18px 18px;
    }

    .info-premium-steps h3 {
        font-size: 24px;
    }

    .info-premium-steps-sub {
        font-size: 13px;
    }

    .location-premium {
        padding: 54px 0 44px;
    }

    .location-premium-header h2 {
        font-size: 36px;
    }

    .location-premium-header p {
        font-size: 15px;
    }

    .location-premium-grid {
        grid-template-columns: 1fr;
    }

    .location-info-card {
        padding: 24px 20px;
    }

    .location-info-card h3 {
        font-size: 26px;
    }

    .location-phone-group a {
        font-size: 21px;
    }

    .location-map-iframe {
        min-height: 380px;
    }
}

/* 히어로 3장 이미지 비율/표시 (PC 전용 - 모바일은 768px 블록에서 별도 정의) */
@media (min-width: 769px) {
.hero-image-section .hero-visual {
    width: 100% !important;
    max-width: 1660px !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
}

.hero-image-section .hero-slider-window,
.hero-image-section .hero-slider-track,
.hero-image-section .hero-slide {
    height: 100% !important;
}

.hero-image-section .hero-main-image,
.hero-image-section .hero-slide .hero-main-image {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: none !important;
    display: block !important;
    opacity: 1 !important;
}

.hero-image-section .hero-slider-window {
    z-index: 0 !important;
}

.hero-image-section .hero-visual::after {
    background:
        linear-gradient(90deg, rgba(20, 31, 48, 0.26) 0%, rgba(29, 42, 61, 0.18) 35%, rgba(53, 42, 30, 0.14) 70%, rgba(56, 44, 31, 0.12) 100%),
        linear-gradient(180deg, rgba(8, 11, 18, 0.06) 0%, rgba(8, 11, 18, 0.14) 100%) !important;
}
}

/* 데스크톱 히어로 박스 크기/비율 레퍼런스 고정 */
@media (min-width: 901px) {
    .hero-image-section {
        padding: 28px 56px 104px !important;
    }

    .hero-image-section .hero-visual {
        width: 100% !important;
        max-width: 1728px !important;
        aspect-ratio: 9 / 4 !important;
        border-radius: 28px !important;
    }
}

/* 히어로 이미지는 크롭 없이 전체가 보이도록 표시 */
.hero-image-section .hero-main-image,
.hero-image-section .hero-slide .hero-main-image {
    object-fit: contain !important;
    object-position: center center !important;
}

/* 문의 폼 */
.inquiry-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #fff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    background: #111;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    width: 100%;
}

.contact-info {
    margin-top: 40px;
    padding: 30px;
    background: #000;
    border-radius: 10px;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 15px;
}

.contact-info .phone {
    font-size: 24px;
    font-weight: bold;
    color: #D4A574;
    margin: 10px 0;
}

/* 갤러리 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* 위치 정보 */
.address-info {
    background: #000;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.address-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.map-container {
    margin: 30px 0;
}

.transport-info {
    margin-top: 30px;
}

.transport-info ul {
    margin-left: 30px;
}

.transport-info li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* OUR PHILOSOPHY 섹션 (푸터 바로 위) */
.philosophy-cta-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    overflow: hidden;
    margin-bottom: 0;
}

.philosophy-cta-bg {
    position: absolute;
    inset: 0;
    background-color: #2a2a2a;
    overflow: hidden;
}

.philosophy-cta-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.philosophy-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 100%);
}

.philosophy-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.philosophy-cta-kicker {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #ffffff !important;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.philosophy-cta-line {
    display: block;
    width: 48px;
    height: 2px;
    background: #ffffff;
    margin: 0 auto 24px;
}

.philosophy-cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff !important;
    line-height: 1.3;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.philosophy-cta-sub {
    font-size: clamp(16px, 2vw, 18px);
    color: #fff !important;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.philosophy-cta-desc {
    font-size: 15px;
    color: #fff !important;
    line-height: 1.8;
    margin: 0 0 32px 0;
}

.philosophy-cta-btn {
    display: inline-block;
    min-width: 250px;
    height: 52px;
    padding: 0 48px;
    line-height: 52px;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.philosophy-cta-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

.philosophy-cta-section + .site-footer {
    margin-top: 0;
}

/* OUR PHILOSOPHY 섹션 텍스트·버튼·장식선 전부 흰색 고정 */
.philosophy-cta-section .philosophy-cta-kicker,
.philosophy-cta-section .philosophy-cta-title,
.philosophy-cta-section .philosophy-cta-sub,
.philosophy-cta-section .philosophy-cta-desc,
.philosophy-cta-section .philosophy-cta-btn,
.philosophy-cta-section .philosophy-cta-line {
    color: #ffffff !important;
}
.philosophy-cta-section .philosophy-cta-line {
    background: #ffffff !important;
}
main .philosophy-cta-section .philosophy-cta-kicker,
main .philosophy-cta-section .philosophy-cta-title,
main .philosophy-cta-section .philosophy-cta-sub,
main .philosophy-cta-section .philosophy-cta-desc,
main .philosophy-cta-section .philosophy-cta-btn {
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .philosophy-cta-section {
        min-height: 500px;
        padding: 80px 20px;
    }
    .philosophy-cta-inner {
        padding: 36px 0 44px 0;
    }
    .philosophy-cta-desc br {
        display: none;
    }
}

/* ========== PC 전용 (769px 이상) - 수정 시 모바일 영향 없음 ========== */
/* 푸터 - 3단 + 하단 법적 링크 (PC) */
@media (min-width: 769px) {
.site-footer,
footer.site-footer {
    background: #222222 !important;
    color: #e0e0e0;
    padding: 0 !important;
    margin-top: 60px;
    border-top: none;
    border-bottom: none;
    width: 100%;
    box-sizing: border-box;
    display: block;
}
/* 메인에 OUR PHILOSOPHY가 있으면 푸터를 위에 딱 붙임 */
main:has(.philosophy-cta-section) ~ .site-footer {
    margin-top: 0 !important;
}

.site-footer .footer-inner {
    width: min(1460px, calc(100% - 88px));
    max-width: 1460px;
    margin: 0 auto;
    padding: 48px 0 32px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: start;
}

.site-footer .footer-col {
    min-width: 0;
}

.site-footer .footer-logo {
    color: #ffffff !important;
    margin-bottom: 12px;
}
.site-footer .footer-logo svg,
.site-footer .footer-logo svg path {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

.site-footer .footer-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.site-footer .footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #e8e8e8;
    margin: 0 0 20px 0;
    max-width: 280px;
}

.site-footer .footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.site-footer .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.85);
    border-radius: 50%;
    color: #ffffff !important;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.site-footer .footer-social-link:hover {
    color: #D4A574 !important;
    border-color: rgba(212,165,116,0.6);
    background: rgba(255,255,255,0.05);
}

/* 푸터 SNS 아이콘 흰색 */
.site-footer .footer-social-link svg {
    color: #ffffff;
}
.site-footer .footer-social-link svg path,
.site-footer .footer-social-link svg circle,
.site-footer .footer-social-link svg rect {
    fill: none !important;
    stroke: #ffffff !important;
}
.site-footer .footer-social-link svg polygon {
    fill: #ffffff !important;
    stroke: none !important;
}
/* fill로 그려진 아이콘도 흰색 */
.site-footer .footer-social-link svg path[fill],
.site-footer .footer-social-link svg circle[fill] {
    fill: #ffffff !important;
}
.site-footer .footer-social-link:hover svg path,
.site-footer .footer-social-link:hover svg circle,
.site-footer .footer-social-link:hover svg rect {
    stroke: #D4A574 !important;
}
.site-footer .footer-social-link:hover svg polygon {
    fill: #D4A574 !important;
}
.site-footer .footer-social-link:hover svg path[fill],
.site-footer .footer-social-link:hover svg circle[fill] {
    fill: #D4A574 !important;
}

.site-footer .footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
}

.site-footer .footer-menu-list {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
    padding-left: 0 !important;
}

.site-footer .footer-menu-list li {
    margin-bottom: 10px;
    list-style: none !important;
}

.site-footer .footer-menu-list li::before,
.site-footer .footer-menu-list li::after,
.site-footer .footer-menu-list li a::before,
.site-footer .footer-menu-list li a::after,
.site-footer .footer-menu-list li::marker {
    display: none !important;
    content: '' !important;
    width: 0 !important;
    height: 0 !important;
}

.site-footer .footer-menu-list a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.site-footer .footer-menu-list a:hover {
    color: #fff;
}

.site-footer .footer-business p {
    font-size: 14px;
    line-height: 1.75;
    color: #e8e8e8;
    margin: 0 0 6px 0;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 16px 24px;
}

.site-footer .footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer .footer-legal {
    display: flex;
    gap: 16px;
}

.site-footer .footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.site-footer .footer-legal a:hover {
    color: #fff;
}

.site-footer .footer-admin-btn {
    margin-left: auto;
    padding: 6px 12px;
    font-size: 12px;
    color: #e8e8e8;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.site-footer .footer-admin-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.site-footer .footer-admin-link-btn {
    padding: 6px 12px;
    font-size: 12px;
    color: #e8e8e8;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 4px;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
}

.site-footer .footer-admin-link-btn:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

/* 다크 푸터 전용 색상 - 흰색 계열로 가독성 확보 */
.site-footer .footer-brand-name,
.site-footer .footer-heading,
.site-footer .footer-logo,
.site-footer .footer-social-link { color: #fff !important; }
.site-footer .footer-desc,
.site-footer .footer-business p { color: #e8e8e8 !important; }
.site-footer .footer-menu-list a { color: #e8e8e8 !important; }
.site-footer .footer-menu-list a:hover { color: #fff !important; }
.site-footer .footer-legal a { color: #e8e8e8 !important; }
.site-footer .footer-legal a:hover { color: #fff !important; }
.site-footer .footer-admin-btn { color: #e8e8e8 !important; }
.site-footer .footer-admin-btn:hover { color: #fff !important; }
.site-footer .footer-admin-link-btn { color: #e8e8e8 !important; }
.site-footer .footer-admin-link-btn:hover { color: #fff !important; }
}

/* ========== 모바일 전용 (768px 이하) - 수정 시 PC 영향 없음 ========== */
@media (max-width: 768px) {
    .site-footer {
        background: #1c1c1c !important;
    }
    .site-footer .footer-inner {
        width: 100%;
        max-width: none;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 32px 20px 24px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        box-sizing: border-box;
    }
    .site-footer .footer-col.footer-menu {
        display: none;
    }
    .site-footer .footer-brand {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .site-footer .footer-brand .footer-logo {
        margin-bottom: 0;
    }
    .site-footer .footer-brand-name {
        font-size: 16px;
        margin-bottom: 0;
    }
    .site-footer .footer-desc {
        display: none;
    }
    .site-footer .footer-social {
        margin-left: auto;
    }
    .site-footer .footer-col.footer-business {
        padding: 24px 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .site-footer .footer-business .footer-heading {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .site-footer .footer-business p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 4px;
        color: #ffffff !important;
    }
    .site-footer .footer-bottom {
        padding: 20px 20px 24px;
        border-top: none;
    }
    .site-footer .footer-bottom-inner {
        max-width: none;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }
    .site-footer .footer-legal a {
        font-size: 12px;
        color: #ffffff !important;
    }
    .site-footer .footer-legal a:hover {
        color: #ffffff !important;
    }
    .site-footer .footer-admin-btn,
    .site-footer .footer-admin-link-btn {
        font-size: 11px;
        padding: 5px 10px;
        color: #ffffff !important;
    }
    .site-footer .footer-admin-btn:hover,
    .site-footer .footer-admin-link-btn:hover {
        color: #ffffff !important;
    }
    /* 모바일 푸터 로고(그리드 아이콘) 흰색 */
    .site-footer .footer-logo,
    .site-footer .footer-logo svg,
    .site-footer .footer-logo svg path {
        color: #ffffff !important;
        stroke: #ffffff !important;
    }
    /* 모바일 푸터 텍스트 전부 흰색 */
    .site-footer .footer-brand-name,
    .site-footer .footer-heading,
    .site-footer .footer-desc,
    .site-footer .footer-business p,
    .site-footer .footer-menu-list a,
    .site-footer .footer-legal a,
    .site-footer .footer-admin-btn,
    .site-footer .footer-admin-link-btn {
        color: #ffffff !important;
    }
    .site-footer .footer-social-link {
        color: #ffffff !important;
    }
    .site-footer .footer-social-link:hover {
        color: #D4A574 !important;
    }
    /* 모바일 푸터 SNS 아이콘 흰색 */
    .site-footer .footer-social-link svg {
        color: #ffffff !important;
    }
    .site-footer .footer-social-link svg path,
    .site-footer .footer-social-link svg circle,
    .site-footer .footer-social-link svg rect {
        stroke: #ffffff !important;
    }
    .site-footer .footer-social-link svg polygon {
        fill: #ffffff !important;
    }
}

/* 기존 푸터 클래스 호환 */
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-info { margin-bottom: 20px; }
.footer-info h3 { font-size: 20px; margin-bottom: 15px; }
.footer-info p { margin-bottom: 5px; font-size: 14px; color: #fff; }
.footer-copyright { text-align: left; margin-top: 20px; color: #fff; font-size: 14px; }
.footer-admin-link { margin-top: 15px; text-align: left; }
.footer-admin-link a { color: #aaa; text-decoration: none; font-size: 13px; transition: color 0.3s ease; }
.footer-admin-link a:hover { color: #fff; text-decoration: underline; }
.footer-admin-link a + a, .footer-admin-link a + button { margin-left: 12px; }
.footer-blog-link { color: #aaa; text-decoration: none; font-size: 13px; margin-right: 12px; transition: color 0.3s ease; }
.footer-blog-link:hover { color: #fff; }
.footer-admin-section .footer-blog-link { display: inline-block; margin-bottom: 8px; }

/* 애니메이션 효과 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 기도 안내 섹션 스타일 */
.prayer-guide-section {
    position: relative;
    overflow: visible !important;
}

.prayer-guide-section .section_bg,
.prayer-guide-section .section_bg_color {
    overflow: hidden;
}

/* 기도 안내 레이아웃 */
.prayer-guide-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 0 20px;
}

.prayer-text {
    flex: 0 0 500px;
    min-width: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: fit-content;
}

.prayer-images-main {
    flex: 1;
    min-width: 0;
}

.prayer-title-wrap {
    margin-bottom: 20px;
}

.prayer-content-wrap {
    margin-bottom: 30px;
}

.prayer-button-wrap {
    margin-bottom: 20px;
}

/* 기도 안내 이미지 영역 (오른쪽) */
.prayer-images-container {
    flex: 1 1 0;
    min-width: 260px;
    max-width: 500px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;          /* 이미지 사이 간격 */
    align-items: flex-start !important;  /* 지그재그 배치를 위해 flex-start로 설정 */
}

/* 공통 이미지 박스 */
.prayer-image-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    width: 80% !important;         /* 전체 폭의 80% 정도만 사용 (지그재그 효과를 위해) */
    max-width: 400px;
    display: block !important;
    float: none !important;
    clear: both !important;
}

/* 왼쪽 정렬 이미지 */
.prayer-image-left {
    align-self: flex-start !important;
    margin-right: auto !important;
    margin-left: 0 !important;
}

/* 오른쪽 정렬 이미지 */
.prayer-image-right {
    align-self: flex-end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* 스크롤 애니메이션으로 나타날 때 */
.prayer-image-item.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.prayer-image-item img {
    display: block !important;
    width: 100% !important;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

/* 왼쪽 정렬 이미지의 img */
.prayer-image-left img {
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* 오른쪽 정렬 이미지의 img */
.prayer-image-right img {
    margin-left: auto !important;
    margin-right: 0 !important;
}

.prayer-image-item:hover img {
    transform: scale(1.02);
}

/* 기도 안내 이미지 행 */
.prayer-image-row {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.prayer-image-row.animate-on-scroll.animated,
.prayer-image-row.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

.prayer-image-row .prayer-image-item {
    opacity: 1;
    transform: none;
}

.prayer-image-row .prayer-image-item img {
    transition: transform 0.3s ease;
}

.prayer-image-row .prayer-image-item:hover img {
    transform: scale(1.05);
}

.prayer-image-item.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .prayer-guide-inner {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .prayer-text {
        flex: 1 1 0 !important;
        position: relative;
        top: 0;
        padding-right: 0 !important;
        text-align: center !important;
    }
    
    .prayer-text * {
        text-align: center !important;
    }
    
    .prayer-title-wrap h2,
    .prayer-title-wrap h2[style],
    .prayer-title {
        font-size: 28px !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .prayer-content-wrap {
        text-align: center !important;
        margin-top: 30px !important;
    }
    
    .prayer-content-wrap p,
    .prayer-content-wrap p[style],
    .prayer-text-p {
        font-size: 14px !important;
        text-align: center !important;
        line-height: 1.8 !important;
        margin: 0 auto 20px !important;
        max-width: 100% !important;
    }
    
    .prayer-images-main {
        width: 100%;
    }
    
    .prayer-image-row {
        flex-direction: column !important;
    }
    
    .prayer-image-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .prayer-images-container {
        position: relative;
        top: 0;
        max-width: 100%;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* 스크롤 애니메이션 기본 클래스 */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* 페이드인 효과 - 즉시 실행 */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

/* slide-in-left와 slide-in-right가 즉시 실행되도록 */
.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
    animation-fill-mode: both;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
}

/* animate-on-scroll와 함께 사용되는 애니메이션 클래스들은 즉시 실행 */
.animate-on-scroll.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-on-scroll.scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.6s ease-out forwards;
}

/* 애니메이션 클래스만 있을 때는 즉시 실행 */
.fade-in-up:not(.animate-on-scroll) {
    animation: fadeInUp 0.8s ease-out both;
}

.slide-in-left:not(.animate-on-scroll) {
    animation: slideInLeft 0.8s ease-out both;
}

.slide-in-right:not(.animate-on-scroll) {
    animation: slideInRight 0.8s ease-out both;
}

.scale-in:not(.animate-on-scroll) {
    animation: scaleIn 0.6s ease-out both;
}

/* 호버 애니메이션 강화 */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.link-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* 버튼 애니메이션 */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

/* 헤더 스크롤 애니메이션 (유리 효과는 상단 header.scrolled에서 적용) */

/* 로고 애니메이션 */
.logo a {
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

/* 메뉴 아이템 애니메이션은 위에서 이미 정의됨 */

/* 히어로 이미지 애니메이션 */
.hero-image-section {
    animation: fadeIn 1s ease-out;
}

.hero-image-section img {
    transition: transform 0.5s ease;
}

.hero-image-section:hover img {
    transform: scale(1.05);
}

/* 섹션 스크롤 애니메이션 */
.intro-section,
.service-section,
.quick-links {
    overflow: hidden;
}

/* 페이지 로드 시 즉시 실행되는 애니메이션 */
.intro-section .container {
    animation: fadeInUp 1s ease-out both;
}

.intro-section .container h2 {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.intro-section .container p {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.intro-section .container .btn {
    animation: scaleIn 0.6s ease-out 0.6s both;
}

/* 통계 섹션 스타일 (PC 전용 - 모바일은 768px 블록에서 별도 정의) */
@media (min-width: 769px) {
.statistics-section {
    background: #f6f3ee;
    padding: 64px 48px 56px;
    margin: 0;
}

.statistics-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}

.statistics-intro-sub {
    font-size: 15px;
    font-weight: 600;
    color: #b08a63;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.statistics-intro-title {
    font-size: 32px;
    font-weight: 700;
    color: #2f2a24;
    line-height: 1.35;
    margin: 0 0 24px 0;
}

.statistics-intro-desc {
    font-size: 16px;
    line-height: 1.85;
    color: #5c554d;
    margin: 0 0 14px 0;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.statistics-intro-desc:last-of-type {
    margin-bottom: 0;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 72px 56px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(47, 42, 36, 0.1);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(47, 42, 36, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.08), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(47, 42, 36, 0.1);
    border-color: rgba(176, 138, 99, 0.25);
}

.stat-label {
    font-size: 16px;
    color: #5c554d;
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: #2f2a24;
    line-height: 1.2;
}

.stat-value .count {
    display: inline-block;
    color: #8f6c49;
}

.stat-value .unit {
    font-size: 42px;
    margin-left: 2px;
    color: #2f2a24;
    font-weight: 600;
}

/* 통계 애니메이션 */
.stat-item.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.stat-item.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: scaleIn 0.8s ease-out forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}
} /* end PC 통계 (min-width: 769px) */

/* 이미지+텍스트 블록 4개 섹션 */
.split-feature-section {
    background: #000;
    padding: 48px 24px 56px;
    margin: 0;
}

.split-feature-block {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 380px;
}

.split-feature-block.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.split-feature-block.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.split-feature-block + .split-feature-block {
    margin-top: 48px;
}

.split-feature-inner {
    display: flex;
    width: 100%;
    min-height: 380px;
    gap: 40px;
    overflow: visible;
}

/* 지그재그: 1·3번 이미지 왼쪽, 2·4번 이미지 오른쪽 */
.split-feature-block--img-left .split-feature-inner {
    flex-direction: row;
}

.split-feature-block--img-right .split-feature-inner {
    flex-direction: row;
}

.split-feature-image {
    flex: 0 0 40%;
    min-height: 380px;
    overflow: hidden;
}

.split-feature-block--img-left .split-feature-image {
    border-radius: 16px 0 0 16px;
}

.split-feature-block--img-right .split-feature-image {
    border-radius: 0 16px 16px 0;
}

.split-feature-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
}

.split-feature-text {
    flex: 1;
    min-width: 0;
    min-height: 0;
    background: #0d0d0d;
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.split-feature-sub {
    font-size: 15px;
    font-weight: 600;
    color: #D4A574;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.split-feature-title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin: 0 0 20px 0;
}

.split-feature-desc {
    font-size: 15px;
    line-height: 1.85;
    color: #b0b0b0;
    margin: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* split-feature 반응형 - 모바일: 이미지 → 설명 순서 통일 */
@media (max-width: 900px) {
    .split-feature-section {
        padding: 40px 20px 48px;
    }
    .split-feature-block + .split-feature-block {
        margin-top: 40px;
    }
    .split-feature-block,
    .split-feature-inner {
        min-height: auto;
    }
    .split-feature-inner {
        flex-direction: column !important;
        gap: 24px;
    }
    .split-feature-block--img-right .split-feature-inner {
        flex-direction: column !important;
    }
    /* 모바일에서 항상 이미지 먼저, 그 다음 설명 */
    .split-feature-inner .split-feature-image {
        order: 1;
    }
    .split-feature-inner .split-feature-text {
        order: 2;
    }
    .split-feature-image {
        flex: 0 0 auto;
        min-height: 280px;
        border-radius: 12px !important;
    }
    .split-feature-image img {
        min-height: 280px;
    }
    .split-feature-text {
        padding: 36px 24px;
    }
    .split-feature-title {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .split-feature-inner .split-feature-image {
        order: 1;
    }
    .split-feature-inner .split-feature-text {
        order: 2;
    }
    .split-feature-image {
        min-height: 220px;
    }
    .split-feature-image img {
        min-height: 220px;
    }
    .split-feature-text {
        padding: 28px 20px;
    }
    .split-feature-title {
        font-size: 22px;
    }
    .split-feature-desc {
        font-size: 14px;
    }
}

/* 카드 그리드 애니메이션 */
.service-grid .service-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.service-grid .service-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.link-grid .link-card:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.link-grid .link-card:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.link-grid .link-card:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.link-grid .link-card:nth-child(4) {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* 통계 섹션 반응형 */
@media (max-width: 768px) {
    /* 모바일 텍스트 정돈 - 모든 텍스트 요소에 적용 */
    * {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
    }
    
    body, p, span, div, h1, h2, h3, h4, h5, h6, li, td, th, a, button, label, input, textarea {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        hyphens: none !important;
    }
    
    /* 특정 요소는 nowrap 유지 */
    .main-nav ul li a,
    .logo-ko,
    .logo-en,
    .mobile-btn {
        white-space: nowrap !important;
    }
    
    header {
        border-left: none;
    }
    .header-container {
        flex-direction: column;
        align-items: center;
    }
    .logo {
        order: 1;
        width: 100%;
        justify-content: center;
    }
    .main-nav {
        order: 2;
    }
    .header-logo-img {
        height: 100px;
        margin-top: 0;
    }
    .statistics-intro {
        margin-bottom: 40px;
        padding: 0 16px;
    }
    .statistics-intro-title {
        font-size: 26px;
    }
    .statistics-intro-desc {
        font-size: 15px;
    }
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 28px 20px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-value .unit {
        font-size: 28px;
    }
    .stat-label {
        margin-bottom: 12px;
    }
}

/* 반응형 디자인 - 갤럭시 S8+ 기준 (360px) */
@media (max-width: 414px) {
    /* 모바일 텍스트 정돈 - 모든 텍스트 요소에 적용 */
    * {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
    }
    
    body, p, span, div, h1, h2, h3, h4, h5, h6, li, td, th, a, button, label, input, textarea {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        hyphens: none !important;
    }
    
    /* 특정 요소는 nowrap 유지 */
    .main-nav ul li a,
    .logo-ko,
    .logo-en,
    .mobile-btn {
        white-space: nowrap !important;
    }
    
    header {
        height: auto;
        min-height: auto;
        border-left: none;
    }

    .header-container {
        flex-direction: column;
        gap: 10px;
        padding: 8px 16px 12px;
        height: auto;
        min-height: auto;
        align-items: center;
    }

    .logo {
        order: 1;
        width: 100%;
        justify-content: center;
        height: auto;
    }

    .logo a {
        width: 100%;
        align-items: center;
        height: auto;
    }

    .main-nav {
        order: 2;
    }

    .header-logo-img {
        height: 100px;
        margin-top: 0;
    }

    .logo-en {
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .logo-ko {
        font-size: 16px;
        word-break: keep-all;
        white-space: nowrap;
        overflow: visible;
    }

    .logo-en::after {
        width: 10px;
        right: -12px;
        font-size: 11px;
    }

    .main-nav ul {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
        justify-content: center;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .main-nav ul::-webkit-scrollbar {
        display: none;
    }

    .main-nav ul li {
        flex-shrink: 0;
    }

    .main-nav ul li a {
        font-size: 12px;
        font-weight: 400 !important;
        padding: 6px 6px;
        min-height: 36px;
        display: flex;
        align-items: center;
        white-space: nowrap;
        color: #fff;
    }

    .submenu {
        position: static;
        display: none !important;
        box-shadow: none;
        padding-left: 15px;
    }
    
    .has-submenu.active .submenu {
        display: block !important;
    }

    .main-carousel {
        height: 280px;
    }

    .intro-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .intro-section p {
        font-size: 15px;
        padding: 0 10px;
    }

    .service-grid,
    .link-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header {
        padding: 40px 0;
    }

    /* 모바일 히어로는 아래 768px 전용 블록에서 통일 적용 */

    .container {
        padding: 0 15px;
    }

    .intro-section,
    .service-section,
    .customer-service {
        padding: 40px 0;
    }
    
    .map-section {
        padding: 60px 0 40px 0;
    }

    .content-section {
        padding: 30px 0;
    }

    .content-section h2 {
        font-size: 24px;
    }
    
    .content-section h2.about-main-title {
        font-size: 40px !important;
    }
    
    .content-section h2.inquiry-main-title {
        font-size: 40px !important;
    }
    
    .content-section h2.info-main-title {
        font-size: 40px !important;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .content-section p {
        font-size: 15px;
        word-break: keep-all;
        line-height: 1.8;
        padding: 0 5px;
    }
    
    /* 고객센터 모바일 스타일 */
    .inquiry-wrapper {
        padding: 30px 15px;
    }
    
    .inquiry-main-title {
        font-size: 36px !important;
        margin-bottom: 16px;
    }
    
    .inquiry-subtitle {
        font-size: 16px;
    }
    
    .inquiry-subtitle .mobile-br-only {
        display: block;
    }
    
    .inquiry-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .inquiry-card {
        padding: 28px 24px;
    }
    
    .inquiry-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .inquiry-card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .inquiry-info-value {
        font-size: 15px;
    }
    
    .inquiry-phone {
        font-size: 18px;
    }
    
    .inquiry-guide-list li {
        font-size: 15px;
        padding: 10px 0;
        padding-left: 22px;
    }
    
    .inquiry-btn-primary {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    /* 업체안내 모바일 스타일 */
    .info-wrapper {
        padding: 30px 15px;
    }
    
    .info-main-title {
        font-size: 36px !important;
        margin-bottom: 16px;
    }
    
    .info-subtitle {
        font-size: 16px;
    }
    
    .info-subtitle .mobile-br-only {
        display: block;
    }
    
    .info-intro-card {
        padding: 28px 24px;
        margin-bottom: 40px;
    }
    
    .info-intro-text {
        font-size: 15px;
    }
    
    .info-section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .info-service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-service-card {
        padding: 28px 24px;
    }
    
    .info-service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }
    
    .info-service-title {
        font-size: 18px;
    }
    
    .info-service-desc {
        font-size: 14px;
    }
    
    .info-solution-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    
    .info-solution-badge {
        align-self: flex-start;
    }
    
    .info-solution-item p {
        font-size: 15px;
    }
    
    /* 업체소개 모바일 스타일 */
    .about-wrapper {
        padding: 30px 15px;
    }
    
    .about-main-title {
        font-size: 36px !important;
        margin-bottom: 16px;
    }
    
    .about-subtitle {
        font-size: 18px;
    }
    
    .about-intro-card {
        padding: 36px 24px;
        margin-bottom: 40px;
    }
    
    .about-intro-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }
    
    .about-intro-text {
        font-size: 15px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-feature-card {
        padding: 32px 28px;
    }
    
    .about-feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .about-feature-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .about-feature-desc {
        font-size: 14px;
    }
    
    .subpage-content {
        padding: 0 15px;
    }
    
    .subpage-content p {
        word-break: keep-all;
        line-height: 1.8;
        margin-bottom: 18px;
    }
    
    .subpage-title {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .subpage-intro-img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 14px;
        min-height: 44px;
    }

    .map-iframe {
        height: 350px;
    }

    .map-title {
        font-size: 24px;
    }

    .map-description {
        font-size: 16px;
        padding: 0 15px;
    }

    .map-phone,
    .map-mobile {
        font-size: 18px;
    }

    .gallery-image {
        height: 250px;
    }

    .gallery-title {
        font-size: 20px;
    }

    .gallery-subtitle {
        font-size: 12px;
    }

    .gallery-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }
    
    /* 서비스 카드 섹션 모바일 스타일 */
    .service-cards-container {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    .service-card-item {
        max-width: 100% !important;
        flex: 1 1 100% !important;
        padding: 28px 24px !important;
        margin: 0 !important;
        box-shadow: 0 12px 30px rgba(15,23,42,0.12) !important;
    }
    
    .service-card-item h3 {
        font-size: 17px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        word-break: keep-all;
    }
    
    .service-card-item p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        word-break: keep-all;
        white-space: normal !important;
    }
    
    .service-card-item p .mobile-br-only {
        display: block !important;
        content: "" !important;
    }
    
    .service-card-item p br:not(.mobile-br-only) {
        display: none !important;
    }
    
    .service-card-item > div[style*="width:32px"] {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 20px !important;
        border-width: 2.5px !important;
    }
    
    .service-card-item > div[style*="width:32px"] span {
        font-size: 18px !important;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-info h3 {
        font-size: 18px;
    }

    .footer-info p {
        font-size: 13px;
    }

    .mobile-contact-buttons {
        padding: 0;
    }

    .mobile-contact-buttons .mobile-btn {
        width: 52px;
        height: 52px;
    }

    .mobile-contact-buttons .mobile-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) and (min-width: 415px) {
    /* 모바일 텍스트 정돈 - 모든 텍스트 요소에 적용 */
    * {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        hyphens: none !important;
    }
    
    body, p, span, div, h1, h2, h3, h4, h5, h6, li, td, th, a, button, label, input, textarea {
        word-break: keep-all !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
        hyphens: none !important;
    }
    
    /* 특정 요소는 nowrap 유지 */
    .main-nav ul li a,
    .logo-ko,
    .logo-en,
    .mobile-btn {
        white-space: nowrap !important;
    }
    
    header {
        height: auto;
        min-height: auto;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 8px 15px 12px;
        height: auto;
        min-height: auto;
    }

    .logo {
        width: 100%;
        justify-content: center;
        height: auto;
    }

    .logo a {
        width: 100%;
        align-items: center;
        height: auto;
    }

    .logo-en {
        font-size: 12px;
    }

    .logo-ko {
        font-size: 18px;
        word-break: keep-all;
        white-space: nowrap;
        overflow: visible;
    }

    .logo-en::after {
        width: 12px;
        right: -15px;
    }

    .main-nav ul {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: center;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .main-nav ul::-webkit-scrollbar {
        display: none;
    }

    .main-nav ul li {
        flex-shrink: 0;
    }

    .main-nav ul li a {
        font-size: 13px;
        font-weight: 400 !important;
        padding: 5px 8px;
        white-space: nowrap;
    }

    .submenu {
        position: static;
        display: none !important;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .has-submenu.active .submenu {
        display: block !important;
    }

    .main-carousel {
        height: 300px;
    }

    .intro-section h2 {
        font-size: 28px;
    }

    .service-grid,
    .link-grid {
        grid-template-columns: 1fr;
    }
    
    /* 서비스 카드 섹션 모바일 스타일 (768px) */
    .service-cards-container {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
    .service-card-item {
        max-width: 100% !important;
        flex: 1 1 100% !important;
        padding: 28px 24px !important;
        margin: 0 !important;
        box-shadow: 0 12px 30px rgba(15,23,42,0.12) !important;
    }
    
    .service-card-item h3 {
        font-size: 17px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        word-break: keep-all;
    }
    
    .service-card-item p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        word-break: keep-all;
        white-space: normal !important;
    }
    
    .service-card-item p .mobile-br-only {
        display: block !important;
        content: "" !important;
    }
    
    .service-card-item p br:not(.mobile-br-only) {
        display: none !important;
    }
    
    .service-card-item > div[style*="width:32px"] {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 20px !important;
        border-width: 2.5px !important;
    }
    
    .service-card-item > div[style*="width:32px"] span {
        font-size: 18px !important;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .hero-image-section {
        margin: -120px 0 0 0;
        height: auto;
        min-height: 0;
    }

    .hero-image-section .hero-main-image {
        height: 100%;
        object-fit: contain !important;
    }
    
    .hero-text-overlay {
        top: 65%;
        transform: translate(-50%, -50%);
    }
    
    .hero-subtitle-top {
        font-size: 16px;
        letter-spacing: 1.5px;
        margin-bottom: 18px;
        padding: 0 20px;
        font-weight: 600;
    }
    
    .hero-title-main {
        font-size: 28px;
        letter-spacing: 0.5px;
        line-height: 1.5;
        padding: 0 20px;
        word-break: keep-all;
        word-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .content-section p {
        word-break: keep-all;
        line-height: 1.8;
        padding: 0 10px;
    }
    
    .subpage-content {
        padding: 0 15px;
    }
    
    .subpage-content p {
        word-break: keep-all;
        line-height: 1.8;
        margin-bottom: 18px;
    }
    
    .subpage-title {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .subpage-intro-img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    /* 고객센터 모바일 스타일 (768px) */
    .inquiry-wrapper {
        padding: 30px 15px;
    }
    
    .inquiry-main-title {
        font-size: 40px !important;
        margin-bottom: 18px;
    }
    
    .inquiry-subtitle {
        font-size: 17px;
    }
    
    .inquiry-subtitle .mobile-br-only {
        display: block;
    }
    
    .inquiry-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 35px;
    }
    
    .inquiry-card {
        padding: 32px 28px;
    }
    
    .inquiry-card-icon {
    width: 60px;
    height: 60px;
        margin-bottom: 22px;
    }
    
    .inquiry-card-title {
        font-size: 22px;
        margin-bottom: 22px;
    }
    
    .inquiry-info-value {
        font-size: 16px;
    }
    
    .inquiry-phone {
        font-size: 19px;
    }
    
    .inquiry-guide-list li {
        font-size: 15px;
        padding: 11px 0;
        padding-left: 23px;
    }
    
    .inquiry-btn-primary {
        padding: 17px 36px;
        font-size: 17px;
    }
    
    /* 업체안내 모바일 스타일 (768px) */
    .info-wrapper {
        padding: 35px 20px;
    }
    
    .info-main-title {
        font-size: 40px !important;
        margin-bottom: 18px;
    }
    
    .info-subtitle {
        font-size: 17px;
    }
    
    .info-subtitle .mobile-br-only {
        display: block;
    }
    
    .info-intro-card {
        padding: 36px 28px;
        margin-bottom: 45px;
    }
    
    .info-intro-text {
        font-size: 16px;
    }
    
    .info-section-title {
        font-size: 26px;
        margin-bottom: 28px;
    }
    
    .info-service-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    
    .info-service-card {
        padding: 30px 26px;
}

    .info-service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 19px;
    }
    
    .info-service-title {
        font-size: 19px;
    }
    
    .info-service-desc {
        font-size: 15px;
    }
    
    .info-solution-item {
        flex-direction: column;
        gap: 14px;
        padding: 22px;
    }
    
    .info-solution-item p {
        font-size: 15px;
    }
    
    /* 업체소개 모바일 스타일 (768px) */
    .about-wrapper {
        padding: 35px 20px;
    }
    
    .about-main-title {
        font-size: 40px !important;
        margin-bottom: 18px;
}

    .about-subtitle {
        font-size: 19px;
    }
    
    .about-intro-card {
        padding: 42px 30px;
        margin-bottom: 45px;
    }
    
    .about-intro-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 26px;
}

    .about-intro-text {
        font-size: 16px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    
    .about-feature-card {
        padding: 36px 30px;
    }
    
    .about-feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 22px;
    }
    
    .about-feature-title {
        font-size: 21px;
        margin-bottom: 15px;
    }
    
    .about-feature-desc {
        font-size: 15px;
    }
}


/* 프로그램 소개 섹션 */
.program-intro-section {
    padding: 100px 0 0 0;
    background: #000;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 2s forwards;
}

.program-title {
    font-size: 24px;
    font-weight: 700;
    color: #999;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.program-description {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

/* 서비스 소개 섹션 */
.service-intro-section {
    padding: 120px 0;
    background: #000;
    overflow: hidden;
}

.service-intro-subtitle {
    text-align: center;
    font-size: 24px;
    color: #999;
    margin-bottom: 15px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.service-intro-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* 서비스 카드 래퍼 */
.service-cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    gap: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    flex: 0 1 auto;
    width: 280px;
    height: 150px;
    border-radius: 8px;
    background: rgba(146, 110, 6, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    padding: 0 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: serviceCardSlideIn 0.8s ease-out forwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.6s;
}

.service-card:nth-child(2) {
    animation-delay: 0.8s;
}

.service-card:nth-child(3) {
    animation-delay: 1s;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 25px rgba(146, 110, 6, 0.4);
    background: rgba(146, 110, 6, 0.5);
}

@keyframes serviceCardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 서비스 피처 박스 */
.service-feature-box {
    position: relative;
    margin-top: 60px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.service-feature-content {
    flex: 1;
    background: linear-gradient(135deg, #D4A574 0%, #B8956A 100%);
    padding: 50px;
    border-radius: 15px;
    color: #fff;
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.service-feature-image-main3 {
    position: relative;
}

.service-feature-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.85) 0%, rgba(184, 149, 106, 0.85) 100%);
    padding: 50px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.service-feature-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-feature-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    font-weight: 500;
}

.service-feature-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-feature-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.service-feature-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-feature-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

/* 서비스 피처 이미지 */
.service-feature-images {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 20px;
}

.service-feature-image-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 280px;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: imageFadeIn 0.8s ease-out forwards;
}

.service-feature-image-item:nth-child(1) {
    animation-delay: 1.4s;
}

.service-feature-image-item:nth-child(2) {
    animation-delay: 1.6s;
}

.service-feature-image-item:nth-child(3) {
    animation-delay: 1.8s;
}

.service-feature-image-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-feature-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-feature-image-item:hover img {
    transform: scale(1.1);
}

@keyframes imageFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .service-feature-box {
        flex-direction: column;
    }
    
    .service-feature-content {
        max-width: 100%;
    }
    
    .service-feature-images {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 414px) {
    .prayer-text {
        text-align: center !important;
        padding-right: 0 !important;
    }
    
    .prayer-text * {
        text-align: center !important;
    }
    
    .prayer-title-wrap h2,
    .prayer-title-wrap h2[style],
    .prayer-title {
        font-size: 24px !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .prayer-content-wrap {
        text-align: center !important;
        margin-top: 30px !important;
    }
    
    .prayer-content-wrap p,
    .prayer-content-wrap p[style],
    .prayer-text-p {
        font-size: 13px !important;
        text-align: center !important;
        line-height: 1.8 !important;
        margin: 0 auto 20px !important;
        max-width: 100% !important;
    }
    
    .program-title {
        font-size: 16px;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }
    
    .program-description {
        font-size: 20px !important;
        margin-bottom: 40px;
        padding: 0 20px;
        line-height: 1.8;
        word-break: keep-all;
        text-align: center;
    }
    
    .program-description .mobile-br-only {
        display: block !important;
    }
    
    .program-description strong {
        font-weight: 600;
        display: block;
        line-height: 1.6;
    }
    
    .service-intro-section {
        padding: 60px 0;
    }
    
    .service-intro-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .service-intro-title {
        font-size: 22px;
        margin-top: 15px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .service-card {
        width: 100px;
        height: 100px;
        font-size: 15px;
        padding: 10px 8px;
        border-radius: 6px;
        line-height: 1.3;
    }
    
    .service-card-icon {
        font-size: 14px;
    }
    
    .service-card-connector {
        display: none;
    }
    
    .service-feature-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .service-feature-content {
        padding: 25px 20px;
    }
    
    .service-feature-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .service-feature-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    .service-cards-wrapper {
        flex-direction: row;
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: center;
        padding: 0 10px;
    }
    
    .service-feature-images {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .service-feature-image-item {
        min-height: 200px;
    }

    .program-intro-section {
        padding: 60px 0 0 0;
    }
}

@media (max-width: 768px) and (min-width: 415px) {
    .program-title {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .program-description {
        font-size: 24px !important;
        padding: 0 20px;
        line-height: 1.7;
        word-break: keep-all;
        text-align: center;
    }
    
    .program-description .mobile-br-only {
        display: block !important;
    }
    
    .program-description strong {
        font-weight: 600;
        display: block;
        line-height: 1.5;
    }
    
    .service-intro-subtitle {
        font-size: 20px;
    }
    
    .service-intro-title {
        font-size: 25px;
        margin-top: 20px;
    }
    
    .service-card {
        width: 110px;
        height: 110px;
        font-size: 16px;
        line-height: 1.3;
    }
    
    .service-card-icon {
        font-size: 16px;
    }
    
    .service-card-connector {
        width: 40px;
        margin: 0 5px;
    }
    
    .service-feature-title {
        font-size: 32px;
    }
    
    .service-feature-content {
        padding: 30px;
    }
    
    .service-cards-wrapper {
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .service-feature-images {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
}

/* 모바일 전용 문의 버튼 - 오른쪽 플로팅 동그란 버튼 */
.mobile-contact-buttons {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 16px;
    left: auto;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    z-index: 1000;
    background: transparent;
    border: none;
    box-shadow: none;
    align-items: center;
    justify-content: flex-end;
}

.mobile-contact-buttons .mobile-btn {
    flex: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    text-decoration: none;
    color: #fff;
    font-size: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.mobile-contact-buttons .mobile-btn span {
    display: none;
}

.mobile-contact-buttons .mobile-btn svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}
/* 아이콘 흰색으로 꽉 채움 (선만 아닌 채움) */
.mobile-contact-buttons .mobile-btn svg path,
.mobile-contact-buttons .mobile-btn svg circle,
.mobile-contact-buttons .mobile-btn svg rect {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}
.mobile-contact-buttons .mobile-btn svg polygon {
    fill: #ffffff !important;
    stroke: none !important;
}

.mobile-btn-call,
.mobile-btn-sms,
.mobile-btn-share {
    background: #9A9286 !important;
    color: #ffffff !important;
}

.mobile-btn-call:active,
.mobile-btn-sms:active,
.mobile-btn-share:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (min-width: 769px) {
    .mobile-contact-buttons {
        display: none !important;
    }
    
    .mobile-br-only {
        display: none !important;
    }
    
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}

@media (max-width: 414px) {
    .mobile-contact-buttons {
        display: flex;
        padding: 0;
    }
    
    body {
        padding-bottom: 24px;
    }
    
    .about-title-break {
        display: block;
    }
    
    .about-title-second {
        display: block;
    }

    .statistics-section {
        padding: 20px 20px 0;
    }

    .stat-item {
        padding: 20px 16px;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-value .unit {
        font-size: 24px;
    }

.stat-label {
    font-size: 15px;
    margin-bottom: 10px;
}

    .about-hero-image .hero-img {
        max-height: 300px;
    }

    .about-content h2,
    .service-content h2,
    .location-content h2 {
        font-size: 24px;
    }

    .about-content h3,
    .service-content h3,
    .location-content h3 {
        font-size: 20px;
    }

    .contact-box {
        padding: 20px;
    }

    .contact-box .phone {
        font-size: 18px;
    }

    .notice-table th,
    .notice-table td {
        padding: 12px 8px;
        font-size: 13px;
    }

    .inquiry-form {
        padding: 0 15px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 768px) and (min-width: 415px) {
    .mobile-contact-buttons {
        display: flex;
    }
    
    body {
        padding-bottom: 24px;
    }
    
    .about-title-break {
        display: block;
    }
    
    .about-title-second {
        display: block;
    }
}

/* 데스크톱에서는 줄바꿈 숨김 */
.about-title-break {
    display: none;
}

.about-title-second {
    display: inline;
}

/* 주요 고객사 섹션 모바일 반응형 */
@media (max-width: 768px) {
    .client-list-container {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .client-divider {
        width: 100% !important;
        height: 2px !important;
    }
    
    .client-section h2 {
        font-size: 24px !important;
    }
    
    .client-section li {
        font-size: 14px !important;
    }
}

/* 히어로 섹션 리디자인 (PC 전용 - 모바일은 768px 블록에서 별도 정의) */
@media (min-width: 769px) {
.hero-image-section {
    margin: 0 !important;
    padding: 24px 32px 104px !important;
    height: auto !important;
    min-height: 0 !important;
    background: #f6f3ee !important;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 18px 36px rgba(22, 18, 12, 0.16),
        0 4px 10px rgba(22, 18, 12, 0.08);
}

.hero-image-section::after {
    display: none !important;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    filter: saturate(0.92) contrast(1.05);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 31, 48, 0.46) 0%, rgba(29, 42, 61, 0.34) 35%, rgba(53, 42, 30, 0.24) 70%, rgba(56, 44, 31, 0.2) 100%),
        linear-gradient(180deg, rgba(8, 11, 18, 0.12) 0%, rgba(8, 11, 18, 0.26) 100%);
    z-index: 1;
}

.hero-text-overlay {
    z-index: 2;
    max-width: 760px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px;
    word-break: keep-all;
    overflow-wrap: normal;
}

.hero-subtitle-top {
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 7px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    word-break: keep-all;
}

.hero-title-main {
    font-size: 66px;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 22px;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    word-break: keep-all;
    overflow-wrap: normal;
}

.hero-title-first-line {
    font-size: 50px;
    font-weight: 200;
}

.hero-title-emphasis {
    font-weight: 800;
    font-size: 70px;
    letter-spacing: 0.6px;
}

@media (max-width: 900px) {
    .hero-title-emphasis {
        font-size: 45px;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 414px) {
    .hero-title-emphasis {
        font-size: 33px;
        letter-spacing: 0.2px;
    }
}

.hero-description {
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 30px 0;
    font-weight: 100;
    letter-spacing: -0.2px;
    text-shadow: none;
    word-break: keep-all;
    overflow-wrap: normal;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    height: 62px;
    border-radius: 999px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.hero-cta-primary {
    background: #fff;
    color: #222;
    text-decoration: none !important;
    border-bottom: none !important;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    backdrop-filter: blur(3px);
    text-decoration: none !important;
    border-bottom: none !important;
}

.hero-cta:hover {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .hero-image-section {
        padding: 16px 16px 64px !important;
        margin: 0 !important;
    }

    .hero-visual {
        min-height: 500px;
        border-radius: 20px;
    }

    .hero-main-image {
        min-height: 500px;
    }

    .hero-subtitle-top {
        font-size: 10px;
        letter-spacing: 5px;
        margin-bottom: 14px;
    }

    .hero-title-main {
        font-size: 42px;
        line-height: 1.28;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
        font-weight: 100;
    }

    .hero-cta {
        min-width: 140px;
        height: 48px;
        font-size: 14px;
    }
}

@media (max-width: 414px) {
    .hero-image-section {
        padding: 12px 12px 48px !important;
        margin: 0 !important;
    }

    .hero-visual {
        min-height: 580px;
        border-radius: 16px;
    }

    .hero-main-image {
        min-height: 580px;
    }

    .hero-text-overlay {
        width: 100%;
        padding: 0 14px;
    }

    .hero-subtitle-top {
        font-size: 9px;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }

    .hero-title-main {
        font-size: 31px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 16px;
        font-weight: 100;
    }

    .hero-cta-group {
        gap: 10px;
    }

    .hero-cta {
        min-width: 122px;
        height: 44px;
        font-size: 12px;
    }
}
} /* end PC 히어로 리디자인 (min-width: 769px) */

/* 헤더 색상 톤 통일 - 상단바 밑 끝에 흰색 선 */
header {
    background: transparent !important;
    border-top: none !important;
    border-bottom: 1px solid #ffffff !important;
}
header.scrolled {
    background: rgba(246, 243, 238, 0.01) !important;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-top: none !important;
    border-bottom: 1px solid #ffffff !important;
}

.logo a {
    color: #000000 !important;
}

.main-nav ul li a,
header.scrolled .main-nav ul li a {
    color: #000000 !important;
    font-weight: 400 !important;
}

.main-nav ul li a::after,
header.scrolled .main-nav ul li a::after,
header .main-nav ul li::before,
header .main-nav ul li::after,
header .main-nav ul li a::before,
header .main-nav ul li a::after {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
}

.main-nav ul li a:hover,
.main-nav ul li a.active,
header.scrolled .main-nav ul li a:hover,
header.scrolled .main-nav ul li a.active {
    color: #666666 !important;
    font-weight: 400 !important;
}

/* 업체소개·업체안내 페이지: 헤더/메뉴를 다른 서브페이지(갤러리·고객센터·오시는길)와 동일하게 */
body.page-sub header {
    background: rgba(246, 243, 238, 0.95) !important;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}
body.page-sub .logo a {
    color: #000000 !important;
}
body.page-sub header .main-nav ul li a {
    color: #000000 !important;
    font-weight: 400 !important;
}
body.page-sub header .main-nav ul li a:hover,
body.page-sub header .main-nav ul li a.active {
    color: #666666 !important;
    font-weight: 400 !important;
}

/* 전체 배경 톤 통일 (히어로 제외) */
:root {
    --unified-bg: #f6f3ee;
    --unified-text: #2f2a24;
}

html,
body,
main,
main section:not(.hero-image-section),
footer {
    background: var(--unified-bg) !important;
    background-image: none !important;
}

main section:not(.hero-image-section)[style],
footer[style] {
    background: var(--unified-bg) !important;
    background-image: none !important;
}

/* 인라인 style로 지정된 검정 배경도 동일 톤으로 통일 */
main section:not(.hero-image-section) [style*="background"] {
    background: var(--unified-bg) !important;
    background-image: none !important;
    border-color: rgba(47, 42, 36, 0.16) !important;
    box-shadow: none !important;
}

main section:not(.hero-image-section):not(.hero),
main section:not(.hero-image-section):not(.hero) * ,
footer,
footer * {
    color: var(--unified-text) !important;
}

/* OUR PHILOSOPHY 섹션만 텍스트·버튼 전부 흰색 (위 통일 규칙보다 우선) */
main section.philosophy-cta-section,
main section.philosophy-cta-section *,
main section.philosophy-cta-section .philosophy-cta-kicker,
main section.philosophy-cta-section .philosophy-cta-title,
main section.philosophy-cta-section .philosophy-cta-sub,
main section.philosophy-cta-section .philosophy-cta-desc,
main section.philosophy-cta-section .philosophy-cta-btn,
main section.philosophy-cta-section .philosophy-cta-line {
    color: #ffffff !important;
}
main section.philosophy-cta-section .philosophy-cta-line {
    background: #ffffff !important;
}

/* 업체소개 히어로: MAKE DESIGN 워터마크 회색·투명도 0.08·뒤쪽 겹침 (통일 텍스트 색 규칙보다 우선) */
main section.about-hero-section .about-hero-left .about-hero-watermark,
main .about-hero-section .about-hero-watermark {
    color: #666666 !important;
    opacity: 0.08 !important;
    z-index: 0 !important;
}
main section.about-hero-section .about-hero-badge,
main section.about-hero-section .about-hero-title,
main section.about-hero-section .about-hero-desc {
    position: relative;
    z-index: 2 !important;
}
main section.about-hero-section .about-hero-desc {
    font-size: 18px !important;
    font-weight: 300 !important;
    color: #5a5652 !important;
    margin-top: 24px !important;
}

main section.about-process-section .about-process-num {
    color: #646464 !important;
    opacity: 0.08 !important;
}
main section.about-process-section .about-process-kicker {
    color: #777777 !important;
}
main section.about-process-section .about-process-title {
    color: #1a1a1a !important;
}

main section.about-philosophy-section .about-philosophy-kicker {
    color: #666666 !important;
}
main section.about-philosophy-section .about-philosophy-title,
main section.about-philosophy-section .about-philosophy-card-title {
    color: #1a1a1a !important;
}
main section.about-philosophy-section .about-philosophy-card-desc {
    color: #2d2d2d !important;
}
main section.about-philosophy-section .about-philosophy-num {
    color: rgba(0, 0, 0, 0.08) !important;
}

main .location-information-section,
main .location-information-section * {
    color: inherit !important;
}
main .location-information-section {
    color: #222222 !important;
}
main .location-information-section .location-address-en {
    color: #666666 !important;
}
main .location-information-section .location-info-note {
    color: #555555 !important;
}

/* 남아있는 다크 카드/패널 톤 통일 */
.split-feature-text,
.stat-item,
.service-card,
.service-card-item,
.inquiry-card,
.info-service-card,
.info-intro-card,
.about-intro-card,
.about-feature-card,
.contact-info,
.address-info,
.location-info-card,
.location-map-card,
.showcase-stat-card,
.info-premium-mini-card,
.info-premium-signature,
.info-premium-program-card,
.info-premium-step,
.info-premium-steps {
    background: #f6f3ee !important;
    background-image: none !important;
    border-color: rgba(47, 42, 36, 0.14) !important;
    box-shadow: none !important;
}

.split-feature-text *,
.stat-item *,
.service-card *,
.service-card-item *,
.inquiry-card *,
.info-service-card *,
.info-intro-card *,
.about-intro-card *,
.about-feature-card *,
.contact-info *,
.address-info *,
.location-info-card *,
.location-map-card *,
.showcase-stat-card *,
.info-premium-mini-card *,
.info-premium-signature *,
.info-premium-program-card *,
.info-premium-step *,
.info-premium-steps * {
    color: var(--unified-text) !important;
}

/* 이미지 위 오버레이 텍스트는 가독성을 위해 밝게 유지 */
.gallery-overlay,
.gallery-overlay *,
.hero-image-section .hero-text-overlay,
.hero-image-section .hero-text-overlay * {
    color: #fff !important;
}

/* 밝은 배경 위 버튼/필 UI 가독성 보정 */
.hero-cta-primary,
.hero-image-section .hero-text-overlay .hero-cta-primary {
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.82) !important;
    color: #2a2a2a !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

.hero-cta-secondary,
.hero-image-section .hero-text-overlay .hero-cta-secondary {
    background: rgba(150, 150, 150, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.42) !important;
    color: #fff !important;
    text-decoration: none !important;
    border-bottom: none !important;
    backdrop-filter: blur(5px);
}

.hero-cta-primary:hover,
.hero-cta-secondary:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
    filter: brightness(1.01);
}

/* 전체 텍스트 검정 톤 통일 */
:root {
    --unified-text: #111111;
}

html, body, body * {
    color: var(--unified-text) !important;
}

/* 링크/버튼/오버레이 텍스트까지 모두 검정 계열 */
a,
button,
.hero-image-section .hero-text-overlay,
.hero-image-section .hero-text-overlay *,
.gallery-overlay,
.gallery-overlay * {
    color: var(--unified-text) !important;
}

/* 히어로 가로 슬라이더 */
.hero-slider-window {
    position: absolute;
    inset: 0;
    overflow: hidden;
    cursor: grab;
}

.hero-slider-window.is-dragging {
    cursor: grabbing;
}

.hero-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translateX(0);
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.hero-slide {
    flex: 0 0 100%;
    flex-shrink: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #2a2520;
}
/* 히어로 이미지: img가 슬라이드 영역을 꽉 채우고 반드시 표시 */
.hero-slide .hero-main-image {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 0;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(18, 18, 18, 0.28);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-nav-prev {
    left: 18px;
}

.hero-nav-next {
    right: 18px;
}

.hero-nav-btn:hover {
    background: rgba(18, 18, 18, 0.44);
    transform: translateY(-50%) scale(1.06);
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.6px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.hero-slider-dot.is-active {
    border-color: rgba(255, 255, 255, 0.95);
    background: #fff;
}

/* 히어로 하단 브랜드 메시지 섹션 */
.brand-message-section {
    background: #f6f3ee !important;
    padding: 64px 48px 72px;
    position: relative;
    overflow: hidden;
}

.brand-message-inner {
    max-width: 1460px;
    margin: 0 auto;
    position: relative;
}

.brand-message-kicker {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.2px;
    margin: 0 0 16px 0;
    color: #1f1f1f !important;
}

.brand-message-top-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 34px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.brand-message-logo-row {
    display: flex;
    align-items: center;
    gap: 0;
}

.brand-mark {
    width: 124px;
    height: 86px;
    border: 4px solid #121212;
    border-radius: 12px;
    position: relative;
    display: inline-block;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    border: 4px solid #131313;
    border-radius: 30px;
    width: 46px;
    height: 46px;
}

.brand-mark::before {
    top: 20px;
    left: 19px;
    border-right: 0;
}

.brand-mark::after {
    top: 20px;
    right: 19px;
    border-left: 0;
}

.brand-message-title {
    margin: 0;
    font-size: clamp(56px, 5.2vw, 92px);
    letter-spacing: -1.2px;
    line-height: 1;
    font-weight: 300;
    color: #0f0f0f !important;
    white-space: nowrap;
}

.brand-message-link {
    text-decoration: none;
    color: #171717 !important;
    font-size: 26px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.1;
    align-self: center;
    justify-self: end;
    text-align: right;
}

.brand-message-watermark {
    position: absolute;
    left: 0;
    right: 0;
    top: 100px;
    margin: 0;
    text-align: center;
    font-size: clamp(80px, 7.5vw, 128px);
    font-style: italic;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #808080 !important;
    opacity: 0.08 !important;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    white-space: nowrap;
}

.brand-message-description {
    margin: 72px 0 0 0;
    max-width: 980px;
    font-size: 19px;
    line-height: 1.46;
    font-weight: 400;
    letter-spacing: -0.1px;
    position: relative;
    z-index: 2;
    color: #232323 !important;
}

@media (max-width: 1200px) {
    .brand-message-kicker {
        font-size: 19px;
        font-weight: 500;
    }

    .brand-message-title {
        font-size: 60px;
        font-weight: 300;
    }

    .brand-message-link {
        font-size: 31px;
        font-weight: 500;
    }

    .brand-message-watermark {
        font-size: 100px;
        font-style: italic;
        top: 90px;
    }

    .brand-message-description {
        font-size: 16px;
        margin-top: 50px;
        font-weight: 400;
    }
}

@media (max-width: 900px) {
    .brand-message-section {
        padding: 46px 18px 50px;
        overflow-x: visible;
    }
    .brand-message-inner {
        overflow: visible;
    }

    .brand-message-kicker {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 14px;
    }

    .brand-message-top-row {
        grid-template-columns: 1fr;
        row-gap: 12px;
        margin-bottom: 8px;
    }

    .brand-mark {
        width: 72px;
        height: 52px;
        border-width: 3px;
    }

    .brand-mark::before,
    .brand-mark::after {
        width: 28px;
        height: 28px;
        border-width: 3px;
        top: 10px;
    }

    .brand-mark::before {
        left: 10px;
    }

    .brand-mark::after {
        right: 10px;
    }

    .brand-message-title {
        font-size: 36px;
        letter-spacing: -1px;
        font-weight: 300;
        white-space: normal;
    }

    .brand-message-link {
        font-size: 22px;
        font-weight: 500;
    }

    .brand-message-watermark {
        font-size: clamp(32px, 8vw, 52px);
        font-style: italic;
        top: 70px;
        white-space: normal;
        max-width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
    }

    .brand-message-description {
        font-size: 14px;
        margin-top: 30px;
        line-height: 1.65;
        font-weight: 400;
    }
}

@media (max-width: 900px) {
    .hero-slide .hero-main-image {
        min-height: 500px;
    }
}

@media (max-width: 414px) {
    .hero-slide .hero-main-image {
        min-height: 420px;
    }

    .hero-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
        top: auto;
        bottom: 86px;
        transform: none;
    }

    .hero-nav-prev {
        left: 12px;
    }

    .hero-nav-next {
        right: 12px;
    }

    .hero-nav-btn:hover {
        transform: scale(1.03);
    }
}

/* 브랜드 메시지 하단: 디자인 포 오퍼레이션 섹션 */
.design-operation-section {
    background: #f6f3ee !important;
    padding: 92px 40px 88px;
}

.design-operation-inner {
    max-width: 1380px;
    margin: 0 auto;
}

.design-operation-title {
    margin: 0;
    text-align: center;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 300;
    color: #101010 !important;
    letter-spacing: 1.2px;
}

.design-operation-subtitle {
    margin: 14px 0 52px 0;
    text-align: center;
    font-size: 25px;
    color: #a1a1a1 !important;
    font-weight: 600;
}

.design-operation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.design-operation-card {
    color: #2a2a2a !important;
}

.design-operation-image-wrap {
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 22px;
    background: #ddd;
}

.design-operation-image {
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;
}

.design-operation-card-title {
    margin: 0 0 10px 0;
    font-size: 45px;
    line-height: 1.25;
    color: #242424 !important;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.design-operation-card-title span {
    font-size: 33px;
    color: #a4a4a4 !important;
    font-weight: 700;
}

.design-operation-card-desc {
    margin: 0;
    font-size: 33px;
    line-height: 1.65;
    color: #7d7d7d !important;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .design-operation-title {
        font-size: 40px;
        font-weight: 300;
        letter-spacing: 0.9px;
    }

    .design-operation-subtitle {
        font-size: 20px;
        margin-bottom: 38px;
    }

    .design-operation-image {
        height: 360px;
    }

    .design-operation-card-title {
        font-size: 32px;
    }

    .design-operation-card-title span {
        font-size: 24px;
    }

    .design-operation-card-desc {
        font-size: 23px;
    }
}

@media (max-width: 900px) {
    .design-operation-section {
        padding: 52px 18px 56px;
    }

    .design-operation-title {
        font-size: 28px;
        font-weight: 300;
        letter-spacing: 0.6px;
    }

    .design-operation-subtitle {
        font-size: 16px;
        margin: 10px 0 24px 0;
    }

    .design-operation-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .design-operation-image {
        height: 246px;
    }

    .design-operation-card-title {
        font-size: 26px;
    }

    .design-operation-card-title span {
        display: block;
        font-size: 18px;
        margin-top: 2px;
    }

    .design-operation-card-desc {
        font-size: 17px;
        line-height: 1.7;
    }
}

/* 브랜드 워터마크 - 메인 텍스트 밑에 배치, 회색 + 투명도 0.08 */
main .brand-message-section .brand-message-watermark,
.brand-message-section .brand-message-inner .brand-message-watermark {
    top: 100px;
    font-size: clamp(72px, 6.5vw, 116px);
    font-style: italic;
    color: #808080 !important;
    opacity: 0.08 !important;
    letter-spacing: 0.3px;
}

/* 공통 등장 애니메이션 */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

.reveal-on-scroll.reveal-left {
    transform: translateX(-28px);
}

.reveal-on-scroll.reveal-right {
    transform: translateX(28px);
}

.reveal-on-scroll.reveal-scale {
    transform: scale(0.96);
}

.reveal-on-scroll.in-view {
    opacity: 1;
    transform: none;
}

/* 페이지 첫 진입 애니메이션 */
header {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

body.is-loaded header {
    opacity: 1;
    transform: none;
}

.hero-text-overlay > * {
    opacity: 0;
    transform: translateY(16px);
    animation: none !important;
    transition: opacity 0.62s ease, transform 0.62s ease;
}

body.is-loaded .hero-text-overlay > * {
    opacity: 1;
    transform: none;
}

body.is-loaded .hero-text-overlay > *:nth-child(1) {
    transition-delay: 0.15s;
}


@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    header,
    .hero-text-overlay > * {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* 모바일 전용 헤더·히어로 (768px 이하 - PC 스타일과 완전 분리) */
@media (max-width: 768px) {
    header,
    header.scrolled {
        position: sticky;
        top: 0;
        z-index: 1200;
        border-top: none !important;
        border-bottom: 1px solid #ffffff !important;
    }

    .header-container {
        width: 100% !important;
        max-width: none !important;
        min-height: 58px !important;
        padding: 0 10px !important;
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .logo {
        justify-content: flex-start !important;
        width: auto !important;
        order: 1;
    }

    .logo a {
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #1a1a1a !important;
        letter-spacing: -0.2px !important;
    }

    .mobile-menu-toggle {
        order: 2;
        width: 34px;
        height: 34px;
        border: 0;
        background: transparent;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 1.6px;
        background: #1f1f1f;
        display: block;
        border-radius: 2px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .mobile-menu-toggle.is-open span:nth-child(1) {
        transform: translateY(6.6px) rotate(45deg);
    }

    .mobile-menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-6.6px) rotate(-45deg);
    }

    .main-nav {
        order: 3;
        grid-column: 1 / -1;
        width: 100%;
        margin: 0 !important;
        display: none !important;
        height: auto !important;
        padding: 8px 0 10px;
    }

    .main-nav.mobile-open {
        display: block !important;
    }

    .main-nav ul {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .main-nav ul li a {
        min-height: 36px;
        border: 1px solid rgba(0, 0, 0, 0.14);
        border-radius: 8px;
        font-size: 13px !important;
        font-weight: 400 !important;
    }

    body.page-sub header,
    body.page-sub header.scrolled {
        background: rgba(246, 243, 238, 0.98) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
    body.page-sub .logo a {
        color: #000000 !important;
    }
    body.page-sub .main-nav ul li a {
        color: #000000 !important;
    }
    body.page-sub .main-nav ul li a:hover,
    body.page-sub .main-nav ul li a.active {
        color: #666666 !important;
    }

    /* 모바일 히어로: 박스 거의 전체 폭·세로 꽉 참, 매우 깊은 둥근 모서리, 테두리/그림자 없음 */
    .hero-image-section {
        margin: 0 !important;
        padding: 10px 8px 20px !important;
        height: auto !important;
        min-height: 0 !important;
        background: #1a1a1a !important;
    }

    .hero-image-section .hero-visual {
        width: 100% !important;
        min-height: 86vh !important;
        max-height: 86vh !important;
        border-radius: 52px !important;
        overflow: hidden !important;
        border: none !important;
        box-shadow: none !important;
    }

    .hero-image-section .hero-visual::after {
        background: linear-gradient(180deg, rgba(8, 11, 18, 0.35) 0%, rgba(8, 11, 18, 0.6) 100%);
    }

    .hero-image-section .hero-main-image,
    .hero-image-section .hero-slide .hero-main-image {
        width: 100% !important;
        height: 100% !important;
        min-height: 86vh !important;
        max-height: 86vh !important;
        object-fit: cover !important;
    }

    .hero-image-section .hero-slider-window,
    .hero-image-section .hero-slider-track,
    .hero-image-section .hero-slide {
        min-height: 86vh !important;
        height: 100% !important;
    }

    .hero-image-section .hero-text-overlay {
        left: 0 !important;
        right: 0 !important;
        top: 50% !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: translateY(-50%) !important;
        padding: 0 24px !important;
        text-align: center !important;
        background: transparent !important;
        box-sizing: border-box;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }

    .hero-image-section .hero-text-box {
        border-radius: 28px !important;
        padding: 36px 28px 40px !important;
        max-width: 380px !important;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(248, 246, 242, 0.22) 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.35) !important;
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    }

    .hero-image-section .hero-subtitle-top {
        font-size: 10px !important;
        letter-spacing: 3.2px !important;
        margin-bottom: 14px !important;
        color: rgba(255, 255, 255, 0.95) !important;
        text-align: center !important;
        word-break: keep-all !important;
    }

    .hero-image-section .hero-title-first-line {
        font-size: 22px !important;
        font-weight: 400 !important;
    }

    .hero-image-section .hero-title-emphasis,
    .hero-image-section .hero-title-last {
        font-size: 42px !important;
        letter-spacing: 0.1px !important;
        color: #fff !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    }

    .hero-image-section .hero-title-main {
        line-height: 1.2 !important;
        margin-bottom: 28px !important;
        text-align: center !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }

    .hero-image-section .hero-title-main .hero-title-emphasis {
        display: block !important;
        margin-bottom: 0.18em !important;
    }

    .hero-image-section .hero-title-last {
        display: block !important;
        margin-top: 0.32em !important;
        margin-left: 0 !important;
    }

    .hero-image-section .hero-description {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 28px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-align: center !important;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }

    .hero-image-section .hero-cta-group {
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        align-items: center !important;
    }

    .hero-image-section .hero-cta {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 320px !important;
        height: 52px !important;
        padding: 0 20px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        letter-spacing: 0.8px !important;
        text-align: center !important;
        border-radius: 14px !important;
        box-sizing: border-box;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2) !important;
    }

    .hero-image-section .hero-cta-primary {
        background: #fff !important;
        color: #1a1a1a !important;
        border: none !important;
        text-decoration: none !important;
        border-bottom: none !important;
    }

    .hero-image-section .hero-cta-secondary {
        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.85) !important;
        color: #1a1a1a !important;
        text-decoration: none !important;
        border-bottom: none !important;
    }

    .hero-image-section .hero-text-overlay .hero-cta-secondary {
        color: #1a1a1a !important;
    }
}

/* 히어로 텍스트는 흰색 유지 */
.hero-image-section .hero-text-overlay,
.hero-image-section .hero-text-overlay * {
    color: #ffffff !important;
}

/* 태블릿 CTA 버튼 가운데 정렬 */
@media (max-width: 900px) and (min-width: 769px) {
    .hero-cta-group {
        width: min(100%, 360px) !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        justify-items: center !important;
    }

    .hero-cta {
        width: min(100%, 360px) !important;
        min-width: 0 !important;
        height: 54px !important;
        border-radius: 14px !important;
        justify-content: center !important;
        margin: 0 auto !important;
        font-size: 14px !important;
        letter-spacing: 1.8px !important;
        font-weight: 800 !important;
    }
}

/* ========== 메인 페이지 히어로 섹션 (새 구조) ========== */
.hero {
    position: relative;
    width: calc(100% - 24px);
    max-width: 1660px;
    min-height: 80vh;
    max-height: 90vh;
    margin: 24px auto 48px;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero__viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 28px;
}

.hero__track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero__slide {
    flex: 0 0 33.33333%;
    width: 33.33333%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 80px 44px;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(55,55,55,0.28) 40%, rgba(0,0,0,0.32) 100%);
    border-radius: 28px;
}

/* 히어로 텍스트 모두 흰색 (다른 전역 스타일보다 우선) */
main section.hero .hero__overlay,
main section.hero .hero__subtitle,
main section.hero .hero__title,
main section.hero .hero__title .hero__title-line1 {
    color: #ffffff !important;
}
main section.hero .hero__desc {
    color: rgba(225, 225, 225, 0.95) !important;
}
.hero__overlay,
.hero__subtitle,
.hero__title {
    color: #ffffff !important;
}
.hero__desc {
    color: rgba(225, 225, 225, 0.95) !important;
}

.hero__subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 6px;
    color: #ffffff !important;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero__title {
    font-size: clamp(46px, 8vw, 76px);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff !important;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.hero__title-line1 {
    font-size: 0.65em;
    font-weight: 400;
    color: #ffffff !important;
}

.hero__desc {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    color: rgba(225, 225, 225, 0.95) !important;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 520px;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    transition: opacity 0.2s, transform 0.2s;
    box-sizing: border-box;
}

.hero__btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.hero__btn--primary {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid rgba(0,0,0,0.08);
}

.hero__btn--secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}

.hero__dots {
    display: none !important;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.9);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
}

.hero__dot.is-active {
    background: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .hero {
        width: calc(100% - 20px);
        margin: 20px auto 40px;
        min-height: 82vh;
        border-radius: 20px;
    }
    .hero__viewport {
        border-radius: 20px;
    }
    .hero__overlay {
        border-radius: 20px;
    }
    .hero__subtitle {
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 3px;
        color: #ffffff !important;
    }
    .hero__title {
        font-size: 36px;
        font-weight: 700;
        color: #ffffff !important;
    }
    .hero__desc {
        font-size: 13px;
        font-weight: 400;
        color: rgba(225, 225, 225, 0.95) !important;
    }
    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }
    .hero__btn {
        min-width: 200px;
    }
    .hero__dots {
        bottom: 16px;
    }
}

/* 글쓰기 버튼 텍스트 흰색 (body * 오버라이드) */
button.btn-write,
.btn-write,
.inquiry-contact-board-card .btn-write {
    color: #ffffff !important;
}