/* ================= Home Gallery FIX (강제) ================= */
/* 홈전용 css*/
.home-gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

.home-gallery .shot{
  position:relative;
  border:0;
  padding:0;
  background:transparent;
  border-radius:18px;
  overflow:hidden;
  cursor:pointer;
  outline:none;
}

.home-gallery .shot img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  transition:transform .45s ease, filter .45s ease;
}

/* 사진 위 캡션 가독성용 그라데이션 */
.home-gallery .shot::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 60%);
  opacity:.9;
}

/* 캡션 */
.home-gallery .shot-cap{
  position:absolute;
  left:14px;
  right:14px;
  bottom:12px;
  z-index:2;
  color:#fff;
  font-weight:800;
  font-size:14px;
  letter-spacing:-.01em;
  text-shadow:0 10px 30px rgba(0,0,0,.35);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* 인터랙션 */
.home-gallery .shot:hover img{
  transform:scale(1.04);
  filter:saturate(1.05);
}

.home-gallery .shot:focus-visible{
  box-shadow:0 0 0 3px rgba(17,24,39,.18);
}

/* 반응형 */
@media (max-width: 960px){
  .home-gallery{ grid-template-columns:1fr; }
  .home-gallery .shot img{ height:240px; }
}

/* ================= Home Feature Grid ================= */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  margin:14px 0 18px;
}

.feature{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:14px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.feature-ic{ font-size:18px; line-height:1; }
.feature-tt{ font-weight:900; font-family: var(--font-body); }
.feature-tx{ color:var(--muted); font-size:13px; margin-top:2px; }

/* ================= Responsive (Home) ================= */
@media (max-width: 960px){
  .feature-grid{ grid-template-columns:repeat(2, 1fr); }
}

@media (max-width: 520px){
  .feature-grid{ grid-template-columns:1fr; }
}

/* =====================================================
   Scroll Reveal (home)
   ===================================================== */
.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .5s ease, transform .5s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* =====================================================
   Section Background (MuseumB 톤)
   ===================================================== */
.section-block{
  padding:30px 0;
}
.section-block.is-white{
  background:#fff;
}
.section-block.is-soft{
  background:#f8fafc;
}
.section-inner{
  padding:0;
}

/* =====================================================
   Facility / Space Preview
   ===================================================== */
.space-preview{
  margin:18px 0;
}
.facility-head{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  margin-bottom:12px;
}
.space-title{
  margin-bottom:10px;
  font-size:clamp(18px,2.2vw,26px);
  letter-spacing:-.02em;
  text-align:center;
}

.space-desc{
  margin-bottom:20px;
  color:var(--muted);
  font-weight:700;
}
.facility-more{
  position:absolute;
  right:0;
  bottom:0;
  font-weight:900;
  text-decoration:none;
  color:var(--ink);
  opacity:.7;
}
.facility-more:hover{ opacity:1; }

.space-cards{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.space-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  aspect-ratio:16/9;
  text-decoration:none;
}
.space-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.01);
  transition:transform .35s ease;
}
.space-card:hover img{
  transform:scale(1.06);
}
.space-cap{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,0,0,.45);
  color:#fff;
  font-weight:900;
  font-size:13px;
  backdrop-filter:blur(6px);
}

/* =====================================================
   Review Slider (Home)
   ===================================================== */
.review-strip{
  margin:22px 0 10px;
}
.review-strip-head{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  margin-bottom:12px;
}
.review-title{
  margin-bottom:10px;
  font-size:clamp(18px,2.2vw,26px);
  letter-spacing:-.02em;
  text-align:center;
}
.review-more{
  position:absolute;
  right:0;
  bottom:0;
  font-weight:900;
  color:var(--ink);
  text-decoration:none;
  opacity:.7;
}
.review-more:hover{ opacity:1; }

.review-slider{
  display:flex;
  gap:14px;
  overflow:auto;
  padding:4px 2px 14px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.review-slider::-webkit-scrollbar{
  display:none;
}

.rv-card{
  flex:0 0 320px;
  scroll-snap-align:start;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  overflow:hidden;
  text-decoration:none;
  color:inherit;
}
.rv-thumb{
  height:200px;
  overflow:hidden;
  background:#f1f5f9;
}
.rv-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.01);
  transition:transform .35s ease;
}
.rv-card:hover .rv-thumb img{
  transform:scale(1.06);
}
.rv-body{
  padding:12px 14px 14px;
  min-height:78px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.rv-title{
  font-weight:1000;
  font-size:16px;
  margin-bottom:8px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.rv-meta{
  font-size:12px;
  font-weight:800;
  color:var(--muted);
  display:flex;
  gap:6px;
  white-space:nowrap;
}
.rv-meta .dot{ opacity:.6; }

/* =====================================================
   Price Summary + CTA
   ===================================================== */
.price-summary{
  margin:28px 0 8px;
  padding:22px 20px;
  border-radius:22px;
  background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.price-summary .panel-title{
  font-size:22px;
  font-weight:1000;
}
.price-summary .panel-sub{
  margin:8px 0 16px;
  color:var(--muted);
  font-weight:700;
}
.price-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
}
.ps-items{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}
.ps-item{
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}
.ps-name{
  font-weight:1000;
}
.ps-from{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}
.ps-from b{
  font-size:20px;
  font-weight:1000;
}
.ps-badge{
  padding:6px 10px;
  border-radius:999px;
  background:#f3f4f6;
  font-size:12px;
  font-weight:800;
}

/* CTA Card */
.cta-card{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  padding:16px;
}
.cta-kicker{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  font-size:12px;
  font-weight:900;
  color:var(--muted);
}
.cta-title{
  margin-top:10px;
  font-size:18px;
  font-weight:1000;
}
.cta-desc{
  margin:10px 0 12px;
  color:var(--muted);
  font-weight:700;
}
.cta-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.cta-actions--sub{
  margin-top:10px;
}
.cta-meta{
  margin-top:12px;
  display:grid;
  gap:8px;
  font-size:13px;
  font-weight:700;
  color:var(--muted);
}
.cta-meta b{
  color:var(--ink);
  font-weight:1000;
}

/* =====================================================
   Mobile
   ===================================================== */
@media (max-width:760px){
  .space-cards{
    display:flex;
    gap:14px;
    overflow:auto;
    padding:4px 2px 14px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }
  .space-cards::-webkit-scrollbar{ display:none; }

  .space-card{
    flex:0 0 86%;
    scroll-snap-align:start;
    aspect-ratio:4 / 3;
  }
  .space-cap{
    left:14px;
    bottom:14px;
    font-size:14px;
    padding:10px 14px;
    font-weight:900;
  }
  .facility-head{
    display:block;
    text-align:center;
  }

  .facility-more{
    position:static;
    display:inline-block;
    margin-top:10px;
    font-weight:900;
    opacity:.85;
  }

  .review-more{
    display:block;
    text-align:center;
    padding:12px 0;
    font-weight:900;
  }

  .rv-card{ flex-basis:86%; }
  .rv-thumb{ height:180px; }
  .review-strip-head{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
  }
  .review-more{
    position:static;
    padding:0;
  }

  .price-grid{ grid-template-columns:1fr; }
  .ps-items{ grid-template-columns:1fr; }
  .cta-actions{ flex-direction:column; }
}

/* =====================================================
   Full-width Band (Home)
   ===================================================== */
.band{
  width:100%;
  padding:36px 0;
}
.band--white{ background:#fff; }
.band--soft{
  background:#f7f9f6;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.04),
              inset 0 -1px 0 rgba(0,0,0,.04);
}
.band--price{ background:#fafbfa; }
.band + .band{ border-top:1px solid #e6e9e6; }

/* =====================================================
   Micro Interactions + Motion Upgrade (home)
   ===================================================== */
.space-card,
.rv-card,
.ps-item,
.cta-card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}

@media (hover:hover){
  .space-card:hover,
  .rv-card:hover,
  .ps-item:hover,
  .cta-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,.10);
    border-color: rgba(0,0,0,.12);
  }
}

@media (hover:none){
  .space-card:active,
  .rv-card:active{
    transform: scale(.99);
  }
}

.space-card{ cursor: default; }

.facility-more,
.review-more{
  transition: transform .15s ease, opacity .15s ease;
}
@media (hover:hover){
  .facility-more:hover,
  .review-more:hover{
    transform: translateX(3px);
    opacity: 1;
  }
}

.slider-hint{ position: relative; }
.slider-hint::after{
  content:"";
  position:absolute;
  top:0; right:0;
  width:52px; height:100%;
  pointer-events:none;
  background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}
.band--soft .slider-hint::after{
  background: linear-gradient(to left, rgba(247,249,246,1), rgba(247,249,246,0));
}
@media (max-width:760px){
  .slider-hint::after{ display:none; }
}

.reveal .space-title,
.reveal .review-title,
.reveal .panel-title{
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible .space-title,
.reveal.is-visible .review-title,
.reveal.is-visible .panel-title{
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce){
  .space-card, .rv-card, .ps-item, .cta-card,
  .facility-more, .review-more{
    transition: none !important;
  }
  .reveal .space-title,
  .reveal .review-title,
  .reveal .panel-title{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =====================================================
   Home - Campzone Overview
   ===================================================== */
.zone-overview{
  padding: 36px 0;
  background: #f7f9f6;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.04),
              inset 0 -1px 0 rgba(0,0,0,.04);
}
.zone-overview .section-head,
.zone-overview .zone-cards{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.zone-overview .section-head{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 12px;
}
.zone-overview .section-head > div{ text-align: center; }
.zone-overview .section-more{
  position: absolute;
  right: 20px;
  bottom: 0;
  font-weight: 900;
  color: var(--ink);
  text-decoration: none;
  opacity: .7;
  transition: transform .15s ease, opacity .15s ease;
}
@media (hover:hover){
  .zone-overview .section-more:hover{
    transform: translateX(3px);
    opacity: 1;
  }
}
.zone-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.zone-card{
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}
.zone-thumb{
  height: 200px;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform .35s ease;
}
.zone-body{
  padding: 12px 14px 14px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.zone-name{
  font-weight: 1000;
  font-size: 16px;
  margin-bottom: 6px;
}
.zone-sub{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}
.zone-tags{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.zone-tags .tag{
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 12px;
  font-weight: 800;
}
@media (hover:hover){
  .zone-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,.10);
    border-color: rgba(0,0,0,.12);
  }
  .zone-card:hover .zone-thumb{
    transform: scale(1.06);
  }
}
@media (max-width:760px){
  .zone-overview .section-head{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .zone-overview .section-more{
    position: static;
    display: inline-block;
    padding: 0;
    margin-top: 2px;
    opacity: .85;
  }
  .zone-cards{
    display: flex;
    gap: 14px;
    overflow: auto;
    padding: 4px 20px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .zone-cards::-webkit-scrollbar{ display:none; }
  .zone-card{
    flex: 0 0 86%;
    scroll-snap-align: start;
  }
  .zone-thumb{ height: 180px; }
}
@media (prefers-reduced-motion: reduce){
  .zone-card, .zone-thumb, .zone-overview .section-more{
    transition: none !important;
  }
}

/* =====================================================
   ✅ Photo Album(리뷰 0~3개일 때) - 슬라이더 스타일
   ===================================================== */
.photo-album{
  margin: 8px 0 6px;
}
.photo-head{
  text-align:center;
  margin-bottom: 12px;
}

/* ✅ 타사이트처럼 가로로 쭉 나열 + 스크롤 */
.photo-slider{
  display:flex;
  gap:14px;
  overflow:auto;
  padding:4px 2px 14px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.photo-slider::-webkit-scrollbar{ display:none; }

/* 카드(버튼) */
.photo-shot{
  flex:0 0 360px;               /* PC 기본 폭 */
  scroll-snap-align:start;

  position:relative;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  overflow:hidden;

  padding:0;
  cursor:pointer;
}

/* 이미지 */
.photo-shot img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  transform:scale(1.01);
  transition:transform .35s ease, filter .35s ease;
}

/* 캡션 가독성(그라데이션) */
.photo-shot::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 60%);
  opacity:.9;
}

/* 캡션 */
.photo-shot .shot-cap{
  position:absolute;
  left:14px;
  right:14px;
  bottom:12px;
  z-index:2;
  color:#fff;
  font-weight:900;
  font-size:14px;
  letter-spacing:-.01em;
  text-shadow:0 10px 30px rgba(0,0,0,.35);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* hover */
@media (hover:hover){
  .photo-shot:hover img{
    transform:scale(1.06);
    filter:saturate(1.05);
  }
}

/* 모바일 */
@media (max-width: 760px){
  .photo-shot{
    flex:0 0 86%;
  }
  .photo-shot img{
    height:240px;
  }
}
/* =====================================================
   PHOTO ALBUM - 모바일 슬라이더 + PC 버튼 내비
   ===================================================== */

/* wrap: 버튼 배치용 */
.photo-slider-wrap{
  position: relative;
}

/* ✅ 슬라이더(모바일은 스크롤, PC도 스크롤되지만 버튼으로 이동) */
.photo-slider{
  display:flex;
  gap:14px;
  overflow:auto;
  padding: 4px 0 14px;      /* ✅ 끝 여백 최소 */
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.photo-slider::-webkit-scrollbar{ display:none; }

/* ✅ PHOTO ALBUM은 오른쪽 페이드 제거(남는 느낌 방지) */
.photo-slider.slider-hint::after{
  display:none !important;
}

/* 카드 */
.photo-shot{
  flex:0 0 360px;           /* ✅ PC 기본 폭 */
  scroll-snap-align:start;

  position:relative;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  overflow:hidden;

  padding:0;
  cursor:pointer;
}

/* 이미지 */
.photo-shot img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  transform:scale(1.01);
  transition:transform .35s ease, filter .35s ease;
}

/* 캡션 가독성 */
.photo-shot::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 60%);
  opacity:.9;
}

.photo-shot .shot-cap{
  position:absolute;
  left:14px;
  right:14px;
  bottom:12px;
  z-index:2;
  color:#fff;
  font-weight:900;
  font-size:14px;
  letter-spacing:-.01em;
  text-shadow:0 10px 30px rgba(0,0,0,.35);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

@media (hover:hover){
  .photo-shot:hover img{
    transform:scale(1.06);
    filter:saturate(1.05);
  }
}

/* ✅ PC 버튼(좌/우) */
.photo-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  cursor:pointer;
  display:none; /* 기본 숨김 → PC에서만 표시 */
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:900;
  line-height:1;
}

.photo-nav.prev{ left:-10px; }
.photo-nav.next{ right:-10px; }

@media (hover:hover){
  .photo-nav:hover{
    background:#fff;
  }
}

/* ✅ PC에서만 버튼 보이기 */
@media (min-width: 761px){
  .photo-nav{ display:flex; }
}

/* ✅ 모바일: 카드 폭을 화면에 맞게(슬라이더 안정화) */
@media (max-width: 760px){
  .photo-shot{
    flex:0 0 86%;
  }
  .photo-shot img{
    height:240px;
  }
}

/* band 위에 자동으로 생기는 구분선 제거 */
.band + .band{
  border-top: none !important;
}

/* 캠핑존 섹션 자체의 inset 라인도 제거 */
.zone-overview{
  box-shadow: none !important;
  border-top: none !important;
}
/* =========================================
   PHOTO ALBUM 버튼 = 히어로 버튼(.hero-btn) 재사용
   (스타일은 hero.css 그대로, 여기서는 위치/노출만)
   ========================================= */

.photo-slider-wrap{
  position: relative;
}

/* 포토앨범 안에서 hero-btn 위치 강제 */
.photo-slider-wrap .hero-btn.photo-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

/* 히어로랑 같은 규칙(스크린샷처럼 left:16px 느낌) */
.photo-slider-wrap .hero-btn.photo-nav.prev{ left: 16px; }
.photo-slider-wrap .hero-btn.photo-nav.next{ right: 16px; }

/* PC에서만 버튼 보이게 */
@media (min-width: 761px){
  .photo-slider-wrap .hero-btn.photo-nav{ display: flex; }
}
@media (max-width: 760px){
  .photo-slider-wrap .hero-btn.photo-nav{ display: none; }
}
/* PHOTO ALBUM 안에서 hero-btn 색/아이콘 확실히 적용 */
.photo-slider-wrap .hero-btn.photo-nav{
  color:#111827; /* ✅ 아이콘(현재Color) 색 */
}

/* SVG 크기/정렬 (히어로랑 동일 느낌) */
.photo-slider-wrap .hero-btn.photo-nav svg{
  width:22px;
  height:22px;
  display:block;
}

/* =====================================================
   Full-width Band (Home)  ✅ 웜베이지 톤 적용 버전
   ===================================================== */
.band{
  width:100%;
  padding:36px 0; /* 섹션 상하 여백 */
}

/* ✅ 홈에서 "흰 밴드"로 쓰던 영역도 웜베이지 바탕으로 통일
   - 내부 카드/패널(panel)은 흰색이라 가독성 유지됨 */
.band--white{
  background: #fbf3e6; /* 웜 베이지 */
}

/* ✅ 은은한 구분용(조금 더 톤 다운) */
.band--soft{
  background:#f6ebdc; /* 웜 베이지(살짝 진하게) */
  box-shadow:none;     /* 기존 inset 라인 제거 */
}

/* ✅ 요금/예약안내도 동일 톤으로 */
.band--price{
  background:#fbf3e6;
}

/* ✅ 밴드 사이 구분선 제거(홈에서 “줄” 보이던 원인) */
.band + .band{
  border-top:none !important;
}

/* ✅ zone-overview가 section-block(흰 박스/라인) 스타일을 타면 또 하얗게 보임 → 투명 처리 */
.zone-overview.section-block{
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-top: none !important;
}

/* (혹시 zone-overview 자체에 상단 라인이 남아있으면) */
.zone-overview{
  box-shadow: none !important;
  border-top: none !important;
}
/* =====================================================
   Home – Premium Casual polish
   (캠핑존 섹션 톤 분리 + 타이틀 고급화 + 여백 정리)
   ===================================================== */

/* 1) 캠핑존 밴드만 살짝 더 진한 베이지로 분리 */
.band--zone{
  background: #f6ebdc !important; /* soft 보다 살짝 진한 톤 */
  position: relative;
}

/* 위아래 미세 라인으로 섹션 경계 고급스럽게 */
.band--zone::before,
.band--zone::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:1px;
  background: rgba(107,74,45,.10);
}
.band--zone::before{ top:0; }
.band--zone::after{ bottom:0; }

/* 2) 섹션 타이틀(캠핑존/시설 등 공통) - ROOM/SPECIAL 느낌 */
.section-title,
.space-title,
.zone-title{
  position: relative;
  display: inline-block;
  margin: 0 auto 10px;
  padding: 0 14px;
  font-weight: 900;
  letter-spacing: .06em; /* 고급스럽게 */
  text-transform: none;
}

/* 타이틀 좌우 라인 */
.section-title::before,
.section-title::after,
.space-title::before,
.space-title::after,
.zone-title::before,
.zone-title::after{
  content:"";
  position:absolute;
  top: 52%;
  width: 90px;
  height: 1px;
  background: rgba(107,74,45,.18);
}
.section-title::before,
.space-title::before,
.zone-title::before{ right: 100%; margin-right: 14px; }
.section-title::after,
.space-title::after,
.zone-title::after{ left: 100%; margin-left: 14px; }

/* 서브텍스트 톤 */
.section-subtitle,
.space-desc{
  color: rgba(47,42,37,.72);
}

/* 3) ‘전체 보기 →’ 링크 고급 캐주얼 */
.review-more,
.zone-more,
.space-more,
a.more-link{
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: -.01em;
}
.review-more:hover,
.zone-more:hover,
.space-more:hover,
a.more-link:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 4) 여백 리듬 정리(허전함 제거) */
.band{ padding: 30px 0 !important; }
.band--white{ padding: 26px 0 !important; }
.band--soft{ padding: 28px 0 !important; }

/* 시설 아이콘 줄 위/아래 여백 살짝 줄임 */
.facility-icons{ margin-top: 18px !important; }

/* 5) 캠핑존 카드 영역 ‘갤러리’ 느낌으로 살짝 정렬감 강화 */
.zone-overview .zone-grid,
.zone-grid{
  gap: 18px !important;
}
/* =====================================================
   Zone grid – 남는 여백 제거(PC 3열 꽉 채우기)
   ===================================================== */

/* 캠핑존 섹션 내부 컨텐츠가 max-width/inline-block 때문에 줄어드는 케이스 방지 */
.band--zone .container,
.band--zone .wrap,
.band--zone .inner,
.zone-overview{
  width: 100%;
  max-width: 1200px; /* 기존 컨테이너 유지 */
}

/* 핵심: 3열 고정 + 칸 너비를 동일하게 해서 우측 빈공간 제거 */
.zone-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* 카드가 자기 max-width를 갖고 있으면 그게 원인 */
.zone-card{
  width: 100% !important;
  max-width: none !important;
}

/* 이미지/카드 높이가 제각각이면 끝이 들쑥날쑥해 보임 → 통일감 */
.zone-card .thumb,
.zone-card .img,
.zone-card figure{
  width: 100% !important;
}

/* 반응형: 태블릿 2열, 모바일 1열 */
@media (max-width: 980px){
  .zone-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 640px){
  .zone-grid{
    grid-template-columns: 1fr !important;
  }
}
.zone-overview .zone-grid,
.zone-overview .grid{
  max-width: 100% !important;
}
/* =====================================================
   FIX – Zone section left-shift (부모 폭/정렬 강제)
   ===================================================== */

/* 1) 캠핑존 섹션 안에서 width가 줄어드는 래퍼들 전부 100%로 강제 */
.band--zone .container,
.band--zone .inner,
.band--zone .wrap,
.band--zone .zone-overview,
.band--zone .zone-wrap,
.band--zone .zone-area,
.band--zone .zone-content{
  width: 100% !important;
  max-width: 1200px !important;   /* 기존 컨테이너 규격 */
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

/* 2) 혹시 inline/fit-content로 줄어드는 케이스 차단 */
.band--zone .zone-overview,
.band--zone .zone-wrap,
.band--zone .zone-area,
.band--zone .zone-content{
  min-width: 0 !important;
  max-width: 100% !important;
}

/* 3) 그리드 자체는 컨테이너 폭을 꽉 채우게 */
.band--zone .zone-grid{
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  justify-content: stretch !important;
}

/* 4) 카드 3개면 3열 꽉 채움 (PC) */
@media (min-width: 981px){
  .band--zone .zone-grid{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }
}

/* 태블릿/모바일 */
@media (max-width: 980px){
  .band--zone .zone-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 640px){
  .band--zone .zone-grid{
    grid-template-columns: 1fr !important;
  }
}
/* =====================================================
   FIX – zone-cards left-shift (정확 클래스 기준)
   ===================================================== */

/* zone 섹션 자체가 가운데에 오도록 */
.zone-overview{
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  background: transparent !important; /* section-block 흰 배경 방지 */
  border: none !important;
  box-shadow: none !important;
}

/* ✅ 핵심: 카드 래퍼를 "그리드 3열"로 강제하고 폭 100% */
.zone-cards{
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;

  /* slider-hint가 flex/scroll 성격이면 이것들 때문에 밀림 */
  justify-content: stretch !important;
  align-items: stretch !important;
}

/* 카드도 칸 폭 꽉 채우게 */
.zone-cards .zone-card{
  width: 100% !important;
  max-width: none !important;
}

/* 반응형 */
@media (max-width: 980px){
  .zone-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 640px){
  .zone-cards{
    grid-template-columns: 1fr !important;
  }
}

/* 혹시 slider-hint가 overflow/scroll을 걸어놨으면 제거 */
.zone-cards.slider-hint{
  overflow: visible !important;
  scroll-snap-type: none !important;
}
.band.band--soft{ display:block; }
/* 캠핑존 카드 영역 폭을 더 넓혀서 우측 공백 체감 제거 */
.zone-overview{
  max-width: 1440px !important;  /* 1200 → 1440 */
  padding-left: 24px;
  padding-right: 24px;
}  
/* ✅ 모바일 가로 깨짐(가로 스크롤) 방지 - 강제 */
  html, body{
    max-width: 100%;
    overflow-x: hidden;
  }

/* =====================================================
   Zone width – PC만 넓히고 모바일은 안전하게 100%로
   ===================================================== */

/* 기본(모바일/태블릿 포함): 컨테이너 폭 100% */
.zone-overview{
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

/* PC에서만 넓게(공백 체감 줄이기) */
@media (min-width: 1200px){
  .zone-overview{
    max-width: 1440px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* zone-cards가 혹시 내용폭으로 커지는 경우 방지 */
.zone-cards{
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* 카드도 넘치지 않게 */
.zone-card{
  max-width: 100% !important;
}

.band{
  width:100%;
  padding:28px 0;
}
.band--white{ background:#fff; }
.band--soft{
  background: var(--bg-section);
  box-shadow: inset 0 1px 0 rgba(0,0,0,.04),
              inset 0 -1px 0 rgba(0,0,0,.04);
}
.band--price{ background:#fafbfa; }
.band + .band{ border-top:1px solid var(--line); }
.space-desc{
  margin-bottom:20px;
  color:var(--muted);
  font-weight:600;
}
.feature-ic{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-size:16px;
  line-height:1;
  background: rgba(107,74,45,.10);
}
.feature-tt{ font-weight:800; font-family: var(--font-body); }
.feature-tx{ color:var(--muted); font-size:13px; margin-top:2px; }


.facility-title-wrap{
  width: 100%;
  text-align: center;
  position: relative;
}


.facility-title-wrap h2{
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
/* ===== Section title (시설별 공간 타이틀 느낌 공통화) ===== */
.section-head{
  text-align: center;
  margin: 0 auto 22px;
}

.section-title{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;

  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2f2a25; /* var(--text) 써도 됨 */
}

.section-title::before,
.section-title::after{
  content: "";
  width: 120px;
  height: 1px;
  background: rgba(111, 98, 87, 0.25); /* 은은한 라인 */
}

.section-desc{
  margin: 10px auto 0;
  max-width: 720px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
/* ===== 중앙형 섹션 타이틀 (시설별 공간 느낌 재사용) ===== */
.section-head{
  max-width: var(--max);
  margin: 0 auto 22px;
  padding: 0 20px;
}

.section-head--center{
  text-align: center;
}

.section-head--center .section-title{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-head--center .section-title::before,
.section-head--center .section-title::after{
  content: "";
  width: 120px;
  height: 1px;
  background: rgba(111, 98, 87, 0.25);
}

.section-head--center .section-desc{
  margin: 10px auto 0;
  max-width: 720px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.section-head--center .section-more{
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.section-head--center .section-more:hover{
  color: var(--color-primary);
  text-decoration: underline;
}

/* 모바일 라인 길이 조절 */
@media (max-width: 640px){
  .section-head--center .section-title{ font-size: 22px; gap: 12px; }
  .section-head--center .section-title::before,
  .section-head--center .section-title::after{ width: 56px; }
}
/* ===== 섹션 타이틀 공통(시설별 공간 느낌) ===== */
.section-head.section-head--center{
  text-align: center;
  margin: 0 auto 22px;
  padding: 0 20px;
}

.section-head.section-head--center .section-title{
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text, #2f2a25);
}

.section-head.section-head--center .section-title::before,
.section-head.section-head--center .section-title::after{
  content:"";
  width: 120px;
  height: 1px;
  background: rgba(111, 98, 87, 0.25);
}

.section-head.section-head--center .section-desc{
  margin: 10px auto 0;
  max-width: 720px;
  font-size: 14px;
  color: var(--muted, #6f6257);
  line-height: 1.7;
}

/* ✅ '전체 보기'도 첫번째처럼 "중앙 아래"로 */
.section-head.section-head--center .section-more{
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted, #6f6257);
  text-decoration: none;
}

.section-head.section-head--center .section-more:hover{
  color: var(--color-primary, #6b4a2d);
  text-decoration: underline;
}

/* 모바일 라인 */
@media (max-width: 640px){
  .section-head.section-head--center .section-title{ font-size: 22px; gap: 12px; }
  .section-head.section-head--center .section-title::before,
  .section-head.section-head--center .section-title::after{ width: 56px; }
}
/* =====================================================
   Home - Campzone Overview (FINAL)
   시설 섹션처럼 "중앙 스택" 타이틀로 통일
   ===================================================== */
.zone-overview{
  padding: 36px 0;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* ✅ 헤더를 flex(가로) → block(세로)로 강제해서
   "라인-타이틀-라인 + 설명 + 링크(아래)" 구조로 만듦 */
.zone-overview .section-head{
  max-width: 1100px;
  margin: 0 auto 18px;
  padding: 0 20px;

  display: block !important;
  text-align: center !important;

  position: static !important;
  justify-content: initial !important;
  align-items: initial !important;
}

/* ✅ 기존 코드에 있던 'section-head > div' 구조 제거 대응 */
.zone-overview .section-head > div{
  display: contents !important;
}

/* ✅ '캠핑존 전체 보기 →'가 우측 absolute로 빠지던 거 무력화 */
.zone-overview .section-more{
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;

  display: inline-block !important;
  margin-top: 10px;
  font-weight: 900;
  color: var(--muted);
  text-decoration: none;
  opacity: .85;
}

.zone-overview .section-more:hover{
  color: var(--color-primary);
  text-decoration: underline;
  opacity: 1;
}

/* 카드 영역은 기존 유지 */
.zone-overview .zone-cards{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
/* =====================================================
   캠핑존 섹션 헤더를
   '시설별 공간을 한눈에'와 100% 동일하게 강제
   ===================================================== */

/* 캠핑존 헤더 전체 */
.zone-overview .section-head.section-head--center{
  max-width: var(--max);
  margin: 0 auto 28px;
  padding: 0 20px;

  text-align: center !important;
  display: block !important;

  position: relative !important;
}

/* 타이틀 */
.zone-overview .section-title{
  display: inline-flex;
  align-items: center;
  gap: 20px;

  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text, #2f2a25);
  margin: 0;
}

/* 타이틀 좌우 라인 */
.zone-overview .section-title::before,
.zone-overview .section-title::after{
  content: "";
  width: 120px;
  height: 1px;
  background: rgba(111, 98, 87, 0.25);
}

/* 설명 */
.zone-overview .section-desc{
  margin: 10px auto 0;
  max-width: 720px;

  font-size: 14px;
  line-height: 1.7;
  color: var(--muted, #6f6257);
}

/* 전체 보기 링크 — 시설 섹션과 같은 위치 */
.zone-overview .section-more{
  display: inline-block;
  margin-top: 10px;

  font-size: 14px;
  color: var(--muted, #6f6257);
  text-decoration: none;

  position: static !important;
  transform: none !important;
}

.zone-overview .section-more:hover{
  color: var(--color-primary, #6b4a2d);
  text-decoration: underline;
}

/* 모바일 대응 */
@media (max-width: 640px){
  .zone-overview .section-title{
    font-size: 22px;
    gap: 12px;
  }

  .zone-overview .section-title::before,
  .zone-overview .section-title::after{
    width: 56px;
  }
}
/* =====================================================
   캠핑존 전체 보기 → 위치를
   시설 전체 보기와 동일하게 우측 하단으로
   ===================================================== */

/* section-head 기준점 */
.zone-overview .section-head{
  position: relative !important;
}

/* 캠핑존 전체 보기 → */
.zone-overview .section-more{
  position: absolute !important;
  right: 0;
  bottom: 0;

  margin: 0 !important;
  transform: none !important;

  font-size: 14px;
  font-weight: 900;
  color: var(--ink, #2f2a25);
  opacity: .7;
  text-decoration: none;
}

.zone-overview .section-more:hover{
  opacity: 1;
  text-decoration: underline;
}
/* ===============================
   캠핑존 카드: PC에서는 3열 그리드로 고정(오른쪽 여백 제거)
   =============================== */
@media (min-width: 901px){
  .zone-overview .zone-cards{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;

    overflow: visible !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  /* 카드 클래스가 뭐든 잡히게(프로젝트마다 다를 수 있어서) */
  .zone-overview .zone-cards > *{
    width: 100% !important;
    min-width: 0 !important;
  }
}
/* ===============================
   캠핑존 카드: 모바일 가로 슬라이더(1장씩)
   =============================== */
@media (max-width: 900px){
  .zone-overview .zone-cards{
    display: flex !important;
    gap: 16px !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;

    scroll-snap-type: x mandatory;
    padding: 0 20px 6px !important; /* 좌우 살짝 여백 */
    margin: 0 -20px !important;     /* 섹션 패딩 상쇄(풀폭 느낌) */
  }

  .zone-overview .zone-cards > *{
    flex: 0 0 86% !important;       /* 1장 중심 + 살짝 다음장 힌트 */
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  /* 스크롤바 숨김 */
  .zone-overview .zone-cards::-webkit-scrollbar{ height: 0; }
  .zone-overview .zone-cards{ scrollbar-width: none; }
}
/* =========================
   Mood break (only when reviews exist)
   ========================= */
.mood-break{
  margin: 18px 0 26px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.40));
  border: 1px solid rgba(148,163,184,.22);
  overflow: hidden;
}

.mood-inner{
  padding: 22px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.mood-eyebrow{
  margin: 0 0 6px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .02em;
  color: rgba(15,23,42,.65);
}

.mood-title{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.mood-sub{
  margin: 8px 0 0;
  color: rgba(15,23,42,.72);
  line-height: 1.7;
  font-size: 14px;
}

.mood-cta .btn{
  white-space: nowrap;
}

/* =========================
   Trust links (when reviews are few)
   ========================= */
.trust-links{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-card{
  display: block;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(148,163,184,.22);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.trust-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15,23,42,.08);
}

.trust-kicker{
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(15,23,42,.65);
  margin-bottom: 6px;
}

.trust-title{
  display:block;
  font-size: 14px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.45;
}

.trust-go{
  display:block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(15,23,42,.65);
}

@media (max-width: 900px){
  .mood-inner{ grid-template-columns: 1fr; }
  .trust-links{ grid-template-columns: repeat(2, 1fr); }
}
/* 힐링 코스 섹션 상단 여백만 살짝 줄이기 */
.healing-course-section {
  padding-top: 16px; /* 기존보다 -10~-20px 정도 */
}
.space-cap {
  background: rgba(0,0,0,.55); /* .45 → .55 */
  backdrop-filter: blur(4px);
}

/* =====================================================
   ✅ PC에서만 '심플/모바일 특화' 느낌 줄이기 (Home 최신본 기준)
   - 모바일은 그대로 유지
   - PC에서만: 배경 깊이감 + 카드 정보 1줄 + 클릭감 강화
   ===================================================== */

/* 1) 힐링 코스 섹션: 후기 섹션과 이어지게 위 여백 살짝 줄이고,
      PC에서만 은은한 배경 깊이감 추가 */
.healing-course-section{
  padding-top: 18px;
}

@media (min-width: 1024px){
  .healing-course-section{
    padding-top: 10px;
    background:
      radial-gradient(1200px 280px at 50% 0%, rgba(0,0,0,.03), transparent 70%),
      #fff;
  }
}

/* 2) PC에서 카드가 '클릭 가능한 섹션'처럼 보이게 */
.space-card{
  cursor: pointer; /* 지금 CSS에 cursor: default가 있어서 덮어씀 */
}

/* 3) 카드 캡션 가독성(밝은 사진에서도 묻히지 않게) */
.healing-course-section .space-cap{
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(6px);
}

/* 4) PC에서만: 카드 캡션 아래에 '미니 정보 1줄'을 보이게 준비
   - HTML 변경 없이도, CSS로 가짜 텍스트는 못 넣으니
   - 캡션 텍스트를 2줄로 보여주게(줄바꿈 허용) → 더 풍성해 보임 */
@media (min-width: 1024px){
  .healing-course-section .space-cap{
    max-width: calc(100% - 24px);
    white-space: normal;        /* 1줄 고정 해제 */
    line-height: 1.25;
    padding: 10px 14px;
  }
}

/* 5) PC에서 카드 크기/간격을 조금만 더 '웹사이트답게' */
@media (min-width: 1024px){
  .healing-course-section .space-cards{
    gap: 18px;
    margin-top: 18px;
  }
  .healing-course-section .space-card{
    box-shadow: 0 12px 26px rgba(0,0,0,.08);
  }
}
.cap-mini{
  display:none;
}

@media (min-width: 1024px){
  .cap-mini{
    display:block;
    margin-top:6px;
    font-size:12px;
    font-weight:800;
    opacity:.9;
  }
}
