/* ==========================================================================
   온결 산후케어 — DREXLY 템플릿
   정본: 6번 폴더 00-디자인보드.png(색·활자·사이트맵) + 02-페이지시안.png(각 면 세부)
   레이아웃 원형: Split + Comparison + Sticky Booking
   ========================================================================== */

:root {
  /* 색 — 디자인보드 팔레트 */
  --cream: #fff7f2;          /* Warm Cream */
  --rose: #d9a7ad;           /* Muted Rose */
  --sage: #a8bba1;           /* Sage */
  --brown: #5b4b43;          /* Deep Brown */
  --gray: #f1f1f1;           /* Soft Gray */

  /* 파생 — 명도대비(AA) 를 맞춘 실사용 값 */
  --rose-deep: #b35768;      /* 흰 글자 4.68:1 */
  --rose-press: #9c4759;
  --rose-ink: #a24f60;       /* 크림 위 글자 5.19:1 */
  --rose-tint: #fbeeea;
  --rose-line: #eddcd8;
  --sage-deep: #6b7962;      /* 흰 글자 4.63:1 */
  --sage-tint: #eef1e9;
  --sage-line: #dbe1d4;

  --ink: #45382f;
  --ink2: #6e6058;
  --muted: #766c63;
  --surface: #ffffff;
  --surface2: #fdf6f1;
  --line: #ece0d9;
  --line-soft: #f4eae4;

  /* 글꼴 */
  --sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --serif: "Noto Serif KR", "Nanum Myeongjo", Georgia, serif;

  /* 조판 — 8px 체계 */
  --wrap: 1240px;
  --gutter: 40px;
  --section: 112px;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(91, 75, 67, 0.05);
  --shadow: 0 2px 6px rgba(91, 75, 67, 0.05), 0 16px 40px rgba(91, 75, 67, 0.07);
  --ease: cubic-bezier(0.22, 0.7, 0.28, 1);

  /* z-index */
  --z-bar: 40;
  --z-header: 60;
  --z-scrim: 80;
  --z-drawer: 90;
  --z-toast: 120;
}

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.005em;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.36; letter-spacing: -0.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd, dt { margin: 0; }
figure { margin: 0; }
blockquote { margin: 0; }

:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 200;
  background: var(--rose-deep);
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
}
.skip:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

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

.ico {
  width: 22px; height: 22px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico-sm { width: 16px; height: 16px; stroke-width: 1.5; }
.ico-lg { width: 28px; height: 28px; stroke-width: 1.15; }

/* 사진 액자 — 인라인이면 aspect-ratio 가 안 먹는다 */
.frame {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface2);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------- 활자 */
.display {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.34;
  letter-spacing: -0.03em;
}
.page-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.32;
  letter-spacing: -0.03em;
}
.sec-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(21px, 2.3vw, 27px);
  line-height: 1.42;
}
.sub-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}
.label {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: var(--rose-ink);
}
.lead {
  font-size: clamp(15px, 1.35vw, 16.5px);
  line-height: 1.85;
  color: var(--ink2);
}
.caption { font-size: 12.5px; line-height: 1.7; color: var(--muted); }

/* 섹션 머리 — 홈은 가운데, 내부 면은 왼쪽 (시안 그대로) */
.sec { padding: var(--section) 0; }
.sec-tight { padding: calc(var(--section) * 0.66) 0; }
.sec-cream { background: var(--cream); }
.sec-white { background: var(--surface); }
.sec-sage { background: var(--sage-tint); }
.sec-rose { background: var(--rose-tint); }

.sec-head { margin-bottom: 48px; }
.sec-head .sec-title { margin-top: 10px; }
.sec-head p { margin-top: 14px; color: var(--ink2); font-size: 15.5px; }
.sec-head.center { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: 52px; }
.sec-head.left { display: flex; flex-direction: column; align-items: flex-start; }
.sec-head.left .sec-title { position: relative; padding-left: 16px; }
.sec-head.left .sec-title::before {
  content: "";
  position: absolute;
  left: 0; top: 0.34em; bottom: 0.24em;
  width: 3px;
  border-radius: 2px;
  background: var(--rose);
}

/* --------------------------------------------------------------- 버튼 */
.btn {
  --bg: transparent;
  --fg: var(--ink);
  --bd: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--bd);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--fg);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.16s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn[aria-disabled="true"] {
  --bg: var(--gray); --fg: #9a938e; --bd: var(--gray);
  pointer-events: none;
}
.btn-primary { --bg: var(--rose-deep); --fg: #fff; --bd: var(--rose-deep); }
.btn-primary:hover { --bg: var(--rose-press); --bd: var(--rose-press); }
.btn-secondary { --bg: var(--surface); --fg: var(--rose-ink); --bd: var(--rose); }
.btn-secondary:hover { --bg: var(--rose-tint); }
.btn-ghost { --bg: transparent; --fg: var(--ink2); --bd: var(--line); }
.btn-ghost:hover { --bd: var(--rose); --fg: var(--rose-ink); }
.btn-onsage { --bg: #fff; --fg: var(--sage-deep); --bd: #fff; }
.btn-onsage:hover { --bg: var(--sage-tint); --fg: var(--sage-deep); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 14px; }
.btn-block { width: 100%; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: var(--rose-ink);
  font-size: 14.5px;
  font-weight: 600;
}
.btn-text .ico { transition: transform 0.25s var(--ease); }
.btn-text:hover .ico { transform: translateX(4px); }

/* --------------------------------------------------------------- 헤더 */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255, 247, 242, 0.92);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(255, 247, 242, 0.97);
  box-shadow: 0 1px 0 var(--line), 0 10px 26px rgba(91, 75, 67, 0.05);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 78px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.brand-mark { width: 30px; height: 30px; color: var(--rose-deep); flex: none; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}
.brand-name em {
  font-style: normal;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--rose-ink);
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 15.5px;
  font-weight: 500;
}
.navlinks a {
  position: relative;
  padding: 8px 0;
  color: var(--ink2);
  transition: color 0.25s var(--ease);
}
.navlinks a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transition: transform 0.28s var(--ease);
}
.navlinks a:hover { color: var(--ink); }
.navlinks a[aria-current="page"] { color: var(--rose-ink); font-weight: 600; }
.navlinks a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
}
.nav-tel .ico { color: var(--rose-deep); }
.nav-tel:hover { color: var(--rose-ink); }
.menu-btn {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* 모바일 서랍 */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(330px, 88vw);
  z-index: var(--z-drawer);
  background: var(--surface);
  border-left: 1px solid var(--line);
  padding: 20px 22px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.open { transform: none; }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.drawer-close {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.drawer-nav { display: flex; flex-direction: column; margin: 6px 0 18px; }
.drawer-nav a {
  display: flex;
  align-items: center;
  min-height: 54px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.drawer-nav a[aria-current="page"] { color: var(--rose-ink); }
.drawer-cta { display: grid; gap: 10px; }
.drawer-cta .btn { justify-content: flex-start; }
.drawer-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--muted);
}
.scrim {
  position: fixed;
  inset: 0;
  z-index: var(--z-scrim);
  background: rgba(69, 56, 47, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.scrim.open { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------- 하단 고정 예약 바 */
.bookbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-bar);
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--rose-line);
  box-shadow: 0 -6px 26px rgba(91, 75, 67, 0.07);
  transform: translateY(102%);
  transition: transform 0.4s var(--ease);
}
.bookbar.show { transform: none; }
.bookbar-in {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.bookbar-lead { display: flex; flex-direction: column; margin-right: auto; }
.bookbar-lead strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.bookbar-lead span { font-size: 13px; color: var(--muted); }
.bookbar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-left: 1px solid var(--line-soft);
  color: var(--ink);
}
.bookbar-item .ico { color: var(--rose-deep); }
.bookbar-item b { font-size: 14.5px; font-weight: 600; display: block; }
.bookbar-item small { font-size: 12px; color: var(--muted); display: block; }
.bookbar-item:hover b { color: var(--rose-ink); }

/* --------------------------------------------------------------- 토스트(상단) */
.toast {
  position: fixed;
  left: 50%; top: 22px;
  z-index: var(--z-toast);
  transform: translate(-50%, -14px);
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: calc(100vw - 32px);
  padding: 14px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 14px 34px rgba(69, 56, 47, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast .ico { color: var(--rose); }

.spinner {
  width: 15px; height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------- 등장 */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════ 홈 — 히어로 */
.home-hero { padding: 26px 0 0; }
.hero-panel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  background: var(--surface2);
}
.hero-panel > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(60, 44, 38, 0.82) 0%, rgba(60, 44, 38, 0.6) 38%, rgba(60, 44, 38, 0.1) 68%, rgba(60, 44, 38, 0) 100%);
}
.hero-copy {
  position: relative;
  padding: 64px 56px 56px;
  max-width: 640px;
  color: #fff;
}
.hero-copy .display { color: #fff; }
.hero-copy .lead { color: rgba(255, 255, 255, 0.9); margin-top: 18px; }
.hero-label { color: #f3d6d6; letter-spacing: 0.16em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-actions .btn-onsage { --fg: var(--rose-press); }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}
.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.94);
}
.hero-facts .ico { color: #f0cfd0; }

/* ═══════════════════════════════════════════════ 의료 신뢰 원장 */
.trust {
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.trust-row {
  display: grid;
  grid-template-columns: 216px minmax(0, 1fr) 196px;
  gap: 24px;
  align-items: start;
  padding: 26px 30px;
  border-top: 1px solid var(--line-soft);
}
.trust-row:first-child { border-top: 0; }
.trust-key {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.trust-key .ico { color: var(--sage-deep); }
.trust-val { font-size: 15px; color: var(--ink2); line-height: 1.8; }
.trust-val b { color: var(--ink); font-weight: 600; }
.trust-num {
  justify-self: end;
  text-align: right;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--sage-deep);
  line-height: 1.35;
}
.trust-num small {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.trust-note { margin-top: 16px; }

/* ═══════════════════════════════════════════════ 약속 4열 레일 */
.promise {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rose-line);
  border-bottom: 1px solid var(--rose-line);
}
.promise-item {
  padding: 34px 26px;
  border-left: 1px solid var(--rose-line);
  text-align: center;
}
.promise-item:first-child { border-left: 0; }
.promise-ring {
  width: 62px; height: 62px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--rose-deep);
}
.promise-item h3 { font-size: 16.5px; font-weight: 700; }
.promise-item p { margin-top: 8px; font-size: 14px; color: var(--ink2); }

/* ═══════════════════════════════════════════════ 에디토리얼 스플릿 */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 56px;
  align-items: center;
}
.split-media .frame { aspect-ratio: 3 / 2; }
.split-list { border-top: 1px solid var(--line); margin-top: 28px; }
.split-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}
.split-row .ico {
  color: var(--rose-deep);
  margin-top: 3px;
}
.split-row h3 { font-size: 16.5px; font-weight: 700; }
.split-row p { margin-top: 5px; font-size: 14.5px; color: var(--ink2); }
.split-more { margin-top: 26px; }

/* ═══════════════════════════════════════════════ 하루 타임 레일 */
.dayrail {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 8px;
}
.dayrail::before {
  content: "";
  position: absolute;
  left: 12px; top: 12px; bottom: 12px;
  width: 2px;
  background: var(--sage-line);
}
.dayrail::after {
  content: "";
  position: absolute;
  left: 12px; top: 12px;
  width: 2px;
  height: var(--rail, 0%);
  background: var(--sage-deep);
  transition: height 1.1s var(--ease);
}
.dayrail li {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 15px 0 15px 40px;
}
.dayrail li::before {
  content: "";
  position: absolute;
  left: 7px; top: 24px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--sage-deep);
}
.dayrail.in { --rail: 100%; }
.day-time {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--sage-deep);
  letter-spacing: 0.01em;
}
.day-act { font-size: 15.5px; color: var(--ink); font-weight: 500; }

/* ═══════════════════════════════════════════════ 후기 */
.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: center;
  padding: 44px 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.story-quote {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.62;
  font-weight: 600;
  color: var(--ink);
}
.story-cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 13.5px;
  color: var(--muted);
}
.story-mark { font-size: 30px; color: var(--rose); line-height: 1; font-family: var(--serif); }
.story-media .frame { aspect-ratio: 3 / 2; }
.story-more {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.story-more li {
  padding: 24px 0 4px;
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.8;
}
.story-more li + li { border-left: 0; }
.story-more b { display: block; margin-top: 8px; font-size: 13px; color: var(--muted); font-weight: 500; }

/* ═══════════════════════════════════════════════ 정보 스트립 */
.infostrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.infostrip > div {
  display: flex;
  gap: 16px;
  padding: 30px 30px;
  border-left: 1px solid var(--line-soft);
}
.infostrip > div:first-child { border-left: 0; }
.info-ring {
  width: 44px; height: 44px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage-deep);
}
.infostrip h3 { font-size: 15px; font-weight: 700; }
.infostrip p { margin-top: 6px; font-size: 14px; color: var(--ink2); }
.infostrip a:hover { color: var(--rose-ink); }

/* ═══════════════════════════════════════════════ 세이지 CTA 밴드 */
.cta-band { background: var(--sage-deep); color: #fff; }
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 52px;
  padding-bottom: 52px;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  line-height: 1.5;
}
.cta-band p { margin-top: 10px; font-size: 14.5px; color: rgba(255, 255, 255, 0.88); }

/* 세이지 배너(사진 동반) — 객실 면 */
.sage-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: center;
  background: var(--sage-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 42px 44px;
}
.sage-banner h2 {
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 25px);
  font-weight: 600;
  line-height: 1.55;
}
.sage-banner p { margin-top: 12px; font-size: 14.5px; color: rgba(255, 255, 255, 0.88); }
.sage-banner .btn { margin-top: 24px; }
.sage-banner .frame { aspect-ratio: 3 / 2; }

/* ═══════════════════════════════════════════════ 내부 면 히어로 (Split) */
.page-hero {
  background: var(--surface2);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 56px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.page-hero .lead { margin-top: 16px; }
.page-hero .page-title { margin-top: 12px; }
.page-hero .frame { aspect-ratio: 16 / 10; }
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.chip-fact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid var(--rose-line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 13px;
  color: var(--ink2);
}
.chip-fact .ico { color: var(--sage-deep); }

/* 이동 경로 */
.crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
}
.crumb a:hover { color: var(--rose-ink); }
.crumb .ico { width: 13px; height: 13px; }

/* ═══════════════════════════════════════════════ 객실 — 비교 */
.cmp-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  padding: 16px 20px;
  margin-bottom: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.cmp-tools-label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.pick {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.pick:hover { border-color: var(--rose); }
.pick input { width: 18px; height: 18px; accent-color: var(--rose-deep); cursor: pointer; }
.pick:has(input:checked) { border-color: var(--rose); background: var(--rose-tint); color: var(--rose-ink); font-weight: 600; }
.pick input:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 2px; }
.toggle-diff { margin-left: auto; }
.toggle-diff[aria-pressed="true"] { --bg: var(--rose-tint); --bd: var(--rose); --fg: var(--rose-ink); }

.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp {
  min-width: 780px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cmp caption {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.cmp th, .cmp td {
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
  padding: 15px 18px;
  font-size: 14.5px;
  text-align: center;
  vertical-align: middle;
}
.cmp thead th { border-top: 0; }
.cmp th:first-child, .cmp td:first-child { border-left: 0; }
.cmp-rowhead {
  width: 150px;
  text-align: left;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink2);
  background: var(--surface2);
  white-space: nowrap;
}
.cmp-colhead {
  padding: 0;
  background: var(--surface);
}
.cmp-colhead .cmp-name {
  display: block;
  padding: 13px 10px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  background: var(--rose-tint);
}
.cmp-col-lead .cmp-name { background: var(--rose-deep); color: #fff; }
.cmp-shot { padding: 14px 14px 0; }
.cmp-shot .frame { aspect-ratio: 4 / 3; }
.cmp-desc { font-size: 13.5px; color: var(--ink2); line-height: 1.7; }
.cmp-feat { text-align: left; }
.cmp-feat li {
  position: relative;
  padding-left: 13px;
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.9;
}
.cmp-feat li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rose);
}
.cmp-price {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}
.cmp-price small { font-family: var(--sans); font-size: 12.5px; font-weight: 500; color: var(--muted); display: block; }
.cmp tbody tr:hover td:not(.cmp-rowhead) { background: #fffaf7; }
.cmp .is-off { display: none; }
.cmp-cta { padding: 14px; }

/* 잔여 상태 — 색만이 아니라 글자·아이콘으로도 구분 */
.stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
}
.stat .ico { width: 14px; height: 14px; }
.stat-ok { background: var(--sage-tint); color: #46543e; border-color: var(--sage-line); }
.stat-few { background: #fdf1e6; color: #8a5320; border-color: #f0dcc6; }
.stat-full { background: var(--gray); color: #5f5a56; border-color: #e2e0de; }
.stat-note { display: block; margin-top: 6px; font-size: 12px; color: var(--muted); }

/* 모바일 객실 스와이프 */
.swipe { display: none; }
.swipe-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--gutter);
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.swipe-track::-webkit-scrollbar { display: none; }
.swipe-card {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.swipe-card .frame { border-radius: 0; aspect-ratio: 3 / 2; }
.swipe-body { padding: 18px 18px 20px; }
.swipe-body h3 { font-family: var(--serif); font-size: 19px; font-weight: 700; }
.swipe-price {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--rose-ink);
}
.swipe-price small { font-size: 12.5px; font-weight: 500; color: var(--muted); }
.swipe-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 12px 0 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--ink2);
}
.swipe-spec span { display: inline-flex; align-items: center; gap: 6px; }
.swipe-spec .ico { color: var(--rose-deep); width: 15px; height: 15px; }
.swipe-actions { display: grid; gap: 8px; margin-top: 14px; }
.swipe-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}
.swipe-nav button {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}
.swipe-nav button[disabled] { opacity: 0.4; pointer-events: none; }
.swipe-count { font-size: 14px; color: var(--ink2); font-variant-numeric: tabular-nums; }

/* 비교 서랍(모바일) */
.sheet-open { display: none; }
.sheet-head { display: none; }

/* 공용 편의시설 */
.amen {
  background: var(--rose-tint);
  border: 1px solid var(--rose-line);
  border-radius: var(--radius);
  padding: 28px 30px 32px;
}
.amen h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--rose-ink);
  margin-bottom: 22px;
}
.amen ul {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px 10px;
}
.amen li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--ink2);
  text-align: center;
}
.amen .ico { color: var(--rose-deep); }

/* 이용 안내 4칸 */
.guide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.guide > div { padding: 24px 24px 26px; border-left: 1px solid var(--line-soft); }
.guide > div:first-child { border-left: 0; }
.guide h3 { font-size: 15px; font-weight: 700; }
.guide p { margin-top: 8px; font-size: 14px; color: var(--ink2); }

/* ═══════════════════════════════════════════════ 케어 — 타임라인 */
.tline {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.tline-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 190px minmax(0, 1fr);
  gap: 26px;
  padding: 30px 32px;
  border-top: 1px solid var(--line-soft);
}
.tline-item:first-child { border-top: 0; }
.tline-ring {
  width: 66px; height: 66px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--rose-line);
  background: var(--rose-tint);
  color: var(--rose-deep);
  position: relative;
}
.tline-item:not(:last-child) .tline-ring::after {
  content: "";
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 62px;
  background: var(--rose-line);
}
.tline-when {
  font-size: 15px;
  font-weight: 700;
  color: var(--rose-ink);
}
.tline-stage {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
}
.tline-list { border-left: 1px solid var(--line-soft); padding-left: 26px; }
.tline-list li {
  position: relative;
  padding: 6px 0 6px 24px;
  font-size: 14.5px;
  color: var(--ink2);
  line-height: 1.75;
}
.tline-list li b {
  display: inline-block;
  min-width: 44px;
  margin-right: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--sage-deep);
}
.tline-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 17px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
}

/* 케어 탭 */
.tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: var(--surface2);
}
.tab {
  min-height: 56px;
  padding: 0 10px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink2);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.tab:first-child { border-left: 0; }
.tab:hover { background: var(--rose-tint); color: var(--rose-ink); }
.tab[aria-selected="true"] { background: var(--rose-deep); color: #fff; }
.tabpanels {
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--surface);
  padding: 34px 36px;
}
.tabpanel[hidden] { display: none; }
.care-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 36px;
  align-items: start;
}
.care-main { min-width: 0; }
.care-media .caption { margin-top: 10px; }
.care-list li {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
}
.care-list li:first-child { border-top: 0; padding-top: 0; }
.care-ring {
  width: 42px; height: 42px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--rose-line);
  color: var(--rose-deep);
}
.care-list h4 { font-size: 15.5px; font-weight: 700; }
.care-list p { margin-top: 4px; font-size: 14px; color: var(--ink2); }
.care-media .frame { aspect-ratio: 286 / 367; }

/* 케어 약속 */
.pledge {
  background: var(--rose-tint);
  border: 1px solid var(--rose-line);
  border-radius: var(--radius);
  padding: 34px 36px 38px;
}
.pledge > h2 { font-family: var(--serif); font-size: 21px; color: var(--rose-ink); margin-bottom: 26px; }
.pledge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.pledge-grid > div {
  padding: 0 24px;
  border-left: 1px solid var(--rose-line);
  text-align: center;
}
.pledge-grid > div:first-child { border-left: 0; }
.pledge-grid .ico { color: var(--rose-deep); margin-bottom: 12px; }
.pledge-grid h3 { font-size: 15.5px; font-weight: 700; }
.pledge-grid p { margin-top: 7px; font-size: 13.5px; color: var(--ink2); }

/* 아코디언 */
.accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.acc-item { border-top: 1px solid var(--line-soft); }
.acc-item:first-child { border-top: 0; }
.acc-trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 64px;
  padding: 16px 24px;
  background: none;
  border: 0;
  text-align: left;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.acc-trigger .acc-q {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--rose-deep);
  flex: none;
}
.acc-trigger .acc-mark { margin-left: auto; color: var(--muted); transition: transform 0.25s var(--ease); }
.acc-item.open .acc-trigger .acc-mark { transform: rotate(180deg); }
.acc-trigger:hover { background: var(--surface2); }
.acc-panel { display: none; padding: 0 24px 22px 64px; }
.acc-item.open .acc-panel { display: block; animation: accIn 0.28s var(--ease); }
.acc-panel p { font-size: 14.5px; color: var(--ink2); line-height: 1.85; }
@keyframes accIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════════════ 가격 — 계산기 */
.calc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 36px;
  align-items: start;
}
.calc-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px 30px;
}
.calc-box + .calc-box { margin-top: 22px; }
.calc-box > h2 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.calc-field {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 12px 0;
}
.calc-field > .calc-label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.calc-field .req { color: var(--rose-deep); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 14.5px;
  color: var(--ink2);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.chip input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  margin: 0;
}
.chip:hover { border-color: var(--rose); color: var(--rose-ink); }
.chip:has(input:checked) {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: #fff;
  font-weight: 600;
}
.chip:has(input:focus-visible) { outline: 2px solid var(--rose-deep); outline-offset: 2px; }
.chip small { font-size: 12px; opacity: 0.85; margin-left: 6px; }
.chip:has(input:disabled) { opacity: 0.45; pointer-events: none; }

.calc-out { font-size: 14px; color: var(--ink2); }
.calc-out b { color: var(--ink); font-weight: 600; }
.calc-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--surface2);
  border: 1px solid var(--rose-line);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--ink2);
}
.calc-note .ico { color: var(--rose-deep); margin-top: 2px; }
.opt-why { display: block; font-size: 12px; color: var(--rose-ink); margin-top: 2px; }
.chip-state {
  margin-left: 7px;
  font-size: 11.5px;
  font-weight: 700;
  color: #8a5320;
}
.chip:has(input:disabled) .chip-state { color: #7a746f; }

.opt-list { display: grid; gap: 0; }
.opt {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
  cursor: pointer;
  min-height: 60px;
}
.opt:first-child { border-top: 0; }
.opt input { width: 20px; height: 20px; accent-color: var(--rose-deep); cursor: pointer; }
.opt-name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.opt-desc { display: block; font-size: 12.5px; font-weight: 400; color: var(--muted); margin-top: 2px; }
.opt-price { font-size: 14px; font-weight: 600; color: var(--rose-ink); white-space: nowrap; }
.opt-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 14px 40px;
}
.opt-qty label { font-size: 13px; color: var(--ink2); }
.qty-input {
  width: 78px;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 14px;
  text-align: center;
  color: var(--ink);
  background: var(--surface);
}
.qty-input:disabled { background: var(--gray); color: #9a938e; }

.ledger {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--rose-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ledger > h2 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--line);
}
.ledger-body { padding: 8px 26px 4px; min-height: 120px; }
.ledger-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
}
.ledger-row:first-child { border-top: 0; }
.ledger-row dt { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.ledger-row dt small { display: block; font-size: 12.5px; font-weight: 400; color: var(--muted); }
.ledger-row dd {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.ledger-row dd.inc { color: var(--sage-deep); font-weight: 500; }
.ledger-row dd.off { color: var(--sage-deep); }
.ledger-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px 8px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
}
.ledger-total dt { font-size: 16px; font-weight: 700; }
.ledger-total .sum {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  color: var(--rose-ink);
  font-variant-numeric: tabular-nums;
}
.ledger-vat { padding: 0 26px 20px; text-align: right; font-size: 12px; color: var(--muted); }
.ledger-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 26px 24px; }
.ledger-empty {
  padding: 26px 0 30px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.ledger-empty .ico { color: var(--rose); margin: 0 auto 10px; }
.ledger.is-busy .ledger-body { opacity: 0.45; transition: opacity 0.15s linear; }

/* 포함/미포함 */
.incl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.incl-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px 28px;
}
.incl-box h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line-soft);
}
.incl-yes h3 { color: var(--sage-deep); }
.incl-no h3 { color: var(--rose-ink); }
.incl-box li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  font-size: 14.5px;
  color: var(--ink2);
}
.incl-box .ico { margin-top: 4px; }
.incl-yes .ico { color: var(--sage-deep); }
.incl-no .ico { color: var(--rose); }

/* 예약·입실 안내 표 */
.factrow {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  border-top: 1px solid var(--line-soft);
}
.factrow:first-of-type { border-top: 0; }
.facts {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.factrow dt {
  padding: 16px 22px;
  background: var(--surface2);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.factrow dd { padding: 16px 22px; font-size: 14.5px; color: var(--ink2); }

.notice {
  background: var(--surface2);
  border: 1px solid var(--rose-line);
  border-radius: var(--radius);
  padding: 24px 28px 26px;
}
.notice h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.notice li {
  position: relative;
  padding: 5px 0 5px 15px;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.8;
}
.notice li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rose);
}

/* ═══════════════════════════════════════════════ 투어 예약 */
.stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 40px;
}
.stepper li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}
.stepper li::after {
  content: "";
  position: absolute;
  top: 24px; left: calc(50% + 32px); right: calc(-50% + 32px);
  height: 1px;
  background: var(--line);
}
.stepper li:last-child::after { display: none; }
.step-ring {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gray);
  color: var(--muted);
  border: 1px solid transparent;
}
.stepper li[data-state="done"] .step-ring { background: var(--sage-tint); color: var(--sage-deep); border-color: var(--sage-line); }
.stepper li[data-state="done"] { color: var(--sage-deep); font-weight: 600; }
.stepper li[aria-current="step"] .step-ring { background: var(--rose-tint); color: var(--rose-deep); border-color: var(--rose); }
.stepper li[aria-current="step"] { color: var(--rose-ink); font-weight: 700; }

.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  align-items: start;
}
.book-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px 30px;
}
.book-box + .book-box { margin-top: 22px; }
.book-box > h2 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

/* 달력 */
.cal-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
}
.cal-head button {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}
.cal-head button[disabled] { opacity: 0.35; pointer-events: none; }
.cal-title { font-family: var(--serif); font-size: 18px; font-weight: 700; min-width: 150px; text-align: center; }
.cal-dow, .cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.cal-dow span {
  text-align: center;
  padding: 8px 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}
.cal-dow span:first-child { color: var(--rose-ink); }
.cal-grid { gap: 3px; }
.cal-cell { min-height: 46px; }
.cal-day {
  width: 100%;
  min-height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.cal-day .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage-deep);
}
.cal-day:hover { background: var(--rose-tint); border-color: var(--rose); }
.cal-day[disabled] {
  color: #b3aaa4;
  cursor: not-allowed;
  text-decoration: line-through;
  background: transparent;
}
.cal-day[disabled] .dot { background: transparent; border: 1px solid #cfc7c2; }
.cal-day[aria-pressed="true"] {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: #fff;
  font-weight: 700;
}
.cal-day[aria-pressed="true"] .dot { background: #fff; }
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--ink2);
}
.cal-legend li { display: flex; align-items: center; gap: 8px; }
.lg { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--line); }
.lg-ok { background: var(--sage-tint); border-color: var(--sage-deep); }
.lg-off { background: var(--gray); }
.lg-sel { background: var(--rose-deep); border-color: var(--rose-deep); }

.datefield {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.datefield label { font-size: 13.5px; font-weight: 600; color: var(--ink2); }

/* 폼 */
.field { display: grid; gap: 8px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink2); }
.field label .req { color: var(--rose-deep); }
.control {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.control::placeholder { color: #a79e98; }
.control:hover { border-color: #ddcfc7; }
.control:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(217, 167, 173, 0.24);
}
.control:disabled { background: var(--gray); color: #9a938e; }
textarea.control { min-height: 118px; resize: vertical; line-height: 1.7; }
select.control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23766c63' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.field.filled .control { background: #fffdfc; }
.field.invalid .control { border-color: #b3454a; box-shadow: 0 0 0 3px rgba(179, 69, 74, 0.12); }
.err {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #a03a40;
}
.field.invalid .err { display: flex; }
.counter { text-align: right; font-size: 12px; color: var(--muted); }

.agree {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 16px 0 6px;
  border-top: 1px solid var(--line-soft);
  font-size: 13.5px;
  color: var(--ink2);
}
.agree input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--rose-deep); flex: none; }
.agree.invalid { color: #a03a40; }
.agree a { text-decoration: underline; text-underline-offset: 3px; }

.book-side {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
}
.recap {
  background: var(--surface);
  border: 1px solid var(--rose-line);
  border-radius: var(--radius);
  padding: 24px 26px 26px;
}
.recap h2 { font-family: var(--serif); font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.recap dl { display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 10px 12px; font-size: 14px; }
.recap dt { color: var(--muted); }
.recap dd { color: var(--ink); font-weight: 600; }
.recap dd.none { color: #a79e98; font-weight: 400; }
.recap .btn { margin-top: 22px; }
.tick li {
  display: flex;
  gap: 9px;
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
}
.tick li:first-child { border-top: 0; padding-top: 0; }
.tick .ico { color: var(--sage-deep); margin-top: 5px; flex: none; }

.tour-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  margin-top: 22px;
  gap: 24px;
  align-items: center;
  background: var(--rose-tint);
  border: 1px solid var(--rose-line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.tour-note h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 10px; color: var(--rose-ink); }
.tour-note li {
  position: relative;
  padding: 4px 0 4px 15px;
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.8;
}
.tour-note li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--rose-deep);
}
.tour-note .frame { aspect-ratio: 220 / 198; }

.book-done {
  display: none;
  text-align: center;
  padding: 46px 30px 50px;
  background: var(--surface);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
}
.book-done.show { display: block; }
.done-ring {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage-deep);
}
.book-done h2 { font-family: var(--serif); font-size: 23px; font-weight: 700; }
.book-done > p { margin-top: 12px; font-size: 14.5px; color: var(--ink2); }
.done-recap {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 8px 18px;
  margin: 24px auto 4px;
  padding: 18px 26px;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: left;
}
.done-recap dt { color: var(--muted); }
.done-recap dd { font-weight: 600; }
.done-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }

/* ═══════════════════════════════════════════════ 푸터 */
.site-footer {
  background: var(--sage-deep);
  color: rgba(255, 255, 255, 0.86);
  /* 하단 고정 예약 바가 마지막 줄을 가리지 않도록 여유를 둔다 */
  padding: 56px 0 116px;
  font-size: 13.5px;
  line-height: 1.85;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 150px 170px 200px;
  gap: 40px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name em { color: rgba(255, 255, 255, 0.72); }
.footer-brand .brand-mark { color: #fff; }
.footer-addr { margin-top: 18px; }
.footer-copy { margin-top: 14px; font-size: 12.5px; color: rgba(255, 255, 255, 0.62); }
.footer-col h3 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer-col li a, .footer-col a { display: inline-block; padding: 3px 0; }
.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-tel {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  font-family: var(--serif);
  letter-spacing: 0.01em;
}
.footer-hours { color: rgba(255, 255, 255, 0.72); }

/* ═══════════════════════════════════════════════ 반응형 */
@media (max-width: 1180px) {
  :root { --wrap: 1024px; --section: 96px; --gutter: 32px; }
  .navlinks { gap: 22px; font-size: 15px; }
  .calc { grid-template-columns: minmax(0, 1fr) 340px; gap: 26px; }
  .book-grid { grid-template-columns: minmax(0, 1fr) 320px; gap: 26px; }
  .page-hero .wrap { grid-template-columns: minmax(0, 1fr) 380px; gap: 40px; }
  .story { grid-template-columns: minmax(0, 1fr) 250px; gap: 34px; padding: 36px 34px; }
  .trust-row { grid-template-columns: 190px minmax(0, 1fr) 170px; }
  .tline-item { grid-template-columns: 86px 160px minmax(0, 1fr); gap: 20px; padding: 26px; }
}

@media (max-width: 1024px) {
  :root { --section: 84px; }
  .navlinks, .nav-tel, .nav-actions .btn { display: none; }
  .menu-btn { display: inline-flex; margin-left: auto; }
  .nav { gap: 16px; height: 68px; }
  .calc, .book-grid { grid-template-columns: minmax(0, 1fr); }
  .ledger, .book-side { position: static; }
  .ledger-cta { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .split-media { order: -1; }
  .split-media .frame { aspect-ratio: 16 / 10; }
  .page-hero .wrap { grid-template-columns: minmax(0, 1fr); gap: 28px; padding-top: 44px; padding-bottom: 44px; }
  .page-hero .frame { aspect-ratio: 16 / 9; }
  .amen ul { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px 10px; }
  .guide, .pledge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide > div:nth-child(3) { border-left: 0; }
  .guide > div:nth-child(n + 3) { border-top: 1px solid var(--line-soft); }
  .pledge-grid > div { padding: 18px 14px; border-left: 0; }
  .pledge-grid > div:nth-child(even) { border-left: 1px solid var(--rose-line); }
  .pledge-grid > div:nth-child(n + 3) { border-top: 1px solid var(--rose-line); }
  .promise { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promise-item:nth-child(3) { border-left: 0; }
  .promise-item:nth-child(n + 3) { border-top: 1px solid var(--rose-line); }
  .infostrip { grid-template-columns: minmax(0, 1fr); }
  .infostrip > div { border-left: 0; border-top: 1px solid var(--line-soft); }
  .infostrip > div:first-child { border-top: 0; }
  .care-wrap { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .care-media { max-width: 286px; }
  .sage-banner { grid-template-columns: minmax(0, 1fr); }
  .sage-banner .frame { max-width: 340px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .hero-copy { padding: 48px 36px 44px; }
  .hero-panel { min-height: 430px; }
  .incl { grid-template-columns: minmax(0, 1fr); }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 860px) {
  /* 객실 — 표에서 스와이프 + 비교 서랍으로 전환 */
  .swipe { display: block; }
  .cmp-tools { display: none; }
  .sheet {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: var(--z-drawer);
    max-height: 86vh;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 40px rgba(91, 75, 67, 0.18);
    transform: translateY(101%);
    transition: transform 0.4s var(--ease);
    padding: 0;
  }
  .sheet.open { transform: none; }
  .sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid var(--line-soft);
  }
  .sheet-head h2 { font-family: var(--serif); font-size: 17px; font-weight: 700; }
  .sheet-close {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    cursor: pointer;
  }
  .sheet .tablewrap { padding: 14px 16px 22px; overflow: auto; }
  .cmp caption {
    position: static;
    width: auto; height: auto;
    clip: auto;
    white-space: normal;
    text-align: left;
    padding: 0 0 12px;
    font-size: 13px;
    color: var(--muted);
  }
  .cmp { min-width: 620px; }
  .sheet-open { display: inline-flex; }
  .cmp th, .cmp td { padding: 12px 12px; font-size: 13.5px; }
  .cmp-rowhead { width: 104px; position: sticky; left: 0; z-index: 1; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; --section: 66px; }
  body { font-size: 15.5px; }
  .home-hero { padding: 16px 0 0; }
  .hero-panel { min-height: 420px; border-radius: 16px; }
  .hero-copy { padding: 34px 24px 32px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-facts { gap: 8px 18px; margin-top: 24px; padding-top: 18px; }
  .sec-head { margin-bottom: 32px; }
  .sec-head.center { margin-bottom: 34px; }
  .promise { grid-template-columns: minmax(0, 1fr); }
  .promise-item { border-left: 0; border-top: 1px solid var(--rose-line); display: grid; grid-template-columns: 56px minmax(0, 1fr); column-gap: 16px; text-align: left; padding: 20px 4px; }
  .promise-item:first-child { border-top: 0; }
  .promise-ring { grid-column: 1; grid-row: 1 / span 2; align-self: start; width: 52px; height: 52px; margin: 0; }
  .promise-item h3 { grid-column: 2; align-self: center; }
  .promise-item p { grid-column: 2; margin-top: 4px; }
  .trust-row { grid-template-columns: minmax(0, 1fr); gap: 10px; padding: 20px 20px; }
  .trust-num { justify-self: start; text-align: left; font-size: 20px; }
  .story { grid-template-columns: minmax(0, 1fr); padding: 26px 22px 30px; gap: 24px; }
  .story-media { order: -1; max-width: 260px; }
  .story-more { grid-template-columns: minmax(0, 1fr); gap: 0; margin-top: 26px; }
  .story-more li { padding: 18px 0 0; border-top: 1px solid var(--line-soft); }
  .story-more li:first-child { border-top: 0; }
  .dayrail li { grid-template-columns: 70px minmax(0, 1fr); gap: 12px; padding: 12px 0 12px 34px; }
  .dayrail li::before { top: 20px; }
  .day-time { font-size: 14.5px; }
  .day-act { font-size: 14.5px; }
  .guide, .amen ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide > div { border-left: 0; border-top: 1px solid var(--line-soft); }
  .guide > div:nth-child(-n + 2) { border-top: 0; }
  .guide > div:nth-child(even) { border-left: 1px solid var(--line-soft); }
  .tline-item { grid-template-columns: 56px minmax(0, 1fr); gap: 16px; padding: 22px 20px; }
  .tline-ring { width: 48px; height: 48px; }
  .tline-item:not(:last-child) .tline-ring::after { height: 40px; }
  .tline-body { grid-column: 2; }
  .tline-list { grid-column: 1 / -1; border-left: 0; padding-left: 0; margin-top: 12px; }
  .tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tab { border-top: 1px solid var(--line); }
  .tab:nth-child(-n + 2) { border-top: 0; }
  .tab:nth-child(odd) { border-left: 0; }
  .tabpanels { padding: 24px 20px 26px; }
  .care-media { max-width: none; }
  .care-media .frame { aspect-ratio: 3 / 2; }
  .pledge { padding: 24px 20px 26px; }
  .pledge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .calc-box, .book-box { padding: 22px 20px 24px; }
  .calc-field { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .ledger-cta { grid-template-columns: minmax(0, 1fr); }
  .ledger > h2, .ledger-body, .ledger-total, .ledger-vat, .ledger-cta { padding-left: 20px; padding-right: 20px; }
  .factrow { grid-template-columns: minmax(0, 1fr); }
  .factrow dt { padding-bottom: 4px; }
  .factrow dd { padding-top: 6px; }
  .stepper { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; }
  .stepper li { font-size: 11.5px; }
  .stepper li::after { top: 20px; left: calc(50% + 24px); right: calc(-50% + 24px); }
  .step-ring { width: 40px; height: 40px; }
  .step-ring .ico { width: 18px; height: 18px; }
  .field-row { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .tour-note { grid-template-columns: minmax(0, 1fr); }
  .tour-note .frame { max-width: 200px; }
  .acc-trigger { padding: 14px 18px; gap: 12px; }
  .acc-panel { padding: 0 18px 20px 18px; }
  .cta-band .wrap { padding-top: 40px; padding-bottom: 40px; }
  .sage-banner { padding: 28px 22px 30px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .site-footer { padding: 40px 0 100px; }
  .bookbar-lead, .bookbar-item.hide-sm { display: none; }
  .bookbar-in { gap: 10px; padding-top: 10px; padding-bottom: 10px; }
  .bookbar-item { border-left: 0; padding: 0 10px; }
  .bookbar .btn { flex: 1; }
  .toast { top: 14px; font-size: 13.5px; padding: 12px 18px; }
  .opt { grid-template-columns: 24px minmax(0, 1fr); }
  .opt-price { grid-column: 2; }
  .opt-qty { padding-left: 38px; }
  .cal-day { min-height: 44px; font-size: 14px; }
  .cal-grid { gap: 2px; }
}

@media (max-width: 380px) {
  .bookbar-item { padding: 0 4px; }
  .bookbar-item b { font-size: 13.5px; }
  .bookbar .btn { padding: 0 12px; font-size: 14px; }
  .cal-day { font-size: 13px; }
  .cal-title { min-width: 120px; font-size: 16px; }
  .amen ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pledge-grid { grid-template-columns: minmax(0, 1fr); }
  .pledge-grid > div:nth-child(even) { border-left: 0; }
  .pledge-grid > div { border-top: 1px solid var(--rose-line); padding: 16px 0; }
  .pledge-grid > div:first-child { border-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .dayrail::after { height: 100%; }
}

@media print {
  .site-header, .drawer, .scrim, .bookbar, .toast, .cmp-tools { display: none !important; }
  body { background: #fff; }
}
