/* =========================================================
   우리에게 맞는 신혼여행지 찾기 — 스타일
   톤: 베이지 / 크림 / 라이트핑크 / 샌드
   ========================================================= */

:root {
  --cream: #fbf6ef;
  --cream-2: #f6ede1;
  --sand: #e8d9c3;
  --sand-deep: #d8c3a5;
  --beige: #efe4d3;
  --pink: #f6e0db;
  --pink-deep: #e9b8ad;
  --rose: #c98a7d;
  --rose-deep: #b1705f;
  --ink: #4a3f37;
  --ink-soft: #7a6c60;
  --line: #e7dccb;
  --white: #fffdfa;
  --shadow-sm: 0 4px 14px rgba(150, 120, 90, 0.08);
  --shadow-md: 0 10px 30px rgba(150, 120, 90, 0.14);
  --radius: 20px;
  --radius-sm: 14px;
  --maxw: 1180px;
  --serif: "Gowun Batang", serif;
  --sans: "Noto Sans KR", sans-serif;
  --gothic: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============ 헤더 / 네비 ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 246, 239, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--rose-deep);
  display: flex; align-items: center; gap: 8px;
}
.brand i { color: var(--pink-deep); }
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  font-size: .92rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--pink-deep); transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-toggle {
  display: none;
  background: none; border: none; font-size: 1.4rem;
  color: var(--rose-deep); cursor: pointer;
}

/* ============ 히어로 ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background:
    radial-gradient(1200px 600px at 70% 10%, rgba(246,224,219,.9), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(232,217,195,.85), transparent 55%),
    linear-gradient(160deg, #fdf3ee 0%, #f6ede1 40%, #efe4d3 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,138,125,.10) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .5;
}
.hero-content { position: relative; max-width: 760px; z-index: 2; }
.hero-eyebrow {
  font-family: var(--serif);
  letter-spacing: .14em;
  color: var(--rose);
  font-size: .95rem;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--gothic);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 20px;
}
.hero-guide {
  color: var(--ink-soft);
  font-size: .98rem;
  margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .2s;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-deep), var(--rose));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: rgba(255,255,255,.7);
  border-color: var(--sand-deep);
  color: var(--rose-deep);
}
.btn-outline:hover { transform: translateY(-3px); background: #fff; }

/* 히어로 아래 설명 박스 */
.intro-note-wrap { max-width: var(--maxw); margin: -38px auto 0; padding: 0 20px; position: relative; z-index: 5; }
.intro-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 26px 28px;
  display: flex; gap: 16px; align-items: flex-start;
}
.intro-note i { color: var(--pink-deep); font-size: 1.4rem; margin-top: 3px; }
.intro-note p { color: var(--ink-soft); font-size: .98rem; }

/* ============ 섹션 공통 ============ */
.section { max-width: var(--maxw); margin: 0 auto; padding: 76px 20px; }
.section-alt {
  max-width: none;
  background: linear-gradient(180deg, #f6ede1, #fbf6ef);
}
.section-alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

/* 빠른 추천 섹션 — 크림+핑크 배경으로 구분 */
.section-recommender {
  max-width: none;
  background: linear-gradient(180deg, #fdf0ec 0%, #f6ede1 100%);
}
.section-recommender > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-tag {
  display: inline-block;
  background: var(--pink);
  color: var(--rose-deep);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--gothic);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.section-desc { color: var(--ink-soft); font-size: 1rem; }

/* 요약 박스 */
.summary-box {
  margin-top: 36px;
  background: var(--white);
  border: 1px dashed var(--pink-deep);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex; gap: 13px; align-items: center;
}
.summary-box i { color: var(--rose); font-size: 1.2rem; }
.summary-box p { font-size: .95rem; color: var(--ink-soft); }
.summary-box strong { color: var(--rose-deep); }

/* ============ 2. 체크 기준 ============ */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}
.criteria-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .95rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s;
}
.criteria-item:hover { transform: translateY(-3px); }
.criteria-item .chk {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: var(--pink);
  color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
}

/* ============ 필터 바 ============ */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
@media (max-width: 600px) {
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
    gap: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-chip { flex-shrink: 0; font-size: .82rem; padding: 7px 14px; }
}
.filter-chip {
  border: 1.5px solid var(--sand-deep);
  background: var(--white);
  color: var(--ink-soft);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .9rem;
  cursor: pointer;
  font-family: var(--sans);
  transition: all .2s;
}
.filter-chip:hover { border-color: var(--pink-deep); color: var(--rose-deep); }
.filter-chip.active {
  background: linear-gradient(135deg, var(--pink-deep), var(--rose));
  color: #fff;
  border-color: transparent;
}

/* ============ 3/4. 여행지 카드 ============ */

/* 카드 커버 이미지 */
.dest-card-img {
  width: 100%;
  height: 195px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  /* 이미지 로드 실패 시 따뜻한 그라데이션 배경 */
  background: linear-gradient(135deg, #f6e0db 0%, #e8d9c3 50%, #f3e1ee 100%);
}
.dest-card-img::after {
  /* 이미지 하단 페이드아웃 — 텍스트 영역과 자연스럽게 연결 */
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,253,250,.55));
  pointer-events: none;
}
.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
  /* 너무 어두운 야경 이미지도 밝기 살짝 보정 */
  filter: brightness(1.04) saturate(1.05);
}
.dest-card:hover .dest-card-img img {
  transform: scale(1.07);
}
/* 이미지 로드 실패 시 alt 텍스트 대신 여행지 아이콘 영역 표시 */
.dest-card-img img.img-error {
  opacity: 0;
}
.dest-card-img .img-fallback {
  position: absolute; inset: 0;
  display: none;
  align-items: center; justify-content: center; flex-direction: column; gap: 8px;
  color: var(--rose); font-size: 2.2rem;
}
.dest-card-img.has-error .img-fallback { display: flex; }
.dest-card-img.has-error img { opacity: 0; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 22px;
}
.dest-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
  /* 카드 높이 균형 — 같은 줄 카드 높이 맞춤 */
  height: 100%;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* 조합카드 도시+휴양 배지 */
.combo-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, var(--rose), var(--pink-deep));
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 9px;
}
.combo-badge i { font-size: .68rem; }

.dest-card-top {
  padding: 18px 22px 18px;
  background: linear-gradient(135deg, #fdf3ee, #f6ede1);
  border-bottom: 1px solid var(--line);
}
.dest-region { font-size: .78rem; color: var(--rose); letter-spacing: .08em; }
.dest-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--ink);
  margin: 4px 0 8px;
}
.dest-oneliner { font-size: .9rem; color: var(--ink-soft); margin-bottom: 14px; }
.dest-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: .74rem;
  background: var(--white);
  border: 1px solid var(--sand-deep);
  color: var(--rose-deep);
  padding: 3px 10px;
  border-radius: 999px;
}

/* 카드 핵심 배지 줄 */
.dest-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 16px 22px 6px;
}
.badge {
  font-size: .76rem;
  padding: 5px 11px;
  border-radius: 8px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 5px;
}
.badge-budget-가성비형 { background: #e7f1e3; color: #5e7a4e; }
.badge-budget-평균형 { background: #fdf0d8; color: #9a7a3a; }
.badge-budget-럭셔리형 { background: #f3e1ee; color: #9a5a86; }
.badge-level-쉬움, .badge-level-짧음 { background: #e7f1e3; color: #5e7a4e; }
.badge-level-보통 { background: #fdf0d8; color: #9a7a3a; }
.badge-level-어려움, .badge-level-김 { background: #f6ddd6; color: #b1705f; }

/* 펼쳐보기 버튼 */
.dest-toggle {
  margin: 14px 22px 22px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  color: var(--rose-deep);
  border-radius: 12px;
  padding: 11px;
  width: calc(100% - 44px);
  cursor: pointer;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s;
  /* 버튼을 카드 하단에 자동 밀착 */
  margin-top: auto;
  flex-shrink: 0;
}
.dest-toggle:hover { background: var(--pink); }
.dest-toggle i { transition: transform .3s; }
.dest-card.open .dest-toggle i { transform: rotate(180deg); }
/* dest-card-top + badges는 flex 영역 채움 */
.dest-badges { flex-shrink: 0; }

/* 아코디언 내용 */
.dest-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
  border-top: 1px solid transparent;
}
.dest-card.open .dest-detail { border-top-color: var(--line); }
.dest-detail-inner { padding: 20px 22px 24px; }
.detail-block { margin-bottom: 18px; }
.detail-block:last-child { margin-bottom: 0; }
.detail-block h4 {
  font-size: .82rem;
  color: var(--rose-deep);
  letter-spacing: .04em;
  margin-bottom: 7px;
  display: flex; align-items: center; gap: 7px;
}
.detail-block h4 i { color: var(--pink-deep); }
.detail-block p, .detail-block li { font-size: .9rem; color: var(--ink-soft); }
.detail-block ul { margin-left: 2px; }
.detail-block li { position: relative; padding-left: 16px; margin-bottom: 4px; }
.detail-block li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--pink-deep);
}
.detail-block.pros li::before { background: #7fa360; }
.detail-block.cons li::before { background: var(--rose); }
.season-mini { display: grid; grid-template-columns: 1fr; gap: 4px; }
.season-mini span { font-size: .88rem; color: var(--ink-soft); }
.season-mini b { color: var(--ink); font-weight: 500; }
.match-line {
  background: var(--pink);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: .88rem;
  color: var(--rose-deep);
  margin-top: 6px;
}
.match-line.notfor { background: #faece2; color: #a06a4f; }
.route-flow {
  background: var(--cream-2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .9rem;
  color: var(--ink);
}

/* ============ 비교표 ============ */
.table-legend {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 16px; font-size: .85rem; color: var(--ink-soft);
}
.table-legend .dot { display: inline-block; width: 11px; height: 11px; border-radius: 50%; margin-right: 5px; vertical-align: middle; }
.dot-rest { background: var(--pink-deep); }
.dot-sight { background: var(--sand-deep); }
.legend-star i { color: #e0a93b; }

.table-scroll { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); -webkit-overflow-scrolling: touch; }
.compare-table { border-collapse: collapse; width: 100%; min-width: 1000px; background: var(--white); font-size: .87rem; }
.compare-table thead th {
  background: linear-gradient(135deg, var(--rose), var(--pink-deep));
  color: #fff;
  padding: 13px 12px;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  position: sticky; top: 0;
}
.compare-table tbody td { padding: 12px 12px; text-align: center; border-bottom: 1px solid var(--line); white-space: nowrap; color: var(--ink-soft); }
.compare-table tbody tr:nth-child(even) { background: var(--cream); }
.compare-table tbody tr:hover { background: var(--pink); }
.compare-table .cell-name {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
  position: sticky; left: 0;
  background: var(--white);
  z-index: 2;
  text-align: left;
  box-shadow: 2px 0 6px rgba(0,0,0,.04);
}
.compare-table tbody tr:nth-child(even) .cell-name { background: var(--cream); }
.compare-table .stars { color: #e0a93b; letter-spacing: 1px; }
.compare-table .stars .empty { color: #e0d3bf; }
.t-badge { display: inline-block; padding: 3px 9px; border-radius: 7px; font-size: .76rem; }
.hint-scroll { text-align: center; color: var(--rose); font-size: .85rem; margin-top: 12px; }
.hint-scroll i { margin-right: 5px; }

/* ============ 패키지 vs 자유 ============ */
.pkg-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-bottom: 36px; }
.pkg-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.pkg-card h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--rose-deep); margin-bottom: 14px; display: flex; gap: 9px; align-items: center; }
.pkg-card ul li { font-size: .92rem; color: var(--ink-soft); padding-left: 20px; position: relative; margin-bottom: 8px; }
.pkg-card ul li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--pink-deep); font-size: .75rem; top: 4px; }
.pkg-card-mix { background: linear-gradient(160deg, #fdf3ee, #f6ede1); }

.pkg-table { min-width: 560px; }
.pkg-table thead th { font-size: .92rem; }
.pkg-table tbody td:first-child { font-weight: 500; color: var(--ink); text-align: left; }

.conclusion-box {
  margin-top: 32px;
  background: linear-gradient(135deg, #f3e1ee, #fdf3ee);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}
.conclusion-box h3 { font-family: var(--serif); color: var(--rose-deep); margin-bottom: 14px; display: flex; gap: 9px; align-items: center; }
.conclusion-box ul li { padding-left: 18px; position: relative; margin-bottom: 9px; color: var(--ink); font-size: .95rem; }
.conclusion-box ul li::before { content: "→"; position: absolute; left: 0; color: var(--rose); font-weight: 700; }

/* ============ 상황별 추천 ============ */
.situation-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.situation-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.situation-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.situation-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--sand));
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-deep); font-size: 1.2rem; margin-bottom: 14px;
}
.situation-card h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 13px; }
.situation-picks { display: flex; flex-wrap: wrap; gap: 7px; }
.pick-chip {
  font-size: .8rem;
  background: var(--cream-2);
  border: 1px solid var(--line);
  color: var(--rose-deep);
  padding: 4px 11px;
  border-radius: 999px;
}

/* ============ 계절별 ============ */
.season-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 18px; }
.season-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.season-period {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--rose-deep);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 9px;
}
.season-period i { color: var(--pink-deep); }
.season-row { margin-bottom: 12px; }
.season-row .label { font-size: .8rem; font-weight: 700; letter-spacing: .04em; margin-bottom: 6px; display: block; }
.season-row.rec .label { color: #5e7a4e; }
.season-row.avo .label { color: var(--rose-deep); }
.season-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.season-chip { font-size: .78rem; padding: 3px 9px; border-radius: 7px; }
.season-row.rec .season-chip { background: #e7f1e3; color: #5e7a4e; }
.season-row.avo .season-chip { background: #f6ddd6; color: #b1705f; }
.season-note { font-size: .85rem; color: var(--ink-soft); margin-top: 10px; border-top: 1px dashed var(--line); padding-top: 10px; }

/* ============ 예산 ============ */
.budget-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.budget-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex; gap: 15px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.budget-icon {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px;
  background: var(--pink); color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.budget-card h4 { font-size: 1rem; color: var(--ink); margin-bottom: 5px; }
.budget-card p { font-size: .88rem; color: var(--ink-soft); }

/* ============ 실수 ============ */
.mistake-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.mistake-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--rose);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: .92rem; color: var(--ink);
  display: flex; gap: 11px; align-items: flex-start;
}
.mistake-item i { color: var(--rose); margin-top: 3px; }

/* ============ 최종 체크리스트 ============ */
.checklist { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 12px; }
.checklist-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; gap: 12px; align-items: center;
  cursor: pointer;
  font-size: .93rem;
  transition: background .2s, border-color .2s;
}
.checklist-item:hover { border-color: var(--pink-deep); }
.checklist-item .box {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 7px;
  border: 2px solid var(--sand-deep);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .72rem; transition: all .2s;
}
.checklist-item.checked { background: #f1f7ee; border-color: #9fc183; }
.checklist-item.checked .box { background: #7fa360; border-color: #7fa360; }
.checklist-item.checked span { color: var(--ink-soft); text-decoration: line-through; }
.checklist-progress { margin-top: 24px; text-align: center; }
.checklist-progress-bar { background: var(--sand); border-radius: 999px; height: 12px; overflow: hidden; max-width: 480px; margin: 0 auto 10px; }
.checklist-progress-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--pink-deep), var(--rose)); transition: width .4s; }
#checklist-count { color: var(--rose-deep); font-weight: 500; font-size: .92rem; }

/* ============ 최종 추천 박스 ============ */
.section-final { background: linear-gradient(160deg, #f3e1ee, #fdf3ee, #f6ede1); max-width: none; }
.section-final > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.final-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.final-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.final-card .label {
  font-family: var(--serif);
  font-size: 1.05rem; color: var(--rose-deep);
  display: flex; align-items: center; gap: 9px; margin-bottom: 9px;
}
.final-card .label i { color: var(--pink-deep); }
.final-card .picks { font-size: .92rem; color: var(--ink); }

/* ============ 카드 내 실전 정보 블록 ============ */
/* 고르기 전 꼭 확인할 것 */
.precheck-block {
  background: #f3f6f0;
  border: 1px solid #dfe7d6;
  border-radius: 12px;
  padding: 14px 15px;
}
.precheck-block h4 { color: #5e7a4e; }
.precheck-block h4 i { color: #7fa360; }
.precheck-list { margin-left: 0 !important; }
.precheck-row {
  padding-left: 0 !important;
  margin-bottom: 9px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.precheck-row:last-child { margin-bottom: 0; }
.precheck-row::before { display: none !important; }
.precheck-label {
  font-size: .82rem !important;
  font-weight: 700;
  color: var(--ink) !important;
  display: flex; align-items: center; gap: 6px;
}
.precheck-label i { color: #7fa360; width: 15px; text-align: center; }
.precheck-value { font-size: .85rem !important; color: var(--ink-soft) !important; padding-left: 21px; }

/* 예산 폭탄 포인트 */
.bomb-block {
  background: #fcefe7;
  border: 1px solid #f0d6c4;
  border-radius: 12px;
  padding: 14px 15px;
}
.bomb-block h4 { color: #b1705f; }
.bomb-block h4 i { color: #d98a5a; }
.bomb-list { margin-left: 0 !important; }
.bomb-list li {
  padding-left: 22px !important;
  margin-bottom: 6px;
  font-size: .87rem !important;
  color: var(--ink-soft) !important;
}
.bomb-list li:last-child { margin-bottom: 0; }
.bomb-list li::before { display: none !important; }
.bomb-list li i {
  position: absolute; left: 0; top: 4px;
  color: #d98a5a; font-size: .8rem;
}

/* 숙소 지역 선택 가이드 */
.stay-guide { display: grid; gap: 8px; }
.stay-area {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.stay-area-name { font-size: .85rem; font-weight: 700; color: var(--rose-deep); }
.stay-area-desc { font-size: .83rem; color: var(--ink-soft); }

/* 이런 커플은 다시 생각 */
.reconsider-block {
  background: #fbf0f2;
  border: 1px solid #eccdd2;
  border-radius: 12px;
  padding: 14px 15px;
}
.reconsider-block h4 { color: #b15f72; }
.reconsider-block h4 i { color: #cf7f8e; }
.reconsider-list { margin-left: 0 !important; }
.reconsider-list li {
  padding-left: 22px !important;
  margin-bottom: 6px;
  font-size: .87rem !important;
  color: var(--ink-soft) !important;
}
.reconsider-list li:last-child { margin-bottom: 0; }
.reconsider-list li::before { display: none !important; }
.reconsider-list li i {
  position: absolute; left: 0; top: 4px;
  color: #cf7f8e; font-size: .8rem;
}

/* 상황별 추천 보조 문구 */
.situation-note {
  font-size: .85rem !important;
  color: var(--rose-deep) !important;
  margin: -6px 0 12px;
  background: var(--pink);
  padding: 6px 11px;
  border-radius: 8px;
  display: inline-block;
}

/* ============ 패키지 고를 때 확인할 것 ============ */
.pkg-check-wrap {
  margin-top: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.pkg-check-head {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--rose-deep);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
}
.pkg-check-sub { font-size: .9rem; color: var(--ink-soft); margin-bottom: 20px; }
.pkg-check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
.pkg-check-card {
  display: flex; gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
}
.pkg-check-icon {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--pink), var(--sand));
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-deep); font-size: 1rem;
}
.pkg-check-body h4 { font-size: .95rem; color: var(--ink); margin-bottom: 3px; }
.pkg-check-body p { font-size: .85rem; color: var(--ink-soft); line-height: 1.55; }

/* ============ 추천 허니문 조합 ============ */
.combo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 18px; }
.combo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.combo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.combo-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--rose-deep);
  display: flex; align-items: center; gap: 9px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.combo-title i { color: var(--pink-deep); font-size: 1rem; }
.combo-row { margin-bottom: 12px; }
.combo-row:last-child { margin-bottom: 0; }
.combo-label {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 700; letter-spacing: .03em;
  margin-bottom: 4px;
}
.combo-row span:not(.combo-label) { font-size: .9rem; color: var(--ink-soft); line-height: 1.55; }
.combo-point .combo-label { color: #5e7a4e; }
.combo-point .combo-label i { color: #7fa360; }
.combo-caution .combo-label { color: #b1705f; }
.combo-caution .combo-label i { color: #d98a5a; }
.combo-couple .combo-label { color: var(--rose-deep); }
.combo-couple .combo-label i { color: var(--pink-deep); }
.combo-couple span:not(.combo-label) {
  background: var(--pink);
  color: var(--rose-deep);
  border-radius: 8px;
  padding: 7px 11px;
  display: block;
}

/* ============ 푸터 ============ */
.site-footer { background: var(--ink); color: #e9ddd0; padding: 40px 20px; text-align: center; }
.footer-disclaimer { max-width: 760px; margin: 0 auto 14px; font-size: .9rem; line-height: 1.7; opacity: .9; }
.footer-disclaimer i { color: var(--pink-deep); margin-right: 6px; }
.footer-disclaimer-sub { font-size: .82rem; opacity: .72; }
.footer-disclaimer-sub i { color: var(--sand-deep); }
.footer-copy { font-size: .82rem; opacity: .6; }

/* ============ 내 조건으로 여행지 추천받기 ============ */
.rec-cond-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.rec-conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.rec-chip {
  background: var(--white);
  border: 1.5px solid var(--sand-deep);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: .92rem;
  font-family: var(--sans);
  font-weight: 500;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .15s;
}
.rec-chip:hover {
  background: var(--pink);
  border-color: var(--pink-deep);
  color: var(--rose-deep);
  transform: translateY(-2px);
}
.rec-chip.active {
  background: linear-gradient(135deg, var(--pink-deep), var(--rose));
  border-color: var(--rose);
  color: #fff;
  box-shadow: 0 4px 12px rgba(177,112,95,.25);
  transform: translateY(-2px);
}
.rec-result {
  min-height: 80px;
}
.rec-placeholder {
  text-align: center;
  color: var(--ink-soft);
  font-size: 1rem;
  padding: 32px 20px;
  background: var(--cream-2);
  border: 1.5px dashed var(--sand-deep);
  border-radius: var(--radius);
}
.rec-placeholder i { color: var(--pink-deep); margin-right: 8px; }
.rec-result-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--rose-deep);
  margin-bottom: 20px;
}
.rec-result-title i { color: var(--pink-deep); margin-right: 6px; }
.rec-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.rec-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.rec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rec-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.rec-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(1.04) saturate(1.05);
  transition: transform .4s;
}
.rec-card:hover .rec-card-img img { transform: scale(1.06); }
.rec-card-body {
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 7px;
  flex: 1;
}
.rec-rank {
  font-size: .8rem;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: .04em;
}
.rec-dest-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0;
}
.rec-region {
  font-size: .78rem;
  color: var(--rose);
  letter-spacing: .06em;
}
.rec-reason, .rec-caution, .rec-couple {
  font-size: .87rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  display: flex; align-items: flex-start; gap: 7px;
}
.rec-reason i { color: #7fa360; flex-shrink: 0; margin-top: 3px; }
.rec-caution i { color: var(--rose); flex-shrink: 0; margin-top: 3px; }
.rec-couple i { color: var(--pink-deep); flex-shrink: 0; margin-top: 3px; }
.rec-detail-btn {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 10px;
  padding: 9px 16px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--rose-deep);
  cursor: pointer;
  transition: background .18s;
  align-self: flex-start;
  text-decoration: none;
}
.rec-detail-btn:hover { background: var(--pink); }

/* 선택 초기화 버튼 */
.rec-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: transparent;
  border: 1.5px solid var(--sand-deep);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .86rem;
  font-family: var(--sans);
  font-weight: 500;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s;
}
.rec-reset-btn:hover {
  background: var(--cream-2);
  border-color: var(--rose);
  color: var(--rose-deep);
}
.rec-reset-btn i { font-size: .82rem; }

/* 선택된 조건 태그 표시 */
.rec-selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.rec-sel-tag {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--pink), var(--cream-2));
  border: 1px solid var(--pink-deep);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--rose-deep);
}

/* ============ 맨 위로 ============ */
.to-top {
  position: fixed; right: 22px; bottom: 22px;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), var(--rose));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: all .3s; z-index: 90;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ============ 반응형 ============ */
@media (max-width: 860px) {
  /* 모바일: 햄버거 메뉴 숨기고 가로 스크롤 탭 형태로 */
  .nav-toggle { display: none; }
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0 0;
  }
  .brand {
    padding: 0 16px 8px;
  }
  .nav-links {
    /* 가로 스크롤 탭 */
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0;
    width: 100%;
    max-height: none !important;
    border-top: 1px solid var(--line);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links li {
    border-bottom: none;
    flex-shrink: 0;
  }
  .nav-links a {
    display: block;
    padding: 10px 14px;
    font-size: .82rem;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
  }
  .nav-links a:hover {
    color: var(--rose-deep);
    border-bottom-color: var(--pink-deep);
  }
  .nav-links a::after { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 56px 16px; }
  .hero { min-height: 88vh; padding: 110px 18px 70px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .intro-note { flex-direction: column; gap: 10px; }
  .dest-grid, .situation-grid, .season-grid, .budget-grid, .checklist, .final-grid { grid-template-columns: 1fr; }
  .criteria-grid, .mistake-grid { grid-template-columns: 1fr; }
  .rec-cards { grid-template-columns: 1fr; }
  .dest-card-img { height: 170px; }
  .rec-chip { font-size: .84rem; padding: 9px 14px; }
  .rec-cond-wrap { gap: 12px; }
  .rec-reset-btn { font-size: .82rem; padding: 8px 16px; }
  .rec-sel-tag { font-size: .78rem; padding: 4px 11px; }
  .rec-card-img { height: 140px; }
}

/* 등장 애니메이션 */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: none; }
