/* =========================================================
   2026 평창효석문화제 × 호텔어라운드 평창
   축제 기간 직접예약 랜딩페이지
   ========================================================= */

:root {
  --ivory: #FAF7F0;
  --cream: #F2EDE3;
  --buckwheat: #FFFFFF;
  --sand: #DED4C0;
  --green-deep: #2C4034;
  --green: #4A6B52;
  --green-soft: #8AA48F;
  --leaf: #7BA05B;
  --ink: #1C2420;
  --ink-2: #6B7570;
  --line: rgba(28, 36, 32, .12);
  --danger: #A2543F;

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

  --f-sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-serif: 'Noto Serif KR', serif;
  --f-en: 'Cormorant Garamond', 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(--ivory);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}
body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; object-fit: cover; background: var(--cream); }
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(--green-soft); color: #fff; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--green-soft); border-radius: 8px; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.wrap-narrow { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.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 { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.sec-tight { padding: clamp(56px, 7vw, 88px) 0; }

/* ---------------------------------------------------------
   TYPOGRAPHY
   --------------------------------------------------------- */
.eyebrow {
  display: inline-block; font-size: .7rem; letter-spacing: .28em;
  text-transform: uppercase; font-weight: 500; color: var(--green);
}
.eyebrow.light { color: rgba(255, 255, 255, .82); }

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

.h-display {
  font-family: var(--f-serif); font-weight: 300;
  font-size: clamp(1.7rem, 4vw, 2.7rem); line-height: 1.45;
}
.h-sec {
  font-family: var(--f-serif); font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem); line-height: 1.45; margin-top: 18px;
}
.lead { font-size: clamp(.94rem, 1.4vw, 1.04rem); color: var(--ink-2); font-weight: 300; line-height: 2.05; }
.body { font-size: .93rem; color: var(--ink-2); font-weight: 300; line-height: 1.95; }
.rule { width: 40px; height: 1px; background: var(--sand); margin-top: 22px; }

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; min-height: 52px;
  font-size: .92rem; font-weight: 500; letter-spacing: -.01em;
  border: 1px solid transparent; border-radius: 3px;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn-primary { background: var(--green-deep); color: #fff; }
.btn-primary:hover { background: var(--green); }
.btn-leaf { background: var(--leaf); color: #fff; }
.btn-leaf:hover { background: #6C9150; }
.btn-line { border-color: var(--line); color: var(--ink); background: var(--buckwheat); }
.btn-line:hover { border-color: var(--green); background: rgba(74, 107, 82, .05); }
.btn-line-light { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-line-light:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 18px; min-height: 44px; font-size: .85rem; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn:disabled:hover .arw { transform: none; }

/* ---------------------------------------------------------
   REVEAL
   --------------------------------------------------------- */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-1 { transition-delay: .08s } .rv-2 { transition-delay: .16s }
.rv-3 { transition-delay: .24s } .rv-4 { transition-delay: .32s }

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 90; height: var(--header-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .45s var(--ease), border-color .45s var(--ease);
}
.hdr-in { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; flex-direction: column; line-height: 1.2; color: #fff; transition: color .45s var(--ease); }
.brand b { font-family: var(--f-en); font-size: 1.3rem; font-weight: 500; letter-spacing: .13em; }
.brand span { font-size: .58rem; letter-spacing: .22em; opacity: .8; }
.nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 30px); }
.nav a { font-size: .86rem; color: rgba(255, 255, 255, .86); padding: 6px 0; position: relative; transition: color .3s; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: currentColor; transition: width .35s var(--ease); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { color: #fff; }
.hdr-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; min-height: 42px; border-radius: 3px;
  font-size: .85rem; font-weight: 500;
  background: var(--leaf); color: #fff; transition: background .3s;
}
.hdr-cta:hover { background: #6C9150; }

.hdr.solid { background: rgba(250, 247, 240, .93); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.hdr.solid .brand { color: var(--ink); }
.hdr.solid .nav a { color: var(--ink-2); }
.hdr.solid .nav a:hover, .hdr.solid .nav a.active { color: var(--green-deep); }

.burger { display: none; width: 44px; height: 44px; position: relative; }
.burger i { position: absolute; left: 11px; width: 22px; height: 1.5px; background: #fff; transition: transform .35s var(--ease), opacity .25s, background .45s; }
.burger i:nth-child(1) { top: 16px } .burger i:nth-child(2) { top: 21px } .burger i:nth-child(3) { top: 26px }
.hdr.solid .burger i { background: var(--ink); }
.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) }

.drawer {
  position: fixed; inset: 0; z-index: 85; background: var(--green-deep);
  padding: calc(var(--header-h) + 24px) clamp(24px, 8vw, 44px) 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.drawer.open { opacity: 1; visibility: visible; transform: none; }
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a { font-family: var(--f-serif); font-weight: 300; font-size: 1.4rem; color: #fff; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .13); }
.drawer .btn { margin-top: 26px; }
.drawer-foot { font-size: .76rem; color: rgba(255, 255, 255, .5); letter-spacing: .04em; }

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; transform: scale(1.06); animation: heroZoom 24s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1) } }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28, 36, 32, .5) 0%, rgba(28, 36, 32, .12) 32%, rgba(28, 36, 32, .3) 62%, rgba(28, 36, 32, .82) 100%);
}
.hero-in { position: relative; z-index: 2; padding: calc(var(--header-h) + 40px) 0 clamp(48px, 8vw, 96px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 100px; font-size: .78rem; letter-spacing: .04em;
}
.hero-badge img { height: 18px; width: auto; background: none; }
.hero-title {
  font-family: var(--f-serif); font-weight: 300;
  font-size: clamp(2rem, 5.4vw, 3.7rem); line-height: 1.32; margin-top: 24px;
  text-shadow: 0 2px 26px rgba(20, 28, 24, .3);
}
.hero-title b { font-weight: 500; }
.hero-date {
  margin-top: 22px; display: inline-flex; flex-wrap: wrap; align-items: center; gap: 8px 14px;
  font-size: clamp(.92rem, 1.5vw, 1.06rem); letter-spacing: .02em;
}
.hero-date .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255, 255, 255, .6); }
.hero-sub { margin-top: 22px; max-width: 32em; font-size: clamp(.9rem, 1.4vw, 1rem); font-weight: 300; line-height: 1.95; color: rgba(255, 255, 255, .88); }
.hero-acts { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------------------------------------------------------
   ABOUT (축제 소개)
   --------------------------------------------------------- */
.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(32px, 5vw, 76px); align-items: center; }
.about-text .lead { margin-top: 28px; }
.about-text .lead + .lead { margin-top: 1.5em; }
.about-facts { margin-top: 34px; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.about-facts div { background: var(--ivory); padding: 16px 18px; display: flex; gap: 14px; align-items: baseline; }
.about-facts dt { font-size: .76rem; letter-spacing: .1em; color: var(--green); min-width: 62px; font-weight: 500; }
.about-facts dd { font-size: .9rem; font-weight: 400; }
.about-media { display: grid; grid-template-columns: 1.35fr 1fr; gap: 14px; align-items: start; }
.about-media figure { overflow: hidden; border-radius: 4px; }
.about-media img { width: 100%; transition: transform 1.4s var(--ease); }
.about-media figure:hover img { transform: scale(1.035); }
.about-media .m1 img { height: clamp(240px, 34vw, 400px); }
.about-media .m2 img { height: clamp(240px, 34vw, 400px); object-fit: contain; background: var(--cream); padding: 8px; }
.media-cap { margin-top: 9px; font-size: .74rem; color: var(--ink-2); letter-spacing: .02em; }

/* ---------------------------------------------------------
   BENEFITS (투숙객 특별혜택)
   --------------------------------------------------------- */
.benefits { background: var(--green-deep); color: #fff; }
.benefits .h-sec { color: #fff; }
.benefits .lead { color: rgba(255, 255, 255, .72); }
.ben-head { max-width: 640px; }
.ben-grid { margin-top: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .16); }
.ben {
  background: var(--green-deep); padding: clamp(24px, 3vw, 34px) clamp(20px, 2.4vw, 28px);
  display: flex; flex-direction: column; gap: 12px;
}
.ben-no { font-family: var(--f-en); font-size: 1rem; letter-spacing: .14em; color: var(--green-soft); }
.ben h3 { font-size: 1.02rem; font-weight: 500; }
.ben p { font-size: .855rem; color: rgba(255, 255, 255, .68); font-weight: 300; line-height: 1.85; }
.ben-note { margin-top: 26px; font-size: .8rem; color: rgba(255, 255, 255, .5); font-weight: 300; }

/* ---------------------------------------------------------
   SHUTTLE
   --------------------------------------------------------- */
.shuttle { background: var(--cream); }
.shuttle-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(30px, 5vw, 72px); align-items: center; }
.shuttle-card { background: var(--buckwheat); border: 1px solid var(--line); border-radius: 4px; padding: clamp(24px, 3.4vw, 38px); }
.shuttle-row { display: grid; grid-template-columns: 92px 1fr; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.shuttle-row:last-child { border-bottom: none; }
.shuttle-row dt { font-size: .78rem; color: var(--green); font-weight: 500; letter-spacing: .06em; padding-top: 2px; }
.shuttle-row dd { font-size: .9rem; line-height: 1.8; }
.shuttle-row dd small { display: block; font-size: .78rem; color: var(--ink-2); margin-top: 4px; }

/* ---------------------------------------------------------
   BOOKING — 날짜 선택 + 객실
   --------------------------------------------------------- */
.rooms { background: var(--ivory); }
.rooms-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .85fr); gap: clamp(24px, 4vw, 60px); align-items: end; }

.searchbar {
  margin-top: clamp(34px, 4vw, 48px);
  background: var(--buckwheat); border: 1px solid var(--line); border-radius: 4px;
  padding: clamp(18px, 2.4vw, 26px);
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end;
  box-shadow: 0 10px 40px rgba(28, 36, 32, .05);
}
.searchbar .btn { min-height: 52px; }
.stay-info {
  margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-size: .84rem; color: var(--ink-2);
}
.stay-info b { color: var(--green-deep); font-weight: 500; }

.room-grid { margin-top: clamp(30px, 4vw, 46px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 30px); }
.rcard {
  background: var(--buckwheat); border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .35s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.rcard:hover { border-color: var(--green-soft); transform: translateY(-3px); box-shadow: 0 16px 44px rgba(28, 36, 32, .08); }
.rcard.sold { opacity: .72; }
.rcard.sold:hover { transform: none; box-shadow: none; border-color: var(--line); }
.rcard figure { position: relative; }
.rcard figure img { width: 100%; height: clamp(190px, 22vw, 250px); }
.rcard-promo {
  position: absolute; top: 12px; left: 12px;
  background: var(--leaf); color: #fff; font-size: .72rem; letter-spacing: .02em;
  padding: 5px 11px; border-radius: 3px;
}
.rcard-sold {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(28, 36, 32, .58); color: #fff;
  font-size: .95rem; letter-spacing: .1em; font-weight: 500;
}
.rcard-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.rcard h3 { font-family: var(--f-serif); font-weight: 400; font-size: 1.14rem; }
.rcard-meta { margin-top: 7px; font-size: .8rem; color: var(--ink-2); }
.rcard-desc { margin-top: 12px; font-size: .86rem; color: var(--ink-2); font-weight: 300; line-height: 1.85; flex: 1; }
.rcard-amen { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.rcard-amen span { font-size: .72rem; color: var(--green); border: 1px solid var(--line); padding: 4px 9px; border-radius: 3px; }
.rcard-benefit { margin-top: 14px; padding: 11px 13px; background: var(--cream); border-radius: 3px; font-size: .78rem; color: var(--green-deep); line-height: 1.7; }
.rcard-foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.rcard-price { line-height: 1.35; }
.rcard-price small { display: block; font-size: .74rem; color: var(--ink-2); }
.rcard-price b { font-size: 1.3rem; font-weight: 500; font-variant-numeric: tabular-nums; }
.rcard-price b i { font-style: normal; font-size: .86rem; font-weight: 400; margin-left: 1px; }
.rcard-price .per { font-size: .74rem; color: var(--ink-2); }
.rcard-left { font-size: .76rem; color: var(--danger); margin-top: 4px; }

.rooms-empty { margin-top: 36px; padding: 48px 24px; text-align: center; background: var(--buckwheat); border: 1px solid var(--line); border-radius: 4px; color: var(--ink-2); font-size: .92rem; }
.rooms-note { margin-top: 26px; font-size: .82rem; color: var(--ink-2); border-left: 2px solid var(--sand); padding-left: 14px; line-height: 1.85; font-weight: 300; }

/* ---------------------------------------------------------
   CTA BAND
   --------------------------------------------------------- */
.cta-band { position: relative; color: #fff; overflow: hidden; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: rgba(28, 36, 32, .68); }
.cta-in { position: relative; z-index: 2; text-align: center; padding: clamp(64px, 9vw, 118px) 0; }
.cta-in .h-sec { color: #fff; }
.cta-in p { margin-top: 20px; color: rgba(255, 255, 255, .8); font-weight: 300; }
.cta-in .btn { margin-top: 32px; }

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.ftr { background: var(--green-deep); color: rgba(255, 255, 255, .72); padding: clamp(52px, 7vw, 80px) 0 36px; }
.ftr-top { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 70px); }
.ftr-brand b { display: block; font-family: var(--f-en); font-size: 1.4rem; letter-spacing: .14em; color: #fff; }
.ftr-brand span { display: block; margin-top: 5px; font-size: .58rem; letter-spacing: .24em; color: rgba(255, 255, 255, .5); }
.ftr-brand p { margin-top: 20px; font-size: .86rem; font-weight: 300; line-height: 1.9; max-width: 26em; }
.ftr-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.ftr-col h5 { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, .45); font-weight: 500; }
.ftr-col ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.ftr-col a, .ftr-col li { font-size: .86rem; font-weight: 300; }
.ftr-col a:hover { color: #fff; }
.ftr-bot { margin-top: clamp(38px, 5vw, 58px); padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .76rem; color: rgba(255, 255, 255, .45); font-weight: 300; }

/* ---------------------------------------------------------
   STICKY CTA (모바일)
   --------------------------------------------------------- */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250, 247, 240, .96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

/* ---------------------------------------------------------
   FORM
   --------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field label { font-size: .8rem; font-weight: 500; letter-spacing: -.01em; }
.field label .req { color: var(--danger); margin-left: 2px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 13px 14px;
  border: 1px solid var(--line); background: var(--buckwheat);
  border-radius: 3px; font-size: .95rem;
  -webkit-appearance: none; appearance: none;
  transition: border-color .22s, box-shadow .22s;
}
.field textarea { min-height: 92px; resize: vertical; line-height: 1.8; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236B7570' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(74, 107, 82, .13);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); }
.err { font-size: .78rem; color: var(--danger); display: none; line-height: 1.55; }
.err::before { content: '! '; font-weight: 700; }
.err.on { display: block; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

/* ---------------------------------------------------------
   MODAL (예약 플로우)
   --------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-bg { position: absolute; inset: 0; background: rgba(20, 28, 24, .6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); animation: fadeIn .3s var(--ease); }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes rise { from { opacity: 0; transform: translateY(18px) } to { opacity: 1; transform: none } }
.modal-panel {
  position: relative; z-index: 2; width: 100%; max-width: 640px;
  max-height: calc(100svh - 40px); background: var(--ivory); border-radius: 5px;
  display: flex; flex-direction: column; animation: rise .4s var(--ease); overflow: hidden;
}
.modal-hd { flex: none; padding: 22px clamp(20px, 4vw, 32px) 18px; border-bottom: 1px solid var(--line); display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; background: var(--buckwheat); }
.modal-hd h2 { font-family: var(--f-serif); font-weight: 400; font-size: 1.24rem; margin-top: 8px; }
.modal-x { width: 38px; height: 38px; flex: none; display: grid; place-items: center; font-size: 1.35rem; color: var(--ink-2); }
.modal-x:hover { color: var(--ink); }
.modal-body { overflow-y: auto; padding: clamp(20px, 3.4vw, 30px) clamp(20px, 4vw, 32px); -webkit-overflow-scrolling: touch; }
.modal-ft { flex: none; padding: 16px clamp(20px, 4vw, 32px) calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--buckwheat); display: flex; gap: 10px; }
.modal-ft .btn { flex: 1; }

.steps { display: flex; gap: 6px; margin-top: 4px; }
.steps i {
  flex: 1; height: 3px; border-radius: 3px; background: var(--sand);
  transition: background .35s var(--ease);
}
.steps i.on { background: var(--leaf); }

.sum-card { background: var(--buckwheat); border: 1px solid var(--line); border-radius: 4px; padding: 18px 20px; }
.sum-card h4 { font-family: var(--f-serif); font-weight: 400; font-size: 1.06rem; }
.sum-list { margin-top: 14px; display: grid; grid-template-columns: 86px 1fr; gap: 9px 14px; font-size: .875rem; }
.sum-list dt { color: var(--ink-2); font-weight: 400; }
.sum-list dd { font-weight: 500; }
.sum-total { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; }
.sum-total span { font-size: .85rem; color: var(--ink-2); }
.sum-total b { font-size: 1.34rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.nightly { margin-top: 14px; font-size: .78rem; color: var(--ink-2); }
.nightly div { display: flex; justify-content: space-between; padding: 4px 0; }

.form-block + .form-block { margin-top: 20px; }
.legend { display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--green-soft); padding-bottom: 10px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.notice-box { margin-top: 18px; padding: 15px 17px; background: var(--cream); border-radius: 4px; font-size: .82rem; color: var(--ink-2); line-height: 1.8; font-weight: 300; }

/* 완료 */
.done { text-align: center; padding: 20px 0 4px; }
.done svg { width: 46px; height: 46px; margin: 0 auto; }
.done h3 { font-family: var(--f-serif); font-weight: 400; font-size: 1.4rem; margin-top: 20px; }
.done p { margin-top: 14px; font-size: .9rem; color: var(--ink-2); font-weight: 300; line-height: 1.9; }
.done-no { margin: 26px auto 0; display: inline-block; padding: 13px 24px; background: var(--green-deep); color: #fff; border-radius: 4px; font-family: var(--f-en); font-size: 1.2rem; letter-spacing: .14em; }
.done-tbl { margin-top: 26px; text-align: left; border-top: 1px solid var(--line); }
.done-tbl div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 12px 2px; border-bottom: 1px solid var(--line); font-size: .875rem; }
.done-tbl .k { color: var(--ink-2); }
.done-tbl .v { font-weight: 500; }

/* 토스트 */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 16px); z-index: 200;
  padding: 13px 22px; background: var(--green-deep); color: #fff; border-radius: 4px;
  font-size: .875rem; opacity: 0; pointer-events: none; text-align: center;
  transition: opacity .3s var(--ease), transform .3s var(--ease); max-width: calc(100vw - 36px);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.err { background: #8C4835; }

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 1040px) {
  .ben-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid, .shuttle-grid { grid-template-columns: 1fr; }
  .rooms-head { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 900px) {
  :root { --header-h: 62px; }
  .nav, .hdr-cta { display: none; }
  .burger { display: block; }
  .ftr-top { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero { min-height: 90svh; }
  .hero-acts .btn { flex: 1 1 100%; }
  .searchbar { grid-template-columns: 1fr; }
  .about-media { grid-template-columns: 1fr; }
  .about-media .m2 img { height: clamp(280px, 76vw, 420px); }
  .ben-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .sticky { display: block; }
  .modal { padding: 0; align-items: flex-end; }
  .modal-panel { max-width: 100%; max-height: 94svh; border-radius: 5px 5px 0 0; }
  .rcard figure img { height: 54vw; }
  .ftr-bot { flex-direction: column; gap: 7px; }
  .sum-list { grid-template-columns: 78px 1fr; }
  .done-tbl div { grid-template-columns: 84px 1fr; }
}

@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; }
}
