/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  background: #06060a;
  color: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== AMBIENT BG ===== */
.bg-glow { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-glow .orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.12; animation: orbFloat 20s ease-in-out infinite alternate; }
.bg-glow .orb1 { width: 600px; height: 600px; background: #c9a227; top: -10%; left: -10%; }
.bg-glow .orb2 { width: 500px; height: 500px; background: #8b5cf6; bottom: -10%; right: -10%; animation-delay: -7s; }
.bg-glow .orb3 { width: 400px; height: 400px; background: #ec4899; top: 50%; left: 40%; animation-delay: -14s; }
@keyframes orbFloat {
  0% { transform: translate(0,0) scale(1); }
  33% { transform: translate(80px,-60px) scale(1.1); }
  66% { transform: translate(-40px,40px) scale(0.95); }
  100% { transform: translate(60px,-30px) scale(1.05); }
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 0 24px; transition: 0.4s;
}
.header.scrolled {
  background: rgba(6,6,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: 1100px; margin: 0 auto; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 900;
  background: linear-gradient(135deg, #f6d365, #d4af37, #f6d365);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
.nav { display: flex; gap: 32px; }
.nav a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; transition: color 0.3s; }
.nav a:hover, .nav a.active { color: #d4af37; }
.header-cta {
  padding: 10px 24px; background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #06060a; font-size: 13px; font-weight: 700; border-radius: 8px; transition: 0.3s;
}
.header-cta:hover { box-shadow: 0 0 20px rgba(212,175,55,0.4); transform: translateY(-1px); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.menu-toggle span { width: 22px; height: 2px; background: #d4af37; transition: 0.3s; border-radius: 2px; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; z-index: 1;
  padding: 180px 24px 80px; text-align: center;
}
.page-hero .section-tag { margin-bottom: 20px; }
.page-hero h1 {
  font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 900;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease-out;
}
.page-hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.4);
  animation: fadeUp 0.8s ease-out 0.1s both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SECTION ===== */
.section {
  position: relative; z-index: 1;
  padding: 100px 24px; max-width: 1100px; margin: 0 auto;
}
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700; color: #d4af37;
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px;
  padding: 6px 16px; background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.12); border-radius: 6px;
}
.section-title {
  font-family: 'Outfit', sans-serif; font-size: 40px; font-weight: 800;
  line-height: 1.2; margin-bottom: 16px;
}
.section-desc { font-size: 15px; color: rgba(255,255,255,0.4); max-width: 500px; margin-bottom: 56px; }

/* ===== DIVIDER ===== */
.divider {
  position: relative; z-index: 1; max-width: 1100px; margin: 0 auto;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

/* ===== CARD BASE ===== */
.card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 40px 32px;
  transition: 0.4s; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  opacity: 0; transition: opacity 0.4s;
}
.card:hover { border-color: rgba(212,175,55,0.2); transform: translateY(-6px); }
.card:hover::before { opacity: 1; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; padding: 56px 48px;
  position: relative; overflow: hidden;
}
.highlight-box::after {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.06), transparent 70%);
  pointer-events: none;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 52px;
  background: linear-gradient(135deg, #d4af37, #c9a227);
  color: #06060a; font-size: 17px; font-weight: 700;
  border-radius: 14px; transition: 0.3s;
  position: relative; overflow: hidden;
}
.cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%); transition: 0.6s;
}
.cta-btn:hover::before { transform: translateX(100%); }
.cta-btn:hover { box-shadow: 0 8px 40px rgba(212,175,55,0.4); transform: translateY(-3px); }
.cta-btn svg { width: 20px; height: 20px; }

/* ===== LINK ===== */
.more-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #d4af37; font-size: 14px; font-weight: 600; transition: 0.3s;
}
.more-link:hover { gap: 14px; }

/* ===== CTA BOTTOM ===== */
.cta-section {
  position: relative; z-index: 1; text-align: center; padding: 140px 24px;
}
.cta-section h2 { font-family: 'Outfit', sans-serif; font-size: 44px; font-weight: 800; margin-bottom: 16px; }
.cta-section p { font-size: 15px; color: rgba(255,255,255,0.35); margin-bottom: 48px; }
.cta-section .gold {
  background: linear-gradient(135deg, #f6d365, #d4af37);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* ===== FOOTER ===== */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 48px 24px; text-align: center;
}
.footer p { font-size: 12px; color: rgba(255,255,255,0.2); line-height: 2.2; }

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #d4af37, #c9a227);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(212,175,55,0.35); transition: 0.3s;
}
.float-cta:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 32px rgba(212,175,55,0.5); }
.float-cta svg { width: 26px; height: 26px; fill: #06060a; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PRICE TABLE ===== */
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; position: relative; z-index: 1; }
.price-table thead th {
  text-align: left; padding: 14px 20px;
  font-size: 12px; font-weight: 600; color: rgba(212,175,55,0.7);
  letter-spacing: 1px; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-table tbody td {
  padding: 20px; font-size: 15px; color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.price-table tbody td:nth-child(2) {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 20px; color: #fff;
}
.price-table tbody tr:hover { background: rgba(212,175,55,0.03); }
.price-note { font-size: 12px; color: rgba(255,255,255,0.25); line-height: 2.2; position: relative; z-index: 1; }

/* ===== STEP GRID (system) ===== */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card {
  position: relative; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 40px 28px; transition: 0.4s; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  opacity: 0; transition: opacity 0.4s;
}
.step-card:hover { border-color: rgba(212,175,55,0.2); transform: translateY(-6px); }
.step-card:hover::before { opacity: 1; }
.step-num {
  font-family: 'Outfit', sans-serif; font-size: 40px; font-weight: 900;
  background: linear-gradient(135deg, #d4af37, #f6d365);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; }

/* ===== FEATURE GRID (system) ===== */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.feature-card {
  background: rgba(212,175,55,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 36px; transition: 0.3s;
}
.feature-card:hover { border-color: rgba(212,175,55,0.15); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; }

/* ===== GUIDE LIST (system) ===== */
.guide-list { max-width: 700px; }
.guide-item { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.guide-item strong { display: block; font-size: 11px; color: #d4af37; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.guide-item p { font-size: 15px; color: rgba(255,255,255,0.5); }

/* ===== INCLUDE GRID (price) ===== */
.include-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.include-card {
  text-align: center; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 36px 20px; transition: 0.3s;
}
.include-card:hover { border-color: rgba(212,175,55,0.15); transform: translateY(-4px); }
.include-icon { font-size: 36px; margin-bottom: 16px; }
.include-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.include-card p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===== PROMISE LIST (price) ===== */
.promise-list { margin-top: 40px; position: relative; z-index: 1; }
.promise-item {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.promise-item strong {
  font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 900;
  background: linear-gradient(135deg, #d4af37, #f6d365);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  min-width: 56px;
}
.promise-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.promise-item p { font-size: 14px; color: rgba(255,255,255,0.4); }

/* ===== COMPARE (price) ===== */
.compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 800px; }
.compare-card { border-radius: 20px; padding: 44px 32px; position: relative; }
.compare-card.other { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); }
.compare-card.ours { background: rgba(212,175,55,0.04); border: 1px solid rgba(212,175,55,0.25); }
.compare-badge {
  position: absolute; top: -12px; left: 24px;
  background: linear-gradient(135deg, #d4af37, #c9a227); color: #06060a;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 800;
  padding: 5px 18px; border-radius: 20px;
}
.compare-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.compare-card ul li { font-size: 15px; color: rgba(255,255,255,0.5); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.compare-card.other ul li::before { content: '— '; color: rgba(255,255,255,0.2); }
.compare-card.ours ul li { color: #fff; }
.compare-card.ours ul li::before { content: '✓ '; color: #d4af37; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { overflow: hidden; border-radius: 14px; }
.gallery-placeholder {
  background: rgba(255,255,255,0.02); border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 14px; aspect-ratio: 3/2;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.15); font-size: 13px;
}
.gallery-item img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption { font-size: 12px; color: rgba(255,255,255,0.3); padding: 12px 4px 0; text-align: center; }

/* ===== FACILITY (gallery) ===== */
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.facility-item {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 28px;
}
.facility-item strong { display: block; font-size: 11px; color: #d4af37; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.facility-item span { font-size: 14px; color: rgba(255,255,255,0.5); }

/* ===== REVIEW CARDS ===== */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.review-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 36px; transition: 0.3s;
}
.review-card:hover { border-color: rgba(255,255,255,0.1); }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.review-stars { color: #d4af37; font-size: 13px; letter-spacing: 2px; }
.review-date { font-size: 12px; color: rgba(255,255,255,0.2); }
.review-text { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.9; margin-bottom: 16px; }
.review-meta { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ===== REVIEW FULL (review page) ===== */
.review-list { max-width: 800px; }
.review-card-full {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 40px; margin-bottom: 16px; transition: 0.3s;
}
.review-card-full:hover { border-color: rgba(255,255,255,0.1); }
.review-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.review-title { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.review-card-full .review-text { margin-bottom: 16px; }
.review-meta-full { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ===== REVIEW SUMMARY ===== */
.review-summary {
  display: flex; justify-content: center; gap: 64px; text-align: center;
  padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.review-summary-item strong {
  display: block; font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #d4af37);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.review-summary-item span { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===== FAQ ===== */
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-q {
  width: 100%; background: none; border: none; color: #fff;
  font-size: 16px; font-weight: 600; text-align: left;
  padding: 28px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Noto Sans KR', sans-serif; transition: color 0.3s;
}
.faq-q:hover { color: #d4af37; }
.faq-q .icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(212,175,55,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #d4af37; flex-shrink: 0; transition: 0.3s;
}
.faq-item.active .faq-q .icon { background: #d4af37; color: #06060a; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-a { max-height: 200px; }
.faq-a p { padding-bottom: 28px; font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.9; }

/* ===== LOCATION MAP ===== */
.loc-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px; overflow: hidden;
}
.loc-map { min-height: 420px; background: rgba(255,255,255,0.02); }
.loc-map iframe { width: 100%; height: 100%; border: none; }
.loc-map-placeholder {
  width: 100%; height: 100%; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.15); font-size: 13px;
  background: linear-gradient(135deg, #0d0d12, #111118);
}
.loc-info { padding: 48px; }
.loc-info h2 { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 36px; }
.loc-row { margin-bottom: 24px; }
.loc-row strong { display: block; font-size: 11px; font-weight: 700; color: #d4af37; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.loc-row span { font-size: 15px; color: rgba(255,255,255,0.6); }

/* ===== TRANSPORT (location) ===== */
.transport-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.transport-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 36px 24px; text-align: center; transition: 0.3s;
}
.transport-card:hover { border-color: rgba(212,175,55,0.15); transform: translateY(-4px); }
.transport-icon { font-size: 36px; margin-bottom: 16px; }
.transport-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.transport-card p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; }

/* ===== PARKING (location) ===== */
.parking-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; position: relative; z-index: 1; }
.parking-item {
  background: rgba(212,175,55,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 32px; transition: 0.3s;
}
.parking-item:hover { border-color: rgba(212,175,55,0.15); }
.parking-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.parking-item p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; }

/* ===== EVENT ===== */
.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.event-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 40px 32px; position: relative; transition: 0.4s; overflow: hidden;
}
.event-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  opacity: 0; transition: opacity 0.4s;
}
.event-card:hover { border-color: rgba(212,175,55,0.2); transform: translateY(-6px); }
.event-card:hover::before { opacity: 1; }
.event-card.event-hot { border-color: rgba(212,175,55,0.25); }
.event-card.event-hot::before { opacity: 1; }
.event-badge {
  position: absolute; top: 16px; right: 20px;
  background: linear-gradient(135deg, #d4af37, #c9a227); color: #06060a;
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 800;
  padding: 4px 14px; border-radius: 6px; letter-spacing: 1px;
}
.event-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.event-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 24px; }
.event-detail {
  background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.1);
  border-radius: 10px; padding: 18px; margin-bottom: 16px;
}
.event-detail strong { font-size: 16px; color: #d4af37; }
.event-period { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ===== SEASON EVENT ===== */
.season-event {
  margin-top: 32px; padding: 44px;
  background: rgba(212,175,55,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; position: relative; z-index: 1;
}
.season-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.season-content p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.season-content ul li {
  font-size: 15px; color: rgba(255,255,255,0.6); padding: 10px 0 10px 24px; position: relative;
}
.season-content ul li::before { content: '✓'; color: #d4af37; position: absolute; left: 0; }

/* ===== HOW GRID (event) ===== */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-step { text-align: center; padding: 36px 20px; }
.how-num {
  display: inline-flex; width: 52px; height: 52px;
  align-items: center; justify-content: center; border-radius: 14px;
  background: rgba(212,175,55,0.08); border: 1px solid rgba(212,175,55,0.15);
  color: #d4af37; font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800; margin-bottom: 20px;
}
.how-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.how-step p { font-size: 14px; color: rgba(255,255,255,0.4); }


/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 968px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; width: 100%;
    background: rgba(6,6,10,0.97); backdrop-filter: blur(20px);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .header-cta { display: none; }
  .page-hero h1 { font-size: 34px; }
  .section-title { font-size: 30px; }
  .cta-section h2 { font-size: 32px; }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .include-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: repeat(2, 1fr); }
  .parking-grid { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .loc-wrap { grid-template-columns: 1fr; }
  .loc-map { min-height: 280px; }
  .highlight-box { padding: 40px 24px; }
  .review-summary { gap: 36px; }
  .review-summary-item strong { font-size: 36px; }
}
@media (max-width: 480px) {
  .page-hero { padding: 140px 20px 60px; }
  .page-hero h1 { font-size: 28px; }
  .section { padding: 72px 20px; }
  .section-title { font-size: 26px; }
  .cta-btn { padding: 18px 40px; font-size: 15px; }
  .step-grid { grid-template-columns: 1fr; }
  .include-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .facility-grid { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .price-table thead th { font-size: 11px; padding: 12px; }
  .price-table tbody td { padding: 16px 12px; font-size: 13px; }
  .price-table tbody td:nth-child(2) { font-size: 16px; }
  .review-summary { flex-direction: column; gap: 24px; }
  .promise-item { flex-direction: column; gap: 8px; }
  .loc-info { padding: 32px 24px; }
  .season-event { padding: 32px 24px; }
}
