/* ─── 원앤온리 그랜드오픈 이벤트 ─── */
:root {
  --bg-cream: #f7f2ea;
  --bg-warm: #f0e8dc;
  --bg-beige: #f0e8dc;
  --bg-deep: #e8ddd0;
  --text-dark: #1e1a17;
  --text-mid: #5c5349;
  --text-light: #8a7f72;
  --gold: #b8956a;
  --gold-dark: #96784f;
  --white: #ffffff;
  --glass: rgba(255, 252, 247, 0.88);
  --glass-strong: rgba(255, 252, 247, 0.94);
  --shadow: 0 8px 32px rgba(30, 26, 23, 0.1);
  --shadow-lg: 0 16px 48px rgba(30, 26, 23, 0.12);
  --shadow-gold: 0 6px 24px rgba(184, 149, 106, 0.2);
  --radius: 4px;
  --radius-lg: 10px;
  --content-max: 1100px;
  --font-serif-en: "Cormorant Garamond", "Times New Roman", serif;
  --font-serif-kr: "Noto Serif KR", "Batang", serif;
  --font-sans: "Outfit", "Apple SD Gothic Neo", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-beige);
}

/* ─── 배경 영상 ─── */
.bg-video {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.bg-video__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.bg-video__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(240, 232, 220, 0.82) 0%,
      rgba(247, 242, 234, 0.78) 40%,
      rgba(247, 242, 234, 0.85) 100%);
  pointer-events: none;
}

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition:
    background 0.45s ease,
    backdrop-filter 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.header--scrolled {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.97) 0%, rgba(247, 242, 234, 0.95) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(184, 149, 106, 0.18);
  box-shadow: 0 4px 28px rgba(30, 26, 23, 0.07);
}

.header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.header__logo {
  width: 180px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(24%) sepia(12%) saturate(800%) hue-rotate(346deg) brightness(95%);
}

.header__nav { display: none; gap: 36px; }

.header__nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.35s ease;
}

.header__nav a:hover { color: var(--gold-dark); }

.header--scrolled .header__nav a {
  color: var(--text-mid);
}

.header--scrolled .header__nav a:hover { color: var(--gold-dark); }

.header__cta {
  display: none;
  position: relative;
  overflow: hidden;
  padding: 13px 28px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  background-image:
    linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.5) 50%, transparent 65%),
    linear-gradient(135deg, var(--gold), var(--gold-dark));
  background-size: 250% 100%, 100% 100%;
  background-position: -150% 0, 0 0;
  animation: btnShineBg 3s ease-in-out infinite, btnGlowPulse 2.6s ease-in-out infinite;
}

.header__cta-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 11px 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
  flex-shrink: 0;
  background-image:
    linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.5) 50%, transparent 65%),
    linear-gradient(135deg, var(--gold), var(--gold-dark));
  background-size: 250% 100%, 100% 100%;
  background-position: -150% 0, 0 0;
  animation: btnShineBg 3s ease-in-out infinite, btnGlowPulse 2.6s ease-in-out infinite;
}

@keyframes btnShineBg {
  0%, 65% { background-position: -150% 0, 0 0; }
  100% { background-position: 250% 0, 0 0; }
}

@keyframes btnGlowPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(184, 149, 106, 0.35); }
  50% { box-shadow: 0 6px 28px rgba(184, 149, 106, 0.55), 0 0 20px rgba(247, 232, 200, 0.35); }
}

/* ─── Page ─── */
.page {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ─── Hero (ver4 동일 사이즈) ─── */
.hero {
  background: transparent;
  overflow: hidden;
}

.hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 48px 32px 32px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.hero__badge::before,
.hero__badge::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero__title-en {
  font-family: var(--font-serif-en);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.02;
  margin-bottom: 16px;
}

.hero__title-kr {
  font-family: var(--font-serif-kr);
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.14em;
  color: var(--text-mid);
  margin-bottom: 10px;
}

.hero__vat {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.hero__model-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 380px;
}

.hero__model {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  object-position: center bottom;
}

.hero__model--cutout {
  filter: drop-shadow(0 16px 40px rgba(30, 26, 23, 0.12));
}

/* ─── Open Strip ─── */
.open-strip {
  text-align: center;
  padding: 48px 32px 44px;
  background: transparent;
}

.open-strip__label {
  font-family: var(--font-serif-en);
  font-size: 13px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.open-strip__title {
  font-family: var(--font-serif-kr);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.open-strip__line {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 20px;
}

.open-strip__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.open-strip__highlight {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 44px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(184, 149, 106, 0.2);
  border-radius: var(--radius-lg);
}

.open-strip__highlight-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.open-strip__highlight-price {
  font-family: var(--font-serif-en);
  font-size: 42px;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}

.open-strip__highlight-price small {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-mid);
}

/* ─── Pricing ─── */
.pricing {
  position: relative;
  padding: 0 24px 72px;
  overflow: visible;
}

.pricing__fx {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  z-index: 20;
  overflow: visible;
}

.pricing__fx--left { left: -12px; }
.pricing__fx--right { right: -12px; }

.pricing-pollen {
  position: absolute;
  top: var(--start-y);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  animation: pollenDrift var(--duration) ease-in-out var(--delay) forwards;
}

.pricing-pollen--left {
  left: 4px;
  --drift-sign: 1;
}

.pricing-pollen--right {
  right: 4px;
  --drift-sign: -1;
}

@keyframes pollenDrift {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(0deg) scale(0.2);
  }
  12% {
    opacity: 0.95;
    transform: translate(calc(var(--drift-sign) * 8px), 20px) rotate(calc(var(--rot) * 0.15)) scale(1);
  }
  50% {
    opacity: 0.85;
    transform: translate(calc(var(--drift-sign) * var(--drift-x) * 0.5), calc(var(--fall-y) * 0.45)) rotate(calc(var(--rot) * 0.5)) scale(0.9);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--drift-sign) * var(--drift-x)), var(--fall-y)) rotate(var(--rot)) scale(0.4);
  }
}

.pricing__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.category {
  position: relative;
  background: var(--glass-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(184, 149, 106, 0.15);
  overflow: hidden;
}

.category__top {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  background: linear-gradient(135deg, rgba(239, 230, 216, 0.98), rgba(245, 237, 227, 0.95));
  border-left: 3px solid var(--gold);
  min-height: 280px;
}

.category__top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top left, rgba(168, 200, 216, 0.1), transparent 70%);
  pointer-events: none;
}

/* 헤더: 타이틀 좌 / AI 누끼 모델 우 (꽉 차게) */
.category__header {
  position: relative;
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
  overflow: visible;
  min-height: auto;
  background: transparent;
  border: none;
  z-index: 1;
}

.category__header-inner {
  display: contents;
}

.category__header-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 16px 28px 28px;
  text-align: left;
}

.category__model-wrap {
  flex-shrink: 0;
  width: 46%;
  max-width: none;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  background: transparent;
  padding: 0;
  margin: 0;
  overflow: visible;
}

.category__model {
  display: block;
  width: auto;
  height: 100%;
  min-height: 270px;
  max-width: 115%;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
}

.category__model--nuki {
  filter: drop-shadow(0 6px 18px rgba(30, 26, 23, 0.12));
}

/* 스크롤 애니메이션: 아래→위 */
[data-animate-child] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate-child].visible {
  opacity: 1;
  transform: translateY(0);
}

.category__items[data-animate-child] .item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.category__items.visible .item {
  opacity: 1;
  transform: translateY(0);
}

.category__items.visible .item:nth-child(1) { transition-delay: 0.08s; }
.category__items.visible .item:nth-child(2) { transition-delay: 0.16s; }
.category__items.visible .item:nth-child(3) { transition-delay: 0.24s; }
.category__items.visible .item:nth-child(4) { transition-delay: 0.32s; }
.category__items.visible .item:nth-child(5) { transition-delay: 0.4s; }
.category__items.visible .item:nth-child(6) { transition-delay: 0.48s; }

.category__num {
  font-family: var(--font-serif-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.category__title-en {
  font-family: var(--font-serif-en);
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.12;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.category__title-kr {
  font-family: var(--font-serif-kr);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}

.category__items {
  list-style: none;
  background: var(--white);
}

.item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(184, 149, 106, 0.1);
  transition: background 0.25s ease;
}

.item:last-child { border-bottom: none; }

.item:hover { background: rgba(247, 242, 234, 0.7); }

.item__name {
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
  color: var(--text-dark);
}

.item__price {
  font-family: var(--font-serif-en);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: 1.3;
  position: relative;
}

.item__price::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 6px;
  background: rgba(184, 149, 106, 0.14);
  z-index: -1;
}

.item__price small {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-left: 1px;
}

.category__note {
  padding: 14px 28px;
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.7;
  background: rgba(168, 200, 216, 0.08);
  border-top: 1px solid rgba(168, 200, 216, 0.15);
}

/* ─── Terms ─── */
.terms {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 28px 32px;
  background: var(--glass-strong);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 149, 106, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.terms__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.terms__text {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ─── CTA (모바일용) ─── */
.cta-section {
  padding: 64px 32px 140px;
  text-align: center;
}

.cta-section__actions { /* 모바일에서만 표시 */ }

.cta-section__title {
  font-family: var(--font-serif-kr);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.cta-section__sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 36px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 28px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn:active { transform: scale(0.98); }

.cta-btn--kakao {
  background: #fee500;
  color: #3c1e1e;
  box-shadow: 0 4px 20px rgba(254, 229, 0, 0.35);
}

.cta-btn--phone {
  background: var(--text-dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30, 26, 23, 0.25);
}

.cta-btn--reserve {
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.cta-btn--reserve,
.sticky-bar a:last-child {
  background-image:
    linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.5) 50%, transparent 65%),
    linear-gradient(135deg, var(--gold), var(--gold-dark));
  background-size: 250% 100%, 100% 100%;
  background-position: -150% 0, 0 0;
  animation: btnShineBg 3s ease-in-out infinite, btnGlowPulse 2.6s ease-in-out infinite;
}

.cta-btn--map {
  background: var(--glass-strong);
  color: var(--text-mid);
  border: 1px solid rgba(92, 83, 73, 0.2);
  backdrop-filter: blur(8px);
}

.cta-btn__icon { font-size: 20px; }

.clinic-info {
  padding-top: 32px;
  border-top: 1px solid rgba(184, 149, 106, 0.2);
  max-width: 400px;
  margin: 0 auto;
}

.clinic-info__logo {
  width: 110px;
  margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(24%) sepia(12%) saturate(800%) hue-rotate(346deg) brightness(95%);
}

.clinic-info__name {
  font-family: var(--font-serif-kr);
  font-size: 17px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.clinic-info__name-en {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.clinic-info__detail {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.9;
}

/* ─── Sticky Bar ─── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  background: rgba(30, 26, 23, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184, 149, 106, 0.2);
}

.sticky-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.06em;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.sticky-bar a:last-child {
  border-right: none;
  color: var(--white);
  font-weight: 600;
}

.sticky-bar__icon { font-size: 20px; }

/* ─── PC 퀵메뉴 (우측 고정) ─── */
.quick-menu {
  display: none;
}

@media (min-width: 768px) {
  .quick-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9990;
    width: 72px;
    padding: 16px 0;
    background: rgba(255, 252, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(184, 149, 106, 0.22);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(30, 26, 23, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  }

  .quick-menu__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px 14px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(184, 149, 106, 0.15);
  }

  .quick-menu__logo {
    width: 58px;
    height: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(24%) sepia(12%) saturate(800%) hue-rotate(346deg) brightness(95%);
  }

  .quick-menu__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 8px;
    text-decoration: none;
    color: var(--text-mid);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    border-bottom: 1px solid rgba(184, 149, 106, 0.08);
  }

  .quick-menu__item:last-child { border-bottom: none; }

  .quick-menu__item:hover {
    background: rgba(184, 149, 106, 0.08);
    color: var(--gold-dark);
    transform: translateX(-2px);
  }

  .quick-menu__icon {
    font-size: 20px;
    line-height: 1;
  }

  .quick-menu__label {
    line-height: 1.2;
    text-align: center;
  }

  .quick-menu__item--kakao:hover { color: #3c1e1e; background: rgba(254, 229, 0, 0.25); }
  .quick-menu__item--phone:hover { color: var(--text-dark); }
  .quick-menu__item--reserve {
    color: var(--white);
    margin: 8px 6px 4px;
    border-radius: 4px;
    border-bottom: none;
    padding: 18px 6px;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    background-image:
      linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.5) 50%, transparent 65%),
      linear-gradient(135deg, var(--gold), var(--gold-dark));
    background-size: 250% 100%, 100% 100%;
    background-position: -150% 0, 0 0;
    animation: btnShineBg 3s ease-in-out infinite, btnGlowPulse 2.6s ease-in-out infinite;
  }

  .quick-menu__item--reserve:hover {
    background: linear-gradient(135deg, #c9a87a, var(--gold-dark));
    color: var(--white);
    transform: translateX(-2px) scale(1.02);
  }

  .quick-menu__item--reserve .quick-menu__label { color: var(--white); }

  /* PC: 하단 CTA 버튼 영역 숨김 */
  .cta-section__actions { display: none; }
  .cta-section { padding: 48px 32px 80px; }

  body { padding-right: 0; }
}

/* ─── 최초 로딩 축하 ─── */
.celebration {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 242, 234, 0.55);
  backdrop-filter: blur(4px);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.celebration--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.celebration__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.celebration__message {
  position: relative;
  z-index: 1;
  text-align: center;
  animation: celebrationPop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.celebration__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.celebration__title {
  font-family: var(--font-serif-kr);
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.celebration__sub {
  font-family: var(--font-serif-kr);
  font-size: clamp(16px, 3.5vw, 22px);
  letter-spacing: 0.12em;
  color: var(--gold-dark);
}

@keyframes celebrationPop {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

body.celebration-active { overflow: hidden; }
body.celebration-active .page { pointer-events: none; }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__badge { animation: fadeUp 0.8s ease 0.1s both; }
.hero__title-en { animation: fadeUp 0.8s ease 0.2s both; }
.hero__title-kr { animation: fadeUp 0.8s ease 0.3s both; }
.hero__vat { animation: fadeUp 0.8s ease 0.4s both; }

/* ─── PC 홈페이지형 ─── */
@media (min-width: 768px) {
  .header__nav { display: flex; gap: 44px; }
  .header__nav a { font-size: 17px; letter-spacing: 0.1em; }
  .header__cta { display: inline-block; }
  .header__logo { width: 240px; }

  .header__inner { min-height: 76px; padding: 14px 48px; }

  .header__cta {
    padding: 14px 32px;
    font-size: 16px;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 56px 48px 40px;
    align-items: center;
  }

  .hero__content { padding-bottom: 0; }

  .hero__model-wrap {
    min-height: 520px;
    align-items: center;
    justify-content: flex-end;
  }

  .hero__model--cutout { max-height: 580px; }

  .pricing { padding: 0 48px 88px; overflow: visible; }

  .pricing__fx {
    width: 140px;
  }

  .pricing__fx--left { left: -20px; }
  .pricing__fx--right { right: -20px; }

  .pricing__inner {
    max-width: 720px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .category__top { min-height: 300px; }

  .category__header-text {
    padding: 32px 20px 32px 32px;
  }

  .category__title-en { font-size: 38px; }
  .category__title-kr { font-size: 20px; }
  .category__num { font-size: 14px; }

  .category__model-wrap {
    width: 48%;
    min-height: 300px;
  }

  .category__model {
    min-height: 290px;
    max-width: 120%;
  }

  .header__cta-mobile { display: none; }

  .item__price { font-size: 26px; }

  .sticky-bar { display: none; }
}

/* ─── 모바일 ─── */
@media (max-width: 767px) {
  .header__inner { padding: 10px 16px 10px 6px; min-height: 60px; gap: 12px; }
  .header__logo { width: 168px; margin-left: -2px; }

  .header__cta-mobile {
    padding: 12px 22px;
    font-size: 14px;
  }

  .hero__inner {
    padding: 28px 20px 20px;
    text-align: center;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 16px;
  }

  .hero__badge {
    justify-content: center;
  }

  .hero__title-en,
  .hero__title-kr,
  .hero__vat {
    text-align: center;
  }

  .hero__model-wrap { min-height: 300px; }
  .hero__model--cutout { max-height: 380px; }

  .open-strip { padding: 36px 20px 32px; }
  .pricing { padding: 0 16px 60px; }

  .pricing__inner { gap: 28px; }

  .pricing__fx { width: 64px; }
  .pricing__fx--left { left: -8px; }
  .pricing__fx--right { right: -8px; }

  /* 가격표: 타이틀 위 → 모델(크게) → 가격 리스트 */
  .category__top {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    border-left: none;
    border-top: 3px solid var(--gold);
    padding-bottom: 0;
  }

  .category__header {
    order: 1;
    padding: 0;
  }

  .category__header-text {
    padding: 14px 16px 6px;
    text-align: center;
    align-items: center;
  }

  .category__title-en { font-size: clamp(32px, 8vw, 36px); margin-bottom: 4px; }
  .category__title-kr { font-size: 17px; }
  .category__num { font-size: 13px; margin-bottom: 6px; }

  .category__model-wrap {
    order: 2;
    width: 100%;
    max-width: none;
    min-height: auto;
    margin: 0;
    padding: 0 8px 2px;
    align-items: flex-end;
  }

  .category__model {
    min-height: unset;
    max-height: 300px;
    max-width: 110%;
    width: auto;
    height: auto;
  }

  .category__items {
    order: 3;
  }

  .item { padding: 18px 20px; }
  .item__price { font-size: 22px; }

  .terms { margin: 0 16px 40px; padding: 24px; }
  .cta-section { padding: 48px 20px 130px; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-video__player { display: none; }
  .bg-video { background: var(--bg-beige) url("assets/ver7/bg-water-luxury-1.png") center / cover no-repeat fixed; }
  [data-animate-child] { opacity: 1; transform: none; transition: none; }
  .category__items[data-animate-child] .item { opacity: 1; transform: none; }
  .celebration { display: none; }
  .pricing-pollen { animation: none; opacity: 0; }
  .header__cta,
  .header__cta-mobile,
  .cta-btn--reserve,
  .sticky-bar a:last-child,
  .quick-menu__item--reserve {
    animation: none;
    background-image: linear-gradient(135deg, var(--gold), var(--gold-dark));
    background-size: 100% 100%;
    background-position: 0 0;
  }
  .modal__dialog { animation: none; }
}

/* ─── 예약 / 개인정보 모달 ─── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal--privacy { z-index: 20100; }

.modal--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 23, 0.55);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 28px 28px;
  background: var(--glass-strong);
  border: 1px solid rgba(184, 149, 106, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.35s ease both;
}

.modal--open .modal__dialog {
  animation: modalIn 0.35s ease both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(184, 149, 106, 0.12);
  color: var(--text-mid);
  font-size: 24px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal__close:hover {
  background: rgba(184, 149, 106, 0.22);
  color: var(--text-dark);
}

.modal__label {
  font-family: var(--font-serif-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.modal__title {
  font-family: var(--font-serif-kr);
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.modal__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal__field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.modal__input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid rgba(184, 149, 106, 0.25);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modal__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.15);
}

.modal__input::placeholder { color: var(--text-light); }

.modal__agree { margin-top: 4px; }

.modal__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mid);
}

.modal__checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.modal__checkbox-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 1.5px solid rgba(184, 149, 106, 0.5);
  border-radius: 3px;
  background: var(--white);
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}

.modal__checkbox input:checked + .modal__checkbox-box {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold-dark);
}

.modal__checkbox input:checked + .modal__checkbox-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.modal__link {
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-weight: 500;
}

.modal__link:hover { color: var(--gold); }

.modal__submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  cursor: pointer;
  background-image:
    linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.5) 50%, transparent 65%),
    linear-gradient(135deg, var(--gold), var(--gold-dark));
  background-size: 250% 100%, 100% 100%;
  background-position: -150% 0, 0 0;
  animation: btnShineBg 3s ease-in-out infinite, btnGlowPulse 2.6s ease-in-out infinite;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s;
}

.modal__submit:active { transform: scale(0.98); }

.modal__submit--secondary {
  margin-top: 20px;
  animation: btnShineBg 3s ease-in-out infinite, btnGlowPulse 2.6s ease-in-out infinite;
}

.modal__dialog--privacy { max-width: 480px; }

.modal__privacy-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.85;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 4px;
}

.modal__privacy-body strong {
  color: var(--text-dark);
  font-weight: 600;
}

body.modal-open { overflow: hidden; }

@media (max-width: 767px) {
  .modal { padding: 16px; align-items: flex-end; }
  .modal__dialog {
    max-height: 88vh;
    padding: 32px 20px 24px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
