/* Reset & Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Pretendard', -apple-system, sans-serif;
    background-color: #111;
    color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Common Variables */
:root {
    --gold: #d4af37;
    --dark-bg: #111;
    --darker-bg: #0a0a0a;
    --light-text: #ccc;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px 0;
    z-index: 100;
    transition: 0.3s;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.header-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    z-index: 102;
}

.logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-family: 'Pretendard', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    padding-top: 2px;
}

/* Nav */
/* Navigation Container (Flexbox 적용으로 가로 정렬) */
.nav-menu {
    display: flex;
    align-items: center;
    /* 수직 중앙 정렬 */
}

/* Menu List */
.nav-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--light-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--gold);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 102;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Header Icons */
/* Header Icons (상담 버튼 그룹) */
.header-icons {
    display: flex;
    gap: 10px;
    margin-left: 40px;
    /* '문의' 메뉴와 간격 띄우기 */
    align-items: center;
}

/* Icon Button Design (크기 축소: 30px) */
.icon-btn {
    display: block;
    width: 30px;
    /* 36px -> 30px 로 축소 */
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    transition: 0.3s;
    line-height: 0;
    /* 이미지 하단 여백 제거 */
}

.icon-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-btn:hover {
    transform: scale(1.1);
    /* 마우스 올리면 살짝 커짐 */
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.1);
}

.sub-title {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-weight: 600;
}

.main-title {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 400;
}

/* Sections Common */
.section {
    padding: 120px 0;
}

.dark-section {
    background-color: var(--darker-bg);
}

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

.section-title {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--gold);
}

.section-desc {
    text-align: center;
    color: #888;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

/* 1. About (Split Layout) */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.section-title-left {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.korean-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.split-text p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* 2. Products (Grid) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.prod-card {
    background: #1a1a1a;
    transition: 0.3s;
    overflow: hidden;
}

.prod-card:hover {
    transform: translateY(-10px);
}

.prod-img {
    height: 250px;
    overflow: hidden;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.prod-card:hover .prod-img img {
    transform: scale(1.1);
}

.prod-info {
    padding: 25px;
    text-align: center;
}

.prod-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.prod-info p {
    font-size: 0.9rem;
    color: #888;
}

/* Brand Slider */
.brand-slider {
    padding: 60px 0;
    background-color: #000;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    position: relative;
}

.slider-container::before,
.slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

.slider-track {
    display: flex;
    width: calc(250px * 14);
    animation: scroll 30s linear infinite;
}

.slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: 0.3s;
}

.slide:hover {
    opacity: 1;
    color: var(--gold);
}

.slide h3 {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 1.8rem;
    font-style: italic;
    letter-spacing: 2px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

/* 3. Process (Steps) */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.step-item {
    position: relative;
    padding: 30px 20px;
    background: #151515;
    border: 1px solid #222;
    transition: 0.3s;
}

.step-item:hover {
    border-color: var(--gold);
    background: #1a1a1a;
}

.step-num {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    transition: 0.3s;
}

.step-item:hover .step-num {
    color: var(--gold);
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

/* 4. Lesson */
.lesson-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./images/lesson_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

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

.lesson-list {
    list-style: none;
    margin: 40px 0;
    text-align: left;
    display: grid;
    gap: 20px;
}

.lesson-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-left: 3px solid var(--gold);
}

.lesson-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.lesson-list span {
    color: #aaa;
    font-size: 0.95rem;
}

.btn-main {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-main:hover {
    background: #fff;
}

/* 5. Location */
.map-wrapper {
    width: 100%;
    height: 450px;
    background: #222;
    filter: grayscale(100%);
    transition: 0.3s;
}

.map-wrapper:hover {
    filter: grayscale(0%);
}

.location-text {
    text-align: center;
    margin-top: 30px;
}

.loc-address {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.loc-desc {
    color: #888;
    font-size: 0.9rem;
}

/* 6. Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info>p {
    color: #888;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item a,
.info-item p {
    color: #ddd;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #222;
    border: 1px solid #333;
    padding: 15px;
    margin-bottom: 15px;
    color: #fff;
    font-family: inherit;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #333;
    color: #fff;
    border: 1px solid #444;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.btn-submit:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid #222;
    background: #050505;
    color: #666;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo-box {
    margin-bottom: 20px;
    color: #fff;
    /* Ensure text is white like header logo */
}

/* Ensure footer logo image behaves like header logo if not already covered by .logo img */
.footer-logo-box img {
    height: 32px;
    width: auto;
}

.footer-right {
    text-align: right;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .split-image {
        height: 300px;
        width: 100%;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer Center Fix */
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        /* 박스 자체를 중앙으로 */
        gap: 30px;
    }

    .footer-left,
    .footer-right {
        text-align: center;
        width: 100%;
    }

    /* 로고 내부 아이콘+글자 중앙 정렬 */
    .footer-logo-box {
        justify-content: center;
        margin-bottom: 10px;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #000;
        display: flex;
        flex-direction: column;
        /* 세로 정렬로 변경 */
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 101;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 0;
        /* 초기화 */
    }

    .nav-menu a {
        font-size: 1.2rem;
    }

    /* 모바일에서 아이콘 위치 조정 */
    .header-icons {
        margin-left: 0;
        /* 왼쪽 여백 제거 */
        margin-top: 40px;
        /* 메뉴 리스트와 아래로 간격 띄우기 */
        gap: 15px;
        /* 모바일에서는 버튼 사이 간격을 좀 더 넓게 */
    }

    /* 모바일에서는 터치하기 쉽게 조금 더 키워줌 */
    .icon-btn {
        width: 36px;
        height: 36px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Footer Logo Refinement */
footer .logo {
    color: #666;
}

footer .logo img {
    opacity: 0.5;
}

/* Products Page Styles */

/* 제품 페이지 인트로 */
.products-intro {
    margin-bottom: 40px;
}

/* 카테고리 네비게이션 (버튼형 링크) */
.prod-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.prod-nav a {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #888;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.prod-nav a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: #222;
}

/* 카테고리 타이틀 */
.cat-title {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

/* 새로운 제품 그리드 (갤러리형) */
.prod-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    /* 반응형 자동 배치 */
    gap: 25px;
}

/* 그립 전용 그리드 (가로로 넓은 카드 형태) */
.grips-grid {
    /* 카드를 가로로 길게 배치하기 위해 최소 너비 증가 (200px -> 300px) */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* 그립 이미지 박스 (높이를 낮춰서 와이드 비율로 만듦) */
.grips-grid .img-box {
    height: 160px;
    /* 높이 축소 (기존 200px -> 160px) */
    background-color: #222;
    /* 배경을 살짝 밝게 해서 그립 윤곽이 잘 보이게 */
}

/* 그립 이미지 (잘림 방지 핵심) */
.grips-grid .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* ★ 핵심: 이미지를 꽉 채워 자르지 않고, 전체가 다 보이게 축소/조정 */
    padding: 15px;
    /* 테두리에 딱 붙지 않게 여백 추가 */
    transform: none;
    /* 기본 확대 효과 제거 (전체 보는게 중요하므로) */
}

/* 그립 호버 시 효과 변경 (확대 대신 밝기 조절) */
.grips-grid .gallery-item:hover .img-box img {
    transform: scale(1.05);
    /* 살짝만 확대 */
    opacity: 1;
}

/* 갤러리 아이템 카드 */
.gallery-item {
    background: #151515;
    border: 1px solid #222;
    overflow: hidden;
    transition: 0.3s;
}

.gallery-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* 이미지 영역 */
.img-box {
    width: 100%;
    height: 250px;
    /* 고정 높이 */
    background: #0a0a0a;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* 그립은 이미지 영역도 조금 작게 */

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 꽉 차게 */
    transition: 0.5s ease;
}

/* 호버 시 이미지 확대 효과 */
.gallery-item:hover .img-box img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* 정보 영역 */
.info-box {
    padding: 20px;
    text-align: center;
}

.info-box h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-box p {
    font-size: 0.9rem;
    color: #888;
}

/* 모바일 반응형 조정 */
@media (max-width: 768px) {
    .prod-nav a {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .cat-title {
        font-size: 1.5rem;
    }

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

    /* 모바일 2열 */
    .grips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grips-grid .img-box {
        height: 120px;
    }

    /* 모바일에서 더 슬림하게 */

    .img-box {
        height: 180px;
    }
}

/* Products 페이지 전용 Hero */
.prod-hero {
    position: relative;
    width: 100%;
    /* 가로 꽉 채우기 */
    height: 600px;
    /* 높이 600px 고정 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* margin-top 삭제 (Body 직계 자식일 때는 불필요) */
}

/* 기존 .bg-image 스타일을 공유하되, 오버레이를 좀 더 진하게 */
.prod-hero .bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* 글씨 잘 보이게 어두운 막 추가 */
}

.prod-hero .section-title {
    font-size: 3.5rem;
    /* 타이틀 크기 키움 */
    margin-bottom: 20px;
}

/* --- [CSS 추가] --- */

/* 9단계 그리드 */
.process-grid-9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3열 배치 */
    gap: 30px;
    margin-bottom: 100px;
}

.proc-card {
    background: #1a1a1a;
    border: 1px solid #222;
    overflow: hidden;
    transition: 0.3s;
}

.proc-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.proc-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.proc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.proc-card:hover .proc-img img {
    transform: scale(1.1);
}

.proc-info {
    padding: 25px;
}

.step-badge {
    display: inline-block;
    padding: 5px 10px;
    background: var(--gold);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    border-radius: 2px;
}

.proc-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.proc-info p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 하단 분석 안내 박스 */
.analysis-info-box {
    background: linear-gradient(135deg, #1a1a1a, #111);
    border: 1px solid var(--gold);
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
}

.analysis-info-box h3 {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

.analysis-info-box .main-desc {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.analysis-info-box ul {
    list-style: none;
}

.analysis-info-box li {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 8px;
}

.analysis-info-box strong {
    color: #fff;
}

/* 모바일 반응형 */
@media (max-width: 900px) {
    .process-grid-9 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 태블릿 2열 */
    .analysis-info-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .process-grid-9 {
        grid-template-columns: 1fr;
    }

    /* 모바일 1열 */
}

/* --- [CSS 추가 끝] --- */
/* --- [CSS 추가] --- */

/* 레슨 특징 3단 그리드 */
.lesson-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feat-card {
    background: #151515;
    border: 1px solid #222;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
}

.feat-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    background: #1a1a1a;
}

.feat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    /* 만약 이미지 아이콘을 쓴다면 아래 주석 해제 후 사용 */
    /* width: 60px; height: 60px; margin: 0 auto 20px; */
}

.feat-card h4 {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.korean-sub {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.feat-desc {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
    word-break: keep-all;
    /* 한글 단어 짤림 방지 */
}

/* 유튜브 영상 섹션 */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* 반응형 비디오 래퍼 (16:9 비율 유지) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 비율 */
    height: 0;
    overflow: hidden;
    border: 1px solid #222;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* 모바일 반응형 */
@media (max-width: 900px) {
    .lesson-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* 특징 카드 1열 */
    .video-grid {
        grid-template-columns: 1fr;
    }

    /* 비디오 1열 */
}

/* --- [CSS 추가 끝] --- */

/* --- [CSS 추가] --- */

/* 이용안내 섹션 */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-text-box .info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.info-text-box .info-list li {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.info-text-box .info-list .icon {
    margin-right: 10px;
}

.target-audience p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* 이용안내 요약 카드 그리드 */
.info-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.summary-card {
    padding: 30px 20px;
}

.summary-card h4 {
    font-size: 1.3rem;
}

/* ★ 유튜브 썸네일 어둡게 하기 (오버레이 효과) ★ */
.video-wrapper {
    position: relative;
    /* ... 기존 스타일 유지 ... */
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* 검은색 반투명 막 (0.4 정도가 적당) */
    pointer-events: none;
    /* 마우스 클릭이 영상에 전달되도록 설정 */
    transition: 0.3s;
}

/* 마우스를 올리면 다시 밝아지게 (선택사항) */
.video-wrapper:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

/* 모바일 반응형 추가 */
@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    /* 이용안내 1열 */
}

@media (max-width: 600px) {
    .info-summary-grid {
        grid-template-columns: 1fr;
    }

    /* 요약 카드 1열 */
}

/* --- [CSS 추가 끝] --- */
/* --- [CSS 추가] --- */

/* 위치 페이지 레이아웃 (지도와 정보 나란히 or 상하) */
/* 위치 페이지 레이아웃 (1단 수직 구조) */
.location-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* 지도, 사진, 정보 박스 너비 통일 */
.location-layout .map-wrapper,
.location-photo,
.location-info-box {
    width: 100%;
}

/* 지도 래퍼 (높이 조정) */
.location-layout .map-wrapper {
    height: 400px;
    /* 높이 적절히 조정 */
    border: 1px solid #333;
}

/* 정보 박스 스타일 (중앙 정렬) */
.location-info-box {
    background: #1a1a1a;
    border: 1px solid #222;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.location-info-box h4 {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.loc-item {
    margin-bottom: 25px;
}

.loc-item .label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.loc-item p {
    font-size: 1.1rem;
    color: #fff;
    word-break: keep-all;
}

/* 버튼 그룹 (중앙 정렬) */
.loc-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.loc-actions .btn-main {
    padding: 12px 20px;
    font-size: 0.9rem;
    text-align: center;
    min-width: 140px;
    /* 버튼 최소 너비 설정 */
}

.loc-actions .btn-main.outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.loc-actions .btn-main.outline:hover {
    background: var(--gold);
    color: #000;
}

/* 모바일 반응형 */
@media (max-width: 900px) {
    .location-layout .map-wrapper {
        height: 300px;
    }
}

/* --- [CSS 추가 끝] --- */
/* --- [CSS 추가] --- */

/* 문의 페이지 그리드 */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2열 배치 */
    gap: 80px;
    align-items: start;
}

/* 정보 아이템 스타일 */
.info-item-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item span {
    display: block;
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
}

.info-item p,
.info-item a.sc-num {
    font-size: 1.5rem;
    /* 전화번호와 시간 크게 */
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.info-item a.sc-num:hover {
    color: var(--gold);
}

/* 폼 스타일 강화 */
.contact-form-wrapper {
    background: #1a1a1a;
    padding: 40px;
    border: 1px solid #222;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    font-family: 'Pretendard', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

/* 입력창 포커스 시 골드 테두리 */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
    background: #0a0a0a;
}

/* 제출 버튼 */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    /* 버튼 기본색 골드로 변경 */
    color: #000;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #fff;
    /* 호버 시 흰색 */
}

/* 모바일 반응형 */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* 모바일 1열 */
    .contact-info {
        text-align: center;
    }

    .info-item p,
    .info-item a.sc-num {
        font-size: 1.3rem;
    }
}

/* --- [CSS 추가 끝] --- */

/* --- [Home Styles 추가] --- */

/* 1. Intro Section */
.home-title {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.sub-gold {
    display: block;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.home-desc {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-text {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-text:hover {
    color: #fff;
    letter-spacing: 1px;
}

/* 2. Services Section */
.home-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.svc-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border: 1px solid #333;
    group;
}

.svc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.5s;
    filter: brightness(0.6);
}

.svc-card:hover .svc-bg {
    transform: scale(1.1);
    filter: brightness(0.4);
}

.svc-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.svc-content h4 {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.svc-content p {
    color: #ccc;
    margin-bottom: 30px;
}

.btn-outline {
    padding: 12px 30px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* 3. Product Banner (Parallax) */
.home-product-banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* 패럴랙스용 여유분 */
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.5);
}

.banner-content h3 {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

/* 4. Info Section */
.info-wrapper {
    display: flex;
    background: #1a1a1a;
    border: 1px solid #333;
}

.map-preview {
    flex: 1;
    min-height: 400px;
}

.info-details {
    flex: 0.8;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-details h3 {
    font-family: 'Playfair Display', 'Pretendard', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.info-details .address {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-details .hours {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #aaa;
}

.info-details .hours span {
    color: var(--gold);
    font-weight: 700;
    margin-right: 10px;
}

.full-width {
    text-align: center;
    width: 100%;
    display: block;
}

/* Mobile */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .svc-card {
        height: 350px;
    }

    .info-wrapper {
        flex-direction: column;
    }

    .map-preview {
        height: 300px;
    }

    .info-details {
        padding: 40px;
    }

    .home-product-banner h3 {
        font-size: 2.5rem;
    }
}

/* --- [Home Styles 끝] --- */

/* --- [CSS 추가] --- */
.desc-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 25px;
    word-break: keep-all;
    /* 한글 단어 끊김 방지 */
    text-align: justify;
    /* 양쪽 정렬로 깔끔하게 */
}

.desc-paragraph.last {
    margin-bottom: 0;
    color: #fff;
    /* 마지막 문단은 흰색으로 강조 */
    font-weight: 500;
}

/* -------------------- */