/* ============================================================
   청라해변공원캠핑장 — style.css
   팔레트: Night Pine / Campfire / Daylight Cream / Forest
   ============================================================ */

@font-face {
  font-family: 'GmarketSans';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'GmarketSans';
  src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

:root {
  --night: #12211A;
  --night-2: #1A2E24;
  --campfire: #E8734A;
  --campfire-deep: #D05F38;
  --cream: #F7F3EB;
  --cream-2: #EFE9DD;
  --forest: #2E5941;
  --ink: #1E2721;
  --muted: #6B7A70;
  --line: rgba(30, 39, 33, .12);
  --line-dark: rgba(247, 243, 235, .14);
  --disp: 'GmarketSans', 'Pretendard Variable', Pretendard, sans-serif;
  --body: 'Pretendard Variable', Pretendard, -apple-system, 'Apple SD Gothic Neo', sans-serif;
  --maxw: 1160px;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--campfire); outline-offset: 2px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- 스크롤 등장 ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- 3D 틸트 카드 ---------- */
.tilt-wrap { perspective: 900px; }
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}
[data-tilt] .tilt-glare {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border-radius: inherit; opacity: 0;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, .28) 0%, rgba(255, 255, 255, 0) 55%);
  transition: opacity .25s ease;
}
[data-tilt]:hover .tilt-glare { opacity: 1; }
[data-tilt] .tilt-pop { transform: translateZ(34px); }

/* ---------- 히어로 로드 시퀀스 ---------- */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.hero-chips, .hero h1, .hero p.lede, .hero-ctas {
  opacity: 0; animation: riseIn .8s cubic-bezier(.22, .8, .3, 1) forwards;
}
.hero-chips { animation-delay: .15s; }
.hero h1 { animation-delay: .3s; }
.hero p.lede { animation-delay: .48s; }
.hero-ctas { animation-delay: .64s; }
.hero-bg { will-change: transform; }
.hero-bg img { will-change: transform; transform-origin: center 40%; }

/* 패럴랙스 이미지 (컨테이너는 overflow hidden 상태) */
.parallax-img { will-change: transform; }

/* 카운트업 숫자 고정폭 (숫자 롤링 시 흔들림 방지) */
.stat b .cnt { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ember { display: none !important; }
  .hero-chips, .hero h1, .hero p.lede, .hero-ctas { animation: none; opacity: 1; }
  [data-tilt] .tilt-glare { display: none; }
}

/* ---------- 헤더 ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  transition: background .3s ease, box-shadow .3s ease;
  background: linear-gradient(rgba(18, 33, 26, .55), transparent);
}
.site-header.solid {
  background: rgba(18, 33, 26, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .18);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 20px;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: flex; align-items: baseline; gap: 8px; color: #fff; }
.logo strong { font-family: var(--disp); font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; }
.logo span { font-size: .72rem; color: rgba(255, 255, 255, .65); letter-spacing: .14em; text-transform: uppercase; }
.gnb { display: flex; align-items: center; gap: 28px; }
.gnb a { color: rgba(255, 255, 255, .88); font-size: .95rem; font-weight: 500; padding: 8px 0; }
.gnb a:hover, .gnb a[aria-current="page"] { color: #fff; }
.gnb a[aria-current="page"] { box-shadow: 0 2px 0 var(--campfire); }
.gnb .gnb-cta {
  background: var(--campfire); color: #fff; padding: 10px 18px; border-radius: 999px;
  font-weight: 700; box-shadow: none; transition: background .2s;
}
.gnb .gnb-cta:hover { background: var(--campfire-deep); }
.gnb .gnb-cta--naver { background: #03C75A; }
.gnb .gnb-cta--naver:hover { background: #02A94D; }
.nav-toggle {
  display: none; background: none; border: 0; width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; transition: transform .25s, opacity .25s; }
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .gnb {
    position: fixed; top: 68px; right: 0; left: 0;
    background: rgba(18, 33, 26, .98); flex-direction: column; gap: 0;
    padding: 12px 20px 20px; transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s;
  }
  .gnb.open { opacity: 1; transform: none; pointer-events: auto; }
  .gnb a { width: 100%; padding: 14px 4px; border-bottom: 1px solid var(--line-dark); }
  .gnb a[aria-current="page"] { box-shadow: none; color: var(--campfire); }
  .gnb .gnb-cta { margin-top: 14px; text-align: center; border-bottom: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- 히어로 ---------- */
.hero {
  position: relative; min-height: 92svh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 33, 26, .42) 0%, rgba(18, 33, 26, .08) 34%, rgba(18, 33, 26, .55) 72%, rgba(18, 33, 26, .92) 100%);
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; width: 100%; padding: 140px 20px 88px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(247, 243, 235, .14); border: 1px solid rgba(247, 243, 235, .3);
  backdrop-filter: blur(4px); border-radius: 999px; padding: 7px 14px;
  font-size: .84rem; font-weight: 600; letter-spacing: .01em;
}
.chip--fire { background: var(--campfire); border-color: var(--campfire); }
.hero h1 {
  font-family: var(--disp); font-weight: 700; font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.28; letter-spacing: -.015em; margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}
.hero h1 em { font-style: normal; color: #FFB48F; }
.hero p.lede {
  font-size: clamp(1rem, 1.8vw, 1.18rem); color: rgba(255, 255, 255, .88);
  max-width: 34em; margin-bottom: 30px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 15px 28px; font-size: 1.02rem; font-weight: 700;
  border: 0; transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.btn:active { transform: scale(.97); }
.btn--fire { background: var(--campfire); color: #fff; box-shadow: 0 8px 24px rgba(232, 115, 74, .38); }
.btn--fire:hover { background: var(--campfire-deep); }
.btn--ghost { background: rgba(247, 243, 235, .12); color: #fff; border: 1.5px solid rgba(247, 243, 235, .55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(247, 243, 235, .22); }
.btn--forest { background: var(--forest); color: #fff; }
.btn--forest:hover { background: #234733; }

/* 불씨 파티클 */
.ember {
  position: absolute; bottom: -12px; width: 5px; height: 5px; border-radius: 50%;
  background: radial-gradient(circle, #FFC49B 0%, var(--campfire) 60%, transparent 100%);
  opacity: 0; animation: emberUp linear infinite; pointer-events: none; z-index: 0;
}
@keyframes emberUp {
  0% { transform: translate(0, 0) scale(1); opacity: 0; }
  8% { opacity: .85; }
  60% { opacity: .5; }
  100% { transform: translate(var(--drift, 20px), -78vh) scale(.25); opacity: 0; }
}

/* 능선 디바이더 */
.ridge { display: block; width: 100%; height: 54px; margin-bottom: -1px; }

/* ---------- 섹션 공통 ---------- */
.section { padding: 88px 0; }
.section--night { background: var(--night); color: var(--cream); }
.section--night2 { background: var(--night-2); color: var(--cream); }
.section--cream2 { background: var(--cream-2); }
.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .16em;
  color: var(--campfire); text-transform: uppercase; margin-bottom: 12px;
}
.section h2 {
  font-family: var(--disp); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35; letter-spacing: -.01em; margin-bottom: 14px;
}
.section .desc { color: var(--muted); max-width: 40em; }
.section--night .desc, .section--night2 .desc { color: rgba(247, 243, 235, .72); }
.section-head { margin-bottom: 44px; }
.section-head--center { text-align: center; }
.section-head--center .desc { margin: 0 auto; }

/* ---------- 숫자 스트립 ---------- */
.stats { background: var(--night); color: var(--cream); padding: 34px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stat b { display: block; font-family: var(--disp); font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 2rem); color: #fff; }
.stat b small { font-size: .6em; font-weight: 700; }
.stat span { font-size: .86rem; color: rgba(247, 243, 235, .65); }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 10px; } }

/* ---------- 시그니처 카드 ---------- */
.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sig-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 39, 33, .07);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.sig-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(30, 39, 33, .13); }
.sig-card .thumb { aspect-ratio: 4 / 3; overflow: hidden; }
.sig-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.sig-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sig-body h3 { font-family: var(--disp); font-weight: 700; font-size: 1.18rem; }
.sig-body .price { color: var(--campfire-deep); font-weight: 800; font-size: 1.05rem; }
.sig-body .price small { color: var(--muted); font-weight: 500; font-size: .82rem; }
.sig-body p { font-size: .93rem; color: var(--muted); flex: 1; }
.sig-body .more { font-size: .9rem; font-weight: 700; color: var(--forest); margin-top: 6px; }
@media (max-width: 860px) { .sig-grid { grid-template-columns: 1fr; } .sig-card .thumb { aspect-ratio: 16 / 9; } }

/* ---------- 왜 여기냐 ---------- */
.why-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.why-list { display: grid; gap: 26px; }
.why-item { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.why-item .ico {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(232, 115, 74, .16); font-size: 1.3rem;
}
.why-item h3 { font-size: 1.06rem; font-weight: 800; margin-bottom: 4px; color: #fff; }
.why-item p { font-size: .93rem; color: rgba(247, 243, 235, .7); }
.why-photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 44px rgba(0, 0, 0, .35); }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .why-wrap { grid-template-columns: 1fr; } .why-photo { order: -1; } }

/* ---------- 시설 그리드 ---------- */
.fac-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fac-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3;
  background: var(--night-2); color: #fff; display: flex; align-items: flex-end;
}
.fac-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.fac-card:hover img { transform: scale(1.05); }
.fac-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 33, 26, .88) 100%);
}
.fac-card .fac-label { position: relative; z-index: 1; padding: 18px 20px; width: 100%; }
.fac-card .fac-label h3 { font-family: var(--disp); font-weight: 700; font-size: 1.08rem; display: flex; align-items: center; gap: 8px; }
.fac-card .fac-label p { font-size: .84rem; color: rgba(255, 255, 255, .78); }
.badge-new {
  background: var(--campfire); color: #fff; font-size: .66rem; font-weight: 800;
  border-radius: 6px; padding: 2px 7px; letter-spacing: .08em;
}
.fac-card--flat { background: linear-gradient(145deg, var(--forest), var(--night-2)); }
.fac-card--flat .fac-ico { position: absolute; top: 22px; left: 22px; font-size: 2.2rem; }
@media (max-width: 860px) { .fac-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fac-grid { grid-template-columns: 1fr; } .fac-card { aspect-ratio: 16 / 9; } }

/* ---------- 갤러리 ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gal-grid a { border-radius: 12px; overflow: hidden; aspect-ratio: 1; display: block; }
.gal-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gal-grid a:hover img { transform: scale(1.06); }
@media (max-width: 700px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0 22px;
}
.faq-list summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.3rem; color: var(--campfire); flex: none; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 18px; color: var(--muted); font-size: .95rem; }

/* ---------- 오시는길 ---------- */
.loc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.loc-card {
  background: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: 0 4px 20px rgba(30, 39, 33, .07); display: flex; flex-direction: column; gap: 14px;
}
.loc-card .addr { font-size: 1.16rem; font-weight: 800; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.copy-btn {
  border: 1px solid var(--line); background: var(--cream); border-radius: 8px;
  font-size: .8rem; font-weight: 700; padding: 6px 12px; color: var(--forest);
}
.copy-btn:hover { background: var(--cream-2); }
.loc-card ul { display: grid; gap: 9px; font-size: .95rem; color: var(--muted); }
.loc-card ul b { color: var(--ink); font-weight: 700; margin-right: 4px; }
.map-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
.map-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 12px; padding: 15px 10px; font-weight: 800; font-size: .95rem;
  border: 1px solid var(--line); transition: transform .15s;
}
.map-btn:hover { transform: translateY(-2px); }
.map-btn--naver { background: #03C75A; color: #fff; border: 0; }
.map-btn--kakao { background: #FEE500; color: #191919; border: 0; }
.loc-photo { border-radius: var(--radius); overflow: hidden; min-height: 320px; max-height: 620px; }
.loc-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .loc-wrap { grid-template-columns: 1fr; } .loc-photo { min-height: 220px; max-height: 340px; } }

/* 거리 안내 보드 */
.dist-board { background: var(--cream); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.dist-board .dist-title { font-size: .85rem; font-weight: 800; color: var(--forest); margin-bottom: 8px; }
.dist-board li { display: flex; align-items: baseline; gap: 10px; font-size: .93rem; padding: 6px 0; }
.dist-board li span { color: var(--ink); }
.dist-board li i { flex: 1; border-bottom: 2px dotted rgba(30, 39, 33, .22); transform: translateY(-4px); }
.dist-board li b { color: var(--campfire-deep); font-weight: 800; white-space: nowrap; }

/* ---------- 문의폼 ---------- */
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.contact-side h2 { color: #fff; }
.contact-side .desc { margin-bottom: 26px; }
.contact-quick { display: grid; gap: 12px; }
.quick-item {
  display: flex; align-items: center; gap: 14px; background: rgba(247, 243, 235, .07);
  border: 1px solid var(--line-dark); border-radius: 14px; padding: 16px 18px;
  transition: background .2s;
}
.quick-item:hover { background: rgba(247, 243, 235, .13); }
.quick-item .q-ico { font-size: 1.4rem; flex: none; }
.contact-quick--row { grid-template-columns: repeat(4, 1fr); margin-top: 10px; }
.contact-quick--row .quick-item { flex-direction: column; text-align: center; align-items: center; gap: 10px; padding: 26px 18px; }
@media (max-width: 1000px) { .contact-quick--row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .contact-quick--row { grid-template-columns: 1fr; } .contact-quick--row .quick-item { flex-direction: row; text-align: left; } }
.quick-item b { display: block; font-size: 1rem; color: #fff; }
.quick-item span { font-size: .82rem; color: rgba(247, 243, 235, .6); }
.inquiry-form { background: #fff; border-radius: var(--radius); padding: 32px; color: var(--ink); display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; }
.field label .req { color: var(--campfire-deep); }
.field input, .field select, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px;
  font-family: inherit; font-size: .96rem; background: var(--cream); color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 9px; font-size: .87rem; }
.consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--campfire); }
.consent button { background: none; border: 0; text-decoration: underline; color: var(--forest); font-size: .85rem; padding: 0; }
.form-msg { display: none; font-size: .92rem; font-weight: 600; border-radius: 10px; padding: 12px 14px; }
.form-msg.ok { display: block; background: rgba(46, 89, 65, .12); color: var(--forest); }
.form-msg.err { display: block; background: rgba(208, 95, 56, .12); color: var(--campfire-deep); }
.form-msg a { text-decoration: underline; font-weight: 800; }
@media (max-width: 860px) { .contact-wrap { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .inquiry-form { padding: 24px 20px; } }

/* ---------- CTA 배너 ---------- */
.cta-banner { position: relative; overflow: hidden; background: var(--night); color: #fff; text-align: center; padding: 84px 20px; }
.cta-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.cta-banner .inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-banner h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(1.5rem, 3.4vw, 2.3rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255, 255, 255, .82); margin-bottom: 28px; }
.cta-banner .hero-ctas { justify-content: center; }

/* ---------- 서브페이지 히어로 ---------- */
.page-hero {
  position: relative; padding: 150px 0 76px; color: #fff; background: var(--night); overflow: hidden;
}
.page-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,33,26,.55), rgba(18,33,26,.82)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--disp); font-weight: 700; font-size: clamp(1.8rem, 3.8vw, 2.7rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255, 255, 255, .85); max-width: 36em; }

/* ---------- 시설 상세 ---------- */
.fac-section { padding: 76px 0; }
.fac-section:nth-child(even of .fac-section) { background: var(--cream-2); }
.fac-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.fac-detail.rev .fac-photos { order: 1; }
.fac-photos { display: grid; gap: 12px; }
.fac-photos .main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 2; }
.fac-photos .main img { width: 100%; height: 100%; object-fit: cover; }
.fac-photos .subs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fac-photos .subs > * { border-radius: 12px; overflow: hidden; aspect-ratio: 1; }
.fac-photos .subs img { width: 100%; height: 100%; object-fit: cover; }
.fac-info .price-tag {
  display: inline-block; background: rgba(232, 115, 74, .13); color: var(--campfire-deep);
  font-weight: 800; border-radius: 999px; padding: 7px 16px; font-size: .95rem; margin-bottom: 14px;
}
.fac-info h2 { margin-bottom: 12px; }
.fac-info > p { color: var(--muted); margin-bottom: 18px; }
.fac-info ul { display: grid; gap: 8px; font-size: .94rem; }
.fac-info ul li { padding-left: 24px; position: relative; }
.fac-info ul li::before { content: "✓"; position: absolute; left: 0; color: var(--campfire); font-weight: 800; }
@media (max-width: 860px) {
  .fac-detail { grid-template-columns: 1fr; gap: 26px; }
  .fac-detail.rev .fac-photos { order: 0; }
}

/* ---------- 부대시설 아이콘 그리드 ---------- */
.amen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.amen {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 16px; text-align: center;
}
.amen .a-ico { font-size: 1.7rem; display: block; margin-bottom: 8px; }
.amen b { font-size: .92rem; font-weight: 700; }
.amen span { display: block; font-size: .78rem; color: var(--muted); }
@media (max-width: 760px) { .amen-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 요금표 ---------- */
.price-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: 0 4px 20px rgba(30,39,33,.07); }
.price-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 520px; }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--night); color: var(--cream); font-family: var(--disp); font-weight: 500; font-size: .9rem; }
.price-table td.p { color: var(--campfire-deep); font-weight: 800; white-space: nowrap; }
.price-table td.n { color: var(--muted); font-size: .88rem; }
.price-note { font-size: .85rem; color: var(--muted); margin-top: 14px; }

/* ---------- 푸터 ---------- */
.site-footer { background: #0D1813; color: rgba(247, 243, 235, .62); padding: 52px 0 96px; font-size: .86rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; margin-bottom: 28px; }
.footer-biz b { color: #fff; font-family: var(--disp); font-weight: 700; font-size: 1.05rem; display: block; margin-bottom: 10px; }
.footer-biz p { margin-bottom: 4px; line-height: 1.8; }
.footer-links { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.footer-links a { padding: 2px 0; }
.footer-links a:hover { color: #fff; }
.footer-links a.privacy { font-weight: 800; color: rgba(247, 243, 235, .85); }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding-top: 20px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; align-items: center;
}
.footer-bottom .credit a { color: var(--campfire); font-weight: 700; }
.footer-bottom .credit a:hover { text-decoration: underline; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating 버튼 ---------- */
.fab-group { position: fixed; right: 16px; bottom: 16px; display: flex; flex-direction: column; gap: 10px; z-index: 150; }
.fab {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25); font-size: 24px; text-decoration: none;
  transition: transform .15s;
}
.fab:hover { transform: translateY(-3px); }
.fab-kakao { background: #FEE500; }
.fab-call { background: var(--campfire); }
.fab-book { background: #03C75A; }

/* ---------- 동의 모달 ---------- */
.modal {
  position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center;
  background: rgba(13, 24, 19, .6); padding: 20px;
}
.modal.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius); max-width: 520px; width: 100%;
  max-height: 80vh; overflow-y: auto; padding: 30px; color: var(--ink);
}
.modal-box h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 14px; }
.modal-box table { width: 100%; border-collapse: collapse; font-size: .88rem; margin-bottom: 14px; }
.modal-box th, .modal-box td { border: 1px solid var(--line); padding: 9px 12px; text-align: left; }
.modal-box th { background: var(--cream); white-space: nowrap; }
.modal-box .modal-close { width: 100%; margin-top: 6px; }
.modal-box p.small { font-size: .82rem; color: var(--muted); margin-bottom: 8px; }

/* ---------- 법적 페이지 ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 130px 20px 90px; }
.legal h1 { font-family: var(--disp); font-weight: 700; font-size: 1.7rem; margin-bottom: 8px; }
.legal .date { color: var(--muted); font-size: .88rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.12rem; font-weight: 800; margin: 34px 0 10px; }
.legal p, .legal li { font-size: .95rem; color: #3A453E; margin-bottom: 8px; }
.legal ul, .legal ol { padding-left: 20px; margin-bottom: 10px; }
.legal ul li { list-style: disc; }
.legal ol li { list-style: decimal; }
.legal table { width: 100%; border-collapse: collapse; font-size: .9rem; margin: 12px 0 18px; }
.legal th, .legal td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.legal th { background: var(--cream-2); }
