/* ============================================================
   common.css — THALAC
   구성: Variables / Reset / Layout / Header / Nav /
         Mega Dropdown / Mobile Menu / Hero / Sections /
         Product(Main) / Product List / Product Detail /
         Related Products / 6 Steps / Program Detail /
         Brand Story(tk-) / Spa Split / Spa White /
         Spa Info / Spa Info Page(spainfo-) /
         Spa Package(pkg-) / Spa Treatment(sptreat-) /
         Membership(member-) / Reservation(resv-) /
         Footer / Scroll Top / Animations / Placeholders /
         Responsive (1024 → 768 → 480)
   ============================================================ */


/* ===== VARIABLES ===== */
:root {
    --teal:        #236374;
    --teal-dark:   #1d5363;
    --teal-darker: #174557;
    --sand:        #c6b3a1;
    --sand-light:  #d9cbbe;
    --white:       #ffffff;
    --text-dark:   #2c2c2c;
    --text-light:  #666666;
    --text-white:  #ffffff;
}


/* 모바일 전용 줄바꿈 */
.mo-br { display: none; }
@media (max-width: 768px) {
    .mo-br { display: block; }
}

/* PC 전용 줄바꿈 */
.pc-br { display: block; }
@media (max-width: 768px) {
    .pc-br { display: none; }
}


/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }


/* ===== BASE LAYOUT ===== */
body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    word-break: keep-all;
}


/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: rgba(35, 99, 116, 0.97);
    backdrop-filter: blur(10px);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

header.dropdown-open {
    background: rgba(35, 99, 116, 0.97);
    backdrop-filter: blur(10px);
}

.header-inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.header-right {
    position: absolute;
    right: 40px;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 12px 0 14px;
}

.header-sinan-links {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    margin-bottom: 4px;
}

.header-utils {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-utils a {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-video-link {
    font-size: 13px;
    color: #93c8d1;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    padding: 7px 15px;
    margin-right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-video-link:hover { color: #fff; }

.lang-select {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 4px 10px;
    border-radius: 3px;
    cursor: pointer;
}


/* ===== LOGO ===== */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-self: center;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 4px;
    text-decoration: none;
}

.logo-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
    margin-top: 2px;
}

.logo-origin {
    font-family: 'Montserrat', sans-serif;
    font-size: 7px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
}


/* ===== NAV ===== */
nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item { position: relative; }

.nav-item > a {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 1.5px;
    padding: 8px 18px;
    transition: opacity 0.3s;
    text-transform: uppercase;
    display: block;
}

.nav-item > a:hover { opacity: 0.7; }

.nav-item > a.active {
    border-bottom: 2px solid var(--text-white);
    padding-bottom: 6px;
}

.nav-divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    align-self: center;
}


/* ===== MEGA DROPDOWN ===== */
.mega-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(35, 99, 116, 0.97);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.35s ease;
    z-index: 999;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.mega-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 40px;
    display: flex;
    gap: 60px;
}

.mega-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.mega-close:hover { color: var(--text-white); }

.mega-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--text-white);
    letter-spacing: 0px;
    min-width: 180px;
    padding-top: 0px;
}

.mega-title small {
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    letter-spacing: 3px;
    margin-top: 4px;
}

.mega-columns {
    display: flex;
    gap: 50px;
    flex: 1;
}

.mega-col { min-width: 160px; }

.mega-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mega-col a {
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 3px 0;
    transition: all 0.2s;
}

.mega-col a:hover {
    color: var(--text-white);
    padding-left: 6px;
}


/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
}

.mobile-overlay.open { display: block; }

.mobile-nav {
    position: fixed;
    top: 0; right: -320px;
    width: 300px; height: 100%;
    background: var(--teal-darker);
    z-index: 2001;
    transition: right 0.35s ease;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-nav.open { right: 0; }

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
}

.mobile-nav-header .mn-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 3px;
}

.mobile-nav-header button {
    background: none; border: none;
    color: rgba(255,255,255,0.6);
    font-size: 24px;
    cursor: pointer;
}

.mn-section { padding: 12px 24px 6px; }

.mn-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.mn-section a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 7px 0 7px 12px;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}

.mn-section a:hover {
    color: var(--text-white);
    border-left-color: rgba(255,255,255,0.4);
}

.mn-sub-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgb(55 233 210 / 45%);
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 4px;
    padding-left: 12px;
}

.mn-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 10px 24px;
}


/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(135deg, rgba(15,74,73,0.6) 0%, rgba(15,74,73,0.2) 50%, transparent 100%);
}

.hero-text-wrapper {
    position: absolute;
    top: 65%;
    left: 0;
    width: 100%;
    transform: translateY(-65%);
}

.hero-text {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
    color: var(--text-white);
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 66px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-sub-top {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-sub {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 550px;
    word-break: keep-all;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    padding: 14px 20px;
    letter-spacing: 1px;
    transition: all 0.35s ease;
}

.hero-btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--teal);
}

.hero-btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.hero-btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* ===== INDEX 페이지 전용 오버라이드 (body.page-index) ===== */
.page-index .hero-overlay {
    background: linear-gradient(135deg, rgba(15,74,73,0.2) 0%, rgba(15,74,73,0.1) 50%, transparent 100%);
}

.page-index .hero-text {
    padding: 0 40px 0;
}

.page-index .hero-text h1 {
    font-size: 68px;
    line-height: 0.9;
    letter-spacing: -1px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}


/* ===== PRODUCT INTRO (메인) ===== */
.product-intro {
    padding: 100px 40px 150px;
    text-align: center;
    background: var(--white);
}

.product-intro .brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0px;
    color: #236475;
    opacity: 0.6;
    margin-bottom: 8px;
}

.product-intro h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.product-intro .desc {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.wave-divider {
    width: 80px;
    margin: 80px auto 120px;
    opacity: 0.5;
}

.wave-divider svg { width: 100%; height: auto; }

.wave-divider::after {
    content: url(../img/waves.svg);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


/* ===== PRODUCT CARDS (메인) ===== */
.product-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

.product-card {
    width: 430px;
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 100%;
    background: rgba(35, 99, 116, 1);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    pointer-events: none;
}

.product-card:hover::after { transform: translateY(0); }

.product-card-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--sand-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.product-card-info {
    background: var(--teal);
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card-info { transform: translateY(-200px); }

.product-card-info h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 4px;
}

.product-card-info .en-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}

.product-card-link {
    display: block;
    padding: 12px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    background: var(--teal);
    border-top: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card-link {
    color: rgba(255,255,255,0.9);
    background: transparent;
    border-top-color: rgba(255,255,255,0.3);
}

.btn-outline {
    display: inline-block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 14px 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--text-white);
    border-color: var(--teal);
}


/* ===== ABOUT SECTION ===== */
.about-section {
    display: flex;
    width: 100%;
    min-height: 480px;
}

.about-left {
    flex: 1;
    min-height: 880px;
    overflow: hidden;
    background: url('../img/about-left.png') center center / cover no-repeat;
}

.about-right {
    flex: 1;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    background: url('../img/about-right.png') center center / cover no-repeat;
}

.about-right-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.about-text {
    max-width: 500px;
    text-align: center;
}

.about-text .deco-line {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}


/* ===== TREATMENT SECTION ===== */
.treatment-section {
    background: var(--teal);
    padding: 80px 40px;
    text-align: center;
}

.treatment-section .section-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.treatment-section h2 {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 20px;
}

.treatment-section .desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-teal {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-white);
    background: var(--sand);
    text-decoration: none;
    padding: 12px 36px;
    transition: background 0.3s;
}

.btn-teal:hover { background: var(--teal-dark); }


/* ===== BRAND SECTION ===== */
.brand-section {
    padding: 200px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-bg-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.brand-section-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,0.0);
    z-index: 1;
}

.brand-section .brand-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 6px;
}

.brand-section .brand-logo-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--text-white);
    letter-spacing: 3px;
    margin-top: 4px;
    opacity: 0.7;
}


/* ===== TREATMENT BANNER ===== */
.treatment-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #deeef2;
    padding: 22px 24px;
    margin-bottom: 30px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    max-width: 360px;
}

.treatment-banner:hover { background: #d0e6ec; }

.treatment-banner-icon {
    width: 56px; height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-banner-icon img {
    width: 72px; height: 72px;
    object-fit: contain;
}

.treatment-banner-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.treatment-banner-text span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #236374;
}

.treatment-banner-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #236374;
}


/* ===== PRODUCT LIST PAGE ===== */
.product-page {
    margin-top: 110px;
    padding: 90px 40px 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 50px;
}

/* Sidebar */
.sidebar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.sidebar-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.sidebar-category { margin-bottom: 24px; }

.sidebar-cat-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 1.5px;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-cat-title:hover { color: var(--teal-dark); }

.sidebar-cat-title::before {
    content: '';
    width: 16px; height: 16px;
    border: 2px solid #ccc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.sidebar-cat-title.active { color: var(--teal); }

.sidebar-cat-title.active::before {
    background: var(--teal);
    border-color: var(--teal);
    box-shadow: inset 0 0 0 3px var(--white);
}

.sidebar-sub-list {
    display: none;
    flex-direction: column;
    gap: 0;
    padding-left: 0;
    margin-bottom: 10px;
}

.sidebar-sub-list.active { display: flex; }

.sidebar-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    text-decoration: none;
    padding: 7px 0 7px 30px;
    transition: all 0.2s;
    cursor: pointer;
}

.sidebar-sub:hover { color: var(--teal); }

.sidebar-sub::before {
    content: '';
    width: 13px; height: 13px;
    border: 2px solid #ccc;
    flex-shrink: 0;
    transition: all 0.2s;
}

.sidebar-sub.active { color: var(--teal); font-weight: 500; }

.sidebar-sub.active::before {
    background: var(--teal);
    border-color: var(--teal);
    box-shadow: inset 0 0 0 2px var(--white);
}

/* Product Grid */
.product-grid-wrap { min-height: 500px; }

.product-empty {
    display: none;
    text-align: center;
    padding: 120px 20px;
    font-size: 15px;
    color: var(--text-light);
    font-weight: 300;
}

.product-empty.visible { display: block; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* p-card */
.p-card {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.p-card::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 100%;
    background: var(--teal);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    pointer-events: none;
}

.p-card:hover::after { transform: translateY(0); }

.p-card-anchor {
    display: block;
    text-decoration: none;
    color: inherit;
}

.p-card-img {
    width: 100%;
    aspect-ratio: 1 / 0.85;
    overflow: hidden;
    background: var(--sand-light);
}

.p-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.p-card-info {
    background: var(--teal);
    padding: 20px 18px 16px;
    text-align: center;
    position: relative;
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-card:hover .p-card-info { transform: translateY(-200px); }

.p-card-info h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 5px;
    line-height: 1.4;
}

.p-card-info .en-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.3px;
    display: block;
    margin-bottom: 12px;
}

.p-card-info .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
}

.p-card-link {
    display: block;
    padding: 12px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    background: var(--teal);
    border-top: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.p-card:hover .p-card-link {
    color: rgba(255,255,255,0.9);
    background: transparent;
    border-top-color: rgba(255,255,255,0.3);
}


/* ===== PRODUCT DETAIL PAGE ===== */
.detail-hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 110px;
}

.detail-hero-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.detail-hero-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
}

.detail-hero-text {
    position: absolute;
    top: 55%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
}

.detail-hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 55px;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 2px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.breadcrumb {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    padding: 20px 40px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--teal); }

.breadcrumb span { margin: 0 6px; }

.breadcrumb .current { color: var(--text-dark); margin: 0; }

.product-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 80px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.detail-img {
    flex: 0 0 45%;
    max-width: 500px;
    background: #f8f5f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-img img {
    width: 100%; height: 100%;
    object-fit: contain;
}

.detail-info { flex: 1; padding-top: 10px; }

.detail-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--teal);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.detail-title {
    font-size: 35px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.0;
}

.detail-desc {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
    word-break: keep-all;
}

.detail-specs { margin-bottom: 25px; }

.spec-row { display: flex; padding: 6px 0; }

.spec-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    min-width: 100px;
}

.spec-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
}

.detail-spec-line {
    margin: 20px 0;
    font-size: 14px;
    color: #555;
}

.detail-section {
    border-top: 1px solid #ddd;
    padding: 20px 0;
}

.detail-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #2a8cc4;
    margin-bottom: 10px;
}

.detail-section-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.detail-assets { margin-bottom: 36px; }

.detail-assets h3 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.0px;
    color: var(--teal);
    margin-bottom: 20px;
}

.assets-grid { display: flex; gap: 24px; }

.asset-item { display: flex; gap: 14px; flex: 1; }

.asset-icon {
    width: 55px; height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asset-icon img { width: 50px; height: 50px; }

.asset-text strong {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.asset-text p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
}

.detail-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.btn-detail-inquiry {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    background: var(--sand);
    text-decoration: none;
    padding: 16px 50px;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.btn-detail-inquiry:hover { background: var(--teal); }


/* ===== RELATED PRODUCTS ===== */
.related-products {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.related-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

.related-grid > .p-card { flex: 0 0 300px; }

.related-grid.col-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1050px;
    margin: 0 auto;
}


/* ===== 6 STEPS PAGE ===== */
.steps-intro {
    padding: 80px 40px 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.steps-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.steps-intro p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.steps-wave { margin: 40px auto 30px; text-align: center; }

.steps-wave img { width: 100px; opacity: 1; }

.steps-icons { text-align: center; padding-bottom: 20px; }

.steps-icons-img { max-width: 650px; width: 100%; height: auto; }

/* Step Sections */
.step-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px;
    gap: 80px;
    align-items: center;
}

.step-right .step-content { order: 1; text-align: right; }

.step-right .step-image { order: 2; }

.step-image {
    max-width: 100%;
    position: relative;
    padding: 0;
}

.step-image::before {
    content: '';
    position: absolute;
    width: 100%; height: 110%;
    border: 2px solid var(--sand);
    z-index: 0;
    transition: all 0.4s ease;
}

.step-left .step-image::before  { top: -30px; left: -30px; }
.step-right .step-image::before { top: -30px; right: -30px; left: auto; }

.step-image img {
    width: 100%; height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.step-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--teal-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.step-content h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.step-wave { margin-bottom: 30px; }

.step-wave img { width: 100px; opacity: 1; }

.step-content p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 28px;
}

.step-btn {
    display: inline-block;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
    background: var(--sand);
    text-decoration: none;
    padding: 14px 36px;
    transition: background 0.3s;
    min-width: 450px;
}

.step-btn:hover { background: var(--teal-dark); }

/* Steps Quote */
.steps-quote {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.steps-quote-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.steps-quote-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(15,74,73,0.55);
}

.steps-quote-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.quote-main {
    font-family: 'Montserrat';
    font-size: 27px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.quote-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
}


/* ===== PROGRAM DETAIL (pgm-) ===== */
.pgm-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pgm-result-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
}

.pgm-check {
    color: var(--teal);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.pgm-homecare-desc {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pgm-homecare-wave { text-align: center; margin-bottom: 40px; }

.pgm-homecare-wave img { width: 80px; opacity: 0.5; }

.pgm-homecare-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.pgm-homecare-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    min-width: 180px;
}

.pgm-homecare-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #f0ebe4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.pgm-homecare-item span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
}


/* ===== BRAND STORY (tk-) ===== */
.tk-intro {
    padding: 80px 40px 60px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.tk-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.tk-intro p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.tk-wave { margin: 40px auto 30px; text-align: center; }

.tk-wave img { width: 100px; opacity: 1; }

.tk-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px;
    gap: 80px;
    align-items: center;
}

.tk-right .tk-content  { order: 1; text-align: right; }
.tk-right .tk-image    { order: 2; }

.tk-image {
    max-width: 100%;
    position: relative;
    padding: 0;
}

.tk-image::before {
    content: '';
    position: absolute;
    width: 100%; height: 117%;
    border: 2px solid var(--sand);
    z-index: 0;
    transition: all 0.4s ease;
}

.tk-left .tk-image::before  { top: -30px; left: -30px; }
.tk-right .tk-image::before { top: -30px; right: -30px; left: auto; }

.tk-image img {
    width: 100%; height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.tk-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--teal-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tk-content h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.tk-content-wave { margin-bottom: 30px; }

.tk-content-wave img { width: 100px; opacity: 1; }

.tk-content p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* TK Quote */
.tk-quote {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.tk-quote-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.tk-quote-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(15,74,73,0.55);
}

.tk-quote-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
}

.tk-quote-main {
    font-family: 'Montserrat';
    font-size: 27px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* 페이지별 tk-image 높이 보정 */
.brand-story  .tk-image::before { height: 111%; }
.expertise    .tk-image::before { height: 111%; }
.responsibility .tk-image::before { height: 111%; }


/* ===== SPA SPLIT SECTION ===== */
.spa-split {
    display: flex;
    width: 100%;
    min-height: 600px;
}

.spa-split-left,
.spa-split-right {
    flex: 1;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.spa-parallax {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.spa-split-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,0.25);
}

.spa-split-text {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 2;
    text-align: center;
}

.spa-split-line {
    width: 50px; height: 1px;
    background: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.spa-split-wave { margin-bottom: 24px; }

.spa-split-wave img {
    width: 100px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}

.spa-split-text p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.8;
    text-shadow: 0 1px 8px rgba(0,0,0,0.15);
}

.spa-split-text .tk-label { margin-bottom: 8px; }

.spa-split-text h2 { text-shadow: 0 1px 10px rgba(0,0,0,0.15); }


/* ===== SPA WHITE SECTION ===== */
.spa-white-section {
    padding: 100px 40px;
    background: var(--white);
}

.spa-white-inner {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 70px;
    align-items: center;
}

.spa-white-reverse { flex-direction: row-reverse; }

.spa-white-img {
    flex: 0 0 420px;
    max-width: 420px;
}

.spa-white-img img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.spa-white-content { flex: 1; text-align: center; }

.spa-white-content h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.spa-white-content p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
}


/* ===== SPA INFO SECTION (메인용) ===== */
.spa-info-section {
    background: var(--teal);
    padding: 80px 40px;
}

.spa-info-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.spa-info-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.spa-info-section h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 20px;
}

.spa-info-wave { margin-bottom: 40px; }

.spa-info-wave img {
    width: 80px;
    opacity: 0.4;
    filter: brightness(10);
}

.spa-info-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.spa-info-card {
    flex: 1;
    max-width: 280px;
    padding: 30px 24px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: border-color 0.3s;
}

.spa-info-card:hover { border-color: rgba(255,255,255,0.35); }

.spa-info-icon { color: var(--sand); margin-bottom: 16px; }

.spa-info-card h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 12px;
}

.spa-info-card p {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.spa-info-highlight {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--text-white) !important;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.spa-info-notice {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
}


/* ===== SPA INFO PAGE (spainfo-) ===== */
.spainfo-intro {
    padding: 80px 40px 0;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.spainfo-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.spainfo-intro p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.spainfo-intro p.sub-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 12px;
}

.spainfo-wave { margin: 40px auto 30px; text-align: center; }

.spainfo-wave img { width: 100px; opacity: 1; }

.spainfo-dual {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.spainfo-card h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--sand);
}

.spainfo-card p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.8;
}

.spainfo-card p + p { margin-top: 16px; }

/* 탈라소 혜택 리스트 */
.spainfo-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.spainfo-list li {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid #e8e3dc;
    transition: background 0.25s;
}

.spainfo-list li:last-child { border-bottom: 1px solid #e8e3dc; }

.spainfo-list li:hover { background: #f9f6f3; }

.spainfo-list li .num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 10px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--teal);
    opacity: 0.55;
    flex-shrink: 0;
    border-right: 1px solid #e8e3dc;
    margin-right: 20px;
    transition: opacity 0.25s;
}

.spainfo-list li:hover .num { opacity: 1; }

.spainfo-list li em {
    display: flex;
    align-items: center;
    font-style: normal;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
    padding: 10px 0;
}

/* 비주얼 스트립 */
.spainfo-visual {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.spainfo-visual-parallax {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('../img/spa_info_woman.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.spainfo-visual-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(180deg, rgba(15,74,73,0.0) 0%, rgba(15,74,73,0.35) 100%);
}

.spainfo-visual-text {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 0 40px;
}

.spainfo-visual-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-white);
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

/* 프로그램 소개 */
.spainfo-program {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 70px;
    align-items: center;
}

.spainfo-program.reverse .spainfo-pgm-content { order: 1; }
.spainfo-program.reverse .spainfo-pgm-image   { order: 2; }

.spainfo-pgm-image { position: relative; }

.spainfo-pgm-image::before {
    content: '';
    position: absolute;
    width: 100%; height: 110%;
    border: 2px solid var(--sand);
    z-index: 0;
    transition: all 0.4s ease;
}

.spainfo-program:not(.reverse) .spainfo-pgm-image::before { top: -24px; left: -24px; }
.spainfo-program.reverse       .spainfo-pgm-image::before { top: -24px; right: -24px; left: auto; }

.spainfo-pgm-image img {
    width: 100%; height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.spainfo-pgm-content           { text-align: left; }
.spainfo-program.reverse .spainfo-pgm-content { text-align: right; }

.spainfo-pgm-content .tk-label { margin-bottom: 10px; }

.spainfo-pgm-content h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 16px;
}

.spainfo-pgm-content p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
}

.spainfo-pgm-wave { margin-bottom: 28px; }

.spainfo-pgm-wave img { width: 100px; opacity: 1; }

/* 3-카드 하이라이트 */
.spainfo-highlights {
    background: var(--teal);
    padding: 80px 40px;
}

.spainfo-highlights-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.spainfo-highlights-inner .hl-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.spainfo-highlights-inner h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 20px;
}

.spainfo-hl-wave { margin-bottom: 50px; }

.spainfo-hl-wave img {
    width: 80px;
    opacity: 0.4;
    filter: brightness(10);
}

.spainfo-hl-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.spainfo-hl-card {
    flex: 1;
    max-width: 340px;
    padding: 36px 28px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: border-color 0.3s, transform 0.3s;
}

.spainfo-hl-card:hover {
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-4px);
}

.spainfo-hl-icon { margin-bottom: 20px; }

.spainfo-hl-icon svg {
    width: 40px; height: 40px;
    stroke: var(--sand);
    fill: none;
    stroke-width: 1.5;
}

.spainfo-hl-card h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 14px;
}

.spainfo-hl-card p {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}


/* ===== SPA PACKAGE PAGE (pkg-) ===== */
.pkginfo-intro {
    padding: 80px 40px 0;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.pkginfo-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.pkginfo-intro p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.pkginfo-wave { margin: 40px auto 60px; text-align: center; }

.pkginfo-wave img { width: 100px; }

.pkg-tab-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.pkg-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #e8e3dc;
    margin-bottom: 0;
    gap: 0;
}

.pkg-tab {
    position: relative;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-light);
    padding: 16px 36px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.3s, border-color 0.3s;
    letter-spacing: 0.5px;
    background: none;
    border-top: none; border-left: none; border-right: none;
    outline: none;
}

.pkg-tab:hover { color: var(--teal); }

.pkg-tab.active {
    color: var(--teal);
    border-bottom-color: var(--teal);
    font-weight: 700;
}

.pkg-panel { display: none; }
.pkg-panel.active { display: block; }

.pkg-hero-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.pkg-hero-img img {
    width: 100%; height: 480px;
    object-fit: cover;
    display: block;
}

.pkg-hero-label {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(35,99,116,0.88);
    backdrop-filter: blur(6px);
    padding: 10px 22px;
    white-space: nowrap;
}

.pkg-hero-label span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

.pkg-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0 0;
}

.pkg-cards.single { grid-template-columns: 1fr; }

.pkg-card { border-top: 2px solid var(--sand); padding-top: 30px; }

.pkg-card-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--teal);
    opacity: 0.6;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.pkg-card h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.pkg-card p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.8;
    word-break: keep-all;
}

.pkg-cta {
    background: #f5f1ec;
    padding: 50px 40px;
    text-align: center;
    margin-top: 80px;
}

.pkg-cta p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pkg-cta a {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    background: var(--teal);
    text-decoration: none;
    padding: 14px 40px;
    transition: background 0.3s;
}

.pkg-cta a:hover { background: var(--teal-dark); }


/* ===== SPA TREATMENT PAGE (sptreat-) ===== */
.sptreat-intro {
    padding: 80px 40px 0;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.sptreat-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.sptreat-intro p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.sptreat-wave { margin: 40px auto 60px; text-align: center; }

.sptreat-wave img { width: 100px; }

.sptreat-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.sptreat-section-head {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 50px 0 40px;
}

.sptreat-section-head .sptreat-cat {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    background: var(--teal);
    padding: 8px 20px;
    white-space: nowrap;
}

.sptreat-section-head::after {
    content: '';
    flex: 1; height: 1px;
    background: #e8e3dc;
}

.sptreat-list { display: flex; flex-direction: column; gap: 0; }

.sptreat-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0;
    border-top: 1px solid #e8e3dc;
    transition: background 0.25s;
}

.sptreat-item:last-child { border-bottom: 1px solid #e8e3dc; }

.sptreat-item:hover { background: #f9f6f3; }

.sptreat-item-img {
    width: 120px; height: 100px;
    overflow: hidden;
    align-self: center;
    margin: 14px 0;
}

.sptreat-item-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.sptreat-item-body {
    padding: 22px 30px 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.sptreat-item-body h4 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--teal);
    line-height: 1.3;
}

.sptreat-item-body p {
    font-size: 17px;
    word-break: keep-all;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.75;
}


/* ===== MEMBERSHIP PAGE (member-) ===== */
.member-intro {
    padding: 80px 40px 0;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.member-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.member-intro p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.member-wave { margin: 40px auto 60px; text-align: center; }

.member-wave img { width: 100px; }

.member-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid #e2ddd8;
}

.member-card {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e2ddd8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: #fff;
}

.member-card:last-child { border-right: none; }

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    z-index: 2;
}

.member-card-head {
    padding: 36px 28px 28px;
    text-align: center;
    border-bottom: 1px solid #e2ddd8;
}

.member-tier-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.member-card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.member-card-name span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.member-card-price {
    padding: 24px 28px;
    text-align: center;
    border-bottom: 1px solid #e2ddd8;
}

.member-price-label {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.member-price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.member-price-unit {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 4px;
}

.member-card-benefits {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.member-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #ede8e3;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
}

.member-benefit-item:last-child { border-bottom: none; }

.member-benefit-icon {
    width: 18px; height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    font-size: 10px;
    color: #fff;
}

/* 등급 색상 */
.member-blue .member-tier-badge  { background: #e8f4fb; color: #2f8dca; }
.member-blue .member-card-name   { color: #2f8dca; }
.member-blue .member-benefit-icon { background: #2f8dca; }

.member-silver .member-tier-badge  { background: #f2f2f2; color: #888; }
.member-silver .member-card-name   { color: #888; }
.member-silver .member-benefit-icon { background: #aaa; }

.member-gold .member-tier-badge  { background: #fef6e4; color: #d4960a; }
.member-gold .member-card-name   { color: #d4960a; }
.member-gold .member-benefit-icon { background: #d4960a; }

.member-diamond { background: var(--teal); }
.member-diamond .member-card-head,
.member-diamond .member-card-price,
.member-diamond .member-card-benefits { border-color: rgba(255,255,255,0.15); }
.member-diamond .member-tier-badge    { background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }
.member-diamond .member-card-name     { color: #fff; }
.member-diamond .member-card-name span { color: rgba(255,255,255,0.85); }
.member-diamond .member-price-label   { color: rgba(255,255,255,0.6); }
.member-diamond .member-price-amount  { color: #fff; }
.member-diamond .member-price-unit    { color: rgba(255,255,255,0.6); }
.member-diamond .member-benefit-item  { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.12); }
.member-diamond .member-benefit-icon  { background: rgba(255,255,255,0.25); }
.member-diamond:hover { box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

.member-notice { width: 100%; padding: 20px 0 80px 0; margin: 0; }

.member-notice ul { list-style: none; padding: 0; }

.member-notice ul li {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 12px;
    position: relative;
}

.member-notice ul li::before { content: '*'; position: absolute; left: 0; color: var(--text-light); }


/* ===== RESERVATION PAGE (resv-) ===== */
.resv-outer {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.resv-outer .resv-wrap       { max-width: none; margin: 0; padding-left: 0; padding-right: 0; }
.resv-outer .resv-directions { max-width: none; margin: 0; padding-left: 0; padding-right: 0; }

.resv-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px 100px;
    display: grid;
    grid-template-columns: 1fr 2.3fr;
    gap: 60px;
    align-items: start;
}

.resv-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}

.resv-info h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    padding-bottom: 28px;
    border-bottom: 1px solid #e2ddd8;
}

.resv-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.resv-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f0ebe4;
}

.resv-contact-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid #e2ddd8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal);
}

.resv-contact-icon svg {
    width: 18px; height: 18px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.8;
}

.resv-contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}

.resv-contact-value {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
}

.resv-contact-value a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.resv-contact-value a:hover { color: var(--teal); }

.resv-btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
}

.resv-naver-btn,
.resv-kakao-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.resv-naver-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #03c75a;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.25s;
    margin-bottom: 4px;
}

.resv-naver-btn:hover { background: #02b350; }

.resv-naver-btn svg { width: 20px; height: 20px; fill: #fff; }

.resv-kakao-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fee500;
    color: #3c1e1e;
    text-decoration: none;
    padding: 14px 28px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.25s;
}

.resv-kakao-btn:hover { background: #f0d800; }

.resv-map-wrap {
    width: 100%; height: 480px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e2ddd8;
}

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

.resv-map-caption {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
}

.resv-map-caption strong {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.resv-directions {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.resv-dir-head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
}

.resv-dir-head .sptreat-cat {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    background: var(--teal);
    padding: 8px 20px;
    white-space: nowrap;
}

.resv-dir-head::after {
    content: '';
    flex: 1; height: 1px;
    background: #e8e3dc;
}

.resv-dir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resv-dir-card {
    padding: 24px;
    border: 1px solid #e2ddd8;
    transition: border-color 0.25s;
}

.resv-dir-card:hover { border-color: var(--teal); }

.resv-dir-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: #f0f7f9;
    border-radius: 50%;
}

.resv-dir-card h4 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 10px;
}

.resv-dir-card p {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.7;
}


/* ===== FOOTER ===== */
footer {
    background: var(--teal);
    color: var(--text-white);
    padding: 50px 20px 40px;
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.footer-logo { min-width: 200px; }

.footer-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text-white);
}

.footer-logo .logo-sub-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    margin-top: 2px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--text-white);
    background: var(--teal);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 15px;
    text-decoration: none;
    text-align: left;
    transition: background 0.3s;
    width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-btn:hover { background: var(--teal-dark); }

.footer-info { flex: 1; }

.footer-address {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.footer-tel {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--text-white);
    text-decoration: none;
    transition: background 0.3s;
}

.footer-social a:hover { background: rgba(255,255,255,0.1); }

.footer-eco { max-width: 280px; }

.footer-eco h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.footer-eco p {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}


/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(10px);
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }

.scroll-top:hover { background: var(--teal); border-color: var(--teal); }

.scroll-top:hover svg { stroke: white; }

.scroll-top svg {
    width: 18px; height: 18px;
    stroke: #666;
    fill: none;
    stroke-width: 2;
}


/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up.delay-1 { transition-delay: 0.15s; }
.fade-up.delay-2 { transition-delay: 0.3s; }
.fade-up.delay-3 { transition-delay: 0.45s; }
.fade-up.d1 { transition-delay: 0.05s; }
.fade-up.d2 { transition-delay: 0.1s; }
.fade-up.d3 { transition-delay: 0.15s; }
.fade-up.d4 { transition-delay: 0.2s; }
.fade-up.d5 { transition-delay: 0.25s; }
.fade-up.d6 { transition-delay: 0.3s; }


/* ===== PLACEHOLDERS ===== */
.placeholder-img {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
}

.placeholder-product {
    background: linear-gradient(180deg, #f5f0e8 0%, #e8ddd0 100%);
    color: rgba(100,80,60,0.4);
}

.placeholder-spa {
    background: linear-gradient(135deg, #d4c5a9 0%, #c4b599 50%, #b5a588 100%);
}

.placeholder-sand {
    background: linear-gradient(135deg, #e8ddd0 0%, #d4c5a9 40%, #c8b99a 100%);
}


/* ===== 모바일 전용 제품 필터 ===== */
.mo-filter { display: none; }


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── 1024px ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    /* Layout */
    .about-section          { flex-direction: column; }
    .about-left,
    .about-right            { min-height: 400px; }
    .footer-inner           { flex-wrap: wrap; gap: 40px; }
    .footer-eco             { max-width: 100%; }

    /* Product */
    .product-grid           { grid-template-columns: repeat(2, 1fr); }
    .product-page           { gap: 30px; }
    .product-detail         { flex-direction: column; }
    .detail-img             { flex: none; width: 100%; max-width: 100%; min-height: 400px; }
    .related-grid > .p-card { flex: 0 0 calc(50% - 14px); }

    /* Steps / TK */
    .step-section           { gap: 40px; }
    .step-image::before     { height: 104%; }
    .tk-section             { gap: 40px; }
    .tk-image::before       { height: 106%; }
    .brand-story  .tk-image::before { height: 104%; }
    .expertise    .tk-image::before { height: 104%; }
    .responsibility .tk-image::before { height: 104%; }


    /* Spa */
    .spa-split,
    .spa-split-left,
    .spa-split-right        { min-height: 480px; }
    .spa-white-img          { flex: 0 0 340px; max-width: 340px; }
    .spa-white-inner        { gap: 40px; }

    /* Spainfo */
    .spainfo-dual           { gap: 40px; }
    .spainfo-program        { gap: 40px; }
    .spainfo-pgm-image::before { height: 105%; }

    /* Member */
    .member-grid            { grid-template-columns: repeat(2, 1fr); }
    .member-card:nth-child(2) { border-right: none; }
    .member-card:nth-child(1),
    .member-card:nth-child(2) { border-bottom: 1px solid #e2ddd8; }
}

/* ── 768px ──────────────────────────────────────────────── */
@media (max-width: 768px) {
	
	  .mo-hidden { display: none; }
	  
    /* Header */
    .header-inner           { padding: 14px 20px; align-items: center; }
    nav, .header-utils      { display: none; }
    .mobile-menu-btn        { display: flex; }
    .header-sinan-links     { display: none; }
    .header-video-link      { display: none; }

    /* Hero */
    .hero                   { height: 480px; }
    .hero-text              { padding: 0 20px 50px; }
    .hero-text h1           { font-size: 20px; word-break: break-word; overflow-wrap: break-word; }
    .hero-sub-top           { font-size: 12px; letter-spacing: 2px; }
    .hero-sub               { font-size: 15px; }
    .hero-cta               { flex-direction: column; align-items: flex-start; gap: 10px; }
    .hero-btn               { width: 200px; text-align: center; padding: 13px 20px; font-size: 14px; }
    .detail-hero 						{ margin-top: 93px; }

    /* index 전용 모바일 */
    .page-index .hero-text  { padding: 0 20px 0; }
    .page-index .hero-text h1 { font-size: 42px; line-height: 1.1; letter-spacing: -0.5px; }

    /* Product intro */
    .product-intro          { padding: 60px 20px; }
    .product-intro h2       { font-size: 20px; }
    .product-cards          { gap: 20px; }
    .product-card           { width: 100%; max-width: 320px; }
    .product-card:hover .product-card-info { transform: translateY(-140px); }

    /* About */
    .about-right-overlay    { padding: 30px; justify-content: center; }
    .about-text             { text-align: center; }

    /* Treatment */
    .treatment-section      { padding: 50px 20px; }
    .treatment-banner       { padding: 14px 18px; gap: 12px; }
    .treatment-banner-icon  { width: 46px; height: 46px; }
    .treatment-banner-icon img { width: 46px; height: 46px; }
    .treatment-banner-text span  { font-size: 12px; }
    .treatment-banner-text strong { font-size: 14px; }

    /* Brand */
    .brand-section .brand-logo { font-size: 32px; }

    /* Footer */
    .footer-inner           { flex-direction: column; gap: 30px; }

    /* Product list */
    .product-page           { grid-template-columns: 1fr; padding: 30px 20px 60px; margin-top: 80px; gap: 30px; }
    .sidebar-category       { margin-bottom: 16px; }
    .sidebar-sub-list       { flex-direction: column; }
    .product-grid           { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .p-card-info h3         { font-size: 13px; }
    .p-card-info .en-name   { font-size: 10px; }
    .p-card-info .price     { font-size: 13px; }
    .p-card:hover .p-card-info { transform: translateY(-140px); }

    /* Product detail */
    .detail-hero            { height: 220px; }
    .detail-hero-text h1    { font-size: 28px; text-align:center; top: 52%; }
    .product-detail         { padding: 40px 20px 60px; gap: 30px; }
    .detail-img             { min-height: 300px; }
    .assets-grid            { flex-direction: column; }
    .breadcrumb             { padding: 16px 20px; }
    .related-products       { padding: 0 20px 60px; }
    .related-grid           { gap: 16px; }
    .related-grid > .p-card { flex: 0 0 calc(50% - 8px); }

    /* 6 Steps */
    .steps-intro            { padding: 50px 20px 40px; }
    .steps-icons-img        { max-width: 320px; }
    .step-section           { grid-template-columns: 1fr; gap: 30px; padding: 30px 20px; }
    .step-right .step-content { order: 2; text-align: left; }
    .step-right .step-image { order: 1; }
    .step-content h2        { font-size: 22px; }
    .step-left  .step-image::before { top: -12px; left: -12px; }
    .step-right .step-image::before { top: -12px; right: -12px; }
    .quote-main             { font-size: 22px; }
    .steps-quote            { min-height: 300px; }

    /* pgm homecare */
    .pgm-homecare-list      { gap: 24px; }
    .pgm-homecare-item      { min-width: 140px; }
    .pgm-homecare-desc      { font-size: 14px; padding: 0 20px; }

    /* TK */
    .tk-intro               { padding: 50px 20px 40px; }
    .tk-section             { grid-template-columns: 1fr; gap: 30px; padding: 30px 20px; }
    .tk-right .tk-content   { order: 2; text-align: left; }
    .tk-right .tk-image     { order: 1; }
    .tk-content h2          { font-size: 22px; }
    .tk-left  .tk-image::before { top: -12px; left: -12px; }
    .tk-right .tk-image::before { top: -12px; right: -12px; }
    .tk-quote               { min-height: 300px; }
    .tk-quote-main          { font-size: 20px; }
		.tk-quote-text    			{padding: 0px;}    

    .brand-story .tk-image::before        { height: 104%; }
    .brand-story .tk-left .tk-image::before  { top: -12px; left: -12px; }
    .brand-story .tk-right .tk-image::before { top: -12px; right: -12px; }
    .expertise .tk-image::before          { height: 104%; }
    .expertise .tk-left .tk-image::before    { top: -12px; left: -12px; }
    .expertise .tk-right .tk-image::before   { top: -12px; right: -12px; }
    .responsibility .tk-image::before     { height: 104%; }
    .responsibility .tk-left .tk-image::before  { top: -12px; left: -12px; }
    .responsibility .tk-right .tk-image::before { top: -12px; right: -12px; }

    /* Spa split */
    .spa-split              { flex-direction: column; min-height: auto; }
    .spa-split-left,
    .spa-split-right        { min-height: 400px; background-attachment: scroll; }
    .spa-parallax           { background-attachment: scroll; }
    .spa-split-text p       { font-size: 16px; }

    /* Spa white */
    .spa-white-section      { padding: 60px 20px; }
    .spa-white-inner        { flex-direction: column; gap: 30px; }
    .spa-white-reverse      { flex-direction: column; }
    .spa-white-img          { flex: none; max-width: 100%; width: 100%; }
    .spa-white-content h2   { font-size: 22px; }
    .spa-white-content p    { font-size: 15px; }

    /* Spa info (메인) */
    .spa-info-section       { padding: 60px 20px; }
    .spa-info-grid          { flex-direction: column; align-items: center; gap: 20px; }
    .spa-info-card          { max-width: 100%; width: 100%; }
    .spa-info-section h2    { font-size: 22px; }

    /* spainfo */
    .spainfo-intro          { padding: 50px 20px 0; }
    .spainfo-intro h2       { font-size: 24px; }
    .spainfo-intro p        { font-size: 14px; }
    .spainfo-intro p.sub-desc { font-size: 13px; }
    .spainfo-dual           { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px 60px; }
    .spainfo-visual         { height: 300px; }
    .spainfo-visual-text p  { font-size: 20px; }
    .spainfo-visual-parallax { background-attachment: scroll; }
    .spainfo-program        { grid-template-columns: 1fr; gap: 30px; padding: 50px 20px; }
    .spainfo-program.reverse .spainfo-pgm-content { order: 2; text-align: left; }
    .spainfo-program.reverse .spainfo-pgm-image   { order: 1; }
    .spainfo-pgm-content h2 { font-size: 22px; }
    .spainfo-pgm-image::before { height: 104%; }
    .spainfo-program:not(.reverse) .spainfo-pgm-image::before { top: -12px; left: -12px; }
    .spainfo-program.reverse .spainfo-pgm-image::before { top: -12px; right: -12px; }
    .spainfo-highlights     { padding: 50px 20px; }
    .spainfo-hl-grid        { flex-direction: column; align-items: center; gap: 20px; }
    .spainfo-hl-card        { max-width: 100%; width: 100%; }
    .spainfo-highlights-inner h2 { font-size: 22px; }
    .spainfo-list li .num   { min-width: 44px; font-size: 18px; }

    /* pkg */
    .pkginfo-intro          { padding: 50px 20px 0; }
    .pkginfo-intro h2       { font-size: 21px; }
    .pkginfo-intro p        { font-size: 14px; }
    .pkg-tab-wrap           { padding: 0 20px 60px; }
    .pkg-tabs               { overflow-x: auto; }
    .pkg-tab                { font-size: 14px; padding: 14px 20px; white-space: nowrap; }
    .pkg-hero-img img       { height: 220px; }
    .pkg-cards              { grid-template-columns: 1fr; gap: 28px; padding: 36px 0 0; }
    .pkg-cta                { padding: 40px 20px; margin-top: 50px; }

    /* sptreat */
    .sptreat-intro          { padding: 50px 20px 0; }
    .sptreat-intro h2       { font-size: 21px; }
    .sptreat-intro p        { font-size: 14px; }
    .sptreat-section        { padding: 0 20px 60px; }
    .sptreat-section-head   { padding: 36px 0 28px; gap: 16px; }
    .sptreat-item           { grid-template-columns: 90px 1fr; }
    .sptreat-item-img       { width: 90px; height: 80px; margin: 12px 0; }
    .sptreat-item-body      { padding: 16px; gap: 6px; }
    .sptreat-item-body h4   { font-size: 15px; }
    .sptreat-item-body p    { font-size: 13px; }

		/* member */
		.member-intro           { padding: 50px 20px 0; }
		.member-intro h2        { font-size: 21px; }
		.member-intro p         { font-size: 14px; }

		/* ★ 핵심 변경: 1열 → 2×2 그리드 */
		.member-grid {
		    grid-template-columns: repeat(2, 1fr);
		    padding: 0 16px 60px;
		    gap: 12px;
		    border: none;
		}

		.member-card {
		    border: 1px solid #e2ddd8;
		    border-top: 5px solid #e2ddd8; /* 기본 상단 바 */
		    border-right: 1px solid #e2ddd8 !important;
		    border-bottom: 1px solid #e2ddd8 !important;
		}

		/* 등급별 상단 컬러 바 */
		.member-blue    { border-top-color: #2f8dca !important; }
		.member-silver  { border-top-color: #aaa !important; }
		.member-gold    { border-top-color: #d4960a !important; }
		.member-diamond { border-top-color: #fff !important; }

		.member-card:nth-child(1),
		.member-card:nth-child(2) { border-bottom: 1px solid #e2ddd8; }
		.member-card:last-child   { border-bottom: 1px solid #e2ddd8; }
		.member-card:hover        { transform: none; box-shadow: none; }

		/* 카드 내부 폰트 축소 */
		.member-card-name         { font-size: 16px; }
		.member-card-name span    { font-size: 14px; }
		.member-price-amount      { font-size: 20px; }
		.member-tier-badge        { font-size: 9px; }
		.member-card-head         { padding: 24px 16px 20px; }
		.member-card-price        { padding: 16px; }
		.member-card-benefits     { padding: 16px; }
		.member-benefit-item      { font-size: 13px; gap: 8px; padding: 8px 0; }

		.member-notice            { padding: 0 20px 60px; }

    /* resv */
    .resv-wrap              { grid-template-columns: 1fr; gap: 40px; padding: 50px 20px 60px; }
    .resv-map-wrap          { height: 300px; }
    .resv-directions        { padding: 0 20px 0px; }
    .resv-btn-group         { flex-direction: column; }
    .resv-dir-grid          { grid-template-columns: 1fr; gap: 16px; }
    .resv-btn-group {
        align-items: center;
        max-width: 100%;
    }    

		/* 모바일 전용 필터 */
    /* 기존 사이드바 숨기기 */
    .product-sidebar { display: none; }

    /* product-page 1컬럼으로 */
    .product-page {
        grid-template-columns: 1fr;
        padding: 20px 16px 60px;
        margin-top: 40px;
    }

    /* 모바일 필터 표시 */
    .mo-filter {
        display: block;
        padding: 0 16px;
        margin-top: 80px;
    }

    .mo-filter-head {
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        color: var(--text-dark);
        text-align: center;
        padding: 34px 0 16px;
    }

    .mo-filter-group {
        border: 1px solid #ddd;
        margin-bottom: 8px;
    }

    .mo-filter-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 18px;
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.5px;
        color: var(--text-dark);
        cursor: pointer;
        user-select: none;
        transition: background 0.2s, color 0.2s;
    }

    .mo-filter-title svg { transition: transform 0.3s; flex-shrink: 0; }
    .mo-filter-title.open { color: var(--teal); }
    .mo-filter-title.open svg { transform: rotate(180deg); }

    .mo-filter-body {
        display: none;
        padding: 4px 18px 14px;
        border-top: 1px solid #eee;
    }

    .mo-filter-body.open { display: block; }

    .mo-filter-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 0;
        font-size: 14px;
        font-weight: 400;
        color: var(--text-dark);
        cursor: pointer;
        border-bottom: 1px solid #f0f0f0;
        transition: color 0.2s;
    }

    .mo-filter-item:last-child { border-bottom: none; }

    .mo-filter-item::before {
        content: '';
        width: 16px; height: 16px;
        border: 2px solid #ccc;
        flex-shrink: 0;
        transition: all 0.2s;
    }

    .mo-filter-item.active { color: var(--teal); font-weight: 500; }

    .mo-filter-item.active::before {
        background: var(--teal);
        border-color: var(--teal);
        box-shadow: inset 0 0 0 2px #fff;
    }




}



/* ── 480px ──────────────────────────────────────────────── */
@media (max-width: 480px) {
    .product-grid           { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .related-grid > .p-card { flex: 0 0 100%; max-width: 360px; }
}






/* ============================================================
   GLOBAL TYPOGRAPHY OVERRIDES
   h2: PC/모바일 전부 25px, letter-spacing 0
   p:  PC 17px / 모바일(768px 이하) 16px
   ============================================================ */

h2 {
    font-size: 25px !important;
    letter-spacing: 0 !important;
}

p {
    font-size: 17px !important;
}

@media (max-width: 768px) {
    p {
        font-size: 16px !important;
    }
		.footer-address {font-size: 14px !important;}    
}


