:root {
  --black: #0a0a0a;
  --gray:  #555555;
  --light: #999999;
  --line:  #e5e5e5;
  --white: #ffffff;
  --ocean: #0099cc;
  --bg:    #f8f8f8;
  --kakao: #FEE500;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--black);
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
button:not(:disabled), a[href] { cursor: pointer; }
a { color: inherit; }
img { display: block; }

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { transform: scale(0.92); } to { transform: scale(1); } }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease 0.2s;
}
.hero-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 56px;
  background: transparent;
  border-bottom: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  font-weight: 900; font-size: 1rem; letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.3s ease;
}
.nav.scrolled .nav-brand { color: var(--black); }
.desktop-nav { display: flex; gap: 2rem; align-items: center; }
.desktop-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem; font-weight: 700; text-decoration: none;
  transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--white); }
.nav.scrolled .desktop-nav a { color: var(--gray); }
.nav.scrolled .desktop-nav a:hover { color: var(--black); }
.nav-cta {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white); padding: 0.45rem 1.2rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  text-decoration: none; transition: all 0.3s;
}
.nav-cta:hover { opacity: 0.75; }
.nav.scrolled .nav-cta { background: var(--black); border-color: var(--black); color: white !important; }
.mobile-menu-btn {
  background: none; border: none; padding: 0.5rem; cursor: pointer;
  display: none;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px; background: var(--white);
  margin-bottom: 5px; transition: all 0.3s;
}
.mobile-menu-btn span:last-child { margin-bottom: 0; }
.nav.scrolled .mobile-menu-btn span { background: var(--black); }
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 99;
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 1rem 1.5rem;
  flex-direction: column; gap: 0.8rem;
  animation: fadeIn 0.2s ease;
  display: none;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--gray); font-size: 0.9rem; font-weight: 700;
  text-decoration: none; padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .nav-cta-mobile {
  background: var(--black); color: var(--white);
  padding: 0.8rem 1rem; font-size: 0.85rem; font-weight: 700;
  text-decoration: none; text-align: center; margin-top: 0.3rem;
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  position: relative; height: 100svh; overflow: hidden;
}
.hero img.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero .overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.3);
}
.hero-content {
  position: absolute; bottom: 7rem; left: 1.5rem; right: 1.5rem;
}
.hero h1 {
  font-weight: 900;
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  color: var(--white); line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 0.8rem;
}
.hero .subtitle {
  font-size: clamp(0.75rem, 2.5vw, 0.95rem);
  color: rgba(255,255,255,0.8);
  font-weight: 700; letter-spacing: 0.12em; margin-bottom: 1.5rem;
}
.hero-ctas { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.btn-light {
  background: var(--white); color: var(--black);
  padding: 0.75rem 1.6rem; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-decoration: none; transition: opacity 0.2s;
}
.btn-light:hover { opacity: 0.85; }
.btn-outline {
  background: transparent; border: 2px solid rgba(255,255,255,0.7);
  color: var(--white); padding: 0.75rem 1.6rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.stat-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  display: flex; justify-content: center;
}
.stat-bar .stat {
  padding: 1rem 0; flex: 1; max-width: 160px;
  text-align: center;
}
.stat-bar .stat + .stat { border-left: 1px solid rgba(255,255,255,0.15); }
.stat-bar .stat-num {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 900; color: var(--white); line-height: 1;
}
.stat-bar .stat-label {
  font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.6);
  margin-top: 0.2rem; letter-spacing: 0.08em;
}

/* ── 공통 섹션 ── */
.section {
  padding: 5rem 1.5rem;
  border-bottom: 1px solid var(--line);
}
.section-bg  { background: var(--bg); }
.section-dark { background: var(--black); border-bottom: 1px solid rgba(255,255,255,0.08); }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }
.eyebrow {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.25em; color: var(--light);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.2; letter-spacing: -0.02em;
}
.section-head { margin-bottom: 2.5rem; }
.section-head p {
  font-size: 0.85rem; color: var(--gray);
  margin-top: 0.5rem; line-height: 1.9;
}

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.why-cell { padding: 2rem; }
.why-cell .num {
  font-size: 2.5rem; font-weight: 900;
  color: var(--line); line-height: 1; margin-bottom: 0.8rem;
}
.why-cell h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.6rem; }
.why-cell p { font-size: 0.83rem; color: var(--gray); line-height: 1.9; }
.why-cell:nth-child(1) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.why-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
.why-cell:nth-child(3) { border-right: 1px solid var(--line); }

.why-banner {
  margin-top: 3rem;
  padding: 1.8rem 2rem;
  background: var(--black);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.why-banner .label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; color: rgba(255,255,255,0.4);
  margin-bottom: 0.4rem;
}
.why-banner .copy {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 800; color: var(--white);
  line-height: 1.5;
}
.why-banner .btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); color: var(--black);
  padding: 0.75rem 1.5rem;
  font-size: 0.82rem; font-weight: 800;
  text-decoration: none; white-space: nowrap;
  letter-spacing: 0.02em; transition: opacity 0.2s;
}
.why-banner .btn:hover { opacity: 0.8; }

/* ── FILM ── */
.film-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.film-head {
  margin-bottom: 2rem;
  text-align: center;
}
.film-title {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
}
.film-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.film-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── 갤러리 ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-cell {
  position: relative; padding-bottom: 100%;
  overflow: hidden; background: var(--line);
  cursor: zoom-in;
}
.gallery-cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-cell:hover img { transform: scale(1.05); }
.gallery-caption {
  margin-top: 0.8rem;
  font-size: 0.7rem; color: var(--light);
}

/* ── 라이트박스 ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  cursor: zoom-out;
  padding: 2rem;
}
.lightbox.open {
  display: flex; animation: fadeIn 0.2s ease;
}
.lightbox img {
  max-width: min(90vw, 900px);
  max-height: min(85vh, 800px);
  width: auto; height: auto;
  object-fit: contain;
  cursor: default;
  animation: scaleIn 0.25s ease;
  user-select: none;
  flex-shrink: 0;
}
.lightbox .hint {
  position: absolute; bottom: 1.5rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em; pointer-events: none;
}

/* ── PRICING ── */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.pkg {
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-top: 3px solid transparent;
  background: var(--bg);
  display: flex; flex-direction: column;
}
.pkg.featured {
  background: var(--white);
  border-top: 3px solid var(--black);
}
.pkg .badge {
  display: inline-block; align-self: flex-start;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.15em;
  background: var(--black); color: var(--white);
  padding: 0.2rem 0.6rem; margin-bottom: 0.8rem;
}
.pkg .type {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--light); margin-bottom: 0.3rem;
}
.pkg .name { font-size: 1.1rem; font-weight: 900; margin-bottom: 0.3rem; }
.pkg .highlight { font-size: 0.75rem; color: var(--gray); margin-bottom: 1.4rem; }
.pkg ul { list-style: none; margin-bottom: 1.6rem; flex-grow: 1; }
.pkg ul li {
  font-size: 0.8rem; color: var(--gray);
  padding: 0.35rem 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 0.6rem; align-items: center;
}
.pkg ul li::before {
  content: ""; width: 5px; height: 5px;
  background: var(--black); border-radius: 50%; flex-shrink: 0;
}
.pkg .price { font-size: 2rem; font-weight: 900; letter-spacing: -0.03em; }
.pkg .price-note { font-size: 0.7rem; color: var(--light); margin-top: 0.2rem; }

.pricing-table-wrap { overflow-x: auto; }
.pricing-table {
  width: 100%; border-collapse: collapse; min-width: 400px;
}
.pricing-table thead tr { border-bottom: 2px solid var(--black); }
.pricing-table th {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.6rem 0.8rem; text-align: left;
}
.pricing-table tbody tr { border-bottom: 1px solid var(--line); }
.pricing-table td { padding: 0.8rem 0.8rem; }
.pricing-table td:nth-child(1) { font-size: 0.83rem; }
.pricing-table td:nth-child(2) { font-size: 0.95rem; font-weight: 900; white-space: nowrap; }
.pricing-table td:nth-child(3) { font-size: 0.75rem; color: var(--light); }

/* ── REVIEWS ── */
.review-head {
  margin-bottom: 3rem;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.review-head .eyebrow-dark {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35); margin-bottom: 0.6rem;
}
.review-head h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 900;
  line-height: 1.2; letter-spacing: -0.02em; color: var(--white);
}
.review-rating {
  display: flex; align-items: center; gap: 1rem;
}
.review-rating .big-score {
  font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1;
}
.review-rating .sub {
  font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
}
.review-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.8rem;
}
.review-card .name { font-weight: 700; font-size: 0.88rem; color: var(--white); }
.review-card .meta {
  font-size: 0.68rem; color: rgba(255,255,255,0.35); margin-top: 0.15rem;
}
.review-card p {
  font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.85;
}
.review-stat-bar {
  margin-top: 3rem; padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: center; flex-wrap: wrap;
}
.review-stat-bar .stat {
  flex: 1; min-width: 120px; text-align: center; padding: 0.8rem 1rem;
}
.review-stat-bar .stat + .stat { border-left: 1px solid rgba(255,255,255,0.1); }
.review-stat-bar .stat-num {
  font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 900; color: var(--white);
}
.review-stat-bar .stat-label {
  font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.35);
  margin-top: 0.2rem; letter-spacing: 0.08em;
}
.stars { display: flex; gap: 2px; }

/* ── FLIGHT ── */
.flight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.flight-cell {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex; gap: 1rem; align-items: flex-start;
}
.flight-cell .icon { font-size: 1.5rem; line-height: 1; margin-top: 0.1rem; }
.flight-cell .label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--light); margin-bottom: 0.3rem;
}
.flight-cell .value { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.flight-cell .sub { font-size: 0.75rem; color: var(--gray); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 0; cursor: pointer; text-align: left; gap: 1rem;
  font-family: inherit;
}
.faq-q span {
  font-size: 0.92rem; font-weight: 700; color: var(--black); line-height: 1.5;
}
.faq-q svg {
  flex-shrink: 0; transition: transform 0.25s ease;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p {
  font-size: 0.84rem; color: var(--gray); line-height: 1.9;
  padding-bottom: 1.3rem;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-links { display: flex; flex-direction: column; gap: 0.7rem; }
.contact-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1.5rem;
  font-size: 0.85rem; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
}
.contact-btn.kakao { background: var(--kakao); color: var(--black); }
.contact-btn.kakao:hover { opacity: 0.85; }
.contact-btn.outline {
  background: transparent; border: 1px solid var(--line); color: var(--black);
}
.contact-btn.outline:hover { border-color: var(--black); }
.contact-btn.dark {
  background: var(--black); color: var(--white);
}
.contact-btn.dark:hover { opacity: 0.8; }

.contact-info {
  margin-top: 2rem; padding: 1.2rem;
  background: var(--bg); border: 1px solid var(--line);
}
.contact-info .row {
  display: flex; gap: 1rem; padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .row:last-child { border-bottom: none; }
.contact-info .label {
  font-size: 0.7rem; font-weight: 700; color: var(--light); min-width: 32px;
}
.contact-info .value { font-size: 0.8rem; color: var(--gray); }

.contact-guide {
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--line);
}
.contact-guide .label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--light); margin-bottom: 1rem;
}
.contact-guide .lead {
  font-size: 0.88rem; color: var(--black); font-weight: 700;
  line-height: 1.8; margin-bottom: 1.2rem;
}
.guide-list { display: flex; flex-direction: column; gap: 0.6rem; }
.guide-list .item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.7rem 0; border-bottom: 1px solid var(--line);
}
.guide-list .item:last-child { border-bottom: none; }
.guide-list .num {
  font-size: 0.65rem; font-weight: 900; color: var(--light);
  min-width: 24px; margin-top: 0.1rem;
}
.guide-list .text {
  font-size: 0.84rem; color: var(--gray); line-height: 1.6;
}
.contact-guide .footnote {
  margin-top: 1.2rem; font-size: 0.75rem; color: var(--light); line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  padding: 1.8rem 1.5rem;
  background: var(--black);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.8rem;
}
.footer .brand {
  font-weight: 900; font-size: 0.95rem;
  letter-spacing: 0.1em; color: var(--white);
}
.footer .copy {
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
}
.footer .links { display: flex; gap: 1.2rem; }
.footer .links a {
  font-size: 0.68rem; font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer .links a.kakao:hover { color: var(--kakao); }
.footer .links a.instagram:hover { color: #E1306C; }

/* ── KAKAO FLOAT ── */
.kakao-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 500;
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--kakao); color: var(--black);
  padding: 0.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  text-decoration: none;
  font-weight: 700; font-size: 0.82rem;
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap; overflow: hidden;
  max-width: 52px;
}
.kakao-float:hover {
  max-width: 200px;
  padding: 0.8rem 1.4rem 0.8rem 1rem;
}
.kakao-float svg { flex-shrink: 0; }
.kakao-float .text {
  opacity: 0; transition: opacity 0.15s ease 0.05s;
}
.kakao-float:hover .text { opacity: 1; }

/* ── 모바일 반응형 ── */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .review-grid { grid-template-columns: 1fr; }
  .flight-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-cell:nth-child(1) { border-right: none; border-bottom: 1px solid var(--line); }
  .why-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .why-cell:nth-child(3) { border-right: none; border-bottom: 1px solid var(--line); }
  .package-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}
@media (max-width: 480px) {
  .package-grid { grid-template-columns: 1fr; }
}