/* ============================================================
   PRIVÉ ROOM — Main Stylesheet
   Theme: Dark · Cyan Neon · Gold accent (레퍼런스 매칭)
   ============================================================ */

:root {
  /* 레퍼런스 색상: 청록/시안 네온 메인 */
  --cyan:       #00e5ff;
  --cyan-dim:   #00b8d4;
  --cyan-glow:  rgba(0,229,255,0.35);
  --cyan-faint: rgba(0,229,255,0.12);

  /* 골드 포인트 */
  --gold:       #f0c040;
  --gold-light: #ffe080;

  /* 다크 팔레트 */
  --white:      #ffffff;
  --off-white:  #e8e8e8;
  --dark:       #080808;
  --dark-2:     #0f0f0f;
  --dark-3:     #181818;
  --dark-4:     #222222;
  --gray:       #555555;
  --gray-light: #888888;

  /* 폰트 */
  --font-kr:      'Noto Sans KR', sans-serif;
  --font-en:      'Montserrat', sans-serif;
  --font-display: 'Bebas Neue', sans-serif;

  /* 반경 */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-kr);
  background: var(--dark);
  color: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { display: block; max-width: 100%; }

/* ============================================================
   MENU OVERLAY
   ============================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  background: var(--dark-3);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.menu-close:hover { background: var(--cyan); color: var(--dark); transform: rotate(90deg); }

.overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.overlay-link {
  font-family: var(--font-en);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--gray-light);
  letter-spacing: 0.05em;
  padding: 0.25rem 1rem;
  position: relative;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.overlay-link::before {
  content: attr(data-num);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--cyan);
  letter-spacing: 0.1em;
}
.overlay-link:hover { color: var(--white); text-shadow: 0 0 20px var(--cyan); }

.overlay-contact { margin-top: 3rem; }
.overlay-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-en);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.05em;
  transition: opacity var(--transition);
}
.overlay-phone:hover { opacity: 0.7; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  transition: background var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(0,0,0,0.90);
  backdrop-filter: blur(12px);
  padding: 0.875rem 1.5rem;
  border-bottom: 1px solid rgba(0,229,255,0.08);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan-dim), var(--cyan));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  box-shadow: 0 0 14px var(--cyan-glow);
}
.logo-text-sm {
  font-family: var(--font-en);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: var(--radius-sm);
  padding: 0.625rem 1.125rem;
  color: var(--white);
  font-family: var(--font-kr);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition);
}
.menu-btn:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--dark);
  box-shadow: 0 0 20px var(--cyan-glow);
}
.menu-btn-text { letter-spacing: 0.05em; }

/* ============================================================
   HERO — 영상 배경 + 레퍼런스 UI
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

/* ── 영상 배경 래퍼 ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 1;              /* 처음부터 바로 표시 */
  transition: opacity 1s ease;
}

/* 영상: 전체 화면 꽉 채우기 */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* 프라이빗룸 분위기: 살짝 어둡게 + 색감 풍부하게 */
  filter: brightness(0.85) saturate(1.3) contrast(1.08);
}

/* ── 이미지 Fallback 컨테이너 ── */
.hero-fallback {
  display: none !important;  /* 이미지 슬라이드 완전 비활성화 */
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ── 글리터 캔버스 (프라이빗룸 시퀸 반짝임) ── */
.glitter-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.60;
  mix-blend-mode: screen;
}

/* ── 오버레이: 프라이빗룸 다크골드 분위기 ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    /* 상단: 헤더 가독성 */
    linear-gradient(to bottom,
      rgba(0,0,0,0.70) 0%,
      rgba(0,0,0,0.15) 20%,
      rgba(0,0,0,0.00) 45%,
      rgba(0,0,0,0.30) 70%,
      rgba(0,0,0,0.85) 100%
    ),
    /* 하단: 골드 그라데이션 (럭셔리 느낌) */
    linear-gradient(to top,
      rgba(30,15,0,0.60) 0%,
      transparent 35%
    ),
    /* 좌우: 중앙 인물 강조 */
    linear-gradient(to right,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.05) 28%,
      rgba(0,0,0,0.05) 72%,
      rgba(0,0,0,0.55) 100%
    );
}

/* ── 비네팅: 영화적 주변부 어둡게 ── */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(
    ellipse 75% 75% at 50% 38%,
    transparent 30%,
    rgba(0,0,0,0.28) 65%,
    rgba(0,0,0,0.62) 100%
  );
}

/* ── 컬러 그레이딩: 프라이빗룸 다크골드 노선 ── */
.hero-color-grade {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 35% at 50% 5%,   rgba(255,200,80,0.09)  0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 15% 25%,  rgba(255,140,40,0.07)  0%, transparent 60%),
    radial-gradient(ellipse 40% 45% at 85% 25%,  rgba(255,200,100,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(60,0,20,0.35)     0%, transparent 60%);
  mix-blend-mode: screen;
  animation: goldGradeShift 9s ease-in-out infinite;
}
@keyframes goldGradeShift {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 1.0; }
}

/* ── 스캔라인: 고해상도 디스플레이 느낌 ── */
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent    0px,
    transparent    2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 3px
  );
  opacity: 0.5;
}

/* ── 보케: 프라이빗룸 황금빛 파티클 ── */
.bokeh {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  overflow: hidden;
}
.bokeh span {
  position: absolute;
  border-radius: 50%;
  animation: bokehFloat ease-in-out infinite;
  opacity: 0;
  filter: blur(0.5px);
}
.bokeh span:nth-child(1)  { width:65px;  height:65px;  background:rgba(255,210,80,0.20);  left:7%;   animation-duration:9s;    animation-delay:0s;   bottom:-90px;  }
.bokeh span:nth-child(2)  { width:38px;  height:38px;  background:rgba(255,255,200,0.18); left:20%;  animation-duration:11s;   animation-delay:1.5s; bottom:-60px;  }
.bokeh span:nth-child(3)  { width:85px;  height:85px;  background:rgba(255,180,60,0.12);  left:36%;  animation-duration:13s;   animation-delay:3s;   bottom:-110px; }
.bokeh span:nth-child(4)  { width:50px;  height:50px;  background:rgba(255,220,100,0.15); left:55%;  animation-duration:10s;   animation-delay:0.8s; bottom:-80px;  }
.bokeh span:nth-child(5)  { width:30px;  height:30px;  background:rgba(255,255,255,0.20); left:70%;  animation-duration:12s;   animation-delay:2.2s; bottom:-50px;  }
.bokeh span:nth-child(6)  { width:60px;  height:60px;  background:rgba(255,200,80,0.10);  left:82%;  animation-duration:14s;   animation-delay:4s;   bottom:-95px;  }
.bokeh span:nth-child(7)  { width:25px;  height:25px;  background:rgba(255,240,180,0.22); left:3%;   animation-duration:8s;    animation-delay:1s;   bottom:-45px;  }
.bokeh span:nth-child(8)  { width:75px;  height:75px;  background:rgba(255,160,40,0.08);  left:46%;  animation-duration:15s;   animation-delay:5s;   bottom:-100px; }
.bokeh span:nth-child(9)  { width:42px;  height:42px;  background:rgba(255,230,120,0.16); left:28%;  animation-duration:10.5s; animation-delay:2.5s; bottom:-70px;  }
.bokeh span:nth-child(10) { width:55px;  height:55px;  background:rgba(255,210,90,0.12);  left:63%;  animation-duration:12.5s; animation-delay:6s;   bottom:-88px;  }

@keyframes bokehFloat {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-110vh) scale(1.4); opacity: 0; }
}

/* ── 히어로 콘텐츠 ── */
.hero-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  max-width: 560px;
  width: 100%;
}

/* 브랜드 (레퍼런스: 상단 큰 제목) */
.hero-brand { margin-bottom: 0.5rem; }

.brand-en {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 5.5rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--cyan);
  text-shadow:
    0 0 20px var(--cyan-glow),
    0 0 50px rgba(0,229,255,0.2),
    0 2px 0 rgba(0,0,0,0.5);
  animation: neonFlicker 6s ease-in-out infinite;
}
.brand-en em {
  font-style: normal;
  color: var(--white);
  text-shadow: 0 0 15px rgba(255,255,255,0.4);
}

@keyframes neonFlicker {
  0%, 95%, 100% { opacity: 1; }
  96%            { opacity: 0.88; }
  97%            { opacity: 1; }
  98%            { opacity: 0.92; }
}

.brand-sub {
  font-family: var(--font-en);
  font-size: clamp(0.7rem, 2.5vw, 0.875rem);
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  font-weight: 400;
}

/* 서브타이틀 구분선 */
.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.subtitle-bar {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
  max-width: 60px;
  opacity: 0.6;
}
.subtitle-text {
  font-family: var(--font-kr);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.25em;
  white-space: nowrap;
}

/* ── 가격 카드 (레퍼런스 스타일: 반투명 다크 패널) ── */
.pricing-card {
  width: 100%;
  background: rgba(8, 20, 30, 0.82);
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: var(--radius-xl);
  padding: 1.375rem 1.5rem;
  margin-bottom: 1.375rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 1px rgba(0,229,255,0.06) inset,
    0 8px 40px rgba(0,0,0,0.6),
    0 0 30px rgba(0,229,255,0.08);
}

.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.875rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,229,255,0.12);
}
.pricing-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  font-weight: 300;
}
.pricing-badge {
  font-family: var(--font-en);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--dark);
  background: linear-gradient(90deg, var(--cyan-dim), var(--cyan));
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.1em;
  box-shadow: 0 0 10px var(--cyan-glow);
}

.pricing-list { display: flex; flex-direction: column; }

.pricing-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item:hover {
  background: rgba(0,229,255,0.04);
  border-radius: var(--radius-sm);
  padding-left: 0.5rem;
}

/* 레퍼런스: 왕관 아이콘 */
.pricing-crown {
  color: var(--gold);
  font-size: 0.8125rem;
  width: 18px;
  text-align: center;
  text-shadow: 0 0 8px rgba(240,192,64,0.5);
  flex-shrink: 0;
}
.pricing-person {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  letter-spacing: 0.02em;
}
.pricing-price {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-shadow: 0 0 10px rgba(240,192,64,0.4);
}
.pricing-price.inquiry {
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan-glow);
}

.pricing-note {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.875rem;
  text-align: left;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 0.625rem;
}

/* ── CTA 버튼 (레퍼런스: 청록 글로우 캡슐) ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: linear-gradient(90deg, var(--cyan-dim), var(--cyan));
  color: var(--dark);
  font-family: var(--font-kr);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  box-shadow:
    0 0 20px var(--cyan-glow),
    0 0 50px rgba(0,229,255,0.15),
    0 4px 16px rgba(0,0,0,0.4);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.cta-btn:hover::before { left: 160%; }
.cta-btn:hover {
  box-shadow:
    0 0 35px rgba(0,229,255,0.55),
    0 0 70px rgba(0,229,255,0.25),
    0 6px 24px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}
.cta-btn-lg {
  font-size: 1.0625rem;
  padding: 1.125rem 2.5rem;
}
.cta-btn-outline {
  background: transparent;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-faint);
}
.cta-btn-outline:hover {
  background: var(--cyan-faint);
  box-shadow: 0 0 24px var(--cyan-glow);
}
.cta-btn-kakao {
  background: linear-gradient(90deg, #f7e600, #fae300);
  color: #3c1e1e;
  box-shadow: 0 4px 16px rgba(247,230,0,0.3);
}
.cta-btn-kakao:hover {
  box-shadow: 0 0 28px rgba(247,230,0,0.5);
}

/* 스크롤 힌트 */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  opacity: 0.4;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-hint span {
  font-family: var(--font-en);
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  color: var(--cyan);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-label-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.section-label-line::before,
.section-label-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,229,255,0.2), transparent);
}
.section-label-text {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  color: var(--cyan);
  white-space: nowrap;
  font-weight: 600;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 6rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.about-title {
  font-family: var(--font-kr);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.about-title em {
  font-style: normal;
  color: var(--cyan);
  text-shadow: 0 0 14px var(--cyan-glow);
}
.about-desc {
  font-size: 0.9375rem;
  color: var(--gray-light);
  line-height: 2;
  margin-bottom: 2rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}
.tag {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: rgba(0,229,255,0.75);
  background: rgba(0,229,255,0.05);
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}
.tag:hover {
  background: rgba(0,229,255,0.12);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 4rem 1rem 6rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 2rem;
}

.gallery-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* ── 하단 무한 마퀴 슬라이드 ── */
.gallery-marquee-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* 양쪽 페이드 마스크 */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.gallery-marquee-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.gallery-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.gallery-marquee-track .gallery-item.gi-interior {
  flex: 0 0 220px;
  width: 220px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(255,255,255,0.04);
}
.gi-mood  { aspect-ratio: 3/4; }
.gi-interior { aspect-ratio: 1/1; }

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0,229,255,0.15);
  border-color: rgba(0,229,255,0.2);
}

.gallery-item-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item-inner {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
}

.gi-icon   { font-size: 1.75rem; color: var(--cyan); margin-bottom: 0.5rem; text-shadow: 0 0 12px var(--cyan-glow); }
.gi-label  {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.35);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.gi-icon-sm{ font-size: 1.125rem; color: var(--cyan); margin-bottom: 0.25rem; text-shadow: 0 0 8px var(--cyan-glow); }
.gi-label-sm {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
  background: rgba(0,0,0,0.38);
  padding: 0.2rem 0.65rem;
  border-radius: 14px;
  backdrop-filter: blur(4px);
}

/* ── 상단 갤러리 반짝반짝 shimmer 레이어 ── */
.gi-sparkle-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  overflow: hidden;
}
/* 흐르는 빛 줄기 */
.gi-sparkle-layer::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 60%;
  height: 220%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,220,100,0.35) 55%,
    transparent 70%
  );
  transform: skewX(-15deg);
  animation: giShimmer 3.5s ease-in-out infinite;
}
/* 반짝이는 별 파티클 */
.gi-sparkle-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.95) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,220,80,0.9)   1px, transparent 1px),
    radial-gradient(circle, rgba(255,180,255,0.85) 1px, transparent 1px),
    radial-gradient(circle, rgba(150,220,255,0.9)  1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 70px 70px, 90px 90px;
  background-position: 10px 15px, 35px 45px, 55px 20px, 20px 60px;
  animation: giSparkle 2s ease-in-out infinite alternate;
}
@keyframes giShimmer {
  0%   { left: -80%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 140%; opacity: 0; }
}
@keyframes giSparkle {
  0%   { opacity: 0.15; transform: scale(1); }
  50%  { opacity: 0.7;  transform: scale(1.05); }
  100% { opacity: 0.2;  transform: scale(0.98); }
}
/* 각 카드마다 딜레이 다르게 */
.gallery-grid-top .gallery-item:nth-child(1) .gi-sparkle-layer::before { animation-delay: 0s; }
.gallery-grid-top .gallery-item:nth-child(2) .gi-sparkle-layer::before { animation-delay: 0.6s; }
.gallery-grid-top .gallery-item:nth-child(3) .gi-sparkle-layer::before { animation-delay: 1.2s; }
.gallery-grid-top .gallery-item:nth-child(4) .gi-sparkle-layer::before { animation-delay: 1.8s; }
.gallery-grid-top .gallery-item:nth-child(5) .gi-sparkle-layer::before { animation-delay: 2.4s; }
.gallery-grid-top .gallery-item:nth-child(6) .gi-sparkle-layer::before { animation-delay: 3.0s; }
.gallery-grid-top .gallery-item:nth-child(1) .gi-sparkle-layer::after { animation-delay: 0s; }
.gallery-grid-top .gallery-item:nth-child(2) .gi-sparkle-layer::after { animation-delay: 0.4s; }
.gallery-grid-top .gallery-item:nth-child(3) .gi-sparkle-layer::after { animation-delay: 0.8s; }
.gallery-grid-top .gallery-item:nth-child(4) .gi-sparkle-layer::after { animation-delay: 1.2s; }
.gallery-grid-top .gallery-item:nth-child(5) .gi-sparkle-layer::after { animation-delay: 1.6s; }
.gallery-grid-top .gallery-item:nth-child(6) .gi-sparkle-layer::after { animation-delay: 2.0s; }
/* 호버 시 반짝임 강화 */
.gallery-grid-top .gallery-item:hover .gi-sparkle-layer::before {
  animation-duration: 1.2s;
}
.gallery-grid-top .gallery-item:hover .gi-sparkle-layer::after {
  opacity: 0.9 !important;
  animation-duration: 0.6s;
}

/* 갤러리 이미지 배경 아이템 오버레이 */
.gi-overlay {
  background: linear-gradient(to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.2) 50%,
    transparent 100%) !important;
}
.gallery-item:hover .gi-overlay {
  background: linear-gradient(to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.35) 55%,
    transparent 100%) !important;
}
/* 호버 시 이미지 줌 효과 */
.gallery-item[style*="background-image"] {
  background-size: cover !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background-size 0.4s ease;
}
.gallery-item[style*="background-image"]:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 25px rgba(255,100,200,0.2);
}

/* ============================================================
   INFO
   ============================================================ */
.info-section {
  padding: 5rem 1.5rem 6rem;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.info-main-title {
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.info-sub {
  font-size: 0.9375rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.info-sub em { font-style: normal; color: var(--cyan); }

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.info-card:hover { border-color: rgba(0,229,255,0.2); transform: translateY(-3px); }
.info-card:hover::before { opacity: 1; }
.info-card.open { border-color: var(--cyan); box-shadow: 0 0 20px rgba(0,229,255,0.12); }
.info-card.open::before { opacity: 1; }

.info-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.info-card-icon {
  width: 42px; height: 42px;
  background: rgba(0,229,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1rem;
}
.info-card-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  transition: color var(--transition), transform var(--transition);
}
.info-card:hover .info-card-arrow { color: var(--cyan); transform: translate(2px,-2px); }

.info-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.info-card-desc {
  font-size: 0.8125rem;
  color: var(--gray-light);
  line-height: 1.6;
}
.info-card-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.info-card.open .info-card-detail {
  max-height: 300px;
  margin-top: 1rem;
}
.info-card-detail ul { display: flex; flex-direction: column; gap: 0.5rem; }
.info-card-detail li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.info-card-detail li i { color: var(--cyan); font-size: 0.75rem; margin-top: 0.2rem; flex-shrink: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: 3rem 1.5rem 0;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;     /* 콘텐츠 최상단 정렬 */
  justify-content: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
}
/* 배경 영상 */
.contact-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;  /* 얼굴(상단) 기준으로 표시 */
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.contact-bg-video.ready {
  opacity: 1;
}
/* 영상 위 어두운 오버레이 */
.contact-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}
/* 콘텐츠는 영상 위에 */
.contact-section > .contact-inner,
.contact-section > .contact-visual {
  position: relative;
  z-index: 2;
}
/* contact-inner: 세로 중앙 정렬 */
.contact-inner {
  max-width: 700px;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  z-index: 2;
  padding-top: 1rem;           /* 섹션 상단 여백 최소화 */
}
.contact-text { width: 100%; }
.contact-label {
  font-family: var(--font-en);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: var(--cyan);
  display: block;
  margin-bottom: 1rem;
}
.contact-title {
  font-size: clamp(1rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 1rem;
  white-space: nowrap;          /* 한 줄 강제 */
  overflow: visible;
}
.contact-title em { font-style: normal; color: var(--cyan); }
.contact-desc { font-size: 0.9375rem; color: var(--gray-light); line-height: 1.8; margin-bottom: 2rem; }

/* 전화 버튼 + 번호·시간 묶음 */
.contact-phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
/* 두 버튼 한 줄 가로 배치 */
.contact-btn-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
}
.contact-phone-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.cpi-number {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.cpi-hours {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
/* 카카오톡 버튼 단독 */
.contact-section .cta-btn-kakao {
  margin-top: 0;
}
/* 기존 contact-buttons (하위호환) */
.contact-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.contact-info-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}
.ci-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.ci-item i { color: var(--cyan); font-size: 0.875rem; width: 16px; }

.contact-visual {
  flex-shrink: 0;
  width: 280px;
  height: 320px;
  position: relative;
}
.float-glass {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
  box-shadow: 0 0 40px rgba(0,229,255,0.15);
  animation: floatGlass 4s ease-in-out infinite;
}
@keyframes floatGlass {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%       { transform: translate(-50%, -50%) translateY(-12px); }
}
.float-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.15);
  animation: bubbleFloat ease-in-out infinite;
}
.b1 { width:80px; height:80px; top:5%;  left:5%;  animation-duration:5s;  animation-delay:0s; }
.b2 { width:50px; height:50px; top:10%; right:10%;animation-duration:7s;  animation-delay:1s; }
.b3 { width:30px; height:30px; bottom:15%; left:20%;animation-duration:4s; animation-delay:0.5s; }
.b4 { width:60px; height:60px; bottom:5%; right:5%;animation-duration:6s;  animation-delay:2s; }
.b5 { width:40px; height:40px; top:45%; left:2%;  animation-duration:8s;  animation-delay:3s; }
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50%       { transform: translateY(-18px) scale(1.05); opacity: 0.8; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.footer-logo i { color: var(--cyan); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
}
.footer-sns {
  display: flex;
  gap: 1rem;
}
.footer-sns a {
  font-size: 1.125rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-sns a:hover { color: var(--cyan); }

/* ============================================================
   FLOATING CALL BTN
   ============================================================ */
.float-call-btn {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--cyan-dim), var(--cyan));
  color: var(--dark);
  font-family: var(--font-kr);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.875rem 1.375rem;
  border-radius: 999px;
  box-shadow:
    0 4px 20px var(--cyan-glow),
    0 0 40px rgba(0,229,255,0.2);
  transition: all var(--transition);
  animation: callPulse 3s ease-in-out infinite;
}
.float-call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,229,255,0.55);
  animation: none;
}
@keyframes callPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--cyan-glow), 0 0 40px rgba(0,229,255,0.2); }
  50%       { box-shadow: 0 4px 30px rgba(0,229,255,0.6), 0 0 60px rgba(0,229,255,0.3); }
}

/* ============================================================
   KAKAO MODAL
   ============================================================ */
.kakao-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}
.kakao-modal-backdrop.active {
  display: flex;
}
.kakao-modal-box {
  position: relative;
  background: linear-gradient(160deg, #1a1208, #1e1400 60%, #0a0a0a);
  border: 1px solid rgba(255,204,0,0.25);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  width: 90%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px rgba(255,204,0,0.1);
  animation: modalPop 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalPop {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.kakao-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #aaa;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.kakao-modal-close:hover { background: rgba(255,255,255,0.18); color: #fff; }
.kakao-modal-icon {
  width: 60px;
  height: 60px;
  background: #FEE500;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: #3C1E1E;
  box-shadow: 0 0 20px rgba(254,229,0,0.4);
}
.kakao-modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.kakao-modal-desc {
  font-size: 0.875rem;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.kakao-modal-id {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(254,229,0,0.08);
  border: 1px solid rgba(254,229,0,0.3);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.kakao-id-label {
  font-size: 0.72rem;
  color: #FEE500;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.kakao-id-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
}
.kakao-copy-btn {
  background: rgba(254,229,0,0.15);
  border: 1px solid rgba(254,229,0,0.4);
  color: #FEE500;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.kakao-copy-btn:hover { background: rgba(254,229,0,0.3); }
.kakao-copy-btn.copied { background: rgba(0,200,100,0.2); border-color: #00c864; color: #00c864; }
.kakao-modal-guide {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
}
.kakao-modal-guide i { color: #FEE500; margin-right: 0.3rem; }
.kakao-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FEE500;
  color: #3C1E1E;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(254,229,0,0.35);
}
.kakao-modal-btn:hover {
  background: #ffe833;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(254,229,0,0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .info-cards { grid-template-columns: 1fr; }
  .gallery-grid-top { grid-template-columns: repeat(2, 1fr); }
  .contact-section { flex-direction: column; gap: 2rem; }
  .contact-inner { flex-direction: column; gap: 0; }
  .contact-title { white-space: normal; font-size: clamp(1.2rem, 5vw, 1.8rem); }
  .contact-buttons { flex-direction: column; align-items: center; }
  .contact-visual { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .gallery-marquee-track .gallery-item.gi-interior {
    flex: 0 0 160px;
    width: 160px;
  }
}
@media (max-width: 480px) {
  .gallery-grid-top { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 1.125rem 1.125rem; }
  .hero-content { padding: 6rem 1rem 3rem; }
  .gallery-marquee-track .gallery-item.gi-interior {
    flex: 0 0 130px;
    width: 130px;
  }
}
