/* ==========================================
   La Belle Mère — Mobile-First Design System
   마케팅 전략: 전화 상담 연결 최적화
   ========================================== */

:root {
    --color-primary: #B08968;
    --color-primary-light: #D4B99C;
    --color-primary-dark: #8B6914;
    --color-primary-bg: #FAF6F2;
    --color-accent: #C9A96E;
    --color-text: #2D2926;
    --color-text-secondary: #5C5552;
    --color-text-muted: #8A8583;
    --color-bg: #FFFFFF;
    --color-bg-warm: #FBF8F5;
    --color-bg-alt: #F5F0EB;
    --color-bg-dark: #2D2926;
    --color-border: #E8E2DC;
    --color-success: #4CAF50;
    --color-cta: #D4573B;
    --color-cta-hover: #B8432A;
    --font-display: 'Gowun Batang', serif;
    --font-body: 'Noto Sans KR', sans-serif;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.3s ease;
}

/* ==========================================
   Reset & Base (Mobile-First)
   ========================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.75;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    padding-bottom: 64px;
    /* sticky call bar space */
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

strong {
    font-weight: 600;
}

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

/* ==========================================
   Trust Chips (재사용 배지)
   ========================================== */

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--color-primary-dark);
    background: rgba(176, 137, 104, 0.1);
    border: 1px solid rgba(176, 137, 104, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.trust-chip .material-symbols-outlined {
    font-size: 14px;
}

.trust-chip-sm {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 500;
    color: var(--color-success);
    margin-top: 12px;
}

.trust-chip-sm .material-symbols-outlined {
    font-size: 13px;
}

/* ==========================================
   Navigation (Mobile-First)
   ========================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--transition);
}

.nav.scrolled .nav-logo-img {
    filter: none;
}

/* --- Mobile: 메뉴 숨김, 전화+햄버거 표시 --- */
.nav-menu {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 20px;
    background: var(--color-cta);
    color: #fff;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.nav-phone-icon .material-symbols-outlined {
    font-size: 20px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all var(--transition);
    border-radius: 1px;
}

.nav.scrolled .nav-toggle span {
    background: var(--color-text);
}

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

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile: CTA li 숨김 (하단 sticky로 대체) --- */
.nav-cta-wrap {
    display: none;
}

/* --- 메뉴 열릴 때 nav 배경 강제 --- */
.nav.menu-open {
    background: var(--color-bg) !important;
    box-shadow: var(--shadow-sm);
}

.nav.menu-open .nav-logo-img {
    filter: none;
}

.nav.menu-open .nav-toggle span {
    background: var(--color-text);
}

/* --- Mobile menu panel --- */
.nav-menu.open {
    display: block;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 8px 24px 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    animation: slideDown 0.25s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu.open li {
    list-style: none;
}

.nav-menu.open li a {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 0;
    display: block;
    border-bottom: 1px solid var(--color-border);
}

/* 모바일 메뉴 내 CTA 버튼 표시 */
.nav-menu.open .nav-cta-wrap {
    display: block;
    border-bottom: none;
}

.nav-menu.open .nav-cta-wrap a.nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px;
    background: var(--color-cta);
    color: #fff !important;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    border-bottom: none;
}

.nav-cta-icon {
    font-size: 20px;
}

/* ==========================================
   Buttons
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    letter-spacing: 0.2px;
    text-align: center;
}

.btn .material-symbols-outlined {
    font-size: 18px;
}

.btn-primary {
    background: var(--color-cta);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 87, 59, 0.3);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--color-cta);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

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

.btn-full {
    width: 100%;
}

/* ==========================================
   Hero (Mobile-First)
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-bg-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 80px 20px 40px;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(45, 41, 38, 0.55) 0%, rgba(45, 41, 38, 0.75) 100%);
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }

    .hero {
        background: var(--color-bg-dark) url('../img/hero.png') center/cover no-repeat;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-trust-bar .trust-chip {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.hero-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--color-primary-light);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 16px;
}

.hero-title em {
    font-style: normal;
    color: var(--color-accent);
}

.hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.2;
}

.stat span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    align-self: stretch;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll .material-symbols-outlined {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.4);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-6px);
    }

    60% {
        transform: translateX(-50%) translateY(-3px);
    }
}

/* ==========================================
   Trust Bar Section
   ========================================== */

.trust-bar-section {
    background: var(--color-bg-dark);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.trust-item .material-symbols-outlined {
    font-size: 15px;
    color: var(--color-accent);
}

/* ==========================================
   Sections
   ========================================== */

.section {
    padding: 72px 0;
}

.section-alt {
    background: var(--color-bg-warm);
}

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

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ==========================================
   24시간 케어 타임라인
   ========================================== */

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 64px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 52px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline-time {
    position: absolute;
    left: -64px;
    top: 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    width: 44px;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    left: -17px;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 2px solid var(--color-bg);
    box-shadow: 0 0 0 2px var(--color-primary-light);
}

.timeline-card {
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    padding: 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    margin-left: 8px;
}

.timeline-card .material-symbols-outlined {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.timeline-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline-card p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.card-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-bg);
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 8px;
}

.system-cta {
    text-align: center;
    margin-top: 48px;
}

.system-cta p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

/* ==========================================
   Program Cards
   ========================================== */

.program-group-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-top: 48px;
    margin-bottom: 8px;
}

.program-group-title:first-of-type { margin-top: 0; }

.program-group-title .material-symbols-outlined {
    font-size: 24px;
    color: var(--color-primary);
}

.program-group-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.program-card {
    background: var(--color-bg);
    padding: 28px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.program-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
}

.program-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.program-icon .material-symbols-outlined {
    font-size: 24px;
    color: var(--color-primary);
}

.program-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.program-card p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.program-cta {
    text-align: center;
    margin-top: 36px;
}

/* ==========================================
   Facility Grid
   ========================================== */

.facility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.facility-card {
    background: var(--color-bg-warm);
    padding: 28px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
}

.facility-card>.material-symbols-outlined {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.facility-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.facility-card ul {
    list-style: none;
}

.facility-card li {
    font-size: 13px;
    color: var(--color-text-secondary);
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
}

.facility-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary-light);
}

/* ==========================================
   Gallery (시설 안내)
   ========================================== */

.gallery-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin-bottom: 24px;
}

.gallery-tab {
    flex-shrink: 0;
    padding: 10px 20px;
    border: 1.5px solid var(--color-border);
    border-radius: 24px;
    background: var(--color-bg);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.gallery-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.gallery-panel {
    display: none;
}

.gallery-panel.active {
    display: block;
}

.gallery-info {
    margin-bottom: 16px;
}

.gallery-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

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

.room-subtitle {
    font-family: 'Gowun Batang', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary, #8b6f47);
    margin: 24px 0 10px;
    padding-left: 12px;
    border-left: 3px solid var(--color-primary, #8b6f47);
    letter-spacing: -0.3px;
}

.room-subtitle:first-of-type {
    margin-top: 8px;
}

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

.gallery-grid + .room-subtitle {
    margin-top: 28px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

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

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

.gallery-tour {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.gallery-tour h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-tour h3 .material-symbols-outlined {
    font-size: 24px;
    color: var(--color-primary);
}

.gallery-tour p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.facility-cta {
    text-align: center;
    margin-top: 40px;
}

.facility-cta p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

/* 이미지 라이트박스 */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0,0,0,0.7);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
}

.lightbox-close .material-symbols-outlined {
    font-size: 28px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev .material-symbols-outlined,
.lightbox-next .material-symbols-outlined {
    font-size: 36px;
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    background: rgba(0,0,0,0.5);
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

@media (max-width: 640px) {
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-prev .material-symbols-outlined,
    .lightbox-next .material-symbols-outlined {
        font-size: 28px;
    }
}

/* ==========================================
   Program card highlight (아빠 프로그램)
   ========================================== */

.program-card-highlight {
    border: 2px solid var(--color-primary);
    background: var(--color-primary-bg);
}

/* ==========================================
   3D Tour
   ========================================== */

.tour-embed {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.tour-embed iframe {
    display: block;
    border-radius: var(--radius);
}

.tour-cta {
    text-align: center;
    margin-top: 32px;
}

.tour-cta p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 14px;
}

/* ==========================================
   Pricing Cards
   ========================================== */

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.price-card {
    background: var(--color-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.price-card-featured {
    border-color: var(--color-cta);
    box-shadow: var(--shadow-md);
}

.price-card-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: var(--color-cta);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px;
    letter-spacing: 1px;
}

.price-card-featured .price-card-header {
    padding-top: 44px;
}

.price-card-header {
    padding: 24px 24px 16px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.price-card-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-card-header p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.price-card-body {
    padding: 24px;
}

.price-main {
    text-align: center;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.price-amount small {
    font-size: 16px;
    font-weight: 500;
}

.price-period {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.price-list {
    list-style: none;
}

.price-list li {
    font-size: 13px;
    color: var(--color-text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.price-card .btn {
    margin: 0 24px 24px;
    width: calc(100% - 48px);
}

/* ==========================================
   Pricing Extras
   ========================================== */

.pricing-extras {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.pricing-note .material-symbols-outlined {
    font-size: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

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

/* ==========================================
   Refund Policy
   ========================================== */

.refund-policy {
    text-align: center;
}

.refund-policy h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 6px;
}

.refund-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.refund-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.refund-item {
    background: var(--color-bg);
    padding: 16px 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.refund-period {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.refund-rate {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.refund-label {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
}

.refund-item-warn .refund-rate {
    color: var(--color-cta);
}

/* ==========================================
   FAQ Accordion
   ========================================== */

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

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    gap: 12px;
}

.faq-arrow {
    font-size: 22px;
    color: var(--color-text-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 18px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    padding-left: 4px;
}

.faq-answer a {
    color: var(--color-cta);
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 14px;
}

/* ==========================================
   Location
   ========================================== */

.location-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-map iframe {
    border-radius: var(--radius-sm);
    width: 100%;
}

.location-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.location-detail {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.location-detail .material-symbols-outlined {
    font-size: 20px;
    color: var(--color-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.location-detail strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
}

.location-detail p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.location-detail a {
    color: var(--color-cta);
    font-weight: 600;
}

/* ==========================================
   Final CTA
   ========================================== */

.final-cta {
    background: var(--color-bg-dark);
    padding: 64px 20px;
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 12px;
}

.final-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 28px;
}

.final-cta-sub {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background: #1E1B19;
    color: rgba(255, 255, 255, 0.6);
    padding: 48px 0 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    margin-bottom: 6px;
}

.footer-slogan {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 12px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-badges .trust-chip {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
}

.footer-info p,
.footer-hours p {
    font-size: 13px;
    line-height: 1.7;
}

.footer-info strong,
.footer-hours strong {
    color: #fff;
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.footer-info a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    padding: 16px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
}

/* ==========================================
   Sticky Call Bar (Mobile)
   ========================================== */

.sticky-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    background: #fff;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.12);
}

.sticky-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--color-cta);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    letter-spacing: 0.3px;
    transition: background var(--transition);
}

.sticky-call-btn:active {
    background: var(--color-cta-hover);
}

.sticky-call-btn .material-symbols-outlined {
    font-size: 22px;
}

/* ==========================================
   Scroll Animations
   ========================================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ==========================================
   Desktop (min-width: 768px)
   ========================================== */

@media (min-width: 768px) {
    body {
        font-size: 16px;
        padding-bottom: 0;
    }

    .container {
        padding: 0 32px;
    }

    .section {
        padding: 100px 0;
    }

    .nav {
        padding: 0 40px;
    }

    .nav-inner {
        height: 72px;
    }

    /* 데스크탑: 메뉴 가로 배치 */
    .nav-menu {
        display: flex !important;
        position: static;
        flex-direction: row;
        height: auto;
        background: none;
        padding: 0;
        gap: 24px;
        align-items: center;
        animation: none;
    }

    .nav-menu li {
        list-style: none;
    }

    .nav-menu a:not(.nav-cta) {
        font-size: 14px !important;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85) !important;
        padding: 0 !important;
        border-bottom: none !important;
        position: relative;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }

    .nav-menu a:not(.nav-cta)::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-primary);
        transition: width var(--transition);
    }

    .nav-menu a:not(.nav-cta):hover::after,
    .nav-menu a:not(.nav-cta).active::after {
        width: 100%;
    }

    .nav.scrolled .nav-menu a:not(.nav-cta) {
        color: var(--color-text) !important;
    }

    .nav.scrolled .nav-menu a:not(.nav-cta):hover {
        color: var(--color-primary) !important;
    }

    /* 데스크탑: CTA 버튼 표시 */
    .nav-cta-wrap {
        display: block !important;
    }

    .nav-cta {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        background: var(--color-cta) !important;
        color: #fff !important;
        padding: 5px 10px !important;
        border-radius: 24px !important;
        font-weight: 600 !important;
        font-size: 13px !important;
        border-bottom: none !important;
    }

    .nav-cta .nav-cta-icon {
        font-size: 16px;
    }

    .nav-cta::after {
        display: none !important;
    }

    .nav-cta:hover {
        background: var(--color-cta-hover) !important;
    }

    /* 데스크탑: 모바일 전용 요소 숨김 */
    .nav-right {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 120px 32px 80px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-desc {
        font-size: 16px;
        white-space: nowrap;
        width: max-content;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-desc br {
        display: inline;
    }

    .hero-stats {
        gap: 36px;
    }

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

    .stat span {
        font-size: 13px;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    /* Trust bar */
    .trust-bar-grid {
        gap: 12px;
    }

    .trust-item {
        font-size: 12px;
        padding: 8px 16px;
    }

    /* Section headers */
    .section-title {
        font-size: 34px;
    }

    .section-desc {
        font-size: 16px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    /* Timeline */
    .timeline {
        padding-left: 80px;
        max-width: 700px;
    }

    .timeline::before {
        left: 68px;
    }

    .timeline-time {
        left: -80px;
        width: 56px;
        font-size: 14px;
    }

    .timeline-dot {
        left: -17px;
    }

    .timeline-card {
        margin-left: 8px;
    }

    /* Facility */
    .facility-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

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

    /* Programs */
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Pricing */
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .pricing-extras {
        flex-direction: row;
        gap: 16px;
    }

    .pricing-note {
        flex: 1;
    }

    /* Refund */
    .refund-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Location */
    .location-content {
        display: grid;
        grid-template-columns: 1.3fr 0.7fr;
        gap: 32px;
        align-items: start;
    }

    .location-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer */
    .footer-inner {
        display: grid;
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
        gap: 40px;
    }

    /* Hide sticky call bar on desktop */
    .sticky-call-bar {
        display: none;
    }

    /* Final CTA */
    .final-cta h2 {
        font-size: 34px;
    }

    .final-cta p br {
        display: inline;
    }
}

/* ==========================================
   Large Desktop (min-width: 1024px)
   ========================================== */

@media (min-width: 1024px) {
    .program-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 52px;
    }
}

/* ==========================================
   Accessibility: prefers-reduced-motion
   ========================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}
/* ==========================================
   Signature (싱잉볼 시그니처) — 2026-06 추가
   ========================================== */
.signature-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
}
.signature-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: block;
}
.signature-body { align-self: center; }
.signature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-primary);
    background: var(--color-primary-bg);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.signature-tag .material-symbols-outlined { font-size: 16px; }
.signature-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 14px;
    color: var(--color-text);
}
.signature-body > p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}
.signature-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.signature-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
}
.signature-points .material-symbols-outlined {
    font-size: 20px;
    color: var(--color-success);
    flex-shrink: 0;
}
.signature-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.signature-gallery .gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.signature-gallery .gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}
.signature-gallery .gallery-item:hover img { transform: scale(1.05); }

/* ==========================================
   Review (라벨의 천사들 후기) — 2026-06 추가
   ========================================== */
.review-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    justify-items: center;
}
.review-phone {
    width: 260px;
    max-width: 80%;
    aspect-ratio: 9 / 16;
    border-radius: 28px;
    overflow: hidden;
    border: 8px solid var(--color-bg-dark);
    box-shadow: var(--shadow-lg);
    background: #000;
}
.review-phone video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.review-boards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
}
.review-board-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.review-board-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}
.review-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    background: var(--color-primary-bg);
    border-radius: var(--radius-sm);
    padding: 20px;
}
.review-note .material-symbols-outlined {
    font-size: 28px;
    color: var(--color-cta);
}
.review-note p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* 데스크톱 레이아웃 (768+) */
@media (min-width: 768px) {
    .signature-feature {
        grid-template-columns: 1.1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    .review-layout {
        grid-template-columns: auto 1fr;
        gap: 44px;
        align-items: center;
        justify-items: start;
    }
}
