/* ═══════════════════════════════════════════════════════════
   바이탈바이브 SG — 세곡동 이벤트 대관
   디자인 무드: 로컬·내추럴 / 컬러: 더스티 틸 + 클레이 (쿨 배경)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,600;1,400;1,600&family=Noto+Sans+KR:wght@300;400;500;700&family=Noto+Serif+KR:wght@400;600&display=swap');

/* ─── CSS 변수 ──────────────────────────────────────────── */
:root {
  /* 더스티 틸 + 클레이 팔레트 */
  --primary:       #8FA09C;   /* 더스티 틸-세이지 */
  --primary-dark:  #5E7874;   /* 딥 틸 */
  --primary-mid:   #708A87;   /* 미드 틸 */
  --primary-light: #B8CCCA;   /* 라이트 틸 */
  --primary-pale:  #E2EDEB;   /* 페일 틸 (배경 틴트) */
  --accent:        #B8876E;   /* 웜 클레이 */
  --accent-light:  #D4AA96;   /* 라이트 클레이 */
  --accent-pale:   #EDE0D8;   /* 페일 클레이 */

  /* 배경 & 서피스 — 쿨 틸 틴트 (베이지 완전 제거) */
  --bg:            #F0F4F3;   /* 쿨 민트-화이트 */
  --surface:       #E2EDEB;   /* 라이트 틸 서피스 */
  --surface-alt:   #D4E5E2;   /* 미드 틸 서피스 */

  /* 텍스트 */
  --dark:          #2A2E2E;
  --body:          #363C3C;   /* 쿨 다크 */
  --muted:         #768080;   /* 쿨 뮤트 */
  --white:         #FFFFFF;

  /* 테두리 */
  --border:        #C2D2D0;   /* 틸 틴트 테두리 */
  --border-sage:   #A4BEBB;   /* 틸 포인트 테두리 */

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

  /* 이징 */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.77, 0, 0.175, 1);

  /* 레이아웃 */
  --container:     1440px;
  --px:            1.5rem;
  --section-py:    5rem;
  --radius:        12px;
  --radius-sm:     8px;
}

@media (min-width: 768px) {
  :root {
    --px:         4rem;
    --section-py: 8rem;
  }
}

/* ─── 리셋 ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  line-height: 1.7;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── 스킵 링크 ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: .5rem 1rem;
  background: var(--primary-dark);
  color: var(--white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: .875rem;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ─── 스크롤 진행 바 ─────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999;
  transition: width .1s linear;
}

/* ─── 커스텀 커서 ───────────────────────────────────────── */
/* 커서: 기본 숨김 — 마우스 환경에서만 표시 */
.cursor-dot,
.cursor-ring {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    display: block;
    pointer-events: none;
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: opacity .3s;
  }
  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--primary-dark);
    border-radius: 50%;
  }
  .cursor-ring {
    width: 40px; height: 40px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    transition: width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s;
  }
  .cursor-ring.hover {
    width: 64px; height: 64px;
    border-color: var(--accent);
  }
}

/* ─── 타이포그래피 유틸리티 ─────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 6.5rem);
  font-style: italic;
  line-height: 1.1;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-style: italic;
  line-height: 1.15;
}
.headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
  word-break: keep-all;
}
.subhead {
  font-family: var(--font-serif);
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  font-weight: 400;
}
.label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-dark);
}
.body-lg { font-size: 1.0625rem; line-height: 1.8; }

/* ─── 레이아웃 ──────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
}
.section { padding: var(--section-py) var(--px); }
.section--alt { background: var(--surface); }
.section--sage { background: var(--primary-pale); }

/* ─── 네비게이션 ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(240, 244, 243, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: padding .3s, border-color .3s, background .3s;
}
.nav.scrolled {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom-color: var(--border);
  background: rgba(240, 244, 243, 0.96);
}
.nav__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--primary-dark);
  letter-spacing: .02em;
}
.nav__links {
  display: none;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .nav__links { display: flex; } }
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--body);
  letter-spacing: .02em;
  transition: color .2s;
}
.nav__links a:hover { color: var(--primary-dark); }
.nav__cta {
  display: none;
  gap: .75rem;
  align-items: center;
}
@media (min-width: 768px) { .nav__cta { display: flex; } }
.nav__btn {
  padding: .55rem 1.25rem;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 500;
  transition: background .2s, color .2s, border-color .2s;
}
.nav__btn--outline {
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
}
.nav__btn--outline:hover {
  background: var(--primary-pale);
}
.nav__btn--fill {
  background: var(--primary-dark);
  color: var(--white);
}
.nav__btn--fill:hover { background: var(--primary); }
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
@media (min-width: 768px) { .nav__hamburger { display: none; } }
.nav__hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--body);
  transition: transform .3s, opacity .3s;
}

/* 모바일 메뉴 */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 6rem var(--px) 3rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.nav__mobile-links a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--body);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}
.nav__mobile-cta {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.nav__mobile-cta a {
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 500;
}
.nav__mobile-cta a:first-child {
  background: var(--primary-dark);
  color: var(--white);
}
.nav__mobile-cta a:last-child {
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
}

/* ─── 히어로 ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  transform-origin: center;
  transition: transform 8s ease;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(94, 120, 116, 0.45) 0%,
    rgba(42, 46, 46, 0.55) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--px);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-top: 6rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  word-break: keep-all;
}
.hero__sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.82);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  word-break: keep-all;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.5); opacity: .5; }
}

/* ─── 버튼 ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.btn:hover { }
.btn--primary {
  background: var(--white);
  color: var(--primary-dark);
}
.btn--primary:hover { background: var(--accent-pale); }
.btn--outline-white {
  border: 1.5px solid rgba(255,255,255,.6);
  color: var(--white);
}
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn--sage {
  background: var(--primary-dark);
  color: var(--white);
}
.btn--sage:hover { background: var(--primary-mid); box-shadow: 0 4px 20px rgba(78,114,84,.3); }
.btn--sage-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
}
.btn--sage-outline:hover { background: var(--primary-pale); }

/* 버튼 리플 */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: ripple .6s linear;
  pointer-events: none;
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ─── Trust Strip ───────────────────────────────────────── */
.trust-strip {
  background: var(--primary-dark);
  color: var(--white);
  padding: 2.5rem var(--px);
}
.trust-strip__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}
@media (min-width: 768px) {
  .trust-strip__grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,.15);
}
.trust-item:last-child { border-right: none; }
.trust-item__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-style: italic;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: .25rem;
}
.trust-item__label {
  font-size: .8rem;
  color: rgba(255,255,255,.72);
  letter-spacing: .04em;
  word-break: keep-all;
  text-align: center;
}

/* ─── 섹션 헤더 ─────────────────────────────────────────── */
.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.section-header--center {
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header .label { margin-bottom: .75rem; }
.section-header .headline { margin-bottom: 1rem; color: var(--dark); }
.section-header p { color: var(--muted); word-break: keep-all; }

/* ─── Brand Intro ───────────────────────────────────────── */
.brand-intro {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .brand-intro { grid-template-columns: 1fr 1fr; gap: 6rem; }
}
.brand-intro__text { }
.brand-intro__text .headline { margin-bottom: 1.5rem; }
.brand-intro__text p { color: var(--muted); margin-bottom: 1rem; word-break: keep-all; }
.brand-intro__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: .6rem 1.25rem;
  background: var(--accent-pale);
  border: 1px solid var(--accent-light);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--primary-dark);
  font-weight: 500;
}
.brand-intro__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}
.brand-intro__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.brand-intro__img-wrap:hover img { transform: scale(1.04); }

/* ─── 공간 카드 ─────────────────────────────────────────── */
.space-grid {
  display: grid;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .space-grid { grid-template-columns: repeat(3, 1fr); } }
.space-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.space-card:hover { }
.space-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--surface-alt);
}
.space-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.space-card:hover .space-card__img img { transform: scale(1.06); }
.space-card__body { padding: 1.5rem; }
.space-card__floor {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: .5rem;
}
.space-card__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
}
.space-card__desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
  word-break: keep-all;
}
.space-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.space-card__tag {
  font-size: .72rem;
  padding: .25rem .75rem;
  background: var(--primary-pale);
  color: var(--primary-dark);
  border-radius: 100px;
  border: 1px solid var(--border-sage);
}

/* ─── 이벤트 타입 ───────────────────────────────────────── */
.event-types-grid {
  display: grid;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .event-types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .event-types-grid { grid-template-columns: repeat(4, 1fr); } }
.event-type-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.event-type-card:hover {
  border-color: var(--primary);
}
.event-type-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.event-type-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .5rem;
}
.event-type-card__desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  word-break: keep-all;
}

/* ─── 대관 가이드 카드 ──────────────────────────────────── */
.guide-grid {
  display: grid;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .guide-grid { grid-template-columns: repeat(3, 1fr); } }
.guide-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.guide-card:hover { }
.guide-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--surface-alt);
}
.guide-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.guide-card:hover .guide-card__img img { transform: scale(1.06); }
.guide-card__body { padding: 1.5rem; }
.guide-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .875rem;
  color: var(--primary);
  margin-bottom: .5rem;
}
.guide-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
  word-break: keep-all;
}
.guide-card__short {
  font-size: .85rem;
  color: var(--muted);
  word-break: keep-all;
}
.guide-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--primary-dark);
  font-weight: 500;
  transition: gap .2s;
}
.guide-card:hover .guide-card__arrow { gap: .6rem; }

/* ─── 시설 그리드 ───────────────────────────────────────── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
}
.facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  transition: border-color .2s, color .2s;
}
.facility-item:hover {
  border-color: var(--primary-light);
  color: var(--primary-dark);
}
.facility-item__icon { font-size: 1.5rem; }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color .2s, background .2s;
}
.faq-item__q:hover { color: var(--primary-dark); }
.faq-item.is-open .faq-item__q { color: var(--primary-dark); background: var(--primary-pale); }
.faq-item__icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  transition: transform .3s, border-color .2s, background .2s;
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.faq-item__a {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.8;
  word-break: keep-all;
}
.faq-item.is-open .faq-item__a { display: block; }

/* ─── 리뷰 섹션 ─────────────────────────────────────────── */
.review-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.review-stat {
  text-align: center;
}
.review-stat__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: .25rem;
}
.review-stat__label {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .05em;
}

/* ─── CTA 섹션 ──────────────────────────────────────────── */
.cta-section {
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
  padding: var(--section-py) var(--px);
}
.cta-section .headline { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.72); margin-bottom: 2.5rem; word-break: keep-all; }
.cta-section__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── 지도 섹션 ─────────────────────────────────────────── */
.map-section {
  display: grid;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 1024px) { .map-section { grid-template-columns: 1fr 1fr; align-items: center; } }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-info { }
.map-info .label { margin-bottom: .75rem; }
.map-info .headline { margin-bottom: 1.5rem; }
.map-info__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.map-info__item {
  display: flex;
  gap: 1rem;
  font-size: .9rem;
}
.map-info__item-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.map-info__item-text strong { display: block; color: var(--dark); margin-bottom: .2rem; }
.map-info__item-text span { color: var(--muted); word-break: keep-all; }

/* ─── 플로팅 CTA ─────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  z-index: 200;
}
.float-cta__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  transition: transform .25s, box-shadow .25s;
}
.float-cta__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}
.float-cta__btn--call { background: var(--primary-dark); color: var(--white); }
.float-cta__btn--sms  { background: var(--accent);       color: var(--white); }
.float-cta__btn--top  { background: var(--white); color: var(--primary-dark); border: 1px solid var(--border); }
.float-cta__btn--top.is-hidden { opacity: 0; pointer-events: none; }

/* ─── 푸터 ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 4rem var(--px) 2rem;
}
.footer__grid {
  max-width: var(--container);
  margin: 0 auto 3rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(3, 1fr); } }
.footer__col-title {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}
.footer__info-row {
  display: flex;
  gap: .4rem;
  font-size: .8rem;
  margin-bottom: .5rem;
  word-break: keep-all;
}
.footer__info-row strong { color: rgba(255,255,255,.85); white-space: nowrap; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.75);
}
.footer__contact-item a { transition: color .2s; }
.footer__contact-item a:hover { color: var(--primary-light); }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer__links a:hover { color: var(--primary-light); }
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
}
.footer__policy-links {
  display: flex;
  gap: 1.5rem;
}
.footer__policy-links a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer__policy-links a:hover { color: rgba(255,255,255,.8); }

/* ─── 서브페이지 히어로 ─────────────────────────────────── */
.sub-hero {
  padding: 10rem var(--px) 5rem;
  background: var(--primary-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.sub-hero__bg {
  position: absolute;
  inset: 0;
}
.sub-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}
.sub-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.5rem;
}
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { opacity: .4; }
.sub-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
  word-break: keep-all;
}
.sub-hero__sub {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.78);
  max-width: 480px;
  word-break: keep-all;
  line-height: 1.8;
}

/* ─── 서브페이지 Intro ───────────────────────────────────── */
.page-intro {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 1024px) { .page-intro { grid-template-columns: 1fr 1fr; } }
.page-intro__text .headline { margin-bottom: 1.75rem; }
.page-intro__text p { color: var(--muted); margin-bottom: 1rem; word-break: keep-all; }
.page-intro__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}
.page-intro__img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Feature Cards ─────────────────────────────────────── */
.feature-grid {
  display: grid;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow .3s, transform .3s;
}
.feature-card:hover { }
.feature-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card__title {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .5rem;
}
.feature-card__desc { font-size: .85rem; color: var(--muted); line-height: 1.6; word-break: keep-all; }

/* ─── Venue Types Table ─────────────────────────────────── */
.venue-table {
  max-width: var(--container);
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.venue-table table { width: 100%; border-collapse: collapse; background: var(--white); }
.venue-table thead { background: var(--primary-dark); color: var(--white); }
.venue-table th {
  padding: 1rem 1.25rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-align: left;
}
.venue-table td {
  padding: 1rem 1.25rem;
  font-size: .875rem;
  color: var(--body);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  word-break: keep-all;
}
.venue-table tr:last-child td { border-bottom: none; }
.venue-table tr:nth-child(even) td { background: var(--surface); }
.venue-table td strong { color: var(--dark); font-weight: 600; }

/* ─── Related Pages ─────────────────────────────────────── */
.related-pages {
  display: grid;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .related-pages { grid-template-columns: repeat(3, 1fr); } }
.related-page-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--body);
  transition: border-color .2s, color .2s, transform .2s;
}
.related-page-link:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* ─── 상담 페이지 ───────────────────────────────────────── */
.consult-grid {
  display: grid;
  gap: 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .consult-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .consult-grid { grid-template-columns: repeat(3, 1fr); } }
.consult-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 2rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.consult-card:hover {
  border-color: var(--primary);
}
.consult-card__icon { font-size: 2rem; }
.consult-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}
.consult-card__desc { font-size: .85rem; color: var(--muted); word-break: keep-all; }
.consult-card__action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--primary-dark);
  transition: gap .2s;
}
.consult-card:hover .consult-card__action { gap: .6rem; }

/* ─── 사이트맵 페이지 ───────────────────────────────────── */
.sitemap-grid {
  display: grid;
  gap: 3rem;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .sitemap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sitemap-grid { grid-template-columns: repeat(3, 1fr); } }
.sitemap-group__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--primary-light);
  margin-bottom: 1rem;
}
.sitemap-group__list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.sitemap-group__list a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--muted);
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}
.sitemap-group__list a:hover {
  color: var(--primary-dark);
  padding-left: .4rem;
}
.sitemap-group__list a.is-external::after { content: ' ↗'; font-size: .75rem; opacity: .6; }

/* ─── 소개 페이지 ───────────────────────────────────────── */
.about-content {
  max-width: 760px;
  margin: 0 auto;
}
.about-content h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin: 2rem 0 .75rem;
}
.about-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  word-break: keep-all;
  line-height: 1.85;
}
.about-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ─── 정책 페이지 ───────────────────────────────────────── */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.9;
}
.policy-content h2 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 2rem 0 .6rem;
}
.policy-content p, .policy-content li { margin-bottom: .75rem; word-break: keep-all; }
.policy-content ul { list-style: disc; padding-left: 1.5rem; }

/* ─── 애니메이션 기본 ───────────────────────────────────── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.anim-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-fade-up[data-delay="1"] { transition-delay: .1s; }
.anim-fade-up[data-delay="2"] { transition-delay: .2s; }
.anim-fade-up[data-delay="3"] { transition-delay: .3s; }
.anim-fade-up[data-delay="4"] { transition-delay: .4s; }
.anim-fade-up[data-delay="5"] { transition-delay: .5s; }

.anim-scale-in {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.anim-scale-in.is-visible { opacity: 1; transform: scale(1); }

/* ─── 페이지 카드 (대관 목록) ───────────────────────────── */
.page-cards-grid {
  display: grid;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .page-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .page-cards-grid { grid-template-columns: repeat(3, 1fr); } }
.page-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.page-card:hover { }
.page-card__img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--surface-alt);
}
.page-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.page-card:hover .page-card__img-wrap img { transform: scale(1.06); }
.page-card__body { padding: 1.5rem; }
.page-card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .875rem;
  color: var(--primary);
  margin-bottom: .5rem;
}
.page-card__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
  word-break: keep-all;
}
.page-card__short { font-size: .85rem; color: var(--muted); word-break: keep-all; }
.page-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--primary-dark);
  font-weight: 500;
  transition: gap .2s;
}
.page-card:hover .page-card__arrow { gap: .6rem; }

/* ─── 반응형 유틸리티 ───────────────────────────────────── */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ─── 호버 이펙트: 마우스 환경에서만 적용 ───────────────── */
@media (hover: hover) and (pointer: fine) {

  /* 버튼 */
  .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.16);
  }

  /* 스페이스 카드 */
  .space-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(94,120,116,.28);
  }
  .space-card:hover .space-card__img img { transform: scale(1.09); }

  /* 이벤트 유형 카드 */
  .event-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(94,120,116,.24);
  }

  /* 대관 가이드 카드 */
  .guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 64px rgba(94,120,116,.26);
  }
  .guide-card:hover .guide-card__img img { transform: scale(1.09); }
  .guide-card:hover .guide-card__arrow   { gap: .75rem; }

  /* 피처 카드 */
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(94,120,116,.24);
    border-color: var(--primary-light);
  }
  .feature-card:hover .fc-num { opacity: .55; }

  /* 관련 페이지 링크 */
  .related-page-link:hover { transform: translateX(10px); }

  /* 상담 카드 */
  .consult-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(94,120,116,.24);
  }
  .consult-card:hover .consult-card__action { gap: .7rem; }

  /* 페이지 카드 */
  .page-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 72px rgba(94,120,116,.26);
  }
  .page-card:hover .page-card__img-wrap img { transform: scale(1.09); }
  .page-card:hover .page-card__arrow        { gap: .7rem; }

  /* 플로팅 CTA */
  .float-cta__btn:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
  }

  /* 브랜드 인트로 이미지 */
  .brand-intro__img-wrap:hover img { transform: scale(1.06); }
}
