/* ═══════════════════════════════════════════════
   CSS VARIABLES — 딥 버건디 + 로즈골드 다크 (리즈)
   ═══════════════════════════════════════════════ */
:root {
    /* 배경 */
    --bg-primary:        #0e0608;
    --bg-secondary:      #160b0f;
    --bg-card:           #1c0e13;
    --bg-card-hover:     #231218;

    /* 로즈골드 액센트 */
    --gold:              #c4799a;
    --gold-light:        #df9bba;
    --gold-dark:         #8a4060;
    --gold-glow:         rgba(196, 121, 154, 0.09);

    /* 텍스트 */
    --text-primary:      #f2e6ea;
    --text-muted:        #9a7585;
    --text-dim:          #3d2530;

    /* 테두리 */
    --border:            rgba(196, 121, 154, 0.12);
    --border-hover:      rgba(196, 121, 154, 0.38);

    /* 기타 */
    --radius:            8px;
    --radius-lg:         16px;
    --transition:        0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width:         1240px;
    --header-h:          100px;

    /* 폰트 */
    --font-serif:        'Noto Serif KR', serif;
    --font-sans:         'Noto Sans KR', sans-serif;

    /* 카드 그림자 */
    --card-shadow:       0 2px 16px rgba(0,0,0,0.35);
    --card-shadow-hover: 0 12px 40px rgba(0,0,0,0.55);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

ul { list-style: none; }

svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    overflow: visible;
}

/* ═══════════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════════ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.section-label::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.55;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 56px;
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-sans);
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn svg { width: 17px; height: 17px; stroke-width: 2; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
    color: #fff;
    font-weight: 700;
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 121, 154, 0.38);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(242, 230, 234, 0.25);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

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

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════════════
   HEADER — 2단 구조 (로고 바 + 네비 바)
   ═══════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(14, 6, 8, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(14, 6, 8, 0.97);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 32px rgba(0,0,0,0.55);
}

/* ── 상단 로고 바 */
.header-top {
    height: 52px;
    border-bottom: 1px solid var(--border);
}

.header-top-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
}

.header-deco-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
    margin: 0 20px;
}

/* ── 하단 네비 바 */
.header-nav-bar {
    height: 48px;
}

.header-nav-bar > .container {
    display: flex;
    align-items: center;
    height: 100%;
}

/* 로고 */
.site-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.15;
    flex-shrink: 0;
    transition: opacity var(--transition);
}
.site-logo:hover { opacity: 0.75; }

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
}
.logo-sub {
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.14em;
}

/* PC 네비 */
.site-nav { flex: 1; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 13px;
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.is-active { color: var(--gold-light); }

.nav-link:hover { background: var(--gold-glow); }

.nav-arrow {
    width: 9px; height: 6px;
    stroke-width: 1.8;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* 드롭다운 메가 메뉴 */
.mega-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    min-width: 200px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.65);
    backdrop-filter: blur(20px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.nav-item.has-dropdown:hover .mega-dropdown,
.nav-item.has-dropdown:focus-within .mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -24px;
    right: -24px;
    height: 12px;
}

.mega-grid {
    display: grid;
    gap: 2px 16px;
}
.mega-grid.cols-2 { grid-template-columns: repeat(2, 1fr); min-width: 200px; }
.mega-grid.cols-3 { grid-template-columns: repeat(3, 1fr); min-width: 300px; }
.mega-grid.cols-4 { grid-template-columns: repeat(4, 1fr); min-width: 400px; }

.mega-link {
    display: block;
    padding: 6px 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-radius: var(--radius);
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
}
.mega-link:hover,
.mega-link.is-active {
    color: var(--gold-light);
    background: var(--gold-glow);
}

/* 햄버거 — 헤더 상단 바에 위치, PC에서 숨김 */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    flex-shrink: 0;
}
.menu-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}
.mobile-overlay.is-open { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 90vw);
    height: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border);
    z-index: 1100;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.55);
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.mobile-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: color var(--transition);
}
.mobile-close:hover { color: var(--text-primary); }

.mobile-nav-list { padding: 12px 0; flex: 1; }

.mobile-nav-list > li > a,
.mobile-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 24px;
    font-size: 0.92rem;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition), background var(--transition);
}
.mobile-nav-list > li > a:hover,
.mobile-sub-toggle:hover {
    color: var(--gold-light);
    background: var(--gold-glow);
}

.mobile-sub-toggle svg { width: 10px; height: 7px; stroke-width: 2; transition: transform var(--transition); }
.mobile-has-sub.is-open .mobile-sub-toggle svg { transform: rotate(180deg); }

.mobile-sub {
    padding: 4px 0 8px 0;
    background: var(--bg-card);
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.mobile-has-sub.is-open .mobile-sub { max-height: 600px; }

.mobile-sub li a {
    display: block;
    padding: 8px 24px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.mobile-sub li a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════
   HERO SLIDER — 왼쪽 정렬 레이아웃
   ═══════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slides-wrap { position: relative; width: 100%; height: 100%; }

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: clamp(24px, 10vw, 140px);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}
.slide.is-active { opacity: 1; pointer-events: auto; }

.slide-1 { background: linear-gradient(145deg, #200810 0%, #150508 45%, #1c0910 100%); }
.slide-2 { background: linear-gradient(145deg, #18050e 0%, #150508 45%, #200d14 100%); }
.slide-3 { background: linear-gradient(145deg, #1c070e 0%, #120408 45%, #180810 100%); }

.slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.28) 100%);
    z-index: 1;
}

/* 왼쪽 세로 장식선 */
.slide::before {
    content: '';
    position: absolute;
    left: clamp(12px, 7vw, 80px);
    top: 20%;
    bottom: 20%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.55;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 700px;
    padding: 0;
}

.slide-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.slide-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.22;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}

.slide-sub {
    font-size: clamp(0.92rem, 1.5vw, 1.05rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    margin-bottom: 36px;
}

.slide-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* 슬라이더 버튼 */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(196,121,154,0.12);
    border: 1px solid rgba(196,121,154,0.28);
    border-radius: 50%;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}
.slider-btn svg { width: 18px; height: 18px; stroke-width: 2; }
.slider-btn:hover { background: var(--gold); border-color: var(--gold); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* 슬라이더 도트 */
.slider-dots {
    position: absolute;
    bottom: 32px;
    left: clamp(24px, 10vw, 140px);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 24px; height: 2px;
    background: rgba(255,255,255,0.28);
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: all var(--transition);
}
.slider-dot.is-active {
    background: var(--gold);
    width: 40px;
}

/* ═══════════════════════════════════════════════
   SECTIONS 공통
   ═══════════════════════════════════════════════ */
.section {
    padding: 96px 0;
}
.section:nth-child(even) {
    background: var(--bg-secondary);
}

/* ═══════════════════════════════════════════════
   INTRO 섹션
   ═══════════════════════════════════════════════ */
.section-intro { background: var(--bg-secondary); }

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 16px;
}

.intro-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.98rem;
}
.intro-text strong { color: var(--gold-light); font-weight: 600; }

.intro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}
.badge {
    padding: 5px 16px;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    font-size: 0.78rem;
    color: var(--gold-light);
    background: var(--gold-glow);
    font-weight: 500;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.stat-item {
    padding: 32px 24px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    box-shadow: var(--card-shadow);
}
.stat-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--card-shadow-hover);
}

.stat-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
}
.stat-item strong span { font-size: 1.2rem; }

.stat-item > span:last-child {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* ═══════════════════════════════════════════════
   COURSE 섹션 — 왼쪽 보더 액센트 카드
   ═══════════════════════════════════════════════ */
.section-course { background: var(--bg-primary); }

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

.course-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* 왼쪽 세로 보더 액센트 */
.course-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.course-card:hover,
.course-card.is-best {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}
.course-card:hover::before,
.course-card.is-best::before { opacity: 1; }

.course-badge {
    position: absolute;
    top: 20px; right: 20px;
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(196,121,154,0.35);
}

.course-code {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--border-hover);
    line-height: 1;
    margin-bottom: 8px;
    transition: color var(--transition);
}
.course-card:hover .course-code { color: var(--gold-light); }

.course-duration {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.course-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.4;
}

.course-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    flex: 1;
}

.course-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 26px;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    transition: all var(--transition);
}
.course-cta:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(196,121,154,0.35);
}

/* ═══════════════════════════════════════════════
   MANAGER 섹션
   ═══════════════════════════════════════════════ */
.section-managers { background: var(--bg-secondary); }

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

.manager-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    box-shadow: var(--card-shadow);
}
.manager-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.manager-photo {
    width: 96px; height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-hover);
    box-shadow: 0 0 0 5px var(--gold-glow);
    flex-shrink: 0;
}
.manager-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}
.manager-card:hover .manager-photo img { transform: scale(1.06); }

.manager-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, #2a1020, #1c0812);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.manager-num {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.manager-info { padding: 0; }

.manager-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.manager-specs {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 14px;
}
.manager-specs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    color: var(--text-muted);
}
.manager-specs span {
    font-size: 0.68rem;
    color: var(--gold);
    min-width: 40px;
    font-weight: 600;
}

.manager-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    border-radius: var(--radius);
    transition: opacity var(--transition), transform var(--transition);
    box-shadow: 0 2px 8px rgba(196,121,154,0.3);
}
.manager-cta:hover { opacity: 0.85; transform: translateY(-1px); }
.manager-cta svg { width: 13px; height: 13px; }

/* ═══════════════════════════════════════════════
   STEPS 섹션
   ═══════════════════════════════════════════════ */
.section-steps { background: var(--bg-primary); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 64px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

.step-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition);
    box-shadow: var(--card-shadow);
}
.step-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.step-num {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(196,121,154,0.05);
    line-height: 1;
    position: absolute;
    top: 16px; right: 20px;
    pointer-events: none;
}

.step-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    padding: 14px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 1px solid var(--border-hover);
    color: var(--gold);
    transition: all var(--transition);
}
.step-item:hover .step-icon {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(196,121,154,0.35);
}
.step-icon svg { width: 100%; height: 100%; stroke-width: 2; }

.step-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.45;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.step-desc strong { color: var(--gold-light); font-weight: 500; }

/* ═══════════════════════════════════════════════
   WHY 섹션
   ═══════════════════════════════════════════════ */
.section-why { background: var(--bg-secondary); }

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

.why-item {
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

/* 하단 보더 대신 왼쪽 세로 라인 */
.why-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    transition: height 0.4s ease;
}
.why-item:hover::after { height: 100%; }
.why-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.why-icon {
    width: 48px; height: 48px;
    margin-bottom: 18px;
    color: var(--gold);
    transition: transform var(--transition);
}
.why-item:hover .why-icon { transform: scale(1.1); }
.why-icon svg { width: 100%; height: 100%; stroke-width: 2; }

.why-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.why-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   BENEFITS 섹션
   ═══════════════════════════════════════════════ */
.section-benefits { background: var(--bg-primary); }

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}
.benefit-item:first-child { border-top: 1px solid var(--border); }
.benefit-item:hover { padding-left: 12px; }

.benefit-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--border-hover);
    line-height: 1;
    flex-shrink: 0;
    min-width: 56px;
    transition: color var(--transition);
}
.benefit-item:hover .benefit-num { color: var(--gold); }

.benefit-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.benefit-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   EFFECTS 섹션
   ═══════════════════════════════════════════════ */
.section-effects { background: var(--bg-secondary); }

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

.effect-card {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    box-shadow: var(--card-shadow);
}
.effect-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.effect-icon {
    width: 52px; height: 52px;
    margin-bottom: 18px;
    color: var(--gold);
    transition: transform var(--transition);
}
.effect-card:hover .effect-icon { transform: scale(1.1) rotate(5deg); }
.effect-icon svg { width: 100%; height: 100%; stroke-width: 2; }

.effect-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.effect-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   CTA 섹션 — 버건디 그라디언트 배너
   ═══════════════════════════════════════════════ */
.section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0510 0%, var(--gold-dark) 50%, #3a1030 100%);
    position: relative;
    overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(255,255,255,0.07) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
    text-align: center;
}
.cta-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.cta-inner p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
}
.cta-actions { display: flex; justify-content: center; }

.section-cta .btn-gold {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.45);
    box-shadow: none;
}
.section-cta .btn-gold:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
    background: #0a0407;
    border-top: 1px solid var(--border);
    padding-top: 64px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
}

.footer-brand .site-logo { margin-bottom: 12px; }

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(242,230,234,0.32);
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 1.05rem;
    font-weight: 700;
    transition: opacity var(--transition);
}
.footer-phone:hover { opacity: 0.75; }

.footer-hours {
    font-size: 0.78rem;
    color: rgba(242,230,234,0.32);
    padding: 3px 10px;
    border: 1px solid rgba(196,121,154,0.22);
    border-radius: var(--radius);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col a {
    font-size: 0.82rem;
    color: rgba(242,230,234,0.32);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(196,121,154,0.14);
    padding: 20px 0;
    display: flex;
    align-items: center;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(242,230,234,0.24);
}
.footer-disclaimer { opacity: 0.7; }

.site-footer .logo-main { color: var(--gold-light); }
.site-footer .logo-sub  { color: rgba(242,230,234,0.32); }

/* ═══════════════════════════════════════════════
   PARTNER BAR
   ═══════════════════════════════════════════════ */
.partner-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.partner-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--gold-glow) 0%, transparent 60%);
    pointer-events: none;
}
.partner-bar-inner {
    display: flex;
    align-items: stretch;
    min-height: 46px;
    gap: 0;
}
.partner-bar-label {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 22px 0 0;
    margin-right: 22px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
    border-right: 1px solid var(--border);
}
.partner-bar-label svg {
    width: 12px;
    height: 12px;
    color: var(--gold);
    flex-shrink: 0;
}
.partner-bar-list {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 10px 0;
}
.partner-bar-list li {
    display: flex;
    align-items: center;
}
.partner-bar-list li + li::before {
    content: '';
    display: block;
    width: 1px;
    height: 11px;
    background: var(--border);
    margin: 0 14px;
    flex-shrink: 0;
}
.partner-bar-list a {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.22s, opacity 0.22s;
    white-space: nowrap;
    opacity: 0.7;
}
.partner-bar-list a:hover {
    color: var(--gold-light);
    opacity: 1;
}

@media (max-width: 600px) {
    .partner-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 12px;
        min-height: unset;
        gap: 10px;
    }
    .partner-bar-label {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }
    .partner-bar-list {
        overflow-x: auto;
        flex-wrap: nowrap;
        width: 100%;
        padding: 0 0 4px;
        -webkit-overflow-scrolling: touch;
    }
}

/* ═══════════════════════════════════════════════
   Q&A 아코디언
   ═══════════════════════════════════════════════ */
.section-qna .qna-list { max-width: 800px; margin: 0 auto; }

.qna-item { border-bottom: 1px solid var(--border); }
.qna-item:first-child { border-top: 1px solid var(--border); }

.qna-question {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 20px 4px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}
.qna-question:hover { color: var(--gold-light); }
.qna-item.is-open .qna-question { color: var(--gold); }

.qna-badge {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--gold-glow);
    color: var(--gold);
    border: 1px solid var(--border-hover);
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.qna-badge-a { background: var(--gold-glow); border-color: transparent; }

.qna-arrow {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    transition: color var(--transition);
    user-select: none;
}
.qna-arrow::before { content: '+'; }
.qna-item.is-open .qna-arrow::before { content: '−'; }

.qna-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
.qna-item.is-open .qna-answer { max-height: 600px; }

.qna-answer-inner {
    display: flex;
    gap: 14px;
    padding: 4px 4px 22px;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.8;
}
.qna-answer-inner p { flex: 1; }

/* ═══════════════════════════════════════════════
   CITY PAGE
   ═══════════════════════════════════════════════ */
.city-breadcrumb-bar {
    position: relative;
    z-index: 10;
    padding: calc(var(--header-h) + 14px) 0 14px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}
.city-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0; margin: 0;
    font-size: .76rem;
    color: var(--text-muted);
}
.city-breadcrumb-list a { color: var(--text-muted); transition: color var(--transition); }
.city-breadcrumb-list a:hover { color: var(--gold); }
.city-breadcrumb-list [aria-current="page"] { color: var(--text-primary); font-weight: 500; }
.crumb-sep { color: var(--text-dim); font-size: .7rem; }

.city-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background-color: var(--bg-primary);
    overflow: hidden;
}
.city-hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.city-hero--no-img {
    background: linear-gradient(135deg, #1c0810 0%, #150508 50%, #200d14 100%);
}
.city-hero--no-img .city-hero-title { color: var(--text-primary); }
.city-hero--no-img .city-hero-title span { color: var(--gold); }
.city-hero--no-img .city-hero-trust { color: var(--text-muted); }
.city-hero--no-img .city-hero-trust strong { color: var(--gold); }

.city-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.65) 100%);
}
.city-hero-content {
    position: relative; z-index: 1;
    padding: 100px 20px;
    text-align: center;
}
.city-hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-family: var(--font-serif);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.city-hero-title span {
    display: block;
    font-size: .46em;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: .18em;
    margin-top: .5rem;
}

.city-hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 28px;
    font-size: .78rem;
    color: rgba(255,255,255,.55);
}
.city-hero-trust strong { color: var(--gold-light); font-weight: 600; }
.trust-div { color: rgba(255,255,255,.2); font-size: .6rem; }

.section-city-service { background: var(--bg-secondary); }
.city-service-body { max-width: 780px; margin: 0 auto; }
.city-service-text {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.95;
    margin-bottom: 2rem;
}
.city-service-text p + p { margin-top: .9rem; }
.city-service-text strong { color: var(--gold-light); font-weight: 600; }
.city-service-badges { display: flex; flex-wrap: wrap; gap: 10px; }

.section-visit { background: var(--bg-primary); }
.visit-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.visit-tag {
    padding: 9px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .85rem;
    color: var(--text-muted);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.visit-tag:hover {
    border-color: var(--border-hover);
    color: var(--gold-light);
    background: var(--gold-glow);
}

.visit-area-body {
    width: 100%; max-width: 100%; margin: 0 auto;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 2.1;
    padding: 32px 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    box-shadow: var(--card-shadow);
}

.section-mgr-intro { background: var(--bg-secondary); }
.mgr-intro-body {
    width: 100%; max-width: 100%; margin: 0 auto;
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.95;
    padding: 30px 36px;
    border-left: 3px solid var(--gold);
    background: var(--gold-glow);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.section-reviews { background: var(--bg-secondary); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.review-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    box-shadow: var(--card-shadow);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}
.review-stars { margin-bottom: 14px; font-size: 1.05rem; letter-spacing: 2px; }
.star-on  { color: var(--gold); }
.star-off { color: var(--text-dim); }
.review-content {
    flex: 1;
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.85;
    margin-bottom: 18px;
}
.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    color: var(--text-muted);
}
.review-author { color: var(--text-primary); font-weight: 500; }

.section-city-links { background: var(--bg-primary); }
.city-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none; padding: 0; margin: 0;
}
.city-link-item {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .85rem;
    color: var(--text-muted);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.city-link-item:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: var(--gold-glow);
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   NOTICES — 공지사항 목록
   ═══════════════════════════════════════════════ */
.notice-page-hero {
    padding: calc(var(--header-h) + 56px) 0 52px;
    background: linear-gradient(160deg, #1c0810 0%, #150508 60%, #1a070e 100%);
    border-bottom: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.notice-page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(196,121,154,.15) 0%, transparent 70%);
    pointer-events: none;
}
.notice-page-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--gold);
    margin-bottom: 14px;
}
.notice-page-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}
.notice-page-desc {
    font-size: .9rem;
    color: var(--text-muted);
}

.notice-list-section {
    padding: 56px 0 80px;
    background: var(--bg-primary);
}
.notice-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
}

.notice-card {
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.notice-card:hover { background: var(--bg-secondary); }
.notice-card-link {
    display: grid;
    grid-template-columns: 220px 1fr 32px;
    align-items: center;
    gap: 28px;
    padding: 24px 0;
    color: inherit;
    text-decoration: none;
}
.notice-card-thumb {
    width: 220px; height: 138px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.notice-card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.notice-card:hover .notice-card-thumb img { transform: scale(1.04); }
.notice-card-thumb-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
}
.notice-card-thumb-placeholder svg { width: 36px; height: 36px; }

.notice-card-body { flex: 1; min-width: 0; }
.notice-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.5;
    transition: color var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.notice-card:hover .notice-card-title { color: var(--gold-light); }
.notice-card-excerpt {
    font-size: .86rem;
    color: var(--text-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
}
.notice-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}
.notice-meta-date,
.notice-meta-views {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .76rem;
    color: var(--text-dim);
}
.notice-meta-date svg,
.notice-meta-views svg { width: 12px; height: 12px; flex-shrink: 0; }

.notice-card-arrow {
    color: var(--text-dim);
    transition: color var(--transition), transform var(--transition);
}
.notice-card-arrow svg { width: 20px; height: 20px; }
.notice-card:hover .notice-card-arrow { color: var(--gold); transform: translateX(4px); }

.notice-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
}
.notice-pagination .page-num,
.notice-pagination .page-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: .82rem;
    color: var(--text-muted);
    transition: all var(--transition);
}
.notice-pagination .page-num:hover,
.notice-pagination .page-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}
.notice-pagination .page-num.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    font-weight: 700;
}
.notice-pagination .page-arrow svg { width: 16px; height: 16px; }

.notice-empty {
    text-align: center;
    padding: 80px 0;
    color: var(--text-dim);
}
.notice-empty svg { width: 48px; height: 48px; margin: 0 auto 16px; opacity: .4; }
.notice-empty p { font-size: .9rem; }

/* ═══════════════════════════════════════════════
   NOTICE DETAIL
   ═══════════════════════════════════════════════ */
.notice-detail-banner {
    margin-top: var(--header-h);
    max-height: 480px;
    overflow: hidden;
    background: var(--bg-secondary);
}
.notice-detail-banner img {
    width: 100%; height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.notice-detail-wrap {
    background: var(--bg-primary);
    padding: 56px 0 80px;
}
main:not(:has(.notice-detail-banner)) .notice-detail-wrap {
    padding-top: calc(var(--header-h) + 56px);
}
.notice-detail-container { max-width: 860px; }

.notice-back-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    transition: color var(--transition);
}
.notice-back-link svg { width: 14px; height: 14px; }
.notice-back-link:hover { color: var(--gold); }

.notice-detail-header { margin-bottom: 40px; }
.notice-detail-title {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.notice-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.notice-detail-meta .notice-meta-date,
.notice-detail-meta .notice-meta-views { font-size: .82rem; }

.notice-detail-content {
    font-size: .95rem;
    line-height: 2;
    color: var(--text-primary);
    padding: 32px 0 48px;
    border-bottom: 1px solid var(--border);
    white-space: pre-line;
    word-break: break-word;
}

.notice-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 40px 0 0;
}
.notice-nav-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    box-shadow: var(--card-shadow);
}
.notice-nav-item:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--card-shadow-hover);
}
.notice-nav-next { text-align: right; }
.notice-nav-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--gold);
    text-transform: uppercase;
}
.notice-nav-next .notice-nav-label { justify-content: flex-end; }
.notice-nav-label svg { width: 12px; height: 12px; flex-shrink: 0; }
.notice-nav-title {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color var(--transition);
}
.notice-nav-item:hover .notice-nav-title { color: var(--gold-light); }

.btn-notice-list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    font-size: .88rem;
    color: var(--text-muted);
    transition: all var(--transition);
}
.btn-notice-list:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: var(--gold-glow);
}

/* ── Quill 에디터 출력 ── */
.ql-content p          { margin-bottom: 1em; line-height: 1.9; }
.ql-content h1         { font-size: 1.7rem; font-weight: 700; margin: 1.6em 0 .6em; }
.ql-content h2         { font-size: 1.35rem; font-weight: 700; margin: 1.4em 0 .5em; color: var(--gold); }
.ql-content h3         { font-size: 1.1rem; font-weight: 600; margin: 1.2em 0 .4em; }
.ql-content strong     { font-weight: 700; color: var(--text-primary); }
.ql-content em         { font-style: italic; }
.ql-content s          { opacity: .6; }
.ql-content a          { color: var(--gold-light); text-decoration: underline; }
.ql-content a:hover    { color: var(--gold); }
.ql-content ul,
.ql-content ol         { padding-left: 1.6em; margin-bottom: 1em; }
.ql-content li         { margin-bottom: .35em; line-height: 1.8; }
.ql-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 10px 18px;
    margin: 1.4em 0;
    background: var(--gold-glow);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-muted);
    font-style: italic;
}
.ql-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 16px auto;
    display: block;
    border: 1px solid var(--border);
}
.ql-content .ql-align-center { text-align: center; }
.ql-content .ql-align-right  { text-align: right; }
.ql-content .ql-align-justify{ text-align: justify; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — 태블릿 (max 1024px)
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav-list { gap: 0; }
    .nav-link { padding: 8px 10px; font-size: 0.78rem; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 모바일 (max 768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root { --header-h: 52px; }

    /* 모바일: 네비 바 숨김, 햄버거 표시 */
    .header-nav-bar { display: none; }
    .menu-toggle { display: flex; }
    .header-deco-line { flex: 1; }

    .section { padding: 64px 0; }
    .section-desc { margin-bottom: 36px; }

    .hero-slider { height: 100svh; min-height: 520px; }
    .slide { padding-left: 24px; }
    .slide::before { left: 8px; }
    .slide-actions { flex-direction: column; align-items: flex-start; }
    .slider-btn { display: none; }
    .slider-dots { left: 24px; }

    .course-grid { grid-template-columns: 1fr; gap: 16px; }
    .course-card { padding: 28px 22px; }

    .manager-grid { grid-template-columns: 1fr; }
    .manager-card { grid-template-columns: 80px 1fr; gap: 16px; padding: 18px 20px; }

    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .steps-grid::before { display: none; }

    .why-grid { grid-template-columns: 1fr; gap: 12px; }

    .benefit-item { flex-direction: column; gap: 12px; }
    .benefit-num { font-size: 1.6rem; }

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

    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

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

    .city-breadcrumb-bar { padding-top: calc(var(--header-h) + 10px); padding-bottom: 10px; }
    .city-breadcrumb-list { font-size: .72rem; gap: 4px; }
    .city-hero { min-height: 420px; }
    .city-hero-content { padding: 56px 20px 64px; }
    .city-hero-trust { margin-top: 20px; font-size: .72rem; gap: 6px 12px; }
    .visit-area-body, .mgr-intro-body { padding: 20px 22px; }
    .visit-tags { gap: 8px; }
    .visit-tag { padding: 7px 16px; font-size: .8rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .city-links-grid { gap: 8px; }
    .city-link-item { padding: 8px 16px; font-size: .82rem; }

    .notice-page-hero { padding: calc(var(--header-h) + 36px) 0 36px; }
    .notice-card-link { grid-template-columns: 110px 1fr; gap: 16px; padding: 18px 0; }
    .notice-card-thumb { width: 110px; height: 78px; }
    .notice-card-arrow { display: none; }
    .notice-card-title { font-size: .95rem; }
    .notice-card-excerpt { -webkit-line-clamp: 1; line-clamp: 1; margin-bottom: 10px; }
    .notice-detail-banner { max-height: 220px; }
    .notice-detail-banner img { max-height: 220px; }
    .notice-detail-wrap { padding: 32px 0 56px; }
    main:not(:has(.notice-detail-banner)) .notice-detail-wrap { padding-top: calc(var(--header-h) + 32px); }
    .notice-detail-content { font-size: .9rem; }
    .notice-nav { grid-template-columns: 1fr; }
    .notice-nav-next { text-align: left; }
    .notice-nav-next .notice-nav-label { justify-content: flex-start; }
}

@media (max-width: 480px) {
    .manager-grid { grid-template-columns: 1fr; }
    .intro-stats { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════
   MANAGER LIGHTBOX
   ═══════════════════════════════════════════════ */
body.lb-open { overflow: hidden; }

/* 클릭 가능 포토 힌트 — outline은 overflow:hidden에 클립되지 않음 */
.manager-photo.has-lightbox {
    cursor: zoom-in;
    outline: 2px solid transparent;
    outline-offset: 3px;
    transition: outline-color var(--transition), box-shadow var(--transition);
}
.manager-photo.has-lightbox:hover {
    outline-color: var(--gold);
    box-shadow: 0 0 0 5px var(--gold-glow), 0 0 20px rgba(196, 121, 154, 0.25);
}
.manager-photo.has-lightbox img { pointer-events: none; }

/* 라이트박스 오버레이 */
.mgr-lb {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s;
}
.mgr-lb.is-open { opacity: 1; visibility: visible; }

.mgr-lb__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    cursor: zoom-out;
}

.mgr-lb__close {
    position: absolute;
    top: 20px; right: 20px;
    z-index: 10;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
    flex-shrink: 0;
}
.mgr-lb__close:hover { background: rgba(255, 255, 255, 0.22); }

.mgr-lb__nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}
.mgr-lb__nav:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.40);
}
.mgr-lb__prev { left: 20px; }
.mgr-lb__next { right: 20px; }

.mgr-lb__inner {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: min(480px, calc(100vw - 140px));
    max-height: 92vh;
}

.mgr-lb__figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 0;
}

.mgr-lb__img {
    display: block;
    max-width: 100%;
    max-height: calc(92vh - 90px);
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.75);
    transition: opacity 0.20s ease;
}

.mgr-lb__caption {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.06em;
    text-align: center;
}

.mgr-lb__counter {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.14em;
    text-align: center;
}

@media (max-width: 768px) {
    .mgr-lb__nav  { width: 42px; height: 42px; }
    .mgr-lb__prev { left: 8px; }
    .mgr-lb__next { right: 8px; }
    .mgr-lb__close { top: 12px; right: 12px; width: 40px; height: 40px; }
    .mgr-lb__inner { max-width: calc(100vw - 108px); }
    .mgr-lb__img { max-height: calc(88vh - 80px); }
}
