/* =========================================================
   L-LUMINA  ·  page.css  (시안 구현)
   홈페이지 팔레트 기반 / 모바일 우선 → 900px 데스크탑
   ========================================================= */
:root {
  --gold: #c9a76c;
  --gold-dk: #a67c30;
  --gold-lt: #e3cfa6;
  --beige: #faf5ee;
  --beige-md: #f0e8d8;
  --cream: #faf6ee;
  --brown: #3d342c;
  --brown-dk: #2f2822;
  --ink: #2c2620;
  --ink-sub: #6f655a;
  --line: #e7ddcd;
  --radius: 14px;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family:
    'Noto Sans KR',
    -apple-system,
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
figure {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}

.en {
  font-family: 'Playfair Display', serif;
}
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* 공통 더미 이미지 슬롯 ------------------------------------ */
.img-slot {
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(135deg, #f3e7d2 0%, #e6cfa6 50%, #d8b988 100%); */
}
.img-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .img-slot::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  pointer-events: none;
} */
.img-slot.has-img::after {
  display: none;
}

/* 공통 버튼 / 링크 --------------------------------------- */
.view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold-dk);
}
.view-more::after {
  content: '→';
  transition: transform 0.25s;
}
.view-more:hover::after {
  transform: translateX(4px);
}

.eyebrow {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 6px 16px;
  border-radius: 2px;
}
.section-en {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--gold-dk);
  font-weight: 700;
  margin: 0 0 6px;
}
.section-sub {
  color: var(--ink-sub);
  font-size: 14px;
  margin: 0;
}

/* =========================================================
   SCROLL REVEAL (스크롤 시 등장 애니메이션)
   - .reveal-ready(=JS 동작 시에만) 일 때만 숨김 → JS 미동작 시 콘텐츠 항상 노출
   ========================================================= */
html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
html.reveal-ready [data-reveal='left'] {
  transform: translateX(-52px);
}
html.reveal-ready [data-reveal='right'] {
  transform: translateX(52px);
}
html.reveal-ready [data-reveal='down'] {
  transform: translateY(-44px);
}
html.reveal-ready [data-reveal].reveal-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.reveal-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  /* backdrop-filter 제거: 불투명 배경이라 블러는 안 보이는데
     자식 position:fixed(딤·드로어) 기준을 헤더 박스로 가두는 부작용이 있었음 */
  border-bottom: 1px solid var(--line);
}
.site-header > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

.gnb {
  display: flex;
  align-self: stretch; /* 헤더 높이만큼 hover 영역 확장 → 메가메뉴까지 끊김 없이 이동 */
  align-items: center;
  gap: clamp(16px, 4vw, 40px);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.gnb a {
  position: relative;
  padding: 6px 0;
}
.gnb a:hover {
  color: var(--gold-dk);
}

/* ----- 호버 메가 메뉴 ----- */
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 30px rgba(61, 52, 44, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
}
/* gnb(또는 메가메뉴 자체) 호버 시에만 노출 — 헤더 전체 호버로는 안 열림 */
.site-header:has(.gnb:hover) .mega,
.site-header:has(.gnb:focus-within) .mega,
.mega:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-top: 30px;
  padding-bottom: 36px;
}
.mega-aside {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.logo-lg .mark {
  width: 46px;
  height: 46px;
  font-size: 20px;
}
.logo-lg b {
  font-size: 22px;
}
.logo-lg small {
  font-size: 9px;
}
.mega-tel span {
  display: block;
  font-size: 14px;
  color: var(--ink-sub);
  margin-bottom: 4px;
}
.mega-tel b {
  font-size: 26px;
  color: var(--gold-dk);
  letter-spacing: 0.02em;
}
.mega-cols {
  display: flex;
  gap: 40px;
}
.mega-col {
  display: flex;
  flex-direction: column;
  min-width: fit-content;
}
.mega-col-title {
  font-weight: 700;
  color: var(--gold-dk);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.mega-col a {
  font-size: 14px;
  color: var(--ink-sub);
  padding: 7px 0;
  transition: color 0.2s;
}
.mega-col a:hover {
  color: var(--gold-dk);
}
/* 오픈 전까지 메뉴에서 감춰두는 항목 — 공개 시 이 클래스만 제거 */
.mega-col a.is-hidden {
  display: none !important;
}

/* ----- 햄버거 버튼 (데스크탑 숨김, 모바일 노출) ----- */
.nav-toggle {
  display: none;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--brown);
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}
.nav-dim {
  display: none;
}

/* ----- 모바일 헤더: 햄버거 → 메가메뉴 드로어 ----- */
@media (max-width: 899px) {
  /* 모바일 헤더 컴팩트하게 */
  .site-header > .wrap {
    height: 58px;
  }
  .logo img {
    height: 34px;
  }
  .gnb {
    display: none;
  }
  .nav-toggle {
    display: flex;
    /* 드로어(z60) 위에 떠서 X(닫기)가 항상 보이고 눌리도록 */
    position: relative;
    z-index: 70;
  }
  /* 열림 상태: 햄버거 → X */
  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* 배경 딤 */
  .nav-dim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(31, 26, 22, 0.45);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }
  .site-header.is-open .nav-dim {
    opacity: 1;
    visibility: visible;
  }

  /* 메가메뉴 = 우측 슬라이드 드로어 */
  .mega {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 360px);
    height: 100%;
    height: 100dvh;
    z-index: 60;
    border-top: none;
    box-shadow: -12px 0 40px rgba(61, 52, 44, 0.18);
    transform: translateX(100%);
    visibility: hidden;
    opacity: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain; /* 드로어 끝에서 배경으로 스크롤 전파 방지 */
    transition:
      transform 0.32s ease,
      visibility 0.32s ease;
  }
  /* 데스크탑 호버 규칙 무력화 (모바일은 .is-open만으로 제어) */
  .site-header:has(.gnb:hover) .mega,
  .site-header:has(.gnb:focus-within) .mega,
  .mega:hover {
    transform: translateX(100%);
    visibility: hidden;
  }
  .site-header.is-open .mega {
    transform: translateX(0);
    visibility: visible;
  }

  .mega-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 26px 24px 40px;
  }
  /* 상단: 로고 + 전화 상담 */
  .mega-aside {
    flex: none;
    gap: 16px;
    padding-bottom: 22px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .mega-aside .logo-lg img {
    height: 42px;
  }
  .mega-tel b {
    font-size: 22px;
  }
  /* 메뉴 컬럼: 세로 스택 + 아코디언 */
  .mega-cols {
    flex-direction: column;
    gap: 0;
  }
  .mega-col {
    min-width: 0;
    border-bottom: 1px solid var(--line);
  }
  /* 타이틀 = 탭 영역 (화살표 + 클릭 토글) */
  .mega-col-title {
    margin: 0;
    padding: 16px 4px;
    font-size: 15px;
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }
  .mega-col-title::after {
    content: '';
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-right: 4px;
    border-right: 2px solid var(--gold-dk);
    border-bottom: 2px solid var(--gold-dk);
    transform: rotate(45deg); /* ▾ 아래 화살표 */
    transition: transform 0.25s ease;
  }
  .mega-col.is-open .mega-col-title::after {
    transform: rotate(-135deg); /* ▴ 펼쳐지면 위로 */
  }
  /* 링크 = 기본 접힘, .is-open 일 때 펼침 */
  .mega-col a {
    display: none;
    font-size: 15px;
    padding: 11px 4px;
  }
  .mega-col.is-open a {
    display: block;
  }
  .mega-col.is-open a:last-child {
    padding-bottom: 16px;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--beige) 0%, var(--beige-md) 100%);
  overflow: hidden;
}
.hero .wrap {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  min-height: calc(100vh - 58px); /* 헤더(64px) 제외한 화면 풀 높이 */
  min-height: calc(100svh - 58px);
}
.hero-copy {
  padding: 48px 0;
}
.hero-copy .badge {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dk);
  font-size: 15px;
  margin-bottom: 14px;
}
.hero-copy h1 {
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 16px;
}
.hero-copy .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dk);
  font-size: clamp(16px, 3vw, 22px);
}
/* 풀블리드 배경 이미지 */
.hero-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}
/* 풀블리드 배경 영상 (모바일: 인물 가운데 노출) */
.hero-video {
  background: #faf5e8;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}
/* 영상 좌·우 가장자리를 배경 베이지로 자연스럽게 페이드 */
.hero-video::before,
.hero-video::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 25%;
  z-index: 2;
  pointer-events: none;
}
.hero-video::before {
  left: 0;
  background: linear-gradient(to right, var(--gold) 0%, rgba(250, 245, 238, 0) 100%);
}
.hero-video::after {
  right: 0;
  background: linear-gradient(to left, var(--gold) 0%, rgba(250, 245, 238, 0) 100%);
}
/* 모바일: 영상 좌우 페이드 숨김 + 슬라이드 미디어 인물 가운데 노출 */
@media (max-width: 899px) {
  .hero-video::before,
  .hero-video::after {
    display: none;
  }
  /* 인물이 우측(~65%)에 있는 이미지 → 모바일 세로 크롭에서 인물이 가운데 보이도록 */
  .hero-photo img {
    object-position: 68% center;
  }
  .hero-video video {
    object-position: center;
    transform: none;
  }
}
/* 골드 오브(거품) 장식 */
.hero .orbs {
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 55%;
  background: radial-gradient(circle at 70% 20%, rgba(201, 167, 108, 0.35), transparent 22%), radial-gradient(circle at 88% 50%, rgba(227, 207, 166, 0.5), transparent 18%), radial-gradient(circle at 60% 70%, rgba(201, 167, 108, 0.3), transparent 16%);
  z-index: 1;
  pointer-events: none;
}

/* 히어로 스와이퍼 */
.hero-sw {
  position: relative;
  z-index: 2;
}
.hero-sw .swiper-slide {
  position: relative;
  height: auto;
  overflow: hidden;
}
/* 텍스트 가독성용 밝은 오버레이 (좌측 진하게) */
.hero-sw .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 245, 238, 0) 0%, rgba(239, 226, 208, 0.8) 60%);
  height: 60%;
  bottom: 0;
  top: auto;
  z-index: 1;
}
/* 슬라이드 컨트롤 (좌측 하단: 재생/정지 + progress 바) */
.hero-controls {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 168px; /* 모바일: 하단 고정 상담바(여러 줄) 위로 */
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
/* 재생 / 일시정지 버튼 */
.hero-play {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(166, 124, 48, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  color: var(--gold-dk);
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.hero-play:hover {
  background: #fff;
  border-color: var(--gold-dk);
}
.hero-play svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.hero-play .ico-play {
  display: none;
}
.hero-play.is-paused .ico-pause {
  display: none;
}
.hero-play.is-paused .ico-play {
  display: block;
}
/* progress 바 (페이지네이션) */
.hero-pagination.swiper-pagination-progressbar {
  position: relative;
  top: auto;
  left: auto;
  flex: 0 1 160px;
  height: 3px;
  border-radius: 2px;
  background: rgba(166, 124, 48, 0.25);
  overflow: hidden;
}
.hero-pagination .swiper-pagination-progressbar-fill {
  background: var(--gold-dk);
  border-radius: 2px;
}

/* 모바일: hero-copy와 컨트롤러를 슬라이드 하단으로 */
@media (max-width: 899px) {
  .hero .wrap {
    align-items: flex-end; /* 텍스트를 아래로 */
  }
  .hero-copy {
    padding: 0 0 84px; /* 하단 컨트롤러 자리 확보 */
  }
  .hero-controls {
    bottom: 28px; /* 슬라이드 제일 하단 */
  }

  .quick-bar .qf-agrees {
    flex-direction: column;
  }
}

/* 글자 왼쪽에서 등장 애니메이션 (스와이퍼 초기화 후에만 숨김) */
.hero-sw.is-ready .hero-copy > * {
  opacity: 0;
  transform: translateX(-44px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.hero-sw .swiper-slide-active .hero-copy > * {
  opacity: 1;
  transform: translateX(0);
}
.hero-sw .swiper-slide-active .hero-copy .badge {
  transition-delay: 0.15s;
}
.hero-sw .swiper-slide-active .hero-copy h1 {
  transition-delay: 0.3s;
}
.hero-sw .swiper-slide-active .hero-copy .tagline {
  transition-delay: 0.45s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-sw.is-ready .hero-copy > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   EVENT
   ========================================================= */
.event {
  padding: 70px 0;
}
.event .wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.event-head .section-en {
  color: var(--ink);
  line-height: 1.15; /* 고정 42px → 폰트 크기에 맞춰 스케일(모바일 과한 줄간격 방지) */
  margin-bottom: 25px;
}
.event-head .section-sub {
  line-height: 1.5;
}
.event-head .view-more {
  margin-top: 16px;
}
.event-sw {
  width: 100%;
}
.event-sw .img-slot {
  aspect-ratio: 1 / 1;
  border-radius: 16px; /* 모바일 슬라이더: 균일 라운드 */
}
/* 하단 어둡게 — 텍스트 가독성용 그라디언트 (::after는 has-img로 숨겨지므로 ::before 사용) */
.event-sw .img-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 38%, transparent 62%);
}
/* 좌측 하단 캡션 */
.event-sw .event-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px 16px 15px;
  text-align: left;
  color: #fff;
}
.event-sw .event-cap strong {
  display: block;
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
.event-sw .event-cap span {
  display: block;
  margin-top: 4px;
  font-size: clamp(11px, 1.8vw, 13px);
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
}
/* event-head 슬라이드 컨트롤러: 이전/다음 + 현재/총 개수 */
.event-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.event-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--gold-dk);
  background: #fff;
  border: none;
  /* border-radius: 50%; */
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s,
    opacity 0.25s;
}
.event-nav:hover {
  color: #fff;
  background: var(--gold-dk);
  border-color: var(--gold-dk);
}
.event-nav svg {
  width: 15px;
  height: 15px;
}
.event-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.event-count {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-sub);
}
.event-count .event-cur {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dk);
}
.event-count i {
  margin: 0 7px;
  font-style: normal;
  color: var(--line);
}
/* 모바일 전용 조정 */
@media (max-width: 899px) {
  .event-head .section-en {
    margin-bottom: 10px;
  }
}

/* =========================================================
   SIGNATURE
   ========================================================= */
.signature {
  position: relative;
  background: linear-gradient(110deg, #d9b988 0%, #e6cda3 45%, var(--beige) 100%);
  overflow: hidden;
}
/* 모바일: 그라디언트 방향 0deg(아래→위) */
@media (max-width: 899px) {
  .signature {
    background: linear-gradient(0deg, #d9b988 0%, #e6cda3 45%, var(--beige) 100%);
  }
}
.signature .wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 60px 20px;
  z-index: 2;
}
.sig-aside {
  position: relative;
}

/* 키 = 이미지 영역 오른쪽 위에 겹쳐지는 슬라이드 컨트롤러 */
.sig-keys {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vw, 54px);
  padding: 28px 32px 28px 0;
  /* 점들을 잇는 세로 점선 */
  border-right: 1px dashed rgba(61, 52, 44, 0.55);
}
.sig-key {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3.4vw, 32px);
  color: var(--brown-dk);
  position: relative;
  /* 버튼 기본 스타일 초기화 */
  appearance: none;
  border: 0;
  background: none;
  padding: 0;
  text-align: right;
  white-space: nowrap;
  cursor: pointer;
  opacity: 0.45;
  transition:
    opacity 0.25s,
    color 0.25s;
}
.sig-key::before {
  content: '';
  position: absolute;
  right: -36px; /* 오른쪽 세로 점선 위에 점 정렬 */
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brown);
  transform: translateY(-50%) scale(0.7);
  transition:
    transform 0.25s,
    background 0.25s;
}
.sig-key:hover {
  opacity: 0.8;
}
.sig-key.is-active {
  opacity: 1;
}
.sig-key.is-active::before {
  background: var(--gold-dk);
  transform: translateY(-50%) scale(1.25);
}

/* 시그니처 이미지 슬라이더 */
.sig-sw {
  width: 100%;
  border-radius: 0 0 var(--radius) var(--radius); /* 모바일: 위 모서리 직각, 아래만 라운드 */
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(61, 52, 44, 0.18);
}
.sig-sw .img-slot {
  aspect-ratio: 958 / 808;
}
.sig-body .section-en {
  color: var(--brown-dk);
}
.sig-lead {
  font-weight: 700;
  margin: 14px 0 18px;
}
.sig-logo {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--brown-dk);
  margin-bottom: 14px;
}
.sig-logo sup {
  font-size: 0.5em;
}
.sig-desc {
  font-size: 14px;
  color: #4a3c28;
  margin-bottom: 18px;
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--beige);
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  gap: 15px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(30px, 6vw, 52px);
  color: var(--gold);
  letter-spacing: 0.04em;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   BEFORE & AFTER
   ========================================================= */
.beforeafter {
  padding: 70px 0;
}
.beforeafter .wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
/* 모바일: ba-body(텍스트)를 ba-media(이미지)보다 먼저 노출 */
@media (max-width: 899px) {
  .ba-body {
    order: -1;
  }
}
.ba-media {
  display: block; /* swiper가 폭을 잡도록 flex가 아닌 블록 */
  min-width: 0;
}
.ba-sw {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}
.ba-sw .img-slot {
  aspect-ratio: 853 / 446; /* 비포·애프터 통이미지 비율 */
  border-radius: var(--radius);
}
.ba-note {
  font-size: 11px;
  color: #b3a89b;
  line-height: 1.5;
  margin: 14px 0 0;
}
.ba-body .section-en {
  margin-bottom: 14px;
}
.ba-desc {
  color: var(--ink-sub);
  margin: 0 0 22px;
}
.ba-spec {
  border-top: 1px solid var(--line);
}
.ba-spec dl {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.ba-spec dt {
  color: var(--gold-dk);
  min-width: 70px;
}
.ba-spec dd {
  margin: 0;
}
.ba-nav {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.ba-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--brown);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.ba-nav button:hover {
  background: var(--gold-dk);
}

/* =========================================================
   STORY
   ========================================================= */
.story {
  position: relative;
  background: #f0e3cb url(../img/story_bg.jpg) center / cover no-repeat;
  overflow: hidden;
  padding: 0;
}
/* 텍스트 + 의사 뒤에 함께 깔리는 반투명 흰색 밴드 */
.story .wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 0px 150px 0 0;
  padding: 40px 28px 0;
}
/* 모바일: 반투명 흰색 밴드 제거 */
@media (max-width: 899px) {
  .story .wrap {
    background: none;
  }
}
.story-copy {
  position: relative;
  z-index: 2;
}

.story-copy .en-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--gold-dk);
}
.story-copy h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 18px;
  color: var(--brown-dk);
}
/* 모바일: 강제 줄바꿈 제거(자연 흐름) — 데스크탑 줄바꿈은 유지 */
@media (max-width: 899px) {
  .story-copy h2 br {
    display: none;
  }
}
.story-copy .doctor {
  font-weight: 700;
  color: var(--brown-dk);
  margin-bottom: 18px;
}
.story-photo {
  margin: 0;
  align-self: flex-end;
  width: 100%; /* 모바일: 풀 너비 (데스크탑은 아래 미디어쿼리에서 42%) */
}
.story-photo img {
  display: block;
  width: 100%;
  height: auto;
  /* 누끼 PNG라 프레임/배경 없이 그대로 노출 */
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  padding: 70px 0;
  text-align: center;
}
@media (max-width: 899px) {
  .gallery {
    padding: 30px 0 40px;
  }
}
.gallery .head {
  margin-bottom: 30px;
}
.gallery .section-en {
  color: var(--ink);
}
/* 메인 스와이퍼 */
.gallery-main-sw {
  margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-main-sw .img-slot {
  aspect-ratio: 16 / 9;
}
/* 네비게이션 버튼 (컨트롤러) */
.gallery-main-sw .swiper-button-prev,
.gallery-main-sw .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(61, 52, 44, 0.55);
  color: #fff;
  transition: background 0.2s;
}
.gallery-main-sw .swiper-button-prev:hover,
.gallery-main-sw .swiper-button-next:hover {
  background: var(--gold-dk);
}
.gallery-main-sw .swiper-button-prev::after,
.gallery-main-sw .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
}
/* 페이지네이션 (컨트롤러) */
.gallery-main-sw .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}
.gallery-main-sw .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

/* 썸네일 스와이퍼 */
.gallery-thumbs-sw {
  margin-top: 0;
}
.gallery-thumbs-sw .img-slot {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-thumbs-sw .swiper-slide {
  border: 2px solid transparent;
  border-radius: 10px;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.gallery-thumbs-sw .swiper-slide-thumb-active {
  border-color: var(--gold);
  opacity: 1;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--brown-dk);
  color: #d8cfc4;
  font-size: 13px;
}
.site-footer .wrap {
  padding: 54px 20px 40px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-top .ft-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #fff;
}
.ft-block .lbl {
  color: var(--gold-lt);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.ft-tel {
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ft-hours div {
  margin-bottom: 4px;
}
.ft-hours .day {
  color: var(--gold-lt);
  display: inline-block;
  min-width: 52px;
}
.ft-map {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
}
.ft-addr {
  margin-bottom: 12px;
}
/* 카카오맵 컨테이너 (높이 없으면 지도가 0px로 안 보임) */
.kakao-map {
  width: 100%;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 24px 0 14px;
}
.footer-links a:hover {
  color: #fff;
}
.footer-biz {
  color: #9b9088;
  line-height: 1.8;
}
.footer-biz .sep {
  margin: 0 8px;
  opacity: 0.4;
}
.footer-copy {
  margin-top: 14px;
  color: #8a8078;
  letter-spacing: 0.04em;
}
/* 모바일: 우측 하단 floating-fab에 가려지지 않도록 우측 여백 확보 */
@media (max-width: 899px) {
  .footer-links,
  .footer-biz,
  .footer-copy {
    padding-right: 72px;
  }
}

/* =========================================================
   FLOATING FAB (우측 하단 고정: 전화상담 / 맨 위로)
   ========================================================= */
.floating-fab {
  position: fixed;
  right: 16px;
  bottom: 20px; /* 모바일: 상담바 숨김 상태라 하단에 배치 */
  z-index: 70; /* 상담바(60)보다 위, 모달(200)보다 아래 */
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab-btn {
  width: 62px;
  height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(61, 52, 44, 0.22);
  transition:
    transform 0.2s,
    background 0.2s,
    opacity 0.3s,
    visibility 0.3s;
}
.fab-btn:hover {
  transform: translateY(-3px);
}
.fab-btn svg {
  width: 22px;
  height: 22px;
}
/* 전화상담 (주요) */
.fab-call {
  background: var(--gold-dk);
  color: #fff;
  text-decoration: none;
}
.fab-call svg {
  fill: currentColor;
}
.fab-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
/* 상담신청 (모바일 전용 — quick-bar 토글), 데스크탑은 상담바 상시 노출이라 숨김 */
.fab-consult {
  display: none;
  position: relative;
  overflow: hidden;
  background: var(--brown-dk);
  color: #fff;
  border: 2px solid var(--gold-lt);
  /* qf-submit과 동일: 보더가 반짝이는 효과 (드롭 섀도 유지) */
  animation: fab-glint 1.8s ease-in-out infinite;
}
.fab-consult svg {
  fill: currentColor;
}
/* 빛이 스쳐 지나가는 샤인 스윕 */
.fab-consult::before {
  content: '';
  position: absolute;
  top: 0;
  left: -160%;
  width: 80%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;
  animation: qf-shine 2.8s ease-in-out infinite;
}
@keyframes fab-glint {
  0%,
  100% {
    border-color: rgba(227, 207, 166, 0.55);
    box-shadow:
      0 6px 18px rgba(61, 52, 44, 0.22),
      0 0 0 1px rgba(227, 207, 166, 0.15);
  }
  50% {
    border-color: #fff4d6;
    box-shadow:
      0 6px 18px rgba(61, 52, 44, 0.22),
      0 0 0 2px rgba(255, 246, 224, 0.75),
      0 0 9px rgba(255, 238, 200, 0.6);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fab-consult,
  .fab-consult::before {
    animation: none;
  }
}
/* 맨 위로 (보조) — 스크롤 후 노출 */
.fab-top {
  background: #fff;
  color: var(--gold-dk);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}
.fab-top svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-fab.is-scrolled .fab-top {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-fab.is-scrolled .fab-top:hover {
  transform: translateY(-3px);
}

/* 상담바 닫기 버튼 (모바일 전용) */
.quick-close {
  display: none;
}

/* =========================================================
   QUICK BAR (하단 고정 상담)
   ========================================================= */
.quick-bar {
  position: fixed;
  left: 50%;
  right: 0;
  bottom: -1px;
  z-index: 60;
  background: var(--brown-dk);
  color: #fff;
  padding: 12px 16px;
  width: 100%;
  max-width: 1200px;
  border-radius: 20px 20px 0 0;
  transform: translateX(-50%);
  border: 1px solid #4d4d4d;
}

/* ----- 모바일: 상담바 숨김 → 상담신청 FAB로 열기 ----- */
@media (max-width: 899px) {
  .fab-consult {
    display: flex;
  }
  /* 상담바 기본 숨김(아래로 내림), 상담신청 누르면 슬라이드 업 */
  .quick-bar {
    transform: translate(-50%, 120%);
    transition: transform 0.35s ease;
  }
  .quick-bar.is-open {
    transform: translate(-50%, 0);
  }
  /* 상담바 열리면 FAB 숨김(폼과 겹침 방지) */
  body:has(.quick-bar.is-open) .floating-fab {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  /* 닫기 버튼 — 바가 열렸을 때만 노출(닫힘 상태에서 하단에 삐져나오지 않도록) */
  .quick-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -44px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--gold-dk);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(61, 52, 44, 0.3);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }
  .quick-bar.is-open .quick-close {
    opacity: 1;
    visibility: visible;
  }
}

.quick-bar form {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.quick-bar input,
.quick-bar select {
  height: 40px;
  border: 1px solid #555;
  background: var(--brown-dk);
  color: #fff;
  border-radius: 22px;
  padding: 0 16px;
  font-size: 13px;
  min-width: 0;
}
.quick-bar input::placeholder {
  color: #888;
}
.quick-bar .qf-name {
  flex: 1 1 90px;
}
.quick-bar .qf-tel {
  flex: 1 1 110px;
}
.quick-bar .qf-sel {
  flex: 1 1 130px;
}
.quick-bar .qf-agrees {
  display: flex;
  gap: 2px;
  font-size: 13px;
  color: #bbb;
  flex: 1 1 100%;
}
.quick-bar .qf-agrees label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.quick-bar .qf-agrees a {
  color: var(--gold-lt);
  text-decoration: underline;
}
.quick-bar .qf-agrees input {
  height: auto;
}
.quick-bar .qf-submit {
  position: relative;
  overflow: hidden;
  height: 44px;
  border: none;
  border-radius: 24px;
  padding: 0 26px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  flex: 1 1 100%;
  border: 2px solid var(--gold-lt);
  transition: background 0.2s;
  /* 보더가 반짝이는 효과 (중요 버튼 강조) */
  animation: qf-glint 1.8s ease-in-out infinite;
}
/* 빛이 스쳐 지나가는 샤인 스윕 */
.quick-bar .qf-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -160%;
  width: 80%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: qf-shine 2.8s ease-in-out infinite;
}
.quick-bar .qf-submit:hover {
  background: var(--gold-dk);
}
@keyframes qf-shine {
  0% {
    left: -160%;
  }
  55%,
  100% {
    left: 160%;
  }
}
@keyframes qf-glint {
  0%,
  100% {
    border-color: rgba(227, 207, 166, 0.55);
    box-shadow: 0 0 0 1px rgba(227, 207, 166, 0.15);
  }
  50% {
    border-color: #fff4d6;
    box-shadow:
      0 0 0 1px rgba(255, 246, 224, 0.75),
      0 0 7px rgba(255, 238, 200, 0.55);
  }
}
@media (prefers-reduced-motion: reduce) {
  .quick-bar .qf-submit,
  .quick-bar .qf-submit::before {
    animation: none;
  }
}

/* =========================================================
   동의 내용 팝업 (AGREE MODAL)
   ========================================================= */
.agree-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.agree-modal.is-open {
  display: flex;
}
.agree-dim {
  position: absolute;
  inset: 0;
  background: rgba(31, 26, 22, 0.55);
  backdrop-filter: blur(2px);
}
.agree-panel[hidden] {
  display: none;
}
.agree-panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(31, 26, 22, 0.3);
  overflow: hidden;
  animation: agree-pop 0.25s ease;
}
@keyframes agree-pop {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.agree-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.agree-head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.agree-x {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: none;
  background: var(--beige);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-sub);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.agree-x:hover {
  background: var(--gold);
  color: #fff;
}
.agree-body {
  padding: 20px 22px 24px;
  overflow-y: auto;
  font-size: 13px;
  color: var(--ink-sub);
  line-height: 1.7;
}
.agree-body p {
  margin: 0 0 12px;
}
.agree-body p:last-child {
  margin-bottom: 0;
}
.agree-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 12.5px;
}
.agree-table th,
.agree-table td {
  border: 1px solid var(--line);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
.agree-table th {
  background: var(--beige);
  color: var(--gold-dk);
  font-weight: 700;
  white-space: nowrap;
}
.agree-table td {
  color: var(--ink);
}

/* =========================================================
   DESKTOP  (≥ 900px)
   ========================================================= */
@media (min-width: 900px) {
  .site-footer {
    padding-bottom: 76px;
  }

  /* HERO */
  .hero-copy {
    max-width: 560px;
    padding: 0;
  }
  /* 데스크탑: 하단 그라디언트 오버레이 높이 축소 */
  .hero-sw .swiper-slide::after {
    height: 35%;
  }
  /* 데스크탑에서만 영상 중앙 인물을 오른쪽으로 이동 (텍스트는 좌측) */
  .hero-video video {
    transform: translateX(17%);
  }
  /* 데스크탑: 상담바가 한 줄이라 컨트롤을 더 아래로 */
  .hero-controls {
    bottom: 110px;
  }

  /* EVENT */
  .event .wrap {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  .event-head {
    flex: 0 0 220px;
  }
  .event-media {
    flex: 1;
    min-width: 0;
  }
  /* 데스크탑 3분할: 그리드 코너 라운드 재현 */
  .event-sw .img-slot {
    border-radius: 0;
  }
  .event-sw .img-slot:nth-child(1) {
    border-radius: 40px 0 0 0;
  }
  .event-sw .img-slot:nth-child(3) {
    border-radius: 0 0 40px 0;
  }

  /* SIGNATURE */
  .signature .wrap {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 90px 20px;
  }
  /* 이미지 슬라이드 = 시그니처 왼쪽 절반을 가장자리까지 가득(풀 높이) */
  .sig-aside {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    /* .wrap(z-index:2)보다 위에 둬야 키 클릭이 .wrap에 가로채이지 않음 */
    z-index: 3;
  }
  .sig-sw,
  .sig-sw .swiper-wrapper,
  .sig-sw .swiper-slide,
  .sig-sw .img-slot {
    height: 100%;
  }
  .sig-sw {
    border-radius: 0; /* 가장자리까지 꽉 차도록 모서리 제거 */
    box-shadow: none;
  }
  .sig-sw .img-slot {
    aspect-ratio: auto; /* 비율 대신 부모 높이 100% */
  }
  /* 텍스트 = 오른쪽 절반 */
  .sig-body {
    position: relative;
    z-index: 2;
    margin-left: 50%;
    padding-left: 60px;
    max-width: none;
  }

  /* BEFORE & AFTER */
  .beforeafter .wrap {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
  .ba-media {
    flex: 1.2;
  }
  .ba-body {
    flex: 1;
  }

  /* STORY */
  .story {
    /* 의사 머리가 밴드 위로 올라오도록 상단 여백 확보, 하단은 섹션 바닥까지 */
    padding: 180px 0 0;
  }
  .story .wrap {
    flex-direction: row;
    align-items: center;
    min-height: 360px;
    padding: 56px 60px;
  }
  .story-copy {
    flex: 0 1 54%;
  }
  .story-photo {
    /* 밴드 위에 겹쳐 오른쪽 하단(섹션 바닥)에 붙고, 머리는 밴드 위로 노출 */
    position: absolute;
    right: 4%;
    bottom: 0;
    width: 42%;
    max-width: 380px;
    margin: 0;
    z-index: 3;
  }

  /* GALLERY */
  .gallery-main-sw {
    max-width: 880px;
    margin: 0 auto 14px;
  }
  .gallery-thumbs-sw {
    max-width: 880px;
    margin: 0 auto;
  }

  /* FOOTER */
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }
  .footer-top .ft-title {
    flex: 0 0 160px;
  }
  .ft-consult {
    flex: 0 0 200px;
  }
  .ft-hours {
    flex: 1;
  }
  .ft-location {
    flex: 0 0 280px;
  }

  /* FLOATING FAB — 상담바가 한 줄이라 더 아래·우측 여백 확대 */
  .floating-fab {
    right: 24px;
    bottom: 96px;
  }

  /* QUICK BAR */
  .quick-bar form {
    flex-wrap: nowrap;
  }
  .quick-bar .qf-name {
    flex: 0 0 130px;
  }
  .quick-bar .qf-tel {
    flex: 0 0 150px;
  }
  .quick-bar .qf-sel {
    flex: 0 0 170px;
  }
  .quick-bar .qf-agrees {
    flex: 1 1 auto;
  }
  .quick-bar .qf-submit {
    flex: 0 0 auto;
  }
}

/* =========================================================
   지방파괴주사 PLS 서브페이지 (홈페이지 팔레트)
   ========================================================= */
.tx-tab-panel#pls {
  background: var(--cream);
}
.pls-sec {
  padding: 44px 0;
}

/* ① 히어로 */
.pls-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 85% at 90% 28%, rgba(201, 167, 108, 0.3), transparent 55%), linear-gradient(160deg, var(--beige) 0%, var(--cream) 60%);
}
.pls-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.pls-hero-copy {
  position: relative;
  z-index: 2;
}
.pls-eyebrow {
  margin: 0 0 10px;
  font-size: clamp(15px, 2.6vw, 19px);
  font-weight: 500;
  color: var(--brown);
}
.pls-title {
  margin: 0 0 20px;
  line-height: 1.04;
}
.pls-title .pls-t1 {
  display: block;
  font-size: clamp(34px, 9vw, 56px);
  font-weight: 800;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pls-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.pls-pls {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(62px, 18vw, 116px);
  line-height: 0.9;
  background: linear-gradient(180deg, #e7cd96 0%, var(--gold-dk) 72%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pls-t2 {
  font-size: clamp(26px, 6vw, 44px);
  font-weight: 800;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pls-lead {
  margin: 0 0 24px;
  font-size: clamp(15px, 2.6vw, 19px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--brown);
}
.pls-price {
  display: flex;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.pls-price-item {
  flex: 1;
  padding: 18px 6px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.pls-price-item:last-child {
  border-right: none;
}
.pls-price-part {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 700;
  color: var(--ink);
}
.pls-price-val {
  font-size: clamp(18px, 3.6vw, 24px);
  font-weight: 800;
  color: var(--brown-dk);
}
.pls-price-val i {
  font-style: normal;
  font-size: 0.6em;
  font-weight: 700;
  margin-left: 1px;
}
.pls-vat {
  margin: 12px 4px 0;
  font-size: 12.5px;
  color: var(--ink-sub);
  text-align: center;
}
.pls-hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
}
.pls-hero-photo,
.pls-rec-img {
  background: linear-gradient(135deg, #f3e7d2 0%, #e6cfa6 50%, #d8b988 100%);
}
.pls-hero-photo.has-img,
.pls-rec-img.has-img {
  background: none;
}

/* 섹션 타이틀 (양쪽 골드 라인) */
.pls-sec-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 28px;
  font-size: clamp(18px, 3.2vw, 24px);
  font-weight: 700;
  color: var(--ink);
}
.pls-sec-title::before,
.pls-sec-title::after {
  content: '';
  width: clamp(28px, 8vw, 70px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dk));
}
.pls-sec-title::after {
  background: linear-gradient(to left, transparent, var(--gold-dk));
}

/* ②④ 특징 그리드 */
.pls-effects {
  background: var(--cream);
}
.pls-trust {
  background: var(--beige);
}
.pls-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.pls-feat {
  padding: 22px 14px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pls-feat:nth-child(2n) {
  border-right: none;
}
.pls-feat:nth-last-child(-n + 2) {
  border-bottom: none;
}
.pls-feat-ico {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  color: var(--gold-dk);
}
.pls-feat-ico svg {
  width: 100%;
  height: 100%;
}
.pls-feat strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(14px, 2.4vw, 16px);
  font-weight: 700;
  color: var(--ink);
}
.pls-feat p {
  margin: 0;
  font-size: clamp(12px, 2vw, 13.5px);
  line-height: 1.6;
  color: var(--ink-sub);
}

/* ③ 추천 부위 / 대상 */
.pls-rec {
  background: var(--cream);
}
.pls-rec-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.pls-rec-title {
  margin: 0 0 16px;
  font-size: clamp(17px, 2.8vw, 21px);
  font-weight: 700;
  color: var(--brown-dk);
}
.pls-area-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pls-area-list li {
  display: flex;
  align-items: center;
  padding: 11px 2px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid #f1ead9;
}
.pls-area-list li:last-child {
  border-bottom: none;
}
.pls-area-list li span {
  flex: 0 0 auto;
}
.pls-area-list li::after {
  content: '';
  flex: 1;
  margin-left: 10px;
  border-bottom: 1px dotted var(--beige-dk);
}
.pls-rec-img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
}
.pls-check {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pls-check li {
  position: relative;
  padding: 12px 0 12px 32px;
  font-size: clamp(13px, 2.2vw, 15px);
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.pls-check li:last-child {
  border-bottom: none;
}
.pls-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
}
.pls-check li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 17px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ⑤ 클로징 */
.pls-closing {
  padding: 30px 20px 46px;
  text-align: center;
  background: var(--cream);
}
.pls-closing p {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 2.6vw, 20px);
  letter-spacing: 0.01em;
  color: var(--brown-dk);
}

/* PLS 데스크탑 */
@media (min-width: 900px) {
  .pls-sec {
    padding: 64px 0;
  }
  .pls-hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 44px;
    padding-top: 56px;
    padding-bottom: 56px;
    min-height: 540px;
  }
  .pls-hero-copy {
    flex: 1 1 52%;
  }
  .pls-hero-photo {
    flex: 1 1 46%;
    align-self: stretch;
    aspect-ratio: auto;
    min-height: 540px;
  }
  .pls-feat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .pls-feat {
    padding: 30px 18px;
    border-bottom: none;
  }
  .pls-feat:nth-child(2n) {
    border-right: 1px solid var(--line);
  }
  .pls-feat:last-child {
    border-right: none;
  }
  .pls-feat-ico {
    width: 60px;
    height: 60px;
  }
  .pls-rec-inner {
    flex-direction: row;
    align-items: center;
    gap: 36px;
    padding: 40px 46px;
  }
  .pls-rec-area {
    flex: 0 0 190px;
  }
  .pls-rec-img {
    flex: 0 0 210px;
    max-width: 210px;
    margin: 0;
  }
  .pls-rec-target {
    flex: 1;
  }
}

/* =========================================================
   리프팅 (슈링크 유니버스 · 볼뉴머)  #lifting
   ========================================================= */
.lift-sec {
  padding: 36px 0;
}

/* ⓪ 리프팅 히어로 (인물 왼쪽 · 카피 오른쪽) */
.lift-hero {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%);
}
.lift-hero-photo {
  margin: 0;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.lift-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center; /* 와이드 배너에서 인물(우측)이 보이도록 */
}
.lift-hero-inner {
  position: relative;
  z-index: 2;
}
.lift-hero-copy {
  padding: 32px 0 40px;
  text-align: center;
}
.lift-hero-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: clamp(46px, 13vw, 84px);
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-lt) 0%, var(--gold) 45%, var(--gold-dk) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lift-hero-sub {
  margin: 16px 0 0;
  font-size: clamp(16px, 3vw, 21px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--brown);
}
.lift-hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px 0;
}
.lift-hero-rule i {
  width: clamp(40px, 16vw, 90px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.lift-hero-rule i:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.lift-hero-rule b {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  transform: rotate(45deg);
  border: 1px solid var(--gold-dk);
}
.lift-hero-feats {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 7vw, 56px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.lift-hero-feats li {
  text-align: center;
}
.lift-hero-ico {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dk);
}
.lift-hero-ico svg {
  width: 42px;
  height: 42px;
}
.lift-hero-feats li:nth-child(1) .lift-hero-ico svg {
  fill: var(--gold);
}
.lift-hero-feats li:nth-child(2) .lift-hero-ico svg,
.lift-hero-feats li:nth-child(2) .lift-hero-ico svg g {
  stroke: var(--gold);
}
.lift-hero-feats p {
  margin: 0;
  font-size: clamp(13px, 2.4vw, 15px);
  font-weight: 600;
  color: var(--ink);
}
.lift-hero-desc {
  margin: 26px 0 0;
  font-size: clamp(13px, 2.4vw, 15.5px);
  line-height: 1.7;
  color: var(--ink-sub);
}

/* 보톡스·필러 히어로 카피 */
.bf-hero-copy {
  text-align: center;
  padding: 40px 0 44px;
}
.bf-hero-title {
  letter-spacing: 0.02em;
  line-height: 0.98;
}
.bf-hero-dot {
  margin-left: 0.04em;
}
.bf-hero-program {
  margin: 14px 0 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(17px, 5vw, 27px);
  font-weight: 500;
  letter-spacing: 0.52em;
  color: var(--gold-dk);
}
.bf-hero-sub {
  margin: 24px 0 0;
  font-size: clamp(16px, 3.4vw, 21px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--brown);
}

/* ① 배너 */
.lift-banner {
  background: linear-gradient(180deg, var(--gold-lt) 0%, var(--gold) 52%, var(--gold-dk) 100%);
}
.lift-banner .wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}
.lift-banner-title {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: clamp(21px, 4.4vw, 31px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(120, 86, 30, 0.28);
}
.lift-banner-title em {
  font-style: normal;
  margin: 0 0.18em;
  opacity: 0.82;
}

/* ② 제품 2종 카드 */
.lift-products {
  background: var(--beige);
}
.lift-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lift-card {
  flex: 1;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.lift-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #f3e7d2 0%, #e6cfa6 50%, #d8b988 100%);
}
.lift-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 모바일: 그라데이션 위에 기기 이미지 가운데 정렬 */
  object-position: center;
}
.lift-card-body {
  padding: 22px 22px 26px;
}
.lift-card-logo {
  height: 50px;
  width: auto;
  max-width: max-content;
}
.lift-card-lead {
  margin: 26px 0 16px;
  font-size: clamp(15px, 2.6vw, 18px);
  font-weight: 600;
  line-height: 1.55;
  color: var(--brown);
}

/* 골드 체크 리스트 (구분선 없음) */
.lift-check {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lift-check li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: clamp(13px, 2.2vw, 15px);
  line-height: 1.5;
  color: var(--ink);
}
.lift-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--gold);
}
.lift-check li::after {
  content: '';
  position: absolute;
  left: 5.5px;
  top: 15.5px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ③ 가격 */
.lift-price-sec {
  background: var(--cream);
}
.lift-prices {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lift-price {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.lift-price-head {
  margin: 0;
  padding: 15px 16px;
  text-align: center;
  font-size: clamp(17px, 3vw, 20px);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dk) 100%);
}
.lift-price-list {
  list-style: none;
  margin: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lift-price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  background: var(--beige);
  border-radius: 10px;
}
.lift-shot {
  flex: 0 0 auto;
  min-width: 82px;
  padding: 8px 12px;
  text-align: center;
  font-size: clamp(14px, 2.4vw, 16px);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dk) 100%);
  border-radius: 8px;
}
.lift-won {
  font-size: clamp(18px, 3.8vw, 25px);
  font-weight: 800;
  color: var(--brown-dk);
}
.lift-won i {
  font-style: normal;
  font-size: 0.58em;
  font-weight: 700;
  margin-left: 1px;
}

/* ④ 추천 대상 */
.lift-rec {
  background: var(--beige);
}
.lift-rec-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lift-rec-item {
  flex: 0 0 31%;
  text-align: center;
}
.lift-rec-ico {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  color: var(--gold-dk);
}
.lift-rec-ico svg {
  width: 100%;
  height: 100%;
}
#botoxfillerprogram .lift-rec-ico svg {
  fill: var(--gold);
}
/* 리프팅: 채움형(얼굴) 아이콘도 골드-다크로 통일 (선형 아이콘은 :not([fill])로 제외) */
#lifting .lift-rec-ico svg:not([fill]) {
  fill: var(--gold-dk);
}
.lift-rec-item p {
  margin: 0;
  font-size: clamp(12px, 2.2vw, 14px);
  line-height: 1.5;
  color: var(--ink-sub);
}

/* 리프팅 데스크탑 */
@media (min-width: 900px) {
  .lift-sec {
    padding: 56px 0;
  }
  /* 인물 이미지를 히어로 전체 배경으로 깔고, 왼쪽에 크림 스크림 + 카피 오버레이
     → 카피 영역도 같은 인물 이미지 위에 있는 것처럼 보임 */
  .lift-hero {
    display: block;
    position: relative;
    min-height: 470px;
  }
  .lift-hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
  }
  .lift-hero-photo img {
    object-position: right center; /* 인물(우측) 노출 */
  }
  .lift-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(250, 245, 238, 0.97) 0%, rgba(250, 245, 238, 0.82) 30%, rgba(250, 245, 238, 0.32) 50%, rgba(250, 245, 238, 0) 64%);
  }
  .lift-hero-inner {
    min-height: 470px;
    display: flex;
    align-items: center;
  }
  .lift-hero-copy {
    width: 54%;
    padding: 48px 0;
  }
  .lift-cards {
    flex-direction: row; /* 슈링크·볼뉴머 두 카드를 한 줄에 나란히 */
    align-items: stretch;
    gap: 26px;
  }
  .lift-card {
    flex: 1;
    display: flex;
    flex-direction: row-reverse; /* DOM: 이미지→내용 순 → 내용 왼쪽, 이미지 오른쪽 */
    align-items: stretch;
  }
  .lift-card-img {
    flex: 0 0 42%;
    aspect-ratio: auto;
    align-self: stretch;
    min-height: 300px;
    background: none; /* 데스크탑은 그라데이션 없이 카드 크림 배경 유지 */
  }
  .lift-card-img img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
  .lift-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
  }
  .lift-prices {
    flex-direction: row;
    align-items: flex-start;
    gap: 26px;
  }
  .lift-rec-grid {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .lift-rec-item {
    flex: 1;
  }
  .lift-rec-ico {
    width: 54px;
    height: 54px;
  }
}

/* =========================================================
   보톡스 · 필러 프로그램 (botoxfiller-program)
   ========================================================= */
.bf-sec {
  padding: 40px 0;
}
.bf-botox {
  background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%);
}
.bf-filler {
  background: var(--beige);
}

/* EN 섹션 타이틀 (Playfair + 양쪽 라인) */
.bf-sec-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4vw, 26px);
  margin: 0 0 28px;
}
.bf-sec-title span {
  flex: 0 0 auto;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0.14em;
  font-size: clamp(24px, 6vw, 38px);
  color: var(--brown);
}
.bf-sec-title::before,
.bf-sec-title::after {
  content: '';
  flex: 1;
  max-width: 190px;
  height: 1px;
  background: var(--gold-dk);
  opacity: 0.5;
}

/* 카드 (이미지 + 표) */
.bf-tables {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bf-card {
  display: flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.bf-card-img {
  flex: 0 0 36%;
  align-self: stretch;
  min-height: 150px;
  background: var(--beige-md);
}
.bf-table {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.bf-table-head {
  margin: 0;
  padding: 14px 16px;
  text-align: center;
  font-size: clamp(15px, 2.6vw, 18px);
  font-weight: 700;
  color: var(--brown-dk);
  background: var(--beige-md);
  border-bottom: 1px solid var(--line);
}
.bf-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bf-rows li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
}
.bf-rows li + li {
  border-top: 1px solid var(--line);
}
.bf-name {
  font-size: clamp(13px, 2.4vw, 15px);
  font-weight: 500;
  color: var(--ink);
}
.bf-won {
  font-size: clamp(15px, 3vw, 19px);
  font-weight: 800;
  color: var(--gold-dk);
  white-space: nowrap;
}
.bf-won i {
  font-style: normal;
  font-size: 0.62em;
  font-weight: 700;
  margin-left: 1px;
  color: var(--ink-sub);
}

/* 필러 섹션 (표 카드 + 제품 카드) */
.bf-filler-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bf-card--filler {
  flex-direction: column;
}
.bf-card--filler .bf-card-img {
  flex: 0 0 auto;
  width: 100%;
  height: 180px;
}
.bf-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr) minmax(0, 1.1fr);
}
.bf-grid > span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 17px 8px;
  font-size: clamp(12px, 2.3vw, 14.5px);
  color: var(--ink);
  word-break: keep-all;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.bf-grid > span:nth-child(3n) {
  border-right: none;
}
.bf-grid > span:nth-last-child(-n + 3) {
  border-bottom: none;
}
.bf-gh {
  font-weight: 700;
  color: var(--brown-dk);
  background: var(--beige-md);
}

/* 제품 카드 */
.bf-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.bf-product-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  background: var(--beige-md);
}

.bf-product-cap {
  margin: 16px 0 0;
  font-size: clamp(13px, 2.4vw, 15px);
  line-height: 1.6;
  color: var(--ink-sub);
}

/* 보톡스·필러 데스크탑 */
@media (min-width: 900px) {
  .bf-sec {
    padding: 60px 0;
  }
  .bf-tables {
    flex-direction: row;
    align-items: stretch;
    gap: 26px;
  }
  .bf-tables .bf-card {
    flex: 1;
  }
  .bf-filler-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 26px;
  }
  .bf-card--filler {
    flex: 2.5;
    flex-direction: row;
  }
  .bf-card--filler .bf-card-img {
    flex: 0 0 32%;
    width: auto;
    height: auto;
  }
  .bf-product {
    flex: 0.8;
    justify-content: center;
  }
}

/* =========================================================
   약관 / 개인정보처리방침 (법무 페이지)
   ========================================================= */
.tx-tab-panel#privacy,
.tx-tab-panel#terms {
  background: var(--cream);
}
.legal {
  padding: 36px 0 56px;
}
.legal .wrap {
  max-width: 880px;
}
.legal-head {
  text-align: center;
  padding-bottom: 26px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gold);
}
.legal-eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold-dk);
}
.legal-title {
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: var(--ink);
}
.legal-updated {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--ink-sub);
}
.legal-art {
  margin-bottom: 30px;
}
.legal-art h2 {
  margin: 0 0 12px;
  padding-left: 12px;
  font-size: clamp(16px, 2.6vw, 19px);
  font-weight: 700;
  color: var(--brown-dk);
  border-left: 3px solid var(--gold);
  line-height: 1.4;
}
.legal-art p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-sub);
}
.legal-art ul {
  margin: 0 0 12px;
  padding-left: 20px;
}
.legal-art li {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-sub);
}
.legal-art a {
  color: var(--gold-dk);
  text-decoration: underline;
}
.legal-foot {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.legal-table-wrap {
  overflow-x: auto;
  margin: 12px 0;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.legal-table th,
.legal-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
.legal-table th {
  background: var(--beige);
  color: var(--gold-dk);
  font-weight: 700;
  white-space: nowrap;
}
.legal-table td {
  color: var(--ink);
}
@media (min-width: 900px) {
  .legal {
    padding: 56px 0 80px;
  }
  .legal-art {
    margin-bottom: 38px;
  }
}

/* =========================================================
   제모 프로그램  (hairremoval)  #hairremoval
   ========================================================= */
/* 채움형(fill) 아이콘도 모두 골드-다크로 통일. 선형 아이콘(fill="none")은 :not([fill])로 제외 */
#hairremoval .lift-rec-ico svg:not([fill]),
#hairremoval .hr-price-ico svg:not([fill]),
#hairremoval .hr-row-ico svg:not([fill]),
#hairremoval .hr-feat-ico svg:not([fill]),
#hairremoval .hr-pack-ico svg:not([fill]) {
  fill: var(--gold-dk);
}

/* ⓪ 히어로 (lift-hero 재사용 + 타이틀만 커스텀) */
.hr-hero-title {
  margin: 0;
  font-size: clamp(30px, 7vw, 52px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: var(--brown-dk);
}
.hr-hero-kr {
  margin: 10px 0 0;
  font-size: clamp(17px, 3.4vw, 22px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.hr-hero-lead {
  margin: 0 0 10px;
  font-size: clamp(17px, 3.4vw, 22px);
  font-weight: 700;
  color: var(--ink);
}
.hr-hero-desc {
  margin: 0;
  font-size: clamp(13px, 2.3vw, 15px);
  line-height: 1.7;
  color: var(--ink-sub);
}

/* ① 부위별 가격표 */
.hr-price-sec {
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
}
.hr-price-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hr-price-card {
  flex: 1;
  padding: 26px 20px 24px;
  background: #faf6ee;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.hr-price-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.hr-price-ico {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: var(--gold-dk);
}
.hr-price-ico svg {
  width: 100%;
  height: 100%;
}
.hr-price-title {
  text-align: left;
}
.hr-price-title b {
  display: block;
  font-size: clamp(19px, 3.6vw, 23px);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brown-dk);
}
.hr-price-title .en {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--gold-dk);
}
.hr-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hr-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 2px;
  border-bottom: 1px solid #efe6d4;
}
.hr-row:last-child {
  border-bottom: none;
}
.hr-row-ico {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: var(--gold-dk);
}
.hr-row-ico svg {
  width: 100%;
  height: 100%;
}
.hr-row-name {
  flex: 1;
  font-size: clamp(14px, 2.7vw, 16px);
  font-weight: 500;
  color: var(--ink);
}
.hr-won {
  flex: 0 0 auto;
  font-size: clamp(16px, 3vw, 19px);
  font-weight: 700;
  color: var(--brown-dk);
  white-space: nowrap;
}
.hr-won i {
  font-style: normal;
  font-size: 0.65em;
  font-weight: 500;
}
.hr-won em {
  font-style: normal;
  color: var(--gold-dk);
}
.hr-note {
  margin: 16px 2px 0;
  text-align: right;
  font-size: clamp(11px, 2vw, 12.5px);
  color: var(--ink-sub);
}

/* ② PACKAGE PROGRAM */
.hr-pack {
  background: var(--beige);
}
.hr-pack-grid {
  display: grid;
  grid-template-columns: 1fr;
  background: #faf6ee;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.hr-pack-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px;
  border-bottom: 1px solid var(--line);
}
.hr-pack-item:last-child {
  border-bottom: none;
}
.hr-pack-ico {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--gold-dk);
}
.hr-pack-ico svg {
  width: 100%;
  height: 100%;
}
.hr-pack-txt strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(15px, 2.7vw, 17px);
  font-weight: 700;
  color: var(--ink);
}
.hr-pack-txt p {
  margin: 0;
  font-size: clamp(12.5px, 2.1vw, 14px);
  line-height: 1.6;
  color: var(--ink-sub);
}

/* ④ 특장점 (lift-rec 패턴 + 제목/부제) */
.hr-feat-sec {
  background: var(--cream);
}
.hr-feat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hr-feat {
  flex: 0 0 30%;
  text-align: center;
}
.hr-feat-ico {
  display: block;
  width: 38px;
  height: 38px;
  margin: 4px auto 16px;
  color: var(--gold-dk);
}
.hr-feat-ico svg {
  width: 100%;
  height: 100%;
}
.hr-feat strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(13px, 2.4vw, 15px);
  font-weight: 700;
  color: var(--ink);
}
.hr-feat p {
  margin: 0;
  font-size: clamp(11.5px, 2vw, 13px);
  line-height: 1.55;
  color: var(--ink-sub);
}

/* ⑤ 패키지 가격 바 */
.hr-pkg-sec {
  background: var(--beige);
}
.hr-pkg-bar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 20px;
  background: #faf6ee;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.hr-pkg {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hr-pkg + .hr-pkg {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.hr-pkg-badge {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-lt) 0%, var(--gold-dk) 100%);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.hr-pkg-body {
  flex: 1;
  min-width: 0;
}
.hr-pkg-label {
  display: block;
  margin-bottom: 3px;
  font-size: clamp(13px, 2.3vw, 15px);
  font-weight: 500;
  color: var(--ink);
}
.hr-pkg-price {
  display: block;
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--brown-dk);
}
.hr-pkg-price small {
  font-size: 0.5em;
  font-weight: 700;
}
.hr-pkg-old {
  font-size: 0.5em;
  font-weight: 600;
  color: var(--ink-sub);
  text-decoration: line-through;
}
.hr-pkg-arrow {
  font-size: 0.5em;
  color: var(--gold-dk);
}
.hr-pkg-sub {
  display: block;
  margin-top: 3px;
  font-size: clamp(11.5px, 2vw, 13px);
  color: var(--ink-sub);
}
.hr-vat {
  margin: 14px 0 0;
  text-align: center;
  font-size: clamp(12px, 2.1vw, 13.5px);
  color: var(--ink-sub);
}

/* 제모 데스크탑 */
@media (min-width: 900px) {
  .hr-hero-desc {
    margin-top: 4px;
  }
  .hr-price-grid {
    flex-direction: row;
    align-items: flex-start;
  }
  .hr-pack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hr-pack-item {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
    border-right: 1px solid var(--line);
    padding: 30px 26px;
  }
  .hr-pack-item:last-child {
    border-right: none;
  }
  .hr-pack-ico {
    margin-bottom: 6px;
  }
  .hr-feat-grid {
    flex-wrap: nowrap;
    gap: 12px;
  }
  .hr-feat {
    flex: 1;
  }
  .hr-feat-ico {
    width: 44px;
    height: 44px;
  }
  .hr-pkg-bar {
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    padding: 30px 34px;
  }
  .hr-pkg {
    flex: 1;
  }
  .hr-pkg + .hr-pkg {
    padding-top: 0;
    padding-left: 30px;
    border-top: none;
    border-left: 1px solid var(--line);
  }
}

/* =========================================================
   이벤트 (subpage/event.html)
   ========================================================= */
.evt-sec {
  padding: 44px 0;
}

/* ① 히어로 */
.evt-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 85% at 90% 28%, rgba(201, 167, 108, 0.3), transparent 55%), linear-gradient(160deg, var(--beige) 0%, var(--cream) 60%);
}
.evt-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
.evt-hero-en {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--gold-dk);
  text-transform: uppercase;
}
.evt-hero-title {
  margin: 0 0 14px;
  font-size: clamp(24px, 5.4vw, 38px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
}
.evt-hero-title b {
  font-weight: 700;
  color: var(--brown-dk);
}
.evt-hero-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-sub);
  word-break: auto-phrase;
}
/* 모바일에서는 줄바꿈(br) 없이 자연스럽게 흐르도록 */
@media (max-width: 899px) {
  .evt-hero-desc br {
    display: none;
  }
}
.evt-hero-img {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.evt-hero-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* ② 이벤트 리스트 */
.evt-list {
  background: var(--cream);
}
.evt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.evt-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.evt-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-lt);
  box-shadow: 0 14px 30px rgba(61, 52, 44, 0.12);
}
.evt-card-img {
  margin: 0;
  overflow: hidden;
}
.evt-card-img img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s;
}
.evt-card:hover .evt-card-img img {
  transform: scale(1.04);
}
.evt-card-body {
  padding: 20px 22px 24px;
}
.evt-card-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold-dk);
  background: var(--beige-md);
  border-radius: 999px;
}
.evt-card-title {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.evt-card-desc {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-sub);
}
.evt-card-more {
  font-size: 13px;
  color: var(--gold-dk);
}
.evt-card-more::after {
  content: '→';
  margin-left: 6px;
  transition: margin-left 0.2s;
}
.evt-card:hover .evt-card-more::after {
  margin-left: 10px;
}

/* ③ 안내 */
.evt-notice {
  background: var(--beige);
}
.evt-notice-box {
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.evt-notice-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.evt-notice-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  text-align: left;
}
.evt-notice-list li {
  position: relative;
  padding-left: 14px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-sub);
}
.evt-notice-list li::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.evt-notice-btn {
  display: inline-block;
  min-width: 200px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: var(--brown);
  border-radius: 999px;
  transition: background 0.25s;
}
.evt-notice-btn:hover {
  background: var(--gold-dk);
}

@media (min-width: 900px) {
  .evt-sec {
    padding: 0px 0 80px;
  }
  .evt-hero-inner {
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .evt-hero-img {
    width: 100%;
    max-width: 640px;
  }
  .evt-hero-desc {
    font-size: 16px;
  }
  .evt-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .evt-notice-box {
    padding: 44px 50px;
  }
  .evt-notice-list {
    display: inline-block;
  }
}

/* ============================================================
   가격 비공개 유틸 — 서브페이지의 가격 영역은 숨기고
   가격은 이벤트 페이지에서만 노출한다.
   (해당 블록 클래스에서 is-price-hidden 만 제거하면 다시 노출)
   ============================================================ */
.is-price-hidden {
  display: none !important;
}

/* ============================================================
   이벤트 — 클릭 시 가격이 열리는 아코디언 카드
   (썸네일 + 이벤트 제목 → 누르면 가격 노출)
   ============================================================ */
.evt-group + .evt-group {
  margin-top: 44px;
}
.evt-group-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.evt-group-title {
  font-size: clamp(17px, 3vw, 22px);
  font-weight: 700;
  color: var(--ink);
}
.evt-group-en {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dk);
}

.evt-acc-list {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
}
@media (min-width: 900px) {
  .evt-acc-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.evt-acc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.evt-acc:hover {
  border-color: var(--gold-lt);
  box-shadow: 0 14px 32px rgba(61, 52, 44, 0.12);
  transform: translateY(-3px);
}

/* 카드(버튼): 썸네일(위) + 태그·제목·설명(아래) 세로형 — 클릭 시 가격 팝업 */
.evt-acc-head {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.evt-acc-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--beige-md);
}
.evt-acc-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.evt-acc:hover .evt-acc-thumb img {
  transform: scale(1.05);
}
.evt-acc-info {
  min-width: 0;
  padding: 16px 16px 18px;
}
.evt-acc-tag {
  display: inline-block;
  margin-bottom: 9px;
  padding: 3px 9px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold-dk);
  background: var(--beige-md);
  border-radius: 999px;
}
.evt-acc-tag.hot {
  color: #fff;
  background: var(--gold-dk);
}
.evt-acc-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}
.evt-acc-sub {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-sub);
}
/* 아코디언 chevron 숨김 — 팝업 트리거이므로 하단 '가격 보기' 안내로 대체 */
.evt-acc-ico {
  display: none;
}

/* 가격 내용 — 화면에는 숨기고, 팝업(모달)의 데이터 소스로만 사용 */
.evt-acc-panel {
  display: none;
}
.evt-acc-inner {
  margin: 0;
  padding: 0;
}

/* ── 가격 팝업(모달) ─────────────────────────────────── */
.evt-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.evt-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.evt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(40, 30, 22, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.evt-modal-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  max-height: 86vh;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(40, 30, 20, 0.32);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.28s ease;
}
.evt-modal.is-open .evt-modal-dialog {
  transform: none;
}
.evt-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.evt-modal-close:hover {
  color: #fff;
  background: var(--gold-dk);
  border-color: var(--gold-dk);
}
.evt-modal-close svg {
  width: 16px;
  height: 16px;
}
.evt-modal-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.evt-modal-thumb {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--beige-md);
}
.evt-modal-thumb[hidden] {
  display: none;
}
.evt-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.evt-modal-htxt {
  min-width: 0;
}
.evt-modal-tag {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 9px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold-dk);
  background: var(--beige-md);
  border-radius: 999px;
}
.evt-modal-tag.hot {
  color: #fff;
  background: var(--gold-dk);
}
.evt-modal-tag[hidden] {
  display: none;
}
.evt-modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.evt-modal-sub {
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-sub);
}
.evt-modal-sub[hidden] {
  display: none;
}
.evt-modal-body {
  padding: 20px 22px 24px;
  overflow-y: auto;
}
body.evt-modal-lock {
  overflow: hidden;
}

/* 가격 위 소개 블록 (팝업 상단) */
.evt-pr-intro {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.evt-pr-intro-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--gold-dk);
  border-radius: 999px;
}
.evt-pr-intro-title {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.evt-pr-intro-lead {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--brown-dk);
}
.evt-pr-intro-desc {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink-sub);
}
.evt-pr-intro-note {
  display: flex;
  gap: 7px;
  margin: 0;
  padding: 11px 13px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--brown-dk);
  background: var(--beige-md);
  border-radius: 10px;
}
.evt-pr-intro-note::before {
  content: '✓';
  flex: 0 0 auto;
  color: var(--gold-dk);
  font-weight: 700;
}
/* 소개 문구가 설명 위에 올 때는 아래 여백을 준다 */
.evt-pr-intro-note:not(:last-child) {
  margin-bottom: 14px;
}
/* 가격표 없이 소개만 있는 경우(예: Celltox+PRP) 하단 구분선 제거 */
.evt-pr-intro:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

/* 팝업: 시술 효과 목록 (소개 블록 안에 들어감) */
.evt-pr-feats {
  margin-top: 16px;
}
.evt-pr-feats-cap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown-dk);
}
.evt-pr-feats-cap::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--gold-dk);
}
.evt-pr-feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.evt-pr-feat-list strong {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.evt-pr-feat-list strong::before {
  content: '';
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dk);
}
.evt-pr-feat-list li p {
  margin: 0;
  padding-left: 13px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-sub);
}
@media (min-width: 480px) {
  .evt-pr-feat-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* 팝업: 3분할 특징 배지 (제목 + 캡션) */
.evt-pr-badges {
  list-style: none;
  margin: 14px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.evt-pr-badges li {
  padding: 13px 8px;
  text-align: center;
  background: var(--beige-md);
  border-radius: 10px;
}
.evt-pr-badges strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  word-break: keep-all;
}
.evt-pr-badges span {
  display: block;
  margin-top: 5px;
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--ink-sub);
  word-break: keep-all;
}

/* 가격 그룹 / 행 */
.evt-pr-grp + .evt-pr-grp {
  margin-top: 20px;
}
.evt-pr-cap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown-dk);
}
.evt-pr-cap .en {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold-dk);
}
.evt-pr-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 2px;
  border-bottom: 1px solid var(--line);
}
.evt-pr-row:last-child {
  border-bottom: 0;
}
.evt-pr-name {
  font-size: 14px;
  color: var(--ink);
}
.evt-pr-name small {
  margin-left: 5px;
  font-size: 12px;
  color: var(--ink-sub);
}
.evt-pr-val {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.evt-pr-val .unit {
  margin-left: 1px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-sub);
}
.evt-pr-val .was {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #b3a897;
  text-decoration: line-through;
}
.evt-pr-val.evt-sale {
  color: var(--gold-dk);
}
.evt-pr-val.consult {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dk);
}
.evt-pr-vat {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--ink-sub);
  text-align: right;
}

@media (min-width: 900px) {
  .evt-acc-head {
    padding: 0;
  }
  .evt-acc-info {
    padding: 18px 20px 20px;
  }
  .evt-acc-title {
    font-size: 18px;
  }
  .evt-acc-sub {
    font-size: 14px;
  }
  .evt-acc-inner {
    margin: 0 20px;
    padding: 22px 6px 24px;
  }
  .evt-pr-grp {
    max-width: 620px;
  }
  .evt-pr-name,
  .evt-pr-val {
    font-size: 15px;
  }
}
