/* ============================================================
   Beauty Palace – Main Stylesheet
   Colors: Ivory, Champagne Gold, Beige, Soft Pink, Brown
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --ivory:       #FAF7F2;
  --ivory-dark:  #F2EDE4;
  --champagne:   #C9A96E;
  --champagne-light: #E8D4AC;
  --champagne-dark:  #A07840;
  --gold:        #B8976A;
  --gold-light:  #D4B896;
  --beige:       #E8DDD0;
  --beige-dark:  #C8B89A;
  --soft-pink:   #F0D6D6;
  --pink-mid:    #E4B8B8;
  --pink-deep:   #C49090;
  --brown:       #6B4C3B;
  --brown-light: #9B7B6A;
  --brown-dark:  #3D2B1F;
  --white:       #FFFFFF;
  --text-dark:   #2C1F17;
  --text-mid:    #5A3E32;
  --text-light:  #8B6B5A;
  --text-muted:  #A89080;

  --font-ko: 'Noto Sans KR', sans-serif;
  --font-serif-ko: 'Noto Serif KR', serif;
  --font-en: 'Cormorant Garamond', serif;
  --font-display: 'Playfair Display', serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;

  --shadow-sm:  0 2px 12px rgba(107, 76, 59, 0.08);
  --shadow-md:  0 6px 24px rgba(107, 76, 59, 0.12);
  --shadow-lg:  0 12px 48px rgba(107, 76, 59, 0.16);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

/* ── Image fit helpers ── */
.hero-bg img,
.about-img-main img,
.about-img-accent img,
.gallery-item img,
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero — 한복 세로 인물사진, 얼굴 포커스 */
.hero-bg img {
  object-position: center 30%;
}

/* About 메인 — 화장대 사진, 중앙 */
.about-img-main img {
  object-position: center center;
  border-radius: inherit;
}

/* About 액센트 — 리셉션, 중앙 */
.about-img-accent img {
  object-position: center center;
  border-radius: inherit;
}

/* 커플 패키지 — 전신 사진, 인물 하단 중심 */
.service-card:nth-child(5) .service-img img {
  object-position: center 60%;
}
/* 메이크업+헤어스타일링 — 세로형 인물사진, 얼굴 상단 포커스 */
.service-card:nth-child(4) .service-img img {
  object-position: center 15%;
}
/* 메이크업 국가자격증 클래스 — 재료 플랫레이, 정중앙 (기존 7→6) */
.service-card:nth-child(6) .service-img img {
  object-position: center center;
}
/* 1:1 셀프 메이크업 클래스 — 현장 사진, 상단 얼굴 포커스 (기존 8→7) */
.service-card:nth-child(7) .service-img img {
  object-position: center 20%;
}
/* 퍼스널컬러 진단 — 드레이프 가로 사진, 중앙 */
.service-card:nth-child(8) .service-img img {
  object-position: center center;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item[data-category="makeup"] img,
.gallery-item[data-category="hanbok"] img {
  object-position: center 12%;
}
.gallery-item[data-category="hair"] img {
  object-position: center 10%;
}
.gallery-item[data-category="interior"] img {
  object-position: center center;
}

/* CTA 배경 — 경복궁 한복, 인물 중앙 */
.cta-bg img {
  object-position: center 30%;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ko);
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Padding ── */
.section-pad { padding: 100px 0; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 60px; }

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--champagne);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-serif-ko);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ── Gold Divider ── */
.gold-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne-light), var(--champagne), var(--champagne-light));
  border-radius: 2px;
  margin-top: 8px;
}
.gold-divider.center { margin: 8px auto 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-ko);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--champagne-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(176, 120, 64, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--champagne-dark) 0%, var(--brown) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176, 120, 64, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--champagne);
  color: var(--champagne-dark);
}
.btn-outline:hover {
  background: var(--champagne);
  color: var(--white);
  transform: translateY(-2px);
}

/* 히어로 섹션 — 어두운 배경 위에서 잘 보이도록 아이보리 배경 */
.hero-cta .btn-outline {
  background: rgba(253, 248, 235, 0.92);
  border-color: rgba(201, 169, 110, 0.8);
  color: #4a3520;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 600;
}
.hero-cta .btn-outline:hover {
  background: rgba(253, 248, 235, 1);
  border-color: var(--champagne);
  color: #2e1f0e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* 히어로 샵 버튼 */
.btn-hero-shop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(3, 199, 90, 0.92);
  color: #fff !important;
  border: 1.5px solid rgba(3, 199, 90, 0.6);
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-hero-shop::before {
  content: '';
  position: absolute;
  top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shopShineHero 3s ease-in-out infinite;
}
@keyframes shopShineHero {
  0% { left: -75%; }
  60%, 100% { left: 125%; }
}
.btn-hero-shop:hover {
  background: #02b050;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(3, 199, 90, 0.45);
}
.btn-hero-shop span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.btn-hero-shop-sub {
  font-size: 0.62rem !important;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.03em;
  line-height: 1;
}
/* 모바일에서 전폭 */
@media (max-width: 768px) {
  .btn-hero-shop {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.btn-outline.btn-light {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline.btn-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-kakao {
  background: #FEE500;
  color: #3A1D1D;
}
.btn-kakao:hover {
  background: #F5DB00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254, 229, 0, 0.4);
}

/* ── PayPal 버튼 (인라인 btn 버전) ── */
.btn-paypal {
  background: linear-gradient(135deg, #003087 0%, #009cde 100%);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 48, 135, 0.4);
  animation: paypalGlow 2.8s ease-in-out infinite;
  border: none;
  min-width: 260px;
  justify-content: center;
}
.btn-paypal::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: paypalShine 2.8s ease-in-out infinite;
}
@keyframes paypalGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 48, 135, 0.4); }
  50%       { box-shadow: 0 8px 32px rgba(0, 156, 222, 0.65); }
}
@keyframes paypalShine {
  0%   { left: -75%; }
  60%, 100% { left: 125%; }
}
.btn-paypal:hover {
  background: linear-gradient(135deg, #002070, #007bb5);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 48, 135, 0.55);
  color: #fff !important;
}
.btn-paypal:active { transform: translateY(-1px); }

/* 인라인 btn 안의 요소 */
.paypal-inline-flag {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}
.paypal-inline-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.paypal-inline-main {
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
/* 작은 서브텍스트 */
.paypal-sub {
  font-size: 0.62rem;
  font-weight: 500;
  opacity: 0.85;
  display: block;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-top: 1px;
}
.paypal-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  fill: #fff;
}


/* ══════════════════════════════════════════════
   CONTACT SECTION — PayPal 외국인 결제 블록 (전면 업그레이드)
══════════════════════════════════════════════ */
.paypal-block {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  border: 2.5px solid #009cde;
  background: linear-gradient(145deg, #edf6ff, #ddeefa);
  padding: 28px 28px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 100, 200, 0.12);
}
/* 우상단 대각선 리본 */
.paypal-block::after {
  content: 'INTERNATIONAL';
  position: absolute;
  top: 18px; right: -32px;
  background: linear-gradient(135deg, #003087, #009cde);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 5px 48px;
  transform: rotate(35deg);
  box-shadow: 0 2px 10px rgba(0,48,135,0.35);
}

/* 언어 배지 행 */
.paypal-lang-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.paypal-lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(0, 48, 135, 0.25);
  background: rgba(255,255,255,0.7);
  color: #003087;
}
.paypal-lang-badge--en { border-color: #003087; }
.paypal-lang-badge--zh { border-color: #c00; color: #b00; }
.paypal-lang-badge--ja { border-color: #c00; color: #b00; }

/* 헤더 */
.paypal-block-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.paypal-block-flag {
  font-size: 2.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.paypal-block-title {
  display: block;
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 800;
  color: #003087;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.paypal-block-subtitle {
  font-size: 0.82rem;
  color: #005090;
  font-weight: 500;
}

/* 다국어 설명 */
.paypal-desc-multi {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.paypal-desc-en,
.paypal-desc-zh,
.paypal-desc-ja {
  font-size: 0.83rem;
  line-height: 1.65;
  padding: 8px 12px;
  border-radius: 8px;
  border-left: 3px solid;
}
.paypal-desc-en {
  color: #002a5e;
  background: rgba(0, 48, 135, 0.06);
  border-color: #003087;
  font-family: var(--font-en);
}
.paypal-desc-zh {
  color: #5a1a00;
  background: rgba(200, 50, 0, 0.05);
  border-color: #c83200;
}
.paypal-desc-ja {
  color: #3a0a1a;
  background: rgba(150, 0, 30, 0.05);
  border-color: #96001e;
}

/* 메인 PayPal 버튼 (큰 버튼) */
.btn-paypal-main {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: linear-gradient(135deg, #003087 0%, #0070ba 50%, #009cde 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 28px rgba(0, 48, 135, 0.4);
  animation: paypalGlow 2.8s ease-in-out infinite;
  border: 2px solid rgba(255,255,255,0.15);
}
.btn-paypal-main::before {
  content: '';
  position: absolute;
  top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: paypalShine 2.8s ease-in-out infinite;
}
.btn-paypal-main:hover {
  background: linear-gradient(135deg, #002070, #005a95, #007bb5);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 48, 135, 0.55);
  color: #fff;
}
.btn-paypal-main:active { transform: translateY(-1px); }

.paypal-logo-svg {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
.paypal-btn-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.paypal-btn-main {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}
.paypal-btn-sub {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.06em;
  font-family: var(--font-en);
}
/* 화살표 원형 래퍼 */
.paypal-btn-arrow-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.paypal-btn-arrow {
  font-size: 0.9rem;
  color: #fff;
  transition: transform 0.3s ease;
}
.btn-paypal-main:hover .paypal-btn-arrow-wrap {
  background: rgba(255,255,255,0.28);
}
.btn-paypal-main:hover .paypal-btn-arrow {
  transform: translateX(3px);
}

/* 신뢰 배지 행 */
.paypal-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.paypal-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #004a8f;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0, 80, 160, 0.2);
  border-radius: 20px;
  padding: 5px 12px;
}
.paypal-trust-item i {
  color: #0070ba;
  font-size: 0.7rem;
}

/* 하단 보안 안내 (레거시 클래스 호환) */
.paypal-block-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.75rem;
  color: #005090;
  justify-content: center;
  font-family: var(--font-en);
}
.paypal-block-note i { color: #009cde; }

/* 레거시 퍼파일 클래스 호환 */
.paypal-block-desc {
  font-size: 0.88rem;
  color: #004080;
  line-height: 1.7;
  margin-bottom: 20px;
}
.paypal-block-desc-ko {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* 대형 화면 추가 상항 */
@media (min-width: 769px) {
  .btn-paypal--inline {
    min-width: 300px;
  }
}

/* 모바일 응답형 — 크게! */
@media (max-width: 768px) {
  .btn-paypal {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 1rem;
    min-width: unset;
    border-radius: 14px;
  }
  .paypal-inline-main { font-size: 1rem; }
  .paypal-sub { font-size: 0.65rem; }

  .btn-paypal-main {
    padding: 22px 20px;
    border-radius: 14px;
    gap: 14px;
  }
  .paypal-btn-main { font-size: 1.1rem; }
  .paypal-btn-sub { font-size: 0.7rem; }
  .paypal-logo-svg { width: 66px; }
  .paypal-block { padding: 24px 20px 20px; }
  .paypal-block-title { font-size: 1.05rem; }
  .paypal-block-flag { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .btn-paypal {
    padding: 18px 16px;
    border-radius: 12px;
  }
  .paypal-inline-main { font-size: 1.05rem; }
  .paypal-inline-flag { font-size: 1.5rem; }

  .paypal-logo-svg { width: 58px; }
  .paypal-btn-main { font-size: 1.05rem; }
  .paypal-btn-sub { font-size: 0.68rem; }
  .paypal-block { padding: 20px 16px 18px; }
  .paypal-lang-badges { gap: 6px; }
  .paypal-lang-badge { font-size: 0.68rem; padding: 3px 8px; }
  .paypal-trust-row { gap: 8px; }
  .paypal-trust-item { font-size: 0.68rem; padding: 4px 10px; }
  .paypal-btn-arrow-wrap { width: 32px; height: 32px; }
  .paypal-desc-en, .paypal-desc-zh, .paypal-desc-ja { font-size: 0.79rem; }
  .paypal-block-desc { font-size: 0.83rem; }
}

.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(107, 76, 59, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-family: var(--font-ko);
  font-size: 0.65rem;
  color: var(--champagne);
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-top: 2px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-ko);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  padding: 4px 6px;
  border-radius: 4px;
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.lang-btn:hover, .lang-btn.active {
  color: var(--champagne-dark);
  background: var(--champagne-light);
}
.lang-divider { color: var(--beige-dark); font-size: 0.65rem; }

/* Desktop Nav */
.desktop-nav { display: flex; }
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.desktop-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.desktop-nav a:hover { color: var(--champagne-dark); background: var(--champagne-light); }
.desktop-nav .nav-reserve-btn {
  background: linear-gradient(135deg, var(--champagne), var(--champagne-dark));
  color: var(--white) !important;
  font-weight: 600;
}
.desktop-nav .nav-reserve-btn:hover {
  background: linear-gradient(135deg, var(--champagne-dark), var(--brown));
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--beige);
  padding: 20px 24px 28px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--champagne-light); color: var(--champagne-dark); }
.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--beige);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--beige);
  overflow: hidden;
}

.hero-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: var(--beige-dark);
  background: linear-gradient(135deg, #EDE4D8 0%, #D8CCC0 50%, #C8B89A 100%);
}
.hero-placeholder i { font-size: 4rem; opacity: 0.4; }
.hero-placeholder span { font-size: 0.85rem; text-align: center; opacity: 0.6; line-height: 1.6; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 5, 2, 0.15) 0%,
    rgba(10, 5, 2, 0.10) 40%,
    rgba(10, 5, 2, 0.55) 72%,
    rgba(10, 5, 2, 0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px 24px 72px;
  max-width: 760px;
  margin-top: auto;
}

.hero-eyebrow {
  font-family: var(--font-ko);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--champagne-light);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-serif-ko);
  font-size: clamp(1.9rem, 5.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero-title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--champagne-light);
}

.hero-subtitle {
  font-family: var(--font-en);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  padding: 5px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--champagne-light);
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

/* Hero Scroll Down */
.hero-scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 44%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Image Placeholder */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--ivory-dark) 0%, var(--beige) 100%);
  color: var(--beige-dark);
  width: 100%; height: 100%;
  border-radius: inherit;
  border: 2px dashed var(--beige-dark);
  cursor: pointer;
  min-height: 180px;
  transition: var(--transition);
}
.img-placeholder:hover { border-color: var(--champagne); }
.img-placeholder i { font-size: 2.5rem; opacity: 0.45; }
.img-placeholder span { font-size: 0.75rem; text-align: center; opacity: 0.6; line-height: 1.5; padding: 0 8px; }

/* About Text */
.about-text { padding: 16px 0; }

.about-text .section-eyebrow { margin-bottom: 8px; }
.about-text .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); text-align: left; }
.about-text .gold-divider { margin: 12px 0 24px; }

.about-desc {
  font-size: 0.93rem;
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.85;
}
.about-desc strong { color: var(--brown-dark); font-weight: 600; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--ivory);
  border-radius: var(--radius-md);
  border: 1px solid var(--beige);
}
.feature-item i {
  color: var(--champagne);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 2px;
}
.feature-item span {
  font-size: 0.73rem;
  color: var(--text-light);
}


/* ============================================================
   DIRECTOR SECTION (About 하위)
   ============================================================ */
.director-section {
  margin-top: 80px;
  padding-top: 72px;
  border-top: 1px solid var(--beige);
}

/* 상단: 소개 텍스트 + 프로필 사진 */
.director-header {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
  margin-bottom: 60px;
}

.director-title-block { }

.director-name {
  font-family: var(--font-serif-ko);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin: 6px 0 4px;
}

.director-name-en {
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: var(--champagne-dark);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-style: italic;
}

.director-intro {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-top: 18px;
}
.director-intro strong { color: var(--brown-dark); font-weight: 700; }

.director-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  border: 4px solid var(--champagne-light);
}
.director-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* 이력 카드 3열 */
.director-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.director-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,169,110,0.18);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.director-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.director-card--broadcast::before { background: linear-gradient(90deg, #C9A96E, #E8C98A); }
.director-card--career::before    { background: linear-gradient(90deg, #C49090, #E4B8B8); }
.director-card--edu::before       { background: linear-gradient(90deg, #9B7B6A, #C9A96E); }

.director-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--champagne-light);
}

.director-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.director-card--broadcast .director-card-icon { background: linear-gradient(135deg, #FDF3E0, #E8D4AC); color: var(--champagne-dark); }
.director-card--career .director-card-icon    { background: linear-gradient(135deg, #FDE8E8, #E4B8B8); color: var(--pink-deep); }
.director-card--edu .director-card-icon       { background: linear-gradient(135deg, #F0EAE4, #D4B896); color: var(--brown); }

.director-card-title {
  font-family: var(--font-serif-ko);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 2px;
}
.director-card-sub {
  font-size: 0.72rem;
  color: var(--champagne-dark);
  letter-spacing: 0.07em;
  font-style: italic;
  margin-bottom: 18px;
}

.director-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.director-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.director-list li i {
  font-size: 0.6rem;
  color: var(--champagne);
  margin-top: 5px;
  flex-shrink: 0;
}
.director-list li em { font-style: italic; color: var(--text-dark); }
.director-list li strong { color: var(--brown-dark); font-weight: 700; }

.director-card-badge {
  margin-top: 16px;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--soft-pink), #FAF0F0);
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  color: var(--pink-deep);
  font-weight: 600;
  letter-spacing: 0.03em;
}
.director-card-badge i { margin-right: 4px; }

/* 인용 강조 문구 */
.director-quote {
  text-align: center;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--ivory-dark) 0%, #FDF6EC 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--champagne-light);
  margin-bottom: 40px;
  position: relative;
}
.director-quote i {
  color: var(--champagne-light);
  font-size: 1.2rem;
}
.director-quote i.fa-quote-left  { margin-right: 10px; vertical-align: top; }
.director-quote i.fa-quote-right { margin-left: 10px; vertical-align: bottom; }
.director-quote p {
  display: inline;
  font-size: 1.0rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-family: var(--font-serif-ko);
}
.director-quote p strong {
  color: var(--brown-dark);
  font-weight: 700;
}

.director-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 반응형 */
@media (max-width: 1024px) {
  .director-header { grid-template-columns: 1fr 260px; gap: 36px; }
  .director-cards { grid-template-columns: 1fr 1fr; }
  .director-card:last-child { grid-column: span 2; }
}
@media (max-width: 768px) {
  .director-header { grid-template-columns: 1fr; gap: 32px; }
  .director-photo { max-width: 260px; margin: 0 auto; }
  .director-cards { grid-template-columns: 1fr; }
  .director-card:last-child { grid-column: span 1; }
  .director-quote { padding: 24px 20px; }
  .director-quote p { font-size: 0.9rem; }
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-dark) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--champagne-light);
}

.service-card--highlight {
  border-color: var(--champagne);
  background: linear-gradient(160deg, var(--white) 60%, #FDF8F0 100%);
}

.service-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--champagne-light), var(--champagne));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 20px 20px 0;
  flex-shrink: 0;
}
.service-icon i { color: var(--white); font-size: 1.1rem; }

.service-img {
  /* 정사각형 프레임 */
  aspect-ratio: 1 / 1;
  margin: 14px 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.05);
}
.service-img .img-placeholder {
  height: 100%;
  min-height: unset;
  border-radius: var(--radius-md);
}
.service-img .img-placeholder i { font-size: 1.6rem; }

.service-body { padding: 0 20px 24px; flex: 1; }

.service-title {
  font-family: var(--font-serif-ko);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 4px;
  line-height: 1.4;
}

.service-en {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--champagne);
  font-style: italic;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.service-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ── 메이크업 클래스 카드 특별 스타일 ── */
.service-card--class {
  position: relative;
}
.service-card--class::before {
  content: '🔥 특가 진행 중';
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #c9a96e, #a07840);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(160,120,64,0.35);
}

.service-class-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
  align-items: center;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #fff0e0, #ffe0c0);
  color: #9a5c00;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid #f0c080;
}
.promo-badge i { color: #e05a00; }
.promo-badge strong { color: #c0340a; font-size: 0.88rem; }

.promo-tag {
  display: inline-block;
  background: #f8f4ef;
  color: #7a5c3a;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 20px;
  border: 1px solid #e0d0be;
}

.btn-more-class {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #c9a96e 0%, #a07840 100%);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 24px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  margin-top: 4px;
  box-shadow: 0 3px 12px rgba(160,120,64,0.35);
  width: fit-content;
}
.btn-more-class:hover {
  background: linear-gradient(135deg, #a07840 0%, #7a5c2e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(160,120,64,0.45);
  color: #fff !important;
}
.btn-more-class i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.btn-more-class:hover i {
  transform: translateX(3px);
}

.section-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   PRICE SECTION
   ============================================================ */
.price-section { background: var(--white); }

/* ── Price Tabs ── */
.price-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.price-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid var(--beige-dark);
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-ko);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.price-tab i { font-size: 0.85rem; }
.price-tab:hover {
  border-color: var(--champagne);
  color: var(--champagne-dark);
}
.price-tab.active {
  background: linear-gradient(135deg, var(--champagne), var(--champagne-dark));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(176, 120, 64, 0.3);
}

/* ── Price Panels ── */
.price-panel {
  display: none;
  animation: fadeInUp 0.35s ease forwards;
}
.price-panel.active { display: block; }

/* ── Wedding Badge ── */
.price-wedding-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--soft-pink), #F4CCCC);
  border-radius: 50px;
  color: var(--pink-deep);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.price-wedding-badge i { font-size: 0.8rem; }

.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--beige);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 560px;
}

.price-table thead tr {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
}
.price-table thead th {
  padding: 18px 20px;
  font-family: var(--font-ko);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--champagne-light);
  text-align: left;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-table thead th:nth-child(3),
.price-table thead th:nth-child(4) { text-align: right; }

.price-table tbody tr {
  border-bottom: 1px solid var(--ivory-dark);
  transition: background var(--transition);
}
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--ivory); }

.price-table td {
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.service-name {
  font-weight: 600;
  color: var(--brown-dark) !important;
  font-size: 0.9rem !important;
}
.service-name-en {
  font-family: var(--font-en);
  color: var(--text-light) !important;
  font-size: 0.83rem !important;
}
.price-krw {
  text-align: right;
  font-weight: 700;
  color: var(--champagne-dark) !important;
  font-size: 0.95rem !important;
  white-space: nowrap;
}
.price-usd {
  text-align: right;
  color: var(--text-muted) !important;
  font-family: var(--font-en);
  font-size: 0.85rem !important;
  white-space: nowrap;
}

.price-row--highlight {
  background: linear-gradient(90deg, #FDF8F0, var(--white)) !important;
}
.price-row--highlight .service-name { color: var(--champagne-dark) !important; }

.price-row--special { background: var(--ivory) !important; }
.price-row--special td { color: var(--text-muted) !important; font-style: italic; }

/* ── 퍼스널컬러&클래스 탭 강조 ── */
.price-tab--class {
  border-color: #a07840;
  color: #7a5c2e;
}
.price-tab--class:hover {
  background: linear-gradient(135deg, #fff8ee, #ffefd8);
  border-color: #c9a96e;
}
.price-tab--class.active {
  background: linear-gradient(135deg, #a07840, #7a5c2e);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(120, 80, 32, 0.35);
}

/* ── 퍼스널컬러 & 클래스 패널 레이아웃 ── */
.price-class-block {
  margin-bottom: 32px;
}
.price-class-block:last-child { margin-bottom: 0; }

/* 서브섹션 헤더 */
.price-class-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin-bottom: 0;
}
.price-class-header--color {
  background: linear-gradient(135deg, #f3e8ff, #ead4fb);
  border: 1px solid #d8b4fe;
  border-bottom: none;
}
.price-class-header--self {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  border: 1px solid #7dd3fc;
  border-bottom: none;
}
.price-class-header--cert {
  background: linear-gradient(135deg, #fff0d8, #ffe0b0);
  border: 1px solid #f0c060;
  border-bottom: none;
}

.price-class-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.price-class-header--color .price-class-header-icon {
  background: #9333ea;
  color: #fff;
}
.price-class-header--self .price-class-header-icon {
  background: #0284c7;
  color: #fff;
}
.price-class-header--cert .price-class-header-icon {
  background: linear-gradient(135deg, #c9a96e, #a07840);
  color: #fff;
}

.price-class-header-title {
  font-family: var(--font-serif-ko);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 2px;
}
.price-class-header-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  font-family: var(--font-en);
}

/* 헤더 붙은 테이블 래퍼 */
.price-class-block .price-table-wrap {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border-top: none;
}

/* 할인 행 스타일 */
.price-row--sale {
  background: linear-gradient(90deg, #fffbeb, #fff8f0) !important;
}
.price-row--sale .service-name { color: var(--brown-dark) !important; }

/* 자격증 과정 태그 */
.price-cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 7px;
}
.cert-tag {
  display: inline-block;
  background: linear-gradient(135deg, #fff0d8, #ffe0b0);
  color: #7a5000;
  border: 1px solid #f0c060;
  font-size: 0.69rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.01em;
}

/* 정가/할인가 컬럼 */
.price-krw--original {
  text-align: right;
  font-size: 0.88rem !important;
  color: var(--text-muted) !important;
  font-weight: 500 !important;
  white-space: nowrap;
}
.price-krw--original s {
  text-decoration-color: #c0a0a0;
}
.price-krw--sale {
  text-align: right;
  white-space: nowrap;
}
.price-krw--sale strong {
  display: block;
  font-size: 1.05rem;
  color: #c0340a;
}
.sale-badge {
  display: inline-block;
  background: #c0340a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* 자격증 클래스 CTA 버튼 */
.price-class-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* 셀프 메이크업 클래스 서비스카드 */
.service-card--self-class::before {
  content: '✦ 1:1 레슨';
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
}
/* 셀프클래스 배지 색상 변형 */
.promo-badge--teal {
  background: linear-gradient(135deg, #e0f2fe, #bae6fd) !important;
  color: #075985 !important;
  border-color: #7dd3fc !important;
}
.promo-badge--teal i { color: #0284c7 !important; }

.price-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--ivory);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--champagne);
}
.price-notice i { color: var(--champagne); margin-top: 2px; flex-shrink: 0; }
.price-notice span { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; }


/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background: var(--ivory-dark); }

.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--beige-dark);
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-ko);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--white);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--beige);
  /* 세로형 기본 — aspect-ratio 보조 */
  aspect-ratio: 3 / 4;
  height: auto;
}
/* grid-auto-rows 대신 aspect-ratio 기반으로 높이 자동 */
.gallery-grid { grid-auto-rows: unset; }

.gallery-item--large { grid-column: span 2; aspect-ratio: 4 / 3; }
.gallery-item--tall  { grid-row: span 2; aspect-ratio: 3 / 5; }

.gallery-ph {
  width: 100%; height: 100%;
  min-height: unset;
  border-radius: 0;
}
.gallery-ph i { font-size: 2rem; }
.gallery-ph span { font-size: 0.72rem; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,15,8,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.78rem;
  color: var(--champagne-light);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.gallery-item.hidden { display: none; }

.gallery-insta-cta {
  text-align: center;
  margin-top: 48px;
}
.gallery-insta-cta p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
}


/* ============================================================
   NOTICE / BEFORE VISIT SECTION
   ============================================================ */
.notice-section {
  background: linear-gradient(160deg, var(--soft-pink) 0%, var(--ivory) 100%);
}

.notice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

.notice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 169, 110, 0.15);
}
.notice-card--policy {
  border-top: 4px solid var(--champagne);
}

.notice-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ivory-dark);
}
.notice-card-header > i {
  font-size: 1.8rem;
  color: var(--champagne);
  margin-top: 4px;
  flex-shrink: 0;
}

.notice-title {
  font-family: var(--font-serif-ko);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 4px;
}
.notice-title-en {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--champagne);
  font-style: italic;
}

.notice-list { display: flex; flex-direction: column; gap: 14px; }
.notice-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.notice-list li i {
  color: var(--champagne);
  font-size: 0.7rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.notice-list li strong { color: var(--brown-dark); font-weight: 600; }

/* ── 시간엄수 강조 블록 ── */
.punctuality-block {
  margin-top: 22px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid #e03030;
  box-shadow: 0 4px 20px rgba(220, 40, 40, 0.12);
  animation: punctualityPulse 3s ease-in-out infinite;
}

@keyframes punctualityPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(220, 40, 40, 0.12); }
  50%       { box-shadow: 0 4px 28px rgba(220, 40, 40, 0.28); }
}

/* 타이틀 줄 */
.punctuality-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #d42020, #ff4444);
  color: #fff;
  font-family: var(--font-serif-ko);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 20px;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.punctuality-title i {
  font-size: 1rem;
  animation: shake 0.8s ease-in-out infinite alternate;
}
@keyframes shake {
  0%   { transform: rotate(-8deg) scale(1.1); }
  100% { transform: rotate(8deg)  scale(1.1); }
}

/* 리스트 영역 */
.punctuality-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff8f8;
  padding: 4px 0;
}
.punctuality-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid #fde8e8;
  font-size: 0.88rem;
  color: #5a2020;
  line-height: 1.65;
}
.punctuality-list li:last-child { border-bottom: none; }

.punctuality-list li > i {
  color: #e03030;
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.punctuality-list li strong {
  color: #c01818;
  font-weight: 700;
}

/* 마지막 줄 (10분 이상 지각) — 더 강한 강조 */
.punctuality-list__critical {
  background: linear-gradient(90deg, #fff0f0, #fff8f8) !important;
}
.punctuality-list__critical > i {
  color: #b01010 !important;
  font-size: 1rem !important;
}
.punctuality-list__critical strong {
  color: #b01010 !important;
  font-size: 0.92rem;
}

/* Contact Buttons */
.contact-buttons { text-align: center; }

.contact-title {
  font-family: var(--font-serif-ko);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.contact-subtitle {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--champagne);
  font-style: italic;
  margin-bottom: 32px;
}

.contact-btns-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  min-width: 220px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-btn--naver {
  background: linear-gradient(135deg, #03C75A, #02A34A);
  color: var(--white);
}
.contact-btn--insta {
  background: linear-gradient(135deg, #E1306C, #833AB4);
  color: var(--white);
}
.contact-btn--kakao {
  background: #FEE500;
  color: #3A1D1D;
}

.contact-btn-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-btn--kakao .contact-btn-icon { background: rgba(0,0,0,0.08); }

.contact-btn-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.contact-btn-text span { font-size: 0.75rem; opacity: 0.8; }


/* ============================================================
   LOCATION SECTION
   ============================================================ */
.location-section { background: var(--white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── 지도 영역 전체 래퍼 ── */
.map-area {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── 지도 이미지 + 오버레이 컨테이너 ── */
.map-img-wrap {
  position: relative;
  width: 100%;
  line-height: 0; /* 이미지 아래 공백 제거 */
}

.map-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: filter 0.3s ease;
}

/* 지도 이미지에 마우스 올리면 약간 밝게 */
.map-img-wrap:hover .map-img {
  filter: brightness(1.04);
}

/* ── 투명 클릭 핫스팟 (이미지 위 오버레이) ── */
.map-hotspot {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.2s ease;
  /* 기본: 완전 투명 */
  background: transparent;
}
.map-hotspot:hover {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(2px);
}

/* 핫스팟 라벨 — 평상시 숨김, hover 시 표시 */
.map-hotspot-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px 6px;
  border-radius: 6px 6px 0 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.map-hotspot:hover .map-hotspot-label {
  opacity: 1;
  transform: translateY(0);
}

/* 네이버 핫스팟 — 이미지 하단 왼쪽 버튼 영역 */
.map-hotspot--naver {
  bottom: 14.5%;
  left: 19%;
  width: 16%;
  height: 10%;
}
.map-hotspot--naver .map-hotspot-label {
  background: #03C75A;
  color: #fff;
}

/* 구글 핫스팟 */
.map-hotspot--google {
  bottom: 14.5%;
  left: 38%;
  width: 16%;
  height: 10%;
}
.map-hotspot--google .map-hotspot-label {
  background: #4285F4;
  color: #fff;
}

/* 카카오 핫스팟 */
.map-hotspot--kakao {
  bottom: 14.5%;
  left: 57%;
  width: 16%;
  height: 10%;
}
.map-hotspot--kakao .map-hotspot-label {
  background: #FEE500;
  color: #3A1D1D;
}

/* ── 지도 하단 버튼 바 ── */
.map-btn-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--beige);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.map-bar-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  border-right: 1px solid var(--beige);
  position: relative;
}
.map-bar-btn:last-child { border-right: none; }
.map-bar-btn:hover { background: var(--ivory); }
.map-bar-btn:active { transform: scale(0.98); }

.map-bar-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  padding: 5px;
  flex-shrink: 0;
}
.map-bar-btn--naver .map-bar-icon  { background: #03C75A; color: #fff; }
.map-bar-btn--google .map-bar-icon { background: #4285F4; color: #fff; }
.map-bar-btn--kakao  .map-bar-icon { background: #FEE500; color: #3A1D1D; }

.map-bar-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  flex: 1;
}
.map-bar-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.map-bar-text span {
  font-size: 0.68rem;
  color: var(--text-muted);
}
.map-bar-arrow {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-left: auto;
}

/* placeholder는 더 이상 사용하지 않지만 호환성 유지 */
.map-placeholder {
  display: none;
}

/* ── 방문 안내 카드 ── */
.location-card--tip {
  background: linear-gradient(135deg, #fffbf0, #fff5e0) !important;
  border-color: #f0d090 !important;
}
.location-icon--tip {
  background: linear-gradient(135deg, #f0c060, #d09820) !important;
}

.location-info { display: flex; flex-direction: column; gap: 16px; }

.location-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--ivory);
  border-radius: var(--radius-md);
  border: 1px solid var(--beige);
  align-items: flex-start;
}

.location-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--champagne-light), var(--champagne));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.location-details h3 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--champagne-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.location-details address,
.location-details p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.location-details .address-en { color: var(--text-muted); font-size: 0.8rem; }
.location-details .address-road { color: var(--text-mid); font-size: 0.86rem; font-weight: 500; }
.location-details .text-muted { color: var(--text-muted); font-size: 0.8rem; }

.location-map-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
}

.cta-bg {
  position: absolute; inset: 0;
  background-color: var(--brown-dark);
  overflow: hidden;
}
.cta-bg-ph {
  width: 100%; height: 100%;
  border-radius: 0;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 50%, var(--brown-dark) 100%);
  border: none;
  min-height: unset;
}

.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(30, 12, 4, 0.65);
}

.cta-content {
  position: relative; z-index: 2;
  color: var(--white);
}

.cta-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--champagne-light);
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-title {
  font-family: var(--font-serif-ko);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.cta-subtitle {
  font-family: var(--font-en);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 44px;
  letter-spacing: 0.05em;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-multilang {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 60px 24px 40px;
  align-items: start;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--champagne-light);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-logo span {
  font-family: var(--font-ko);
  font-size: 0.75rem;
  margin-left: 8px;
  color: var(--champagne);
  font-weight: 400;
  letter-spacing: 0.08em;
}
.footer-address {
  font-size: 0.8rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--champagne-light); }

.footer-social {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--champagne); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}


/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  font-family: var(--font-ko);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  white-space: nowrap;
}
.float-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }

.float-btn--naver  { background: #03C75A; color: var(--white); }
.float-btn--kakao  { background: #FEE500; color: #3A1D1D; }
.float-btn--insta  { background: linear-gradient(135deg, #E1306C, #833AB4); color: var(--white); }

.float-btn i { font-size: 1rem; }
.float-btn span { display: none; }


/* ============================================================
   EVENT BANNER STRIP (메인 히어로 아래)
   ============================================================ */
.event-banner-strip {
  display: block;
  background: linear-gradient(90deg, #2C1F17 0%, #6B4C3B 30%, #C9A96E 60%, #6B4C3B 80%, #2C1F17 100%);
  background-size: 200% 100%;
  animation: bannerShimmer 4s linear infinite;
  text-decoration: none;
  transition: opacity var(--transition);
}
.event-banner-strip:hover { opacity: 0.92; }

@keyframes bannerShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.event-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ev-banner-fire { font-size: 1.2rem; }
.ev-banner-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.ev-banner-text strong {
  font-family: var(--font-serif-ko);
  font-size: 1rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 0.03em;
}
.ev-banner-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}
.ev-banner-arrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--champagne-light);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 50px;
  white-space: nowrap;
}
.ev-banner-arrow i { font-size: 0.72rem; }

/* Nav Event Button */
.desktop-nav .nav-event-btn {
  color: #E8402A !important;
  font-weight: 700 !important;
  border: 1.5px solid #E8402A !important;
  animation: eventPulse 2s ease-in-out infinite;
}
.desktop-nav .nav-event-btn:hover {
  background: #E8402A !important;
  color: var(--white) !important;
}
@keyframes eventPulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 3px rgba(232, 64, 42, 0.2); }
}

/* Mobile Event Link */
.mobile-event-link {
  color: #E8402A !important;
  font-weight: 700 !important;
  background: #FFF0EE !important;
  border-radius: var(--radius-sm);
}

/* Shop Nav Button */
.desktop-nav .nav-shop-btn {
  color: #03C75A !important;
  font-weight: 700 !important;
  border: 1.5px solid #03C75A !important;
}
.desktop-nav .nav-shop-btn:hover {
  background: #03C75A !important;
  color: var(--white) !important;
}
/* Mobile Shop Link */
.mobile-shop-link {
  color: #03C75A !important;
  font-weight: 700 !important;
  background: #f0fff7 !important;
  border-radius: var(--radius-sm);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 20px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--white);
  border: 1.5px solid var(--champagne);
  color: var(--champagne-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--champagne); color: var(--white); }


/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ============================================================
   RESPONSIVE – TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .lang-switcher { margin-left: auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .about-img-accent { right: -16px; bottom: -16px; width: 38%; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-social { flex-direction: row; }
}

/* ============================================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .section-pad { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-accent { right: 12px; bottom: -16px; width: 36%; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .about-text .section-title { text-align: center; }
  .about-text .gold-divider { margin: 12px auto 24px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item { aspect-ratio: 3 / 4; }
  .gallery-item--large { grid-column: span 2; aspect-ratio: 16 / 9; }
  .gallery-item--tall  { grid-row: span 1; aspect-ratio: 3 / 4; }

  /* Price */
  .price-table thead th:nth-child(2) { display: none; }
  .price-table td.service-name-en { display: none; }

  /* Notice */
  .notice-grid { grid-template-columns: 1fr; }
  .notice-card { padding: 24px; }

  /* Contact */
  .contact-btns-grid { flex-direction: column; align-items: center; }
  .contact-btn { width: 100%; max-width: 320px; }

  /* Location */
  .location-grid { grid-template-columns: 1fr; }
  .map-btn-bar { grid-template-columns: repeat(3, 1fr); }
  .map-bar-btn { padding: 12px 10px; gap: 7px; }
  .map-bar-text strong { font-size: 0.76rem; }
  .map-bar-text span { display: none; }

  /* CTA */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 48px 24px 32px; }

  /* Floating Btns */
  .floating-btns { bottom: 16px; right: 14px; gap: 8px; }
  .float-btn { padding: 10px; border-radius: 50%; }
  .float-btn span { display: none; }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }

  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item { aspect-ratio: 3 / 4; }
  .gallery-item--large { aspect-ratio: 4 / 3; }

  .about-features { grid-template-columns: 1fr; }

  .section-cta { flex-direction: column; align-items: center; }
  .section-cta .btn { width: 100%; max-width: 280px; }

  .location-map-btns { flex-direction: column; }

  /* 지도 버튼 바 480px 이하 */
  .map-btn-bar { grid-template-columns: repeat(3, 1fr); }
  .map-bar-icon { width: 24px; height: 24px; padding: 4px; }
  .map-bar-text strong { font-size: 0.72rem; }
}


/* ============================================================
   MOBILE STICKY RESERVATION BAR
   – 모바일 전용 하단 고정 예약 바 (768px 이하에서만 표시)
   ============================================================ */
.sticky-reserve-bar {
  display: none; /* 데스크톱: 숨김 */
}

@media (max-width: 768px) {
  /* 바 기본 설정 */
  .sticky-reserve-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 169, 110, 0.25);
    box-shadow: 0 -4px 24px rgba(61, 43, 31, 0.12);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;

    /* 초기 상태: 숨김 (아래로 슬라이드) */
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
  }

  /* 스크롤 300px 이후 표시 */
  .sticky-reserve-bar.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* 각 버튼 */
  .sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px 10px;
    border-radius: 14px;
    font-family: var(--font-ko);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
  }
  .sticky-btn:active {
    transform: scale(0.96);
  }
  .sticky-btn i {
    font-size: 1rem;
    flex-shrink: 0;
  }

  /* 네이버 예약 */
  .sticky-btn--naver {
    background: #03C75A;
    color: #fff;
    box-shadow: 0 3px 12px rgba(3, 199, 90, 0.35);
  }
  .sticky-btn--naver:hover {
    box-shadow: 0 6px 20px rgba(3, 199, 90, 0.45);
    color: #fff;
  }

  /* 카카오 문의 */
  .sticky-btn--kakao {
    background: #FEE500;
    color: #3A1D1D;
    box-shadow: 0 3px 12px rgba(254, 229, 0, 0.45);
  }
  .sticky-btn--kakao:hover {
    box-shadow: 0 6px 20px rgba(254, 229, 0, 0.55);
    color: #3A1D1D;
  }

  /* 인스타그램 */
  .sticky-btn--insta {
    background: linear-gradient(135deg, #E1306C, #833AB4);
    color: #fff;
    box-shadow: 0 3px 12px rgba(225, 48, 108, 0.35);
  }
  .sticky-btn--insta:hover {
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.45);
    color: #fff;
  }

  /* 스티키 바가 표시되는 동안 floating-btns 숨김 (겹침 방지) */
  .sticky-reserve-bar.visible ~ .floating-btns,
  body:has(.sticky-reserve-bar.visible) .floating-btns {
    opacity: 0;
    pointer-events: none;
  }
}
