/* =========================================
   소개 페이지 공통 스타일
   About / Programs / Healers / Reservation
   ========================================= */

/* === 페이지 히어로 (서브) === */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    background: transparent;
    color: white;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 80%, rgba(139, 34, 82, 0.08) 0%, transparent 60%);
}

/* 예약 페이지 파티클 캔버스 */
.reservation-hero {
    min-height: 300px;
}

.reservation-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.reservation-canvas canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* 컨디션 분석 후 파티클 색 전환 시 배경 약간 어둡게 */
.reservation-hero.mood-active::after {
    background: radial-gradient(circle at 50% 50%, rgba(139, 34, 82, 0.3) 0%, transparent 60%);
    transition: background 1.5s ease;
}

/* 감정 상태별 페이지 히어로 배경 전환 (Phase B) */
body.emotion-tension .page-hero::after {
    background: radial-gradient(circle at 50% 50%, rgba(232, 93, 74, 0.50) 0%, rgba(139, 34, 82, 0.25) 40%, transparent 70%);
    transition: background 2s ease;
}

body.emotion-relaxation .page-hero::after {
    background: radial-gradient(circle at 50% 50%, rgba(91, 154, 107, 0.45) 0%, rgba(201, 169, 110, 0.20) 40%, transparent 70%);
    transition: background 3s ease;
}

/* 감정 상태별 전체 페이지 배경 오버레이 (강한 체감) */
body.emotion-tension::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(232, 93, 74, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 30% 70%, rgba(139, 34, 82, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(232, 115, 74, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 9998;
    transition: opacity 2s ease;
    animation: emotionPulse 3s ease-in-out infinite;
}

body.emotion-relaxation::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(91, 154, 107, 0.30) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 70% 70%, rgba(201, 169, 110, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 50%, rgba(91, 180, 120, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 9998;
    transition: opacity 3s ease;
    animation: emotionPulseRelax 5s ease-in-out infinite;
}

@keyframes emotionPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes emotionPulseRelax {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* 감정 상태별 glass-card 보더 틴트 */
body.emotion-tension .glass-card {
    border-color: rgba(232, 93, 74, 0.25) !important;
    transition: border-color 2s ease;
}

body.emotion-relaxation .glass-card {
    border-color: rgba(91, 154, 107, 0.25) !important;
    transition: border-color 3s ease;
}

/* 감정 상태별 골드 악센트 색상 전환 */
body.emotion-tension {
    --color-gold: #E8734A;
    transition: --color-gold 2s ease;
}

body.emotion-relaxation {
    --color-gold: #5B9A6B;
    transition: --color-gold 3s ease;
}

/* fatigue (피로) — 차분한 블루 */
body.emotion-fatigue .page-hero::after {
    background: radial-gradient(circle at 50% 50%, rgba(91, 127, 166, 0.45) 0%, rgba(123, 157, 191, 0.20) 40%, transparent 70%);
    transition: background 2s ease;
}

body.emotion-fatigue::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(91, 127, 166, 0.30) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 30% 70%, rgba(58, 90, 140, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(123, 157, 191, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 9998;
    transition: opacity 2s ease;
    animation: emotionPulse 4s ease-in-out infinite;
}

body.emotion-fatigue .glass-card {
    border-color: rgba(91, 127, 166, 0.25) !important;
    transition: border-color 2s ease;
}

body.emotion-fatigue {
    --color-gold: #5B7FA6;
    transition: --color-gold 2s ease;
}

/* stress (스트레스) — 라벤더/퍼플 */
body.emotion-stress .page-hero::after {
    background: radial-gradient(circle at 50% 50%, rgba(155, 109, 181, 0.45) 0%, rgba(91, 58, 140, 0.22) 40%, transparent 70%);
    transition: background 2s ease;
}

body.emotion-stress::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(155, 109, 181, 0.30) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 70% 70%, rgba(91, 58, 140, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 50%, rgba(155, 125, 191, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 9998;
    transition: opacity 2s ease;
    animation: emotionPulse 3.5s ease-in-out infinite;
}

body.emotion-stress .glass-card {
    border-color: rgba(155, 109, 181, 0.25) !important;
    transition: border-color 2s ease;
}

body.emotion-stress {
    --color-gold: #9B6DB5;
    transition: --color-gold 2s ease;
}

/* === Programs 히어로 — 유기체 오브 === */
.programs-hero {
    position: relative;
}

.programs-hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.programs-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.programs-orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(139, 34, 82, 0.15);
    top: -80px;
    right: 10%;
    animation: orbDrift1 10s ease-in-out infinite;
}

.programs-orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(201, 169, 110, 0.1);
    bottom: -60px;
    left: 15%;
    animation: orbDrift2 13s ease-in-out infinite;
}

.programs-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(91, 58, 140, 0.08);
    top: 30%;
    left: 50%;
    animation: orbDrift3 16s ease-in-out infinite;
}

@keyframes orbDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.9); }
}

@keyframes orbDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.15); }
}

@keyframes orbDrift3 {
    0%, 100% { transform: translate(-50%, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -30px) scale(1.2); opacity: 0.8; }
}

/* === 히어로 메쉬 그라데이션 오버레이 (애니메이션) === */
.programs-hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(139, 34, 82, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(201, 169, 110, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 50% 80%, rgba(91, 58, 140, 0.12) 0%, transparent 60%);
    animation: heroMeshShift 12s ease-in-out infinite;
}

@keyframes heroMeshShift {
    0%, 100% {
        opacity: 0.4;
        background:
            radial-gradient(ellipse 60% 50% at 20% 50%, rgba(139, 34, 82, 0.25) 0%, transparent 70%),
            radial-gradient(ellipse 50% 60% at 80% 30%, rgba(201, 169, 110, 0.18) 0%, transparent 70%),
            radial-gradient(ellipse 40% 50% at 50% 80%, rgba(91, 58, 140, 0.12) 0%, transparent 60%);
    }
    33% {
        opacity: 0.55;
        background:
            radial-gradient(ellipse 55% 60% at 35% 40%, rgba(139, 34, 82, 0.20) 0%, transparent 70%),
            radial-gradient(ellipse 60% 50% at 65% 60%, rgba(201, 169, 110, 0.22) 0%, transparent 70%),
            radial-gradient(ellipse 50% 40% at 50% 20%, rgba(91, 154, 107, 0.10) 0%, transparent 60%);
    }
    66% {
        opacity: 0.45;
        background:
            radial-gradient(ellipse 50% 55% at 70% 55%, rgba(155, 109, 181, 0.18) 0%, transparent 70%),
            radial-gradient(ellipse 55% 50% at 25% 35%, rgba(201, 169, 110, 0.15) 0%, transparent 70%),
            radial-gradient(ellipse 45% 55% at 50% 70%, rgba(139, 34, 82, 0.20) 0%, transparent 60%);
    }
}

/* 히어로 이미지 숨쉬기 효과 (이미지 사용 시) */
.programs-hero .page-hero-content {
    animation: heroContentBreathe 6s ease-in-out infinite;
}

@keyframes heroContentBreathe {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* === 프로그램 탭 네비게이션 === */
.program-tab-nav {
    position: relative;
    z-index: 2;
    padding: 40px 0 0;
}

.program-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.program-tab {
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 40px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
    opacity: 0.5;
}

.program-tab:hover {
    opacity: 0.8;
}

.program-tab.active {
    opacity: 1;
}

.program-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 1px;
    animation: tabLineGlow 3s ease-in-out infinite;
}

@keyframes tabLineGlow {
    0%, 100% { opacity: 0.6; width: 40px; }
    50% { opacity: 1; width: 50px; }
}

.program-tab-label {
    display: block;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--color-gold);
    font-weight: 400;
    margin-bottom: 8px;
    transition: letter-spacing 0.5s ease;
}

.program-tab.active .program-tab-label {
    letter-spacing: 5px;
}

.program-tab-name {
    display: block;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.program-tab-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    opacity: 0.3;
    flex-shrink: 0;
}

/* 탭 콘텐츠 전환 */
.program-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.program-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: tabFadeIn 0.5s ease forwards;
    position: relative; /* 가이드라인 absolute 기준 */
}

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

/* =========================================
   소매틱 저니 (Somatic Journey) — 풀스크린 여정
   ========================================= */

/* 세로 가이드라인 — 탭 콘텐츠 내부 absolute, 프롤로그~애프터글로우 전체 관통 */
.journey-guideline {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(201, 169, 110, 0.15) 5%,
        rgba(201, 169, 110, 0.25) 20%,
        rgba(201, 169, 110, 0.25) 80%,
        rgba(201, 169, 110, 0.15) 95%,
        transparent 100%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
}

/* 프롤로그 진입 시 서서히 등장 */
.journey-guideline.is-active {
    opacity: 1;
    animation: guidelineBreathe 4s ease-in-out infinite;
}

/* 맥박 dot — 스크롤에 따라 라인을 따라 내려옴 (JS가 --dot-top 업데이트) */
.journey-guideline::after {
    content: '';
    position: absolute;
    top: var(--dot-top, 0%);
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold, #C9A96E);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
    opacity: 0;
    transition: opacity 1s ease;
}

.journey-guideline.is-active::after {
    opacity: 1;
    animation: guidelineDotPulse 3s ease-in-out infinite;
}

/* 가이드라인 전용 dot pulse — translate 유지 */
@keyframes guidelineDotPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 12px rgba(201, 169, 110, 0.4); }
    50% { transform: translate(-50%, -50%) scale(1.3); box-shadow: 0 0 20px rgba(201, 169, 110, 0.6); }
}

@keyframes guidelineBreathe {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

/* 사이드 네비게이션 — 기본 숨김, JS가 .is-active 토글 */
.journey-nav {
    position: fixed;
    right: clamp(20px, 3vw, 48px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.journey-nav.is-active {
    opacity: 1;
}

.journey-nav::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(201, 169, 110, 0.15);
    transform: translateX(-50%);
}

.journey-nav-dot {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.2);
    background: rgba(10, 10, 14, 0.6);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.journey-nav-dot span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(201, 169, 110, 0.5);
    transition: all 0.5s ease;
}

.journey-nav-dot.active {
    border-color: var(--color-gold);
    background: rgba(201, 169, 110, 0.12);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.15);
    transform: scale(1.15);
}

.journey-nav-dot.active span {
    color: var(--color-gold);
    font-weight: 600;
}

.journey-nav-dot:hover:not(.active) {
    border-color: rgba(201, 169, 110, 0.5);
    background: rgba(201, 169, 110, 0.06);
}

/* 프롤로그 */
.journey-prologue {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 80px 24px;
}

.journey-prologue-label {
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--color-gold);
    font-weight: 400;
    margin-bottom: 32px;
    animation: labelBreathe 4s ease-in-out infinite;
}

.journey-prologue-text {
    font-size: clamp(24px, 4.5vw, 48px);
    font-weight: 200;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.journey-prologue-arrow {
    margin-top: 48px;
    animation: arrowFloat 2.5s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(12px); opacity: 0.7; }
}

/* 여정 스테이션 (100vh 풀스크린) */
.journey-station {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background-color 1.2s ease;
}

/* 디지털 조도 조절 — data-depth별 배경 */
.journey-station[data-depth="1"] {
    background: radial-gradient(ellipse 120% 80% at 50% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
}

.journey-station[data-depth="2"] {
    background:
        radial-gradient(ellipse 120% 80% at 50% 50%, rgba(155, 125, 191, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, rgba(10, 10, 14, 0) 0%, rgba(10, 10, 14, 0.15) 100%);
}

.journey-station[data-depth="3"] {
    background:
        radial-gradient(ellipse 100% 80% at 50% 40%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10, 10, 14, 0.15) 0%, rgba(10, 10, 14, 0.35) 100%);
}

/* 건축적 앵커 이니셜 */
.journey-anchor {
    position: absolute;
    font-size: clamp(15rem, 25vw, 30rem);
    font-weight: 100;
    color: rgba(201, 169, 110, 0.03);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.05em;
    will-change: transform;
    transition: opacity 0.6s ease;
}

/* 콘텐츠 영역 */
.journey-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    padding: 40px 24px;
}

.journey-station-label {
    display: block;
    font-size: 11px;
    letter-spacing: 6px;
    color: var(--color-gold);
    font-weight: 400;
    margin-bottom: 12px;
    opacity: 0.8;
}

.journey-station-name {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 200;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.journey-tagline {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 200;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.journey-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 0 auto 20px;
    opacity: 0.5;
}

.journey-desc {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 32px;
}

/* 가격 태그 (여정용 — 기존 price-tag 재사용) */
.journey-pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

/* Reveal 애니메이션 */
.journey-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* SENSORY RITUAL 진입부 */
.sensory-intro {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 80px 24px;
    background: linear-gradient(180deg, rgba(10, 10, 14, 0.1) 0%, rgba(10, 10, 14, 0.25) 100%);
}

.sensory-intro-label {
    font-size: clamp(12px, 1.5vw, 14px);
    letter-spacing: 8px;
    color: var(--color-gold);
    font-weight: 400;
    margin-bottom: 20px;
    animation: labelBreathe 4s ease-in-out infinite;
}

.sensory-intro-title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 200;
    color: var(--text-primary);
    margin-bottom: 28px;
    letter-spacing: 2px;
}

.sensory-intro-text {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
}

/* C · 코어 (Add-on 컴팩트 배너) */
.journey-addon {
    position: relative;
    padding: 60px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: linear-gradient(180deg, rgba(10, 10, 14, 0.3) 0%, rgba(10, 10, 14, 0.25) 100%);
    border-top: 1px solid rgba(201, 169, 110, 0.06);
    border-bottom: 1px solid rgba(201, 169, 110, 0.06);
}

.journey-addon-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    opacity: 0.4;
    flex-shrink: 0;
    animation: addonPulse 3s ease-in-out infinite;
}

@keyframes addonPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.journey-addon-content {
    text-align: center;
}

.journey-addon-label {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--color-gold);
    font-weight: 400;
    margin-bottom: 8px;
    opacity: 0.7;
}

.journey-addon-name {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 200;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.journey-addon-desc {
    font-size: clamp(13px, 1.5vw, 15px);
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 16px;
}

.journey-addon-pricing {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.journey-addon-combos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.journey-addon-combo-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 300;
    opacity: 0.5;
}

/* Afterglow CTA */
.afterglow-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, rgba(10, 10, 14, 0.3) 0%, rgba(10, 10, 14, 0.1) 100%);
}

.afterglow-text {
    font-size: clamp(22px, 4vw, 40px);
    font-weight: 200;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.afterglow-btn {
    display: inline-block;
    padding: 18px 48px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 60px;
    color: var(--color-gold);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 400;
    letter-spacing: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.afterglow-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.afterglow-btn:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 40px rgba(201, 169, 110, 0.15), 0 0 80px rgba(201, 169, 110, 0.05);
    transform: translateY(-2px);
    color: var(--color-gold);
}

.afterglow-btn:hover::before {
    opacity: 1;
}

/* === 골드 멤버 전용 카드 (라온) === */
.program-card-gold {
    border: 1px solid rgba(201, 169, 110, 0.3) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(201, 169, 110, 0.08);
}

.program-card-gold:hover {
    border-color: var(--color-gold) !important;
    box-shadow: 0 20px 60px rgba(139, 34, 82, 0.2), 0 0 40px rgba(201, 169, 110, 0.15);
}

/* 잠금 카드 */
.program-card-locked {
    position: relative;
}

.program-lock-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(201, 169, 110, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 20px;
    color: var(--color-gold);
    font-size: 11px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* === 왁싱 카드 리디자인 (가치 우선) === */
.wax-card {
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardBreathe 6s ease-in-out infinite;
}

.wax-card:nth-child(1) { animation-delay: 0s; }
.wax-card:nth-child(2) { animation-delay: -2s; }
.wax-card:nth-child(3) { animation-delay: -4s; }

.wax-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18), 0 0 20px rgba(139, 34, 82, 0.06);
    animation-play-state: paused;
}

/* 왁싱 카드 유기체 배경 (이미지 대체) */
.wax-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background:
        radial-gradient(ellipse 50% 50% at 50% 40%, rgba(139, 34, 82, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 30% 70%, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
    animation: cardMeshShift 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.wax-card {
    position: relative;
}

.wax-card-body {
    padding: 36px 28px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.wax-card-eng {
    display: block;
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--color-gold);
    font-weight: 400;
    margin-bottom: 10px;
}

.wax-card-title {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.wax-card-desc {
    font-size: clamp(14px, 1.3vw, 15px);
    color: var(--text-light);
    margin-bottom: 8px;
}

.wax-card-duration {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.wax-card-prices {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.wax-card-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.wax-card-gender {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.wax-card-amount {
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 500;
    color: var(--text-secondary);
}

/* CTA 버튼 — 유기체 호흡 글로우 */
.program-cta-btn {
    position: relative;
    overflow: hidden;
}

.program-cta-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-cta), var(--color-gold), var(--color-cta));
    z-index: -1;
    opacity: 0;
    animation: ctaGlowBreathe 4s ease-in-out infinite;
    filter: blur(8px);
}

@keyframes ctaGlowBreathe {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.5; }
}

/* 페이지 히어로에 호흡 애니메이션 (Phase A) */
.page-hero::after {
    transition: background 2s ease;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-label {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 8px;
    color: var(--color-gold);
    font-weight: 400;
    margin-bottom: 20px;
}

.page-hero-title {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 200;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}

.page-hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 3px;
    max-width: 560px;
    margin: 0 auto;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
}

/* === About 페이지 === */

/* 유기체 배경 오브 */
.about-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}

.about-orb-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, rgba(139, 34, 82, 0.08) 0%, transparent 70%);
    animation: organicDrift1 16s ease-in-out infinite;
}

.about-orb-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: -100px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    animation: organicDrift2 20s ease-in-out infinite;
}

/* 골드 텍스트 */
.text-gold {
    color: var(--color-gold);
}

/* 벤토 그리드 */
.about-bento {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.about-bento-main {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: cardBreathe 7s ease-in-out infinite;
}

.about-bento-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.about-bento-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-bento-text {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-bento-text strong {
    color: var(--text-primary);
}

.about-bento-stats {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid var(--glass-border);
    padding-top: 28px;
    margin-top: auto;
}

.about-stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
    letter-spacing: -2px;
}

.about-stat-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.about-bento-stat-right {
    text-align: right;
}

.about-stat-since {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.about-stat-location {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 예약 정책 카드 */
.about-bento-policy {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    animation: cardBreathe 8s ease-in-out infinite;
    animation-delay: -3s;
}

.about-bento-policy::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.about-policy-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.about-policy-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 12px;
    font-weight: 300;
}

.about-policy-highlight {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 28px;
}

.about-policy-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.about-policy-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.about-policy-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* 힐아티스트 인용 카드 */
.about-quote-card {
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--dark-surface) !important;
    border: 1px solid var(--glass-border) !important;
}

.about-quote-bg-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    pointer-events: none;
    color: var(--text-primary);
}

.about-quote-text {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-quote-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 24px;
}

.about-quote-desc strong {
    font-weight: 700;
}

.about-quote-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 24px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 핵심 가치 그리드 */
.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-value-card {
    padding: 36px 24px;
    text-align: center;
    animation: cardBreathe 6s ease-in-out infinite;
}

.about-value-card:nth-child(2) { animation-delay: -1.5s; }
.about-value-card:nth-child(3) { animation-delay: -3s; }
.about-value-card:nth-child(4) { animation-delay: -4.5s; }

.about-value-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.about-value-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.about-value-desc {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === 타임라인 (유기체 디자인) === */
.about-timeline-section {
    position: relative;
    overflow: hidden;
}

.about-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.about-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, var(--color-primary) 10%, var(--color-gold) 50%, var(--color-primary) 90%, transparent);
    opacity: 0.2;
}

.about-timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.about-timeline-item:last-child {
    margin-bottom: 0;
}

/* 기본: 왼쪽=연도, 오른쪽=내용 */
.about-timeline-left {
    text-align: right;
}

.about-timeline-right {
    text-align: left;
}

/* 반전: 왼쪽=내용, 오른쪽=연도 */
.about-timeline-item--reverse .about-timeline-left {
    text-align: right;
}

.about-timeline-item--reverse .about-timeline-right {
    text-align: left;
}

.about-timeline-year {
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 900;
    color: var(--glass-border);
    letter-spacing: -2px;
    line-height: 1;
}

.about-timeline-year--now {
    color: var(--color-gold);
    text-shadow: 0 0 30px rgba(201, 169, 110, 0.3);
}

.about-timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 3px rgba(139, 34, 82, 0.15);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.about-timeline-dot--gold {
    background: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.about-timeline-dot--active {
    width: 18px;
    height: 18px;
    background: var(--color-gold);
    border-color: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.2), 0 0 20px rgba(201, 169, 110, 0.3);
    animation: organicPulse 3s ease-in-out infinite;
}

.about-timeline-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.about-timeline-item--current .about-timeline-title {
    color: var(--color-gold);
}

.about-timeline-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-timeline-item--current .about-timeline-text {
    color: var(--text-secondary);
    font-weight: 400;
}

/* CTA 섹션 */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--dark-surface));
}

.about-cta-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
}

/* === About 반응형 === */
@media (max-width: 1024px) {
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-orb-1 { width: 300px; height: 300px; }
    .about-orb-2 { width: 250px; height: 250px; }

    .about-bento {
        grid-template-columns: 1fr;
    }

    .about-bento-main {
        padding: 32px 24px;
    }

    .about-bento-policy {
        padding: 32px 24px;
    }

    .about-stat-number {
        font-size: 40px;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-value-card {
        padding: 24px 16px;
    }

    .about-quote-card {
        padding: 40px 24px;
    }

    /* 타임라인 모바일 — 단일 컬럼 */
    .about-timeline-line {
        left: 20px;
    }

    .about-timeline-item,
    .about-timeline-item--reverse {
        grid-template-columns: auto 1fr;
        gap: 20px;
        margin-bottom: 48px;
    }

    .about-timeline-item .about-timeline-left,
    .about-timeline-item--reverse .about-timeline-right {
        display: none;
    }

    .about-timeline-item .about-timeline-right,
    .about-timeline-item--reverse .about-timeline-left {
        text-align: left;
        grid-column: 2;
        grid-row: 1;
    }

    .about-timeline-item .about-timeline-dot,
    .about-timeline-item--reverse .about-timeline-dot {
        grid-column: 1;
        grid-row: 1;
    }

    .about-timeline-year {
        font-size: 28px;
        display: block;
        margin-bottom: 4px;
        color: var(--color-gold);
        opacity: 0.5;
    }

    .about-timeline-year--now {
        opacity: 1;
    }

    /* 모바일에서 연도를 타이틀 위에 표시 */
    .about-timeline-item .about-timeline-right::before {
        content: attr(data-year);
        font-size: 28px;
        font-weight: 900;
        color: var(--color-gold);
        opacity: 0.4;
        display: block;
        margin-bottom: 4px;
    }

    .about-timeline-item--reverse .about-timeline-left::before {
        content: attr(data-year);
        font-size: 28px;
        font-weight: 900;
        color: var(--color-gold);
        opacity: 0.4;
        display: block;
        margin-bottom: 4px;
    }

    .about-timeline-item--current .about-timeline-left::before {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .about-values {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-value-card {
        padding: 20px 12px;
    }

    .about-value-icon svg {
        width: 28px;
        height: 28px;
    }

    .about-bento-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .about-bento-stat-right {
        text-align: left;
    }
}

/* === Programs 페이지 (v2) — 유기체 디자인 === */

/* 섹션 구조 */
.program-section {
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* 유기체 배경 블롭 (섹션별) */
.program-section::before,
.program-section::after {
    display: none;
}

.program-section-premium {
    background: transparent;
}

.program-section-premium::before,
.program-section-premium::after {
    display: none;
}

.program-section-header {
    text-align: center;
    padding: 60px 0 20px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.program-section-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--color-gold);
    font-weight: 400;
    margin-bottom: 16px;
    animation: labelBreathe 4s ease-in-out infinite;
}

/* 유기체 플로팅 키프레임 */
@keyframes organicFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(-30px, 20px) scale(1.05); opacity: 0.8; }
    50% { transform: translate(-15px, 40px) scale(0.95); opacity: 0.7; }
    75% { transform: translate(20px, 15px) scale(1.02); opacity: 0.9; }
}

@keyframes organicFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    33% { transform: translate(25px, -30px) scale(1.08); opacity: 0.7; }
    66% { transform: translate(-20px, -15px) scale(0.92); opacity: 0.8; }
}

@keyframes labelBreathe {
    0%, 100% { opacity: 0.7; letter-spacing: 4px; }
    50% { opacity: 1; letter-spacing: 5px; }
}

.program-section-title-text {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 200;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.program-section-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: var(--text-secondary);
    font-weight: 300;
}

.program-section-desc {
    text-align: center;
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-light);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

/* 유기체: 섹션 내 컨테이너 z-index */
.program-section > .container {
    position: relative;
    z-index: 1;
}

/* 카드 그리드 */
.program-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* 프로그램 카드 v2 — 유기체 카드 */
.program-card-v2 {
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: cardBreathe 6s ease-in-out infinite;
    position: relative;
}

/* 카드별 호흡 타이밍 엇갈림 (stagger) */
.program-card-v2:nth-child(1) { animation-delay: 0s; }
.program-card-v2:nth-child(2) { animation-delay: -2s; }
.program-card-v2:nth-child(3) { animation-delay: -4s; }

/* 카드 호버: 부드럽게 올라오며 글로우 */
.program-card-v2:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow:
        0 20px 60px rgba(139, 34, 82, 0.2),
        0 0 30px rgba(139, 34, 82, 0.08),
        inset 0 0 40px rgba(139, 34, 82, 0.03);
    border-color: var(--color-primary);
    animation-play-state: paused;
}

/* 카드 호흡 키프레임 */
@keyframes cardBreathe {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: translateY(-4px);
        box-shadow: 0 14px 45px rgba(0, 0, 0, 0.18), 0 0 20px rgba(139, 34, 82, 0.05);
    }
}

/* 카드 유기체 배경 메쉬 (이미지 대체) */
.program-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background:
        radial-gradient(ellipse 60% 40% at 25% 20%, rgba(139, 34, 82, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 75% 70%, rgba(201, 169, 110, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(91, 58, 140, 0.04) 0%, transparent 60%);
    animation: cardMeshShift 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.program-card-v2:nth-child(2)::before {
    animation-delay: -3.3s;
}

@keyframes cardMeshShift {
    0%, 100% {
        opacity: 0.4;
        background:
            radial-gradient(ellipse 60% 40% at 25% 20%, rgba(139, 34, 82, 0.08) 0%, transparent 70%),
            radial-gradient(ellipse 50% 50% at 75% 70%, rgba(201, 169, 110, 0.06) 0%, transparent 70%),
            radial-gradient(ellipse 40% 40% at 50% 50%, rgba(91, 58, 140, 0.04) 0%, transparent 60%);
    }
    33% {
        opacity: 0.7;
        background:
            radial-gradient(ellipse 55% 50% at 40% 35%, rgba(139, 34, 82, 0.10) 0%, transparent 70%),
            radial-gradient(ellipse 60% 40% at 60% 60%, rgba(201, 169, 110, 0.08) 0%, transparent 70%),
            radial-gradient(ellipse 45% 45% at 30% 70%, rgba(91, 154, 107, 0.05) 0%, transparent 60%);
    }
    66% {
        opacity: 0.55;
        background:
            radial-gradient(ellipse 50% 55% at 70% 25%, rgba(155, 109, 181, 0.07) 0%, transparent 70%),
            radial-gradient(ellipse 55% 45% at 30% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 70%),
            radial-gradient(ellipse 40% 50% at 55% 75%, rgba(139, 34, 82, 0.08) 0%, transparent 60%);
    }
}

.program-card-v2-body {
    padding: 48px 36px 36px;
    position: relative;
    z-index: 1;
}

.program-card-v2-header {
    text-align: center;
    margin-bottom: 24px;
}

.program-initial {
    display: block;
    font-size: clamp(4.5rem, 8vw, 7rem);
    font-weight: 100;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 16px;
    text-shadow: 0 0 25px rgba(139, 34, 82, 0.3);
    animation: initialGlow 5s ease-in-out infinite;
}

@keyframes initialGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(139, 34, 82, 0.3);
        opacity: 0.85;
    }
    50% {
        text-shadow: 0 0 35px rgba(139, 34, 82, 0.5), 0 0 60px rgba(139, 34, 82, 0.15);
        opacity: 1;
    }
}

.program-card-v2-name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.program-card-v2-sub {
    font-size: clamp(14px, 1.8vw, 17px);
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.program-card-v2-time {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-light);
    font-weight: 300;
}

/* 디바이더 (로즈골드 그라데이션) — 유기체 맥동 */
.program-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}

.program-divider::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -100%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    animation: dividerFlow 4s ease-in-out infinite;
}

@keyframes dividerFlow {
    0% { left: -60%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.program-card-v2-desc {
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    margin-bottom: 28px;
}

/* 인용 박스 */
.program-quote-box {
    background: rgba(139, 34, 82, 0.08);
    border-left: 3px solid var(--color-primary);
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 0 12px 12px 0;
}

.program-quote-box p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    text-align: center;
    font-size: clamp(14px, 1.3vw, 15px);
}

/* 가격 섹션 */
.program-pricing {
    margin-top: 24px;
    text-align: center;
}

.program-pricing-label {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 14px;
    font-weight: 400;
    letter-spacing: 1px;
}

.program-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

/* === 세로형 글래스 미니카드 (소메틱 리추얼 가격) === */
.journey-pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    perspective: 800px;
}

.price-card {
    position: relative;
    width: 96px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    overflow: hidden;
    cursor: default;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card-glass {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 0;
}

.price-card-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 8px;
    gap: 2px;
}

.price-card-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.price-card-time {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.price-card-line {
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold, #C9A96E), transparent);
    margin: 8px 0;
}

.price-card-amount {
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--color-gold, #C9A96E);
    text-shadow: 0 0 8px rgba(201, 169, 110, 0.2);
    line-height: 1;
}

.price-card-amount small {
    font-size: 0.75rem;
    font-weight: 400;
    margin-left: 1px;
    opacity: 0.7;
}

/* 호버: 부유 + 골드 글로우 */
.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 169, 110, 0.5);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 0 16px rgba(201, 169, 110, 0.15);
}

/* 잔상(Shadow Echo) */
.price-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease-out;
    pointer-events: none;
    z-index: 1;
}

.price-card:hover::after {
    opacity: 1;
}

/* 프로그램별 골드 톤 변주 */
.price-card[data-program="R"] .price-card-amount { color: #D4B06A; text-shadow: 0 0 10px rgba(212, 176, 106, 0.3); }
.price-card[data-program="C"] .price-card-amount { color: #B8976A; }

/* 콤보 카드: 약간 넓게 */
.price-card--combo { width: 108px; }

/* 코어 애드온 소형 */
.price-card--sm { width: 88px; min-height: 108px; }
.price-card--sm .price-card-body { padding: 10px 6px; }
.price-card--sm .price-card-amount { font-size: 1.2rem; }

/* 모바일 반응형 */
@media (max-width: 480px) {
    .price-card { width: 80px; min-height: 104px; }
    .price-card-amount { font-size: 1.2rem; }
    .price-card--combo { width: 92px; }
    .price-card--sm { width: 76px; min-height: 96px; }
    .price-card--sm .price-card-amount { font-size: 1.05rem; }
    .journey-pricing { gap: 10px; }
}

.price-tag {
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 14px;
    padding: 10px 22px;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.price-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price-tag:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.35);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.12);
}

.price-tag:hover::before {
    opacity: 1;
}

.price-tag strong {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.price-tag em {
    font-style: normal;
    font-weight: 600;
    color: var(--color-gold);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* === 왁싱 등급 그리드 === */
.wax-grade-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.wax-grade-card {
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardBreathe 6s ease-in-out infinite;
}

.wax-grade-card:nth-child(1) { animation-delay: 0s; }
.wax-grade-card:nth-child(2) { animation-delay: -2s; }
.wax-grade-card:nth-child(3) { animation-delay: -4s; }

.wax-grade-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18), 0 0 20px rgba(139, 34, 82, 0.06);
    animation-play-state: paused;
}

/* wax-grade-image 제거됨 — 이미지 대신 애니메이션 배경 사용 */

.wax-grade-body {
    padding: 24px;
    text-align: center;
}

.wax-grade-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.wax-grade-desc {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-bottom: 16px;
}

.wax-price-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.wax-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.wax-gender {
    font-size: 1.1rem;
    color: var(--text-light);
}

.wax-amount {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-gold);
}

/* 부위별 왁싱 */
.wax-parts-section {
    margin-top: 8px;
}

.wax-parts-title {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.wax-parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.wax-part-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: 10px;
}

.wax-part-name {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.wax-part-price {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-gold);
}

/* CTA 섹션 — 유기체 호흡 */
.program-cta-section {
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.program-cta-section::before {
    display: none;
}

@keyframes ctaBlobPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

/* 인용 박스 — 유기체 좌측선 맥동 */
.program-quote-box {
    position: relative;
}

.program-quote-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--color-primary), transparent);
    animation: quoteLinePulse 3s ease-in-out infinite;
}

@keyframes quoteLinePulse {
    0%, 100% { opacity: 0.5; height: 100%; }
    50% { opacity: 1; }
}

/* === 힐리스트 브랜드 스토리 === */

/* Brand Vision */
.hl-brand-vision {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hl-brand-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--color-gold);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hl-brand-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.hl-brand-title em {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 400;
}

.hl-brand-desc {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.9;
    font-weight: 300;
}

.hl-brand-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(139, 34, 82, 0.15), var(--bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    color: var(--text-light);
    text-align: center;
    padding: 24px;
    border: 1px solid var(--glass-border);
}

/* Healist Difference (레이더 차트) */
.hl-difference {
    padding: 48px;
    border-radius: var(--radius);
}

.hl-diff-header {
    text-align: center;
    margin-bottom: 48px;
}

.hl-diff-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.hl-diff-label {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--text-light);
    text-transform: uppercase;
}

.hl-diff-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hl-chart-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    aspect-ratio: 1;
}

.hl-chart-container canvas {
    width: 100% !important;
    height: 100% !important;
}

.hl-diff-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hl-diff-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.hl-diff-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-top: 2px;
}

.hl-diff-point h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.hl-diff-point p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Ritual Philosophy (벤토 카드) */
.hl-phil-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hl-phil-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.hl-phil-header h3 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 300;
    color: var(--text-primary);
}

.hl-phil-header p {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    max-width: 400px;
}

.hl-phil-card {
    padding: 36px 28px;
    border-radius: var(--radius);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hl-phil-card:hover {
    transform: scale(1.02);
}

.hl-phil-card--dark {
    background: linear-gradient(135deg, #1A1A2E, #2D1B3D) !important;
    border-color: rgba(139, 34, 82, 0.2) !important;
}

.hl-phil-card--dark .hl-phil-num {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-gold);
}

.hl-phil-card--dark h4 {
    color: #F5F5F5;
}

.hl-phil-card--dark p {
    color: rgba(255, 255, 255, 0.55);
}

.hl-phil-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.hl-phil-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.hl-phil-card p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* === Healers 페이지 === */
.healer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.healer-card {
    text-align: center;
    padding: 40px 24px;
    transition: var(--transition);
    cursor: pointer;
}

.healer-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
}

.healer-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--glass-border);
}

.healer-image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.healer-name {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 8px;
}

.healer-specialties {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.healer-specialty {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.healer-intro {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.healer-intro-brief {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.healer-card-more {
    display: inline-block;
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.healer-card:hover .healer-card-more {
    opacity: 1;
}

/* 힐리스트 모달 */
.healer-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.healer-modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.healer-modal {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 20px;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.healer-modal-backdrop.open .healer-modal {
    transform: translateY(0) scale(1);
}

.healer-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.healer-modal-close:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.healer-modal-body {
    padding: 40px 32px;
    text-align: center;
}

.healer-modal-profile {
    margin-bottom: 20px;
}

.healer-modal-image-wrap {
    margin-bottom: 16px;
}

.healer-modal-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.healer-modal-image-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

.healer-modal-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.healer-modal-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.healer-modal-spec-tag {
    padding: 4px 14px;
    border-radius: 14px;
    font-size: 12px;
    background: rgba(139, 34, 82, 0.12);
    border: 1px solid rgba(139, 34, 82, 0.25);
    color: var(--color-primary);
    font-weight: 500;
}

.healer-modal-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    margin: 20px 0;
}

.healer-modal-intro {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

/* 모달 역할 배지 */
.hm-role-badge {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    color: var(--color-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.08);
    margin-bottom: 8px;
}

/* 카드 역할 */
.healer-role {
    font-size: 12px;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: 400;
}

/* 모달 인용 */
.hm-quote {
    background: rgba(139, 34, 82, 0.08);
    border-left: 3px solid var(--color-primary);
    padding: 14px 18px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 20px;
}

.hm-quote p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    text-align: center;
    font-size: var(--font-size-sm);
}

/* 모달 상세 섹션 */
.hm-section {
    text-align: left;
    margin-bottom: 20px;
}

.hm-section-title {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.hm-section-icon {
    font-size: 15px;
}

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

.hm-list li {
    position: relative;
    padding-left: 16px;
    padding-bottom: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hm-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.5;
}

/* 모달 근무일정 캘린더 */
.hm-schedule-section {
    margin-top: 20px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
}
.hm-schedule-header { margin-bottom: 12px; }
.hm-schedule-loading {
    text-align: center;
    padding: 24px 0;
    color: var(--text-secondary);
    font-size: 13px;
}
.hm-schedule-legend {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 12px;
    font-size: 11px;
    color: var(--text-secondary);
}
.hm-legend-item { display: flex; align-items: center; gap: 4px; }
.hm-legend-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.hm-dot-work { background: var(--color-success); }
.hm-dot-off { background: #ef4444; }
.hm-dot-late { background: var(--color-gold); }

.hm-week-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 4px;
}
.hm-dow {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 4px 0;
}
.hm-dow.hm-weekend { color: #ef4444; opacity: 0.7; }
.hm-week-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 3px;
}
.hm-day {
    position: relative;
    text-align: center;
    padding: 6px 2px;
    border-radius: 6px;
    min-height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s;
}
.hm-day--work {
    background: rgba(80, 137, 75, 0.12);
    border: 1px solid rgba(80, 137, 75, 0.2);
}
.hm-day--off {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.15);
}
.hm-day--late {
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.2);
}
.hm-day--past {
    opacity: 0.35;
}
.hm-day--today {
    box-shadow: 0 0 0 2px var(--color-primary);
}
.hm-day-num {
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
}
.hm-day-label {
    font-size: 9px;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: var(--text-secondary);
}

/* 모달 하단 버튼 */
.hm-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.hm-btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: var(--font-size-sm);
    border-radius: var(--radius-md);
    white-space: nowrap;
}

@media (max-width: 400px) {
    .hm-actions {
        flex-direction: column;
        gap: 8px;
    }
    .hm-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    background: transparent;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* === 예약 페이지 === */
.reservation-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.reservation-step {
    text-align: center;
    opacity: 0.4;
    transition: var(--transition);
}

.reservation-step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 700;
    font-size: var(--font-size-sm);
}

.reservation-step.active .step-number {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.step-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.reservation-form {
    max-width: 600px;
    margin: 0 auto;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.time-slot {
    padding: 12px;
    text-align: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover {
    border-color: var(--color-primary);
}

.time-slot.selected {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.time-slot.unavailable {
    opacity: 0.3;
    pointer-events: none;
    text-decoration: line-through;
}

/* === SNS 허브 === */
.sns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.sns-card {
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.sns-card:hover {
    transform: translateY(-4px);
}

.sns-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.sns-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sns-youtube { background: #FF0000; }
.sns-blog { background: #03C75A; }
.sns-kakao { background: #FEE500; color: #191919; }
.sns-cafe { background: #03C75A; }

.sns-card-name {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 8px;
}

.sns-card-desc {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* SNS 최근 게시글 그리드 */
.sns-recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.sns-recent-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sns-recent-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 12px rgba(212, 175, 55, 0.08);
}

.sns-recent-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sns-recent-board {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.6);
}

.sns-recent-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

.sns-recent-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.sns-recent-excerpt {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
}

.sns-recent-stats {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
}

/* === 반응형 === */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 24px 60px;
    }

    .about-bento {
        grid-template-columns: 1fr;
    }

    .program-cards-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .program-card-v2-body {
        padding: 36px 24px 28px;
    }

    .program-initial {
        font-size: 3.5rem;
    }

    /* 유기체 오브 — 모바일 축소 */
    .programs-orb-1 { width: 200px; height: 200px; }
    .programs-orb-2 { width: 150px; height: 150px; }
    .programs-orb-3 { width: 120px; height: 120px; }

    .program-tab {
        padding: 16px 24px;
    }

    .program-tab-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .program-tab-name {
        font-size: 13px;
    }

    .wax-grade-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* wax 이미지 제거됨 */

    /* 저니 — 모바일 */
    .journey-guideline { display: none; }
    .journey-nav { display: none; }

    .journey-station { min-height: 80vh; }
    .journey-prologue { min-height: 50vh; padding: 60px 20px; }
    .sensory-intro { min-height: 50vh; padding: 60px 20px; }
    .afterglow-section { min-height: 50vh; padding: 60px 20px; }

    .journey-anchor { font-size: clamp(8rem, 30vw, 14rem); }

    .journey-content { padding: 32px 20px; }

    .journey-addon { flex-direction: column; gap: 16px; padding: 40px 20px; }

    .afterglow-btn { padding: 16px 36px; font-size: 14px; }

    .wax-parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hl-brand-vision {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hl-brand-image {
        aspect-ratio: 3/2;
    }

    .hl-difference {
        padding: 32px 20px;
    }

    .hl-diff-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hl-chart-container {
        max-width: 320px;
    }

    .hl-phil-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .reservation-steps {
        gap: 20px;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .sns-recent-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .program-card-v2-body {
        padding: 32px 20px 24px;
    }

    .program-initial {
        font-size: 3rem;
    }

    .price-tag {
        padding: 5px 8px;
        font-size: 0.76rem;
    }

    .wax-parts-grid {
        grid-template-columns: 1fr;
    }

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

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 프로그램 유기체 접근성: 모션 감소 */
@media (prefers-reduced-motion: reduce) {
    .programs-hero-mesh,
    .programs-hero .page-hero-content,
    .program-section::before,
    .program-section::after,
    .program-card-v2,
    .program-card-v2::before,
    .wax-card::before,
    .wax-grade-card,
    .wax-card,
    .program-initial,
    .program-section-label,
    .program-tab.active::after,
    .program-cta-section::before,
    .program-quote-box::before,
    .programs-orb,
    .program-cta-btn::before {
        animation: none;
    }
    .program-divider::after {
        animation: none;
        display: none;
    }

    /* 저니 모션 감소 */
    .journey-prologue-arrow,
    .journey-prologue-label,
    .sensory-intro-label,
    .journey-addon-dot,
    .journey-guideline.is-active,
    .journey-guideline.is-active::after {
        animation: none;
    }
    .journey-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .journey-anchor {
        will-change: auto;
    }
}

/* =========================================
   소메틱 컨디션 체크 (예약 페이지)
   ========================================= */

.condition-section {
    padding-bottom: 0;
}

.condition-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.condition-icon {
    width: 48px;
    height: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.condition-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.condition-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

.condition-input-area {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
}

.condition-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-primary);
    resize: vertical;
    transition: border-color 0.3s;
    font-family: inherit;
}

.condition-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.condition-input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.condition-input-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: flex-end;
}

.condition-btn-analyze {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--color-gold), #D4B87A);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.condition-btn-analyze:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
}

.condition-btn-analyze:active {
    transform: translateY(0);
}

.condition-btn-skip {
    padding: 12px 20px;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.condition-btn-skip:hover {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
}

/* 결과 영역 */
.condition-result-inner {
    animation: condFadeIn 0.6s ease-out;
}

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

.condition-chart-insight {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.energy-chart-wrap {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-card {
    padding: 24px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.insight-label span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

.insight-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.voice-control {
    margin-bottom: 12px;
}

.voice-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-gold);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.voice-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}

.voice-btn.playing {
    animation: voicePulse 1.5s infinite;
}

@keyframes voicePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(201, 169, 110, 0); }
}

.insight-disclaimer {
    font-size: 11px;
    color: var(--text-light);
    opacity: 0.6;
}

/* 추천 프로그램 */
.condition-programs {
    margin-bottom: 24px;
}

.cp-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.program-rec-card {
    padding: 20px !important;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid var(--glass-border) !important;
}

.program-rec-card:hover {
    border-color: var(--color-gold) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.15);
}

.prc-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    background: rgba(201, 169, 110, 0.1);
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.prc-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.prc-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.prc-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.prc-reason {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

/* 로딩 & 에러 */
.condition-loading {
    text-align: center;
    padding: 60px 20px;
}

.condition-spinner {
    margin-bottom: 20px;
}

.condition-loading-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.condition-loading-sub {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.condition-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px !important;
    color: #E8734A;
    font-size: 14px;
}

/* 리셋 버튼 */
.condition-actions {
    text-align: center;
    padding-top: 8px;
}

.condition-btn-reset {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.condition-btn-reset:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* 예약 링크 카드 */
.reservation-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    margin-bottom: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.reservation-link-card:hover {
    transform: translateY(-2px);
}

.rl-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rl-info {
    flex: 1;
}

.rl-info h3 {
    font-size: 17px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.rl-info p {
    color: var(--text-secondary);
    font-size: 13px;
}

.rl-arrow {
    flex-shrink: 0;
}

/* 운영 안내 */
.reservation-info-box {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
}

.reservation-info-box h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.reservation-info-box ul {
    list-style: none;
    padding: 0;
}

.reservation-info-box li {
    color: var(--text-light);
    font-size: 13px;
    line-height: 2;
    padding-left: 12px;
    position: relative;
}

.reservation-info-box li::before {
    content: '\00B7';
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ═══ 예약 문의 폼 ═══ */
.inquiry-section {
    padding-top: 0;
}

.inquiry-card {
    padding: 32px;
}

.inquiry-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}

.inquiry-header svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.inquiry-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.inquiry-subtitle {
    font-size: 13px;
    color: var(--text-light);
}

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

.inquiry-form .form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.inquiry-form .form-label .required {
    color: var(--color-cta);
    font-size: 12px;
}

.inquiry-form .form-input,
.inquiry-form .form-select,
.inquiry-form .form-textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.inquiry-form .form-input:focus,
.inquiry-form .form-select:focus,
.inquiry-form .form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.inquiry-form .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.inquiry-form .form-select option,
.inquiry-form .form-select optgroup {
    background: #1a1a2e;
    color: var(--text-primary);
}

.inquiry-form .form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-warn {
    font-size: 12px;
    color: var(--color-cta);
    margin-top: 6px;
}

.inquiry-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--color-gold), #B8944F);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.inquiry-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.inquiry-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.inquiry-submit-btn .spin {
    animation: inquirySpin 1s linear infinite;
}

@keyframes inquirySpin {
    to { transform: rotate(360deg); }
}

.inquiry-error {
    padding: 12px 16px;
    background: rgba(232, 115, 74, 0.12);
    border: 1px solid rgba(232, 115, 74, 0.3);
    border-radius: 10px;
    color: var(--color-cta);
    font-size: 13px;
    margin-bottom: 20px;
}

.inquiry-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* 문의 성공 */
.inquiry-success-inner {
    text-align: center;
    padding: 32px 16px;
}

.inquiry-success-icon {
    margin-bottom: 16px;
}

.inquiry-success-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.inquiry-success-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.inquiry-success-desc strong {
    color: var(--color-gold);
}

.inquiry-success-sub {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 16px;
}

/* 세션 신청 성공 */
.wf-success {
    text-align: center;
    padding: 48px 24px;
}

.wf-success-icon {
    margin-bottom: 20px;
}

.wf-success-title {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.wf-success-date {
    font-size: 15px;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.wf-success-desc {
    font-size: 13px;
    color: var(--text-light);
}

/* 미지정/휴면 회원 안내 */
.inquiry-grade-notice {
    text-align: center;
    padding: 40px 24px;
}

.inquiry-grade-notice svg {
    margin-bottom: 16px;
}

.inquiry-grade-notice h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.inquiry-grade-notice p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* AI 추천에서 폼으로 이동 시 하이라이트 (유기체 버전은 위에서 정의) */

/* ═══ 예약 페이지 유기체 디자인 ═══ */

/* 예약 히어로 오브 */
.reservation-hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.res-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.res-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(201, 169, 110, 0.12);
    top: -60px;
    left: 10%;
    animation: orbDrift2 14s ease-in-out infinite;
}

.res-orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(139, 34, 82, 0.10);
    bottom: -80px;
    right: 15%;
    animation: orbDrift1 11s ease-in-out infinite;
}

.res-orb-3 {
    width: 180px;
    height: 180px;
    background: rgba(91, 154, 107, 0.06);
    top: 40%;
    right: 30%;
    animation: orbDrift3 17s ease-in-out infinite;
}

/* 유기체 섹션 연결선 */
.organic-flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    opacity: 0;
    transform: scaleY(0.3);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.organic-flow-connector.visible {
    opacity: 1;
    transform: scaleY(1);
}

.organic-flow-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--color-gold), transparent);
    animation: flowLinePulse 3s ease-in-out infinite;
}

.organic-flow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
    animation: flowDotPulse 2s ease-in-out infinite;
}

@keyframes flowLinePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes flowDotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(201, 169, 110, 0.4); }
    50% { transform: scale(1.3); box-shadow: 0 0 20px rgba(201, 169, 110, 0.6); }
}

/* 예약 문의 섹션 — 유기체 배경 */
.inquiry-section {
    position: relative;
}

.inquiry-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: organicFloat1 14s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.inquiry-card {
    position: relative;
    z-index: 1;
    animation: cardBreathe 7s ease-in-out infinite;
}

/* 예약 문의 하이라이트 — 유기체 확산 효과 */
.inquiry-highlight .inquiry-card {
    animation: inquiryPulseOrganic 1.2s ease-out;
}

@keyframes inquiryPulseOrganic {
    0% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.5); border-color: var(--color-gold); }
    40% { box-shadow: 0 0 0 15px rgba(201, 169, 110, 0.15); }
    100% { box-shadow: none; border-color: var(--glass-border); }
}

/* 예약 방법 섹션 유기체 */
.reservation-methods-section {
    position: relative;
}

.reservation-methods-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 34, 82, 0.04) 0%, transparent 70%);
    bottom: -80px;
    left: -100px;
    animation: organicFloat2 16s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* 예약 링크 카드 — 유기체 호흡 */
.reservation-link-card {
    animation: cardBreathe 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.reservation-link-card:nth-child(1) { animation-delay: 0s; }
.reservation-link-card:nth-child(2) { animation-delay: -2s; }
.reservation-link-card:nth-child(3) { animation-delay: -4s; }

.reservation-link-card:hover {
    animation-play-state: paused;
}

/* ═══ 컨디션 결과 → CTA 흐름 ═══ */
.condition-cta-flow {
    margin-top: 32px;
    animation: condFadeIn 0.8s ease-out 0.3s both;
}

.cta-flow-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.cta-flow-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    animation: flowLinePulse 3s ease-in-out infinite;
}

.cta-flow-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    font-weight: 600;
    white-space: nowrap;
}

.cta-flow-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cta-flow-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 16px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 16px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-flow-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-flow-primary:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold);
    box-shadow: 0 12px 30px rgba(201, 169, 110, 0.2);
}

.cta-flow-primary:hover::before { opacity: 1; }

.cta-flow-primary svg {
    color: var(--color-gold);
    position: relative;
    z-index: 1;
}

.cta-flow-primary span {
    font-size: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.cta-flow-primary small {
    font-size: 11px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.cta-flow-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 24px 16px;
    background: linear-gradient(135deg, rgba(91, 154, 107, 0.12), rgba(91, 154, 107, 0.04));
    border: 1px solid rgba(91, 154, 107, 0.25);
    border-radius: 16px;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-flow-phone:hover {
    transform: translateY(-4px);
    border-color: #5B9A6B;
    box-shadow: 0 12px 30px rgba(91, 154, 107, 0.2);
}

.cta-flow-phone svg { color: #5B9A6B; }

.cta-flow-phone span {
    font-size: 15px;
    font-weight: 600;
}

.cta-flow-phone small {
    font-size: 11px;
    color: var(--text-light);
}

/* 추천 카드 선택 힌트 */
.prc-select-hint {
    display: block;
    margin-top: 10px;
    font-size: 11px;
    color: var(--color-gold);
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s ease;
}

.program-rec-card:hover .prc-select-hint {
    opacity: 1;
    transform: translateY(0);
}

/* 추천 카드 stagger reveal */
.program-rec-card {
    animation: condFadeIn 0.5s ease-out both;
}

/* 컨디션 섹션 유기체 배경 */
.condition-section {
    position: relative;
    overflow: hidden;
}

.condition-section::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
    top: -120px;
    left: -120px;
    animation: organicFloat2 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.condition-section > .container {
    position: relative;
    z-index: 1;
}

/* 모바일 CTA 버튼 */
@media (max-width: 768px) {
    .cta-flow-buttons {
        grid-template-columns: 1fr;
    }
    .res-orb-1 { width: 180px; height: 180px; }
    .res-orb-2 { width: 150px; height: 150px; }
    .res-orb-3 { width: 100px; height: 100px; }
    .condition-section::before { width: 250px; height: 250px; }
    .inquiry-section::before { width: 200px; height: 200px; }
    .reservation-methods-section::before { width: 200px; height: 200px; }
}

/* 유기체 접근성 */
@media (prefers-reduced-motion: reduce) {
    .res-orb,
    .organic-flow-line,
    .organic-flow-dot,
    .reservation-link-card,
    .inquiry-card,
    .condition-section::before,
    .inquiry-section::before,
    .reservation-methods-section::before,
    .cta-flow-line {
        animation: none;
    }
    .organic-flow-connector {
        opacity: 1;
        transform: none;
    }
}

/* 마이페이지 문의 내역 */
.inquiry-status {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.inquiry-status.status-pending {
    background: rgba(201, 169, 110, 0.15);
    color: var(--color-gold);
}

.inquiry-status.status-confirmed {
    background: rgba(91, 154, 107, 0.15);
    color: var(--color-success, #5B9A6B);
}

.inquiry-status.status-changed {
    background: rgba(91, 58, 140, 0.15);
    color: var(--color-vip, #5B3A8C);
}

.inquiry-status.status-cancelled {
    background: rgba(232, 115, 74, 0.12);
    color: var(--color-cta);
}

/* 반응형 */
@media (max-width: 768px) {
    .condition-chart-insight {
        grid-template-columns: 1fr;
    }

    .energy-chart-wrap {
        max-width: 100%;
        margin: 0 auto;
        padding: 28px 16px;
    }

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

    .condition-input-actions {
        flex-direction: column-reverse;
    }

    .condition-btn-analyze,
    .condition-btn-skip {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .inquiry-card {
        padding: 24px 18px;
    }

    .inquiry-header {
        gap: 10px;
    }

    .inquiry-title {
        font-size: 18px;
    }
}

/* ═══ 칩(Chip) 그룹 — 복수 선택 UI ═══ */

.inq-chip-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.inq-chip-wrap {
    gap: 6px;
}

.inq-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.inq-chip:hover {
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(201, 169, 110, 0.06);
    color: var(--text-primary);
}

.inq-chip.active {
    background: rgba(201, 169, 110, 0.15);
    border-color: var(--color-gold);
    color: var(--color-gold);
    font-weight: 600;
    box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.1);
}

.inq-chip-icon {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.inq-chip span small {
    display: block;
    font-size: 10px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 1px;
}

.inq-chip.active span small {
    color: rgba(201, 169, 110, 0.7);
}

/* AI 추천 칩 — 특별 스타일 */
.inq-chip-ai {
    background: linear-gradient(135deg, rgba(232, 115, 74, 0.08), rgba(201, 169, 110, 0.08));
    border-color: rgba(232, 115, 74, 0.25);
    color: var(--color-cta);
}

.inq-chip-ai:hover {
    background: linear-gradient(135deg, rgba(232, 115, 74, 0.15), rgba(201, 169, 110, 0.12));
    border-color: var(--color-cta);
    box-shadow: 0 0 12px rgba(232, 115, 74, 0.15);
}

.inq-chip-ai .inq-chip-icon svg {
    stroke: var(--color-cta);
}

/* 폼 힌트 */
.form-hint {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 4px;
}

/* 칩 그룹 반응형 */
@media (max-width: 768px) {
    .inq-chip {
        padding: 8px 12px;
        font-size: 12px;
    }

    .inq-chip-group {
        gap: 6px;
    }
}

/* =========================================
   법적 페이지 (이용약관 / 개인정보처리방침)
   ========================================= */

.legal-section {
    padding: 40px 0 80px;
}

.legal-toc {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 40px;
}

.legal-toc-title {
    font-size: 16px;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.legal-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
}

.legal-toc-list li {
    margin: 0;
}

.legal-toc-list a {
    display: block;
    padding: 10px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    border-left: 2px solid rgba(201, 169, 110, 0.3);
    border-radius: 0 8px 8px 0;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.25s ease;
}

.legal-toc-list a:hover {
    background: rgba(201, 169, 110, 0.08);
    border-left-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateX(4px);
}

.legal-article {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 20px;
    scroll-margin-top: 80px;
    transition: background 0.3s ease;
}

.legal-article:hover {
    background: rgba(255, 255, 255, 0.04);
}

.legal-article-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.legal-num {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold), #b8956a);
    color: var(--color-bg);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.legal-article-body {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.legal-article-body p {
    margin-bottom: 12px;
}

.legal-article-body ol,
.legal-article-body ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-article-body li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.legal-article-body strong {
    color: var(--text-primary);
}

.legal-article-body a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-note {
    background: rgba(201, 169, 110, 0.08);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
    padding: 12px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.legal-info-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 12px;
}

.legal-info-box p {
    margin-bottom: 6px;
    font-size: 14px;
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

/* 이메일무단수집거부 경고 박스 */
.legal-warning-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(232, 115, 74, 0.08);
    border: 1px solid rgba(232, 115, 74, 0.25);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 32px;
}

.legal-warning-icon {
    flex-shrink: 0;
    color: var(--color-cta);
}

.legal-warning-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-warning-text strong {
    color: var(--color-cta);
}

/* 법적 페이지 하단 정보 */
.legal-footer-info {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 32px;
}

.legal-footer-info p {
    margin-bottom: 6px;
    font-size: 14px;
    color: var(--text-secondary);
}

.legal-footer-info p:last-child {
    margin-bottom: 0;
}

.legal-footer-info strong {
    color: var(--text-primary);
}

/* Footer 이메일 무단수집 거부 */
.footer-email-notice {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 8px;
    line-height: 1.5;
}

/* 법적 페이지 모바일 */
@media (max-width: 768px) {
    .legal-section {
        padding: 24px 0 60px;
    }

    .legal-toc {
        padding: 20px;
    }

    .legal-toc-list {
        grid-template-columns: 1fr;
    }

    .legal-article {
        padding: 20px;
    }

    .legal-article-title {
        font-size: 16px;
        flex-wrap: wrap;
    }
}

/* =========================================
   서비스 유형 선택
   ========================================= */

.service-type-section {
    padding-top: 0;
}

.service-type-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-title-sm {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.service-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-type-card {
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-type-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 110, 0.4);
}

.service-type-card.selected {
    border-color: var(--color-gold);
    background: rgba(201, 169, 110, 0.08);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.1);
}

.stc-icon {
    margin-bottom: 14px;
}

.service-type-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-type-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* =========================================
   왁싱 가이드
   ========================================= */

.waxing-guide-card {
    padding: 40px 32px;
    text-align: center;
}

.waxing-guide-header {
    margin-bottom: 24px;
}

.waxing-guide-header h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 12px 0 6px;
}

.waxing-guide-header p {
    font-size: 13px;
    color: var(--text-light);
}

.waxing-guide-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.waxing-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.waxing-back-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* =========================================
   세션 신청 프리미엄 싱글 폼
   ========================================= */

/* ── 폼 카드 ── */
.wiz-form-card {
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.12);
}

.wiz-form-card:hover {
    transform: none;
}

/* ── 헤더 ── */
.wiz-form-header {
    text-align: center;
    padding: 36px 32px 28px;
    position: relative;
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.06) 0%, transparent 100%);
}

.wiz-form-header-line {
    width: 40px;
    height: 2px;
    background: var(--color-gold);
    margin: 0 auto 16px;
    border-radius: 1px;
}

.wiz-form-header-label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.wiz-form-header-title {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--text-primary);
}

/* ── 폼 바디 ── */
.wiz-form-body {
    padding: 0 32px;
}

/* ── 섹션 ── */
.wf-section {
    padding: 24px 0;
}

.wf-section-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.wf-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-gold);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 8px;
    background: rgba(201, 169, 110, 0.04);
    flex-shrink: 0;
    margin-top: 1px;
}

.wf-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.wf-desc {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.2px;
}

.wf-field {
    padding-left: 46px;
}

.wf-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.12), transparent);
    margin: 0;
}

/* ── 날짜 입력 ── */
.wf-date-input {
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 10px;
    width: 100%;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.3s;
}

.wf-date-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}

/* ── 시간대 슬롯 ── */
.wf-slot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.wf-slot-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 14px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
}

.wf-slot-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.wf-slot-chip:hover {
    border-color: rgba(201, 169, 110, 0.2);
}

.wf-slot-chip:hover::before {
    opacity: 1;
}

.wf-slot-chip.active {
    border-color: var(--color-gold);
    background: rgba(201, 169, 110, 0.08);
    box-shadow: 0 0 16px rgba(201, 169, 110, 0.08);
}

.wf-slot-chip.active::before {
    opacity: 1;
}

.wf-slot-time {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-light);
    transition: color 0.3s;
}

.wf-slot-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.wf-slot-chip.active .wf-slot-time {
    color: rgba(201, 169, 110, 0.7);
}

.wf-slot-chip.active .wf-slot-label {
    color: var(--color-gold);
}

/* ── 힐아티스트 ── */
.wf-healer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wf-healer-chip {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.wf-healer-chip:hover {
    border-color: rgba(201, 169, 110, 0.25);
    background: rgba(201, 169, 110, 0.04);
}

.wf-healer-chip.active {
    border-color: var(--color-gold);
    background: rgba(201, 169, 110, 0.1);
}

.wf-healer-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.wf-healer-chip.active .wf-healer-name {
    color: var(--color-gold);
}

/* ── 요청사항 ── */
.wf-memo {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
    transition: border-color 0.3s;
}

.wf-memo:focus {
    outline: none;
    border-color: rgba(201, 169, 110, 0.4);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.06);
}

.wf-memo::placeholder {
    color: var(--text-light);
    font-size: 13px;
}

/* ── 제출 영역 ── */
.wf-submit-area {
    padding: 28px 32px 36px;
    text-align: center;
    position: relative;
}

.wf-submit-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.15), transparent);
}

.wf-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 48px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--bg-primary);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.wf-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.wf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
}

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

.wf-submit-btn:active {
    transform: translateY(0);
}

.wf-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.wf-submit-btn .spin {
    animation: wizSpin 1s linear infinite;
}

.wf-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 14px;
    letter-spacing: 0.3px;
}

/* ── 프로그램 휠 피커 ── */
.wheel-picker-wrap {
    position: relative;
}

.wheel-picker {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.wheel-picker-scroller {
    height: 100%;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.wheel-picker-scroller::-webkit-scrollbar {
    display: none;
}

.wheel-picker-pad {
    height: 96px; /* (240 - 48) / 2 = 96 */
    scroll-snap-align: none;
}

.wheel-picker-item {
    height: 48px;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.35;
    position: relative;
}

.wheel-picker-item.wpi-center,
.wheel-picker-item.active {
    opacity: 1;
}

.wheel-picker-item.wpi-center {
    transform: scale(1.02);
}

.wheel-picker-highlight {
    position: absolute;
    top: 50%;
    left: 12px;
    right: 12px;
    height: 48px;
    transform: translateY(-50%);
    border-top: 1px solid rgba(201, 169, 110, 0.3);
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    background: rgba(201, 169, 110, 0.06);
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

.wheel-picker-fade {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 2;
}

.wheel-picker-fade-top {
    top: 0;
    background: linear-gradient(to bottom, var(--color-bg, #0a0a1a), transparent);
}

.wheel-picker-fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, var(--color-bg, #0a0a1a), transparent);
}

.wpi-code {
    display: inline-block;
    min-width: 48px;
    padding: 3px 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-gold);
    background: rgba(201, 169, 110, 0.1);
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;
}

.wpi-name {
    flex: 1;
    font-size: 13px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wpi-dur {
    font-size: 11px;
    color: var(--text-light);
    opacity: 0.7;
    white-space: nowrap;
}

.wpi-lock {
    color: var(--text-light);
    opacity: 0.5;
}

.wpi-locked {
    opacity: 0.25;
    cursor: not-allowed;
}

/* AI 추천 뱃지 (휠 피커) */
.wpi-ai-badge {
    position: absolute;
    top: 4px;
    right: 8px;
    background: var(--color-gold);
    color: var(--color-bg);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.wpi-recommended {
    background: rgba(201, 169, 110, 0.06);
}

.wheel-picker-selected {
    text-align: center;
    margin-top: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gold);
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 10px;
}

/* 잠긴 프로그램 (레거시) */
.wizard-chip-locked {
    opacity: 0.35;
    cursor: not-allowed;
}

/* 토스트 */
.wizard-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(12, 12, 18, 0.95);
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 13px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    backdrop-filter: blur(12px);
}

.wizard-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* AI 추천 텍스트 (카드 그리드 대신) */
.condition-recommend-text {
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(201, 169, 110, 0.06);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
}

.crt-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.condition-recommend-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* AI 추천 리추얼 카드 (condition-recommend-card) */
.condition-recommend-card {
    margin-top: 18px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, rgba(139,34,82,0.06) 100%);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}
.condition-recommend-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
    border-radius: 16px 16px 0 0;
}
.condition-recommend-card:hover {
    border-color: rgba(201,169,110,0.35);
}

.crc-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.crc-program {
    margin-bottom: 12px;
}
.crc-program h4 {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 4px;
    line-height: 1.4;
}
.crc-category {
    font-size: 12px;
    color: var(--text-light);
    margin: 0 0 6px;
}
.crc-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.crc-type-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
    border-radius: 20px;
    margin-bottom: 8px;
}

.crc-reason {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 16px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    border-left: 2px solid rgba(201,169,110,0.3);
}

.crc-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--color-gold), #A07340);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.crc-book-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}
.crc-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.3);
}
.crc-book-btn:hover::before {
    left: 100%;
}
.crc-book-btn:active {
    transform: translateY(0);
}

.crc-alternatives {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(201,169,110,0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.crc-alt-label {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-right: 4px;
}
.crc-alt-btn {
    padding: 6px 14px;
    font-size: 12px;
    color: var(--text-secondary);
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s;
}
.crc-alt-btn:hover {
    color: var(--color-gold);
    background: rgba(201,169,110,0.15);
    border-color: rgba(201,169,110,0.3);
}

/* 다크모드 AI 추천 카드 조정 */
.condition-recommend-card {
    background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, rgba(139,34,82,0.04) 100%);
}
.crc-reason {
    background: rgba(255,255,255,0.02);
}
.crc-alt-btn {
    background: rgba(201,169,110,0.06);
}

/* inquiry-highlight 하이라이트 효과 */
.inquiry-highlight {
    animation: inquiryPulse 2.5s ease;
}
@keyframes inquiryPulse {
    0% { box-shadow: 0 0 0 0 rgba(201,169,110,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(201,169,110,0); }
    100% { box-shadow: none; }
}

/* spin 애니메이션 */

@keyframes wizSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ═══ 세션 신청 폼 모바일 ═══ */
@media (max-width: 768px) {
    .service-type-selector {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-type-card {
        padding: 24px 16px;
    }

    .wiz-form-header {
        padding: 28px 20px 22px;
    }

    .wiz-form-header-title {
        font-size: 20px;
    }

    .wiz-form-body {
        padding: 0 20px;
    }

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

    .wf-field {
        padding-left: 0;
    }

    .wf-date-input {
        max-width: 100%;
    }

    .wf-slot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .wf-healer-grid {
        gap: 6px;
    }

    .wf-healer-chip {
        padding: 8px 16px;
    }

    .wf-submit-area {
        padding: 24px 20px 32px;
    }

    .wf-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }

    .waxing-guide-card {
        padding: 28px 20px;
    }

    .resv-other-links {
        gap: 10px;
    }

    .wizard-trigger-btn {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .condition-skip-book-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   예약 페이지 원페이지 통합 레이아웃
   ========================================= */

/* 전체 래퍼: 배경 통일 */
.reservation-page {
    position: relative;
}

/* 섹션 간 배경 투명 - 끊김 제거 */
.resv-flow-section {
    padding: 40px 0;
    background: transparent;
    position: relative;
}
.resv-flow-section:first-of-type {
    padding-top: 20px;
}

/* 섹션별 ::before 장식 제거 (원페이지에서 조잡해지는 원인) */
.reservation-page .condition-section::before,
.reservation-page .inquiry-section::before,
.reservation-page .reservation-methods-section::before,
.reservation-page .resv-other-methods::before {
    display: none;
}

/* 히어로 orb도 제거 (배경에 이미 유기체 orb 있음) */
.reservation-hero-orbs {
    display: none;
}

/* ── 위자드 숨김/펼침 ── */
.wizard-collapsed {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0;
    pointer-events: none;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                padding 0.4s ease;
}

.wizard-expanding {
    max-height: 2000px;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease 0.1s,
                padding 0.4s ease;
}

.inquiry-section:not(.wizard-collapsed):not(.wizard-expanding) {
    max-height: none;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
}

/* ── 세션 신청 트리거 버튼 ── */
.wizard-trigger-section {
    padding: 20px 0 40px;
    text-align: center;
}

.wizard-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border: 1px solid var(--color-gold);
    border-radius: 14px;
    background: rgba(201, 169, 110, 0.08);
    color: var(--color-gold);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wizard-trigger-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.wizard-trigger-btn:hover {
    background: rgba(201, 169, 110, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.15);
}

.wizard-trigger-btn:hover::before {
    opacity: 1;
}

.wizard-trigger-btn:active {
    transform: translateY(0);
}

.wizard-trigger-arrow {
    transition: transform 0.3s;
}

.wizard-trigger-btn:hover .wizard-trigger-arrow {
    transform: translateY(2px);
}

/* ── 컨디션 결과: 세션 신청 CTA (insight 카드 외부) ── */
.condition-cta-area {
    text-align: center;
    padding: 24px 0;
}

.condition-cta-book {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-gold), #A07340);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.condition-cta-book::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.condition-cta-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 169, 110, 0.35);
}

.condition-cta-book:hover::before {
    left: 100%;
}

.condition-cta-book:active {
    transform: translateY(0);
}

/* ── 건너뛰기 결과 ── */
.condition-skip-result {
    text-align: center;
    padding: 40px 20px;
    animation: condSkipFadeIn 0.4s ease;
}

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

.condition-skip-text {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.condition-skip-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-gold), #b8956a);
    color: var(--color-bg);
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.condition-skip-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.condition-skip-book-btn:active {
    transform: translateY(0);
}

.condition-skip-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 16px auto 0;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text-light);
    font-size: 13px;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.3s;
}

.condition-skip-back-btn:hover {
    color: var(--text-secondary);
}

/* 서비스 선택 섹션 라벨 */
.resv-section-label {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

/* 기타 예약 방법 (간소화) */
.resv-other-methods {
    padding-top: 24px;
    padding-bottom: 48px;
}

.resv-other-label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.resv-other-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 카드 스크롤 fade-in 등장 */
.resv-fade-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.resv-fade-card:nth-child(1) { transition-delay: 0s; }
.resv-fade-card:nth-child(2) { transition-delay: 0.12s; }
.resv-fade-card:nth-child(3) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .resv-fade-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* 운영안내 박스 간소화 */
.reservation-page .reservation-info-box {
    margin-top: 20px;
    padding: 20px 24px;
    border: none;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
}
.reservation-page .reservation-info-box h4 {
    font-size: 13px;
    color: var(--text-light);
}
.reservation-page .reservation-info-box ul {
    margin-top: 10px;
}
.reservation-page .reservation-info-box li {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.8;
}

/* 위자드/인사이트 카드 호흡 애니메이션 유지하되 부드럽게 */
.reservation-page .inquiry-card {
    animation: cardBreathe 8s ease-in-out infinite;
}

/* condition 섹션 overflow 제거 (배경 끊김 원인) */
.reservation-page .condition-section {
    overflow: visible;
}

/* 히어로 -> 첫 섹션 사이 자연스럽게 연결 */
.reservation-page .page-hero + .resv-flow-section {
    padding-top: 48px;
}
