/* ==========================================================
   양평 모노펜션 — style.css (v2)
   레퍼런스: 화이트 베이스 + 풀스크린 사진/영상 + 스크롤 모션
   ========================================================== */

:root {
  --white: #ffffff;
  --paper: #f6f4ef;      /* 밝은 크림 — 교차 배경 */
  --ink: #221f1a;        /* 본문 텍스트 */
  --dark: #1C2620;       /* 다크 섹션 */
  --forest: #3E5641;     /* 포인트 그린 */
  --terracotta: #C4826A; /* 강조 */
  --gold: #B99A5F;       /* 골드 포인트 */
  --line: rgba(34, 31, 26, 0.1);

  --serif: 'Gowun Batang', 'Noto Serif KR', serif;
  --sans: 'Pretendard Variable', Pretendard, -apple-system, 'Noto Sans KR', sans-serif;
  --display: 'Playfair Display', 'Gowun Batang', serif;

  --radius: 18px;
  --nav-h: 76px;
}

/* ---------- 기본 리셋 ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 8px);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- 공통 ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 860px; text-align: center; }
.section { padding: 120px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.34em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.85); }
.eyebrow--gold { color: var(--gold); }

.sec-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.sec-sub { margin-top: 14px; color: rgba(34, 31, 26, 0.6); font-size: 1rem; }
.sec-sub b { font-family: var(--display); font-size: 1.25em; color: var(--forest); }

/* ---------- 사진 자리 (플레이스홀더) ---------- */
.media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eee9dd 0%, #ded5c0 55%, #cfc5ab 100%);
  border-radius: var(--radius);
}
.media::after {
  content: attr(data-ph);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(62, 86, 65, 0.55);
  z-index: 0;
}
.media--dark { background: linear-gradient(150deg, #2c3a30 0%, var(--dark) 60%, #131a15 100%); }
.media--dark::after { color: rgba(247, 244, 238, 0.4); }
.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.media img.err { display: none; }

/* ---------- 스크롤 리빌 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================
   상단 고정 메뉴 (흰색 + 드롭다운)
   ========================================================== */
.gnb {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.gnb.scrolled { box-shadow: 0 6px 24px rgba(34, 31, 26, 0.08); }
.gnb-in {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.24em;
  color: var(--ink);
}
.logo span {
  font-size: 0.62em;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-left: 8px;
}

.menu {
  display: flex;
  margin-left: auto;
  height: 100%;
}
.mi { position: relative; height: 100%; display: flex; align-items: center; }
.mi > a {
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 600;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.2s;
}
.mi > a::after {
  content: "";
  position: absolute;
  left: 20px; right: 20px; bottom: 18px;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.mi:hover > a { color: var(--terracotta); }
.mi:hover > a::after, .mi:focus-within > a::after { transform: scaleX(1); }

/* 드롭다운 패널 */
.dd {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 170px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(34, 31, 26, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}
.mi:hover .dd, .mi:focus-within .dd {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dd a {
  display: block;
  padding: 9px 22px;
  font-size: 0.92rem;
  color: rgba(34, 31, 26, 0.75);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.dd a:hover { color: var(--terracotta); background: rgba(196, 130, 106, 0.06); }

.gnb-cta {
  background: var(--terracotta);
  color: #fff;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gnb-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(196, 130, 106, 0.4); }

/* 햄버거 (모바일) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  z-index: 120;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 모바일 풀스크린 메뉴 */
.m-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(255, 255, 255, 0.98);
  padding: calc(var(--nav-h) + 20px) 28px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.m-menu.open { opacity: 1; visibility: visible; }
.m-nav { display: flex; flex-direction: column; }
.m-group { border-bottom: 1px solid var(--line); }
.m-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  min-height: 48px;
}
.m-head span { color: var(--gold); font-family: var(--sans); transition: transform 0.3s ease; }
.m-group.open .m-head span { transform: rotate(45deg); }
.m-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.m-sub a {
  display: block;
  padding: 11px 16px;
  font-size: 1rem;
  color: rgba(34, 31, 26, 0.7);
}
.m-sub a:last-child { margin-bottom: 12px; }
.m-reserve {
  margin-top: 28px;
  background: var(--terracotta);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 15px;
}
.m-phone {
  margin-top: 14px;
  text-align: center;
  color: rgba(34, 31, 26, 0.6);
  font-size: 1rem;
  padding: 10px;
}

/* ==========================================================
   ① 히어로 — 풀스크린 페이드 슬라이드
   ========================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.h-slides { position: absolute; inset: 0; }
.h-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  background: linear-gradient(150deg, #2c3a30 0%, var(--dark) 60%, #131a15 100%);
}
.h-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.h-slide img.err { display: none; }
.h-slide.is-active { opacity: 1; }
.h-slide.is-active img { animation: heroZoom 7s ease-out forwards; }
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-grad {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(19, 26, 21, 0.5) 0%,
      rgba(19, 26, 21, 0.22) 40%,
      rgba(19, 26, 21, 0.58) 100%);
}
.hero-inner { position: relative; z-index: 4; padding: 0 24px; }
.hero-eyebrow {
  font-family: var(--display);
  font-size: 0.88rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeUp 0.9s ease 0.25s both;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6.4vw, 6.2rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.03em;
  margin: 22px 0 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  animation: fadeUp 1s ease 0.5s both;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  animation: fadeUp 1s ease 0.8s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

.h-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 84px;
  z-index: 5;
  display: flex;
  gap: 10px;
  animation: fadeUp 1s ease 1.2s both;
}
.h-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.h-dot.on { background: #fff; transform: scale(1.25); }

.hero-badge {
  position: absolute;
  right: 22px;
  bottom: 26px;
  z-index: 5;
  color: var(--gold);
  background: rgba(19, 26, 21, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(185, 154, 95, 0.45);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  animation: fadeUp 1s ease 1.15s both;
}
.hero-badge .star { font-size: 0.85em; }

.scroll-hint {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  animation: fadeUp 1s ease 1.3s both, bounce 2.2s ease-in-out 2.3s infinite;
}
.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 13px;
  position: relative;
}
.mouse::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.85);
  animation: wheel 2s ease-in-out infinite;
}
@keyframes wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(9px); opacity: 0.2; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-7px); }
}

/* ==========================================================
   ② 풀스크린 소개 영상
   ========================================================== */
.film {
  position: relative;
  height: 100vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: var(--dark);
}
.film-media { position: absolute; inset: 0; }
.film-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.film-media img.err { display: none; }
.film-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;       /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}
.film-grad {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(80% 80% at 50% 50%, rgba(19, 26, 21, 0.1), rgba(19, 26, 21, 0.65));
}
.film-inner { position: relative; z-index: 3; padding: 0 24px; }
.film-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 18px;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.5);
}
.film-note {
  display: inline-block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 9px 20px;
}

/* ==========================================================
   ③ 소개 (ABOUT)
   ========================================================== */
.about { background: var(--white); }
.about-copy p {
  margin-bottom: 18px;
  color: rgba(34, 31, 26, 0.82);
  font-size: 1.05rem;
  line-height: 1.9;
}
.about-copy p:first-child {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--forest);
  font-weight: 700;
}
.counters {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin: 44px 0 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(185, 154, 95, 0.35);
}
.counter { display: flex; flex-direction: column; align-items: center; }
.counter .num {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
}
.counter .cap { font-size: 0.85rem; color: rgba(34, 31, 26, 0.55); margin-top: 6px; }

.btn-line {
  display: inline-block;
  border: 1px solid var(--forest);
  color: var(--forest);
  border-radius: 999px;
  padding: 14px 38px;
  min-height: 48px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn-line:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }

/* ==========================================================
   ④ 풀블리드 중간 이미지 (패럴랙스)
   ========================================================== */
.mid-img {
  position: relative;
  height: 86vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mid-media { position: absolute; inset: -14% 0; }
.mid-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.mid-media img.err { display: none; }
.mid-grad {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(19, 26, 21, 0.36);
}
.mid-quote { position: relative; z-index: 3; color: #fff; padding: 0 24px; }
.mid-line {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.45);
}
.mid-sub {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================
   ⑤ 객실 — 가로 슬라이더
   ========================================================== */
.rooms { background: var(--paper); overflow: hidden; }
.rooms-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
.rooms-side { text-align: right; }
.rooms-count {
  font-family: var(--display);
  color: rgba(34, 31, 26, 0.5);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.rooms-count b {
  font-size: 2.2em;
  color: var(--forest);
  font-weight: 600;
  margin-right: 6px;
}
.sl-arrows { display: flex; gap: 10px; justify-content: flex-end; }
.sl-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(34, 31, 26, 0.25);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.sl-btn:hover { background: var(--forest); border-color: var(--forest); color: #fff; }

.room-slider {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px max(24px, calc((100vw - 1180px) / 2 + 24px)) 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.room-slider::-webkit-scrollbar { display: none; }
.room-slider.dragging { cursor: grabbing; scroll-snap-type: none; }

.room-card {
  flex: 0 0 400px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(34, 31, 26, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.room-card:hover, .room-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(34, 31, 26, 0.14);
}
.room-media { aspect-ratio: 4 / 3; border-radius: 0; }
.room-media img { transition: transform 0.6s ease; }
.room-card:hover .room-media img { transform: scale(1.06); }
.room-body { padding: 24px 26px 26px; }
.room-no {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.room-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 6px;
}
.room-cap { margin-top: 6px; font-size: 0.93rem; color: rgba(34, 31, 26, 0.6); }
.room-tags { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 7px; }
.room-tags span {
  font-size: 0.78rem;
  color: var(--forest);
  background: rgba(62, 86, 65, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}
.room-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.room-more { font-size: 0.9rem; font-weight: 600; color: rgba(34, 31, 26, 0.55); }
.room-card:hover .room-more { color: var(--forest); }
.room-book { font-size: 0.9rem; font-weight: 700; color: var(--terracotta); }
.slider-hint {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(34, 31, 26, 0.4);
}

/* ==========================================================
   ⑥ 시설 — 그리드
   ========================================================== */
.facilities { background: var(--white); }
.fac-head { text-align: center; margin-bottom: 52px; }
.fac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fac-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.fac-card .media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
}
.fac-card .media img { transition: transform 0.7s ease; }
.fac-card:hover .media img { transform: scale(1.07); }
.fac-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(19, 26, 21, 0.72) 0%, rgba(19, 26, 21, 0.12) 45%, transparent 70%);
  border-radius: var(--radius);
  transition: background 0.4s ease;
  pointer-events: none;
}
.fac-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  color: #fff;
  pointer-events: none;
}
.fac-panel h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.fac-panel p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fac-card:hover .fac-panel p { opacity: 1; transform: none; }
@media (hover: none) {
  .fac-panel p { opacity: 1; transform: none; }
}

/* ==========================================================
   ⑦ 조식 (시그니처)
   ========================================================== */
.morning { background: var(--paper); overflow: hidden; }
.morning-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 60px;
  align-items: center;
}
.morning-p { margin-top: 16px; font-size: 1.02rem; color: rgba(34, 31, 26, 0.8); }
.morning-p b { color: var(--terracotta); }
.quote {
  margin-top: 30px;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: var(--forest);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}
.quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: rgba(34, 31, 26, 0.5);
}
.morning-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.morning-collage .media { box-shadow: 0 18px 40px rgba(34, 31, 26, 0.14); }
.collage-a { grid-column: 1 / 9; grid-row: 1; aspect-ratio: 4 / 3; z-index: 1; }
.collage-b { grid-column: 7 / 13; grid-row: 1; aspect-ratio: 1 / 1; margin-top: 58%; z-index: 2; }
.collage-c { grid-column: 2 / 6; grid-row: 1; aspect-ratio: 3 / 4; margin-top: 88%; z-index: 3; }
.morning-collage { padding-bottom: 34%; }

/* ==========================================================
   ⑧ 후기 (무한 마퀴)
   ========================================================== */
.reviews { background: var(--white); padding-bottom: 130px; }
.reviews .fac-head { margin-bottom: 40px; }
.marquee { display: flex; flex-direction: column; gap: 18px; overflow: hidden; }
.m-row { overflow: hidden; }
.m-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 44s linear infinite;
  padding-left: 18px;
}
.m-row--reverse .m-track { animation-direction: reverse; }
.m-row:hover .m-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 300px;
  max-width: 380px;
}
.review-card p { font-size: 0.95rem; line-height: 1.6; }
.review-card .stars {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

/* ==========================================================
   ⑨ 이용 안내
   ========================================================== */
.info { background: var(--paper); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line);
}
.info-card h3 {
  font-family: var(--serif);
  font-size: 1.12rem;
  margin-bottom: 14px;
  color: var(--forest);
}
.info-card li {
  font-size: 0.93rem;
  color: rgba(34, 31, 26, 0.8);
  padding: 5px 0;
  border-bottom: 1px dashed rgba(34, 31, 26, 0.08);
}
.info-card li:last-child { border-bottom: none; }

.acc {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 26px;
}
.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  font-size: 1rem;
  font-weight: 600;
  min-height: 48px;
}
.acc-arrow { transition: transform 0.3s ease; color: var(--gold); }
.acc.open .acc-arrow { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-body ul { padding: 0 26px 22px; }
.acc-body li { font-size: 0.93rem; color: rgba(34, 31, 26, 0.8); padding: 6px 0; }

.notes { display: flex; flex-wrap: wrap; gap: 10px; }
.notes li {
  font-size: 0.85rem;
  color: rgba(34, 31, 26, 0.6);
  background: rgba(62, 86, 65, 0.06);
  padding: 8px 16px;
  border-radius: 999px;
}

/* ==========================================================
   ⑩ 주변 나들이
   ========================================================== */
.travel { background: var(--white); }
.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.travel-card .media { aspect-ratio: 4 / 3; }
.travel-card .media img { transition: transform 0.6s ease; }
.travel-card:hover .media img { transform: scale(1.05); }
.travel-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-top: 16px;
}
.travel-card p { margin-top: 4px; font-size: 0.9rem; color: rgba(34, 31, 26, 0.6); }

/* ==========================================================
   ⑪ 오시는 길
   ========================================================== */
.location { background: var(--paper); }
.loc-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 32px;
  align-items: stretch;
}
.addr-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.addr-main {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
.addr-sub { font-size: 0.88rem; color: rgba(34, 31, 26, 0.55); }
.btn-copy {
  margin-top: 18px;
  align-self: flex-start;
  background: var(--forest);
  color: #fff;
  padding: 13px 26px;
  min-height: 48px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-copy:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(62, 86, 65, 0.3); }
.map-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.map-btns a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--forest);
  border: 1px solid rgba(62, 86, 65, 0.3);
  padding: 11px 18px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.map-btns a:hover { background: rgba(62, 86, 65, 0.06); }
.map-photo .media { height: 100%; min-height: 300px; }

/* ==========================================================
   ⑫ 예약 CTA + 푸터
   ========================================================== */
.cta {
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(196, 130, 106, 0.14), transparent 60%),
    var(--dark);
  color: #f7f4ee;
  text-align: center;
  padding: 120px 0;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 700;
  margin: 18px 0 14px;
}
.cta-sub { color: rgba(247, 244, 238, 0.75); margin-bottom: 40px; }
.call-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.call-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 18px;
  padding: 18px 42px;
  min-width: 240px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.call-big:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(196, 130, 106, 0.35); }
.call-big span { font-size: 0.82rem; opacity: 0.85; letter-spacing: 0.08em; }
.call-big strong { font-size: 1.4rem; letter-spacing: 0.03em; }
.call-big--ghost { background: transparent; border: 1px solid rgba(247, 244, 238, 0.35); }
.call-big--ghost:hover { box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3); }
.sns-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.sns-btns a {
  font-size: 0.9rem;
  color: rgba(247, 244, 238, 0.85);
  border: 1px solid rgba(247, 244, 238, 0.25);
  border-radius: 999px;
  padding: 12px 22px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  transition: background 0.25s ease;
}
.sns-btns a:hover { background: rgba(247, 244, 238, 0.1); }
.cta-note { margin-top: 30px; font-size: 0.85rem; color: rgba(247, 244, 238, 0.5); }

.footer {
  background: #131a15;
  color: rgba(247, 244, 238, 0.55);
  text-align: center;
  padding: 56px 0 60px;
  font-size: 0.85rem;
  line-height: 1.9;
}
.foot-logo {
  font-family: var(--display);
  letter-spacing: 0.3em;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
}
.foot-copy { margin-top: 16px; font-size: 0.78rem; color: rgba(247, 244, 238, 0.35); }

/* ---------- 모바일 하단 고정 예약 바 ---------- */
.bottom-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(19, 26, 21, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.bb-call, .bb-naver {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}
.bb-call { background: var(--terracotta); color: #fff; }
.bb-naver { background: rgba(247, 244, 238, 0.12); color: #f7f4ee; border: 1px solid rgba(247, 244, 238, 0.2); }

/* ---------- 토스트 ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%) translateY(16px);
  z-index: 200;
  background: var(--ink);
  color: #f7f4ee;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.92rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ---------- 객실 상세 모달 ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 26, 21, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.modal.open .modal-card { transform: none; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(19, 26, 21, 0.5);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-media { aspect-ratio: 16 / 10; border-radius: 24px 24px 0 0; }
.modal-body { padding: 28px 30px 32px; }
.modal-body h3 { font-family: var(--serif); font-size: 1.5rem; }
.modal-rooms { color: var(--gold); font-size: 0.88rem; letter-spacing: 0.06em; margin-top: 4px; }
.modal-cap { margin-top: 10px; font-weight: 600; color: var(--forest); }
.modal-feats { margin-top: 14px; }
.modal-feats li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.95rem;
  color: rgba(34, 31, 26, 0.85);
  border-bottom: 1px dashed rgba(34, 31, 26, 0.1);
}
.modal-feats li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--terracotta);
  font-weight: 700;
}
.modal-note { margin-top: 16px; font-size: 0.83rem; color: rgba(34, 31, 26, 0.55); }
.modal-call {
  display: block;
  margin-top: 22px;
  text-align: center;
  background: var(--terracotta);
  color: #fff;
  font-weight: 600;
  border-radius: 14px;
  padding: 15px;
  transition: transform 0.25s ease;
}
.modal-call:hover { transform: translateY(-2px); }

/* ==========================================================
   반응형 — 768px (태블릿)
   ========================================================== */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 78px 0; }

  .menu, .gnb-cta { display: none; }
  .hamburger { display: flex; }
  .gnb-in { justify-content: space-between; }

  .pc-br { display: none; }

  .rooms-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .rooms-side { display: flex; align-items: center; gap: 18px; }
  .rooms-count { margin-bottom: 0; }
  .room-card { flex: 0 0 78vw; max-width: 360px; }

  .fac-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .morning-grid { grid-template-columns: 1fr; gap: 44px; }

  .info-grid { grid-template-columns: 1fr; }
  .travel-grid { grid-template-columns: 1fr; gap: 30px; }
  .loc-grid { grid-template-columns: 1fr; }
  .map-photo .media { min-height: 220px; }

  .counters { gap: 32px; }

  .bottom-bar { display: flex; }
  body { padding-bottom: 68px; }
  .toast { bottom: 100px; }
  .footer { padding-bottom: 80px; }
}

/* ==========================================================
   반응형 — 480px (모바일)
   ========================================================== */
@media (max-width: 480px) {
  body { font-size: 16.5px; }
  .section { padding: 64px 0; }
  .wrap { padding: 0 20px; }

  .hero-title { font-size: 11vw; }
  .hero-badge { right: 16px; bottom: 20px; padding: 8px 14px; font-size: 0.82rem; }
  .scroll-hint { display: none; }
  .h-dots { bottom: 24px; }

  .mo-br { display: block; }
  .fac-head { margin-bottom: 36px; }
  .fac-grid { grid-template-columns: 1fr; }
  .fac-card .media { aspect-ratio: 4 / 3; }

  .counters { gap: 22px; }
  .counter .num { font-size: 1.8rem; }

  .call-big { width: 100%; }
  .modal-body { padding: 24px 22px 28px; }
}

/* ==========================================================
   접근성 — 움직임 최소화 설정 존중
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .h-slide.is-active img { animation: none; transform: none; }
}
