/* ===================================================
   남해택시투어 - style2.css
   참고: lee.cmania.co.kr 스타일 기반 재설계
   폰트: Pretendard (한국어) + Manrope (영문)
   =================================================== */

/* ─── 폰트 CDN (HTML에서 로드) ─────────────────────── */

/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: #231E15; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
  word-break: keep-all;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ─── 변수 ──────────────────────────────────────────── */
:root {
  --primary:       #1A3A5C;
  --accent:        #fece0e;   /* 참고사이트 노란색 그대로 */
  --accent-dark:   #d59810;
  --accent-hover:  #C8880A;
  --green:         #2E9C5A;
  --red:           #E53E3E;
  --bg-light:      #F7F8FA;
  --bg-dark:       #111820;
  --text-muted:    #666;
  --border:        #E2E8F0;
  --radius:        14px;
  --shadow:        0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.15);
  --header-h:      105px;
  --header-h-mob:  70px;
}

/* ─── Eyebrow label ─────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-eyebrow.light { color: rgba(255,255,255,.65); }

/* ============================================================
   HEADER  ─  lee.cmania.co.kr 스타일
   - 초기: 투명 배경 / 흰 텍스트
   - 스크롤 시(.scrolled): 흰 배경 / 검정 텍스트
   ============================================================ */

/* 배경 GNB (모션 그라디언트) */
#header-bg-gnb {
  position: fixed; top: 0; left: 0; width: 100%; height: 180px;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,0) 100%);
  z-index: 8990; pointer-events: none;
  transition: opacity .3s;
}
#header-bg-gnb.hide { opacity: 0; }

#site-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 1920px;
  height: var(--header-h);
  z-index: 9000;
  border-bottom: 0px solid transparent;
  transition: background .3s, height .3s, box-shadow .3s;
}
#site-header.scrolled {
  background: rgba(255,255,255,1);
  height: 90px;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

#header-wrap {
  position: relative;
  padding-top: 32px;
  transition: padding-top .3s;
}
#site-header.scrolled #header-wrap { padding-top: 18px; }

/* ─── 로고 ──────────────────────────────── */
.site-logo {
  position: absolute;
  top: 28px; left: 38px;
  z-index: 100;
  transition: top .3s;
}
#site-header.scrolled .site-logo { top: 16px; }
.site-logo a { display: block; }
.site-logo img {
  height: 55px; width: auto; object-fit: contain;
  transition: opacity .3s;
}
/* 흰 로고는 항상, 다크 로고는 스크롤 후 */
.site-logo .logo-white { opacity: 1; filter: brightness(100); }
.site-logo .logo-dark  { position: absolute; top: 0; left: 0; opacity: 0; filter: none; }
#site-header.scrolled .site-logo .logo-white { opacity: 0; }
#site-header.scrolled .site-logo .logo-dark  { opacity: 1; }

/* ─── GNB 중앙 ──────────────────────────── */
#gnb {
  position: relative;
  padding-top: 5px;
}
#gnb ul.gnb-menu {
  font-size: 0;
  text-align: center;
}
#gnb ul.gnb-menu > li {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
#gnb ul.gnb-menu > li > a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .3px;
  line-height: 44px;
  padding: 0 36px;
  text-align: center;
  transition: color .2s;
}
#gnb ul.gnb-menu > li > a:hover { color: var(--accent); }
#site-header.scrolled #gnb ul.gnb-menu > li > a { color: #222; }
#site-header.scrolled #gnb ul.gnb-menu > li > a:hover { color: var(--accent-dark); }

/* ─── 서브메뉴 ──────────────────────────── */
#gnb ul.gnb-menu li .submenu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  height: 0; overflow: hidden;
  background: rgba(255,255,255,.97);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  transition: height .3s, opacity .3s;
  opacity: 0;
  z-index: 100;
}
#gnb ul.gnb-menu li:hover .submenu {
  height: auto; opacity: 1;
  overflow: visible;
}
#gnb ul.gnb-menu li .submenu ul { padding: 10px 0; }
#gnb ul.gnb-menu li .submenu ul li a {
  display: block;
  font-size: 14px; font-weight: 500;
  color: #333; line-height: 36px;
  padding: 0 20px; white-space: nowrap;
  transition: color .2s, background .2s;
}
#gnb ul.gnb-menu li .submenu ul li a:hover {
  color: var(--accent-dark);
  background: #FFFBEF;
}

/* ─── 전화번호 우측 ──────────────────────── */
#header-tel {
  position: absolute;
  top: 32px; right: 38px;
  font-size: 14px; font-weight: 700;
  color: var(--accent);
  line-height: 40px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 60px;
  padding: 0 18px;
  transition: border-color .3s, color .3s;
  white-space: nowrap;
}
#header-tel:hover { opacity: .75; }
#site-header.scrolled #header-tel {
  top: 20px;
  color: var(--accent-dark);
  border-color: rgba(0,0,0,.25);
}

/* Language Toggle */
.lang-toggle {
  position: absolute;
  top: 36px; right: 220px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  border: 1.5px solid rgba(255,255,255,.3);
  transition: top .3s, background .2s, border-color .2s, color .2s;
  text-decoration: none;
  line-height: 30px;
  white-space: nowrap;
}
.lang-active {
  font-weight: 900;
  color: var(--accent);
}
.lang-link {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.lang-link:hover { color: #fff; }
#site-header.scrolled .lang-toggle {
  top: 24px;
  color: #999;
  background: rgba(0,0,0,.04);
  border-color: var(--border);
}
#site-header.scrolled .lang-active {
  color: var(--accent-dark);
}
#site-header.scrolled .lang-link {
  color: #999;
}
#site-header.scrolled .lang-link:hover {
  color: var(--primary);
}
/* 모바일 메뉴 내 토글 */
.lang-toggle-mobile {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,.4) !important;
  padding: 16px 0 0 !important;
  margin-top: 12px !important;
  border-top: 1px solid rgba(255,255,255,.12);
  line-height: 36px;
}
.lang-toggle-mobile .lang-active {
  color: var(--accent) !important;
  font-weight: 900;
  font-size: 15px;
}
.all-menu-list > li.lang-toggle-mobile > a.lang-link,
.lang-toggle-mobile .lang-link {
  display: inline !important;
  color: rgba(255,255,255,.4) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}
.lang-toggle-mobile .lang-link:hover {
  color: #fff !important;
}
@media (max-width: 1000px) {
  .lang-toggle { display: none; }
}

/* ─── 모바일 햄버거 ──────────────────────── */
#open-mobile-menu {
  display: none;
  position: absolute;
  top: 15px; right: 16px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 4px;
}
#open-mobile-menu::before,
#open-mobile-menu::after,
#open-mobile-menu span {
  display: block;
  width: 100%; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background .3s;
}
#site-header.scrolled #open-mobile-menu::before,
#site-header.scrolled #open-mobile-menu::after { background: #222; }
/* 3개 선 직접 구현 */
#open-mobile-menu {
  --bar-color: #fff;
}
#site-header.scrolled #open-mobile-menu { --bar-color: #222; }

/* SVG 방식으로 햄버거 표현 */
#open-mobile-menu {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='3' y='5' width='18' height='2' rx='1'/%3E%3Crect x='3' y='11' width='18' height='2' rx='1'/%3E%3Crect x='3' y='17' width='18' height='2' rx='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}
#site-header.scrolled #open-mobile-menu {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23222'%3E%3Crect x='3' y='5' width='18' height='2' rx='1'/%3E%3Crect x='3' y='11' width='18' height='2' rx='1'/%3E%3Crect x='3' y='17' width='18' height='2' rx='1'/%3E%3C/svg%3E");
}

/* ============================================================
   ALL MENU (모바일 전체메뉴, 우측 슬라이드 패널)
   ============================================================ */
#all-menu-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9001;
  display: none;
}
#all-menu-bg.show { display: block; }

#all-menu {
  position: fixed;
  top: 0; right: -400px;
  width: 400px; height: 100%;
  background: #1a2332;
  z-index: 9002;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  visibility: hidden;
}
#all-menu.open { right: 0; visibility: visible; }

#all-menu-wrap {
  position: relative;
  padding: 50px 0 40px 44px;
}
.all-menu-logo {
  height: 36px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  margin-bottom: 8px;
}
.close-all-menu {
  position: absolute; top: 12px; right: 12px;
  width: 46px; height: 46px;
  background: rgba(255,255,255,.1); border: none;
  color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 700;
  border-radius: 50%; cursor: pointer;
  transition: background .2s;
}
.close-all-menu:hover { background: rgba(255,255,255,.2); }

.all-menu-list {
  list-style: none;
  margin-top: 28px;
}
.all-menu-list > li {
  margin-bottom: 18px;
}
.all-menu-list > li > a {
  display: block;
  font-size: 19px; font-weight: 800;
  color: #fff;
  line-height: 36px;
  letter-spacing: -.3px;
  transition: color .2s;
}
.all-menu-list > li > a:hover { color: var(--accent); }
.all-menu-list .submenu { padding: 6px 0 0; }
.all-menu-list .submenu ul li a {
  display: block;
  font-size: 14.5px; font-weight: 400;
  color: rgba(255,255,255,.55);
  line-height: 32px;
  transition: color .2s;
}
.all-menu-list .submenu ul li a:hover { color: var(--accent); opacity: 1; }

.all-menu-tel {
  display: block;
  margin-top: 28px;
  font-size: 15px; font-weight: 700;
  color: var(--accent);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

/* ============================================================
   HERO  ─  타이포 중앙 정렬 (참고사이트 스타일)
   ============================================================ */
.hero2 {
  position: relative;
  height: 100dvh; min-height: 600px; max-height: 900px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero2-bg {
  position: absolute; inset: 0;
}
.hero2-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}
.hero2-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,18,30,.25) 0%,
    rgba(10,18,30,.65) 50%,
    rgba(10,18,30,.80) 100%
  );
}
.hero2-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 24px;
  text-align: center;           /* ★ 중앙 정렬 */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero2-sub {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem; font-weight: 700; letter-spacing: 3px;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 18px;
}
.hero2-title {
  font-family: 'Pretendard', 'Noto Serif KR', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero2-title em { font-style: normal; color: #fff; }
.highlight-word {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.highlight-word::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 0; right: 0;
  height: 5px;
  background: var(--accent);
  opacity: .35;
  border-radius: 3px;
}
.hero2-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  margin-bottom: 36px; max-width: 680px;
  line-height: 1.85;
  letter-spacing: -.2px;
}
.hero2-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;            /* ★ 버튼 중앙 */
}
.btn-hero-main {
  background: var(--accent); color: #111;
  padding: 15px 36px; border-radius: 50px;
  font-weight: 800; font-size: 1rem;
  box-shadow: 0 8px 28px rgba(254,206,14,.35);
  transition: transform .2s, background .2s;
}
.btn-hero-main:hover { background: #FFD63A; transform: translateY(-2px); }
.btn-hero-sub {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 15px 30px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,.35);
  transition: background .2s;
}
.btn-hero-sub:hover { background: rgba(255,255,255,.28); }
.hero2-notice {
  margin-top: 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  letter-spacing: -.2px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: #fff;
  padding: 90px 0 70px;
}
.about-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.about-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.title-dot { font-style: normal; }
.about-desc {
  color: var(--text-muted);
  font-size: .95rem; line-height: 1.8;
  max-width: 620px; margin: 0 auto 36px;
}

/* 4대 특징 카드 */
.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 44px;
  text-align: center;
}
.af-item {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px 24px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.af-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}
.af-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.af-item strong {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: -.3px;
}
.af-item p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-stats {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 56px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 26px 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 48px; gap: 4px;
}
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--primary);
  letter-spacing: -1px;
}
.stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 600; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── 기사님 소개 인용문 블록 ─── */
.about-quote-block {
  position: relative;
  max-width: 640px;
  margin: 10px auto 0;
  text-align: center;
  padding: 40px 32px 32px;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.05);
}
.about-quote-mark {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .35;
  pointer-events: none;
}
.about-quote-text {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.5;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.about-highlight {
  color: var(--accent-dark);
  background: linear-gradient(transparent 60%, rgba(254,206,14,.3) 60%);
  padding: 0 4px;
}
.about-quote-sub {
  font-size: clamp(.92rem, 1.8vw, 1.05rem);
  color: #555;
  line-height: 1.8;
  font-weight: 500;
}
.about-quote-sub strong {
  color: var(--primary);
  font-weight: 700;
}
.about-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.about-sig-line {
  width: 40px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.about-signature span {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* 특징 칩 */
.about-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.about-chip {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.about-chip:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(254,206,14,.2);
  transform: translateY(-2px);
}

/* ============================================================
   COURSES SECTION (3번째 - 상세 2열 배치)
   ============================================================ */
.courses-section {
  background: var(--bg-light);
  padding: 80px 0 70px;
}
.courses-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.courses-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--primary);
  margin-bottom: 10px; letter-spacing: -1px;
}
.courses-sub {
  color: var(--text-muted); font-size: .9rem;
  margin-bottom: 44px;
}

/* 2열 그리드 */
.cd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  text-align: left;
}
.cd-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.cd-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
/* 5번째 코스(맞춤형)는 전체 너비 */
.cd-card-full { grid-column: span 2; }

/* 카드 헤더 (아이콘 + 제목 + 배지) */
.cd-header {
  display: flex; align-items: flex-start; gap: 14px;
}
.cd-icon {
  font-size: 2.2rem; flex-shrink: 0; line-height: 1;
  margin-top: 2px;
}
.cd-header h3 {
  font-size: 1.05rem; font-weight: 800;
  color: var(--primary); line-height: 1.35;
  letter-spacing: -.3px; margin-bottom: 6px;
}
.cd-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.cd-badge-time, .cd-badge-price {
  font-size: .78rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
}
.cd-badge-time {
  background: var(--bg-light); color: var(--primary);
  border: 1px solid var(--border);
}
.cd-badge-price {
  background: #FFF9DC; color: var(--accent-dark);
  border: 1px solid #F0E4A0;
}

/* 경로 */
.cd-route {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .88rem; line-height: 1.8;
  color: #333;
  position: relative;
}
.cd-route strong { color: var(--primary); font-weight: 700; }

/* 경로 스팟 & 화살표 */
.rt-spot {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 12px 3px 8px;
  font-size: .84rem;
  line-height: 1.6;
  margin: 3px 0;
  transition: border-color .2s, box-shadow .2s;
}
.rt-spot:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(254,206,14,.2);
}
.rt-spot strong { font-weight: 800; }
.rt-arrow {
  display: inline-block;
  color: var(--accent-dark);
  font-size: .75rem;
  font-weight: 700;
  margin: 0 2px;
  vertical-align: middle;
}
.cd-route-label {
  display: inline-block;
  font-size: .7rem; font-weight: 800;
  color: var(--accent-dark);
  background: #FFF3DC;
  padding: 1px 8px; border-radius: 4px;
  margin-bottom: 4px;
  letter-spacing: 1px; text-transform: uppercase;
}

/* 참고 */
.cd-note {
  background: #FFF5F5;
  border-left: 4px solid var(--red);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: .82rem; color: #C53030;
  line-height: 1.6;
}

/* 예약 버튼 */
.cd-book {
  display: block;
  background: var(--primary); color: #fff;
  padding: 12px; border-radius: 50px;
  text-align: center; font-weight: 700;
  font-size: .9rem;
  transition: background .2s, transform .2s;
  margin-top: auto;
}
.cd-book:hover { background: #244b6e; transform: translateY(-2px); }

/* ============================================================
   COURSE IMAGE CARDS (cimg-*)
   ============================================================ */
.cimg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.cimg-card {
  background: #F5ECD7;
  border: 2.5px solid #C8A96E;
  border-radius: 20px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.cimg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.cimg-photo {
  width: 100%;
  height: auto;
  display: block;
}
.cimg-book {
  display: block;
  background: var(--primary); color: #fff;
  padding: 14px; border-radius: 0 0 17px 17px;
  text-align: center; font-weight: 700;
  font-size: .95rem;
  transition: background .2s;
  margin-top: auto;
}
.cimg-book:hover { background: #244b6e; }

@media (max-width: 900px) {
  .cimg-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

/* ============================================================
   ROUTE MAP INFOGRAPHIC (S-curve style cards)
   ============================================================ */
.rmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: center;
}
.rmap-card {
  background: #F5ECD7;
  border: 2.5px solid #C8A96E;
  border-radius: 20px;
  padding: 32px 24px 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: transform .3s, box-shadow .3s;
}
.rmap-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

/* 헤더: 이모지 + 제목 */
.rmap-head {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
}
.rmap-emoji {
  font-size: 2.6rem; line-height: 1; flex-shrink: 0;
}
.rmap-head h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 900; color: #333;
  line-height: 1.35; letter-spacing: -1px;
  text-align: left;
}

/* 배지 */
.rmap-badges {
  display: flex; justify-content: center; gap: 10px;
  flex-wrap: wrap;
}
.rmap-time, .rmap-price {
  font-size: .82rem; font-weight: 700;
  padding: 5px 16px; border-radius: 50px;
}
.rmap-time {
  background: #fff; color: #555;
  border: 1px solid #ccc;
}
.rmap-price {
  background: #FFF3B0; color: #7A5C00;
  border: 1px solid #E8D56F;
}

/* S자 경로 영역 */
.rmap-route {
  position: relative;
  width: 100%;
  margin: 8px 0 4px;
}
.rmap-route--5 { height: 380px; }
.rmap-route--4 { height: 340px; }
.rmap-route--8 { height: 500px; }

.rmap-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.rmap-path {
  fill: none;
  stroke: #C8A06E;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rmap-dot-end {
  fill: #C8A06E;
}

/* 경유지 스톱 */
.rmap-stop {
  position: absolute;
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  z-index: 2;
  transform: translate(-50%, 0);
}
.rmap-stop span {
  font-size: .76rem; font-weight: 700;
  color: #444; line-height: 1.3;
  white-space: nowrap;
}
.rmap-stop-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 3px solid #C8A06E;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: transform .2s;
}
.rmap-stop-circle:hover { transform: scale(1.1); }

/* 출발 스톱 (크게) */
.rmap-stop-start {
  width: 70px; height: 70px;
  font-size: 2rem;
  border-width: 4px;
  background: #FFF8E8;
}

/* 도착 스톱 (텍스트만) */
.rmap-stop-final {
  transform: translate(0, -50%);
}
.rmap-stop-final span {
  font-size: .78rem;
  color: #666;
  font-weight: 600;
}

/* 참고 */
.rmap-note {
  background: rgba(255,255,255,.6);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .8rem; color: #555;
  line-height: 1.7;
  text-align: left;
}

/* 예약 버튼 */
.rmap-book {
  display: block;
  background: var(--primary); color: #fff;
  padding: 13px; border-radius: 50px;
  text-align: center; font-weight: 700;
  font-size: .9rem;
  transition: background .2s, transform .2s;
  margin-top: auto;
}
.rmap-book:hover { background: #244b6e; transform: translateY(-2px); }

/* 반응형 */
@media (max-width: 900px) {
  .rmap-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .rmap-stop-circle { width: 46px; height: 46px; font-size: 1.3rem; }
  .rmap-stop-start { width: 58px; height: 58px; font-size: 1.6rem; }
  .rmap-stop span { font-size: .7rem; }
  .rmap-route--5 { height: 340px; }
  .rmap-route--8 { height: 440px; }
}

/* ============================================================
   TOUR BANNER (dark bg section)
   ============================================================ */
.tour-banner {
  position: relative; overflow: hidden;
  padding: 100px 0;
}
.tour-banner-bg {
  position: absolute; inset: 0;
}
.tour-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.3) saturate(.7);
}
.tour-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,18,30,.7) 0%, rgba(26,58,92,.5) 100%);
}
.tour-banner-inner {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tour-banner-text h2 {
  font-family: 'Pretendard', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; color: #fff;
  margin-bottom: 16px; letter-spacing: -1px;
}
.tour-banner-text p {
  color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.8;
  margin-bottom: 28px;
}
.tour-banner-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 36px;
}
.tbf-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 600;
}
.tbf-icon { font-size: 1.2rem; }
.tour-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-banner-main {
  background: var(--accent); color: #111;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 800; font-size: .95rem;
  box-shadow: 0 6px 20px rgba(254,206,14,.35);
  transition: transform .2s, background .2s;
}
.btn-banner-main:hover { background: #FFD63A; transform: translateY(-2px); }
.btn-banner-sub {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  color: #fff; padding: 13px 24px; border-radius: 50px;
  font-weight: 700; font-size: .95rem;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: background .2s;
}
.btn-banner-sub:hover { background: rgba(255,255,255,.25); }

/* Tour Slider */
.tour-slider-wrap { position: relative; }
.tour-slider {
  display: flex; gap: 16px;
  overflow: hidden;
}
.ts-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 22px 20px;
  min-width: calc(50% - 8px);
  opacity: .5;
  transform: scale(.95);
  transition: all .4s;
  flex-shrink: 0;
}
.ts-card.active {
  opacity: 1; transform: scale(1);
  border-color: rgba(254,206,14,.5);
  background: rgba(255,255,255,.15);
}
.ts-flag { font-size: 2rem; margin-bottom: 8px; }
.ts-card h4 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.ts-card p { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.ts-nav {
  display: flex; gap: 10px; margin-top: 16px; justify-content: flex-end;
}
.ts-prev, .ts-next {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.ts-prev:hover, .ts-next:hover { background: var(--accent); border-color: var(--accent); color: #111; }

/* ============================================================
   GALLERY / NEWS
   ============================================================ */
.gallery-section { background: var(--bg-light); padding: 80px 0 70px; }
.gallery-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  text-align: center;
}
.gallery-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--primary);
  margin-bottom: 10px; letter-spacing: -1px;
}
.gallery-sub { color: var(--text-muted); font-size: .9rem; margin-bottom: 44px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  text-align: left;
  margin-bottom: 48px;
}
.gg-main {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.gg-main img { width: 100%; height: 100%; object-fit: cover; }
.gg-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,18,30,.9), transparent);
  padding: 40px 24px 24px;
  color: #fff;
}
.gg-tag {
  font-family: 'Manrope', sans-serif;
  font-size: .72rem; font-weight: 700; letter-spacing: 2px;
  color: var(--accent); text-transform: uppercase;
  display: block; margin-bottom: 6px;
}
.gg-caption h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.gg-caption p { font-size: .82rem; opacity: .85; line-height: 1.6; }

.gg-sub-list { display: flex; flex-direction: column; gap: 20px; }
.gg-sub {
  display: grid; grid-template-columns: 130px 1fr;
  border-radius: var(--radius); overflow: hidden;
  background: #fff; box-shadow: var(--shadow);
  text-align: left;
}
.gg-sub img { width: 100%; height: 100%; object-fit: cover; }
.gg-sub-info { padding: 16px; }
.gg-sub-info h4 { font-size: .9rem; font-weight: 800; color: var(--primary); margin: 6px 0 6px; }
.gg-sub-info p { font-size: .78rem; color: var(--text-muted); line-height: 1.6; }

.feature-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 8px; text-align: left;
}
.feat-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex; align-items: flex-start; gap: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.feat-icon { font-size: 1.8rem; flex-shrink: 0; }
.feat-item strong { font-size: .95rem; color: var(--primary); display: block; margin-bottom: 4px; }
.feat-item p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing2-section { background: #fff; padding: 80px 0 70px; text-align: center; }
.pricing2-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.pricing2-inner > h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900;
  color: var(--primary); margin-bottom: 10px; letter-spacing: -1px;
}
.pricing2-inner > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 44px; }

.p2-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 20px; text-align: left; }
.p2-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.p2-card-warning { border-color: #FED7D7; background: #FFF5F5; }
.p2-icon { font-size: 1.8rem; margin-bottom: 12px; }
.p2-card h3 { font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 14px; }
.p2-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.p2-card ul li { font-size: .85rem; color: #333; display: flex; gap: 8px; align-items: flex-start; }
.p2-card ul li::before { content: '·'; color: var(--accent-dark); font-weight: 900; margin-top: 2px; flex-shrink: 0; }
.p2-card-warning ul li::before { color: var(--red); }

.p2-card-calc { background: linear-gradient(135deg, #1A3A5C 0%, #1e4d7b 100%); border-color: transparent; }
.p2-card-calc h3 { color: #fff; }
.calc2-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.calc2-select {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; color: #fff; font-size: .85rem;
  outline: none; cursor: pointer;
  appearance: auto; font-family: 'Pretendard', sans-serif;
}
.calc2-select option { background: #1A3A5C; color: #fff; }
.calc2-result {
  background: rgba(255,255,255,.15);
  border-radius: 8px; padding: 12px 16px;
  font-size: .9rem; color: rgba(255,255,255,.9);
}
.calc2-result strong { font-size: 1.2rem; color: var(--accent); margin-left: 6px; }

/* 운영 안내 (요금섹션 통합) */
.p2-info-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.p2-info-item {
  display: flex; align-items: center; gap: 12px;
  text-align: left;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 14px;
  transition: border-color .2s;
}
.p2-info-item:hover { border-color: var(--accent); }
.p2-info-icon { font-size: 1.5rem; flex-shrink: 0; }
.p2-info-item strong { font-size: .84rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 2px; }
.p2-info-item p { font-size: .8rem; color: var(--text-muted); }

/* 보리암 주차장 옵션 (폼) */
.boriam-option {
  animation: fadeSlide .3s ease;
}
.boriam-option select {
  border-color: #fece0e !important;
  background: #FFFEF5;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESERVATION
   ============================================================ */
.reservation2-section { background: var(--bg-light); padding: 80px 0 70px; text-align: center; }
.reservation2-inner {
  max-width: 820px; margin: 0 auto; padding: 0 24px;
}
.reservation2-inner > h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900;
  color: var(--primary); margin-bottom: 10px; letter-spacing: -1px;
}
.reservation2-inner > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 40px; }

.res2-form {
  background: #fff; border-radius: 20px;
  padding: 40px 36px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  text-align: left;
}
.res2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 20px; }
.res2-full { grid-column: span 2; }
.res2-field { display: flex; flex-direction: column; gap: 6px; }
.res2-field label { font-size: .84rem; font-weight: 700; color: var(--primary); }
.req { color: var(--red); margin-left: 2px; }
.res2-field input,
.res2-field select,
.res2-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .9rem; font-family: 'Pretendard', sans-serif;
  outline: none; width: 100%;
  transition: border-color .2s;
  background: #fff;
}
.res2-field input:focus,
.res2-field select:focus,
.res2-field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,92,.08); }
.res2-field textarea { resize: vertical; }

.res2-terms {
  background: var(--bg-light);
  border-radius: 10px; padding: 14px 16px;
  margin-bottom: 22px;
}
.terms-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .84rem; color: #333; cursor: pointer;
}
.terms-label input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--accent-dark); margin-top: 2px; flex-shrink: 0;
}
.res2-submit {
  width: 100%; padding: 16px;
  background: var(--accent); color: #111;
  border: none; border-radius: 50px;
  font-size: 1.05rem; font-weight: 800;
  box-shadow: 0 8px 24px rgba(254,206,14,.3);
  transition: background .2s, transform .2s;
  font-family: 'Pretendard', sans-serif;
}
.res2-submit:hover { background: #FFD63A; transform: translateY(-2px); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-section { background: #fff; padding: 70px 0 60px; text-align: center; }
.partners-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.partners-inner > h2 {
  font-size: 1.8rem; font-weight: 900; color: var(--primary);
  margin-bottom: 36px; letter-spacing: -1px;
}
.partners-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.partner-item {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 24px 18px;
  display: flex; align-items: center; gap: 14px; text-align: left;
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
}
.partner-item:hover { transform: translateY(-3px); border-color: var(--accent); }
.pi-icon { font-size: 1.8rem; flex-shrink: 0; }
.partner-item strong { font-size: .88rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 3px; }
.partner-item p { font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   FOOTER  ─  참고사이트 스타일
   ============================================================ */
.site-footer2 {
  background: #231E15;
  padding: 70px 0 60px;
}
.footer2-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.footer2-left {
  flex: 1;
  min-width: 0;
}
.footer2-logo { height: 55px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .75; }
.footer2-left p {
  font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.8;
  max-width: 360px;
}
.footer2-right {
  flex-shrink: 0;
  text-align: right;
}
@media (max-width: 768px) {
  .footer2-inner {
    flex-direction: column;
    gap: 30px;
  }
  .footer2-right {
    text-align: left;
  }
}
.footer2-contact strong { display: block; font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.footer2-contact a {
  font-family: 'Manrope', sans-serif;
  font-size: 1.6rem; font-weight: 700; color: var(--accent-dark);
}
.footer2-copy { font-size: .75rem; color: rgba(255,255,255,.25); margin-top: 28px; }
.footer2-info {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 14px;
}
.footer2-insta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  transition: background .2s;
}
.footer2-insta:hover {
  background: rgba(255,255,255,.15);
}
.footer2-bank-pill {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

/* ============================================================
   COURSE DETAIL MODAL
   ============================================================ */
.course-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.65); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: all .3s;
}
.course-modal-overlay.active { opacity: 1; visibility: visible; }
.course-modal {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 520px; padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  position: relative;
  transform: scale(.9);
  transition: transform .3s;
}
.course-modal-overlay.active .course-modal { transform: scale(1); }
.cm-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg-light); border: none;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 1rem; color: var(--text-muted);
  transition: background .2s;
}
.cm-close:hover { background: var(--border); }
.cm-icon { font-size: 2.8rem; margin-bottom: 10px; }
.cm-header { text-align: center; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.cm-header h3 { font-size: 1.2rem; font-weight: 900; color: var(--primary); margin-bottom: 10px; }
.cm-meta { display: flex; justify-content: center; gap: 16px; }
.cm-meta span {
  background: var(--bg-light); padding: 5px 14px;
  border-radius: 50px; font-size: .82rem; font-weight: 700;
  color: var(--primary);
}
.cm-meta span:last-child { background: #FFF9DC; color: var(--accent-dark); }
.cm-route {
  background: var(--bg-light); border-radius: 12px;
  padding: 16px; font-size: .88rem; line-height: 1.8;
  color: #333; margin-bottom: 14px;
}
.cm-note {
  background: #FFF5F5; border-left: 4px solid var(--red);
  padding: 12px 14px; border-radius: 0 8px 8px 0;
  font-size: .82rem; color: #C53030; margin-bottom: 24px; line-height: 1.6;
}
.cm-book-btn {
  display: block; width: 100%;
  background: var(--accent); color: #111;
  padding: 14px; border-radius: 50px;
  text-align: center; font-weight: 800; font-size: .95rem;
  box-shadow: 0 6px 20px rgba(254,206,14,.25);
  transition: background .2s, transform .2s;
}
.cm-book-btn:hover { background: #FFD63A; transform: translateY(-2px); }

/* ============================================================
   RESERVATION CONFIRM MODAL
   ============================================================ */
.res-modal-overlay {
  position: fixed; inset: 0; z-index: 10100;
  background: rgba(0,0,0,.65); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: all .3s;
}
.res-modal-overlay.active { opacity: 1; visibility: visible; }
.res-modal {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 480px; padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  text-align: center;
  transform: scale(.9); transition: transform .3s;
}
.res-modal-overlay.active .res-modal { transform: scale(1); }
.rm-icon { font-size: 2.8rem; margin-bottom: 10px; }
.res-modal h3 { font-size: 1.3rem; font-weight: 900; color: var(--primary); margin-bottom: 12px; }
.rm-summary {
  background: var(--bg-light); border-radius: 12px;
  padding: 16px; margin-bottom: 20px; text-align: left;
  font-size: .84rem; line-height: 1.8;
}
.rm-summary .si { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px dashed var(--border); }
.rm-summary .si:last-child { border-bottom: none; }
.rm-actions { display: flex; flex-direction: column; gap: 10px; }
.rm-btn {
  display: block; padding: 13px;
  border-radius: 50px; font-weight: 700; font-size: .92rem;
  border: none; transition: all .2s; cursor: pointer;
  font-family: 'Pretendard', sans-serif;
}
.rm-btn-green { background: #25D366; color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,.3); }
.rm-btn-blue { background: var(--primary); color: #fff; }
.rm-btn-gray { background: var(--bg-light); color: var(--text-muted); }
.rm-btn:hover { transform: translateY(-2px); opacity: .9; }

/* ============================================================
   MOBILE FLOATING BAR
   ============================================================ */
.mfb {
  position: fixed; bottom: 10px; left: 12px; right: 12px;
  height: 44px; z-index: 800;
  display: grid; grid-template-columns: 1fr 1.4fr 1fr;
  background: #231E15;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.mfb-btn {
  display: flex; flex-direction: row;
  align-items: center; justify-content: center;
  gap: 5px; font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.75);
  transition: color .2s;
  text-decoration: none;
}
.mfb-btn span:first-child { font-size: .9rem; }
.mfb-call {
  color: #7DD3FC;
  border-right: 1px solid rgba(255,255,255,.12);
}
.mfb-reserve {
  background: var(--accent);
  color: #111;
  border-radius: 50px;
  margin: 4px 6px;
  font-weight: 800;
}
.mfb-course {
  color: rgba(255,255,255,.6);
  border-left: 1px solid rgba(255,255,255,.12);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1400px) {
  #site-logo { left: 20px; }
  #gnb ul.gnb-menu > li > a { padding: 0 22px; }
  #header-tel { right: 20px; }
}
@media (max-width: 1100px) {
  #gnb ul.gnb-menu > li > a { padding: 0 14px; font-size: 16px; }
}
@media (max-width: 1000px) {
  #gnb, #header-bg-gnb { display: none; }
  #site-header { height: var(--header-h-mob); }
  #site-header.scrolled { height: var(--header-h-mob); }
  #header-wrap { padding-top: 0; }
  .site-logo { top: 14px; left: 16px; }
  #site-header.scrolled .site-logo { top: 14px; }
  .site-logo img { height: 44px; }
  #header-tel { display: none; }
  #open-mobile-menu { display: flex; top: 14px; right: 10px; }
  #all-menu { width: min(380px, 85vw); }
  .course-cards-row { grid-template-columns: repeat(3, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .site-footer2 { padding-bottom: 80px; }
  .hero2 { height: 100svh; }
  .hero2-title { letter-spacing: -.5px; }
  .about-section { padding: 60px 0 50px; }
  .about-features { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 0 20px; }
  .stat-divider { display: none; }
  .course-cards-row { grid-template-columns: repeat(2, 1fr); }
  .cd-grid { grid-template-columns: 1fr; }
  .cd-card-full { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gg-sub { grid-template-columns: 110px 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .p2-grid { grid-template-columns: 1fr; }
  .p2-info-row { grid-template-columns: repeat(2, 1fr); }
  .p2-card-calc { grid-column: auto; }
  .res2-form { padding: 28px 20px; }
  .res2-grid { grid-template-columns: 1fr; }
  .res2-full { grid-column: auto; }
  .tour-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer2-right { position: static; text-align: left; margin-top: 24px; }
  #all-menu { width: 80vw; }
}
@media (max-width: 480px) {
  .course-cards-row { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .ts-card { min-width: calc(100% - 16px); }
  .hero2-content {
    /* 고정된 모바일 헤더 높이(70px)를 고려해 중앙 정렬 기준점을 아래로 밀어줌 */
    padding-top: 80px; 
  }
  .hero2-title {
    /* 최소 폰트 크기를 기존 2.2rem에서 1.7rem 수준으로 축소하여 줄바꿈 최소화 */
    font-size: clamp(1.7rem, 6vw, 2.2rem); 
  }
}

@media (min-width: 1001px) {
  .mfb { display: none; }
  body { padding-bottom: 0; }
}
