/* ==========================================================================
   옛터 헤리티지 베뉴 — Premium Corporate Event Landing Page
   Dark Navy / Brown / Gold / Ivory / Wood Tone / Black
   ========================================================================== */

:root {
  --navy-900: #060b17;
  --navy-800: #0a1226;
  --navy-700: #101b33;
  --navy-600: #172440;
  --brown-700: #3b2a1e;
  --brown-500: #6b4a30;
  --gold-400: #e8c37a;
  --gold-500: #d4a24e;
  --gold-600: #b8863a;
  --ivory-100: #f7f2e7;
  --ivory-200: #ece2cd;
  --black-900: #020408;
  --text-light: #f2ede1;
  --text-muted: #b8b0a0;
  --font-serif: 'Noto Serif KR', serif;
  --font-sans: 'Noto Sans KR', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--navy-900);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.gold-text {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--gold-600); border-radius: 4px; }

/* ==================== LOADING SCREEN ==================== */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at 50% 40%, var(--navy-700) 0%, var(--navy-900) 70%, var(--black-900) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
}
#loading-screen.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.loading-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(212,162,78,0.03) 0px, rgba(212,162,78,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(-45deg, rgba(212,162,78,0.03) 0px, rgba(212,162,78,0.03) 1px, transparent 1px, transparent 40px);
  animation: patternMove 8s linear infinite;
}
@keyframes patternMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 200px 200px, -200px 200px; }
}

.loading-content { position: relative; text-align: center; }

.loading-emblem {
  width: 74px; height: 74px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-500);
  box-shadow: 0 0 30px rgba(212,162,78,0.4);
  background: #fff;
  animation: emblemPulse 2.4s ease-in-out infinite;
}
.loading-emblem img { width: 100%; height: 100%; object-fit: cover; }
@keyframes emblemPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(212,162,78,0.3); }
  50% { box-shadow: 0 0 40px rgba(212,162,78,0.6); }
}

.loading-title { display: flex; flex-direction: column; gap: 6px; }
.loading-title .kr {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ivory-100);
}
.loading-title .en {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: var(--gold-400);
  text-transform: uppercase;
}
.loading-line {
  width: 160px;
  height: 1px;
  background: rgba(212,162,78,0.2);
  margin: 26px auto 0;
  overflow: hidden;
  position: relative;
}
.loading-line span {
  position: absolute;
  left: -100%;
  top: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  animation: lineSlide 1.8s ease-in-out infinite;
}
@keyframes lineSlide { 0% { left: -100%; } 100% { left: 100%; } }

/* ==================== HEADER ==================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.5s var(--ease);
  background: transparent;
}
#site-header.scrolled {
  padding: 12px 0;
  background: rgba(6, 11, 23, 0.85);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(212,162,78,0.15);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212,162,78,0.5);
  box-shadow: 0 0 10px rgba(212,162,78,0.25);
  background: #fff;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ivory-100);
  letter-spacing: 0.02em;
}
.logo-text em {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gold-400);
  letter-spacing: 0.1em;
  margin-left: 6px;
  text-transform: uppercase;
  vertical-align: middle;
}

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.main-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-400);
  transition: width 0.35s var(--ease);
}
.main-nav a:hover { color: var(--gold-400); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 18px 48px; font-size: 1rem; }
.btn-gold {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-600));
  color: var(--black-900);
  box-shadow: 0 4px 20px rgba(212,162,78,0.25);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,162,78,0.45); }
.btn-outline {
  border: 1px solid rgba(212,162,78,0.4);
  color: var(--gold-400);
}
.btn-outline:hover { background: rgba(212,162,78,0.1); }
.btn-line {
  border: 1px solid rgba(247,242,231,0.35);
  color: var(--ivory-100);
}
.btn-line:hover { border-color: var(--gold-400); color: var(--gold-400); }
.admin-link {
  position: relative;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}
.admin-link i { font-size: 0.92rem; }
.admin-status-dot {
  position: absolute;
  top: -2px; right: -2px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid var(--navy-900);
  box-shadow: 0 0 8px rgba(74,222,128,0.8);
  transition: background 0.3s, box-shadow 0.3s;
}
.admin-status-dot.has-new {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239,68,68,0.9);
  animation: adminDotPulse 1.4s ease-in-out infinite;
}
@keyframes adminDotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(239,68,68,0.9); }
  50% { transform: scale(1.25); box-shadow: 0 0 14px rgba(239,68,68,1); }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.nav-toggle span {
  height: 2px; width: 100%;
  background: var(--ivory-100);
  transition: all 0.3s;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,11,23,0.55) 0%, rgba(6,11,23,0.35) 40%, rgba(6,11,23,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ivory-100);
  margin-bottom: 28px;
}
.hero-title span { display: block; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 42px;
  line-height: 1.9;
}
.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- HERO NEON EMPHASIS (기업의 특별한 모임 강조) ---------- */
.neon-emphasis {
  position: relative;
  display: inline-block;
  color: #fff9ec;
  padding: 0 6px;
  animation: neonFlicker 2.6s ease-in-out infinite, neonPulseScale 3.2s ease-in-out infinite, revealUp 1s var(--ease) forwards;
  animation-delay: var(--d, 0s), var(--d, 0s), var(--d, 0s);
  letter-spacing: 0.02em;
}
.neon-emphasis::before {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), #fff9ec, var(--gold-400), transparent);
  background-size: 200% 100%;
  box-shadow: 0 0 12px rgba(232,195,122,0.9), 0 0 24px rgba(212,162,78,0.6);
  animation: neonUnderlineSweep 3.2s linear infinite;
  opacity: 0.9;
}
.neon-emphasis::after {
  content: '';
  position: absolute;
  inset: -14px -10px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(232,195,122,0.16), transparent 70%);
  z-index: -1;
  animation: neonAuraPulse 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes neonFlicker {
  0%, 92%, 100% {
    text-shadow:
      0 0 6px rgba(232,195,122,0.9),
      0 0 16px rgba(232,195,122,0.75),
      0 0 32px rgba(212,162,78,0.55),
      0 0 60px rgba(212,162,78,0.35),
      0 0 4px #fff9ec;
    opacity: 1;
  }
  93% { text-shadow: none; opacity: 0.75; }
  94% {
    text-shadow:
      0 0 6px rgba(232,195,122,0.9),
      0 0 16px rgba(232,195,122,0.75),
      0 0 32px rgba(212,162,78,0.55);
    opacity: 1;
  }
  95% { text-shadow: none; opacity: 0.65; }
  96%, 98% {
    text-shadow:
      0 0 6px rgba(232,195,122,0.9),
      0 0 16px rgba(232,195,122,0.75),
      0 0 32px rgba(212,162,78,0.55),
      0 0 60px rgba(212,162,78,0.35);
    opacity: 1;
  }
}
@keyframes neonPulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}
@keyframes neonUnderlineSweep {
  0% { background-position: 200% 0; opacity: 0.5; }
  50% { background-position: 0% 0; opacity: 1; }
  100% { background-position: -200% 0; opacity: 0.5; }
}
@keyframes neonAuraPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.06); }
}

/* ---------- HERO PARTICLES (물방울 / 빛 입자 애니메이션) ---------- */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-droplet {
  position: absolute;
  bottom: -40px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95), rgba(232,195,122,0.55) 55%, rgba(212,162,78,0.15) 100%);
  box-shadow: 0 0 8px rgba(232,195,122,0.6), 0 0 2px rgba(255,255,255,0.8) inset;
  opacity: 0;
  animation-name: dropletFloat;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}
@keyframes dropletFloat {
  0% {
    transform: translateY(0) translateX(0) rotate(45deg) scale(0.6);
    opacity: 0;
  }
  8% { opacity: 0.9; }
  70% { opacity: 0.7; }
  100% {
    transform: translateY(-115vh) translateX(var(--drift, 20px)) rotate(45deg) scale(1);
    opacity: 0;
  }
}

.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 1s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

/* ---------- SECTION FLOATING BUBBLES (물방울 둥실둥실 애니메이션 - 화이트 네온) ---------- */
.section-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.section-bubbles .bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.15) 100%);
  box-shadow:
    0 0 8px 2px rgba(255,255,255,0.95),
    0 0 18px 4px rgba(255,255,255,0.6),
    0 0 30px 8px rgba(232,195,122,0.35),
    0 0 4px rgba(255,255,255,0.9) inset;
  opacity: 0;
  animation-name: bubbleDrift;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes bubbleDrift {
  0% { transform: translate(0, 0) scale(0.7); opacity: 0; }
  15% { opacity: 0.9; }
  50% { transform: translate(var(--sway, 14px), -34px) scale(1.2); opacity: 1; }
  85% { opacity: 0.55; }
  100% { transform: translate(0, 0) scale(0.7); opacity: 0; }
}

.scroll-down {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.scroll-line i {
  position: absolute; top: -40px; left: 0;
  width: 100%; height: 40px;
  background: var(--gold-400);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -40px; } 100% { top: 40px; } }

/* ==================== SECTION COMMON ==================== */
.section { padding: 130px 24px; max-width: 1400px; margin: 0 auto; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 70px; text-align: center; }
.section-head.light { }
.section-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 700;
  color: var(--ivory-100);
  margin-bottom: 20px;
  line-height: 1.5;
}
.section-desc { color: var(--text-muted); font-size: 1rem; line-height: 1.9; }

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ==================== HERO 하단 프레스티지 마퀴바 ==================== */
.prestige-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy-900), var(--navy-800), var(--navy-900));
  border-top: 1px solid rgba(212,162,78,0.25);
  border-bottom: 1px solid rgba(212,162,78,0.25);
  padding: 16px 0;
  z-index: 3;
}
.prestige-marquee::before,
.prestige-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.prestige-marquee::before { left: 0; background: linear-gradient(90deg, var(--navy-900), transparent); }
.prestige-marquee::after { right: 0; background: linear-gradient(-90deg, var(--navy-900), transparent); }
.prestige-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: prestigeScroll 34s linear infinite;
}
.prestige-marquee:hover .prestige-marquee-track { animation-play-state: paused; }
.prestige-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ivory-100);
  white-space: nowrap;
}
.prestige-item i { color: var(--gold-400); font-size: 0.95rem; }
.prestige-dot { color: var(--gold-500); opacity: 0.6; font-size: 1.1rem; }
@keyframes prestigeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .prestige-item { font-size: 0.8rem; padding: 0 14px; }
  .prestige-marquee::before, .prestige-marquee::after { width: 40px; }
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  padding: 70px 24px;
  border-top: 1px solid rgba(212,162,78,0.1);
  border-bottom: 1px solid rgba(212,162,78,0.1);
}
.trust-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 10px;
}
.trust-text { font-size: 1.8rem; }
.trust-item p { color: var(--text-muted); font-size: 0.88rem; }

/* ==================== WHY SECTION ==================== */
.why-section { background: var(--navy-900); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: linear-gradient(150deg, rgba(23,36,64,0.6), rgba(10,18,38,0.6));
  border: 1px solid rgba(212,162,78,0.12);
  padding: 38px 26px;
  border-radius: 6px;
  text-align: center;
  transition: all 0.5s var(--ease);
}
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,162,78,0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.why-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(212,162,78,0.1);
  color: var(--gold-400);
  font-size: 1.4rem;
}
.why-card h3 { font-size: 1.02rem; color: var(--ivory-100); margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 0.86rem; }

/* ==================== DIFF SECTION ==================== */
.diff-section { background: var(--navy-800); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 90px;
}
.diff-card {
  padding: 46px 34px;
  background: var(--navy-700);
  border-left: 3px solid var(--gold-500);
  border-radius: 2px;
}
.diff-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: rgba(212,162,78,0.35);
  display: block;
  margin-bottom: 14px;
}
.diff-card h3 { font-size: 1.3rem; color: var(--ivory-100); margin-bottom: 16px; font-family: var(--font-serif); }
.diff-card p { color: var(--text-muted); font-size: 0.92rem; }

.flow-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ivory-100);
  margin-bottom: 40px;
}
.flow-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  counter-reset: flowstep;
}
.flow-step {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 20px;
  background: rgba(212,162,78,0.06);
  border: 1px solid rgba(212,162,78,0.2);
  border-radius: 8px;
  min-width: 100px;
  transition: all 0.35s;
  counter-increment: flowstep;
}
.flow-step:hover { background: rgba(212,162,78,0.15); transform: translateY(-4px); }
.flow-step i { color: var(--gold-400); font-size: 1.3rem; }
.flow-step span { font-size: 0.84rem; color: var(--text-light); }
.flow-arrow { color: rgba(212,162,78,0.4); font-size: 0.8rem; }
.flow-step::before {
  content: counter(flowstep);
  display: none;
  position: absolute;
  top: -9px;
  left: -9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), #b8863f);
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* ==================== SPACES SECTION ==================== */
.spaces-section { background: var(--navy-900); }
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.space-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-700);
  border: 1px solid rgba(212,162,78,0.1);
  transition: all 0.5s var(--ease);
}
.space-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.4); border-color: rgba(212,162,78,0.4); }
.space-img { height: 240px; overflow: hidden; }
.space-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.space-card:hover .space-img img { transform: scale(1.08); }
.space-info { padding: 26px; }
.space-info h3 { font-family: var(--font-serif); font-size: 1.15rem; color: var(--ivory-100); margin-bottom: 10px; }
.space-info p { color: var(--text-muted); font-size: 0.88rem; }

/* ==================== EVENTS SECTION ==================== */
.events-section { background: var(--navy-800); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.event-tag {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 40px 20px;
  background: var(--navy-700);
  border: 1px solid rgba(212,162,78,0.12);
  border-radius: 8px;
  transition: all 0.4s var(--ease);
}
.event-tag:hover { background: linear-gradient(150deg, rgba(212,162,78,0.15), rgba(212,162,78,0.02)); border-color: var(--gold-500); transform: scale(1.04); }
.event-tag i { font-size: 1.7rem; color: var(--gold-400); }
.event-tag span { font-weight: 600; color: var(--ivory-100); font-size: 0.96rem; }

/* ==================== RENTAL SECTION ==================== */
.rental-section { background: var(--navy-900); }
.rental-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.rental-card {
  padding: 40px;
  background: linear-gradient(150deg, rgba(23,36,64,0.7), rgba(10,18,38,0.7));
  border: 1px solid rgba(212,162,78,0.15);
  border-radius: 10px;
}
.rental-card h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold-400); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.rental-card h3 small { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; margin-left: 4px; }
.rental-card ul li { color: var(--text-light); font-size: 0.92rem; padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,0.08); }
.rental-card ul li:last-child { border-bottom: none; }
.rental-card ul li strong { color: var(--gold-400); margin-right: 6px; }

/* ==================== SPECIAL SECTION (\ud2b9\ubcc4\ud568) ==================== */
.special-section { background: var(--navy-800); }
.special-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.special-item {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 26px 20px;
  border-bottom: 1px solid rgba(212,162,78,0.12);
}
.special-item:last-child { border-bottom: none; }
.special-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-500);
  min-width: 56px;
  flex-shrink: 0;
}
.special-item p { color: var(--text-light); font-size: 0.98rem; line-height: 1.8; }
.special-item p strong { color: var(--gold-400); font-weight: 700; }

/* ==================== FACILITY DETAIL (\uc2dc\uc124 \uc0c1\uc138) ==================== */
.facility-detail { margin-top: 70px; }
.facility-detail-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ivory-100);
  margin-bottom: 36px;
}
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.facility-card {
  background: var(--navy-700);
  border: 1px solid rgba(212,162,78,0.15);
  border-radius: 10px;
  padding: 30px 26px;
  transition: all 0.35s;
}
.facility-card:hover { border-color: var(--gold-500); transform: translateY(-4px); }
.facility-card h4 {
  font-family: var(--font-serif);
  color: var(--gold-400);
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.facility-card ul li {
  color: var(--text-muted);
  font-size: 0.86rem;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.facility-card ul li:last-child { border-bottom: none; }

/* ==================== CUSTOM PROGRAM SECTION (\ub9de\ucda4\ud615 \ud504\ub85c\uadf8\ub7a8) ==================== */
.custom-program-section { background: var(--navy-900); }
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.program-card {
  background: linear-gradient(160deg, rgba(23,36,64,0.7), rgba(10,18,38,0.7));
  border: 1px solid rgba(212,162,78,0.15);
  border-radius: 12px;
  padding: 32px 26px;
  transition: all 0.4s var(--ease);
}
.program-card:hover { border-color: var(--gold-500); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.program-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-400);
  text-align: center;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(212,162,78,0.2);
}
.program-flow { display: flex; flex-direction: column; gap: 0; }
.program-flow li {
  position: relative;
  color: var(--text-light);
  font-size: 0.88rem;
  text-align: center;
  padding: 12px 8px 26px;
}
.program-flow li:last-child { padding-bottom: 12px; }
.program-flow li:not(:last-child)::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold-500);
  font-size: 0.7rem;
}

/* ==================== PACKAGE SECTION (\ud5e4\ub9ac\ud2f0\uc9c0 \ubca0\ub274 \ud504\ub85c\uadf8\ub7a8) ==================== */
.package-section { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); }
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.package-card {
  position: relative;
  background: var(--navy-700);
  border: 1px solid rgba(212,162,78,0.15);
  border-radius: 14px;
  padding: 34px 26px;
  transition: all 0.4s var(--ease);
}
.package-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,0.35); border-color: var(--gold-500); }
.package-card.featured { border-color: var(--gold-500); background: linear-gradient(160deg, rgba(212,162,78,0.1), var(--navy-700)); }
.package-card.premium { border: 1px solid var(--gold-500); background: linear-gradient(160deg, rgba(212,162,78,0.14), var(--navy-700)); }
.package-tag {
  position: absolute; top: -12px; right: 24px;
  background: var(--navy-600);
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}
.package-tag.gold {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-600));
  color: var(--black-900);
  border: none;
}
.package-head { text-align: center; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px dashed rgba(212,162,78,0.25); }
.package-head h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--text-light); margin-bottom: 12px; }
.package-head h3 span { color: var(--gold-400); font-weight: 700; }
.package-price { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--ivory-100); }
.package-price small { font-size: 1rem; color: var(--text-muted); font-weight: 400; margin-left: 2px; }
.package-includes li {
  color: var(--text-muted);
  font-size: 0.86rem;
  text-align: center;
  padding: 8px 0;
  line-height: 1.6;
}
.package-includes li small { display: block; color: var(--text-muted); font-size: 0.76rem; margin-top: 2px; }
.package-includes li.plus { color: var(--gold-500); font-size: 0.9rem; padding: 4px 0; }
.package-option {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 30px;
  background: rgba(212,162,78,0.06);
  border: 1px solid rgba(212,162,78,0.2);
  border-radius: 12px;
}
.package-option h4 { color: var(--gold-400); font-family: var(--font-serif); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 1.02rem; }
.package-option h4 small { color: var(--text-muted); font-size: 0.72rem; font-weight: 400; }
.package-option p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 8px; }
.package-note { color: var(--text-muted) !important; font-size: 0.78rem !important; font-style: italic; }

/* ==================== MENU SECTION ==================== */
.menu-section { background: linear-gradient(180deg, var(--navy-800), var(--brown-700) 160%); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.menu-card {
  background: var(--ivory-100);
  border-radius: 10px;
  overflow: hidden;
  color: var(--brown-700);
  transition: all 0.5s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.menu-card:hover { transform: translateY(-10px); box-shadow: 0 30px 50px rgba(0,0,0,0.5); }
.menu-img { height: 220px; overflow: hidden; }
.menu-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.menu-card:hover .menu-img img { transform: scale(1.1); }
.menu-info { padding: 28px; position: relative; }
.menu-price {
  position: absolute; top: -22px; right: 24px;
  background: linear-gradient(120deg, var(--gold-400), var(--gold-600));
  color: var(--black-900);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.95rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.menu-info h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 12px; color: var(--brown-700); }
.menu-info p { font-size: 0.88rem; color: #5c4a3a; margin-bottom: 6px; }
.menu-note { font-style: italic; font-size: 0.82rem; color: #8a7360; }

/* ==================== EXPERIENCE SECTION ==================== */
.experience-section { background: var(--navy-900); }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.exp-card.gold-box {
  border: 1px solid var(--gold-500);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(212,162,78,0.08), rgba(10,18,38,0.4));
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.exp-card.gold-box:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(212,162,78,0.2); }
.exp-img { height: 260px; overflow: hidden; }
.exp-img img { width: 100%; height: 100%; object-fit: cover; }
.exp-body { padding: 32px; }
.exp-badge {
  display: inline-block;
  background: rgba(212,162,78,0.15);
  color: var(--gold-400);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.exp-badge.discount { background: rgba(212, 78, 78, 0.15); color: #ff9e9e; }
.exp-card h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--ivory-100); margin-bottom: 10px; }
.exp-price { color: var(--gold-400); font-weight: 700; font-size: 1.15rem; margin-bottom: 14px; }
.exp-body p:last-child { color: var(--text-muted); font-size: 0.92rem; }

/* ==================== SUPPORT SECTION ==================== */
.support-section { background: var(--navy-800); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.support-item {
  text-align: center;
  padding: 30px 14px;
  background: var(--navy-700);
  border-radius: 8px;
  border: 1px solid rgba(212,162,78,0.1);
  transition: all 0.35s;
}
.support-item:hover { border-color: var(--gold-500); transform: translateY(-6px); }
.support-item i { font-size: 1.5rem; color: var(--gold-400); margin-bottom: 14px; display: block; }
.support-item p { font-size: 0.8rem; color: var(--text-light); }

/* ==================== GALLERY ==================== */
.gallery-section { background: var(--navy-900); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 260px;
}
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
  font-size: 1.4rem;
  background: rgba(6,11,23,0.5);
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.08); }

.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(2,4,8,0.94);
  display: none;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 88vw; max-height: 84vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--ivory-100);
  font-size: 1.4rem;
  background: rgba(255,255,255,0.08);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold-500); color: var(--black-900); }
.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }

/* ==================== PROCESS ==================== */
.process-section { background: var(--navy-800); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
.process-step {
  text-align: center;
  padding: 32px 14px;
  background: var(--navy-700);
  border-radius: 10px;
  border: 1px solid rgba(212,162,78,0.1);
  position: relative;
  transition: all 0.35s;
}
.process-step:hover { border-color: var(--gold-500); transform: translateY(-6px); }
.step-num { display: block; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gold-500); margin-bottom: 14px; }
.process-step i { font-size: 1.4rem; color: var(--gold-400); margin-bottom: 12px; display: block; }
.process-step h4 { font-size: 0.92rem; color: var(--ivory-100); }

/* ==================== REVIEW KAKAO MARQUEE ==================== */
.review-section { background: var(--navy-900); overflow: hidden; }
.review-section .section-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-top: -20px;
  margin-bottom: 10px;
}
.review-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.review-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 26px;
  width: max-content;
  animation: reviewMarqueeScroll 48s linear infinite;
}
.review-marquee-wrap:hover .review-marquee-track { animation-play-state: paused; }
.review-kakao-item {
  flex: 0 0 auto;
  width: 250px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(212,162,78,0.18);
  background: var(--navy-700);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review-kakao-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(0,0,0,0.45);
}
.review-kakao-item img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes reviewMarqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .review-kakao-item { width: 190px; }
  .review-marquee-track { gap: 16px; }
}

/* ==================== FAQ ==================== */
.faq-section { background: var(--navy-800); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(212,162,78,0.15);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 6px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ivory-100);
  text-align: left;
}
.faq-q i { color: var(--gold-400); transition: transform 0.35s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 6px 26px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.85; }

/* ==================== CTA SECTION ==================== */
.cta-section {
  position: relative;
  padding: 160px 24px;
  text-align: center;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,11,23,0.55) 0%, rgba(6,11,23,0.45) 40%, rgba(6,11,23,0.88) 100%); }
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--ivory-100); margin-bottom: 22px; line-height: 1.5; }
.cta-content p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.02rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==================== CONTACT FORM ==================== */
.contact-section { background: var(--navy-900); }
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--navy-700);
  padding: 50px;
  border-radius: 14px;
  border: 1px solid rgba(212,162,78,0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 0.88rem; margin-bottom: 8px; color: var(--text-light); }
.req { color: var(--gold-400); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.btn-submit { width: 100%; margin-top: 10px; }

/* ==================== SUCCESS MODAL ==================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(2,4,8,0.85);
  display: none;
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--navy-700);
  border: 1px solid var(--gold-500);
  border-radius: 14px;
  padding: 50px 40px;
  text-align: center;
  max-width: 400px;
  animation: modalPop 0.4s var(--ease);
}
@keyframes modalPop { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-icon { font-size: 3rem; color: var(--gold-400); margin-bottom: 20px; }
.modal-box h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--ivory-100); margin-bottom: 12px; }
.modal-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }

/* ==================== FOOTER ==================== */
.site-footer { background: var(--black-900); padding: 80px 24px 0; border-top: 1px solid rgba(212,162,78,0.1); }
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.3rem; color: var(--ivory-100); margin-bottom: 18px; }
.footer-logo em { font-style: normal; color: var(--gold-400); font-size: 0.9rem; margin-left: 6px; }
.footer-col p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.8; }
.footer-col h4 { color: var(--ivory-100); font-size: 0.98rem; margin-bottom: 20px; }
.footer-col ul li { color: var(--text-muted); font-size: 0.86rem; margin-bottom: 12px; }
.footer-col ul li i { color: var(--gold-400); width: 18px; }
.footer-org { margin-top: 14px; padding-top: 14px; border-top: 1px dashed rgba(255,255,255,0.1); font-size: 0.78rem !important; color: var(--text-muted); opacity: 0.85; }
.footer-links a { color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-400); }
.footer-logo-mark {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin-top: 22px;
  background: #fff;
  padding: 8px;
  object-fit: contain;
  animation: footerLogoNeon 3s ease-in-out infinite;
}
@keyframes footerLogoNeon {
  0%, 100% {
    box-shadow: 0 0 10px rgba(212,162,78,0.5), 0 0 22px rgba(212,162,78,0.3), 0 0 2px rgba(255,255,255,0.6) inset;
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 22px rgba(232,195,122,0.85), 0 0 44px rgba(212,162,78,0.55), 0 0 4px rgba(255,255,255,0.8) inset;
    filter: brightness(1.08);
  }
}
.footer-col-map { min-width: 0; }
.footer-map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(212,162,78,0.2);
  max-width: 100%;
}
.footer-map-wrapper .root_daum_roughmap_landing { width: 100% !important; }
.footer-map-wrapper .root_daum_roughmap_landing .wrap_map { width: 100% !important; height: 180px !important; }
.footer-map-wrapper .root_daum_roughmap_landing .wrap_controllers { display: none !important; }
/* 카카오맵 내부 정보창(주소/전화) 텍스트를 밝은 색으로 표시하고, 전화 정보는 숨김 처리 */
.footer-map-wrapper,
.footer-map-wrapper * {
  color: #f5f0e6 !important;
}
.footer-map-wrapper a { color: #e8c37a !important; }
.footer-map-wrapper .contact,
.footer-map-wrapper .tel,
.footer-map-wrapper .biz_tel,
.footer-map-wrapper .info_tel,
.footer-map-wrapper .txt_tel,
.footer-map-wrapper .link_tel,
.footer-map-wrapper li.tel,
.footer-map-wrapper dd.tel,
.footer-map-wrapper [class*="tel"],
.footer-map-wrapper [class*="phone"],
.footer-map-wrapper a[href^="tel:"] {
  display: none !important;
}
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-buttons {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: all 0.35s var(--ease);
}
.float-call { background: var(--navy-700); color: var(--gold-400); border: 1px solid rgba(212,162,78,0.3); }
.float-contact { background: linear-gradient(120deg, var(--gold-400), var(--gold-600)); color: var(--black-900); }
.float-btn:hover { transform: translateY(-4px) scale(1.08); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.mobile-open {
    display: flex;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(6,11,23,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px;
    border-top: 1px solid rgba(212,162,78,0.15);
  }
  .main-nav.mobile-open ul { flex-direction: column; gap: 22px; }
  .header-actions .btn-sm.btn-gold { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .rental-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-item { height: 220px; }
  .special-item { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 640px) {
  .section { padding: 90px 20px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .spaces-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 180px; }
  .flow-wrap .flow-title { margin-bottom: 26px; }
  .flow-line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    justify-items: stretch;
  }
  .flow-arrow { display: none; }
  .flow-step { min-width: 0; padding: 18px 10px 16px; }
  .flow-step::before { display: flex; }
  .flow-line .flow-step:last-child {
    grid-column: 1 / -1;
    max-width: 47%;
    margin: 0 auto;
  }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
}
