/* =========================================================
   WOOMI REST — A TIME TO BREATHE
   우미그룹 임직원 휴식 예약 서비스
   ========================================================= */

:root {
  --woomi-blue: #155C89;
  --woomi-deep-blue: #18384A;
  --forest-deep: #243B32;
  --forest: #49695A;
  --sage: #879B8D;
  --mist: #E9EFEB;
  --warm-white: #F7F6F1;
  --sand: #D8D0C1;
  --soft-beige: #EEE9DF;
  --surface: #FFFFFF;
  --text-primary: #18231F;
  --text-secondary: #68736D;
  --line: rgba(24, 35, 31, 0.13);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 76px;

  --font-sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Noto Serif KR', serif;
  --font-en: 'Cormorant Garamond', 'Noto Serif KR', serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--warm-white);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.85;
  overflow-x: hidden;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; object-fit: cover; background: var(--mist); }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: inherit; }

::selection { background: var(--sage); color: #fff; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--mist); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 8px; }

/* =========================================================
   LAYOUT PRIMITIVES
   ========================================================= */
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.wrap-narrow { width: 100%; max-width: 840px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.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;
}

/* 섹션마다 세로 여백을 다르게 두어 리듬을 만든다 */
.sec { position: relative; }
.sec-xl { padding: clamp(110px, 16vw, 200px) 0; }
.sec-lg { padding: clamp(88px, 12vw, 160px) 0; }
.sec-md { padding: clamp(72px, 9vw, 120px) 0; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.eyebrow {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
}
.eyebrow.on-dark { color: var(--sage); }

.rule {
  width: 42px; height: 1px; background: var(--sand);
  margin: 22px 0 0;
}
.rule.on-dark { background: rgba(233, 239, 235, .35); }

h1, h2, h3, h4 { font-weight: 400; line-height: 1.42; letter-spacing: -.015em; }

.display {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.6vw, 3.1rem);
  font-weight: 300;
  line-height: 1.44;
}
.display-sm {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.1vw, 2.15rem);
  font-weight: 300;
  line-height: 1.5;
}
.en-display {
  font-family: var(--font-en);
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1.1;
}

.body-lg {
  font-size: clamp(.98rem, 1.5vw, 1.09rem);
  color: var(--text-secondary);
  line-height: 2.1;
  font-weight: 300;
}
.body-md {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.95;
  font-weight: 300;
}
.on-dark .body-lg, .on-dark .body-md { color: rgba(233, 239, 235, .72); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-size: .875rem; font-weight: 500; letter-spacing: .02em;
  border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  min-height: 50px;
}
.btn .arw { transition: transform .35s var(--ease); display: inline-block; }
.btn:hover .arw { transform: translateX(5px); }

.btn-solid { background: var(--forest-deep); color: var(--warm-white); }
.btn-solid:hover { background: var(--woomi-deep-blue); }

.btn-line { border-color: var(--line); color: var(--text-primary); background: transparent; }
.btn-line:hover { border-color: var(--forest); background: rgba(73, 105, 90, .06); }

.btn-line-light { border-color: rgba(247, 246, 241, .38); color: var(--warm-white); }
.btn-line-light:hover { background: rgba(247, 246, 241, .1); border-color: var(--warm-white); }

.btn-ghost { color: var(--forest); padding: 10px 0; min-height: auto; }
.btn-ghost:hover { color: var(--forest-deep); }

.btn:disabled, .btn[disabled] { opacity: .55; cursor: not-allowed; }
.btn:disabled:hover .arw { transform: none; }

.btn-block { width: 100%; }

/* =========================================================
   REVEAL
   ========================================================= */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.rv.in { opacity: 1; transform: none; }
.rv-1 { transition-delay: .09s; }
.rv-2 { transition-delay: .18s; }
.rv-3 { transition-delay: .27s; }
.rv-4 { transition-delay: .36s; }

/* =========================================================
   HEADER
   ========================================================= */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
.hdr-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.wordmark { display: flex; flex-direction: column; line-height: 1.15; color: var(--warm-white); transition: color .5s var(--ease); }
.wordmark b {
  font-family: var(--font-en);
  font-size: 1.42rem; font-weight: 400; letter-spacing: .17em;
}
.wordmark span {
  font-size: .55rem; letter-spacing: .28em; opacity: .72; font-weight: 400;
}

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav a {
  position: relative;
  font-size: .84rem; font-weight: 400; letter-spacing: .01em;
  color: rgba(247, 246, 241, .84);
  transition: color .35s var(--ease);
  padding: 6px 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .4s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { color: var(--warm-white); }

.hdr-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 24px; min-height: 44px;
  font-size: .82rem; font-weight: 500;
  border: 1px solid rgba(247, 246, 241, .45); color: var(--warm-white);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.hdr-cta:hover { background: var(--warm-white); color: var(--forest-deep); border-color: var(--warm-white); }

/* scrolled */
.hdr.solid {
  background: rgba(247, 246, 241, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.hdr.solid .wordmark { color: var(--text-primary); }
.hdr.solid .nav a { color: var(--text-secondary); }
.hdr.solid .nav a:hover, .hdr.solid .nav a.active { color: var(--forest-deep); }
.hdr.solid .hdr-cta { border-color: var(--forest-deep); color: var(--forest-deep); }
.hdr.solid .hdr-cta:hover { background: var(--forest-deep); color: var(--warm-white); }

/* burger */
.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger i {
  position: absolute; left: 11px; width: 22px; height: 1px;
  background: var(--warm-white); transition: transform .4s var(--ease), opacity .3s, background .5s;
}
.burger i:nth-child(1) { top: 17px; }
.burger i:nth-child(2) { top: 22px; }
.burger i:nth-child(3) { top: 27px; }
.hdr.solid .burger i { background: var(--text-primary); }
.burger.open i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.open i:nth-child(2) { opacity: 0; }
.burger.open i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 85;
  background: var(--forest-deep);
  padding: calc(var(--header-h) + 30px) clamp(24px, 8vw, 48px) 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
.drawer.open { opacity: 1; visibility: visible; transform: none; }
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer nav a {
  font-family: var(--font-serif); font-weight: 300;
  font-size: 1.5rem; color: var(--mist);
  padding: 13px 0; border-bottom: 1px solid rgba(233, 239, 235, .12);
}
.drawer-foot { color: rgba(233, 239, 235, .5); font-size: .78rem; letter-spacing: .04em; }
.drawer .btn { margin-top: 26px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  color: var(--warm-white);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  transform: scale(1.06);
  animation: heroZoom 26s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 35, 31, .48) 0%, rgba(24, 35, 31, .08) 34%, rgba(24, 35, 31, .18) 60%, rgba(24, 35, 31, .74) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-bottom: clamp(56px, 9vw, 108px); padding-top: calc(var(--header-h) + 40px); }
.hero-label {
  font-family: var(--font-en);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  letter-spacing: .42em; text-transform: uppercase;
  color: rgba(247, 246, 241, .82);
}
.hero-title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(2rem, 5.6vw, 4rem);
  line-height: 1.38; letter-spacing: -.02em;
  margin-top: 26px;
  text-shadow: 0 2px 30px rgba(20, 30, 26, .28);
}
.hero-sub {
  margin-top: 30px; max-width: 34em;
  font-size: clamp(.92rem, 1.4vw, 1.03rem);
  font-weight: 300; line-height: 2.05;
  color: rgba(247, 246, 241, .86);
}
.hero-actions { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn-solid { background: var(--warm-white); color: var(--forest-deep); }
.hero-actions .btn-solid:hover { background: var(--mist); }

.hero-scroll {
  position: absolute; right: clamp(20px, 5vw, 56px); bottom: clamp(56px, 9vw, 108px);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: .6rem; letter-spacing: .3em; color: rgba(247, 246, 241, .6);
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 54px;
  background: linear-gradient(to bottom, rgba(247, 246, 241, .6), rgba(247, 246, 241, 0));
}

/* =========================================================
   SECTION 02 — FOR WOOMI PEOPLE (텍스트만)
   ========================================================= */
.people { background: var(--warm-white); text-align: center; }
.people .display { margin-top: 30px; }
.people .rule { margin: 26px auto 0; }
.people-body { margin-top: 46px; }
.people-body p + p { margin-top: 1.7em; }
.people-figure {
  margin-top: clamp(56px, 8vw, 96px);
  height: clamp(220px, 34vw, 420px);
  overflow: hidden;
}
.people-figure img { width: 100%; height: 100%; }

/* =========================================================
   SECTION 03 — 숨의 시간 (딥 포레스트, 스티키 이미지)
   ========================================================= */
.breathe {
  background: var(--forest-deep);
  color: var(--mist);
}
.breathe .display { color: var(--mist); }
.breathe-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: start;
}
.breathe-visual { position: sticky; top: calc(var(--header-h) + 40px); }
.breathe-visual img { width: 100%; height: clamp(340px, 46vw, 560px); }
.breathe-cap {
  margin-top: 18px; font-size: .72rem; letter-spacing: .18em;
  color: rgba(233, 239, 235, .48);
}
.breathe-copy { margin-top: 32px; max-width: 30em; }
.breathe-list { margin-top: clamp(46px, 6vw, 76px); border-top: 1px solid rgba(233, 239, 235, .16); }
.breathe-item {
  display: grid; grid-template-columns: 74px 1fr; gap: 8px 20px;
  padding: clamp(30px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(233, 239, 235, .16);
}
.breathe-num {
  font-family: var(--font-en); font-size: 1.05rem;
  letter-spacing: .16em; color: var(--sage); padding-top: .35em;
}
.breathe-item h3 {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(1.28rem, 2.4vw, 1.7rem); color: var(--mist);
}
.breathe-en {
  display: block; font-family: var(--font-en);
  font-size: .82rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 10px;
}
.breathe-item p { margin-top: 14px; color: rgba(233, 239, 235, .68); font-weight: 300; font-size: .93rem; line-height: 1.95; }

/* =========================================================
   SECTION 04 — WELLNESS (비대칭 그리드)
   ========================================================= */
.wellness { background: var(--soft-beige); }
.wellness-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: end; }
.wellness-head .display { margin-top: 28px; }
.wellness-grid {
  margin-top: clamp(58px, 7vw, 96px);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4.4vw, 64px) clamp(24px, 4vw, 56px);
}
.wcard figure { overflow: hidden; }
.wcard img { width: 100%; transition: transform 1.4s var(--ease); }
.wcard:hover img { transform: scale(1.035); }
.wcard-en {
  display: block; margin-top: 22px;
  font-family: var(--font-en); font-size: .84rem;
  letter-spacing: .3em; color: var(--forest);
}
.wcard h3 {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.5rem); margin-top: 8px;
}
.wcard p { margin-top: 12px; font-size: .91rem; color: var(--text-secondary); font-weight: 300; line-height: 1.9; }
/* 비대칭: 1·4번은 크게, 2·3번은 작고 아래로 밀어 리듬을 만든다 */
.wcard:nth-child(1) img { height: clamp(240px, 34vw, 420px); }
.wcard:nth-child(2) { margin-top: clamp(0px, 7vw, 88px); }
.wcard:nth-child(2) img { height: clamp(200px, 26vw, 320px); }
.wcard:nth-child(3) img { height: clamp(200px, 26vw, 320px); }
.wcard:nth-child(4) { margin-top: clamp(0px, 7vw, 88px); }
.wcard:nth-child(4) img { height: clamp(240px, 34vw, 420px); }

/* =========================================================
   SECTION 05 — 호텔어라운드 평창
   ========================================================= */
.dest { background: var(--warm-white); padding-bottom: clamp(88px, 12vw, 160px); }
.dest-hero { position: relative; height: clamp(360px, 62vw, 640px); overflow: hidden; }
.dest-hero img { width: 100%; height: 100%; }
.dest-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24, 35, 31, .28), rgba(24, 35, 31, .05) 45%, rgba(24, 35, 31, .3));
}
.dest-plate {
  position: relative; z-index: 3;
  margin: -78px auto 0;
  max-width: 940px;
  background: var(--surface);
  padding: clamp(38px, 5.6vw, 72px) clamp(26px, 5vw, 72px);
}
.dest-name {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(1.65rem, 3.4vw, 2.5rem); margin-top: 20px;
}
.dest-en {
  margin-top: 10px; font-family: var(--font-en);
  font-size: .96rem; letter-spacing: .28em; color: var(--sage);
}
.dest-claim {
  margin-top: 34px; padding-top: 34px; border-top: 1px solid var(--line);
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(1.15rem, 2.3vw, 1.65rem); line-height: 1.72; color: var(--forest-deep);
}
.dest-body { margin-top: 28px; }
.dest-facts {
  margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px 8px;
}
.fact {
  font-size: .8rem; letter-spacing: .02em; color: var(--forest);
  border: 1px solid var(--line); padding: 8px 15px; background: var(--warm-white);
}
.dest-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }

/* 자연 스트립 */
.nature { margin-top: clamp(64px, 8vw, 110px); }
.nature-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.nature-head h3 { font-family: var(--font-serif); font-weight: 300; font-size: clamp(1.15rem, 2vw, 1.42rem); }
.nature-row {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 26px);
}
.nature-row figure { overflow: hidden; }
.nature-row img { width: 100%; height: clamp(150px, 18vw, 230px); transition: transform 1.4s var(--ease); }
.nature-row figure:hover img { transform: scale(1.04); }
.nature-row b { display: block; margin-top: 14px; font-weight: 500; font-size: .9rem; }
.nature-row span { display: block; margin-top: 3px; font-size: .78rem; color: var(--text-secondary); }

/* =========================================================
   SECTION 06 — STAY EXPERIENCE (지그재그)
   ========================================================= */
.exp { background: var(--mist); }
.exp-head { max-width: 720px; }
.exp-head .display { margin-top: 26px; }
.exp-rows { margin-top: clamp(58px, 8vw, 104px); display: flex; flex-direction: column; gap: clamp(56px, 8vw, 116px); }
.exp-row {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px); align-items: center;
}
.exp-row:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); }
.exp-row:nth-child(even) figure { order: 2; }
.exp-row:nth-child(even) .exp-text { order: 1; }
.exp-row figure { overflow: hidden; }
.exp-row img { width: 100%; height: clamp(240px, 36vw, 470px); transition: transform 1.6s var(--ease); }
.exp-row:hover img { transform: scale(1.03); }
.exp-en { font-family: var(--font-en); font-size: .84rem; letter-spacing: .32em; color: var(--forest); }
.exp-text h3 { font-family: var(--font-serif); font-weight: 300; font-size: clamp(1.4rem, 2.6vw, 1.95rem); margin-top: 12px; }
.exp-text p { margin-top: 20px; color: var(--text-secondary); font-weight: 300; line-height: 2; font-size: .95rem; }

/* =========================================================
   SECTION 07 — ROOMS
   ========================================================= */
.rooms { background: var(--warm-white); }
.rooms-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: clamp(24px, 5vw, 72px); align-items: end; }
.rooms-head .display { margin-top: 26px; }

.filters {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--line); padding-bottom: 22px;
}
.filter {
  padding: 9px 18px; font-size: .84rem; color: var(--text-secondary);
  border: 1px solid var(--line); background: transparent;
  transition: all .3s var(--ease); min-height: 40px;
}
.filter:hover { border-color: var(--sage); color: var(--forest-deep); }
.filter.on { background: var(--forest-deep); border-color: var(--forest-deep); color: var(--warm-white); }

.room-grid {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3.4vw, 46px) clamp(20px, 2.6vw, 34px);
}
.room {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .4s var(--ease), transform .5s var(--ease);
}
.room:hover { border-color: var(--sage); transform: translateY(-3px); }
.room figure { position: relative; overflow: hidden; }
.room figure img { width: 100%; height: clamp(200px, 20vw, 250px); transition: transform 1.5s var(--ease); }
.room:hover figure img { transform: scale(1.045); }
.room-cap {
  position: absolute; left: 0; bottom: 0;
  background: rgba(36, 59, 50, .82); color: var(--mist);
  font-size: .72rem; letter-spacing: .06em; padding: 6px 13px;
}
.room-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.room h3 { font-family: var(--font-serif); font-weight: 400; font-size: 1.12rem; }
.room-aud { margin-top: 6px; font-size: .76rem; letter-spacing: .1em; color: var(--sage); }
.room p { margin-top: 14px; font-size: .875rem; color: var(--text-secondary); font-weight: 300; line-height: 1.85; flex: 1; }
.room-feats { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.room-feats span { font-size: .72rem; color: var(--forest); border: 1px solid var(--line); padding: 4px 10px; }
.room-acts { margin-top: 20px; display: flex; gap: 8px; }
.room-acts .btn { flex: 1; padding: 12px 14px; font-size: .82rem; min-height: 46px; }

.rooms-note {
  margin-top: 34px; font-size: .82rem; color: var(--text-secondary);
  border-left: 2px solid var(--sand); padding-left: 16px; line-height: 1.9; font-weight: 300;
}

/* =========================================================
   SECTION 08 — NEXT DESTINATIONS
   ========================================================= */
.next { background: var(--soft-beige); }
.next-head { max-width: 760px; }
.next-head .display { margin-top: 26px; }
.next-head p { margin-top: 26px; }
.next-grid {
  margin-top: clamp(48px, 6vw, 76px);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}
.soon {
  position: relative; background: var(--surface);
  border: 1px solid var(--line);
  cursor: not-allowed;
  display: flex; flex-direction: column;
}
.soon figure { position: relative; overflow: hidden; }
.soon figure img { width: 100%; height: clamp(190px, 20vw, 250px); filter: saturate(.82); }
.soon figure::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(24, 35, 31, .3);
}
.soon-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-en); font-size: .72rem; letter-spacing: .26em;
  background: rgba(247, 246, 241, .93); color: var(--forest-deep);
  padding: 6px 12px;
}
.soon-body { padding: 22px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.soon-region { font-family: var(--font-en); font-size: .82rem; letter-spacing: .22em; color: var(--sage); }
.soon h3 { font-family: var(--font-serif); font-weight: 400; font-size: 1.06rem; margin-top: 8px; }
.soon p { margin-top: 12px; font-size: .85rem; color: var(--text-secondary); font-weight: 300; line-height: 1.85; flex: 1; }
.soon-btn {
  margin-top: 20px; width: 100%;
  padding: 12px; min-height: 46px;
  border: 1px solid var(--line); color: var(--text-secondary);
  font-size: .82rem; background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================================================
   SECTION 09 — 이용 안내 & 예약 조회
   ========================================================= */
.guide { background: var(--forest-deep); color: var(--mist); }
.guide .display { color: var(--mist); }
.guide-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(44px, 6vw, 96px); align-items: start;
}
.steps { margin-top: clamp(38px, 5vw, 54px); }
.step {
  display: grid; grid-template-columns: 46px 1fr; gap: 18px;
  padding: 22px 0; border-top: 1px solid rgba(233, 239, 235, .16);
}
.step:last-child { border-bottom: 1px solid rgba(233, 239, 235, .16); }
.step b { font-family: var(--font-en); font-size: .95rem; letter-spacing: .14em; color: var(--sage); padding-top: .25em; }
.step h4 { font-size: 1rem; font-weight: 500; color: var(--mist); }
.step p { margin-top: 8px; font-size: .875rem; color: rgba(233, 239, 235, .66); font-weight: 300; line-height: 1.9; }

.notice {
  margin-top: 30px; padding: 20px 22px;
  border: 1px solid rgba(233, 239, 235, .2);
  font-size: .855rem; color: rgba(233, 239, 235, .78); font-weight: 300; line-height: 1.95;
}

.guide-cta {
  background: rgba(247, 246, 241, .06);
  border: 1px solid rgba(233, 239, 235, .18);
  padding: clamp(28px, 4vw, 40px);
  position: sticky; top: calc(var(--header-h) + 32px);
}
.guide-cta h3 {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(1.28rem, 2.2vw, 1.55rem); color: var(--mist); margin-top: 18px;
  line-height: 1.55;
}
.guide-cta p.hint {
  margin-top: 18px; font-size: .875rem; font-weight: 300; line-height: 1.95;
  color: rgba(233, 239, 235, .68);
}
.guide-cta .btn { margin-top: 28px; }

/* =========================================================
   FOOTER
   ========================================================= */
.ftr { background: var(--woomi-deep-blue); color: rgba(233, 239, 235, .74); padding: clamp(60px, 8vw, 96px) 0 40px; }
.ftr-top { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(34px, 5vw, 80px); }
.ftr-mark b { display: block; font-family: var(--font-en); font-size: 1.5rem; letter-spacing: .18em; color: var(--warm-white); }
.ftr-mark span { display: block; margin-top: 6px; font-size: .6rem; letter-spacing: .3em; color: rgba(233, 239, 235, .55); }
.ftr-mark p { margin-top: 24px; font-size: .88rem; font-weight: 300; line-height: 1.95; max-width: 26em; }
.ftr-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.ftr-col h5 { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(233, 239, 235, .48); font-weight: 500; }
.ftr-col ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.ftr-col a, .ftr-col li { font-size: .875rem; font-weight: 300; }
.ftr-col a { transition: color .3s; }
.ftr-col a:hover { color: var(--warm-white); }
.ftr-contact { margin-top: 10px; font-size: .8rem; color: rgba(233, 239, 235, .5); font-weight: 300; line-height: 1.85; }
.ftr-bot {
  margin-top: clamp(44px, 6vw, 70px); padding-top: 26px;
  border-top: 1px solid rgba(233, 239, 235, .14);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .76rem; color: rgba(233, 239, 235, .45); font-weight: 300;
}

/* =========================================================
   외부 예약페이지 안내 문구
   ========================================================= */
.book-note {
  margin-top: 16px;
  font-size: .78rem; font-weight: 300; line-height: 1.7;
  color: var(--text-secondary);
  letter-spacing: .01em;
}
.book-note::before {
  content: ''; display: inline-block;
  width: 14px; height: 1px; background: var(--sand);
  vertical-align: middle; margin-right: 8px;
}
.book-note.on-dark { color: rgba(233, 239, 235, .58); }
.book-note.on-dark::before { background: rgba(233, 239, 235, .35); }

.hero .book-note { color: rgba(247, 246, 241, .68); margin-top: 22px; }
.hero .book-note::before { background: rgba(247, 246, 241, .45); }

/* 모바일 하단 고정 CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247, 246, 241, .95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .45s var(--ease);
}
.sticky-cta.on { transform: none; }
.sticky-note {
  margin-top: 7px; text-align: center;
  font-size: .7rem; line-height: 1.5; color: var(--text-secondary);
}
.sticky-note::before { display: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .room-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .next-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .breathe-grid { grid-template-columns: 1fr; }
  .breathe-visual { position: static; }
  .guide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .nav, .hdr-cta { display: none; }
  .burger { display: block; }
  .wellness-head, .rooms-head { grid-template-columns: 1fr; align-items: start; }
  .exp-row { grid-template-columns: 1fr; }
  .exp-row:nth-child(even) figure { order: 0; }
  .exp-row:nth-child(even) .exp-text { order: 0; }
  .ftr-top { grid-template-columns: 1fr; }
  .nature-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  body { line-height: 1.8; }
  .hero { min-height: 88svh; }
  .hero-scroll { display: none; }
  .hero-actions .btn { flex: 1 1 100%; }
  .wellness-grid { grid-template-columns: 1fr; gap: 40px; }
  .wcard:nth-child(2), .wcard:nth-child(4) { margin-top: 0; }
  .wcard img { height: clamp(220px, 56vw, 300px) !important; }
  .room-grid { grid-template-columns: 1fr; }
  .room figure img { height: 56vw; }
  .next-grid { grid-template-columns: 1fr; }
  .soon figure img { height: 52vw; }
  .dest-plate { margin-top: -46px; }
  .sticky-cta { display: block; }
  .guide-cta { position: static; }
  .ftr-bot { flex-direction: column; gap: 8px; }
}

@media (max-width: 400px) {
  .filters { gap: 6px; }
  .filter { padding: 8px 13px; font-size: .8rem; }
}

/* =========================================================
   MOTION PREFERENCE
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .rv { opacity: 1; transform: none; }
  .hero-bg img { animation: none; transform: none; }
}

/* 모바일에서는 확대 애니메이션을 줄인다 */
@media (max-width: 720px) {
  .hero-bg img { animation-duration: 40s; }
  .wcard:hover img, .exp-row:hover img, .room:hover figure img, .nature-row figure:hover img { transform: none; }
}

@media print {
  .hdr, .sticky-cta, .drawer { display: none !important; }
}
