/* ============================================================
   더타이마사지 THE THAI MASSAGE — 공식 홈페이지 스타일
   콘셉트: 밝은 베이지 · 우드 계열의 차분한 고급 스파
   ============================================================ */

/* ---------- 1. 디자인 토큰 ---------- */
:root {
  --bg:        #F7F1E8;
  --bg-deep:   #F1E8DB;
  --surface:   #FFFDF9;
  --ink:       #3A2D26;
  --ink-soft:  #6B584C;
  --ink-mute:  #8A7767;
  --wood:      #9A7658;
  --gold:      #B6935C;
  --line:      #DED0BF;
  --line-soft: #E9DECE;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(58, 45, 38, .04), 0 4px 12px rgba(58, 45, 38, .04);
  --shadow-md: 0 2px 4px rgba(58, 45, 38, .05), 0 12px 32px rgba(58, 45, 38, .07);

  --font-display: "Gowun Batang", "Nanum Myeongjo", "Apple SD Gothic Neo", "Batang", serif;
  --font-body: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif;

  --header-h: 74px;
  --mobile-bar-h: 76px;

  --wrap: 1160px;
  --gutter: clamp(18px, 5vw, 40px);

  /* 아주 은은한 태국풍 격자/나뭇잎 패턴 */
  --pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%239A7658' stroke-width='1'%3E%3Cpath d='M42 6 78 42 42 78 6 42z'/%3E%3Ccircle cx='42' cy='42' r='7'/%3E%3Cpath d='M42 0v6M42 78v6M0 42h6M78 42h6'/%3E%3C/g%3E%3C/svg%3E");
}

/* ---------- 2. 기본 리셋 ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: -.01em;
  word-break: keep-all;
  overflow-wrap: anywhere;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -.02em;
  margin: 0;
}

p, ul, ol, dl, figure { margin: 0; }
ul, ol { list-style: none; padding: 0; }

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; }
img { display: block; height: auto; }

s { text-decoration-thickness: 1px; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- 3. 포커스 & 스킵 링크 ---------- */
:focus-visible {
  outline: 2px solid var(--wood);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--ink);
  color: var(--surface);
  padding: 12px 22px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: .95rem;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; }

/* ---------- 4. 레이아웃 ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(56px, 9vw, 108px);
  scroll-margin-top: calc(var(--header-h) + 8px);
  position: relative;
}

.section__head { margin-bottom: clamp(28px, 4vw, 48px); max-width: 44rem; }
.section__head--center { margin-inline: auto; text-align: center; }

.section__eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--wood);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section__title { font-size: clamp(1.6rem, 4.2vw, 2.4rem); }

.section__desc {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: clamp(.95rem, 2.4vw, 1.03rem);
}

/* 얇은 골드 구분선 */
.section__head--center .section__title::after,
.section__head:not(.section__head--center) .section__title::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section__head--center .section__title::after {
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- 5. 아이콘 ---------- */
.ic {
  width: 22px;
  height: 22px;
  flex: none;
  vertical-align: middle;
}
.ic--sm { width: 17px; height: 17px; }
.ic--lg { width: 30px; height: 30px; color: var(--wood); }

/* ---------- 6. 버튼 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--ink);
  color: var(--surface);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: #2E241E; }

.btn--outline {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover { border-color: var(--wood); }

.btn--lg { min-height: 58px; padding: 16px 30px; font-size: 1.06rem; }

.btn--xl {
  min-height: 64px;
  padding: 18px 34px;
  font-size: clamp(1.05rem, 3.6vw, 1.2rem);
  width: 100%;
}
.btn--xl .ic { width: 24px; height: 24px; }

.btn--block { width: 100%; }

.btn__label { display: inline-flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 6px; }
.btn__tel { font-variant-numeric: tabular-nums; letter-spacing: .01em; white-space: nowrap; }

/* ---------- 7. 헤더 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 232, .88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line-soft);
  background: rgba(247, 241, 232, .96);
}

.site-header__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* 로고 */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__mark { color: var(--wood); display: inline-flex; }
.logo__mark svg { width: 30px; height: 30px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__ko {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -.02em;
}
.logo__en {
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--wood);
  font-weight: 600;
}
.logo__img { height: 40px; width: auto; }

/* 내비게이션 */
.nav__list { display: flex; align-items: center; gap: 4px; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .97rem;
  font-weight: 500;
  color: var(--ink);
  transition: background-color .18s ease, color .18s ease;
}
.nav__link:hover { background: rgba(154, 118, 88, .1); }

.nav__link--cta {
  background: var(--ink);
  color: var(--surface);
  font-weight: 600;
  padding: 11px 20px;
  margin-left: 8px;
}
.nav__link--cta:hover { background: #2E241E; color: var(--surface); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

/* ---------- 8. 첫 화면 ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 8vw, 96px) clamp(56px, 9vw, 104px);
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(182, 147, 92, .13), transparent 58%),
    radial-gradient(90% 70% at 0% 100%, rgba(154, 118, 88, .1), transparent 60%),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pattern);
  background-size: 84px 84px;
  opacity: .16;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero__ornament {
  position: absolute;
  top: -30px;
  right: -70px;
  width: min(46vw, 460px);
  color: var(--wood);
  opacity: .17;
  pointer-events: none;
}
.hero__ornament svg { width: 100%; height: auto; }

.hero__inner { position: relative; z-index: 1; }
.hero__content { max-width: 46rem; }

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 2.8vw, 1.05rem);
  letter-spacing: .04em;
  color: var(--wood);
  margin-bottom: 18px;
}
.hero__eyebrow-en { letter-spacing: .16em; font-size: .82em; font-family: var(--font-body); font-weight: 600; }

.hero__title {
  font-size: clamp(1.85rem, 6.2vw, 3.35rem);
  line-height: 1.36;
  margin-bottom: 22px;
}
.hero__title-line { display: block; }
.hero__title-line--accent { color: var(--wood); }

.hero__lead {
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 26px;
}

.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, .8);
  font-size: .89rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.badge .ic { color: var(--wood); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 34rem;
}
.hero__actions .btn--xl { flex: 1 1 100%; }

/* ---------- 9. 핵심 장점 ---------- */
.section--points { background: var(--bg-deep); }

.point-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.point-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.point-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-soft);
}
.point-card__title { font-size: 1.1rem; margin: 14px 0 8px; }
.point-card__desc { font-size: .93rem; color: var(--ink-soft); line-height: 1.7; }

/* ---------- 10. 프로그램명 표기 (한글 + 영문) ---------- */
.program-name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  margin: 0;
}
.program-name__ko { font-family: var(--font-display); font-weight: 700; }
.program-name__en {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--wood);
  white-space: nowrap;
}

.program-name--md .program-name__ko { font-size: clamp(1.2rem, 3.6vw, 1.42rem); }
.program-name--md .program-name__en { font-size: clamp(.82rem, 2.7vw, .92rem); }

.program-name--lg .program-name__ko { font-size: clamp(1.28rem, 4vw, 1.6rem); }
.program-name--lg .program-name__en { font-size: clamp(.84rem, 2.8vw, .95rem); }

/* ---------- 11. 전화예약 프로모션 ---------- */
.section--promo {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.section--promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pattern);
  background-size: 84px 84px;
  opacity: .1;
  pointer-events: none;
}
.section--promo > .wrap { position: relative; z-index: 1; }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.promo-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 36px);
  box-shadow: var(--shadow-md);
}
.promo-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--line-soft);
  border-radius: calc(var(--radius-lg) - 7px);
  pointer-events: none;
}
.promo-card > * { position: relative; }

.promo-card__time {
  margin-top: 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--wood);
  letter-spacing: .01em;
}
.promo-card__course {
  margin-top: 4px;
  font-size: 1rem;
  color: var(--ink-soft);
}
.promo-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.promo-card__price-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--surface);
  background: var(--wood);
  padding: 4px 12px;
  border-radius: 999px;
  line-height: 1.5;
}
.promo-card__price-value {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.won { font-size: .5em; font-weight: 600; margin-left: 2px; font-family: var(--font-body); }

.promo-foot {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.promo-foot .btn { min-width: min(100%, 320px); }

.note {
  font-size: .86rem;
  color: var(--ink-mute);
  text-align: center;
}
.note--left { text-align: left; }

/* ---------- 12. 가격표 ---------- */
.section--price { background: var(--bg-deep); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.6vw, 34px);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.price-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 6px;
}
.price-card__head .ic--lg { margin-top: 2px; }

.price-list { display: flex; flex-direction: column; }

.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 6px 12px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.price-row:last-child { border-bottom: 0; }

.price-row__course {
  font-weight: 600;
  font-size: 1.02rem;
  white-space: nowrap;
}
.price-row__time {
  font-size: .92rem;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-row__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 3.6vw, 1.3rem);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}

/* 커플코스 */
.couple-block {
  margin-top: 20px;
  padding: 18px clamp(16px, 2.4vw, 22px) 6px;
  background: rgba(182, 147, 92, .07);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.couple-block__title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 1.02rem;
  color: var(--ink);
}
.couple-block__title .ic { color: var(--wood); }
.couple-block__tag {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--wood);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 2px 9px;
  line-height: 1.6;
}

.price-row--couple { grid-template-columns: auto 1fr; padding: 16px 0; }
.price-row--couple .price-row__value {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px 12px;
  text-align: right;
}
.price-was {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-mute);
}
.price-now {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: clamp(1.22rem, 4.4vw, 1.5rem);
  color: var(--ink);
}
.price-now__label {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--surface);
  background: var(--wood);
  border-radius: 999px;
  padding: 3px 10px;
  line-height: 1.5;
  white-space: nowrap;
}

.price-foot {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  text-align: center;
}
.price-foot__text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.2vw, 1.2rem);
  font-weight: 700;
}

/* ---------- 13. 매장 소개 ---------- */
.section--about { background: var(--bg); }

.about {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.about__aside {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 253, 249, .95), rgba(241, 232, 219, .8));
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.about__aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pattern);
  background-size: 84px 84px;
  opacity: .14;
}
.about__num {
  position: relative;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--wood);
}
.about__num-label {
  position: relative;
  display: block;
  margin-top: 12px;
  font-size: .72rem;
  letter-spacing: .18em;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.9;
}

.about__text {
  font-size: clamp(1rem, 2.6vw, 1.08rem);
  color: var(--ink-soft);
  margin-top: 18px;
  line-height: 1.95;
}

.about__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.about__meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .93rem;
  font-weight: 500;
}
.about__meta .ic { color: var(--wood); }

/* ---------- 14. 편의시설 ---------- */
.section--facilities { background: var(--bg-deep); }

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}
.facility {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.facility__title { font-size: 1.1rem; margin: 14px 0 8px; }
.facility__desc { font-size: .93rem; color: var(--ink-soft); }

/* ---------- 15. 갤러리 (사진 등록 시에만 노출) ---------- */
.section--gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.gallery-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--ink-soft);
}

/* ---------- 16. 오시는 길 ---------- */
.section--location { background: var(--bg); }

.location {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.location__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.4vw, 34px);
  box-shadow: var(--shadow-sm);
}

.info-list { display: flex; flex-direction: column; }
.info-list__row {
  display: grid;
  grid-template-columns: minmax(96px, auto) minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.info-list__row:last-child { border-bottom: 0; }
.info-list dt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: .94rem;
}
.info-list dt .ic { color: var(--wood); }
.info-list dd {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 500;
}

.link-tel {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
  white-space: nowrap;
}
.link-tel:hover { text-decoration-color: var(--wood); }

.location__actions { display: flex; flex-direction: column; gap: 10px; }
.location__actions .note { margin-top: 6px; }

/* ---------- 17. 푸터 ---------- */
.site-footer {
  background: var(--ink);
  color: #EDE3D6;
  padding-block: clamp(38px, 6vw, 60px);
}
.site-footer__inner { display: flex; flex-direction: column; gap: 18px; }

.site-footer__brand { display: flex; flex-direction: column; gap: 4px; }
.site-footer__ko {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFDF9;
}
.site-footer__en {
  font-size: .74rem;
  letter-spacing: .22em;
  color: var(--gold);
  font-weight: 600;
}

.site-footer__info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  font-size: .95rem;
  color: #DCCFC0;
}
.site-footer__info .link-tel { color: #FFFDF9; text-decoration-color: rgba(255, 253, 249, .4); }

.site-footer__copy {
  font-size: .8rem;
  color: rgba(237, 227, 214, .6);
  padding-top: 16px;
  border-top: 1px solid rgba(237, 227, 214, .16);
}

/* ---------- 18. 모바일 하단 고정 메뉴 ---------- */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 8px;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 253, 249, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(58, 45, 38, .07);
}

.mobile-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}
.mobile-bar__btn--primary {
  background: var(--ink);
  color: var(--surface);
  border-color: var(--ink);
}

/* ---------- 19. 스크롤 등장 효과 (가볍게) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- 20. 반응형 ---------- */
@media (min-width: 981px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
}

@media (max-width: 980px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: inline-flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: block; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px var(--gutter) 18px;
  }
  .nav__link {
    justify-content: flex-start;
    padding: 14px 12px;
    border-radius: var(--radius-sm);
    font-size: 1.02rem;
  }
  .nav__link--cta { justify-content: center; margin: 8px 0 0; }

  .about { grid-template-columns: 1fr; }
  .about__aside {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 22px 24px;
    text-align: left;
  }
  .about__num { font-size: 3.2rem; }
  .about__num-label { margin-top: 0; }

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

@media (max-width: 640px) {
  .hero__actions { max-width: none; }
  .hero__actions .btn--outline { flex: 1 1 auto; }

  .badge { font-size: .84rem; padding: 7px 13px; }

  .price-row { grid-template-columns: auto 1fr; }
  .price-row__value { grid-column: 1 / -1; text-align: left; }
  .price-row--couple .price-row__value { justify-content: flex-start; }

  .price-foot { flex-direction: column; }
  .price-foot .btn { width: 100%; }

  .promo-foot .btn { width: 100%; }

  .info-list__row { grid-template-columns: 1fr; gap: 4px; }

  .site-footer__info { flex-direction: column; gap: 6px; }
}

@media (max-width: 360px) {
  .logo__mark svg { width: 26px; height: 26px; }
  .logo__ko { font-size: 1.08rem; }
  .mobile-bar__btn { font-size: .94rem; gap: 6px; }
  .btn { padding-inline: 18px; }
  .btn--lg { padding-inline: 20px; }
  .btn--xl { padding-inline: 20px; }
  .price-card, .promo-card { padding-inline: 18px; }
}

/* ---------- 21. 동작 최소화 선호 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- 22. 인쇄 ---------- */
@media print {
  .site-header, .mobile-bar, .hero__ornament { display: none !important; }
  body { background: #fff; padding-bottom: 0; }
  .js .reveal { opacity: 1; transform: none; }
}
