/* ═══════════════════════════════════════════
   웨디아 여수웅천점 — Design System
   Editorial Luxury · Pretendard · #44797B
   ═══════════════════════════════════════════ */

:root {
  --primary:    #44797B;
  --primary-dk: #316162;
  --primary-lt: #5A9496;
  --accent:     #C8A2A2;
  --soft-pink:  #F4D8D8;
  --cream:      #FFF8F0;
  --rose-wh:    #FFF5F5;
  --text:       #2C2A28;
  --text-md:    #5A5855;
  --text-lt:    #8A8885;
  --border:     #E8E0D8;
  --white:      #FFFFFF;

  --font-sans: 'Barlow', 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(68,121,123,.08);
  --shadow-md: 0 6px 24px rgba(68,121,123,.12);
  --shadow-lg: 0 16px 48px rgba(68,121,123,.16);

  --max-w: 1080px;
  --pad-x: clamp(16px, 4vw, 40px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── 타이포그래피 ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.35; letter-spacing: -0.02em; }
h1 { font-size: clamp(26px, 4vw, 40px); }
h2 { font-size: clamp(20px, 2.8vw, 30px); }
h3 { font-size: clamp(17px, 2vw, 22px); }

.section-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ── 레이아웃 ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section   { padding: clamp(56px, 8vw, 96px) var(--pad-x); }
.section--alt { background: var(--rose-wh); }
.section--dark { background: var(--primary); color: var(--white); }

/* ══════════════════════════════════════
   헤더 — 한 줄, 로고 왼쪽 / 상담예약 오른쪽
   ══════════════════════════════════════ */

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,248,240,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ─── 로고 (왼쪽) ─── */
.site-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-img {
  display: block;
  height: 22px; width: auto;
  object-fit: contain;
}
/* 헤더(밝은 배경)에서 어두운 로고, 밝은 로고 토글 */
.logo-img--light { display: none; }
.logo-img--dark  { display: block; }

.logo-branch {
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em;
  color: var(--text-lt);
  white-space: nowrap;
  padding-left: 4px;
  border-left: 1px solid var(--border);
}

/* ─── 내비 (오른쪽 — 상담 예약 버튼 옆) ─── */
.site-nav {
  display: flex; align-items: center; gap: 4px;
}

.nav-link {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 500; letter-spacing: .06em;
  color: var(--text-md);
  padding: 8px 14px;
  border: none; background: none; cursor: pointer;
  white-space: nowrap;
  transition: color .18s;
  text-decoration: none;
}
.nav-link:hover   { color: var(--primary); }
.nav-link.is-active { color: var(--primary); font-weight: 600; }

/* 드롭다운 화살표 */
.dropdown-arrow { flex-shrink: 0; transition: transform .22s; }
.nav-dropdown-btn[aria-expanded="true"] .dropdown-arrow { transform: rotate(180deg); }

/* 드롭다운 패널 */
.has-dropdown { position: relative; }
.dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;           /* 간격 없이 바로 붙임 */
  left: 50%; transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding-top: 8px;    /* 시각적 여백은 패딩으로 */
  padding: 8px; min-width: 230px; z-index: 300;
  /* 버튼→패널 이동 시 사라지지 않도록 위쪽 여백 추가 */
  margin-top: 0;
}
/* 보이지 않는 브릿지로 hover gap 메우기 */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 12px;
  background: transparent;
}
.dropdown-panel.is-open { display: flex; flex-direction: column; }
.dropdown-panel a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 11px 14px; border-radius: var(--radius-md);
  text-decoration: none; color: var(--text);
  transition: background .14s;
}
.dropdown-panel a:hover, .dropdown-panel a.is-active { background: var(--cream); }
.dropdown-panel a strong { font-size: 13px; font-weight: 700; color: var(--primary); }
.dropdown-panel a span   { font-size: 11px; color: var(--text-lt); }

/* ─── 오른쪽 영역 (nav + cta 묶음) ─── */
.header-right {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  margin-left: auto;
}

/* 상담 예약 버튼 */
.nav-reserve {
  display: inline-flex; align-items: center;
  background: var(--primary); color: var(--white);
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  padding: 9px 20px; border-radius: 100px;
  white-space: nowrap; text-decoration: none;
  transition: background .18s, transform .18s;
}
.nav-reserve:hover { background: var(--primary-dk); transform: translateY(-1px); }

/* ─── 햄버거 ─── */
.nav-hamburger {
  display: none; flex-direction: column;
  justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; width: 32px; height: 32px;
}
.ham-line {
  display: block; width: 20px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform .28s, opacity .28s;
}
.nav-hamburger.is-open .ham-line:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-hamburger.is-open .ham-line:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* ─── 모바일 풀스크린 메뉴 ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 500;
  background: var(--cream);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 490;
  background: rgba(0,0,0,.38);
  opacity: 0; pointer-events: none;
  transition: opacity .32s;
}
.mobile-menu-overlay.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--pad-x);
  border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--text-lt); padding: 8px;
}
.mobile-nav {
  flex: 1; display: flex; flex-direction: column;
  padding: 28px var(--pad-x); gap: 0;
}
.mobile-nav-link {
  font-size: 20px; font-weight: 300; letter-spacing: .04em;
  color: var(--text); padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block; text-decoration: none; transition: color .18s;
}
.mobile-nav-link:hover { color: var(--primary); }
.mobile-nav-group { padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-nav-group-title {
  font-size: 10px; letter-spacing: .18em; color: var(--text-lt);
  text-transform: uppercase; margin-bottom: 10px;
}
.mobile-nav-sub {
  display: block; font-size: 14px; color: var(--text-md);
  padding: 7px 0; text-decoration: none; transition: color .18s;
}
.mobile-nav-sub:hover { color: var(--primary); }
.mobile-nav-cta {
  display: inline-flex; align-items: center;
  margin-top: 28px; align-self: flex-start;
  background: var(--primary); color: var(--white);
  padding: 13px 28px; border-radius: 100px;
  font-weight: 700; font-size: 14px; text-decoration: none;
}
.mobile-menu-footer {
  padding: 20px var(--pad-x);
  border-top: 1px solid var(--border);
  font-size: 11px; color: var(--text-lt); line-height: 1.9;
}

/* ── 브레드크럼 ── */
.breadcrumb {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 10px var(--pad-x);
}
.breadcrumb ol { display: flex; align-items: center; gap: 6px; list-style: none; max-width: var(--max-w); margin: 0 auto; flex-wrap: wrap; }
.breadcrumb li { font-size: 12px; color: var(--text-lt); }
.breadcrumb a  { color: var(--primary); }
.bc-sep { opacity: .4; }

/* ── 히어로 ── */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(380px, 55vw, 600px);
  display: flex; align-items: center;
  background: #0e1c1c;
}
.hero-bg {
  position: absolute; inset: 0;
  object-fit: cover; width: 100%; height: 100%;
  opacity: .45;
}
.hero--video { min-height: 100svh; }
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,26,26,.52) 0%,
    rgba(10,26,26,.32) 50%,
    rgba(10,26,26,.62) 100%
  );
}
.hero-content {
  position: relative; z-index: 4;
  max-width: var(--max-w);
  margin: 0 auto; padding: 64px var(--pad-x);
  color: var(--white);
}
.hero h1 { font-size: clamp(28px, 5vw, 52px); margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.hero-desc { font-size: clamp(15px, 2vw, 18px); opacity: .9; margin-bottom: 32px; max-width: 520px; }
.hero-cta  {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--primary);
  padding: 14px 32px; border-radius: 100px;
  font-weight: 700; font-size: 15px;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ── 비포에프터 무한 자동슬라이더 ── */
.ba-scroll-section {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--rose-wh);
  overflow: hidden;
}
.ba-scroll-header {
  text-align: center;
  padding: 0 var(--pad-x);
  margin-bottom: 36px;
}
.ba-scroll-header h2 { color: var(--primary); }

/* Swiper 기본 — 너비 auto로 슬라이드마다 크기 결정 */
.ba-swiper { width: 100%; overflow: hidden; }
.ba-swiper .swiper-wrapper {
  /* Swiper JS가 transition 제어하므로 CSS에서 transition 설정 X */
  align-items: stretch;
}

.ba-slide {
  width: auto !important;
  flex-shrink: 0;
}
.ba-single-item {
  padding: 0 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ba-single-item img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .ba-single-item img { width: 260px; height: 260px; }
}

/* ── 섹션 헤더 ── */
.section-header { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }
.section-header h2 { color: var(--primary); margin-bottom: 12px; }
.section-header p   { color: var(--text-md); max-width: 560px; margin: 0 auto; }

/* ── Before/After 갤러리 ── */
.ba-section { background: var(--rose-wh); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.ba-pair {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.ba-pair-inner { display: grid; grid-template-columns: 1fr 1fr; }
.ba-item { position: relative; }
.ba-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.ba-label {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.6); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 3px 10px; border-radius: 100px;
}

/* ── 프로그램 카드 ── */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}
.program-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.program-card-img { aspect-ratio: 4/3; overflow: hidden; }
.program-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.program-card:hover .program-card-img img { transform: scale(1.04); }
.program-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.program-card-kicker { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--accent); text-transform: uppercase; }
.program-card h3 { font-size: 16px; color: var(--primary); }
.program-card p  { font-size: 14px; color: var(--text-md); line-height: 1.65; flex: 1; }
.program-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: var(--primary);
  margin-top: 4px;
}

/* ── 신뢰 섹션 (Trust) ── */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.trust-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.trust-stat {
  background: var(--white); border-radius: var(--radius-md);
  padding: 20px; text-align: center;
  border: 1px solid var(--border);
}
.trust-stat .num { font-size: 28px; font-weight: 800; color: var(--primary); }
.trust-stat .lbl { font-size: 12px; color: var(--text-lt); margin-top: 2px; }

/* ── 후기 슬라이더 (서브 페이지용) ── */
.review-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-img { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 3/4; cursor: zoom-in; }
.review-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── 웨딩 스토리 카드 그리드 ── */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.story-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: border-color .18s, box-shadow .18s;
  min-width: 0;
}
.story-card:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(68,121,123,.12);
}
.story-card-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .04em;
}
.story-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story-card-excerpt {
  font-size: 12px;
  color: var(--text-lt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story-card-meta {
  font-size: 11px;
  color: var(--text-lt);
  white-space: nowrap;
}
.story-pager {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}
.story-pager-num {
  padding: 6px 12px;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
}
.story-pager-num.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
@media (max-width: 640px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-card { grid-template-columns: auto 1fr auto; }
  .story-card-excerpt { display: none; }
}

/* ── 후기 라이트박스 ── */
#review-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.85); align-items: center; justify-content: center;
}
#review-lightbox.is-open { display: flex; }
#review-lightbox img {
  max-width: 92vw; max-height: 92vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
#review-lightbox-close {
  position: fixed; top: 20px; right: 24px;
  font-size: 2rem; color: #fff; cursor: pointer;
  line-height: 1; background: none; border: none;
  opacity: .8;
}
#review-lightbox-close:hover { opacity: 1; }

/* ── 후기 텍스트 카드 ── */
.review-disclaimer {
  font-size: 12px; color: var(--text-lt);
  letter-spacing: .06em; margin-top: 4px;
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.review-stars {
  color: #E8B84B;
  font-size: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-md);
  flex: 1;
  word-break: keep-all;
}
.review-meta {
  font-size: 12px;
  color: var(--text-lt);
  letter-spacing: .06em;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .review-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .review-cards { grid-template-columns: 1fr; }
}

/* ── SNS 섹션 ── */
.sns-section { text-align: center; }
.sns-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.sns-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 100px; font-weight: 700; font-size: 14px;
  border: 2px solid var(--primary); color: var(--primary);
  transition: .2s;
}
.sns-btn:hover { background: var(--primary); color: var(--white); }
.sns-btn.insta { border-color: var(--accent); color: var(--accent); }
.sns-btn.insta:hover { background: var(--accent); color: var(--white); }

/* ── 예약·오시는 길 카드 ── */
.visit-section { background: var(--cream); }

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.visit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow .2s, transform .2s;
}
.visit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.visit-icon { font-size: 28px; line-height: 1; }

.visit-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; color: var(--primary);
  text-transform: uppercase;
}
.visit-val {
  font-size: 15px; font-weight: 500;
  color: var(--text); line-height: 1.7;
}
.visit-val--big {
  font-size: 22px; font-weight: 700;
  color: var(--primary); letter-spacing: .04em;
}
.visit-note {
  font-size: 12px; color: var(--text-lt); line-height: 1.7;
}
.visit-link {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 700;
  color: var(--primary); margin-top: 4px;
  text-decoration: none; border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.visit-hours { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.vh-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  background: var(--cream); border-radius: var(--radius-sm);
}
.vh-day  { font-size: 13px; font-weight: 600; color: var(--text-md); }
.vh-time { font-size: 13px; font-weight: 700; color: var(--primary); }

.visit-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--white);
  padding: 16px 40px; border-radius: 100px;
  font-weight: 700; font-size: 15px; letter-spacing: .04em;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.visit-cta:hover {
  background: var(--primary-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .visit-grid { grid-template-columns: 1fr; }
}

/* ── CTA 배너 ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  color: var(--white); text-align: center;
  padding: clamp(48px, 7vw, 80px) var(--pad-x);
}
.cta-banner h2 { font-size: clamp(22px, 3.5vw, 36px); margin-bottom: 12px; }
.cta-banner p  { opacity: .85; margin-bottom: 32px; }
.cta-btn-grp { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 100px;
  font-weight: 700; font-size: 15px;
  transition: transform .2s, box-shadow .2s;
}
.cta-btn--white { background: var(--white); color: var(--primary); }
.cta-btn--outline { background: transparent; border: 2px solid rgba(255,255,255,.6); color: var(--white); }
.cta-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ── Copy 컨텐츠 스타일 ── */
.copy-body { max-width: 720px; margin: 0 auto; }
.copy-body p { margin-bottom: 1.2em; color: var(--text); }
.copy-body strong { font-weight: 700; color: var(--primary); }
.copy-link {
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 700; color: var(--primary);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px; margin-top: .5em;
  transition: color .2s;
}
.copy-link:hover { color: var(--primary-dk); }
.copy-list { padding-left: 1.2em; margin-bottom: 1.2em; }
.copy-list li { margin-bottom: .4em; }
.copy-table { width: 100%; border-collapse: collapse; margin: 1.2em 0; font-size: 14px; }
.copy-table th { background: var(--primary); color: var(--white); padding: 10px 14px; text-align: left; }
.copy-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.copy-table tr:nth-child(even) td { background: var(--cream); }

/* ── 섹션 내 copy + 이미지 레이아웃 ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ── FAQ ── */
.faq-section { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; font-size: 15px; font-weight: 700; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: color .2s;
}
.faq-q:hover { color: var(--primary); }
.faq-q::after { content: '+'; font-size: 20px; color: var(--primary); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; color: var(--text-md); font-size: 14px; line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ── 연락처/지도 ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-item { display: flex; gap: 12px; }
.info-icon { width: 40px; height: 40px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); font-size: 16px; }
.info-label { font-size: 12px; color: var(--text-lt); font-weight: 700; letter-spacing: .06em; }
.info-val { font-size: 15px; font-weight: 600; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; height: 320px; background: var(--border); display: flex; align-items: center; justify-content: center; }
.map-placeholder { text-align: center; color: var(--text-lt); }
.map-cta { display: inline-block; margin-top: 12px; padding: 10px 24px; background: var(--primary); color: var(--white); border-radius: 100px; font-size: 14px; font-weight: 700; }

/* ── 운영시간 표 ── */
.hours-table { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 700; font-size: 14px; }
.hours-time { color: var(--primary); font-weight: 600; }

/* ── Microdata 블록 ── */
.microdata-block { padding: 40px var(--pad-x); }
.microdata-inner { max-width: var(--max-w); margin: 0 auto; }
.microdata-title { color: var(--mc-title, var(--primary)); font-size: 20px; margin-bottom: 20px; }
.microdata-grid { display: grid; gap: 16px; }
.microdata-item { background: var(--white); padding: 16px; border-radius: var(--radius-md); border: 1px solid var(--border); transition: border-color .2s; }
.microdata-item:hover { border-color: var(--mc-border, var(--accent)); }
.mi-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--text-lt); margin-bottom: 4px; }

/* ── 사이트맵 페이지 ── */
.sitemap-page { padding: 56px var(--pad-x); max-width: 800px; margin: 0 auto; }
.sitemap-page h1 { margin-bottom: 32px; }
.sitemap-section { margin-bottom: 28px; }
.sitemap-section h2 { font-size: 16px; color: var(--primary); margin-bottom: 12px; }
.sitemap-section ul { list-style: none; }
.sitemap-section li a { font-size: 15px; color: var(--text); padding: 6px 0; display: block; }
.sitemap-section li a:hover { color: var(--primary); }

/* ── 404 ── */
.page-404 { text-align: center; padding: 80px var(--pad-x); }
.page-404 h1 { font-size: 80px; color: var(--primary); opacity: .3; }
.page-404 h2 { margin: 16px 0 8px; }

/* ── 푸터 ── */
.site-footer { background: #1E2828; color: rgba(255,255,255,.75); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 48px var(--pad-x);
  display: grid; grid-template-columns: 1fr 1.6fr 1fr 1.2fr;
  gap: 32px;
}
.footer-logo { display: block; font-size: 18px; color: var(--white); letter-spacing: .06em; margin-bottom: 6px; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.5); }
.footer-info p { font-size: 13px; line-height: 1.9; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-legal { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-copy { margin-top: 8px; }

/* ═══════════════════════
   반응형 (모바일 최적화)
   ═══════════════════════ */

/* 태블릿 이하 */
@media (max-width: 900px) {
  .trust-grid, .split-section, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .split-section.reverse { direction: ltr; }
  .split-img img { aspect-ratio: 16/9; max-height: 340px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .review-row { grid-template-columns: repeat(2, 1fr); }
  .review-cards { grid-template-columns: repeat(2, 1fr); }
  .visit-grid  { grid-template-columns: 1fr; gap: 12px; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 모바일 헤더 */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-hamburger { display: flex; }
  .header-inner { height: 58px; }
  .logo-en { font-size: 18px; }
  .logo-ko { font-size: 10px; }

  /* 히어로 */
  .hero { min-height: 60svh; }
  .hero--video { min-height: 100svh; }
  .hero h1 { font-size: clamp(22px, 6vw, 36px); }
  .hero-desc { font-size: 14px; }
  .hero-cta { padding: 12px 24px; font-size: 14px; }

  /* 섹션 여백 줄이기 */
  .section { padding: clamp(36px, 6vw, 56px) var(--pad-x); }
  .section-header { margin-bottom: 24px; }

  /* BA 슬라이더 */
  .ba-single-item img { width: 220px; height: 220px; }
  .ba-scroll-header { margin-bottom: 20px; }

  /* 프로그램 카드 */
  .program-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .program-card-body { padding: 14px; gap: 6px; }
  .program-card h3 { font-size: 14px; }
  .program-card p  { font-size: 12px; }

  /* 고객 후기 카드 */
  .review-cards { grid-template-columns: 1fr; }
  .review-card { padding: 20px 18px; }

  /* 방문 정보 카드 */
  .visit-grid { grid-template-columns: 1fr; }
  .visit-card { padding: 20px; }

  /* 푸터 */
  .footer-inner { grid-template-columns: 1fr; gap: 16px; padding: 32px var(--pad-x); }
  .footer-brand { display: block; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 10px; }

  /* CTA 배너 */
  .cta-btn-grp { flex-direction: column; align-items: center; gap: 10px; }
  .cta-btn { width: 100%; max-width: 280px; justify-content: center; }
  .visit-cta { width: 100%; max-width: 300px; justify-content: center; }
}

/* 데스크톱 — 모바일 메뉴 숨김 */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-overlay { display: none !important; }
  .nav-hamburger { display: none !important; }
}

/* 소형 모바일 */
@media (max-width: 480px) {
  .program-grid { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .ba-slide-item { width: 130px; }
  .ba-slide-item img { height: 180px; }
  .hero h1 { font-size: clamp(20px, 7vw, 28px); }
  .section { padding: 28px 16px; }
  .review-row { grid-template-columns: 1fr; }
  .footer-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .microdata-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
