/* =====================================================
   _msg5 — White + Orange Theme
   포인트컬러: #f97316  (변경 시 이 줄만 교체)
   ===================================================== */
:root {
    --accent:      #f97316;
    --accent-dark: #ea580c;
    --accent-pale: #fff7ed;
    --white:       #ffffff;
    --off-white:   #fafafa;
    --light:       #f4f4f4;
    --border:      #e8e8e8;
    --text:        #1a1a1a;
    --text-muted:  #6b6b6b;
    --text-light:  #aaaaaa;
    --black:       #111111;
    --max-w:       1120px;
    --hh:          60px;
    --r:           8px;
    --r-lg:        16px;
    --shadow:      0 4px 20px rgba(0,0,0,.08);
    --t:           .22s ease;
    --font:        'Noto Sans KR', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--white); color: var(--text); line-height: 1.7; overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

/* ===== LAYOUT ===== */
.container,
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-label {
    display: inline-block; font-size: 11px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px;
}
.section-title {
    font-size: clamp(22px, 3vw, 32px); font-weight: 700;
    color: var(--black); letter-spacing: -.025em; line-height: 1.3;
    margin-bottom: 10px;
}
.section-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 40px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 12px 24px; border-radius: var(--r);
    font-size: 14px; font-weight: 700;
    transition: background var(--t), transform var(--t), border-color var(--t), color var(--t);
    white-space: nowrap;
}
.btn-gold, .btn-accent {
    background: var(--accent); color: #fff;
    box-shadow: 0 4px 14px rgba(249,115,22,.28);
}
.btn-gold:hover, .btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline {
    background: transparent; color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 14px 32px; font-size: 15px; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--hh); z-index: 100;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--t);
}
.site-header.is-scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.1); }
.header-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
    height: 100%; display: flex; align-items: center; gap: 8px;
}
.site-logo {
    display: flex; flex-direction: column; line-height: 1.2; margin-right: auto;
}
.logo-main { font-size: 19px; font-weight: 900; color: var(--black); letter-spacing: -.03em; }
.logo-sub { font-size: 10px; color: var(--accent); font-weight: 600; letter-spacing: .06em; }

.site-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
    font-size: 13.5px; font-weight: 500; color: var(--text-muted);
    padding: 6px 12px; border-radius: 6px;
    transition: color var(--t), background var(--t); white-space: nowrap;
}
.nav-link:hover, .nav-link.is-active { color: var(--black); background: var(--light); }

/* ── 드롭다운 네비게이션 ── */
.nav-drop { position: relative; display: flex; align-items: center; }

.nav-drop-btn {
    background: none; border: none; font-family: var(--font);
    font-size: 13.5px; font-weight: 500; color: var(--text-muted);
    padding: 6px 9px; border-radius: 6px;
    display: inline-flex; align-items: center; gap: 3px;
    cursor: pointer; white-space: nowrap;
    transition: color var(--t), background var(--t);
}
.drop-chevron { width: 11px; height: 11px; flex-shrink: 0; transition: transform var(--t); }
.nav-drop:hover .nav-drop-btn { color: var(--black); background: var(--light); }
.nav-drop:hover .drop-chevron { transform: rotate(180deg); }

.nav-drop-box {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-lg); box-shadow: 0 8px 32px rgba(0,0,0,.12);
    min-width: 160px; padding: 6px 0; z-index: 2000;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
}
.nav-drop-box::before {
    content: ''; display: block; height: 6px;
}
.nav-drop:hover .nav-drop-box {
    opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-drop-box a {
    display: block; padding: 8px 18px;
    font-size: 13px; color: var(--text-muted); white-space: nowrap;
    transition: color .15s, background .15s;
}
.nav-drop-box a:hover { color: var(--accent); background: var(--accent-pale); }
.nav-drop-box a.is-active { color: var(--accent); font-weight: 700; background: var(--accent-pale); }

/* 경기도 등 도시 수 많은 지역 — 2컬럼 */
.nav-drop-box.is-wide {
    min-width: 300px; left: 0; transform: none;
}
.drop-2col { display: grid; grid-template-columns: 1fr 1fr; }
.drop-2col a { padding: 7px 14px; }

/* More 드롭다운 — 우측 정렬, 단일 컬럼 스크롤 */
.nav-more-drop .nav-more-box {
    left: auto; right: 0; transform: none;
    min-width: 200px;
    max-height: min(500px, calc(100vh - var(--hh) - 24px));
    overflow-y: auto; padding: 0;
    scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.more-group-head {
    position: sticky; top: 0;
    background: var(--white); z-index: 1;
    font-size: 12px; font-weight: 800; color: var(--accent);
    padding: 11px 18px 8px; border-bottom: 1px solid var(--border);
    letter-spacing: .03em; white-space: nowrap;
}
.more-group:not(:first-child) .more-group-head { border-top: 1px solid var(--border); }
.more-group a {
    display: block; padding: 7px 18px 7px 24px;
    font-size: 13px; color: var(--text-muted); white-space: nowrap;
    transition: color .15s, background .15s;
}
.more-group a:hover { color: var(--accent); background: var(--accent-pale); }
.more-group a.is-active { color: var(--accent); font-weight: 700; }
.more-group:last-child { padding-bottom: 6px; }

/* Hamburger */
.menu-toggle {
    display: none; background: none; border: none;
    padding: 6px; flex-direction: column; gap: 5px; border-radius: 4px;
}
.menu-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--black); border-radius: 2px; transition: var(--t);
}

/* ===== 지역 패널 ===== */
.region-overlay {
    position: fixed; inset: 0; top: var(--hh);
    background: rgba(0,0,0,.35); z-index: 94;
    opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.region-overlay.open { opacity: 1; pointer-events: auto; }

.region-panel {
    position: fixed; top: var(--hh); left: 0; right: 0;
    background: var(--white); z-index: 95;
    border-top: 2px solid var(--accent);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    max-height: min(520px, calc(100vh - var(--hh) - 16px));
    overflow-y: auto;
    transform: translateY(-6px); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
}
.region-panel.open { transform: translateY(0); opacity: 1; pointer-events: auto; }

.rpanel-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px; border-bottom: 1px solid var(--border);
    background: var(--off-white);
    position: sticky; top: 0; z-index: 1;
}
.rpanel-head-title { font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; }
.rpanel-close {
    background: none; border: none; font-size: 18px; color: var(--text-light);
    line-height: 1; padding: 2px 6px; border-radius: 4px;
    transition: color var(--t), background var(--t);
}
.rpanel-close:hover { color: var(--black); background: var(--light); }
.rpanel-body { padding: 4px 0 12px; }
.rpanel-row {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 10px 24px; border-bottom: 1px solid var(--border);
}
.rpanel-row:last-child { border-bottom: none; }
.rpanel-region {
    min-width: 72px; width: 72px; font-size: 12px; font-weight: 700; color: var(--black);
    padding-top: 5px; white-space: nowrap; flex-shrink: 0;
}
.rpanel-cities { display: flex; flex-wrap: wrap; gap: 5px; }
.rpanel-cities a {
    font-size: 12.5px; color: var(--text-muted);
    padding: 4px 11px; border: 1px solid var(--border); border-radius: 5px;
    transition: color var(--t), background var(--t), border-color var(--t); white-space: nowrap;
}
.rpanel-cities a:hover { background: var(--accent-pale); color: var(--accent); border-color: var(--accent); }

/* ===== MOBILE MENU ===== */
.mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 150;
    opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.mobile-overlay.is-open,
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 90vw);
    background: var(--white); z-index: 200;
    display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.is-open,
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.mobile-close {
    background: none; border: none; font-size: 20px; color: var(--text-muted); padding: 4px;
}
.mobile-menu-body { flex: 1; overflow-y: auto; }
.mobile-nav-list a {
    display: block; padding: 13px 20px; font-size: 14px; font-weight: 500;
    color: var(--text); border-bottom: 1px solid var(--border);
    transition: color var(--t), background var(--t);
}
.mobile-nav-list a:hover { background: var(--accent-pale); color: var(--accent); }
.mm-section-head {
    padding: 14px 20px 6px; font-size: 10.5px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; color: var(--text-light);
    background: var(--off-white); border-bottom: 1px solid var(--border);
}
.mm-region-block { padding: 12px 20px; border-bottom: 1px solid var(--border); }
.mm-region-name { font-size: 11.5px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.mm-region-cities { display: flex; flex-wrap: wrap; gap: 5px; }
.mm-region-cities a {
    font-size: 12px; color: var(--text-muted);
    padding: 3px 10px; border: 1px solid var(--border); border-radius: 4px;
    transition: color var(--t), background var(--t), border-color var(--t);
}
.mm-region-cities a:hover { background: var(--accent-pale); color: var(--accent); border-color: var(--accent); }

/* ===== HERO (index main page) ===== */
.main-hero {
    min-height: 100svh; padding-top: var(--hh);
    display: flex; align-items: center;
    background: var(--white); position: relative; overflow: hidden;
}
.main-hero::before {
    content: ''; position: absolute; right: -180px; top: 50%; transform: translateY(-50%);
    width: 520px; height: 520px;
    background: radial-gradient(circle, var(--accent-pale) 0%, transparent 72%);
    pointer-events: none;
}
.main-hero::after {
    content: ''; position: absolute; left: -100px; bottom: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--light) 0%, transparent 70%);
    pointer-events: none;
}
.main-hero-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 80px 24px;
    width: 100%;
    display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: center;
    position: relative; z-index: 1;
}
.hero-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent-pale); color: var(--accent);
    padding: 5px 14px; border-radius: 100px;
    font-size: 12px; font-weight: 700; letter-spacing: .04em; margin-bottom: 22px;
}
.hero-pill::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero-text h1 {
    font-size: clamp(38px, 5.5vw, 64px); font-weight: 900; color: var(--black);
    line-height: 1.1; letter-spacing: -.04em; margin-bottom: 8px;
}
.hero-text h1 em { color: var(--accent); font-style: normal; }
.hero-tagline { font-size: clamp(14px, 1.8vw, 18px); color: var(--text-muted); margin-bottom: 20px; }
.hero-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.9; margin-bottom: 36px; max-width: 460px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
    display: flex; border: 1px solid var(--border); border-radius: var(--r);
    overflow: hidden; width: fit-content;
}
.stat-box {
    padding: 13px 22px; display: flex; flex-direction: column; gap: 3px;
    border-right: 1px solid var(--border);
}
.stat-box:last-child { border-right: none; }
.stat-num { font-size: 20px; font-weight: 900; color: var(--black); line-height: 1; }
.stat-num span { color: var(--accent); font-size: 14px; }
.stat-label { font-size: 10.5px; color: var(--text-light); font-weight: 500; }
.hero-img-wrap { position: relative; }
.hero-img-box {
    width: 100%; aspect-ratio: 3/4; max-height: 460px;
    background: linear-gradient(145deg, var(--light) 0%, var(--border) 100%);
    border-radius: var(--r-lg);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
}
.hero-img-box img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-deco1 { position: absolute; width: 100px; height: 100px; background: var(--accent); opacity: .1; border-radius: 50%; top: -20px; right: -20px; pointer-events: none; }
.hero-img-deco2 { position: absolute; width: 60px; height: 60px; background: var(--accent); opacity: .07; border-radius: 50%; bottom: 30px; left: -15px; pointer-events: none; }
.hero-img-ph { font-size: 13px; color: var(--text-light); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-img-ph svg { width: 32px; height: 32px; opacity: .3; stroke: var(--text-light); }
.hero-badge-card {
    position: absolute; bottom: 20px; right: -20px;
    background: var(--white); border-radius: var(--r);
    padding: 12px 16px; box-shadow: 0 8px 24px rgba(0,0,0,.12);
    display: flex; flex-direction: column; gap: 2px; min-width: 120px;
}
.badge-card-top { font-size: 10px; color: var(--text-light); }
.badge-card-val { font-size: 17px; font-weight: 900; color: var(--black); }
.badge-card-val span { color: var(--accent); }

/* ===== FEATURES BAND ===== */
.features-band { background: var(--black); }
.feat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.feat-item {
    padding: 36px 28px; border-right: 1px solid rgba(255,255,255,.08);
    transition: background var(--t);
}
.feat-item:last-child { border-right: none; }
.feat-item:hover { background: rgba(255,255,255,.04); }
.feat-icon {
    width: 44px; height: 44px; background: var(--accent); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 16px;
}
.feat-kw { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: .06em; margin-bottom: 6px; }
.feat-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feat-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ===== COURSES ===== */
.course-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.course-card {
    border: 1.5px solid var(--border); border-radius: var(--r-lg);
    padding: 28px 20px 24px; position: relative;
    background: var(--white);
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.course-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: var(--shadow); }
.course-card.is-best { border-color: var(--accent); background: var(--accent-pale); }
.course-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: .08em;
    padding: 4px 14px; border-radius: 0 0 8px 8px; white-space: nowrap;
}
.course-code { font-size: 42px; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 2px; font-style: italic; }
.course-duration { font-size: 12px; color: var(--text-light); font-weight: 600; margin-bottom: 14px; }
.course-title { font-size: 14.5px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.course-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.course-cta {
    display: block; text-align: center;
    background: var(--accent); color: #fff;
    padding: 9px; border-radius: 6px;
    font-size: 13px; font-weight: 700;
    transition: background var(--t);
}
.course-cta:hover { background: var(--accent-dark); }

/* ===== HOW-TO ===== */
.how-section { background: var(--off-white); }
.how-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.how-img {
    width: 100%; aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--light), var(--border));
    border-radius: var(--r-lg);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; color: var(--text-light); font-size: 13px;
    position: relative; overflow: hidden;
}
.how-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.how-img svg { width: 36px; height: 36px; opacity: .3; stroke: var(--text-light); }
.how-img-deco { position: absolute; bottom: -30px; right: -30px; width: 120px; height: 120px; background: var(--accent); opacity: .08; border-radius: 50%; pointer-events: none; }
.how-steps { display: flex; flex-direction: column; gap: 20px; }
.how-step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
    width: 36px; height: 36px; min-width: 36px;
    background: var(--accent); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(249,115,22,.3);
}
.step-txt .step-title { font-size: 14.5px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.step-txt .step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* ===== MANAGER ALBUM ===== */
.manager-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.manager-card {
    background: var(--white); border-radius: var(--r-lg); overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--t), box-shadow var(--t);
}
.manager-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.manager-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--light); position: relative; }
.manager-photo img { width: 100%; height: 100%; object-fit: cover; }
.manager-placeholder {
    width: 100%; height: 100%; min-height: 240px;
    background: linear-gradient(145deg, var(--light), var(--border));
    display: flex; align-items: center; justify-content: center;
}
.manager-num { font-size: 48px; font-weight: 900; color: var(--accent); opacity: .4; font-style: italic; }
.manager-info { padding: 16px; }
.manager-name { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.manager-specs { display: flex; flex-direction: column; gap: 4px; }
.manager-specs li { display: flex; gap: 8px; font-size: 12.5px; color: var(--text-muted); }
.manager-specs li span { color: var(--text-light); font-weight: 600; min-width: 44px; }

/* ===== DARK INTRO ===== */
.intro-section { background: var(--black); padding: 88px 0; }
.intro-inner { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 24px; }
.intro-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.intro-title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: #fff; margin-bottom: 28px; letter-spacing: -.02em; }
.intro-text { font-size: 14.5px; line-height: 2.1; color: rgba(255,255,255,.55); }

/* ===== QNA ===== */
.qna-list { max-width: 780px; margin: 0 auto; }
.qna-item { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; margin-bottom: 10px; }
.qna-question {
    width: 100%; display: flex; align-items: center; gap: 12px;
    padding: 18px 20px; background: var(--white); border: none;
    font-size: 14.5px; font-weight: 600; color: var(--text); text-align: left;
    transition: background var(--t);
}
.qna-question:hover { background: var(--off-white); }
.qna-badge {
    width: 26px; height: 26px; min-width: 26px; border-radius: 6px;
    background: var(--accent); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.qna-badge-a { background: var(--light); color: var(--accent); }
.qna-arrow {
    margin-left: auto; flex-shrink: 0;
    width: 18px; height: 18px; position: relative;
}
.qna-arrow::before, .qna-arrow::after {
    content: ''; position: absolute; background: var(--text-muted);
    width: 9px; height: 2px; border-radius: 1px; top: 50%; right: 0;
    transition: transform var(--t);
}
.qna-arrow::before { transform: translateY(-50%) rotate(45deg); right: 7px; }
.qna-arrow::after  { transform: translateY(-50%) rotate(-45deg); }
.qna-item.is-open .qna-arrow::before { transform: translateY(-50%) rotate(-45deg); right: 7px; }
.qna-item.is-open .qna-arrow::after  { transform: translateY(-50%) rotate(45deg); }
.qna-item.is-open .qna-question { background: var(--off-white); }
.qna-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.qna-item.is-open .qna-answer { max-height: 500px; }
.qna-answer-inner { display: flex; gap: 12px; padding: 16px 20px; border-top: 1px solid var(--border); background: var(--off-white); }
.qna-answer-inner p { font-size: 14px; color: var(--text-muted); line-height: 1.85; }

/* ===== CTA ===== */
.section-cta { background: var(--accent); padding: 64px 0; }
.cta-inner { text-align: center; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.cta-inner h2 { font-size: clamp(20px, 2.8vw, 28px); font-weight: 700; color: #fff; margin-bottom: 10px; }
.cta-inner p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.section-cta .btn-gold,
.section-cta .btn-accent {
    background: #fff; color: var(--accent);
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.section-cta .btn-gold:hover,
.section-cta .btn-accent:hover { background: var(--accent-pale); }

/* ===== CITY: BREADCRUMB ===== */
.city-breadcrumb-bar {
    background: var(--off-white); border-bottom: 1px solid var(--border);
    padding-top: var(--hh);
}
.city-breadcrumb-list { display: flex; align-items: center; gap: 20px; padding: 12px 0; flex-wrap: wrap; }
.city-breadcrumb-list li { font-size: 12.5px; color: var(--text-muted); }
.city-breadcrumb-list a { color: var(--text-muted); transition: color var(--t); }
.city-breadcrumb-list a:hover { color: var(--accent); }
.city-breadcrumb-list li[aria-current="page"] { color: var(--black); font-weight: 600; }
.crumb-sep { color: var(--text-light); }

/* ===== CITY: HERO ===== */
.city-hero {
    position: relative; min-height: 320px;
    display: flex; align-items: center;
    background: var(--black); overflow: hidden;
}
.city-hero--no-img { background: linear-gradient(135deg, var(--black) 0%, #2a1810 100%); }
.city-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.city-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 100%); }
.city-hero-content { position: relative; z-index: 1; padding: 72px 24px; max-width: var(--max-w); width: 100%; margin: 0 auto; }
.slide-eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px;
}
.city-hero-title {
    font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: #fff;
    line-height: 1.2; letter-spacing: -.03em; margin-bottom: 12px;
}
.city-hero-title span { display: block; font-size: .55em; color: rgba(255,255,255,.6); font-weight: 500; margin-top: 6px; }
.slide-sub { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 28px; line-height: 1.6; }
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.city-hero-trust {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    font-size: 13px; color: rgba(255,255,255,.65);
}
.city-hero-trust strong { color: #fbbf24; }
.trust-div { color: rgba(255,255,255,.3); }

/* ===== CITY: SAME-REGION LINKS ===== */
.city-links-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.city-link-item {
    display: inline-block; font-size: 13px; color: var(--text-muted);
    padding: 7px 16px; border: 1px solid var(--border); border-radius: 5px;
    transition: color var(--t), background var(--t), border-color var(--t);
}
.city-link-item:hover { background: var(--accent-pale); color: var(--accent); border-color: var(--accent); }

/* ===== NOTICES PAGE ===== */
.notice-page-hero {
    background: var(--black); padding: 120px 0 72px;
    text-align: center; margin-top: var(--hh);
}
.notice-page-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.notice-page-title { font-size: clamp(24px, 3.5vw, 40px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.notice-page-desc { font-size: 14px; color: rgba(255,255,255,.55); }
.notice-list-section { padding: 72px 0; }
.notice-list { display: flex; flex-direction: column; gap: 16px; max-width: 780px; margin: 0 auto; }
.notice-card { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow var(--t), transform var(--t); }
.notice-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.notice-card-link { display: flex; align-items: center; gap: 20px; padding: 20px 24px; background: var(--white); }
.notice-card-thumb {
    width: 80px; height: 60px; min-width: 80px; border-radius: 6px; overflow: hidden;
    background: var(--light);
}
.notice-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.notice-card-thumb-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: var(--light);
}
.notice-card-thumb-placeholder svg { width: 24px; height: 24px; stroke: var(--text-light); opacity: .5; }
.notice-card-body { flex: 1; min-width: 0; }
.notice-card-title { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notice-card-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
.notice-card-meta { display: flex; align-items: center; gap: 16px; }
.notice-meta-date, .notice-meta-views { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--text-light); }
.notice-meta-date svg, .notice-meta-views svg { width: 13px; height: 13px; flex-shrink: 0; }
.notice-card-arrow { flex-shrink: 0; }
.notice-card-arrow svg { width: 18px; height: 18px; stroke: var(--text-light); }
.notice-card:hover .notice-card-arrow svg { stroke: var(--accent); }

/* Pagination */
.notice-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 40px; }
.page-arrow, .page-num { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; border: 1px solid var(--border); font-size: 14px; color: var(--text-muted); transition: background var(--t), color var(--t), border-color var(--t); }
.page-arrow svg { width: 16px; height: 16px; }
.page-num:hover, .page-arrow:hover { background: var(--accent-pale); color: var(--accent); border-color: var(--accent); }
.page-num.active { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 700; }

/* Empty */
.notice-empty { text-align: center; padding: 80px 0; color: var(--text-light); }
.notice-empty svg { width: 48px; height: 48px; margin: 0 auto 16px; display: block; stroke: var(--border); }
.notice-empty p { font-size: 15px; }

/* ── Notice Detail ── */
.notice-detail-banner { width: 100%; max-height: 420px; overflow: hidden; margin-top: var(--hh); }
.notice-detail-banner img { width: 100%; height: 100%; object-fit: cover; }
.notice-detail-wrap { padding: 64px 0 80px; margin-top: var(--hh); }
.notice-detail-banner + .notice-detail-wrap { margin-top: 0; }
.notice-detail-container { max-width: 760px; }
.notice-detail-header { margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.notice-back-link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; transition: color var(--t); }
.notice-back-link svg { width: 15px; height: 15px; }
.notice-back-link:hover { color: var(--accent); }
.notice-detail-title { font-size: clamp(20px, 3vw, 30px); font-weight: 800; color: var(--black); line-height: 1.35; margin-bottom: 16px; }
.notice-detail-meta { display: flex; align-items: center; gap: 20px; }

.notice-detail-content { font-size: 15px; line-height: 1.85; color: var(--text); margin-bottom: 56px; }
.notice-detail-content img { max-width: 100%; border-radius: 8px; margin: 16px 0; }
.notice-detail-content p { margin-bottom: 16px; }
.notice-detail-content h2, .notice-detail-content h3 { margin: 28px 0 12px; font-weight: 700; color: var(--black); }

.notice-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-top: 1px solid var(--border); padding-top: 28px; margin-bottom: 32px; }
.notice-nav-item { display: flex; flex-direction: column; gap: 6px; padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--r); transition: border-color var(--t), background var(--t); }
.notice-nav-item:hover { border-color: var(--accent); background: var(--accent-pale); }
.notice-nav-prev { align-items: flex-start; }
.notice-nav-next { align-items: flex-end; text-align: right; }
.notice-nav-label { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-light); }
.notice-nav-label svg { width: 14px; height: 14px; }
.notice-nav-title { font-size: 13px; font-weight: 600; color: var(--black); line-height: 1.4; max-width: 240px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.btn-notice-list { display: inline-flex; align-items: center; padding: 12px 32px; border: 2px solid var(--accent); color: var(--accent); border-radius: 8px; font-size: 14px; font-weight: 700; transition: background var(--t), color var(--t); }
.btn-notice-list:hover { background: var(--accent); color: #fff; }

/* ===== PARTNER BAR ===== */
.partner-bar { background: var(--off-white); border-top: 1px solid var(--border); }
.partner-bar-inner {
    display: flex; align-items: center; gap: 16px;
    padding: 10px 0; flex-wrap: wrap;
}
.partner-bar-label {
    display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700;
    color: var(--text-light); letter-spacing: .06em; text-transform: uppercase;
    flex-shrink: 0; white-space: nowrap;
}
.partner-bar-label svg { width: 13px; height: 13px; }
.partner-bar-list { display: flex; flex-wrap: wrap; gap: 6px; }
.partner-bar-list li a {
    font-size: 12px; color: var(--text-muted);
    padding: 3px 10px; border: 1px solid var(--border); border-radius: 4px;
    transition: color var(--t), border-color var(--t);
}
.partner-bar-list li a:hover { color: var(--accent); border-color: var(--accent); }

/* ===== FOOTER ===== */
.site-footer { padding: 44px 0 28px; border-top: 1px solid var(--border); background: var(--white); }
.footer-inner {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-tagline { font-size: 13px; color: var(--text-muted); }
.footer-contact { margin-top: 4px; }
.footer-hours { font-size: 12px; color: var(--text-light); }
.footer-links { display: flex; gap: 32px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--black); margin-bottom: 12px; letter-spacing: .04em; }
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-col ul a { font-size: 12.5px; color: var(--text-muted); transition: color var(--t); }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid var(--border); margin-top: 32px; padding-top: 20px;
}
.footer-bottom p { font-size: 12px; color: var(--text-light); }
.footer-disclaimer { margin-top: 4px; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.revealed { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .site-nav { display: none; }
    .menu-toggle { display: flex; }
    .main-hero-inner { grid-template-columns: 1fr 280px; gap: 40px; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); padding: 0; }
    .feat-item { border-bottom: 1px solid rgba(255,255,255,.08); }
    .feat-item:nth-child(2) { border-right: none; }
    .feat-item:nth-child(3) { border-bottom: none; }
    .feat-item:nth-child(4) { border-right: none; border-bottom: none; }
    .course-grid { grid-template-columns: repeat(2, 1fr); }
    .how-inner { gap: 40px; }
    .manager-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { gap: 24px; }
}

@media (max-width: 768px) {
    .main-hero-inner { grid-template-columns: 1fr; }
    .hero-img-wrap { display: none; }
    .hero-stats { width: 100%; }
    .stat-box { flex: 1; text-align: center; padding: 12px 8px; }
    .how-inner { grid-template-columns: 1fr; }
    .how-img { display: none; }
    .manager-grid { grid-template-columns: repeat(2, 1fr); }
    .course-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { flex-direction: column; gap: 28px; }
    .footer-links { gap: 20px; }
    .section { padding: 64px 0; }
    .intro-section { padding: 64px 0; }
    .section-cta { padding: 52px 0; }
    .rpanel-region { min-width: 56px; width: 56px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { justify-content: center; width: 100%; }
    .city-hero-content { padding: 60px 24px; }
    .slide-actions .btn { padding: 10px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
    .feat-grid { grid-template-columns: 1fr; }
    .feat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.08) !important; }
    .feat-item:last-child { border-bottom: none !important; }
    .course-grid { grid-template-columns: 1fr; }
    .manager-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .main-hero-inner { padding: 60px 24px; }
    .hero-text h1 { font-size: clamp(34px, 10vw, 48px); }
    .cta-actions { flex-direction: column; align-items: center; }
    .notice-card-link { flex-direction: column; align-items: flex-start; }
    .notice-card-thumb { width: 100%; height: 120px; }
    .notice-nav { grid-template-columns: 1fr; }
    .notice-nav-next { align-items: flex-start; text-align: left; }
    .notice-nav-title { max-width: 100%; }
}

/* =====================================================
   CITY PAGE — 아가씨 앨범 + 이벤트 + 메타
   ===================================================== */

/* ── 앨범 섹션 헤더 ── */
.city-album-section { padding-top: 72px; padding-bottom: 56px; }
.city-album-head { text-align: center; margin-bottom: 48px; }
.city-album-title {
    font-size: clamp(26px, 4vw, 40px); font-weight: 900;
    color: var(--black); letter-spacing: -.03em; margin-bottom: 6px;
}
.city-album-sub {
    font-size: 15px; color: var(--text-muted); margin-bottom: 16px;
}
.city-album-label {
    display: inline-block; font-size: 13px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--accent); background: var(--accent-pale);
    padding: 5px 18px; border-radius: 100px;
    border: 1px solid rgba(249,115,22,.25);
}

/* ── 매니저 그리드 (지역 페이지 전용) ── */
.city-mgr-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    margin-bottom: 48px;
}
.city-mgr-card {
    background: var(--white); border-radius: var(--r-lg); overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--t), box-shadow var(--t);
}
.city-mgr-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }

.city-mgr-photo {
    aspect-ratio: 3/4; overflow: hidden;
    background: linear-gradient(145deg, var(--light), var(--border));
    position: relative;
}
.city-mgr-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
}
.city-mgr-card:hover .city-mgr-photo img { transform: scale(1.04); }
.city-mgr-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.city-mgr-ph-num {
    font-size: 64px; font-weight: 900; color: var(--accent); opacity: .25; font-style: italic;
}

.city-mgr-info {
    padding: 16px 14px 18px; text-align: center;
    border-top: 1px solid var(--border);
}
.city-mgr-name {
    font-size: 18px; font-weight: 900; color: var(--black);
    letter-spacing: -.02em; margin-bottom: 6px;
}
.city-mgr-detail {
    font-size: 14px; font-weight: 600; color: var(--text-muted);
    letter-spacing: .01em;
}

/* ── 코스/이용안내 버튼 ── */
.city-course-btn-wrap { text-align: center; }
.city-course-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: #fff;
    padding: 16px 52px; border-radius: 8px;
    font-size: 18px; font-weight: 700; letter-spacing: -.01em;
    box-shadow: 0 6px 24px rgba(249,115,22,.32);
    transition: background var(--t), transform var(--t);
}
.city-course-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }
.city-course-btn svg { width: 20px; height: 20px; }

/* ── 특별이벤트 ── */
.city-events-section {
    background: var(--black); padding: 64px 0;
}
.city-events-box { max-width: 560px; margin: 0 auto; text-align: center; }
.city-events-title {
    font-size: clamp(20px, 3vw, 28px); font-weight: 700; color: var(--accent);
    margin-bottom: 32px; letter-spacing: .04em;
}
.city-events-list {
    list-style: none; display: flex; flex-direction: column; gap: 14px;
    counter-reset: ev;
}
.city-events-list li {
    counter-increment: ev;
    display: flex; align-items: center; gap: 14px;
    font-size: 16px; font-weight: 600; color: rgba(255,255,255,.85);
    padding: 14px 24px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r);
    text-align: left;
}
.city-events-list li::before {
    content: counter(ev);
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; min-width: 28px;
    background: var(--accent); color: #fff;
    border-radius: 50%; font-size: 13px; font-weight: 700; flex-shrink: 0;
}

/* ── 주소 + 키워드 ── */
.city-meta-section {
    padding: 40px 0; background: var(--off-white); border-top: 1px solid var(--border);
}
.city-meta-address {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; color: var(--text-muted); margin-bottom: 16px;
}
.city-meta-address svg { width: 14px; height: 14px; stroke: var(--accent); flex-shrink: 0; }
.city-meta-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.city-meta-tag {
    font-size: 12px; color: var(--text-light);
    padding: 4px 12px; background: var(--white);
    border: 1px solid var(--border); border-radius: 4px;
}

/* ── 반응형 ── */
@media (max-width: 768px) {
    .city-mgr-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .city-course-btn { padding: 14px 36px; font-size: 16px; }
    .city-events-section { padding: 52px 0; }
    .city-events-list li { font-size: 14px; padding: 12px 18px; }
    .city-album-section { padding-top: 56px; }
}
@media (max-width: 480px) {
    .city-mgr-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .city-mgr-name { font-size: 15px; }
    .city-mgr-detail { font-size: 12.5px; }
    .city-course-btn { padding: 13px 28px; font-size: 15px; width: 100%; justify-content: center; }
}
